From 36d67481a22197d662dd767a326fba71446da749 Mon Sep 17 00:00:00 2001 From: Afri <58883403+q9f@users.noreply.github.com> Date: Thu, 19 Dec 2024 15:50:00 +0100 Subject: [PATCH] api: update to phase 6 (closed alpha) (#6) * api: update to phase 6 (closed alpha) * examples: update for phase 6 * docs: update for phase 6 * examples: update usage instructions * ci: run example script on actions --- .github/workflows/spec.yml | 3 ++ README.md | 19 ++++---- bin/api | 6 ++- examples/distance.rb | 35 ++++++--------- examples/pathfinder.rb | 37 ++++++++-------- spec/fixtures/stars_closed_alpha.json | 1 + spec/frontier/star_spec.rb | 63 +++++++++++++++++++-------- 7 files changed, 95 insertions(+), 69 deletions(-) create mode 100644 spec/fixtures/stars_closed_alpha.json diff --git a/.github/workflows/spec.yml b/.github/workflows/spec.yml index 0aed7e0..1a397f6 100644 --- a/.github/workflows/spec.yml +++ b/.github/workflows/spec.yml @@ -26,3 +26,6 @@ jobs: - name: Run Tests run: | bundle exec rspec + bundle exec rspec + - run: | + ruby ./examples/distance.rb "D:S299" "Y:1SII" diff --git a/README.md b/README.md index 879a72c..ad1fc51 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ # Frontier.rb Library to handle EVE Frontier graph and pathfinding operations. -_Work in progress._ +API Version: `Phase 6` (Closed Alpha) -API Version: `Phase 5` +_Work in progress._ Limitations: -- no closed alpha ("phase 6") data yet +- ~~no closed alpha ("phase 6") data yet~~ - no graph database implemented (TODO), i.e., you have to rebuild the graph each time you run computations which takes some time - path finding on 24k star systems can hit the limits of Ruby (SystemStackError: stack level too deep), try running shorter queries over less distance and combine the results @@ -41,7 +41,7 @@ See [examples/](./examples/) for usage and options to fine-tune. ```bash ❯ ruby examples/distance.rb "D:S299" "Y:1SII" -1974.926982542737 + D:S299 --> Y:1SII: 885.623 ly ``` ### Shortest jump-path between two star systems @@ -54,13 +54,10 @@ best_smart_gate_path = UNIVERSE_GRAPH.shortest_path("D:S299", "Y:1SII") See [examples/](./examples/) for usage and options to fine-tune. ```bash -❯ ruby examples/pathfinder.rb -Mapping all star systems ... done. -Building universe graph ... done. -{"source"=>"D:S299", - "dest"=>"Y:1SII", - "path"=>["D:S299", "G.QXJ.4SH", "P:S696", "Q:1A97", "J:3K85", "Y:1SII"], - "dist"=>1978.63507044974} +❯ ruby examples/pathfinder.rb "D:S299" "Y:1SII" + Mapping all star systems ... done. + Building universe graph ... done. + D:S299 --> Y:1SII: 885.623 ly(D:S299 --> G.QXJ.4SH --> P:S696 --> Q:1A97 --> J:3K85 --> Y:1SII) ``` ### Frontier console diff --git a/bin/api b/bin/api index 5a71192..731219c 100755 --- a/bin/api +++ b/bin/api @@ -1,4 +1,8 @@ #!/usr/bin/env bash + # Update available star systems from swagger API (Phase 5) -curl https://blockchain-gateway-stillness.live.tech.evefrontier.com/solarsystems -o ./spec/fixtures/stars_phase5.json +### curl https://blockchain-gateway-stillness.live.tech.evefrontier.com/solarsystems -o ./spec/fixtures/stars_phase5.json + +# Update available star systems from swagger API (Phase 6) +curl https://blockchain-gateway-nova.nursery.reitnorf.com/solarsystems -o ./spec/fixtures/stars_closed_alpha.json diff --git a/examples/distance.rb b/examples/distance.rb index 484b41e..c713722 100644 --- a/examples/distance.rb +++ b/examples/distance.rb @@ -1,5 +1,9 @@ #!/usr/bin/env ruby +# USAGE +# ruby examples/distance.rb "D:S299" "Y:1SII" +# D:S299 --> Y:1SII: 885.623 ly + # use the local version of the code instead of a globally installed gem $LOAD_PATH.unshift File.expand_path("../../lib", __FILE__) @@ -10,34 +14,23 @@ if __FILE__ == $0 - # Star system IDs are offset by 30 million - STAR_ID_OFFSET = 30_000_000 - - # Amount of star systems in phase 5 - STAR_COUNT = 20_230 - LAST_STAR_ID = STAR_ID_OFFSET + STAR_COUNT - # Make the universe available in these varaibles ALL_STARS = {} # Read star data (locally or from API) - stars_phase5 = File.read "./spec/fixtures/stars_phase5.json" - stars_phase5 = JSON.parse stars_phase5 - mapping_closed_alpha = File.read "./spec/fixtures/mapping_closed_alpha.json" - mapping_closed_alpha = JSON.parse mapping_closed_alpha + stars_closed_alpha = File.read "./spec/fixtures/stars_closed_alpha.json" + stars_closed_alpha = JSON.parse stars_closed_alpha # Create all star system objects with coordinates - c_id = STAR_ID_OFFSET + 1 - prog = 0 - while c_id < LAST_STAR_ID - id = c_id.to_s - location = Coords.new stars_phase5[id]["location"]["x"], stars_phase5[id]["location"]["y"], stars_phase5[id]["location"]["z"] - star = Star.new id, mapping_closed_alpha[id], location + stars_closed_alpha.each do |star| + key = star[0] + value = star[1] + location = Coords.new value["location"]["x"], value["location"]["y"], value["location"]["z"] + star = Star.new key, value["solarSystemName"], location ALL_STARS[star.name] = star - c_id += 1 end - # Direct distance between "D:S299" to "Y:1SII" - direct_distance = ALL_STARS["D:S299"].distance_ly(ALL_STARS["Y:1SII"]) - pp direct_distance + # Direct distance between argument 1 and 2 + direct_distance = ALL_STARS[ARGV[0]].distance_ly(ALL_STARS[ARGV[1]]) + pp "#{ARGV[0]} --> #{ARGV[1]}: #{"%.3f" % direct_distance} ly" end diff --git a/examples/pathfinder.rb b/examples/pathfinder.rb index 85242ef..9831c1b 100644 --- a/examples/pathfinder.rb +++ b/examples/pathfinder.rb @@ -1,5 +1,11 @@ #!/usr/bin/env ruby +# USAGE +# ruby examples/pathfinder.rb "D:S299" "Y:1SII" +# Mapping all star systems ... done. +# Building universe graph ... done. +# D:S299 --> Y:1SII: 885.623 ly(D:S299 --> G.QXJ.4SH --> P:S696 --> Q:1A97 --> J:3K85 --> Y:1SII) + # use the local version of the code instead of a globally installed gem $LOAD_PATH.unshift File.expand_path("../../lib", __FILE__) @@ -21,24 +27,21 @@ LAST_STAR_ID = STAR_ID_OFFSET + STAR_COUNT # Make the universe available in these varaibles - ALL_STARS = [] + ALL_STARS = {} UNIVERSE_GRAPH = Graph.new # Read star data (locally or from API) - stars_phase5 = File.read "./spec/fixtures/stars_phase5.json" - stars_phase5 = JSON.parse stars_phase5 - mapping_closed_alpha = File.read "./spec/fixtures/mapping_closed_alpha.json" - mapping_closed_alpha = JSON.parse mapping_closed_alpha + stars_closed_alpha = File.read "./spec/fixtures/stars_closed_alpha.json" + stars_closed_alpha = JSON.parse stars_closed_alpha # Create all star system objects with coordinates - c_id = STAR_ID_OFFSET + 1 prog = 0 - while c_id < LAST_STAR_ID - id = c_id.to_s - location = Coords.new stars_phase5[id]["location"]["x"], stars_phase5[id]["location"]["y"], stars_phase5[id]["location"]["z"] - star = Star.new id, mapping_closed_alpha[id], location - ALL_STARS << star - c_id += 1 + stars_closed_alpha.each do |star| + key = star[0] + value = star[1] + location = Coords.new value["location"]["x"], value["location"]["y"], value["location"]["z"] + star = Star.new key, value["solarSystemName"], location + ALL_STARS[star.name] = star prog += 1 perc = prog.to_f / ALL_STARS.length.to_f * 100.0 print "Mapping all star systems ... #{"%3.2f" % perc}%\r" @@ -50,9 +53,9 @@ prog = 0 ALL_STARS.each do |a| ALL_STARS.each do |b| - dist = a.distance_ly(b) + dist = a[1].distance_ly(b[1]) if dist < MAX_JUMP_RANGE && dist > 0 - UNIVERSE_GRAPH.add_edge a.name, b.name, dist + UNIVERSE_GRAPH.add_edge a[1].name, b[1].name, dist end prog += 1 perc = prog.to_f / (ALL_STARS.length.to_f * ALL_STARS.length.to_f) * 100.0 @@ -61,7 +64,7 @@ end print "Building universe graph ... done.\n" - # Path from "D:S299" to "Y:1SII" - best_smart_gate_path = UNIVERSE_GRAPH.shortest_path("D:S299", "Y:1SII") - pp best_smart_gate_path + # Path from argument 1 and 2 + best_smart_gate_path = UNIVERSE_GRAPH.shortest_path(ARGV[0], ARGV[1]) + pp "#{ARGV[0]} --> #{ARGV[1]}: #{"%.3f" % best_smart_gate_path.dist} ly (#{best_smart_gate_path.path.join(" --> ")})" end diff --git a/spec/fixtures/stars_closed_alpha.json b/spec/fixtures/stars_closed_alpha.json new file mode 100644 index 0000000..8029d32 --- /dev/null +++ b/spec/fixtures/stars_closed_alpha.json @@ -0,0 +1 @@ +{"30000001":{"solarSystemId":30000001,"solarSystemName":"A 2560","location":{"x":-3350000000000000000,"y":-510000000000000000,"z":396000000000000000}},"30000002":{"solarSystemId":30000002,"solarSystemName":"M 974","location":{"x":-11000000000000000000,"y":491000000000000000,"z":-7290000000000000000}},"30000003":{"solarSystemId":30000003,"solarSystemName":"U 3183","location":{"x":-20800000000000000000,"y":-687000000000000000,"z":-3690000000000000000}},"30000012":{"solarSystemId":30000012,"solarSystemName":"F:3ILI","location":{"x":-4720000000000000000,"y":3290000000000000000,"z":-416000000000000000}},"30000013":{"solarSystemId":30000013,"solarSystemName":"G:3N2S","location":{"x":-4270000000000000000,"y":3320000000000000000,"z":-580000000000000000}},"30000014":{"solarSystemId":30000014,"solarSystemName":"Ranok","location":{"x":-4230000000000000000,"y":2420000000000000000,"z":-155000000000000000}},"30000015":{"solarSystemId":30000015,"solarSystemName":"F:39O4","location":{"x":-4150000000000000000,"y":2650000000000000000,"z":-144000000000000000}},"30000016":{"solarSystemId":30000016,"solarSystemName":"Q:3A86","location":{"x":-4550000000000000000,"y":3110000000000000000,"z":-1090000000000000000}},"30000017":{"solarSystemId":30000017,"solarSystemName":"D:314I","location":{"x":-4630000000000000000,"y":3290000000000000000,"z":-1350000000000000000}},"30000018":{"solarSystemId":30000018,"solarSystemName":"H:2INK","location":{"x":-4950000000000000000,"y":3180000000000000000,"z":-1180000000000000000}},"30000019":{"solarSystemId":30000019,"solarSystemName":"Y:31I7","location":{"x":-3960000000000000000,"y":3660000000000000000,"z":-703000000000000000}},"30000020":{"solarSystemId":30000020,"solarSystemName":"Y:1A0L","location":{"x":-5060000000000000000,"y":2850000000000000000,"z":-1080000000000000000}},"30000021":{"solarSystemId":30000021,"solarSystemName":"M:18AN","location":{"x":-5300000000000000000,"y":3410000000000000000,"z":-946000000000000000}},"30000022":{"solarSystemId":30000022,"solarSystemName":"G:341K","location":{"x":-4010000000000000000,"y":5390000000000000000,"z":-383000000000000000}},"30000023":{"solarSystemId":30000023,"solarSystemName":"M:3R2E","location":{"x":-2560000000000000000,"y":3010000000000000000,"z":118000000000000000}},"30000024":{"solarSystemId":30000024,"solarSystemName":"Q:2TKV","location":{"x":-4100000000000000000,"y":5120000000000000000,"z":-511000000000000000}},"30000025":{"solarSystemId":30000025,"solarSystemName":"U:33LL","location":{"x":-2870000000000000000,"y":3690000000000000000,"z":11800000000000000}},"30000026":{"solarSystemId":30000026,"solarSystemName":"P:3SE5","location":{"x":-4730000000000000000,"y":5320000000000000000,"z":-186000000000000000}},"30000027":{"solarSystemId":30000027,"solarSystemName":"Q:2L17","location":{"x":-3760000000000000000,"y":3620000000000000000,"z":-2250000000000000000}},"30000028":{"solarSystemId":30000028,"solarSystemName":"D:20AS","location":{"x":-3690000000000000000,"y":4560000000000000000,"z":-1070000000000000000}},"30000029":{"solarSystemId":30000029,"solarSystemName":"P:1TET","location":{"x":-3000000000000000000,"y":4070000000000000000,"z":-1310000000000000000}},"30000030":{"solarSystemId":30000030,"solarSystemName":"D:31L2","location":{"x":-5500000000000000000,"y":3090000000000000000,"z":-392000000000000000}},"30000031":{"solarSystemId":30000031,"solarSystemName":"U:2T0L","location":{"x":-5520000000000000000,"y":3930000000000000000,"z":900000000000000000}},"30000032":{"solarSystemId":30000032,"solarSystemName":"M:3AOT","location":{"x":-4950000000000000000,"y":4950000000000000000,"z":994000000000000000}},"30000033":{"solarSystemId":30000033,"solarSystemName":"Y:2NN9","location":{"x":-5700000000000000000,"y":4520000000000000000,"z":944000000000000000}},"30000034":{"solarSystemId":30000034,"solarSystemName":"M:2AR3","location":{"x":-5020000000000000000,"y":4730000000000000000,"z":870000000000000000}},"30000035":{"solarSystemId":30000035,"solarSystemName":"J:13LA","location":{"x":-4790000000000000000,"y":5590000000000000000,"z":680000000000000000}},"30000036":{"solarSystemId":30000036,"solarSystemName":"D:2V5T","location":{"x":-2720000000000000000,"y":1530000000000000000,"z":-2260000000000000000}},"30000037":{"solarSystemId":30000037,"solarSystemName":"B:321E","location":{"x":-1810000000000000000,"y":1770000000000000000,"z":-1750000000000000000}},"30000038":{"solarSystemId":30000038,"solarSystemName":"J:2R9O","location":{"x":-2050000000000000000,"y":2800000000000000000,"z":-3380000000000000000}},"30000039":{"solarSystemId":30000039,"solarSystemName":"Y:3581","location":{"x":-2640000000000000000,"y":1610000000000000000,"z":-3170000000000000000}},"30000040":{"solarSystemId":30000040,"solarSystemName":"Z:37KS","location":{"x":-2760000000000000000,"y":1940000000000000000,"z":-2150000000000000000}},"30000041":{"solarSystemId":30000041,"solarSystemName":"Z:2TSO","location":{"x":-2610000000000000000,"y":3190000000000000000,"z":-3110000000000000000}},"30000042":{"solarSystemId":30000042,"solarSystemName":"G:3O2S","location":{"x":-2570000000000000000,"y":2210000000000000000,"z":-2500000000000000000}},"30000043":{"solarSystemId":30000043,"solarSystemName":"Y:3TR8","location":{"x":-1970000000000000000,"y":2160000000000000000,"z":-3370000000000000000}},"30000044":{"solarSystemId":30000044,"solarSystemName":"P:34S2","location":{"x":-1570000000000000000,"y":1660000000000000000,"z":-2790000000000000000}},"30000045":{"solarSystemId":30000045,"solarSystemName":"F:34K5","location":{"x":-2220000000000000000,"y":1620000000000000000,"z":-3340000000000000000}},"30000046":{"solarSystemId":30000046,"solarSystemName":"P:301N","location":{"x":-3060000000000000000,"y":1650000000000000000,"z":-1600000000000000000}},"30000047":{"solarSystemId":30000047,"solarSystemName":"D:15OI","location":{"x":-2300000000000000000,"y":1150000000000000000,"z":-2750000000000000000}},"30000048":{"solarSystemId":30000048,"solarSystemName":"J:2O5O","location":{"x":-3890000000000000000,"y":3580000000000000000,"z":698000000000000000}},"30000049":{"solarSystemId":30000049,"solarSystemName":"F:2N0N","location":{"x":-3920000000000000000,"y":3370000000000000000,"z":1230000000000000000}},"30000050":{"solarSystemId":30000050,"solarSystemName":"P:37KA","location":{"x":-3950000000000000000,"y":2600000000000000000,"z":330000000000000000}},"30000051":{"solarSystemId":30000051,"solarSystemName":"Q:2EA4","location":{"x":-3770000000000000000,"y":3170000000000000000,"z":822000000000000000}},"30000052":{"solarSystemId":30000052,"solarSystemName":"B:2IL0","location":{"x":-3440000000000000000,"y":3140000000000000000,"z":431000000000000000}},"30000053":{"solarSystemId":30000053,"solarSystemName":"U:2OVE","location":{"x":-3700000000000000000,"y":3550000000000000000,"z":1390000000000000000}},"30000054":{"solarSystemId":30000054,"solarSystemName":"P:2E65","location":{"x":-3830000000000000000,"y":4330000000000000000,"z":1410000000000000000}},"30000055":{"solarSystemId":30000055,"solarSystemName":"F:3O58","location":{"x":-3440000000000000000,"y":2910000000000000000,"z":1040000000000000000}},"30000056":{"solarSystemId":30000056,"solarSystemName":"J:2L8N","location":{"x":-5120000000000000000,"y":3740000000000000000,"z":-161000000000000000}},"30000057":{"solarSystemId":30000057,"solarSystemName":"J:3E47","location":{"x":-5060000000000000000,"y":3390000000000000000,"z":-259000000000000000}},"30000058":{"solarSystemId":30000058,"solarSystemName":"D:3SKA","location":{"x":-4780000000000000000,"y":2840000000000000000,"z":-54600000000000000}},"30000059":{"solarSystemId":30000059,"solarSystemName":"Q:2V6L","location":{"x":-4620000000000000000,"y":2660000000000000000,"z":777000000000000000}},"30000060":{"solarSystemId":30000060,"solarSystemName":"J:3N0A","location":{"x":-4540000000000000000,"y":3560000000000000000,"z":266000000000000000}},"30000061":{"solarSystemId":30000061,"solarSystemName":"P:2IT7","location":{"x":-4570000000000000000,"y":3700000000000000000,"z":844000000000000000}},"30000062":{"solarSystemId":30000062,"solarSystemName":"D:314R","location":{"x":-4740000000000000000,"y":3410000000000000000,"z":492000000000000000}},"30000063":{"solarSystemId":30000063,"solarSystemName":"H:2NL1","location":{"x":-5570000000000000000,"y":3150000000000000000,"z":531000000000000000}},"30000064":{"solarSystemId":30000064,"solarSystemName":"Z:1O1O","location":{"x":-4880000000000000000,"y":2710000000000000000,"z":761000000000000000}},"30000065":{"solarSystemId":30000065,"solarSystemName":"H:2L8A","location":{"x":-4690000000000000000,"y":4860000000000000000,"z":-443000000000000000}},"30000066":{"solarSystemId":30000066,"solarSystemName":"P:391V","location":{"x":-5090000000000000000,"y":4550000000000000000,"z":-1270000000000000000}},"30000067":{"solarSystemId":30000067,"solarSystemName":"U:3I93","location":{"x":-5200000000000000000,"y":5280000000000000000,"z":-1320000000000000000}},"30000068":{"solarSystemId":30000068,"solarSystemName":"Q:34KT","location":{"x":-5550000000000000000,"y":4860000000000000000,"z":-163000000000000000}},"30000069":{"solarSystemId":30000069,"solarSystemName":"Q:2E1I","location":{"x":-5350000000000000000,"y":3990000000000000000,"z":-757000000000000000}},"30000070":{"solarSystemId":30000070,"solarSystemName":"Z:2TV3","location":{"x":-6030000000000000000,"y":4760000000000000000,"z":-424000000000000000}},"30000071":{"solarSystemId":30000071,"solarSystemName":"D:2A20","location":{"x":-2380000000000000000,"y":4740000000000000000,"z":-22200000000000000}},"30000072":{"solarSystemId":30000072,"solarSystemName":"M:3S71","location":{"x":-2300000000000000000,"y":5270000000000000000,"z":345000000000000000}},"30000073":{"solarSystemId":30000073,"solarSystemName":"Q:3NKA","location":{"x":-2040000000000000000,"y":4320000000000000000,"z":-36100000000000000}},"30000074":{"solarSystemId":30000074,"solarSystemName":"F:2V1I","location":{"x":-3590000000000000000,"y":4830000000000000000,"z":-1080000000000000000}},"30000075":{"solarSystemId":30000075,"solarSystemName":"H:2R4V","location":{"x":-2120000000000000000,"y":3800000000000000000,"z":-375000000000000000}},"30000076":{"solarSystemId":30000076,"solarSystemName":"U:36SO","location":{"x":-2100000000000000000,"y":4590000000000000000,"z":-344000000000000000}},"30000077":{"solarSystemId":30000077,"solarSystemName":"J:37KK","location":{"x":-2860000000000000000,"y":4890000000000000000,"z":-141000000000000000}},"30000078":{"solarSystemId":30000078,"solarSystemName":"U:3VS0","location":{"x":-4380000000000000000,"y":649000000000000000,"z":1850000000000000000}},"30000079":{"solarSystemId":30000079,"solarSystemName":"G:3328","location":{"x":-4010000000000000000,"y":224000000000000000,"z":2240000000000000000}},"30000080":{"solarSystemId":30000080,"solarSystemName":"Q:2NLO","location":{"x":-3910000000000000000,"y":775000000000000000,"z":2110000000000000000}},"30000081":{"solarSystemId":30000081,"solarSystemName":"H:3NE9","location":{"x":-4090000000000000000,"y":173000000000000000,"z":2130000000000000000}},"30000082":{"solarSystemId":30000082,"solarSystemName":"H:30KO","location":{"x":-4310000000000000000,"y":764000000000000000,"z":1710000000000000000}},"30000083":{"solarSystemId":30000083,"solarSystemName":"U:1O61","location":{"x":-4250000000000000000,"y":567000000000000000,"z":2860000000000000000}},"30000084":{"solarSystemId":30000084,"solarSystemName":"Y:KOI6","location":{"x":-5200000000000000000,"y":754000000000000000,"z":2230000000000000000}},"30000085":{"solarSystemId":30000085,"solarSystemName":"Q:2330","location":{"x":-4290000000000000000,"y":-71000000000000000,"z":2150000000000000000}},"30000086":{"solarSystemId":30000086,"solarSystemName":"Z:272E","location":{"x":-4370000000000000000,"y":127000000000000000,"z":1940000000000000000}},"30000087":{"solarSystemId":30000087,"solarSystemName":"Q:1KLE","location":{"x":-4680000000000000000,"y":563000000000000000,"z":2980000000000000000}},"30000088":{"solarSystemId":30000088,"solarSystemName":"P:3TE4","location":{"x":-5010000000000000000,"y":171000000000000000,"z":2300000000000000000}},"30000089":{"solarSystemId":30000089,"solarSystemName":"M:1VIR","location":{"x":-4540000000000000000,"y":-28700000000000000,"z":2370000000000000000}},"30000090":{"solarSystemId":30000090,"solarSystemName":"B:3AO9","location":{"x":-4230000000000000000,"y":449000000000000000,"z":1730000000000000000}},"30000091":{"solarSystemId":30000091,"solarSystemName":"H:2OV6","location":{"x":-5120000000000000000,"y":245000000000000000,"z":2040000000000000000}},"30000092":{"solarSystemId":30000092,"solarSystemName":"B:3S59","location":{"x":-4800000000000000000,"y":136000000000000000,"z":1990000000000000000}},"30000093":{"solarSystemId":30000093,"solarSystemName":"J:31RA","location":{"x":-4460000000000000000,"y":674000000000000000,"z":2270000000000000000}},"30000094":{"solarSystemId":30000094,"solarSystemName":"J:3TR1","location":{"x":-4550000000000000000,"y":501000000000000000,"z":2500000000000000000}},"30000095":{"solarSystemId":30000095,"solarSystemName":"Y:30I1","location":{"x":-4500000000000000000,"y":-13200000000000000,"z":2280000000000000000}},"30000096":{"solarSystemId":30000096,"solarSystemName":"U:3TKA","location":{"x":-4670000000000000000,"y":432000000000000000,"z":2990000000000000000}},"30000097":{"solarSystemId":30000097,"solarSystemName":"P:2TVV","location":{"x":-4650000000000000000,"y":510000000000000000,"z":2330000000000000000}},"30000098":{"solarSystemId":30000098,"solarSystemName":"P:333V","location":{"x":-4260000000000000000,"y":847000000000000000,"z":2130000000000000000}},"30000099":{"solarSystemId":30000099,"solarSystemName":"F:30R2","location":{"x":-4450000000000000000,"y":1880000000000000000,"z":2590000000000000000}},"30000100":{"solarSystemId":30000100,"solarSystemName":"B:3IS7","location":{"x":-4930000000000000000,"y":1130000000000000000,"z":2510000000000000000}},"30000101":{"solarSystemId":30000101,"solarSystemName":"Y:2KEO","location":{"x":-4840000000000000000,"y":1100000000000000000,"z":1700000000000000000}},"30000102":{"solarSystemId":30000102,"solarSystemName":"F:3A0A","location":{"x":-5010000000000000000,"y":1160000000000000000,"z":2270000000000000000}},"30000103":{"solarSystemId":30000103,"solarSystemName":"M:3N9T","location":{"x":-5590000000000000000,"y":1900000000000000000,"z":1980000000000000000}},"30000104":{"solarSystemId":30000104,"solarSystemName":"Q:1EO3","location":{"x":-5240000000000000000,"y":929000000000000000,"z":2660000000000000000}},"30000105":{"solarSystemId":30000105,"solarSystemName":"P:2I1T","location":{"x":-4250000000000000000,"y":1910000000000000000,"z":2320000000000000000}},"30000106":{"solarSystemId":30000106,"solarSystemName":"J:3SKE","location":{"x":-4300000000000000000,"y":1110000000000000000,"z":2120000000000000000}},"30000107":{"solarSystemId":30000107,"solarSystemName":"Y:3AV5","location":{"x":-5010000000000000000,"y":1620000000000000000,"z":1910000000000000000}},"30000108":{"solarSystemId":30000108,"solarSystemName":"B:3085","location":{"x":-4300000000000000000,"y":1410000000000000000,"z":2870000000000000000}},"30000109":{"solarSystemId":30000109,"solarSystemName":"P:3N0E","location":{"x":-4850000000000000000,"y":1450000000000000000,"z":2310000000000000000}},"30000110":{"solarSystemId":30000110,"solarSystemName":"P:3VE6","location":{"x":-5240000000000000000,"y":2240000000000000000,"z":2160000000000000000}},"30000111":{"solarSystemId":30000111,"solarSystemName":"Z:3A1R","location":{"x":-4360000000000000000,"y":1420000000000000000,"z":2970000000000000000}},"30000112":{"solarSystemId":30000112,"solarSystemName":"U:30IS","location":{"x":-4470000000000000000,"y":942000000000000000,"z":1790000000000000000}},"30000113":{"solarSystemId":30000113,"solarSystemName":"P:33L5","location":{"x":-6610000000000000000,"y":1670000000000000000,"z":2000000000000000000}},"30000114":{"solarSystemId":30000114,"solarSystemName":"H:3TTE","location":{"x":-6610000000000000000,"y":918000000000000000,"z":2160000000000000000}},"30000115":{"solarSystemId":30000115,"solarSystemName":"D:3038","location":{"x":-6300000000000000000,"y":1750000000000000000,"z":1640000000000000000}},"30000116":{"solarSystemId":30000116,"solarSystemName":"Z:1R21","location":{"x":-5430000000000000000,"y":327000000000000000,"z":1040000000000000000}},"30000117":{"solarSystemId":30000117,"solarSystemName":"F:3435","location":{"x":-5880000000000000000,"y":1080000000000000000,"z":1650000000000000000}},"30000118":{"solarSystemId":30000118,"solarSystemName":"Z:3O6K","location":{"x":-5480000000000000000,"y":382000000000000000,"z":1140000000000000000}},"30000119":{"solarSystemId":30000119,"solarSystemName":"M:1S2K","location":{"x":-5650000000000000000,"y":824000000000000000,"z":1580000000000000000}},"30000120":{"solarSystemId":30000120,"solarSystemName":"J:14N1","location":{"x":-6690000000000000000,"y":1040000000000000000,"z":2480000000000000000}},"30000121":{"solarSystemId":30000121,"solarSystemName":"H:2V5O","location":{"x":-6070000000000000000,"y":695000000000000000,"z":2060000000000000000}},"30000122":{"solarSystemId":30000122,"solarSystemName":"B:3ROV","location":{"x":-5600000000000000000,"y":447000000000000000,"z":1020000000000000000}},"30000123":{"solarSystemId":30000123,"solarSystemName":"G:339V","location":{"x":-6170000000000000000,"y":1820000000000000000,"z":939000000000000000}},"30000124":{"solarSystemId":30000124,"solarSystemName":"F:2K46","location":{"x":-5740000000000000000,"y":519000000000000000,"z":934000000000000000}},"30000125":{"solarSystemId":30000125,"solarSystemName":"B:2O40","location":{"x":-5620000000000000000,"y":1400000000000000000,"z":559000000000000000}},"30000126":{"solarSystemId":30000126,"solarSystemName":"G:3A9O","location":{"x":-5550000000000000000,"y":1010000000000000000,"z":775000000000000000}},"30000127":{"solarSystemId":30000127,"solarSystemName":"J:3TA6","location":{"x":-5600000000000000000,"y":845000000000000000,"z":528000000000000000}},"30000128":{"solarSystemId":30000128,"solarSystemName":"U:387A","location":{"x":-4970000000000000000,"y":827000000000000000,"z":1190000000000000000}},"30000129":{"solarSystemId":30000129,"solarSystemName":"Z:32VT","location":{"x":-1920000000000000000,"y":1800000000000000000,"z":4710000000000000000}},"30000130":{"solarSystemId":30000130,"solarSystemName":"F:3R3L","location":{"x":-2330000000000000000,"y":1690000000000000000,"z":4130000000000000000}},"30000131":{"solarSystemId":30000131,"solarSystemName":"H:30ES","location":{"x":-2510000000000000000,"y":1890000000000000000,"z":4320000000000000000}},"30000132":{"solarSystemId":30000132,"solarSystemName":"Y:22VL","location":{"x":-2100000000000000000,"y":1530000000000000000,"z":4500000000000000000}},"30000133":{"solarSystemId":30000133,"solarSystemName":"F:3LN5","location":{"x":-3280000000000000000,"y":1470000000000000000,"z":3700000000000000000}},"30000134":{"solarSystemId":30000134,"solarSystemName":"H:3TSS","location":{"x":-2510000000000000000,"y":1610000000000000000,"z":3610000000000000000}},"30000135":{"solarSystemId":30000135,"solarSystemName":"U:3SL1","location":{"x":-2800000000000000000,"y":1110000000000000000,"z":3970000000000000000}},"30000136":{"solarSystemId":30000136,"solarSystemName":"J:2S7L","location":{"x":-3080000000000000000,"y":857000000000000000,"z":4410000000000000000}},"30000137":{"solarSystemId":30000137,"solarSystemName":"M:3971","location":{"x":-2230000000000000000,"y":2910000000000000000,"z":4310000000000000000}},"30000138":{"solarSystemId":30000138,"solarSystemName":"H:2OR9","location":{"x":-3260000000000000000,"y":1700000000000000000,"z":3680000000000000000}},"30000139":{"solarSystemId":30000139,"solarSystemName":"Q:29KS","location":{"x":-3010000000000000000,"y":860000000000000000,"z":4490000000000000000}},"30000140":{"solarSystemId":30000140,"solarSystemName":"M:359O","location":{"x":-2280000000000000000,"y":1800000000000000000,"z":4150000000000000000}},"30000141":{"solarSystemId":30000141,"solarSystemName":"Z:3617","location":{"x":-1670000000000000000,"y":1420000000000000000,"z":4460000000000000000}},"30000142":{"solarSystemId":30000142,"solarSystemName":"U:327R","location":{"x":-5560000000000000000,"y":228000000000000000,"z":1640000000000000000}},"30000143":{"solarSystemId":30000143,"solarSystemName":"P:2SK5","location":{"x":-5460000000000000000,"y":-497000000000000000,"z":2420000000000000000}},"30000144":{"solarSystemId":30000144,"solarSystemName":"G:1RSR","location":{"x":-5740000000000000000,"y":-65300000000000000,"z":2160000000000000000}},"30000145":{"solarSystemId":30000145,"solarSystemName":"Z:406A","location":{"x":-5700000000000000000,"y":-137000000000000000,"z":1590000000000000000}},"30000146":{"solarSystemId":30000146,"solarSystemName":"Z:1EE3","location":{"x":-5850000000000000000,"y":-270000000000000000,"z":1650000000000000000}},"30000147":{"solarSystemId":30000147,"solarSystemName":"D:3559","location":{"x":-5390000000000000000,"y":220000000000000000,"z":2190000000000000000}},"30000148":{"solarSystemId":30000148,"solarSystemName":"Q:1N4O","location":{"x":-5820000000000000000,"y":-60800000000000000,"z":2060000000000000000}},"30000149":{"solarSystemId":30000149,"solarSystemName":"Y:3EKI","location":{"x":-5580000000000000000,"y":-65100000000000000,"z":1670000000000000000}},"30000150":{"solarSystemId":30000150,"solarSystemName":"M:3VTV","location":{"x":-5890000000000000000,"y":-222000000000000000,"z":1720000000000000000}},"30000151":{"solarSystemId":30000151,"solarSystemName":"U:1K43","location":{"x":-5960000000000000000,"y":220000000000000000,"z":1480000000000000000}},"30000152":{"solarSystemId":30000152,"solarSystemName":"U:30N2","location":{"x":-5510000000000000000,"y":228000000000000000,"z":1860000000000000000}},"30000153":{"solarSystemId":30000153,"solarSystemName":"Q:2L5N","location":{"x":-5530000000000000000,"y":-161000000000000000,"z":2600000000000000000}},"30000154":{"solarSystemId":30000154,"solarSystemName":"G:3A68","location":{"x":-5620000000000000000,"y":560000000000000000,"z":1850000000000000000}},"30000155":{"solarSystemId":30000155,"solarSystemName":"P:31V7","location":{"x":-5730000000000000000,"y":184000000000000000,"z":1580000000000000000}},"30000156":{"solarSystemId":30000156,"solarSystemName":"M:1N8K","location":{"x":-5690000000000000000,"y":307000000000000000,"z":1560000000000000000}},"30000157":{"solarSystemId":30000157,"solarSystemName":"H:2787","location":{"x":-5480000000000000000,"y":-346000000000000000,"z":2040000000000000000}},"30000158":{"solarSystemId":30000158,"solarSystemName":"Y:33RO","location":{"x":-5270000000000000000,"y":-73500000000000000,"z":2340000000000000000}},"30000159":{"solarSystemId":30000159,"solarSystemName":"F:1ST9","location":{"x":-5720000000000000000,"y":-452000000000000000,"z":2450000000000000000}},"30000160":{"solarSystemId":30000160,"solarSystemName":"J:38O6","location":{"x":-3000000000000000000,"y":1370000000000000000,"z":2940000000000000000}},"30000161":{"solarSystemId":30000161,"solarSystemName":"Q:33A7","location":{"x":-3010000000000000000,"y":884000000000000000,"z":3630000000000000000}},"30000162":{"solarSystemId":30000162,"solarSystemName":"F:3R9K","location":{"x":-4870000000000000000,"y":1160000000000000000,"z":4190000000000000000}},"30000163":{"solarSystemId":30000163,"solarSystemName":"D:31L7","location":{"x":-3690000000000000000,"y":1530000000000000000,"z":3420000000000000000}},"30000164":{"solarSystemId":30000164,"solarSystemName":"H:396O","location":{"x":-4280000000000000000,"y":2210000000000000000,"z":3500000000000000000}},"30000165":{"solarSystemId":30000165,"solarSystemName":"B:3S6A","location":{"x":-3990000000000000000,"y":1340000000000000000,"z":3400000000000000000}},"30000166":{"solarSystemId":30000166,"solarSystemName":"M:32O2","location":{"x":-3290000000000000000,"y":812000000000000000,"z":2910000000000000000}},"30000167":{"solarSystemId":30000167,"solarSystemName":"U:2OO4","location":{"x":-4400000000000000000,"y":512000000000000000,"z":4570000000000000000}},"30000168":{"solarSystemId":30000168,"solarSystemName":"D:ASTT","location":{"x":-4090000000000000000,"y":615000000000000000,"z":4380000000000000000}},"30000169":{"solarSystemId":30000169,"solarSystemName":"Q:1IO8","location":{"x":-4280000000000000000,"y":768000000000000000,"z":4360000000000000000}},"30000170":{"solarSystemId":30000170,"solarSystemName":"J:2N3O","location":{"x":-4020000000000000000,"y":920000000000000000,"z":3850000000000000000}},"30000171":{"solarSystemId":30000171,"solarSystemName":"G:3966","location":{"x":-4780000000000000000,"y":1590000000000000000,"z":4020000000000000000}},"30000172":{"solarSystemId":30000172,"solarSystemName":"M:3A6S","location":{"x":-4200000000000000000,"y":2310000000000000000,"z":3090000000000000000}},"30000173":{"solarSystemId":30000173,"solarSystemName":"P:2TT3","location":{"x":-3390000000000000000,"y":738000000000000000,"z":2460000000000000000}},"30000174":{"solarSystemId":30000174,"solarSystemName":"D:2TE1","location":{"x":-4140000000000000000,"y":1060000000000000000,"z":3630000000000000000}},"30000175":{"solarSystemId":30000175,"solarSystemName":"J:29LK","location":{"x":-2950000000000000000,"y":1790000000000000000,"z":3150000000000000000}},"30000176":{"solarSystemId":30000176,"solarSystemName":"Q:2I98","location":{"x":-3020000000000000000,"y":1100000000000000000,"z":3620000000000000000}},"30000177":{"solarSystemId":30000177,"solarSystemName":"Q:3IIV","location":{"x":-4700000000000000000,"y":1880000000000000000,"z":3560000000000000000}},"30000178":{"solarSystemId":30000178,"solarSystemName":"M:35OL","location":{"x":-2970000000000000000,"y":31700000000000000,"z":2950000000000000000}},"30000179":{"solarSystemId":30000179,"solarSystemName":"Q:2SNT","location":{"x":-2590000000000000000,"y":-192000000000000000,"z":3520000000000000000}},"30000180":{"solarSystemId":30000180,"solarSystemName":"F:1541","location":{"x":-2700000000000000000,"y":56700000000000000,"z":3690000000000000000}},"30000181":{"solarSystemId":30000181,"solarSystemName":"G:18TL","location":{"x":-2940000000000000000,"y":156000000000000000,"z":3170000000000000000}},"30000182":{"solarSystemId":30000182,"solarSystemName":"H:23N4","location":{"x":-2340000000000000000,"y":145000000000000000,"z":3680000000000000000}},"30000183":{"solarSystemId":30000183,"solarSystemName":"J:236S","location":{"x":-2290000000000000000,"y":-87600000000000000,"z":3570000000000000000}},"30000184":{"solarSystemId":30000184,"solarSystemName":"F:100L","location":{"x":-2550000000000000000,"y":737000000000000000,"z":3220000000000000000}},"30000185":{"solarSystemId":30000185,"solarSystemName":"M:2T78","location":{"x":-3030000000000000000,"y":878000000000000000,"z":3400000000000000000}},"30000186":{"solarSystemId":30000186,"solarSystemName":"P:1VA5","location":{"x":-2760000000000000000,"y":81100000000000000,"z":3260000000000000000}},"30000187":{"solarSystemId":30000187,"solarSystemName":"G:314V","location":{"x":-2660000000000000000,"y":585000000000000000,"z":3420000000000000000}},"30000188":{"solarSystemId":30000188,"solarSystemName":"B:2T2N","location":{"x":-2170000000000000000,"y":485000000000000000,"z":3690000000000000000}},"30000189":{"solarSystemId":30000189,"solarSystemName":"J:327A","location":{"x":-2360000000000000000,"y":361000000000000000,"z":2970000000000000000}},"30000190":{"solarSystemId":30000190,"solarSystemName":"M:2SO1","location":{"x":-2320000000000000000,"y":753000000000000000,"z":3730000000000000000}},"30000191":{"solarSystemId":30000191,"solarSystemName":"H:2A73","location":{"x":-2480000000000000000,"y":1140000000000000000,"z":3390000000000000000}},"30000192":{"solarSystemId":30000192,"solarSystemName":"H:3E3R","location":{"x":-2550000000000000000,"y":266000000000000000,"z":3530000000000000000}},"30000193":{"solarSystemId":30000193,"solarSystemName":"Q:2A88","location":{"x":-2620000000000000000,"y":355000000000000000,"z":3240000000000000000}},"30000194":{"solarSystemId":30000194,"solarSystemName":"P:33KK","location":{"x":-2140000000000000000,"y":362000000000000000,"z":2810000000000000000}},"30000195":{"solarSystemId":30000195,"solarSystemName":"U:30KN","location":{"x":-2470000000000000000,"y":563000000000000000,"z":1940000000000000000}},"30000196":{"solarSystemId":30000196,"solarSystemName":"J:37IE","location":{"x":-3210000000000000000,"y":325000000000000000,"z":1970000000000000000}},"30000197":{"solarSystemId":30000197,"solarSystemName":"P:3E56","location":{"x":-2670000000000000000,"y":31300000000000000,"z":1760000000000000000}},"30000198":{"solarSystemId":30000198,"solarSystemName":"B:2RT6","location":{"x":-2930000000000000000,"y":-260000000000000000,"z":1790000000000000000}},"30000199":{"solarSystemId":30000199,"solarSystemName":"P:3V83","location":{"x":-3590000000000000000,"y":208000000000000000,"z":2430000000000000000}},"30000200":{"solarSystemId":30000200,"solarSystemName":"U:30VT","location":{"x":-2970000000000000000,"y":111000000000000000,"z":2660000000000000000}},"30000201":{"solarSystemId":30000201,"solarSystemName":"M:38TS","location":{"x":-2710000000000000000,"y":432000000000000000,"z":1740000000000000000}},"30000202":{"solarSystemId":30000202,"solarSystemName":"P:20K9","location":{"x":-3550000000000000000,"y":224000000000000000,"z":2560000000000000000}},"30000203":{"solarSystemId":30000203,"solarSystemName":"G:10A4","location":{"x":-3190000000000000000,"y":-57800000000000000,"z":2160000000000000000}},"30000204":{"solarSystemId":30000204,"solarSystemName":"U:23O8","location":{"x":-3090000000000000000,"y":-56200000000000000,"z":2750000000000000000}},"30000205":{"solarSystemId":30000205,"solarSystemName":"M:25S7","location":{"x":-2920000000000000000,"y":43600000000000000,"z":2330000000000000000}},"30000206":{"solarSystemId":30000206,"solarSystemName":"M:2541","location":{"x":-3310000000000000000,"y":-14300000000000000,"z":2030000000000000000}},"30000207":{"solarSystemId":30000207,"solarSystemName":"J:3TSE","location":{"x":-2850000000000000000,"y":767000000000000000,"z":2230000000000000000}},"30000208":{"solarSystemId":30000208,"solarSystemName":"P:2KTE","location":{"x":-2670000000000000000,"y":-368000000000000000,"z":2060000000000000000}},"30000209":{"solarSystemId":30000209,"solarSystemName":"G:2S9I","location":{"x":-2950000000000000000,"y":11300000000000000,"z":2140000000000000000}},"30000210":{"solarSystemId":30000210,"solarSystemName":"D:2V99","location":{"x":-2790000000000000000,"y":10200000000000000,"z":1750000000000000000}},"30000211":{"solarSystemId":30000211,"solarSystemName":"Z:SR2K","location":{"x":-2800000000000000000,"y":491000000000000000,"z":2660000000000000000}},"30000212":{"solarSystemId":30000212,"solarSystemName":"U:2ORR","location":{"x":-3150000000000000000,"y":-356000000000000000,"z":2210000000000000000}},"30000213":{"solarSystemId":30000213,"solarSystemName":"U:2L0S","location":{"x":-2740000000000000000,"y":-143000000000000000,"z":2700000000000000000}},"30000214":{"solarSystemId":30000214,"solarSystemName":"Z:18N7","location":{"x":-2990000000000000000,"y":-190000000000000000,"z":1820000000000000000}},"30000215":{"solarSystemId":30000215,"solarSystemName":"B:16LS","location":{"x":-3220000000000000000,"y":94400000000000000,"z":2740000000000000000}},"30000216":{"solarSystemId":30000216,"solarSystemName":"P:12A0","location":{"x":-2450000000000000000,"y":222000000000000000,"z":2100000000000000000}},"30000217":{"solarSystemId":30000217,"solarSystemName":"F:3ERN","location":{"x":-3480000000000000000,"y":150000000000000000,"z":2290000000000000000}},"30000218":{"solarSystemId":30000218,"solarSystemName":"B:29NK","location":{"x":-3230000000000000000,"y":69500000000000000,"z":2980000000000000000}},"30000219":{"solarSystemId":30000219,"solarSystemName":"G:3OK8","location":{"x":-3300000000000000000,"y":-190000000000000000,"z":2710000000000000000}},"30000220":{"solarSystemId":30000220,"solarSystemName":"F:2R52","location":{"x":-2970000000000000000,"y":-277000000000000000,"z":2840000000000000000}},"30000221":{"solarSystemId":30000221,"solarSystemName":"H:2VK7","location":{"x":-3120000000000000000,"y":-206000000000000000,"z":2340000000000000000}},"30000222":{"solarSystemId":30000222,"solarSystemName":"D:3A0I","location":{"x":-2760000000000000000,"y":101000000000000000,"z":1790000000000000000}},"30000223":{"solarSystemId":30000223,"solarSystemName":"Q:2V1N","location":{"x":-2960000000000000000,"y":766000000000000000,"z":2610000000000000000}},"30000224":{"solarSystemId":30000224,"solarSystemName":"P:3RNN","location":{"x":-1930000000000000000,"y":-72200000000000000,"z":-743000000000000000}},"30000225":{"solarSystemId":30000225,"solarSystemName":"B:3A6A","location":{"x":-2720000000000000000,"y":307000000000000000,"z":-341000000000000000}},"30000226":{"solarSystemId":30000226,"solarSystemName":"B:2A7T","location":{"x":-1810000000000000000,"y":65200000000000000,"z":-414000000000000000}},"30000227":{"solarSystemId":30000227,"solarSystemName":"H:340R","location":{"x":-2810000000000000000,"y":179000000000000000,"z":-344000000000000000}},"30000228":{"solarSystemId":30000228,"solarSystemName":"Z:3SLI","location":{"x":-2940000000000000000,"y":150000000000000000,"z":-390000000000000000}},"30000229":{"solarSystemId":30000229,"solarSystemName":"H:3OR8","location":{"x":-2810000000000000000,"y":205000000000000000,"z":-317000000000000000}},"30000230":{"solarSystemId":30000230,"solarSystemName":"M:3NAK","location":{"x":-2030000000000000000,"y":-3720000000000000,"z":-1070000000000000000}},"30000231":{"solarSystemId":30000231,"solarSystemName":"D:ESE9","location":{"x":-2030000000000000000,"y":-104000000000000000,"z":-1020000000000000000}},"30000232":{"solarSystemId":30000232,"solarSystemName":"F:3RKT","location":{"x":-2230000000000000000,"y":-460000000000000000,"z":-659000000000000000}},"30000233":{"solarSystemId":30000233,"solarSystemName":"M:1K6R","location":{"x":-1750000000000000000,"y":158000000000000000,"z":-277000000000000000}},"30000234":{"solarSystemId":30000234,"solarSystemName":"Q:34NV","location":{"x":-1940000000000000000,"y":-102000000000000000,"z":-521000000000000000}},"30000235":{"solarSystemId":30000235,"solarSystemName":"Z:EV19","location":{"x":-2470000000000000000,"y":232000000000000000,"z":-647000000000000000}},"30000236":{"solarSystemId":30000236,"solarSystemName":"Q:39I9","location":{"x":-2150000000000000000,"y":2030000000000000,"z":-747000000000000000}},"30000237":{"solarSystemId":30000237,"solarSystemName":"J:25T1","location":{"x":-2320000000000000000,"y":-378000000000000000,"z":-717000000000000000}},"30000238":{"solarSystemId":30000238,"solarSystemName":"H:2VRA","location":{"x":-2730000000000000000,"y":-150000000000000000,"z":-702000000000000000}},"30000239":{"solarSystemId":30000239,"solarSystemName":"J:36KT","location":{"x":-1740000000000000000,"y":416000000000000000,"z":-206000000000000000}},"30000240":{"solarSystemId":30000240,"solarSystemName":"P:3SLR","location":{"x":-1850000000000000000,"y":334000000000000000,"z":-636000000000000000}},"30000241":{"solarSystemId":30000241,"solarSystemName":"B:3AKV","location":{"x":-2640000000000000000,"y":586000000000000000,"z":-293000000000000000}},"30000242":{"solarSystemId":30000242,"solarSystemName":"Q:3O2L","location":{"x":-1620000000000000000,"y":312000000000000000,"z":-390000000000000000}},"30000243":{"solarSystemId":30000243,"solarSystemName":"M:31S1","location":{"x":-2360000000000000000,"y":122000000000000000,"z":-830000000000000000}},"30000244":{"solarSystemId":30000244,"solarSystemName":"M:2K86","location":{"x":-2030000000000000000,"y":154000000000000000,"z":-174000000000000000}},"30000245":{"solarSystemId":30000245,"solarSystemName":"M:2K70","location":{"x":-3050000000000000000,"y":-390000000000000000,"z":-242000000000000000}},"30000246":{"solarSystemId":30000246,"solarSystemName":"M:3TE1","location":{"x":-3180000000000000000,"y":-880000000000000000,"z":-544000000000000000}},"30000247":{"solarSystemId":30000247,"solarSystemName":"F:T5AV","location":{"x":-2820000000000000000,"y":-644000000000000000,"z":-568000000000000000}},"30000248":{"solarSystemId":30000248,"solarSystemName":"D:262T","location":{"x":-3020000000000000000,"y":-293000000000000000,"z":-372000000000000000}},"30000249":{"solarSystemId":30000249,"solarSystemName":"Z:1O0A","location":{"x":-3130000000000000000,"y":-476000000000000000,"z":-361000000000000000}},"30000250":{"solarSystemId":30000250,"solarSystemName":"J:K3E2","location":{"x":-2990000000000000000,"y":-652000000000000000,"z":-501000000000000000}},"30000251":{"solarSystemId":30000251,"solarSystemName":"F:I44K","location":{"x":-2980000000000000000,"y":-704000000000000000,"z":-671000000000000000}},"30000252":{"solarSystemId":30000252,"solarSystemName":"B:21AN","location":{"x":-3250000000000000000,"y":-639000000000000000,"z":-377000000000000000}},"30000253":{"solarSystemId":30000253,"solarSystemName":"D:324A","location":{"x":-3000000000000000000,"y":-486000000000000000,"z":-431000000000000000}},"30000254":{"solarSystemId":30000254,"solarSystemName":"B:ASOT","location":{"x":-3180000000000000000,"y":-423000000000000000,"z":-267000000000000000}},"30000255":{"solarSystemId":30000255,"solarSystemName":"J:25RL","location":{"x":-2870000000000000000,"y":-615000000000000000,"z":-779000000000000000}},"30000256":{"solarSystemId":30000256,"solarSystemName":"G:2A1S","location":{"x":-3200000000000000000,"y":-852000000000000000,"z":-640000000000000000}},"30000257":{"solarSystemId":30000257,"solarSystemName":"B:3VN0","location":{"x":-3080000000000000000,"y":-487000000000000000,"z":-167000000000000000}},"30000258":{"solarSystemId":30000258,"solarSystemName":"M:3AEO","location":{"x":-3060000000000000000,"y":-483000000000000000,"z":-166000000000000000}},"30000259":{"solarSystemId":30000259,"solarSystemName":"H:30SI","location":{"x":-3080000000000000000,"y":-448000000000000000,"z":-230000000000000000}},"30000260":{"solarSystemId":30000260,"solarSystemName":"Y:OAIA","location":{"x":-2520000000000000000,"y":-770000000000000000,"z":-658000000000000000}},"30000261":{"solarSystemId":30000261,"solarSystemName":"G:3RN6","location":{"x":-2830000000000000000,"y":-459000000000000000,"z":-542000000000000000}},"30000262":{"solarSystemId":30000262,"solarSystemName":"Z:3221","location":{"x":-2820000000000000000,"y":-459000000000000000,"z":-737000000000000000}},"30000263":{"solarSystemId":30000263,"solarSystemName":"D:IO03","location":{"x":-2580000000000000000,"y":-592000000000000000,"z":-543000000000000000}},"30000264":{"solarSystemId":30000264,"solarSystemName":"Z:3AV3","location":{"x":-3230000000000000000,"y":639000000000000000,"z":-751000000000000000}},"30000265":{"solarSystemId":30000265,"solarSystemName":"P:3615","location":{"x":-2830000000000000000,"y":296000000000000000,"z":-1020000000000000000}},"30000266":{"solarSystemId":30000266,"solarSystemName":"U:2NK3","location":{"x":-3380000000000000000,"y":-73800000000000000,"z":-1420000000000000000}},"30000267":{"solarSystemId":30000267,"solarSystemName":"Z:362N","location":{"x":-3040000000000000000,"y":714000000000000000,"z":-852000000000000000}},"30000268":{"solarSystemId":30000268,"solarSystemName":"D:3SNS","location":{"x":-3290000000000000000,"y":43100000000000000,"z":-1050000000000000000}},"30000269":{"solarSystemId":30000269,"solarSystemName":"Z:303E","location":{"x":-3100000000000000000,"y":314000000000000000,"z":-547000000000000000}},"30000270":{"solarSystemId":30000270,"solarSystemName":"G:2TRI","location":{"x":-2980000000000000000,"y":311000000000000000,"z":-993000000000000000}},"30000271":{"solarSystemId":30000271,"solarSystemName":"P:2TNV","location":{"x":-2890000000000000000,"y":116000000000000000,"z":-548000000000000000}},"30000272":{"solarSystemId":30000272,"solarSystemName":"M:3NKR","location":{"x":-3110000000000000000,"y":112000000000000000,"z":-809000000000000000}},"30000273":{"solarSystemId":30000273,"solarSystemName":"J:2N1I","location":{"x":-3250000000000000000,"y":-63600000000000000,"z":-1130000000000000000}},"30000274":{"solarSystemId":30000274,"solarSystemName":"D:V145","location":{"x":-3370000000000000000,"y":-41400000000000000,"z":-1530000000000000000}},"30000275":{"solarSystemId":30000275,"solarSystemName":"D:S934","location":{"x":-3010000000000000000,"y":-7440000000000000,"z":-1450000000000000000}},"30000276":{"solarSystemId":30000276,"solarSystemName":"Z:30AK","location":{"x":-3330000000000000000,"y":79200000000000000,"z":-859000000000000000}},"30000277":{"solarSystemId":30000277,"solarSystemName":"Y:30V3","location":{"x":-3560000000000000000,"y":-31600000000000000,"z":-1300000000000000000}},"30000278":{"solarSystemId":30000278,"solarSystemName":"Z:18RN","location":{"x":-3530000000000000000,"y":125000000000000000,"z":-665000000000000000}},"30000279":{"solarSystemId":30000279,"solarSystemName":"Q:29I5","location":{"x":-3120000000000000000,"y":364000000000000000,"z":-1530000000000000000}},"30000280":{"solarSystemId":30000280,"solarSystemName":"B:2NS3","location":{"x":-3370000000000000000,"y":231000000000000000,"z":-734000000000000000}},"30000281":{"solarSystemId":30000281,"solarSystemName":"P:399L","location":{"x":-2930000000000000000,"y":319000000000000000,"z":-1070000000000000000}},"30000282":{"solarSystemId":30000282,"solarSystemName":"H:2968","location":{"x":-3210000000000000000,"y":141000000000000000,"z":-909000000000000000}},"30000283":{"solarSystemId":30000283,"solarSystemName":"B:2I3S","location":{"x":-2730000000000000000,"y":280000000000000000,"z":-1350000000000000000}},"30000284":{"solarSystemId":30000284,"solarSystemName":"Y:331N","location":{"x":-2720000000000000000,"y":507000000000000000,"z":-1430000000000000000}},"30000285":{"solarSystemId":30000285,"solarSystemName":"F:3AE3","location":{"x":-2540000000000000000,"y":630000000000000000,"z":-827000000000000000}},"30000286":{"solarSystemId":30000286,"solarSystemName":"M:3E86","location":{"x":-2100000000000000000,"y":-223000000000000000,"z":-1220000000000000000}},"30000287":{"solarSystemId":30000287,"solarSystemName":"H:2VV6","location":{"x":-2610000000000000000,"y":-201000000000000000,"z":-1280000000000000000}},"30000288":{"solarSystemId":30000288,"solarSystemName":"Q:21AI","location":{"x":-2280000000000000000,"y":-524000000000000000,"z":-1240000000000000000}},"30000289":{"solarSystemId":30000289,"solarSystemName":"B:1L43","location":{"x":-2770000000000000000,"y":-639000000000000000,"z":-1070000000000000000}},"30000290":{"solarSystemId":30000290,"solarSystemName":"M:28O6","location":{"x":-2520000000000000000,"y":-639000000000000000,"z":-1510000000000000000}},"30000291":{"solarSystemId":30000291,"solarSystemName":"F:33AV","location":{"x":-2300000000000000000,"y":-293000000000000000,"z":-980000000000000000}},"30000292":{"solarSystemId":30000292,"solarSystemName":"G:3O17","location":{"x":-2380000000000000000,"y":-447000000000000000,"z":-1190000000000000000}},"30000293":{"solarSystemId":30000293,"solarSystemName":"H:2L7E","location":{"x":-2400000000000000000,"y":-70000000000000000,"z":-1070000000000000000}},"30000294":{"solarSystemId":30000294,"solarSystemName":"M:2678","location":{"x":-2580000000000000000,"y":-466000000000000000,"z":-1030000000000000000}},"30000295":{"solarSystemId":30000295,"solarSystemName":"B:3ON8","location":{"x":-2720000000000000000,"y":-550000000000000000,"z":-1220000000000000000}},"30000296":{"solarSystemId":30000296,"solarSystemName":"H:1NL5","location":{"x":-3020000000000000000,"y":-163000000000000000,"z":-1290000000000000000}},"30000297":{"solarSystemId":30000297,"solarSystemName":"Q:2O06","location":{"x":-2760000000000000000,"y":-321000000000000000,"z":-1530000000000000000}},"30000298":{"solarSystemId":30000298,"solarSystemName":"Y:3S51","location":{"x":-2720000000000000000,"y":-512000000000000000,"z":-1300000000000000000}},"30000299":{"solarSystemId":30000299,"solarSystemName":"P:2265","location":{"x":-2830000000000000000,"y":-353000000000000000,"z":-1420000000000000000}},"30000300":{"solarSystemId":30000300,"solarSystemName":"H:21IN","location":{"x":-2710000000000000000,"y":-621000000000000000,"z":-1290000000000000000}},"30000301":{"solarSystemId":30000301,"solarSystemName":"P:1LE9","location":{"x":-2980000000000000000,"y":-231000000000000000,"z":-1180000000000000000}},"30000302":{"solarSystemId":30000302,"solarSystemName":"Q:1EA9","location":{"x":-2550000000000000000,"y":-602000000000000000,"z":-1270000000000000000}},"30000303":{"solarSystemId":30000303,"solarSystemName":"Y:209O","location":{"x":-2800000000000000000,"y":-328000000000000000,"z":-1410000000000000000}},"30000304":{"solarSystemId":30000304,"solarSystemName":"D:2AE3","location":{"x":-3000000000000000000,"y":-153000000000000000,"z":-1230000000000000000}},"30000305":{"solarSystemId":30000305,"solarSystemName":"Z:2LN0","location":{"x":-2320000000000000000,"y":-161000000000000000,"z":-1280000000000000000}},"30000306":{"solarSystemId":30000306,"solarSystemName":"Q:1RE7","location":{"x":-2530000000000000000,"y":-430000000000000000,"z":-1350000000000000000}},"30000307":{"solarSystemId":30000307,"solarSystemName":"Q:I7AS","location":{"x":-2640000000000000000,"y":-526000000000000000,"z":-886000000000000000}},"30000308":{"solarSystemId":30000308,"solarSystemName":"Q:36KV","location":{"x":-2330000000000000000,"y":-520000000000000000,"z":-1300000000000000000}},"30000309":{"solarSystemId":30000309,"solarSystemName":"B:3ANN","location":{"x":-2320000000000000000,"y":-507000000000000000,"z":-1510000000000000000}},"30000310":{"solarSystemId":30000310,"solarSystemName":"F:353R","location":{"x":-2640000000000000000,"y":-186000000000000000,"z":-1210000000000000000}},"30000311":{"solarSystemId":30000311,"solarSystemName":"G:1O80","location":{"x":-2410000000000000000,"y":-326000000000000000,"z":-1500000000000000000}},"30000312":{"solarSystemId":30000312,"solarSystemName":"J:3AA6","location":{"x":-3660000000000000000,"y":-693000000000000000,"z":-1550000000000000000}},"30000313":{"solarSystemId":30000313,"solarSystemName":"Z:2K06","location":{"x":-3150000000000000000,"y":-1130000000000000000,"z":-1880000000000000000}},"30000314":{"solarSystemId":30000314,"solarSystemName":"F:2162","location":{"x":-3150000000000000000,"y":-475000000000000000,"z":-1700000000000000000}},"30000315":{"solarSystemId":30000315,"solarSystemName":"Y:1OEE","location":{"x":-2650000000000000000,"y":-371000000000000000,"z":-2150000000000000000}},"30000316":{"solarSystemId":30000316,"solarSystemName":"J:3OK3","location":{"x":-2990000000000000000,"y":-359000000000000000,"z":-1790000000000000000}},"30000317":{"solarSystemId":30000317,"solarSystemName":"F:3O9N","location":{"x":-3020000000000000000,"y":-255000000000000000,"z":-1480000000000000000}},"30000318":{"solarSystemId":30000318,"solarSystemName":"H:386I","location":{"x":-3250000000000000000,"y":-620000000000000000,"z":-2180000000000000000}},"30000319":{"solarSystemId":30000319,"solarSystemName":"G:276S","location":{"x":-2870000000000000000,"y":-399000000000000000,"z":-2200000000000000000}},"30000320":{"solarSystemId":30000320,"solarSystemName":"U:162T","location":{"x":-3100000000000000000,"y":-599000000000000000,"z":-2250000000000000000}},"30000321":{"solarSystemId":30000321,"solarSystemName":"Q:1N49","location":{"x":-3000000000000000000,"y":-280000000000000000,"z":-1620000000000000000}},"30000322":{"solarSystemId":30000322,"solarSystemName":"G:39VI","location":{"x":-2240000000000000000,"y":-211000000000000000,"z":-1890000000000000000}},"30000323":{"solarSystemId":30000323,"solarSystemName":"H:1VA1","location":{"x":-2960000000000000000,"y":-300000000000000000,"z":-2020000000000000000}},"30000324":{"solarSystemId":30000324,"solarSystemName":"U:32AN","location":{"x":-3200000000000000000,"y":-628000000000000000,"z":-2600000000000000000}},"30000325":{"solarSystemId":30000325,"solarSystemName":"H:RI0L","location":{"x":-2950000000000000000,"y":-474000000000000000,"z":-1890000000000000000}},"30000326":{"solarSystemId":30000326,"solarSystemName":"M:1LRE","location":{"x":-2530000000000000000,"y":-337000000000000000,"z":-1870000000000000000}},"30000327":{"solarSystemId":30000327,"solarSystemName":"J:2R91","location":{"x":-2440000000000000000,"y":-667000000000000000,"z":-1700000000000000000}},"30000328":{"solarSystemId":30000328,"solarSystemName":"J:14I7","location":{"x":-3100000000000000000,"y":-266000000000000000,"z":-1330000000000000000}},"30000329":{"solarSystemId":30000329,"solarSystemName":"Q:392A","location":{"x":-3130000000000000000,"y":-711000000000000000,"z":-1870000000000000000}},"30000330":{"solarSystemId":30000330,"solarSystemName":"H:2ERO","location":{"x":-2520000000000000000,"y":-411000000000000000,"z":-2060000000000000000}},"30000331":{"solarSystemId":30000331,"solarSystemName":"F:333O","location":{"x":-3160000000000000000,"y":-638000000000000000,"z":-2000000000000000000}},"30000332":{"solarSystemId":30000332,"solarSystemName":"Y:30RO","location":{"x":-2960000000000000000,"y":-1090000000000000000,"z":-1420000000000000000}},"30000333":{"solarSystemId":30000333,"solarSystemName":"M:2O59","location":{"x":-3010000000000000000,"y":-839000000000000000,"z":-1670000000000000000}},"30000334":{"solarSystemId":30000334,"solarSystemName":"P:2KAO","location":{"x":-2560000000000000000,"y":-610000000000000000,"z":-1840000000000000000}},"30000335":{"solarSystemId":30000335,"solarSystemName":"H:O2R5","location":{"x":-3020000000000000000,"y":-281000000000000000,"z":-1390000000000000000}},"30000336":{"solarSystemId":30000336,"solarSystemName":"Z:3TK8","location":{"x":-2860000000000000000,"y":-517000000000000000,"z":-2320000000000000000}},"30000337":{"solarSystemId":30000337,"solarSystemName":"Y:3O5K","location":{"x":-3550000000000000000,"y":-967000000000000000,"z":-963000000000000000}},"30000338":{"solarSystemId":30000338,"solarSystemName":"D:37TL","location":{"x":-3580000000000000000,"y":-1150000000000000000,"z":-1190000000000000000}},"30000339":{"solarSystemId":30000339,"solarSystemName":"U:1RTA","location":{"x":-3030000000000000000,"y":-620000000000000000,"z":-1050000000000000000}},"30000340":{"solarSystemId":30000340,"solarSystemName":"Q:2758","location":{"x":-2980000000000000000,"y":-505000000000000000,"z":-1240000000000000000}},"30000341":{"solarSystemId":30000341,"solarSystemName":"Y:48IR","location":{"x":-3140000000000000000,"y":-421000000000000000,"z":-1250000000000000000}},"30000342":{"solarSystemId":30000342,"solarSystemName":"G:2ROO","location":{"x":-3380000000000000000,"y":-482000000000000000,"z":-1130000000000000000}},"30000343":{"solarSystemId":30000343,"solarSystemName":"F:21S7","location":{"x":-3180000000000000000,"y":-861000000000000000,"z":-1200000000000000000}},"30000344":{"solarSystemId":30000344,"solarSystemName":"M:2T2L","location":{"x":-3330000000000000000,"y":-519000000000000000,"z":-1330000000000000000}},"30000345":{"solarSystemId":30000345,"solarSystemName":"Y:23A8","location":{"x":-2940000000000000000,"y":-471000000000000000,"z":-1240000000000000000}},"30000346":{"solarSystemId":30000346,"solarSystemName":"J:2754","location":{"x":-3380000000000000000,"y":-450000000000000000,"z":-1490000000000000000}},"30000347":{"solarSystemId":30000347,"solarSystemName":"Z:13RO","location":{"x":-3150000000000000000,"y":-745000000000000000,"z":-1180000000000000000}},"30000348":{"solarSystemId":30000348,"solarSystemName":"Q:3S53","location":{"x":-3150000000000000000,"y":-535000000000000000,"z":-1240000000000000000}},"30000349":{"solarSystemId":30000349,"solarSystemName":"F:3AON","location":{"x":-3220000000000000000,"y":-1210000000000000000,"z":-1420000000000000000}},"30000350":{"solarSystemId":30000350,"solarSystemName":"D:281O","location":{"x":-3250000000000000000,"y":-706000000000000000,"z":-1140000000000000000}},"30000351":{"solarSystemId":30000351,"solarSystemName":"P:33E3","location":{"x":-3340000000000000000,"y":-932000000000000000,"z":-773000000000000000}},"30000352":{"solarSystemId":30000352,"solarSystemName":"G:39VK","location":{"x":-3410000000000000000,"y":-622000000000000000,"z":-1370000000000000000}},"30000353":{"solarSystemId":30000353,"solarSystemName":"U:31S9","location":{"x":-3610000000000000000,"y":-1250000000000000000,"z":-1220000000000000000}},"30000354":{"solarSystemId":30000354,"solarSystemName":"G:3SK5","location":{"x":-3370000000000000000,"y":-741000000000000000,"z":-844000000000000000}},"30000355":{"solarSystemId":30000355,"solarSystemName":"D:3AS5","location":{"x":-3580000000000000000,"y":-793000000000000000,"z":-884000000000000000}},"30000356":{"solarSystemId":30000356,"solarSystemName":"P:2OAL","location":{"x":-3400000000000000000,"y":-937000000000000000,"z":-851000000000000000}},"30000357":{"solarSystemId":30000357,"solarSystemName":"F:344K","location":{"x":-3610000000000000000,"y":-588000000000000000,"z":-1000000000000000000}},"30000358":{"solarSystemId":30000358,"solarSystemName":"D:2NA6","location":{"x":-4400000000000000000,"y":549000000000000000,"z":24200000000000000}},"30000359":{"solarSystemId":30000359,"solarSystemName":"U:2S77","location":{"x":-4190000000000000000,"y":471000000000000000,"z":-391000000000000000}},"30000360":{"solarSystemId":30000360,"solarSystemName":"H:2S8L","location":{"x":-4270000000000000000,"y":549000000000000000,"z":61900000000000000}},"30000361":{"solarSystemId":30000361,"solarSystemName":"J:3II1","location":{"x":-4090000000000000000,"y":85900000000000000,"z":-208000000000000000}},"30000362":{"solarSystemId":30000362,"solarSystemName":"M:2RE0","location":{"x":-4000000000000000000,"y":-66700000000000000,"z":-210000000000000000}},"30000363":{"solarSystemId":30000363,"solarSystemName":"J:2SV0","location":{"x":-3840000000000000000,"y":104000000000000000,"z":-29000000000000000}},"30000364":{"solarSystemId":30000364,"solarSystemName":"D:39T4","location":{"x":-4030000000000000000,"y":43500000000000000,"z":242000000000000000}},"30000365":{"solarSystemId":30000365,"solarSystemName":"G:3N8I","location":{"x":-3840000000000000000,"y":291000000000000000,"z":20300000000000000}},"30000366":{"solarSystemId":30000366,"solarSystemName":"M:3NOT","location":{"x":-4250000000000000000,"y":193000000000000000,"z":-239000000000000000}},"30000367":{"solarSystemId":30000367,"solarSystemName":"D:37SN","location":{"x":-4420000000000000000,"y":323000000000000000,"z":-567000000000000000}},"30000368":{"solarSystemId":30000368,"solarSystemName":"J:2OL7","location":{"x":-3990000000000000000,"y":-249000000000000000,"z":-35200000000000000}},"30000369":{"solarSystemId":30000369,"solarSystemName":"P:3445","location":{"x":-3880000000000000000,"y":-67400000000000000,"z":-2380000000000000}},"30000370":{"solarSystemId":30000370,"solarSystemName":"Q:2OVT","location":{"x":-4130000000000000000,"y":189000000000000000,"z":-52000000000000000}},"30000371":{"solarSystemId":30000371,"solarSystemName":"F:2V8E","location":{"x":-4490000000000000000,"y":394000000000000000,"z":-131000000000000000}},"30000372":{"solarSystemId":30000372,"solarSystemName":"U:2TT0","location":{"x":-4100000000000000000,"y":520000000000000000,"z":-360000000000000000}},"30000373":{"solarSystemId":30000373,"solarSystemName":"Z:3IIL","location":{"x":-3890000000000000000,"y":58400000000000000,"z":245000000000000000}},"30000374":{"solarSystemId":30000374,"solarSystemName":"Y:2L55","location":{"x":-4010000000000000000,"y":-186000000000000000,"z":-205000000000000000}},"30000375":{"solarSystemId":30000375,"solarSystemName":"H:2ATA","location":{"x":-4110000000000000000,"y":21900000000000000,"z":279000000000000000}},"30000376":{"solarSystemId":30000376,"solarSystemName":"Z:367I","location":{"x":-4370000000000000000,"y":422000000000000000,"z":-8300000000000000}},"30000377":{"solarSystemId":30000377,"solarSystemName":"B:3OO3","location":{"x":-3620000000000000000,"y":215000000000000000,"z":-1730000000000000000}},"30000378":{"solarSystemId":30000378,"solarSystemName":"F:2KSA","location":{"x":-4540000000000000000,"y":-27300000000000000,"z":-2050000000000000000}},"30000379":{"solarSystemId":30000379,"solarSystemName":"J:18ES","location":{"x":-3520000000000000000,"y":-214000000000000000,"z":-2230000000000000000}},"30000380":{"solarSystemId":30000380,"solarSystemName":"H:24EV","location":{"x":-4290000000000000000,"y":-357000000000000000,"z":-1800000000000000000}},"30000381":{"solarSystemId":30000381,"solarSystemName":"Y:OT26","location":{"x":-3710000000000000000,"y":-138000000000000000,"z":-2220000000000000000}},"30000382":{"solarSystemId":30000382,"solarSystemName":"M:240I","location":{"x":-4240000000000000000,"y":-65300000000000000,"z":-1970000000000000000}},"30000383":{"solarSystemId":30000383,"solarSystemName":"H:2R1S","location":{"x":-3870000000000000000,"y":-5530000000000000,"z":-2040000000000000000}},"30000384":{"solarSystemId":30000384,"solarSystemName":"B:ORI5","location":{"x":-4060000000000000000,"y":-164000000000000000,"z":-1960000000000000000}},"30000385":{"solarSystemId":30000385,"solarSystemName":"J:3REO","location":{"x":-4350000000000000000,"y":-279000000000000000,"z":-2210000000000000000}},"30000386":{"solarSystemId":30000386,"solarSystemName":"J:4L62","location":{"x":-3850000000000000000,"y":-155000000000000000,"z":-1910000000000000000}},"30000387":{"solarSystemId":30000387,"solarSystemName":"Q:23NK","location":{"x":-3790000000000000000,"y":-428000000000000000,"z":-2050000000000000000}},"30000388":{"solarSystemId":30000388,"solarSystemName":"Z:1S95","location":{"x":-3410000000000000000,"y":250000000000000000,"z":-1580000000000000000}},"30000389":{"solarSystemId":30000389,"solarSystemName":"J:3756","location":{"x":-4140000000000000000,"y":408000000000000000,"z":-1590000000000000000}},"30000390":{"solarSystemId":30000390,"solarSystemName":"Z:27LK","location":{"x":-4540000000000000000,"y":-399000000000000000,"z":-2160000000000000000}},"30000391":{"solarSystemId":30000391,"solarSystemName":"Z:34LS","location":{"x":-4170000000000000000,"y":124000000000000000,"z":-1830000000000000000}},"30000392":{"solarSystemId":30000392,"solarSystemName":"Q:2S1S","location":{"x":-4050000000000000000,"y":-133000000000000000,"z":-1810000000000000000}},"30000393":{"solarSystemId":30000393,"solarSystemName":"Q:1TSE","location":{"x":-4340000000000000000,"y":107000000000000000,"z":-1600000000000000000}},"30000394":{"solarSystemId":30000394,"solarSystemName":"Y:295N","location":{"x":-3580000000000000000,"y":-154000000000000000,"z":-1970000000000000000}},"30000395":{"solarSystemId":30000395,"solarSystemName":"Y:2L3S","location":{"x":-3980000000000000000,"y":-124000000000000000,"z":-1690000000000000000}},"30000396":{"solarSystemId":30000396,"solarSystemName":"Q:3V98","location":{"x":-4000000000000000000,"y":-111000000000000000,"z":-1910000000000000000}},"30000397":{"solarSystemId":30000397,"solarSystemName":"Y:3NNV","location":{"x":-4300000000000000000,"y":161000000000000000,"z":-1500000000000000000}},"30000398":{"solarSystemId":30000398,"solarSystemName":"J:1O79","location":{"x":-4150000000000000000,"y":-501000000000000000,"z":-2310000000000000000}},"30000399":{"solarSystemId":30000399,"solarSystemName":"Q:3214","location":{"x":-3980000000000000000,"y":-128000000000000000,"z":-2040000000000000000}},"30000400":{"solarSystemId":30000400,"solarSystemName":"U:3465","location":{"x":-4480000000000000000,"y":-212000000000000000,"z":-1960000000000000000}},"30000401":{"solarSystemId":30000401,"solarSystemName":"F:3A1N","location":{"x":-3900000000000000000,"y":-508000000000000000,"z":-1760000000000000000}},"30000402":{"solarSystemId":30000402,"solarSystemName":"J:34NI","location":{"x":-3500000000000000000,"y":-452000000000000000,"z":-613000000000000000}},"30000403":{"solarSystemId":30000403,"solarSystemName":"P:2AVL","location":{"x":-3080000000000000000,"y":-185000000000000000,"z":-983000000000000000}},"30000404":{"solarSystemId":30000404,"solarSystemName":"B:2EE2","location":{"x":-3560000000000000000,"y":-396000000000000000,"z":-845000000000000000}},"30000405":{"solarSystemId":30000405,"solarSystemName":"H:NL9E","location":{"x":-2870000000000000000,"y":-198000000000000000,"z":-782000000000000000}},"30000406":{"solarSystemId":30000406,"solarSystemName":"B:25KS","location":{"x":-3430000000000000000,"y":-534000000000000000,"z":-365000000000000000}},"30000407":{"solarSystemId":30000407,"solarSystemName":"D:2R7A","location":{"x":-3350000000000000000,"y":-497000000000000000,"z":-613000000000000000}},"30000408":{"solarSystemId":30000408,"solarSystemName":"H:EVKL","location":{"x":-3180000000000000000,"y":-352000000000000000,"z":-1020000000000000000}},"30000409":{"solarSystemId":30000409,"solarSystemName":"M:ROK7","location":{"x":-3270000000000000000,"y":-586000000000000000,"z":-881000000000000000}},"30000410":{"solarSystemId":30000410,"solarSystemName":"B:OTI6","location":{"x":-3280000000000000000,"y":-393000000000000000,"z":-511000000000000000}},"30000411":{"solarSystemId":30000411,"solarSystemName":"U:1AIS","location":{"x":-3440000000000000000,"y":-353000000000000000,"z":-659000000000000000}},"30000412":{"solarSystemId":30000412,"solarSystemName":"H:2KV9","location":{"x":-3190000000000000000,"y":-346000000000000000,"z":-778000000000000000}},"30000413":{"solarSystemId":30000413,"solarSystemName":"H:186E","location":{"x":-3110000000000000000,"y":-623000000000000000,"z":-869000000000000000}},"30000414":{"solarSystemId":30000414,"solarSystemName":"M:2I54","location":{"x":-2950000000000000000,"y":-369000000000000000,"z":-593000000000000000}},"30000415":{"solarSystemId":30000415,"solarSystemName":"Q:2NOO","location":{"x":-3230000000000000000,"y":-397000000000000000,"z":-502000000000000000}},"30000416":{"solarSystemId":30000416,"solarSystemName":"H:3S77","location":{"x":-3260000000000000000,"y":-705000000000000000,"z":-809000000000000000}},"30000417":{"solarSystemId":30000417,"solarSystemName":"Z:33SK","location":{"x":-3290000000000000000,"y":-474000000000000000,"z":-528000000000000000}},"30000418":{"solarSystemId":30000418,"solarSystemName":"U:2KR0","location":{"x":-3140000000000000000,"y":-597000000000000000,"z":-885000000000000000}},"30000419":{"solarSystemId":30000419,"solarSystemName":"Z:3T17","location":{"x":-3110000000000000000,"y":-420000000000000000,"z":-1140000000000000000}},"30000420":{"solarSystemId":30000420,"solarSystemName":"J:51KS","location":{"x":-2970000000000000000,"y":-429000000000000000,"z":-1070000000000000000}},"30000421":{"solarSystemId":30000421,"solarSystemName":"U:18E7","location":{"x":-3370000000000000000,"y":-423000000000000000,"z":-470000000000000000}},"30000422":{"solarSystemId":30000422,"solarSystemName":"P:367E","location":{"x":2390000000000000000,"y":2070000000000000000,"z":4400000000000000000}},"30000423":{"solarSystemId":30000423,"solarSystemName":"M:38I8","location":{"x":1880000000000000000,"y":3570000000000000000,"z":4390000000000000000}},"30000424":{"solarSystemId":30000424,"solarSystemName":"D:37LK","location":{"x":2370000000000000000,"y":4900000000000000000,"z":4100000000000000000}},"30000425":{"solarSystemId":30000425,"solarSystemName":"G:3A31","location":{"x":2420000000000000000,"y":5110000000000000000,"z":3880000000000000000}},"30000426":{"solarSystemId":30000426,"solarSystemName":"D:2AK0","location":{"x":1180000000000000000,"y":3560000000000000000,"z":3570000000000000000}},"30000427":{"solarSystemId":30000427,"solarSystemName":"B:32O3","location":{"x":1080000000000000000,"y":3430000000000000000,"z":4120000000000000000}},"30000428":{"solarSystemId":30000428,"solarSystemName":"F:2E7R","location":{"x":2320000000000000000,"y":3170000000000000000,"z":3060000000000000000}},"30000429":{"solarSystemId":30000429,"solarSystemName":"G:3S9A","location":{"x":3370000000000000000,"y":3850000000000000000,"z":3310000000000000000}},"30000430":{"solarSystemId":30000430,"solarSystemName":"B:3R8S","location":{"x":2570000000000000000,"y":2650000000000000000,"z":2320000000000000000}},"30000431":{"solarSystemId":30000431,"solarSystemName":"M:2S34","location":{"x":3180000000000000000,"y":2720000000000000000,"z":2180000000000000000}},"30000432":{"solarSystemId":30000432,"solarSystemName":"Y:2L28","location":{"x":2830000000000000000,"y":2740000000000000000,"z":2710000000000000000}},"30000433":{"solarSystemId":30000433,"solarSystemName":"D:2S3N","location":{"x":2260000000000000000,"y":2780000000000000000,"z":2440000000000000000}},"30000434":{"solarSystemId":30000434,"solarSystemName":"G:3SVK","location":{"x":2690000000000000000,"y":2350000000000000000,"z":2790000000000000000}},"30000435":{"solarSystemId":30000435,"solarSystemName":"U:2NI4","location":{"x":4200000000000000000,"y":3020000000000000000,"z":2510000000000000000}},"30000436":{"solarSystemId":30000436,"solarSystemName":"Z:3VR0","location":{"x":4440000000000000000,"y":3500000000000000000,"z":3620000000000000000}},"30000437":{"solarSystemId":30000437,"solarSystemName":"Y:332S","location":{"x":1860000000000000000,"y":2010000000000000000,"z":4620000000000000000}},"30000438":{"solarSystemId":30000438,"solarSystemName":"U:3N67","location":{"x":752000000000000000,"y":3100000000000000000,"z":5030000000000000000}},"30000439":{"solarSystemId":30000439,"solarSystemName":"U:122O","location":{"x":-404000000000000000,"y":872000000000000000,"z":4200000000000000000}},"30000440":{"solarSystemId":30000440,"solarSystemName":"H:2KA1","location":{"x":274000000000000000,"y":1130000000000000000,"z":4290000000000000000}},"30000441":{"solarSystemId":30000441,"solarSystemName":"Y:3TA7","location":{"x":1730000000000000000,"y":1990000000000000000,"z":4320000000000000000}},"30000442":{"solarSystemId":30000442,"solarSystemName":"Z:2S3R","location":{"x":1420000000000000000,"y":3000000000000000000,"z":3740000000000000000}},"30000443":{"solarSystemId":30000443,"solarSystemName":"G:3064","location":{"x":596000000000000000,"y":1970000000000000000,"z":4390000000000000000}},"30000444":{"solarSystemId":30000444,"solarSystemName":"Q:3503","location":{"x":325000000000000000,"y":1220000000000000000,"z":4960000000000000000}},"30000445":{"solarSystemId":30000445,"solarSystemName":"J:39NL","location":{"x":-792000000000000000,"y":1760000000000000000,"z":4140000000000000000}},"30000446":{"solarSystemId":30000446,"solarSystemName":"F:2L74","location":{"x":687000000000000000,"y":3090000000000000000,"z":4100000000000000000}},"30000447":{"solarSystemId":30000447,"solarSystemName":"U:13NO","location":{"x":-264000000000000000,"y":993000000000000000,"z":4450000000000000000}},"30000448":{"solarSystemId":30000448,"solarSystemName":"H:378R","location":{"x":1140000000000000000,"y":2490000000000000000,"z":2000000000000000000}},"30000449":{"solarSystemId":30000449,"solarSystemName":"M:3OII","location":{"x":1270000000000000000,"y":1720000000000000000,"z":2690000000000000000}},"30000450":{"solarSystemId":30000450,"solarSystemName":"U:2V0I","location":{"x":1470000000000000000,"y":2360000000000000000,"z":1720000000000000000}},"30000451":{"solarSystemId":30000451,"solarSystemName":"P:2L62","location":{"x":2480000000000000000,"y":2210000000000000000,"z":2060000000000000000}},"30000452":{"solarSystemId":30000452,"solarSystemName":"J:2K71","location":{"x":3030000000000000000,"y":1210000000000000000,"z":2150000000000000000}},"30000453":{"solarSystemId":30000453,"solarSystemName":"U:3S0A","location":{"x":1740000000000000000,"y":3410000000000000000,"z":1650000000000000000}},"30000454":{"solarSystemId":30000454,"solarSystemName":"Q:37N6","location":{"x":2790000000000000000,"y":1380000000000000000,"z":2930000000000000000}},"30000455":{"solarSystemId":30000455,"solarSystemName":"Z:2N3T","location":{"x":1220000000000000000,"y":1490000000000000000,"z":2660000000000000000}},"30000456":{"solarSystemId":30000456,"solarSystemName":"Z:2AO4","location":{"x":3150000000000000000,"y":1740000000000000000,"z":1140000000000000000}},"30000457":{"solarSystemId":30000457,"solarSystemName":"F:3EO9","location":{"x":1780000000000000000,"y":1940000000000000000,"z":3190000000000000000}},"30000458":{"solarSystemId":30000458,"solarSystemName":"F:2SV2","location":{"x":4630000000000000000,"y":1070000000000000000,"z":4030000000000000000}},"30000459":{"solarSystemId":30000459,"solarSystemName":"F:3I90","location":{"x":2980000000000000000,"y":1330000000000000000,"z":2730000000000000000}},"30000460":{"solarSystemId":30000460,"solarSystemName":"J:307L","location":{"x":4400000000000000000,"y":2390000000000000000,"z":3770000000000000000}},"30000461":{"solarSystemId":30000461,"solarSystemName":"G:108A","location":{"x":3820000000000000000,"y":1380000000000000,"z":1550000000000000000}},"30000462":{"solarSystemId":30000462,"solarSystemName":"Y:VS0E","location":{"x":4110000000000000000,"y":851000000000000000,"z":1970000000000000000}},"30000463":{"solarSystemId":30000463,"solarSystemName":"Q:3VE9","location":{"x":4130000000000000000,"y":1400000000000000000,"z":841000000000000000}},"30000464":{"solarSystemId":30000464,"solarSystemName":"B:3I7T","location":{"x":3820000000000000000,"y":476000000000000000,"z":3130000000000000000}},"30000465":{"solarSystemId":30000465,"solarSystemName":"M:3O5I","location":{"x":4050000000000000000,"y":1470000000000000000,"z":3910000000000000000}},"30000466":{"solarSystemId":30000466,"solarSystemName":"F:2TNN","location":{"x":4260000000000000000,"y":1590000000000000000,"z":2790000000000000000}},"30000467":{"solarSystemId":30000467,"solarSystemName":"P:32NO","location":{"x":4000000000000000000,"y":686000000000000000,"z":2060000000000000000}},"30000468":{"solarSystemId":30000468,"solarSystemName":"M:3AVT","location":{"x":3990000000000000000,"y":1380000000000000000,"z":1600000000000000000}},"30000469":{"solarSystemId":30000469,"solarSystemName":"P:3T3E","location":{"x":3180000000000000000,"y":2030000000000000000,"z":3560000000000000000}},"30000470":{"solarSystemId":30000470,"solarSystemName":"D:2T2E","location":{"x":4920000000000000000,"y":1840000000000000000,"z":3710000000000000000}},"30000471":{"solarSystemId":30000471,"solarSystemName":"Z:2E01","location":{"x":2230000000000000000,"y":708000000000000000,"z":-119000000000000000}},"30000472":{"solarSystemId":30000472,"solarSystemName":"Y:3VTI","location":{"x":1580000000000000000,"y":1750000000000000000,"z":-515000000000000000}},"30000473":{"solarSystemId":30000473,"solarSystemName":"B:3R21","location":{"x":2010000000000000000,"y":679000000000000000,"z":-132000000000000000}},"30000474":{"solarSystemId":30000474,"solarSystemName":"Z:215L","location":{"x":2690000000000000000,"y":-72000000000000000,"z":3000000000000000}},"30000475":{"solarSystemId":30000475,"solarSystemName":"M:1342","location":{"x":2720000000000000000,"y":-225000000000000000,"z":-483000000000000000}},"30000476":{"solarSystemId":30000476,"solarSystemName":"P:24NV","location":{"x":2160000000000000000,"y":34500000000000000,"z":791000000000000000}},"30000477":{"solarSystemId":30000477,"solarSystemName":"H:2N05","location":{"x":2880000000000000000,"y":46200000000000000,"z":-794000000000000000}},"30000478":{"solarSystemId":30000478,"solarSystemName":"Z:15E9","location":{"x":2200000000000000000,"y":416000000000000000,"z":-119000000000000000}},"30000479":{"solarSystemId":30000479,"solarSystemName":"D:2KL2","location":{"x":2620000000000000000,"y":1720000000000000000,"z":308000000000000000}},"30000480":{"solarSystemId":30000480,"solarSystemName":"P:2OS3","location":{"x":1350000000000000000,"y":1080000000000000000,"z":-92000000000000000}},"30000481":{"solarSystemId":30000481,"solarSystemName":"Z:3ARK","location":{"x":2400000000000000000,"y":769000000000000000,"z":886000000000000000}},"30000482":{"solarSystemId":30000482,"solarSystemName":"D:316A","location":{"x":2400000000000000000,"y":1480000000000000000,"z":-241000000000000000}},"30000483":{"solarSystemId":30000483,"solarSystemName":"B:1S5S","location":{"x":1920000000000000000,"y":431000000000000000,"z":-959000000000000000}},"30000484":{"solarSystemId":30000484,"solarSystemName":"M:O940","location":{"x":2470000000000000000,"y":-237000000000000000,"z":164000000000000000}},"30000485":{"solarSystemId":30000485,"solarSystemName":"G:16K4","location":{"x":2230000000000000000,"y":1040000000000000000,"z":-328000000000000000}},"30000486":{"solarSystemId":30000486,"solarSystemName":"Y:3S1O","location":{"x":2310000000000000000,"y":422000000000000000,"z":-1050000000000000000}},"30000487":{"solarSystemId":30000487,"solarSystemName":"G:2A28","location":{"x":6110000000000000000,"y":3210000000000000000,"z":-82200000000000000}},"30000488":{"solarSystemId":30000488,"solarSystemName":"B:3EIA","location":{"x":2710000000000000000,"y":3280000000000000000,"z":539000000000000000}},"30000489":{"solarSystemId":30000489,"solarSystemName":"G:2S6S","location":{"x":5780000000000000000,"y":6030000000000000000,"z":1260000000000000000}},"30000490":{"solarSystemId":30000490,"solarSystemName":"G:3V0I","location":{"x":4210000000000000000,"y":2370000000000000000,"z":-311000000000000000}},"30000491":{"solarSystemId":30000491,"solarSystemName":"B:3O9O","location":{"x":4350000000000000000,"y":3370000000000000000,"z":2310000000000000000}},"30000492":{"solarSystemId":30000492,"solarSystemName":"Z:2KK4","location":{"x":4260000000000000000,"y":4420000000000000000,"z":396000000000000000}},"30000493":{"solarSystemId":30000493,"solarSystemName":"D:3VS8","location":{"x":-2670000000000000000,"y":-3700000000000000000,"z":-365000000000000000}},"30000494":{"solarSystemId":30000494,"solarSystemName":"D:34EK","location":{"x":-3330000000000000000,"y":-4630000000000000000,"z":-1180000000000000000}},"30000495":{"solarSystemId":30000495,"solarSystemName":"D:3S57","location":{"x":-3280000000000000000,"y":-4370000000000000000,"z":-257000000000000000}},"30000496":{"solarSystemId":30000496,"solarSystemName":"M:3T8O","location":{"x":-2030000000000000000,"y":-4100000000000000000,"z":-1880000000000000000}},"30000497":{"solarSystemId":30000497,"solarSystemName":"U:3AKS","location":{"x":-2310000000000000000,"y":-3740000000000000000,"z":-1200000000000000000}},"30000498":{"solarSystemId":30000498,"solarSystemName":"G:2ST0","location":{"x":-3120000000000000000,"y":-4010000000000000000,"z":98200000000000000}},"30000499":{"solarSystemId":30000499,"solarSystemName":"P:3V2L","location":{"x":-3510000000000000000,"y":-5250000000000000000,"z":-1630000000000000000}},"30000500":{"solarSystemId":30000500,"solarSystemName":"G:2AV9","location":{"x":-2710000000000000000,"y":-4100000000000000000,"z":-1290000000000000000}},"30000501":{"solarSystemId":30000501,"solarSystemName":"U:2S7N","location":{"x":-3260000000000000000,"y":-4090000000000000000,"z":-842000000000000000}},"30000502":{"solarSystemId":30000502,"solarSystemName":"Z:2R63","location":{"x":-2010000000000000000,"y":-1490000000000000000,"z":-845000000000000000}},"30000503":{"solarSystemId":30000503,"solarSystemName":"H:3TO3","location":{"x":-2370000000000000000,"y":-1060000000000000000,"z":278000000000000000}},"30000504":{"solarSystemId":30000504,"solarSystemName":"Z:2LE9","location":{"x":-2170000000000000000,"y":-1070000000000000000,"z":-417000000000000000}},"30000505":{"solarSystemId":30000505,"solarSystemName":"Q:3S5E","location":{"x":-1810000000000000000,"y":-1150000000000000000,"z":-449000000000000000}},"30000506":{"solarSystemId":30000506,"solarSystemName":"Q:31SE","location":{"x":-2050000000000000000,"y":-1590000000000000000,"z":-413000000000000000}},"30000507":{"solarSystemId":30000507,"solarSystemName":"M:2SE7","location":{"x":-2270000000000000000,"y":-1580000000000000000,"z":-241000000000000000}},"30000508":{"solarSystemId":30000508,"solarSystemName":"D:3ROT","location":{"x":-1910000000000000000,"y":-1190000000000000000,"z":-265000000000000000}},"30000509":{"solarSystemId":30000509,"solarSystemName":"H:E0OO","location":{"x":-1670000000000000000,"y":-1120000000000000000,"z":-499000000000000000}},"30000510":{"solarSystemId":30000510,"solarSystemName":"Y:TNLI","location":{"x":-1660000000000000000,"y":-970000000000000000,"z":-650000000000000000}},"30000511":{"solarSystemId":30000511,"solarSystemName":"G:36N8","location":{"x":-1570000000000000000,"y":-909000000000000000,"z":-334000000000000000}},"30000512":{"solarSystemId":30000512,"solarSystemName":"B:2923","location":{"x":-2220000000000000000,"y":-1100000000000000000,"z":-701000000000000000}},"30000513":{"solarSystemId":30000513,"solarSystemName":"H:3I4A","location":{"x":-1530000000000000000,"y":-1530000000000000000,"z":-287000000000000000}},"30000514":{"solarSystemId":30000514,"solarSystemName":"Z:2KSE","location":{"x":-2130000000000000000,"y":-1380000000000000000,"z":-236000000000000000}},"30000515":{"solarSystemId":30000515,"solarSystemName":"B:3461","location":{"x":-1960000000000000000,"y":-1710000000000000000,"z":-382000000000000000}},"30000516":{"solarSystemId":30000516,"solarSystemName":"Q:3RL8","location":{"x":-1820000000000000000,"y":-1020000000000000000,"z":-34200000000000000}},"30000517":{"solarSystemId":30000517,"solarSystemName":"H:2N94","location":{"x":-2530000000000000000,"y":-1060000000000000000,"z":-49400000000000000}},"30000518":{"solarSystemId":30000518,"solarSystemName":"P:3ES4","location":{"x":-1860000000000000000,"y":-1310000000000000000,"z":-508000000000000000}},"30000519":{"solarSystemId":30000519,"solarSystemName":"B:3O77","location":{"x":-2510000000000000000,"y":-1080000000000000000,"z":143000000000000000}},"30000520":{"solarSystemId":30000520,"solarSystemName":"G:2IN5","location":{"x":-2610000000000000000,"y":-1330000000000000000,"z":111000000000000000}},"30000521":{"solarSystemId":30000521,"solarSystemName":"M:2S14","location":{"x":-2250000000000000000,"y":-1460000000000000000,"z":1250000000000000000}},"30000522":{"solarSystemId":30000522,"solarSystemName":"Q:2KR9","location":{"x":-3100000000000000000,"y":-1990000000000000000,"z":632000000000000000}},"30000523":{"solarSystemId":30000523,"solarSystemName":"U:2LSI","location":{"x":-3220000000000000000,"y":-1560000000000000000,"z":375000000000000000}},"30000524":{"solarSystemId":30000524,"solarSystemName":"U:3OS5","location":{"x":-2650000000000000000,"y":-1710000000000000000,"z":1190000000000000000}},"30000525":{"solarSystemId":30000525,"solarSystemName":"Z:3341","location":{"x":-3350000000000000000,"y":-2120000000000000000,"z":1020000000000000000}},"30000526":{"solarSystemId":30000526,"solarSystemName":"H:2ILS","location":{"x":-2760000000000000000,"y":-2020000000000000000,"z":1250000000000000000}},"30000527":{"solarSystemId":30000527,"solarSystemName":"M:2961","location":{"x":-3660000000000000000,"y":-1610000000000000000,"z":668000000000000000}},"30000528":{"solarSystemId":30000528,"solarSystemName":"H:2E3L","location":{"x":-3050000000000000000,"y":-2010000000000000000,"z":1110000000000000000}},"30000529":{"solarSystemId":30000529,"solarSystemName":"M:3E3T","location":{"x":-3070000000000000000,"y":-1850000000000000000,"z":1160000000000000000}},"30000530":{"solarSystemId":30000530,"solarSystemName":"F:31NV","location":{"x":-2360000000000000000,"y":-1910000000000000000,"z":1070000000000000000}},"30000531":{"solarSystemId":30000531,"solarSystemName":"M:2OR4","location":{"x":-3150000000000000000,"y":-1690000000000000000,"z":604000000000000000}},"30000532":{"solarSystemId":30000532,"solarSystemName":"D:308R","location":{"x":-3410000000000000000,"y":-1940000000000000000,"z":1190000000000000000}},"30000533":{"solarSystemId":30000533,"solarSystemName":"U:2A13","location":{"x":-3150000000000000000,"y":-2290000000000000000,"z":1120000000000000000}},"30000534":{"solarSystemId":30000534,"solarSystemName":"P:29SV","location":{"x":-3150000000000000000,"y":-1680000000000000000,"z":667000000000000000}},"30000535":{"solarSystemId":30000535,"solarSystemName":"P:2VI3","location":{"x":-2900000000000000000,"y":-2100000000000000000,"z":840000000000000000}},"30000536":{"solarSystemId":30000536,"solarSystemName":"Z:2E1L","location":{"x":-3540000000000000000,"y":-1820000000000000000,"z":792000000000000000}},"30000537":{"solarSystemId":30000537,"solarSystemName":"U:3EN7","location":{"x":-2790000000000000000,"y":-2120000000000000000,"z":589000000000000000}},"30000538":{"solarSystemId":30000538,"solarSystemName":"B:2TRT","location":{"x":-2740000000000000000,"y":-2120000000000000000,"z":835000000000000000}},"30000539":{"solarSystemId":30000539,"solarSystemName":"M:3NT5","location":{"x":-2350000000000000000,"y":-1780000000000000000,"z":1220000000000000000}},"30000540":{"solarSystemId":30000540,"solarSystemName":"B:2VR7","location":{"x":-3360000000000000000,"y":-2140000000000000000,"z":-21100000000000000}},"30000541":{"solarSystemId":30000541,"solarSystemName":"G:2R60","location":{"x":-3090000000000000000,"y":-1760000000000000000,"z":188000000000000000}},"30000542":{"solarSystemId":30000542,"solarSystemName":"M:3RN3","location":{"x":-3070000000000000000,"y":-2050000000000000000,"z":142000000000000000}},"30000543":{"solarSystemId":30000543,"solarSystemName":"P:2O8O","location":{"x":-3010000000000000000,"y":-2060000000000000000,"z":13100000000000000}},"30000544":{"solarSystemId":30000544,"solarSystemName":"U:37A3","location":{"x":-3490000000000000000,"y":-1860000000000000000,"z":-49300000000000000}},"30000545":{"solarSystemId":30000545,"solarSystemName":"B:2NAA","location":{"x":-3370000000000000000,"y":-1850000000000000000,"z":323000000000000000}},"30000546":{"solarSystemId":30000546,"solarSystemName":"Y:3OLK","location":{"x":-3590000000000000000,"y":-1620000000000000000,"z":-27500000000000000}},"30000547":{"solarSystemId":30000547,"solarSystemName":"J:3376","location":{"x":-3850000000000000000,"y":-2040000000000000000,"z":-363000000000000000}},"30000548":{"solarSystemId":30000548,"solarSystemName":"Z:371T","location":{"x":-3260000000000000000,"y":-1730000000000000000,"z":71500000000000000}},"30000549":{"solarSystemId":30000549,"solarSystemName":"Y:2O03","location":{"x":-3620000000000000000,"y":-1980000000000000000,"z":195000000000000000}},"30000550":{"solarSystemId":30000550,"solarSystemName":"U:3O7V","location":{"x":-3050000000000000000,"y":-1580000000000000000,"z":275000000000000000}},"30000551":{"solarSystemId":30000551,"solarSystemName":"P:3RI8","location":{"x":-3230000000000000000,"y":-1590000000000000000,"z":67400000000000000}},"30000552":{"solarSystemId":30000552,"solarSystemName":"B:36KO","location":{"x":-3730000000000000000,"y":-1980000000000000000,"z":313000000000000000}},"30000553":{"solarSystemId":30000553,"solarSystemName":"J:3S49","location":{"x":-2870000000000000000,"y":-2220000000000000000,"z":362000000000000000}},"30000554":{"solarSystemId":30000554,"solarSystemName":"B:3T84","location":{"x":-3480000000000000000,"y":-1750000000000000000,"z":144000000000000000}},"30000555":{"solarSystemId":30000555,"solarSystemName":"D:35E7","location":{"x":-3650000000000000000,"y":-1690000000000000000,"z":-159000000000000000}},"30000556":{"solarSystemId":30000556,"solarSystemName":"F:3E84","location":{"x":-3980000000000000000,"y":-2960000000000000000,"z":1580000000000000000}},"30000557":{"solarSystemId":30000557,"solarSystemName":"Q:3T9R","location":{"x":-4050000000000000000,"y":-2220000000000000000,"z":1180000000000000000}},"30000558":{"solarSystemId":30000558,"solarSystemName":"U:2E24","location":{"x":-3420000000000000000,"y":-2290000000000000000,"z":996000000000000000}},"30000559":{"solarSystemId":30000559,"solarSystemName":"J:32E6","location":{"x":-3580000000000000000,"y":-2600000000000000000,"z":2080000000000000000}},"30000560":{"solarSystemId":30000560,"solarSystemName":"F:3V3I","location":{"x":-3530000000000000000,"y":-2040000000000000000,"z":1280000000000000000}},"30000561":{"solarSystemId":30000561,"solarSystemName":"J:2NV3","location":{"x":-3480000000000000000,"y":-2180000000000000000,"z":1000000000000000000}},"30000562":{"solarSystemId":30000562,"solarSystemName":"M:3644","location":{"x":-3950000000000000000,"y":-2310000000000000000,"z":931000000000000000}},"30000563":{"solarSystemId":30000563,"solarSystemName":"M:296S","location":{"x":-3670000000000000000,"y":-2960000000000000000,"z":1420000000000000000}},"30000564":{"solarSystemId":30000564,"solarSystemName":"M:2T4I","location":{"x":-3910000000000000000,"y":-2050000000000000000,"z":2080000000000000000}},"30000565":{"solarSystemId":30000565,"solarSystemName":"Y:3E23","location":{"x":-3850000000000000000,"y":-2390000000000000000,"z":1480000000000000000}},"30000566":{"solarSystemId":30000566,"solarSystemName":"F:2E1A","location":{"x":-4090000000000000000,"y":-2070000000000000000,"z":1920000000000000000}},"30000567":{"solarSystemId":30000567,"solarSystemName":"Q:30LV","location":{"x":-4210000000000000000,"y":-2010000000000000000,"z":1670000000000000000}},"30000568":{"solarSystemId":30000568,"solarSystemName":"J:3835","location":{"x":-3480000000000000000,"y":-2070000000000000000,"z":1140000000000000000}},"30000569":{"solarSystemId":30000569,"solarSystemName":"U:2SOL","location":{"x":-3460000000000000000,"y":-2040000000000000000,"z":1370000000000000000}},"30000570":{"solarSystemId":30000570,"solarSystemName":"Y:2TNT","location":{"x":-3360000000000000000,"y":-2060000000000000000,"z":1680000000000000000}},"30000571":{"solarSystemId":30000571,"solarSystemName":"Y:371V","location":{"x":-3010000000000000000,"y":-1290000000000000000,"z":-681000000000000000}},"30000572":{"solarSystemId":30000572,"solarSystemName":"M:3I3E","location":{"x":-2890000000000000000,"y":-1300000000000000000,"z":-117000000000000000}},"30000573":{"solarSystemId":30000573,"solarSystemName":"G:3OTS","location":{"x":-3020000000000000000,"y":-1200000000000000000,"z":-486000000000000000}},"30000574":{"solarSystemId":30000574,"solarSystemName":"G:382I","location":{"x":-2760000000000000000,"y":-1360000000000000000,"z":51200000000000000}},"30000575":{"solarSystemId":30000575,"solarSystemName":"Q:2K5T","location":{"x":-2840000000000000000,"y":-705000000000000000,"z":-469000000000000000}},"30000576":{"solarSystemId":30000576,"solarSystemName":"Q:2K09","location":{"x":-3170000000000000000,"y":-1100000000000000000,"z":-478000000000000000}},"30000577":{"solarSystemId":30000577,"solarSystemName":"M:39T7","location":{"x":-3070000000000000000,"y":-856000000000000000,"z":-509000000000000000}},"30000578":{"solarSystemId":30000578,"solarSystemName":"Q:2STI","location":{"x":-2930000000000000000,"y":-1150000000000000000,"z":-25500000000000000}},"30000579":{"solarSystemId":30000579,"solarSystemName":"H:2V79","location":{"x":-3020000000000000000,"y":-1080000000000000000,"z":-574000000000000000}},"30000580":{"solarSystemId":30000580,"solarSystemName":"G:3A8V","location":{"x":-2600000000000000000,"y":-750000000000000000,"z":-671000000000000000}},"30000581":{"solarSystemId":30000581,"solarSystemName":"B:3IE6","location":{"x":-2780000000000000000,"y":-1270000000000000000,"z":-344000000000000000}},"30000582":{"solarSystemId":30000582,"solarSystemName":"Y:2LO8","location":{"x":-2680000000000000000,"y":-960000000000000000,"z":-888000000000000000}},"30000583":{"solarSystemId":30000583,"solarSystemName":"P:2V00","location":{"x":-2850000000000000000,"y":-775000000000000000,"z":-377000000000000000}},"30000584":{"solarSystemId":30000584,"solarSystemName":"Z:3T5E","location":{"x":-2840000000000000000,"y":-1320000000000000000,"z":-812000000000000000}},"30000585":{"solarSystemId":30000585,"solarSystemName":"D:39RK","location":{"x":-2760000000000000000,"y":-791000000000000000,"z":-715000000000000000}},"30000586":{"solarSystemId":30000586,"solarSystemName":"J:37OA","location":{"x":-2680000000000000000,"y":-1540000000000000000,"z":-704000000000000000}},"30000587":{"solarSystemId":30000587,"solarSystemName":"B:3909","location":{"x":-2790000000000000000,"y":-1230000000000000000,"z":-489000000000000000}},"30000588":{"solarSystemId":30000588,"solarSystemName":"Q:2L5S","location":{"x":-2800000000000000000,"y":-1130000000000000000,"z":-438000000000000000}},"30000589":{"solarSystemId":30000589,"solarSystemName":"J:3V0E","location":{"x":-2650000000000000000,"y":-1460000000000000000,"z":-504000000000000000}},"30000590":{"solarSystemId":30000590,"solarSystemName":"M:2R84","location":{"x":-2480000000000000000,"y":-1070000000000000000,"z":-218000000000000000}},"30000591":{"solarSystemId":30000591,"solarSystemName":"P:3SAA","location":{"x":-2620000000000000000,"y":-901000000000000000,"z":-271000000000000000}},"30000592":{"solarSystemId":30000592,"solarSystemName":"Y:31O9","location":{"x":-3030000000000000000,"y":-1070000000000000000,"z":-157000000000000000}},"30000593":{"solarSystemId":30000593,"solarSystemName":"D:2ES5","location":{"x":-2360000000000000000,"y":-2340000000000000000,"z":410000000000000000}},"30000594":{"solarSystemId":30000594,"solarSystemName":"F:332N","location":{"x":-3000000000000000000,"y":-2280000000000000000,"z":2160000000000000000}},"30000595":{"solarSystemId":30000595,"solarSystemName":"Q:3596","location":{"x":-3350000000000000000,"y":-2850000000000000000,"z":2090000000000000000}},"30000596":{"solarSystemId":30000596,"solarSystemName":"D:2L77","location":{"x":-2300000000000000000,"y":-2520000000000000000,"z":602000000000000000}},"30000597":{"solarSystemId":30000597,"solarSystemName":"M:39E6","location":{"x":-2690000000000000000,"y":-2140000000000000000,"z":2020000000000000000}},"30000598":{"solarSystemId":30000598,"solarSystemName":"J:3508","location":{"x":-2590000000000000000,"y":-2530000000000000000,"z":386000000000000000}},"30000599":{"solarSystemId":30000599,"solarSystemName":"J:3078","location":{"x":-2460000000000000000,"y":-2500000000000000000,"z":593000000000000000}},"30000600":{"solarSystemId":30000600,"solarSystemName":"D:30VS","location":{"x":-3550000000000000000,"y":-2070000000000000000,"z":2020000000000000000}},"30000601":{"solarSystemId":30000601,"solarSystemName":"M:3EVK","location":{"x":-2840000000000000000,"y":-2530000000000000000,"z":134000000000000000}},"30000602":{"solarSystemId":30000602,"solarSystemName":"Q:3T2T","location":{"x":-2200000000000000000,"y":-2370000000000000000,"z":1040000000000000000}},"30000603":{"solarSystemId":30000603,"solarSystemName":"M:3EKK","location":{"x":-2110000000000000000,"y":-2210000000000000000,"z":1420000000000000000}},"30000604":{"solarSystemId":30000604,"solarSystemName":"Q:3OA2","location":{"x":-2980000000000000000,"y":-2900000000000000000,"z":1480000000000000000}},"30000605":{"solarSystemId":30000605,"solarSystemName":"B:3801","location":{"x":-3010000000000000000,"y":-2330000000000000000,"z":2250000000000000000}},"30000606":{"solarSystemId":30000606,"solarSystemName":"H:31K1","location":{"x":-2400000000000000000,"y":-2110000000000000000,"z":1630000000000000000}},"30000607":{"solarSystemId":30000607,"solarSystemName":"J:2N00","location":{"x":-3350000000000000000,"y":-925000000000000000,"z":329000000000000000}},"30000608":{"solarSystemId":30000608,"solarSystemName":"D:3347","location":{"x":-3310000000000000000,"y":-810000000000000000,"z":73300000000000000}},"30000609":{"solarSystemId":30000609,"solarSystemName":"P:33AL","location":{"x":-3450000000000000000,"y":-1210000000000000000,"z":94700000000000000}},"30000610":{"solarSystemId":30000610,"solarSystemName":"H:2T9R","location":{"x":-3350000000000000000,"y":-968000000000000000,"z":229000000000000000}},"30000611":{"solarSystemId":30000611,"solarSystemName":"J:3AK0","location":{"x":-3360000000000000000,"y":-789000000000000000,"z":-262000000000000000}},"30000612":{"solarSystemId":30000612,"solarSystemName":"H:2L1I","location":{"x":-3440000000000000000,"y":-740000000000000000,"z":7490000000000000}},"30000613":{"solarSystemId":30000613,"solarSystemName":"H:3O90","location":{"x":-3210000000000000000,"y":-861000000000000000,"z":14300000000000000}},"30000614":{"solarSystemId":30000614,"solarSystemName":"Z:346I","location":{"x":-3480000000000000000,"y":-1190000000000000000,"z":67200000000000000}},"30000615":{"solarSystemId":30000615,"solarSystemName":"J:2IT2","location":{"x":-3110000000000000000,"y":-801000000000000000,"z":179000000000000000}},"30000616":{"solarSystemId":30000616,"solarSystemName":"H:3IRL","location":{"x":-3160000000000000000,"y":-717000000000000000,"z":-65500000000000000}},"30000617":{"solarSystemId":30000617,"solarSystemName":"Z:3TAL","location":{"x":-3310000000000000000,"y":-1200000000000000000,"z":212000000000000000}},"30000618":{"solarSystemId":30000618,"solarSystemName":"Z:3I71","location":{"x":-3410000000000000000,"y":-823000000000000000,"z":8650000000000000}},"30000619":{"solarSystemId":30000619,"solarSystemName":"H:360L","location":{"x":-3310000000000000000,"y":-770000000000000000,"z":-184000000000000000}},"30000620":{"solarSystemId":30000620,"solarSystemName":"J:3608","location":{"x":-3330000000000000000,"y":-1010000000000000000,"z":52500000000000000}},"30000621":{"solarSystemId":30000621,"solarSystemName":"M:2O70","location":{"x":-3140000000000000000,"y":-1010000000000000000,"z":87700000000000000}},"30000622":{"solarSystemId":30000622,"solarSystemName":"H:2K1O","location":{"x":-3330000000000000000,"y":-756000000000000000,"z":-137000000000000000}},"30000623":{"solarSystemId":30000623,"solarSystemName":"U:3ER5","location":{"x":-3270000000000000000,"y":-691000000000000000,"z":155000000000000000}},"30000624":{"solarSystemId":30000624,"solarSystemName":"M:3N44","location":{"x":-3250000000000000000,"y":-695000000000000000,"z":-24600000000000000}},"30000625":{"solarSystemId":30000625,"solarSystemName":"J:2VI9","location":{"x":-3180000000000000000,"y":-977000000000000000,"z":-36400000000000000}},"30000626":{"solarSystemId":30000626,"solarSystemName":"F:2S4S","location":{"x":-3030000000000000000,"y":-900000000000000000,"z":-80200000000000000}},"30000627":{"solarSystemId":30000627,"solarSystemName":"P:3I10","location":{"x":-3450000000000000000,"y":-777000000000000000,"z":-261000000000000000}},"30000628":{"solarSystemId":30000628,"solarSystemName":"M:3658","location":{"x":-3360000000000000000,"y":-814000000000000000,"z":88100000000000000}},"30000629":{"solarSystemId":30000629,"solarSystemName":"B:2R93","location":{"x":-3280000000000000000,"y":-686000000000000000,"z":-134000000000000000}},"30000630":{"solarSystemId":30000630,"solarSystemName":"B:3R6N","location":{"x":-4960000000000000000,"y":-2150000000000000000,"z":-2120000000000000000}},"30000631":{"solarSystemId":30000631,"solarSystemName":"M:3T99","location":{"x":-4530000000000000000,"y":-1870000000000000000,"z":-1540000000000000000}},"30000632":{"solarSystemId":30000632,"solarSystemName":"H:2R8O","location":{"x":-3880000000000000000,"y":-2330000000000000000,"z":-2650000000000000000}},"30000633":{"solarSystemId":30000633,"solarSystemName":"B:31S3","location":{"x":-4880000000000000000,"y":-2490000000000000000,"z":-1580000000000000000}},"30000634":{"solarSystemId":30000634,"solarSystemName":"G:3638","location":{"x":-5020000000000000000,"y":-2850000000000000000,"z":-1520000000000000000}},"30000635":{"solarSystemId":30000635,"solarSystemName":"G:172E","location":{"x":-3920000000000000000,"y":-2570000000000000000,"z":-1800000000000000000}},"30000636":{"solarSystemId":30000636,"solarSystemName":"F:2921","location":{"x":-4710000000000000000,"y":-2200000000000000000,"z":-1890000000000000000}},"30000637":{"solarSystemId":30000637,"solarSystemName":"Y:3509","location":{"x":-4120000000000000000,"y":-2850000000000000000,"z":-949000000000000000}},"30000638":{"solarSystemId":30000638,"solarSystemName":"Q:3VO8","location":{"x":-4150000000000000000,"y":-2660000000000000000,"z":-1440000000000000000}},"30000639":{"solarSystemId":30000639,"solarSystemName":"Y:3R99","location":{"x":-4940000000000000000,"y":-3230000000000000000,"z":-1510000000000000000}},"30000640":{"solarSystemId":30000640,"solarSystemName":"G:2ISN","location":{"x":-3530000000000000000,"y":-1860000000000000000,"z":-1340000000000000000}},"30000641":{"solarSystemId":30000641,"solarSystemName":"P:367L","location":{"x":-3840000000000000000,"y":-2880000000000000000,"z":-1160000000000000000}},"30000642":{"solarSystemId":30000642,"solarSystemName":"D:2LEN","location":{"x":-3850000000000000000,"y":-3130000000000000000,"z":-1630000000000000000}},"30000643":{"solarSystemId":30000643,"solarSystemName":"Z:3TVI","location":{"x":-3850000000000000000,"y":-2800000000000000000,"z":-735000000000000000}},"30000644":{"solarSystemId":30000644,"solarSystemName":"Z:368S","location":{"x":-100000000000000000,"y":354000000000000000,"z":-5010000000000000000}},"30000645":{"solarSystemId":30000645,"solarSystemName":"M:38IO","location":{"x":-1000000000000000000,"y":-1170000000000000000,"z":-5020000000000000000}},"30000646":{"solarSystemId":30000646,"solarSystemName":"J:116K","location":{"x":-845000000000000000,"y":-484000000000000000,"z":-5010000000000000000}},"30000647":{"solarSystemId":30000647,"solarSystemName":"Y:2NS9","location":{"x":57300000000000000,"y":-617000000000000000,"z":-4820000000000000000}},"30000648":{"solarSystemId":30000648,"solarSystemName":"Q:332O","location":{"x":-78900000000000000,"y":55000000000000000,"z":-4970000000000000000}},"30000649":{"solarSystemId":30000649,"solarSystemName":"D:I91R","location":{"x":-355000000000000000,"y":-1500000000000000000,"z":-5090000000000000000}},"30000650":{"solarSystemId":30000650,"solarSystemName":"U:1NL7","location":{"x":-226000000000000000,"y":-155000000000000000,"z":-5130000000000000000}},"30000651":{"solarSystemId":30000651,"solarSystemName":"D:1N54","location":{"x":-447000000000000000,"y":-378000000000000000,"z":-5360000000000000000}},"30000652":{"solarSystemId":30000652,"solarSystemName":"D:2ELN","location":{"x":278000000000000000,"y":-217000000000000000,"z":-5850000000000000000}},"30000653":{"solarSystemId":30000653,"solarSystemName":"M:1K3R","location":{"x":-1040000000000000000,"y":-264000000000000000,"z":-5030000000000000000}},"30000654":{"solarSystemId":30000654,"solarSystemName":"P:216E","location":{"x":-852000000000000000,"y":125000000000000000,"z":-4910000000000000000}},"30000655":{"solarSystemId":30000655,"solarSystemName":"B:3A48","location":{"x":-872000000000000000,"y":186000000000000000,"z":-5260000000000000000}},"30000656":{"solarSystemId":30000656,"solarSystemName":"Z:3RN5","location":{"x":-236000000000000000,"y":290000000000000000,"z":-5900000000000000000}},"30000657":{"solarSystemId":30000657,"solarSystemName":"Y:3OO8","location":{"x":-942000000000000000,"y":-168000000000000000,"z":-4840000000000000000}},"30000658":{"solarSystemId":30000658,"solarSystemName":"H:41LT","location":{"x":-1140000000000000000,"y":-776000000000000000,"z":-5480000000000000000}},"30000659":{"solarSystemId":30000659,"solarSystemName":"U:32A7","location":{"x":-40600000000000000,"y":-182000000000000000,"z":-5460000000000000000}},"30000660":{"solarSystemId":30000660,"solarSystemName":"P:E6AV","location":{"x":-1350000000000000000,"y":-874000000000000000,"z":-5570000000000000000}},"30000661":{"solarSystemId":30000661,"solarSystemName":"Z:45L3","location":{"x":-378000000000000000,"y":-709000000000000000,"z":-5470000000000000000}},"30000662":{"solarSystemId":30000662,"solarSystemName":"U:STR9","location":{"x":218000000000000000,"y":-796000000000000000,"z":-5100000000000000000}},"30000663":{"solarSystemId":30000663,"solarSystemName":"Q:1426","location":{"x":-273000000000000000,"y":-155000000000000000,"z":-4570000000000000000}},"30000664":{"solarSystemId":30000664,"solarSystemName":"M:215E","location":{"x":-1080000000000000000,"y":-1110000000000000000,"z":-5710000000000000000}},"30000665":{"solarSystemId":30000665,"solarSystemName":"P:36TS","location":{"x":402000000000000000,"y":-4790000000000000000,"z":-5690000000000000000}},"30000666":{"solarSystemId":30000666,"solarSystemName":"Y:3NA2","location":{"x":1530000000000000000,"y":-6050000000000000000,"z":-4420000000000000000}},"30000667":{"solarSystemId":30000667,"solarSystemName":"H:3734","location":{"x":-116000000000000000,"y":-5010000000000000000,"z":-6190000000000000000}},"30000668":{"solarSystemId":30000668,"solarSystemName":"Y:2LV0","location":{"x":1990000000000000000,"y":-4540000000000000000,"z":-3400000000000000000}},"30000669":{"solarSystemId":30000669,"solarSystemName":"H:30V2","location":{"x":1410000000000000000,"y":-5030000000000000000,"z":-4600000000000000000}},"30000670":{"solarSystemId":30000670,"solarSystemName":"D:33SL","location":{"x":2090000000000000000,"y":-3410000000000000000,"z":-5820000000000000000}},"30000671":{"solarSystemId":30000671,"solarSystemName":"M:2V8R","location":{"x":559000000000000000,"y":-1940000000000000000,"z":-2220000000000000000}},"30000672":{"solarSystemId":30000672,"solarSystemName":"P:3VIN","location":{"x":-1130000000000000000,"y":-2350000000000000000,"z":-3540000000000000000}},"30000673":{"solarSystemId":30000673,"solarSystemName":"M:2738","location":{"x":192000000000000000,"y":-2800000000000000000,"z":-3180000000000000000}},"30000674":{"solarSystemId":30000674,"solarSystemName":"Z:3EE3","location":{"x":-283000000000000000,"y":-2910000000000000000,"z":-3510000000000000000}},"30000675":{"solarSystemId":30000675,"solarSystemName":"J:1824","location":{"x":-509000000000000000,"y":-2150000000000000000,"z":-4070000000000000000}},"30000676":{"solarSystemId":30000676,"solarSystemName":"Y:3N8S","location":{"x":778000000000000000,"y":-1770000000000000000,"z":-2150000000000000000}},"30000677":{"solarSystemId":30000677,"solarSystemName":"U:2K26","location":{"x":334000000000000000,"y":-2060000000000000000,"z":-2680000000000000000}},"30000678":{"solarSystemId":30000678,"solarSystemName":"M:1ST6","location":{"x":-317000000000000000,"y":-3010000000000000000,"z":-2640000000000000000}},"30000679":{"solarSystemId":30000679,"solarSystemName":"M:2AT1","location":{"x":-169000000000000000,"y":-2150000000000000000,"z":-3210000000000000000}},"30000680":{"solarSystemId":30000680,"solarSystemName":"M:1847","location":{"x":-123000000000000000,"y":-1970000000000000000,"z":-2880000000000000000}},"30000681":{"solarSystemId":30000681,"solarSystemName":"H:3E7T","location":{"x":-845000000000000000,"y":-1790000000000000000,"z":-3220000000000000000}},"30000682":{"solarSystemId":30000682,"solarSystemName":"B:1T3S","location":{"x":919000000000000000,"y":-2210000000000000000,"z":-2260000000000000000}},"30000683":{"solarSystemId":30000683,"solarSystemName":"M:24K3","location":{"x":6120000000000000,"y":-1850000000000000000,"z":-2800000000000000000}},"30000684":{"solarSystemId":30000684,"solarSystemName":"Y:2T72","location":{"x":980000000000000000,"y":-4390000000000000000,"z":-1000000000000000000}},"30000685":{"solarSystemId":30000685,"solarSystemName":"U:2T7I","location":{"x":237000000000000000,"y":-5320000000000000000,"z":-1230000000000000000}},"30000686":{"solarSystemId":30000686,"solarSystemName":"M:2RLL","location":{"x":768000000000000000,"y":-6350000000000000000,"z":-2670000000000000000}},"30000687":{"solarSystemId":30000687,"solarSystemName":"H:2K52","location":{"x":-378000000000000000,"y":-6150000000000000000,"z":-334000000000000000}},"30000688":{"solarSystemId":30000688,"solarSystemName":"B:39IT","location":{"x":-857000000000000000,"y":-4990000000000000000,"z":-834000000000000000}},"30000689":{"solarSystemId":30000689,"solarSystemName":"G:2KRR","location":{"x":775000000000000000,"y":-6580000000000000000,"z":-3070000000000000000}},"30000690":{"solarSystemId":30000690,"solarSystemName":"P:2L81","location":{"x":331000000000000000,"y":-4060000000000000000,"z":-1760000000000000000}},"30000691":{"solarSystemId":30000691,"solarSystemName":"D:1SS0","location":{"x":1030000000000000000,"y":-5820000000000000000,"z":-2150000000000000000}},"30000692":{"solarSystemId":30000692,"solarSystemName":"B:3VNN","location":{"x":-801000000000000000,"y":-4150000000000000000,"z":-6050000000000000000}},"30000693":{"solarSystemId":30000693,"solarSystemName":"H:3O54","location":{"x":-2580000000000000000,"y":-3080000000000000000,"z":-4730000000000000000}},"30000694":{"solarSystemId":30000694,"solarSystemName":"D:SRKL","location":{"x":-1280000000000000000,"y":-2990000000000000000,"z":-5800000000000000000}},"30000695":{"solarSystemId":30000695,"solarSystemName":"F:29O8","location":{"x":-2060000000000000000,"y":-4170000000000000000,"z":-5580000000000000000}},"30000696":{"solarSystemId":30000696,"solarSystemName":"G:3E77","location":{"x":-2800000000000000000,"y":-2330000000000000000,"z":-6600000000000000000}},"30000697":{"solarSystemId":30000697,"solarSystemName":"D:3E44","location":{"x":-1300000000000000000,"y":-1740000000000000000,"z":-5680000000000000000}},"30000698":{"solarSystemId":30000698,"solarSystemName":"U:1NOA","location":{"x":-722000000000000000,"y":-2230000000000000000,"z":-5460000000000000000}},"30000699":{"solarSystemId":30000699,"solarSystemName":"Q:1O5T","location":{"x":-1960000000000000000,"y":-1340000000000000000,"z":-5240000000000000000}},"30000700":{"solarSystemId":30000700,"solarSystemName":"P:3O8S","location":{"x":-2890000000000000000,"y":-3710000000000000000,"z":-5850000000000000000}},"30000701":{"solarSystemId":30000701,"solarSystemName":"H:2V1T","location":{"x":-2240000000000000000,"y":-1960000000000000000,"z":-5180000000000000000}},"30000702":{"solarSystemId":30000702,"solarSystemName":"H:10A0","location":{"x":-1910000000000000000,"y":-1830000000000000000,"z":-5590000000000000000}},"30000703":{"solarSystemId":30000703,"solarSystemName":"Q:2N3I","location":{"x":-2140000000000000000,"y":-1480000000000000000,"z":-2400000000000000000}},"30000704":{"solarSystemId":30000704,"solarSystemName":"B:378E","location":{"x":-3040000000000000000,"y":-2490000000000000000,"z":-2660000000000000000}},"30000705":{"solarSystemId":30000705,"solarSystemName":"J:3TA1","location":{"x":-1290000000000000000,"y":-3130000000000000000,"z":-2040000000000000000}},"30000706":{"solarSystemId":30000706,"solarSystemName":"Q:2KSR","location":{"x":-3210000000000000000,"y":-1710000000000000000,"z":-2260000000000000000}},"30000707":{"solarSystemId":30000707,"solarSystemName":"Z:3OKT","location":{"x":-3640000000000000000,"y":-3040000000000000000,"z":-1990000000000000000}},"30000708":{"solarSystemId":30000708,"solarSystemName":"M:2V9V","location":{"x":-2990000000000000000,"y":-3550000000000000000,"z":-1680000000000000000}},"30000709":{"solarSystemId":30000709,"solarSystemName":"Q:3204","location":{"x":-2400000000000000000,"y":-2680000000000000000,"z":-2020000000000000000}},"30000710":{"solarSystemId":30000710,"solarSystemName":"Y:2E0R","location":{"x":-1130000000000000000,"y":-2940000000000000000,"z":-2000000000000000000}},"30000711":{"solarSystemId":30000711,"solarSystemName":"Y:3I13","location":{"x":-3060000000000000000,"y":-2450000000000000000,"z":-1890000000000000000}},"30000712":{"solarSystemId":30000712,"solarSystemName":"F:39SE","location":{"x":-2700000000000000000,"y":-3610000000000000000,"z":-1430000000000000000}},"30000713":{"solarSystemId":30000713,"solarSystemName":"P:2STK","location":{"x":-2280000000000000000,"y":-3110000000000000000,"z":-2820000000000000000}},"30000714":{"solarSystemId":30000714,"solarSystemName":"B:38RT","location":{"x":-2880000000000000000,"y":-3580000000000000000,"z":-1640000000000000000}},"30000715":{"solarSystemId":30000715,"solarSystemName":"P:2L4K","location":{"x":-2580000000000000000,"y":-2550000000000000000,"z":-2210000000000000000}},"30000716":{"solarSystemId":30000716,"solarSystemName":"U:32L3","location":{"x":-1370000000000000000,"y":-4140000000000000000,"z":-3870000000000000000}},"30000717":{"solarSystemId":30000717,"solarSystemName":"H:2N09","location":{"x":-1100000000000000000,"y":-5280000000000000000,"z":-3710000000000000000}},"30000718":{"solarSystemId":30000718,"solarSystemName":"Q:2VRR","location":{"x":-859000000000000000,"y":-4470000000000000000,"z":-4090000000000000000}},"30000719":{"solarSystemId":30000719,"solarSystemName":"U:38KI","location":{"x":-2190000000000000000,"y":-4210000000000000000,"z":-3560000000000000000}},"30000720":{"solarSystemId":30000720,"solarSystemName":"B:2SN9","location":{"x":-1570000000000000000,"y":-2740000000000000000,"z":-3690000000000000000}},"30000721":{"solarSystemId":30000721,"solarSystemName":"G:29OI","location":{"x":-1310000000000000000,"y":-4690000000000000000,"z":-3970000000000000000}},"30000722":{"solarSystemId":30000722,"solarSystemName":"Z:3NI6","location":{"x":-2860000000000000000,"y":-3590000000000000000,"z":-3710000000000000000}},"30000723":{"solarSystemId":30000723,"solarSystemName":"D:1RNK","location":{"x":-1290000000000000000,"y":-2210000000000000000,"z":-3970000000000000000}},"30000724":{"solarSystemId":30000724,"solarSystemName":"H:2LRS","location":{"x":1200000000000000000,"y":-2570000000000000000,"z":-3920000000000000000}},"30000725":{"solarSystemId":30000725,"solarSystemName":"Y:2LEI","location":{"x":2140000000000000000,"y":-1560000000000000000,"z":-3360000000000000000}},"30000726":{"solarSystemId":30000726,"solarSystemName":"M:20KT","location":{"x":2420000000000000000,"y":-1870000000000000000,"z":-2700000000000000000}},"30000727":{"solarSystemId":30000727,"solarSystemName":"D:21RS","location":{"x":1060000000000000000,"y":-797000000000000000,"z":-3890000000000000000}},"30000728":{"solarSystemId":30000728,"solarSystemName":"Z:3931","location":{"x":1170000000000000000,"y":-488000000000000000,"z":-2970000000000000000}},"30000729":{"solarSystemId":30000729,"solarSystemName":"U:105V","location":{"x":1010000000000000000,"y":-1400000000000000000,"z":-3830000000000000000}},"30000730":{"solarSystemId":30000730,"solarSystemName":"U:31R4","location":{"x":2530000000000000000,"y":-2750000000000000000,"z":-4280000000000000000}},"30000731":{"solarSystemId":30000731,"solarSystemName":"G:1V37","location":{"x":2650000000000000000,"y":-2780000000000000000,"z":-2950000000000000000}},"30000732":{"solarSystemId":30000732,"solarSystemName":"F:1N5T","location":{"x":544000000000000000,"y":-903000000000000000,"z":-3510000000000000000}},"30000733":{"solarSystemId":30000733,"solarSystemName":"J:2INR","location":{"x":2460000000000000000,"y":-1570000000000000000,"z":-3570000000000000000}},"30000734":{"solarSystemId":30000734,"solarSystemName":"Q:3E8E","location":{"x":1070000000000000000,"y":-1380000000000000000,"z":-4240000000000000000}},"30000735":{"solarSystemId":30000735,"solarSystemName":"J:31A6","location":{"x":1660000000000000000,"y":-2470000000000000000,"z":-3820000000000000000}},"30000736":{"solarSystemId":30000736,"solarSystemName":"D:3SL4","location":{"x":2770000000000000000,"y":-2530000000000000000,"z":-4390000000000000000}},"30000737":{"solarSystemId":30000737,"solarSystemName":"P:2K1N","location":{"x":1640000000000000000,"y":-592000000000000000,"z":-3220000000000000000}},"30000738":{"solarSystemId":30000738,"solarSystemName":"Y:3V42","location":{"x":1660000000000000000,"y":-1700000000000000000,"z":-2340000000000000000}},"30000739":{"solarSystemId":30000739,"solarSystemName":"P:3O74","location":{"x":1020000000000000000,"y":-480000000000000000,"z":-3440000000000000000}},"30000740":{"solarSystemId":30000740,"solarSystemName":"M:2VN7","location":{"x":3190000000000000000,"y":-894000000000000000,"z":-3190000000000000000}},"30000741":{"solarSystemId":30000741,"solarSystemName":"F:37I1","location":{"x":1530000000000000000,"y":-3960000000000000000,"z":-2450000000000000000}},"30000742":{"solarSystemId":30000742,"solarSystemName":"H:2VT3","location":{"x":2320000000000000000,"y":-3040000000000000000,"z":-2110000000000000000}},"30000743":{"solarSystemId":30000743,"solarSystemName":"M:38S5","location":{"x":1440000000000000000,"y":-4190000000000000000,"z":-1090000000000000000}},"30000744":{"solarSystemId":30000744,"solarSystemName":"Z:2IL6","location":{"x":2340000000000000000,"y":-4980000000000000000,"z":-1870000000000000000}},"30000745":{"solarSystemId":30000745,"solarSystemName":"Q:39EV","location":{"x":657000000000000000,"y":-3840000000000000000,"z":-1120000000000000000}},"30000746":{"solarSystemId":30000746,"solarSystemName":"M:ONI7","location":{"x":1160000000000000000,"y":-4000000000000000000,"z":-2560000000000000000}},"30000747":{"solarSystemId":30000747,"solarSystemName":"J:V1A4","location":{"x":746000000000000000,"y":-3240000000000000000,"z":-3180000000000000000}},"30000748":{"solarSystemId":30000748,"solarSystemName":"G:213O","location":{"x":432000000000000000,"y":-3530000000000000000,"z":-2810000000000000000}},"30000749":{"solarSystemId":30000749,"solarSystemName":"G:3EKN","location":{"x":-1970000000000000000,"y":961000000000000000,"z":-4420000000000000000}},"30000750":{"solarSystemId":30000750,"solarSystemName":"F:374T","location":{"x":-2540000000000000000,"y":289000000000000000,"z":-4380000000000000000}},"30000751":{"solarSystemId":30000751,"solarSystemName":"M:1A94","location":{"x":-2900000000000000000,"y":-25000000000000000,"z":-4360000000000000000}},"30000752":{"solarSystemId":30000752,"solarSystemName":"M:342N","location":{"x":-2800000000000000000,"y":98900000000000000,"z":-4760000000000000000}},"30000753":{"solarSystemId":30000753,"solarSystemName":"M:2107","location":{"x":-2860000000000000000,"y":285000000000000000,"z":-4270000000000000000}},"30000754":{"solarSystemId":30000754,"solarSystemName":"D:3S37","location":{"x":-3730000000000000000,"y":1000000000000000000,"z":-4650000000000000000}},"30000755":{"solarSystemId":30000755,"solarSystemName":"Y:1EOT","location":{"x":-1520000000000000000,"y":414000000000000000,"z":-5130000000000000000}},"30000756":{"solarSystemId":30000756,"solarSystemName":"U:1II9","location":{"x":-2260000000000000000,"y":147000000000000000,"z":-5030000000000000000}},"30000757":{"solarSystemId":30000757,"solarSystemName":"Q:20LO","location":{"x":-2300000000000000000,"y":800000000000000000,"z":-4200000000000000000}},"30000758":{"solarSystemId":30000758,"solarSystemName":"M:SAEE","location":{"x":-2500000000000000000,"y":675000000000000000,"z":-4720000000000000000}},"30000759":{"solarSystemId":30000759,"solarSystemName":"Y:AI0K","location":{"x":-3030000000000000000,"y":125000000000000000,"z":-4880000000000000000}},"30000760":{"solarSystemId":30000760,"solarSystemName":"Q:3IIR","location":{"x":-3020000000000000000,"y":822000000000000000,"z":-5060000000000000000}},"30000761":{"solarSystemId":30000761,"solarSystemName":"J:31KR","location":{"x":-3070000000000000000,"y":736000000000000000,"z":-5190000000000000000}},"30000762":{"solarSystemId":30000762,"solarSystemName":"Y:33R4","location":{"x":-2360000000000000000,"y":516000000000000000,"z":-4610000000000000000}},"30000763":{"solarSystemId":30000763,"solarSystemName":"B:4IK1","location":{"x":-3310000000000000000,"y":828000000000000000,"z":-4540000000000000000}},"30000764":{"solarSystemId":30000764,"solarSystemName":"M:23AA","location":{"x":-1660000000000000000,"y":196000000000000000,"z":-4880000000000000000}},"30000765":{"solarSystemId":30000765,"solarSystemName":"J:1IV4","location":{"x":-2010000000000000000,"y":269000000000000000,"z":-5020000000000000000}},"30000766":{"solarSystemId":30000766,"solarSystemName":"Z:21L4","location":{"x":-1630000000000000000,"y":151000000000000000,"z":-4940000000000000000}},"30000767":{"solarSystemId":30000767,"solarSystemName":"P:1798","location":{"x":-2170000000000000000,"y":13800000000000000,"z":-4380000000000000000}},"30000768":{"solarSystemId":30000768,"solarSystemName":"H:2R49","location":{"x":-532000000000000000,"y":1770000000000000000,"z":-3520000000000000000}},"30000769":{"solarSystemId":30000769,"solarSystemName":"U:2NV1","location":{"x":-417000000000000000,"y":1170000000000000000,"z":-4240000000000000000}},"30000770":{"solarSystemId":30000770,"solarSystemName":"H:1NRE","location":{"x":643000000000000000,"y":618000000000000000,"z":-4040000000000000000}},"30000771":{"solarSystemId":30000771,"solarSystemName":"B:3T4E","location":{"x":1310000000000000000,"y":796000000000000000,"z":-4480000000000000000}},"30000772":{"solarSystemId":30000772,"solarSystemName":"P:23SA","location":{"x":-490000000000000000,"y":1050000000000000000,"z":-3370000000000000000}},"30000773":{"solarSystemId":30000773,"solarSystemName":"Y:34IN","location":{"x":476000000000000000,"y":800000000000000000,"z":-4240000000000000000}},"30000774":{"solarSystemId":30000774,"solarSystemName":"Q:296K","location":{"x":-613000000000000000,"y":156000000000000000,"z":-3910000000000000000}},"30000775":{"solarSystemId":30000775,"solarSystemName":"P:1E7K","location":{"x":403000000000000000,"y":1090000000000000000,"z":-2990000000000000000}},"30000776":{"solarSystemId":30000776,"solarSystemName":"Z:3RLI","location":{"x":1190000000000000000,"y":709000000000000000,"z":-4370000000000000000}},"30000777":{"solarSystemId":30000777,"solarSystemName":"D:1NS7","location":{"x":146000000000000000,"y":1010000000000000000,"z":-4050000000000000000}},"30000778":{"solarSystemId":30000778,"solarSystemName":"B:VL81","location":{"x":120000000000000000,"y":343000000000000000,"z":-4880000000000000000}},"30000779":{"solarSystemId":30000779,"solarSystemName":"Z:417O","location":{"x":362000000000000000,"y":9590000000000000,"z":-4540000000000000000}},"30000780":{"solarSystemId":30000780,"solarSystemName":"P:1NI2","location":{"x":652000000000000000,"y":823000000000000000,"z":-3260000000000000000}},"30000781":{"solarSystemId":30000781,"solarSystemName":"G:31E4","location":{"x":199000000000000000,"y":5950000000000000,"z":-4360000000000000000}},"30000782":{"solarSystemId":30000782,"solarSystemName":"D:NS0T","location":{"x":-695000000000000000,"y":1210000000000000000,"z":-4350000000000000000}},"30000783":{"solarSystemId":30000783,"solarSystemName":"D:3EVN","location":{"x":-367000000000000000,"y":-24500000000000000,"z":-4250000000000000000}},"30000784":{"solarSystemId":30000784,"solarSystemName":"M:3AS8","location":{"x":-4700000000000000000,"y":-711000000000000000,"z":-7610000000000000000}},"30000785":{"solarSystemId":30000785,"solarSystemName":"D:2R62","location":{"x":-4110000000000000000,"y":-542000000000000000,"z":-7660000000000000000}},"30000786":{"solarSystemId":30000786,"solarSystemName":"F:28K1","location":{"x":-4350000000000000000,"y":-292000000000000000,"z":-7160000000000000000}},"30000787":{"solarSystemId":30000787,"solarSystemName":"J:3ETE","location":{"x":-5020000000000000000,"y":-468000000000000000,"z":-8040000000000000000}},"30000788":{"solarSystemId":30000788,"solarSystemName":"D:3740","location":{"x":-4460000000000000000,"y":-345000000000000000,"z":-7000000000000000000}},"30000789":{"solarSystemId":30000789,"solarSystemName":"Q:1741","location":{"x":-4220000000000000000,"y":-372000000000000000,"z":-8010000000000000000}},"30000790":{"solarSystemId":30000790,"solarSystemName":"Z:1SI5","location":{"x":-4590000000000000000,"y":-404000000000000000,"z":-7980000000000000000}},"30000791":{"solarSystemId":30000791,"solarSystemName":"Z:11RS","location":{"x":-4810000000000000000,"y":-597000000000000000,"z":-7170000000000000000}},"30000792":{"solarSystemId":30000792,"solarSystemName":"M:2ET6","location":{"x":-4230000000000000000,"y":-1440000000000000000,"z":-6970000000000000000}},"30000793":{"solarSystemId":30000793,"solarSystemName":"P:1IK7","location":{"x":-4790000000000000000,"y":-1320000000000000000,"z":-6730000000000000000}},"30000794":{"solarSystemId":30000794,"solarSystemName":"U:3EK7","location":{"x":-4120000000000000000,"y":-984000000000000000,"z":-7870000000000000000}},"30000795":{"solarSystemId":30000795,"solarSystemName":"P:3TEA","location":{"x":-5240000000000000000,"y":-333000000000000000,"z":-8470000000000000000}},"30000796":{"solarSystemId":30000796,"solarSystemName":"P:30NI","location":{"x":-4620000000000000000,"y":-960000000000000000,"z":-7470000000000000000}},"30000797":{"solarSystemId":30000797,"solarSystemName":"M:2VO4","location":{"x":-4030000000000000000,"y":-738000000000000000,"z":-6820000000000000000}},"30000798":{"solarSystemId":30000798,"solarSystemName":"Y:OV24","location":{"x":-3960000000000000000,"y":-591000000000000000,"z":-7680000000000000000}},"30000799":{"solarSystemId":30000799,"solarSystemName":"Z:2473","location":{"x":-5000000000000000000,"y":-183000000000000000,"z":-7140000000000000000}},"30000800":{"solarSystemId":30000800,"solarSystemName":"J:1R92","location":{"x":-4740000000000000000,"y":-218000000000000000,"z":-7030000000000000000}},"30000801":{"solarSystemId":30000801,"solarSystemName":"J:1SRL","location":{"x":-3990000000000000000,"y":-802000000000000000,"z":-6620000000000000000}},"30000802":{"solarSystemId":30000802,"solarSystemName":"Z:3NAO","location":{"x":-5660000000000000000,"y":60700000000000000,"z":-8060000000000000000}},"30000803":{"solarSystemId":30000803,"solarSystemName":"F:2V86","location":{"x":-6330000000000000000,"y":404000000000000000,"z":-8040000000000000000}},"30000804":{"solarSystemId":30000804,"solarSystemName":"G:2899","location":{"x":-6600000000000000000,"y":320000000000000000,"z":-7850000000000000000}},"30000805":{"solarSystemId":30000805,"solarSystemName":"U:E6EV","location":{"x":-6510000000000000000,"y":368000000000000000,"z":-7400000000000000000}},"30000806":{"solarSystemId":30000806,"solarSystemName":"M:1IS9","location":{"x":-5330000000000000000,"y":-170000000000000000,"z":-7520000000000000000}},"30000807":{"solarSystemId":30000807,"solarSystemName":"D:3667","location":{"x":-6310000000000000000,"y":105000000000000000,"z":-8010000000000000000}},"30000808":{"solarSystemId":30000808,"solarSystemName":"Y:320K","location":{"x":-6950000000000000000,"y":97000000000000000,"z":-8390000000000000000}},"30000809":{"solarSystemId":30000809,"solarSystemName":"Z:1KSA","location":{"x":-6960000000000000000,"y":537000000000000000,"z":-7710000000000000000}},"30000810":{"solarSystemId":30000810,"solarSystemName":"J:O02V","location":{"x":-5740000000000000000,"y":106000000000000000,"z":-6980000000000000000}},"30000811":{"solarSystemId":30000811,"solarSystemName":"H:3RV2","location":{"x":-6640000000000000000,"y":209000000000000000,"z":-6110000000000000000}},"30000812":{"solarSystemId":30000812,"solarSystemName":"F:2K2V","location":{"x":-6120000000000000000,"y":103000000000000000,"z":-7030000000000000000}},"30000813":{"solarSystemId":30000813,"solarSystemName":"F:1A89","location":{"x":-6290000000000000000,"y":24700000000000000,"z":-7280000000000000000}},"30000814":{"solarSystemId":30000814,"solarSystemName":"Z:349S","location":{"x":-5900000000000000000,"y":-22400000000000000,"z":-8020000000000000000}},"30000815":{"solarSystemId":30000815,"solarSystemName":"Z:R0IR","location":{"x":-6490000000000000000,"y":145000000000000000,"z":-7080000000000000000}},"30000816":{"solarSystemId":30000816,"solarSystemName":"Q:S54S","location":{"x":-6520000000000000000,"y":263000000000000000,"z":-6320000000000000000}},"30000817":{"solarSystemId":30000817,"solarSystemName":"F:25RK","location":{"x":-5810000000000000000,"y":18900000000000000,"z":-7190000000000000000}},"30000818":{"solarSystemId":30000818,"solarSystemName":"B:20TA","location":{"x":-6750000000000000000,"y":19500000000000000,"z":-8240000000000000000}},"30000819":{"solarSystemId":30000819,"solarSystemName":"H:197V","location":{"x":-5650000000000000000,"y":372000000000000000,"z":-7640000000000000000}},"30000820":{"solarSystemId":30000820,"solarSystemName":"U:21AL","location":{"x":-7190000000000000000,"y":526000000000000000,"z":-7410000000000000000}},"30000821":{"solarSystemId":30000821,"solarSystemName":"Y:3INT","location":{"x":-6570000000000000000,"y":56800000000000000,"z":-6190000000000000000}},"30000822":{"solarSystemId":30000822,"solarSystemName":"Q:19I3","location":{"x":-6770000000000000000,"y":369000000000000000,"z":-8060000000000000000}},"30000823":{"solarSystemId":30000823,"solarSystemName":"F:3094","location":{"x":-5670000000000000000,"y":-61700000000000000,"z":-6970000000000000000}},"30000824":{"solarSystemId":30000824,"solarSystemName":"Y:1734","location":{"x":-6770000000000000000,"y":622000000000000000,"z":-6500000000000000000}},"30000825":{"solarSystemId":30000825,"solarSystemName":"J:2R38","location":{"x":-7950000000000000000,"y":1150000000000000000,"z":-6690000000000000000}},"30000826":{"solarSystemId":30000826,"solarSystemName":"P:297K","location":{"x":-7980000000000000000,"y":940000000000000000,"z":-8130000000000000000}},"30000827":{"solarSystemId":30000827,"solarSystemName":"M:24L6","location":{"x":-7140000000000000000,"y":818000000000000000,"z":-8220000000000000000}},"30000828":{"solarSystemId":30000828,"solarSystemName":"Y:NE27","location":{"x":-7600000000000000000,"y":944000000000000000,"z":-7840000000000000000}},"30000829":{"solarSystemId":30000829,"solarSystemName":"P:3518","location":{"x":-7460000000000000000,"y":1150000000000000000,"z":-6650000000000000000}},"30000830":{"solarSystemId":30000830,"solarSystemName":"F:13LR","location":{"x":-7250000000000000000,"y":476000000000000000,"z":-8540000000000000000}},"30000831":{"solarSystemId":30000831,"solarSystemName":"J:2L3N","location":{"x":-8360000000000000000,"y":99700000000000000,"z":-7120000000000000000}},"30000832":{"solarSystemId":30000832,"solarSystemName":"Z:29V3","location":{"x":-7550000000000000000,"y":676000000000000000,"z":-7450000000000000000}},"30000833":{"solarSystemId":30000833,"solarSystemName":"D:1I3I","location":{"x":-7290000000000000000,"y":555000000000000000,"z":-6570000000000000000}},"30000834":{"solarSystemId":30000834,"solarSystemName":"Z:23TI","location":{"x":-7700000000000000000,"y":-218000000000000000,"z":-6800000000000000000}},"30000835":{"solarSystemId":30000835,"solarSystemName":"Q:2205","location":{"x":-7600000000000000000,"y":742000000000000000,"z":-6480000000000000000}},"30000836":{"solarSystemId":30000836,"solarSystemName":"F:L24L","location":{"x":-7680000000000000000,"y":541000000000000000,"z":-7100000000000000000}},"30000837":{"solarSystemId":30000837,"solarSystemName":"Z:526K","location":{"x":-7710000000000000000,"y":-69500000000000000,"z":-6760000000000000000}},"30000838":{"solarSystemId":30000838,"solarSystemName":"D:SK2S","location":{"x":-8170000000000000000,"y":-229000000000000000,"z":-6980000000000000000}},"30000839":{"solarSystemId":30000839,"solarSystemName":"F:3194","location":{"x":-7890000000000000000,"y":756000000000000000,"z":-7050000000000000000}},"30000840":{"solarSystemId":30000840,"solarSystemName":"D:22A6","location":{"x":-7560000000000000000,"y":587000000000000000,"z":-7390000000000000000}},"30000841":{"solarSystemId":30000841,"solarSystemName":"J:23KT","location":{"x":-7900000000000000000,"y":752000000000000000,"z":-7630000000000000000}},"30000842":{"solarSystemId":30000842,"solarSystemName":"B:37K5","location":{"x":-4990000000000000000,"y":-903000000000000000,"z":-5940000000000000000}},"30000843":{"solarSystemId":30000843,"solarSystemName":"Z:3TK5","location":{"x":-4410000000000000000,"y":88300000000000000,"z":-5900000000000000000}},"30000844":{"solarSystemId":30000844,"solarSystemName":"D:15VT","location":{"x":-3540000000000000000,"y":85500000000000000,"z":-5490000000000000000}},"30000845":{"solarSystemId":30000845,"solarSystemName":"H:1TEI","location":{"x":-4300000000000000000,"y":902000000000000000,"z":-6020000000000000000}},"30000846":{"solarSystemId":30000846,"solarSystemName":"M:33I4","location":{"x":-4430000000000000000,"y":-1050000000000000000,"z":-5930000000000000000}},"30000847":{"solarSystemId":30000847,"solarSystemName":"D:16N4","location":{"x":-3630000000000000000,"y":-3980000000000000,"z":-5860000000000000000}},"30000848":{"solarSystemId":30000848,"solarSystemName":"G:1T36","location":{"x":-3840000000000000000,"y":112000000000000000,"z":-6230000000000000000}},"30000849":{"solarSystemId":30000849,"solarSystemName":"Y:2832","location":{"x":-3980000000000000000,"y":-309000000000000000,"z":-5460000000000000000}},"30000850":{"solarSystemId":30000850,"solarSystemName":"Q:45LV","location":{"x":-4030000000000000000,"y":241000000000000000,"z":-6580000000000000000}},"30000851":{"solarSystemId":30000851,"solarSystemName":"B:10O0","location":{"x":-4250000000000000000,"y":-285000000000000000,"z":-6310000000000000000}},"30000852":{"solarSystemId":30000852,"solarSystemName":"Z:1OI2","location":{"x":-3790000000000000000,"y":-488000000000000000,"z":-5630000000000000000}},"30000853":{"solarSystemId":30000853,"solarSystemName":"Y:2K3O","location":{"x":-5040000000000000000,"y":-1380000000000000000,"z":-5820000000000000000}},"30000854":{"solarSystemId":30000854,"solarSystemName":"P:33LI","location":{"x":-4840000000000000000,"y":-68400000000000000,"z":-6530000000000000000}},"30000855":{"solarSystemId":30000855,"solarSystemName":"J:13AN","location":{"x":-4440000000000000000,"y":-479000000000000000,"z":-5400000000000000000}},"30000856":{"solarSystemId":30000856,"solarSystemName":"U:3V79","location":{"x":-4530000000000000000,"y":-26900000000000000,"z":-6140000000000000000}},"30000857":{"solarSystemId":30000857,"solarSystemName":"Z:3VA0","location":{"x":-3980000000000000000,"y":331000000000000000,"z":-5320000000000000000}},"30000858":{"solarSystemId":30000858,"solarSystemName":"Z:ES5K","location":{"x":-3610000000000000000,"y":-481000000000000000,"z":-5830000000000000000}},"30000859":{"solarSystemId":30000859,"solarSystemName":"H:4TER","location":{"x":-3660000000000000000,"y":-509000000000000000,"z":-5870000000000000000}},"30000860":{"solarSystemId":30000860,"solarSystemName":"Y:T19A","location":{"x":-4630000000000000000,"y":-710000000000000000,"z":-5580000000000000000}},"30000861":{"solarSystemId":30000861,"solarSystemName":"Z:2TOK","location":{"x":-4810000000000000000,"y":-1420000000000000000,"z":-5760000000000000000}},"30000862":{"solarSystemId":30000862,"solarSystemName":"U:36V5","location":{"x":-4400000000000000000,"y":-683000000000000000,"z":-5050000000000000000}},"30000863":{"solarSystemId":30000863,"solarSystemName":"G:34NN","location":{"x":-2120000000000000000,"y":2650000000000000000,"z":-3940000000000000000}},"30000864":{"solarSystemId":30000864,"solarSystemName":"D:3SLL","location":{"x":-2430000000000000000,"y":3470000000000000000,"z":-4750000000000000000}},"30000865":{"solarSystemId":30000865,"solarSystemName":"M:1RTK","location":{"x":-66300000000000000,"y":2710000000000000000,"z":-4370000000000000000}},"30000866":{"solarSystemId":30000866,"solarSystemName":"F:37RS","location":{"x":-1420000000000000000,"y":2520000000000000000,"z":-5330000000000000000}},"30000867":{"solarSystemId":30000867,"solarSystemName":"F:39NO","location":{"x":-92600000000000000,"y":1640000000000000000,"z":-4940000000000000000}},"30000868":{"solarSystemId":30000868,"solarSystemName":"F:2L85","location":{"x":-2270000000000000000,"y":2050000000000000000,"z":-4710000000000000000}},"30000869":{"solarSystemId":30000869,"solarSystemName":"U:O6SO","location":{"x":-1710000000000000000,"y":4140000000000000000,"z":-4860000000000000000}},"30000870":{"solarSystemId":30000870,"solarSystemName":"U:2T00","location":{"x":-812000000000000000,"y":1970000000000000000,"z":-4320000000000000000}},"30000871":{"solarSystemId":30000871,"solarSystemName":"D:252V","location":{"x":-2090000000000000000,"y":1670000000000000000,"z":-4820000000000000000}},"30000872":{"solarSystemId":30000872,"solarSystemName":"Q:35OO","location":{"x":-1860000000000000000,"y":2760000000000000000,"z":-4780000000000000000}},"30000873":{"solarSystemId":30000873,"solarSystemName":"H:10VL","location":{"x":-2770000000000000000,"y":2200000000000000000,"z":-5240000000000000000}},"30000874":{"solarSystemId":30000874,"solarSystemName":"B:29A8","location":{"x":-4000000000000000000,"y":415000000000000000,"z":-6460000000000000000}},"30000875":{"solarSystemId":30000875,"solarSystemName":"G:3V78","location":{"x":-3830000000000000000,"y":1100000000000000000,"z":-6090000000000000000}},"30000876":{"solarSystemId":30000876,"solarSystemName":"Q:LIEO","location":{"x":-3920000000000000000,"y":1420000000000000000,"z":-5240000000000000000}},"30000877":{"solarSystemId":30000877,"solarSystemName":"F:3O55","location":{"x":-2770000000000000000,"y":-26400000000000000,"z":-6540000000000000000}},"30000878":{"solarSystemId":30000878,"solarSystemName":"F:S5LS","location":{"x":-4150000000000000000,"y":1310000000000000000,"z":-5840000000000000000}},"30000879":{"solarSystemId":30000879,"solarSystemName":"M:1889","location":{"x":-2630000000000000000,"y":-269000000000000000,"z":-6460000000000000000}},"30000880":{"solarSystemId":30000880,"solarSystemName":"Y:34O0","location":{"x":-3480000000000000000,"y":366000000000000000,"z":-5490000000000000000}},"30000881":{"solarSystemId":30000881,"solarSystemName":"G:1K6I","location":{"x":-3070000000000000000,"y":658000000000000000,"z":-5870000000000000000}},"30000882":{"solarSystemId":30000882,"solarSystemName":"Y:RV3E","location":{"x":-2860000000000000000,"y":1720000000000000000,"z":-6190000000000000000}},"30000883":{"solarSystemId":30000883,"solarSystemName":"F:2AOA","location":{"x":-3870000000000000000,"y":893000000000000000,"z":-5860000000000000000}},"30000884":{"solarSystemId":30000884,"solarSystemName":"Z:2V08","location":{"x":-3630000000000000000,"y":-23700000000000000,"z":-6000000000000000000}},"30000885":{"solarSystemId":30000885,"solarSystemName":"B:KTI4","location":{"x":-3060000000000000000,"y":1060000000000000000,"z":-6140000000000000000}},"30000886":{"solarSystemId":30000886,"solarSystemName":"J:27SV","location":{"x":-3320000000000000000,"y":1360000000000000000,"z":-5830000000000000000}},"30000887":{"solarSystemId":30000887,"solarSystemName":"J:LA7E","location":{"x":-3260000000000000000,"y":1160000000000000000,"z":-6450000000000000000}},"30000888":{"solarSystemId":30000888,"solarSystemName":"Z:116N","location":{"x":-3220000000000000000,"y":1300000000000000000,"z":-6180000000000000000}},"30000889":{"solarSystemId":30000889,"solarSystemName":"F:5086","location":{"x":-3160000000000000000,"y":1580000000000000000,"z":-5990000000000000000}},"30000890":{"solarSystemId":30000890,"solarSystemName":"Y:2R1N","location":{"x":-3490000000000000000,"y":860000000000000000,"z":-5230000000000000000}},"30000891":{"solarSystemId":30000891,"solarSystemName":"F:2TN5","location":{"x":-3240000000000000000,"y":251000000000000000,"z":-5960000000000000000}},"30000892":{"solarSystemId":30000892,"solarSystemName":"Q:361R","location":{"x":-1920000000000000000,"y":-2240000000000000000,"z":1590000000000000000}},"30000893":{"solarSystemId":30000893,"solarSystemName":"U:3A72","location":{"x":-2060000000000000000,"y":-1830000000000000000,"z":1700000000000000000}},"30000894":{"solarSystemId":30000894,"solarSystemName":"D:3377","location":{"x":-1860000000000000000,"y":-1720000000000000000,"z":2230000000000000000}},"30000895":{"solarSystemId":30000895,"solarSystemName":"P:3T39","location":{"x":-2240000000000000000,"y":-1410000000000000000,"z":2340000000000000000}},"30000896":{"solarSystemId":30000896,"solarSystemName":"H:3A5S","location":{"x":-3020000000000000000,"y":-1740000000000000000,"z":2860000000000000000}},"30000897":{"solarSystemId":30000897,"solarSystemName":"B:3IR2","location":{"x":-2770000000000000000,"y":-1730000000000000000,"z":2010000000000000000}},"30000898":{"solarSystemId":30000898,"solarSystemName":"D:2L6N","location":{"x":-1990000000000000000,"y":-1440000000000000000,"z":2040000000000000000}},"30000899":{"solarSystemId":30000899,"solarSystemName":"Q:38V5","location":{"x":-2190000000000000000,"y":-1440000000000000000,"z":2990000000000000000}},"30000900":{"solarSystemId":30000900,"solarSystemName":"Q:3IKR","location":{"x":-2490000000000000000,"y":-1210000000000000000,"z":2260000000000000000}},"30000901":{"solarSystemId":30000901,"solarSystemName":"G:45AO","location":{"x":-2070000000000000000,"y":-1000000000000000000,"z":2040000000000000000}},"30000902":{"solarSystemId":30000902,"solarSystemName":"B:2TA2","location":{"x":-2270000000000000000,"y":-1090000000000000000,"z":1920000000000000000}},"30000903":{"solarSystemId":30000903,"solarSystemName":"Q:2S8K","location":{"x":-2520000000000000000,"y":-1620000000000000000,"z":2180000000000000000}},"30000904":{"solarSystemId":30000904,"solarSystemName":"Y:2S1L","location":{"x":-1830000000000000000,"y":-2310000000000000000,"z":1570000000000000000}},"30000905":{"solarSystemId":30000905,"solarSystemName":"Q:OVTN","location":{"x":-2470000000000000000,"y":-1940000000000000000,"z":2740000000000000000}},"30000906":{"solarSystemId":30000906,"solarSystemName":"Z:232T","location":{"x":-1370000000000000000,"y":-2270000000000000000,"z":1630000000000000000}},"30000907":{"solarSystemId":30000907,"solarSystemName":"P:3VO2","location":{"x":-2310000000000000000,"y":-1010000000000000000,"z":2160000000000000000}},"30000908":{"solarSystemId":30000908,"solarSystemName":"F:34TT","location":{"x":-2760000000000000000,"y":-2240000000000000000,"z":2660000000000000000}},"30000909":{"solarSystemId":30000909,"solarSystemName":"P:312N","location":{"x":-2760000000000000000,"y":-1690000000000000000,"z":2180000000000000000}},"30000910":{"solarSystemId":30000910,"solarSystemName":"Q:36L2","location":{"x":-2660000000000000000,"y":-1850000000000000000,"z":2780000000000000000}},"30000911":{"solarSystemId":30000911,"solarSystemName":"B:3I0T","location":{"x":-2480000000000000000,"y":-1390000000000000000,"z":1910000000000000000}},"30000912":{"solarSystemId":30000912,"solarSystemName":"J:3359","location":{"x":-2390000000000000000,"y":-1740000000000000000,"z":2040000000000000000}},"30000913":{"solarSystemId":30000913,"solarSystemName":"Z:3391","location":{"x":-1680000000000000000,"y":-1650000000000000000,"z":1920000000000000000}},"30000914":{"solarSystemId":30000914,"solarSystemName":"U:3NLT","location":{"x":-4010000000000000000,"y":-199000000000000000,"z":1210000000000000000}},"30000915":{"solarSystemId":30000915,"solarSystemName":"J:3569","location":{"x":-3400000000000000000,"y":-95900000000000000,"z":1370000000000000000}},"30000916":{"solarSystemId":30000916,"solarSystemName":"U:23N7","location":{"x":-4030000000000000000,"y":-283000000000000000,"z":1170000000000000000}},"30000917":{"solarSystemId":30000917,"solarSystemName":"F:1RS7","location":{"x":-3630000000000000000,"y":-211000000000000000,"z":1030000000000000000}},"30000918":{"solarSystemId":30000918,"solarSystemName":"D:3671","location":{"x":-4180000000000000000,"y":-257000000000000000,"z":1080000000000000000}},"30000919":{"solarSystemId":30000919,"solarSystemName":"D:33R6","location":{"x":-3890000000000000000,"y":-34200000000000000,"z":1430000000000000000}},"30000920":{"solarSystemId":30000920,"solarSystemName":"H:1INT","location":{"x":-3630000000000000000,"y":-173000000000000000,"z":1540000000000000000}},"30000921":{"solarSystemId":30000921,"solarSystemName":"G:1E62","location":{"x":-3670000000000000000,"y":-399000000000000000,"z":1160000000000000000}},"30000922":{"solarSystemId":30000922,"solarSystemName":"P:3ISS","location":{"x":-3720000000000000000,"y":-241000000000000000,"z":1130000000000000000}},"30000923":{"solarSystemId":30000923,"solarSystemName":"J:2NLR","location":{"x":-3790000000000000000,"y":-53000000000000000,"z":1330000000000000000}},"30000924":{"solarSystemId":30000924,"solarSystemName":"H:484E","location":{"x":-3690000000000000000,"y":-207000000000000000,"z":1450000000000000000}},"30000925":{"solarSystemId":30000925,"solarSystemName":"F:3ASS","location":{"x":-3590000000000000000,"y":-176000000000000000,"z":988000000000000000}},"30000926":{"solarSystemId":30000926,"solarSystemName":"P:2A8K","location":{"x":-3630000000000000000,"y":22700000000000000,"z":989000000000000000}},"30000927":{"solarSystemId":30000927,"solarSystemName":"H:35T0","location":{"x":-3600000000000000000,"y":-247000000000000000,"z":1070000000000000000}},"30000928":{"solarSystemId":30000928,"solarSystemName":"Z:3TK4","location":{"x":-3650000000000000000,"y":-232000000000000000,"z":1150000000000000000}},"30000929":{"solarSystemId":30000929,"solarSystemName":"Y:2IL8","location":{"x":-3440000000000000000,"y":-257000000000000000,"z":1240000000000000000}},"30000930":{"solarSystemId":30000930,"solarSystemName":"Y:2N35","location":{"x":-3800000000000000000,"y":-29900000000000000,"z":1710000000000000000}},"30000931":{"solarSystemId":30000931,"solarSystemName":"D:3SK4","location":{"x":-3690000000000000000,"y":253000000000000000,"z":1440000000000000000}},"30000932":{"solarSystemId":30000932,"solarSystemName":"Y:36LO","location":{"x":-3830000000000000000,"y":-275000000000000000,"z":1110000000000000000}},"30000933":{"solarSystemId":30000933,"solarSystemName":"Y:3457","location":{"x":-4140000000000000000,"y":-39100000000000000,"z":1660000000000000000}},"30000934":{"solarSystemId":30000934,"solarSystemName":"B:2R76","location":{"x":-4110000000000000000,"y":-360000000000000000,"z":2000000000000000000}},"30000935":{"solarSystemId":30000935,"solarSystemName":"F:2TAN","location":{"x":-3930000000000000000,"y":-89500000000000000,"z":1810000000000000000}},"30000936":{"solarSystemId":30000936,"solarSystemName":"Q:1E1N","location":{"x":-4060000000000000000,"y":-444000000000000000,"z":1640000000000000000}},"30000937":{"solarSystemId":30000937,"solarSystemName":"J:325A","location":{"x":-3960000000000000000,"y":-632000000000000000,"z":1380000000000000000}},"30000938":{"solarSystemId":30000938,"solarSystemName":"U:EKSS","location":{"x":-4300000000000000000,"y":-516000000000000000,"z":1850000000000000000}},"30000939":{"solarSystemId":30000939,"solarSystemName":"U:2RA4","location":{"x":-4030000000000000000,"y":-488000000000000000,"z":1680000000000000000}},"30000940":{"solarSystemId":30000940,"solarSystemName":"Q:1RVS","location":{"x":-4290000000000000000,"y":-275000000000000000,"z":1860000000000000000}},"30000941":{"solarSystemId":30000941,"solarSystemName":"Y:22OR","location":{"x":-3830000000000000000,"y":-634000000000000000,"z":1810000000000000000}},"30000942":{"solarSystemId":30000942,"solarSystemName":"Q:3NLN","location":{"x":-4140000000000000000,"y":-338000000000000000,"z":2090000000000000000}},"30000943":{"solarSystemId":30000943,"solarSystemName":"M:1A34","location":{"x":-3850000000000000000,"y":-145000000000000000,"z":2000000000000000000}},"30000944":{"solarSystemId":30000944,"solarSystemName":"B:2L2E","location":{"x":-3940000000000000000,"y":-388000000000000000,"z":1600000000000000000}},"30000945":{"solarSystemId":30000945,"solarSystemName":"Y:391L","location":{"x":-3980000000000000000,"y":-612000000000000000,"z":1380000000000000000}},"30000946":{"solarSystemId":30000946,"solarSystemName":"H:3T43","location":{"x":-3890000000000000000,"y":-655000000000000000,"z":1770000000000000000}},"30000947":{"solarSystemId":30000947,"solarSystemName":"D:34AV","location":{"x":-4120000000000000000,"y":-366000000000000000,"z":2060000000000000000}},"30000948":{"solarSystemId":30000948,"solarSystemName":"H:K28N","location":{"x":-4120000000000000000,"y":-360000000000000000,"z":1970000000000000000}},"30000949":{"solarSystemId":30000949,"solarSystemName":"M:1O6L","location":{"x":-3780000000000000000,"y":-626000000000000000,"z":1460000000000000000}},"30000950":{"solarSystemId":30000950,"solarSystemName":"B:1V85","location":{"x":-4340000000000000000,"y":-254000000000000000,"z":1890000000000000000}},"30000951":{"solarSystemId":30000951,"solarSystemName":"Q:29OE","location":{"x":-3880000000000000000,"y":6620000000000000,"z":1960000000000000000}},"30000952":{"solarSystemId":30000952,"solarSystemName":"B:1ELV","location":{"x":-4130000000000000000,"y":-212000000000000000,"z":1670000000000000000}},"30000953":{"solarSystemId":30000953,"solarSystemName":"F:36O2","location":{"x":-2920000000000000000,"y":-398000000000000000,"z":1590000000000000000}},"30000954":{"solarSystemId":30000954,"solarSystemName":"Q:2L02","location":{"x":-3690000000000000000,"y":-476000000000000000,"z":1330000000000000000}},"30000955":{"solarSystemId":30000955,"solarSystemName":"P:2713","location":{"x":-3270000000000000000,"y":25100000000000000,"z":1640000000000000000}},"30000956":{"solarSystemId":30000956,"solarSystemName":"B:3T74","location":{"x":-3780000000000000000,"y":-718000000000000000,"z":1270000000000000000}},"30000957":{"solarSystemId":30000957,"solarSystemName":"F:26NE","location":{"x":-3280000000000000000,"y":-550000000000000000,"z":1590000000000000000}},"30000958":{"solarSystemId":30000958,"solarSystemName":"B:37VA","location":{"x":-3000000000000000000,"y":-698000000000000000,"z":1570000000000000000}},"30000959":{"solarSystemId":30000959,"solarSystemName":"U:1E3K","location":{"x":-2930000000000000000,"y":-722000000000000000,"z":1290000000000000000}},"30000960":{"solarSystemId":30000960,"solarSystemName":"M:1O34","location":{"x":-3410000000000000000,"y":-349000000000000000,"z":1960000000000000000}},"30000961":{"solarSystemId":30000961,"solarSystemName":"Z:L765","location":{"x":-3670000000000000000,"y":-524000000000000000,"z":1650000000000000000}},"30000962":{"solarSystemId":30000962,"solarSystemName":"B:21VI","location":{"x":-3590000000000000000,"y":-155000000000000000,"z":1970000000000000000}},"30000963":{"solarSystemId":30000963,"solarSystemName":"B:3A98","location":{"x":-3430000000000000000,"y":-158000000000000000,"z":1760000000000000000}},"30000964":{"solarSystemId":30000964,"solarSystemName":"M:2V0V","location":{"x":-3410000000000000000,"y":-259000000000000000,"z":1540000000000000000}},"30000965":{"solarSystemId":30000965,"solarSystemName":"P:3ORN","location":{"x":-3520000000000000000,"y":-803000000000000000,"z":1230000000000000000}},"30000966":{"solarSystemId":30000966,"solarSystemName":"Y:NII8","location":{"x":-3720000000000000000,"y":-521000000000000000,"z":1420000000000000000}},"30000967":{"solarSystemId":30000967,"solarSystemName":"Z:3ITE","location":{"x":-3350000000000000000,"y":-469000000000000000,"z":2090000000000000000}},"30000968":{"solarSystemId":30000968,"solarSystemName":"F:1R03","location":{"x":-3670000000000000000,"y":-579000000000000000,"z":1410000000000000000}},"30000969":{"solarSystemId":30000969,"solarSystemName":"F:37TE","location":{"x":-3170000000000000000,"y":-415000000000000000,"z":1410000000000000000}},"30000970":{"solarSystemId":30000970,"solarSystemName":"B:3OOS","location":{"x":-3510000000000000000,"y":-200000000000000000,"z":1680000000000000000}},"30000971":{"solarSystemId":30000971,"solarSystemName":"G:3770","location":{"x":-3540000000000000000,"y":-553000000000000000,"z":1590000000000000000}},"30000972":{"solarSystemId":30000972,"solarSystemName":"F:3980","location":{"x":-3260000000000000000,"y":-458000000000000000,"z":1240000000000000000}},"30000973":{"solarSystemId":30000973,"solarSystemName":"G:E499","location":{"x":-3290000000000000000,"y":-531000000000000000,"z":1380000000000000000}},"30000974":{"solarSystemId":30000974,"solarSystemName":"F:1IR5","location":{"x":-3170000000000000000,"y":-706000000000000000,"z":1520000000000000000}},"30000975":{"solarSystemId":30000975,"solarSystemName":"F:3TTS","location":{"x":-3600000000000000000,"y":-670000000000000000,"z":1310000000000000000}},"30000976":{"solarSystemId":30000976,"solarSystemName":"H:2RVL","location":{"x":-2950000000000000000,"y":-987000000000000000,"z":498000000000000000}},"30000977":{"solarSystemId":30000977,"solarSystemName":"Z:3O82","location":{"x":-2960000000000000000,"y":-909000000000000000,"z":603000000000000000}},"30000978":{"solarSystemId":30000978,"solarSystemName":"G:2IVV","location":{"x":-3000000000000000000,"y":-949000000000000000,"z":304000000000000000}},"30000979":{"solarSystemId":30000979,"solarSystemName":"B:34V6","location":{"x":-2880000000000000000,"y":-1070000000000000000,"z":154000000000000000}},"30000980":{"solarSystemId":30000980,"solarSystemName":"H:2NA9","location":{"x":-2940000000000000000,"y":-815000000000000000,"z":516000000000000000}},"30000981":{"solarSystemId":30000981,"solarSystemName":"Q:2V48","location":{"x":-2760000000000000000,"y":-708000000000000000,"z":495000000000000000}},"30000982":{"solarSystemId":30000982,"solarSystemName":"F:3E70","location":{"x":-3000000000000000000,"y":-876000000000000000,"z":406000000000000000}},"30000983":{"solarSystemId":30000983,"solarSystemName":"Y:2ELS","location":{"x":-2900000000000000000,"y":-1030000000000000000,"z":188000000000000000}},"30000984":{"solarSystemId":30000984,"solarSystemName":"U:2OA0","location":{"x":-2990000000000000000,"y":-786000000000000000,"z":384000000000000000}},"30000985":{"solarSystemId":30000985,"solarSystemName":"Z:3487","location":{"x":-2960000000000000000,"y":-1020000000000000000,"z":664000000000000000}},"30000986":{"solarSystemId":30000986,"solarSystemName":"B:1N2A","location":{"x":-2810000000000000000,"y":-854000000000000000,"z":371000000000000000}},"30000987":{"solarSystemId":30000987,"solarSystemName":"F:3IT5","location":{"x":-2790000000000000000,"y":-963000000000000000,"z":421000000000000000}},"30000988":{"solarSystemId":30000988,"solarSystemName":"H:29KO","location":{"x":-2640000000000000000,"y":-1100000000000000000,"z":602000000000000000}},"30000989":{"solarSystemId":30000989,"solarSystemName":"H:2VO1","location":{"x":-2940000000000000000,"y":-1040000000000000000,"z":517000000000000000}},"30000990":{"solarSystemId":30000990,"solarSystemName":"Q:3EK2","location":{"x":-3040000000000000000,"y":-843000000000000000,"z":494000000000000000}},"30000991":{"solarSystemId":30000991,"solarSystemName":"F:29VN","location":{"x":-2980000000000000000,"y":-734000000000000000,"z":485000000000000000}},"30000992":{"solarSystemId":30000992,"solarSystemName":"U:35KN","location":{"x":-3080000000000000000,"y":-851000000000000000,"z":423000000000000000}},"30000993":{"solarSystemId":30000993,"solarSystemName":"D:32OV","location":{"x":-3050000000000000000,"y":-839000000000000000,"z":364000000000000000}},"30000994":{"solarSystemId":30000994,"solarSystemName":"D:3I49","location":{"x":-2970000000000000000,"y":-1200000000000000000,"z":205000000000000000}},"30000995":{"solarSystemId":30000995,"solarSystemName":"B:2T71","location":{"x":-2360000000000000000,"y":-1380000000000000000,"z":454000000000000000}},"30000996":{"solarSystemId":30000996,"solarSystemName":"Y:2AR4","location":{"x":-2730000000000000000,"y":-1060000000000000000,"z":909000000000000000}},"30000997":{"solarSystemId":30000997,"solarSystemName":"Z:3R95","location":{"x":-2680000000000000000,"y":-568000000000000000,"z":870000000000000000}},"30000998":{"solarSystemId":30000998,"solarSystemName":"Y:3140","location":{"x":-2660000000000000000,"y":-636000000000000000,"z":532000000000000000}},"30000999":{"solarSystemId":30000999,"solarSystemName":"F:3S93","location":{"x":-2460000000000000000,"y":-498000000000000000,"z":808000000000000000}},"30001000":{"solarSystemId":30001000,"solarSystemName":"G:34T2","location":{"x":-2450000000000000000,"y":-705000000000000000,"z":709000000000000000}},"30001001":{"solarSystemId":30001001,"solarSystemName":"G:1L02","location":{"x":-2560000000000000000,"y":-723000000000000000,"z":816000000000000000}},"30001002":{"solarSystemId":30001002,"solarSystemName":"H:1738","location":{"x":-2320000000000000000,"y":-669000000000000000,"z":940000000000000000}},"30001003":{"solarSystemId":30001003,"solarSystemName":"U:3303","location":{"x":-2220000000000000000,"y":-497000000000000000,"z":1030000000000000000}},"30001004":{"solarSystemId":30001004,"solarSystemName":"F:1NS5","location":{"x":-2480000000000000000,"y":-888000000000000000,"z":779000000000000000}},"30001005":{"solarSystemId":30001005,"solarSystemName":"D:11IS","location":{"x":-2170000000000000000,"y":-500000000000000000,"z":1020000000000000000}},"30001006":{"solarSystemId":30001006,"solarSystemName":"D:38I8","location":{"x":-2520000000000000000,"y":-623000000000000000,"z":1140000000000000000}},"30001007":{"solarSystemId":30001007,"solarSystemName":"M:2I06","location":{"x":-2520000000000000000,"y":-952000000000000000,"z":1200000000000000000}},"30001008":{"solarSystemId":30001008,"solarSystemName":"Q:35NL","location":{"x":-2470000000000000000,"y":-900000000000000000,"z":353000000000000000}},"30001009":{"solarSystemId":30001009,"solarSystemName":"J:2SL6","location":{"x":-2850000000000000000,"y":-661000000000000000,"z":690000000000000000}},"30001010":{"solarSystemId":30001010,"solarSystemName":"F:3S4V","location":{"x":-2550000000000000000,"y":-500000000000000000,"z":907000000000000000}},"30001011":{"solarSystemId":30001011,"solarSystemName":"M:2T9N","location":{"x":-2480000000000000000,"y":-1080000000000000000,"z":527000000000000000}},"30001012":{"solarSystemId":30001012,"solarSystemName":"D:3N68","location":{"x":-2640000000000000000,"y":-675000000000000000,"z":967000000000000000}},"30001013":{"solarSystemId":30001013,"solarSystemName":"G:3128","location":{"x":-2770000000000000000,"y":-671000000000000000,"z":910000000000000000}},"30001014":{"solarSystemId":30001014,"solarSystemName":"Z:3S09","location":{"x":-2510000000000000000,"y":-1030000000000000000,"z":734000000000000000}},"30001015":{"solarSystemId":30001015,"solarSystemName":"P:2O12","location":{"x":-2780000000000000000,"y":-812000000000000000,"z":924000000000000000}},"30001016":{"solarSystemId":30001016,"solarSystemName":"D:2AE7","location":{"x":-2600000000000000000,"y":-746000000000000000,"z":1210000000000000000}},"30001017":{"solarSystemId":30001017,"solarSystemName":"U:3OIO","location":{"x":-2620000000000000000,"y":-795000000000000000,"z":1360000000000000000}},"30001018":{"solarSystemId":30001018,"solarSystemName":"Z:2L51","location":{"x":-2470000000000000000,"y":-1200000000000000000,"z":1200000000000000000}},"30001019":{"solarSystemId":30001019,"solarSystemName":"H:240T","location":{"x":-2840000000000000000,"y":-852000000000000000,"z":1150000000000000000}},"30001020":{"solarSystemId":30001020,"solarSystemName":"P:IOEN","location":{"x":-2890000000000000000,"y":-598000000000000000,"z":992000000000000000}},"30001021":{"solarSystemId":30001021,"solarSystemName":"J:35TO","location":{"x":-2880000000000000000,"y":-797000000000000000,"z":1390000000000000000}},"30001022":{"solarSystemId":30001022,"solarSystemName":"H:130R","location":{"x":-2810000000000000000,"y":-617000000000000000,"z":1200000000000000000}},"30001023":{"solarSystemId":30001023,"solarSystemName":"B:3SIV","location":{"x":-2390000000000000000,"y":-723000000000000000,"z":1300000000000000000}},"30001024":{"solarSystemId":30001024,"solarSystemName":"Q:2T6A","location":{"x":-2680000000000000000,"y":-829000000000000000,"z":1320000000000000000}},"30001025":{"solarSystemId":30001025,"solarSystemName":"P:1S30","location":{"x":-2710000000000000000,"y":-811000000000000000,"z":1460000000000000000}},"30001026":{"solarSystemId":30001026,"solarSystemName":"Z:2A0T","location":{"x":-3010000000000000000,"y":-742000000000000000,"z":1080000000000000000}},"30001027":{"solarSystemId":30001027,"solarSystemName":"B:39EE","location":{"x":-2580000000000000000,"y":-903000000000000000,"z":1270000000000000000}},"30001028":{"solarSystemId":30001028,"solarSystemName":"H:2A4K","location":{"x":-2660000000000000000,"y":-1210000000000000000,"z":1170000000000000000}},"30001029":{"solarSystemId":30001029,"solarSystemName":"Z:35IO","location":{"x":-3010000000000000000,"y":-892000000000000000,"z":1210000000000000000}},"30001030":{"solarSystemId":30001030,"solarSystemName":"Q:378V","location":{"x":-2720000000000000000,"y":-842000000000000000,"z":1170000000000000000}},"30001031":{"solarSystemId":30001031,"solarSystemName":"D:3733","location":{"x":-2760000000000000000,"y":-929000000000000000,"z":1450000000000000000}},"30001032":{"solarSystemId":30001032,"solarSystemName":"Y:2I74","location":{"x":-2650000000000000000,"y":-698000000000000000,"z":1240000000000000000}},"30001033":{"solarSystemId":30001033,"solarSystemName":"G:2O6O","location":{"x":-2590000000000000000,"y":-1300000000000000000,"z":1260000000000000000}},"30001034":{"solarSystemId":30001034,"solarSystemName":"Y:30RT","location":{"x":-3060000000000000000,"y":-634000000000000000,"z":1130000000000000000}},"30001035":{"solarSystemId":30001035,"solarSystemName":"D:29NA","location":{"x":-3060000000000000000,"y":-784000000000000000,"z":987000000000000000}},"30001036":{"solarSystemId":30001036,"solarSystemName":"Y:3R2S","location":{"x":-4000000000000000000,"y":-142000000000000000,"z":715000000000000000}},"30001037":{"solarSystemId":30001037,"solarSystemName":"G:2I1A","location":{"x":-3890000000000000000,"y":111000000000000000,"z":697000000000000000}},"30001038":{"solarSystemId":30001038,"solarSystemName":"D:2ORA","location":{"x":-4070000000000000000,"y":6630000000000000,"z":681000000000000000}},"30001039":{"solarSystemId":30001039,"solarSystemName":"B:2R5T","location":{"x":-3740000000000000000,"y":-128000000000000000,"z":707000000000000000}},"30001040":{"solarSystemId":30001040,"solarSystemName":"H:2LOK","location":{"x":-3800000000000000000,"y":-129000000000000000,"z":390000000000000000}},"30001041":{"solarSystemId":30001041,"solarSystemName":"Q:3I0S","location":{"x":-3680000000000000000,"y":-69700000000000000,"z":741000000000000000}},"30001042":{"solarSystemId":30001042,"solarSystemName":"P:269V","location":{"x":-4200000000000000000,"y":-313000000000000000,"z":855000000000000000}},"30001043":{"solarSystemId":30001043,"solarSystemName":"H:1O89","location":{"x":-3960000000000000000,"y":-168000000000000000,"z":490000000000000000}},"30001044":{"solarSystemId":30001044,"solarSystemName":"P:1VT5","location":{"x":-3790000000000000000,"y":-324000000000000000,"z":750000000000000000}},"30001045":{"solarSystemId":30001045,"solarSystemName":"U:N771","location":{"x":-3950000000000000000,"y":-323000000000000000,"z":708000000000000000}},"30001046":{"solarSystemId":30001046,"solarSystemName":"B:10EL","location":{"x":-3910000000000000000,"y":-367000000000000000,"z":470000000000000000}},"30001047":{"solarSystemId":30001047,"solarSystemName":"J:301L","location":{"x":-4060000000000000000,"y":11200000000000000,"z":643000000000000000}},"30001048":{"solarSystemId":30001048,"solarSystemName":"Q:3415","location":{"x":-3970000000000000000,"y":-237000000000000000,"z":1030000000000000000}},"30001049":{"solarSystemId":30001049,"solarSystemName":"B:3R3A","location":{"x":-4040000000000000000,"y":-89300000000000000,"z":864000000000000000}},"30001050":{"solarSystemId":30001050,"solarSystemName":"Z:2O4S","location":{"x":-4170000000000000000,"y":-430000000000000000,"z":715000000000000000}},"30001051":{"solarSystemId":30001051,"solarSystemName":"U:32R2","location":{"x":-3880000000000000000,"y":-61300000000000000,"z":434000000000000000}},"30001052":{"solarSystemId":30001052,"solarSystemName":"P:2R0I","location":{"x":-4300000000000000000,"y":-31200000000000000,"z":768000000000000000}},"30001053":{"solarSystemId":30001053,"solarSystemName":"G:2TKK","location":{"x":-3720000000000000000,"y":-137000000000000000,"z":739000000000000000}},"30001054":{"solarSystemId":30001054,"solarSystemName":"F:3AS6","location":{"x":-3800000000000000000,"y":-22500000000000000,"z":622000000000000000}},"30001055":{"solarSystemId":30001055,"solarSystemName":"D:36E3","location":{"x":-2600000000000000000,"y":-129000000000000000,"z":1210000000000000000}},"30001056":{"solarSystemId":30001056,"solarSystemName":"M:2E2K","location":{"x":-2550000000000000000,"y":-170000000000000000,"z":1430000000000000000}},"30001057":{"solarSystemId":30001057,"solarSystemName":"M:34SI","location":{"x":-2720000000000000000,"y":-366000000000000000,"z":1150000000000000000}},"30001058":{"solarSystemId":30001058,"solarSystemName":"Q:29AR","location":{"x":-2250000000000000000,"y":404000000000000000,"z":1320000000000000000}},"30001059":{"solarSystemId":30001059,"solarSystemName":"G:2E1E","location":{"x":-2510000000000000000,"y":-96000000000000000,"z":1230000000000000000}},"30001060":{"solarSystemId":30001060,"solarSystemName":"M:3709","location":{"x":-2570000000000000000,"y":-264000000000000000,"z":1190000000000000000}},"30001061":{"solarSystemId":30001061,"solarSystemName":"F:338T","location":{"x":-2380000000000000000,"y":-239000000000000000,"z":1700000000000000000}},"30001062":{"solarSystemId":30001062,"solarSystemName":"D:32VN","location":{"x":-2700000000000000000,"y":-108000000000000000,"z":1740000000000000000}},"30001063":{"solarSystemId":30001063,"solarSystemName":"Q:381E","location":{"x":-2470000000000000000,"y":-397000000000000000,"z":1320000000000000000}},"30001064":{"solarSystemId":30001064,"solarSystemName":"F:3I86","location":{"x":-2600000000000000000,"y":-493000000000000000,"z":1340000000000000000}},"30001065":{"solarSystemId":30001065,"solarSystemName":"M:RTOT","location":{"x":-2420000000000000000,"y":75300000000000000,"z":1200000000000000000}},"30001066":{"solarSystemId":30001066,"solarSystemName":"H:359A","location":{"x":-2580000000000000000,"y":-258000000000000000,"z":1060000000000000000}},"30001067":{"solarSystemId":30001067,"solarSystemName":"Y:2IR3","location":{"x":-2310000000000000000,"y":-45400000000000000,"z":1520000000000000000}},"30001068":{"solarSystemId":30001068,"solarSystemName":"M:2A03","location":{"x":-2750000000000000000,"y":-193000000000000000,"z":1310000000000000000}},"30001069":{"solarSystemId":30001069,"solarSystemName":"D:3N7T","location":{"x":-2450000000000000000,"y":-269000000000000000,"z":1110000000000000000}},"30001070":{"solarSystemId":30001070,"solarSystemName":"F:3RA9","location":{"x":-2340000000000000000,"y":72400000000000000,"z":1430000000000000000}},"30001071":{"solarSystemId":30001071,"solarSystemName":"F:3719","location":{"x":-2630000000000000000,"y":129000000000000000,"z":1400000000000000000}},"30001072":{"solarSystemId":30001072,"solarSystemName":"U:3I08","location":{"x":-2470000000000000000,"y":-295000000000000000,"z":971000000000000000}},"30001073":{"solarSystemId":30001073,"solarSystemName":"F:2S3A","location":{"x":-2990000000000000000,"y":-74900000000000000,"z":1400000000000000000}},"30001074":{"solarSystemId":30001074,"solarSystemName":"Y:3OK2","location":{"x":-2860000000000000000,"y":-231000000000000000,"z":1600000000000000000}},"30001075":{"solarSystemId":30001075,"solarSystemName":"Q:3E29","location":{"x":-2820000000000000000,"y":-218000000000000000,"z":1370000000000000000}},"30001076":{"solarSystemId":30001076,"solarSystemName":"P:3910","location":{"x":-4580000000000000000,"y":6880000000000000000,"z":-5970000000000000000}},"30001077":{"solarSystemId":30001077,"solarSystemName":"B:29A2","location":{"x":-1540000000000000000,"y":6710000000000000000,"z":-4470000000000000000}},"30001078":{"solarSystemId":30001078,"solarSystemName":"D:3S8R","location":{"x":-4110000000000000000,"y":7120000000000000000,"z":-6000000000000000000}},"30001079":{"solarSystemId":30001079,"solarSystemName":"Y:2KVE","location":{"x":-711000000000000000,"y":4930000000000000000,"z":-5570000000000000000}},"30001080":{"solarSystemId":30001080,"solarSystemName":"Q:2LSS","location":{"x":-2880000000000000000,"y":6010000000000000000,"z":-4480000000000000000}},"30001081":{"solarSystemId":30001081,"solarSystemName":"D:1TN0","location":{"x":-6340000000000000000,"y":6510000000000000000,"z":-2910000000000000000}},"30001082":{"solarSystemId":30001082,"solarSystemName":"H:1S43","location":{"x":-5480000000000000000,"y":6600000000000000000,"z":-2910000000000000000}},"30001083":{"solarSystemId":30001083,"solarSystemName":"H:3SN7","location":{"x":-5540000000000000000,"y":6840000000000000000,"z":-3130000000000000000}},"30001084":{"solarSystemId":30001084,"solarSystemName":"Y:26IE","location":{"x":-4880000000000000000,"y":6950000000000000000,"z":-3980000000000000000}},"30001085":{"solarSystemId":30001085,"solarSystemName":"B:2I9E","location":{"x":-6100000000000000000,"y":7410000000000000000,"z":-3700000000000000000}},"30001086":{"solarSystemId":30001086,"solarSystemName":"H:32VI","location":{"x":-1850000000000000000,"y":5210000000000000000,"z":-2160000000000000000}},"30001087":{"solarSystemId":30001087,"solarSystemName":"F:3AIO","location":{"x":-2000000000000000000,"y":6270000000000000000,"z":-3150000000000000000}},"30001088":{"solarSystemId":30001088,"solarSystemName":"Y:3647","location":{"x":-1740000000000000000,"y":5950000000000000000,"z":-3460000000000000000}},"30001089":{"solarSystemId":30001089,"solarSystemName":"D:1617","location":{"x":-3060000000000000000,"y":5670000000000000000,"z":-2970000000000000000}},"30001090":{"solarSystemId":30001090,"solarSystemName":"G:3T8A","location":{"x":-2970000000000000000,"y":5400000000000000000,"z":-2630000000000000000}},"30001091":{"solarSystemId":30001091,"solarSystemName":"U:2SKS","location":{"x":-2270000000000000000,"y":3900000000000000000,"z":-4750000000000000000}},"30001092":{"solarSystemId":30001092,"solarSystemName":"B:3V0K","location":{"x":-2420000000000000000,"y":4060000000000000000,"z":-4580000000000000000}},"30001093":{"solarSystemId":30001093,"solarSystemName":"F:35L1","location":{"x":-1160000000000000000,"y":4570000000000000000,"z":-4310000000000000000}},"30001094":{"solarSystemId":30001094,"solarSystemName":"Z:3408","location":{"x":-850000000000000000,"y":4660000000000000000,"z":-4920000000000000000}},"30001095":{"solarSystemId":30001095,"solarSystemName":"B:3264","location":{"x":-1530000000000000000,"y":5200000000000000000,"z":-4820000000000000000}},"30001096":{"solarSystemId":30001096,"solarSystemName":"D:1TLV","location":{"x":-1100000000000000000,"y":4330000000000000000,"z":-3750000000000000000}},"30001097":{"solarSystemId":30001097,"solarSystemName":"P:32KV","location":{"x":-1110000000000000000,"y":3410000000000000000,"z":-3850000000000000000}},"30001098":{"solarSystemId":30001098,"solarSystemName":"F:3AT8","location":{"x":-3710000000000000000,"y":6420000000000000000,"z":-1890000000000000000}},"30001099":{"solarSystemId":30001099,"solarSystemName":"F:3R82","location":{"x":-3750000000000000000,"y":7020000000000000000,"z":-1300000000000000000}},"30001100":{"solarSystemId":30001100,"solarSystemName":"D:3O64","location":{"x":-4070000000000000000,"y":7750000000000000000,"z":-2020000000000000000}},"30001101":{"solarSystemId":30001101,"solarSystemName":"H:2E97","location":{"x":-3230000000000000000,"y":7460000000000000000,"z":-2090000000000000000}},"30001102":{"solarSystemId":30001102,"solarSystemName":"Q:2ANV","location":{"x":-4050000000000000000,"y":6740000000000000000,"z":-1990000000000000000}},"30001103":{"solarSystemId":30001103,"solarSystemName":"F:3NL2","location":{"x":-4270000000000000000,"y":4090000000000000000,"z":-3060000000000000000}},"30001104":{"solarSystemId":30001104,"solarSystemName":"P:2EAS","location":{"x":-3920000000000000000,"y":4810000000000000000,"z":-2690000000000000000}},"30001105":{"solarSystemId":30001105,"solarSystemName":"Y:2KKE","location":{"x":-3640000000000000000,"y":4150000000000000000,"z":-2190000000000000000}},"30001106":{"solarSystemId":30001106,"solarSystemName":"F:3A77","location":{"x":-4440000000000000000,"y":5220000000000000000,"z":-3480000000000000000}},"30001107":{"solarSystemId":30001107,"solarSystemName":"G:2EOR","location":{"x":-4660000000000000000,"y":4940000000000000000,"z":-2890000000000000000}},"30001108":{"solarSystemId":30001108,"solarSystemName":"Y:1TSE","location":{"x":-4240000000000000000,"y":5720000000000000000,"z":-3260000000000000000}},"30001109":{"solarSystemId":30001109,"solarSystemName":"G:3618","location":{"x":-3490000000000000000,"y":4640000000000000000,"z":-4290000000000000000}},"30001110":{"solarSystemId":30001110,"solarSystemName":"J:2A2S","location":{"x":-3430000000000000000,"y":3510000000000000000,"z":-3520000000000000000}},"30001111":{"solarSystemId":30001111,"solarSystemName":"D:3V72","location":{"x":-2800000000000000000,"y":3970000000000000000,"z":-5080000000000000000}},"30001112":{"solarSystemId":30001112,"solarSystemName":"M:L2V8","location":{"x":-2920000000000000000,"y":4040000000000000000,"z":-3480000000000000000}},"30001113":{"solarSystemId":30001113,"solarSystemName":"G:2E31","location":{"x":-2640000000000000000,"y":5000000000000000000,"z":-3810000000000000000}},"30001114":{"solarSystemId":30001114,"solarSystemName":"Z:171N","location":{"x":-3650000000000000000,"y":3500000000000000000,"z":-3900000000000000000}},"30001115":{"solarSystemId":30001115,"solarSystemName":"H:39V5","location":{"x":-3240000000000000000,"y":4760000000000000000,"z":-3930000000000000000}},"30001116":{"solarSystemId":30001116,"solarSystemName":"Q:I3VA","location":{"x":-3020000000000000000,"y":5120000000000000000,"z":-4110000000000000000}},"30001117":{"solarSystemId":30001117,"solarSystemName":"Z:2R71","location":{"x":-1950000000000000000,"y":9920000000000000000,"z":-2320000000000000000}},"30001118":{"solarSystemId":30001118,"solarSystemName":"Z:2S22","location":{"x":-3000000000000000000,"y":9120000000000000000,"z":-4780000000000000000}},"30001119":{"solarSystemId":30001119,"solarSystemName":"Y:2S54","location":{"x":-1870000000000000000,"y":8230000000000000000,"z":-2200000000000000000}},"30001120":{"solarSystemId":30001120,"solarSystemName":"Y:3VN3","location":{"x":-2060000000000000000,"y":8130000000000000000,"z":-2850000000000000000}},"30001121":{"solarSystemId":30001121,"solarSystemName":"Q:3RSN","location":{"x":-2420000000000000000,"y":9290000000000000000,"z":-3050000000000000000}},"30001122":{"solarSystemId":30001122,"solarSystemName":"F:37K7","location":{"x":-5260000000000000000,"y":4120000000000000000,"z":-5500000000000000000}},"30001123":{"solarSystemId":30001123,"solarSystemName":"M:2I9L","location":{"x":-2900000000000000000,"y":4040000000000000000,"z":-5590000000000000000}},"30001124":{"solarSystemId":30001124,"solarSystemName":"M:2L25","location":{"x":-3700000000000000000,"y":4360000000000000000,"z":-5750000000000000000}},"30001125":{"solarSystemId":30001125,"solarSystemName":"H:34K8","location":{"x":-4350000000000000000,"y":5590000000000000000,"z":-5060000000000000000}},"30001126":{"solarSystemId":30001126,"solarSystemName":"D:3753","location":{"x":-3840000000000000000,"y":3950000000000000000,"z":-5970000000000000000}},"30001127":{"solarSystemId":30001127,"solarSystemName":"G:24LT","location":{"x":-2970000000000000000,"y":3440000000000000000,"z":-5120000000000000000}},"30001128":{"solarSystemId":30001128,"solarSystemName":"Z:V45E","location":{"x":-3070000000000000000,"y":3130000000000000000,"z":-5090000000000000000}},"30001129":{"solarSystemId":30001129,"solarSystemName":"M:2K1T","location":{"x":-3520000000000000000,"y":9780000000000000000,"z":-6670000000000000000}},"30001130":{"solarSystemId":30001130,"solarSystemName":"Q:3902","location":{"x":-2950000000000000000,"y":9490000000000000000,"z":-6040000000000000000}},"30001131":{"solarSystemId":30001131,"solarSystemName":"F:304N","location":{"x":-2420000000000000000,"y":9620000000000000000,"z":-5870000000000000000}},"30001132":{"solarSystemId":30001132,"solarSystemName":"U:3RI3","location":{"x":-2990000000000000000,"y":8740000000000000000,"z":-6910000000000000000}},"30001133":{"solarSystemId":30001133,"solarSystemName":"D:3AR2","location":{"x":-1490000000000000000,"y":8310000000000000000,"z":-4600000000000000000}},"30001134":{"solarSystemId":30001134,"solarSystemName":"G:1R44","location":{"x":-9060000000000000000,"y":6120000000000000000,"z":-1030000000000000000}},"30001135":{"solarSystemId":30001135,"solarSystemName":"H:3TE7","location":{"x":-9420000000000000000,"y":5920000000000000000,"z":214000000000000000}},"30001136":{"solarSystemId":30001136,"solarSystemName":"U:50V6","location":{"x":-8640000000000000000,"y":7010000000000000000,"z":-362000000000000000}},"30001137":{"solarSystemId":30001137,"solarSystemName":"G:39E4","location":{"x":-10800000000000000000,"y":5450000000000000000,"z":382000000000000000}},"30001138":{"solarSystemId":30001138,"solarSystemName":"U:R214","location":{"x":-9060000000000000000,"y":6960000000000000000,"z":-448000000000000000}},"30001139":{"solarSystemId":30001139,"solarSystemName":"P:2NRV","location":{"x":-9410000000000000000,"y":6140000000000000000,"z":2790000000000000000}},"30001140":{"solarSystemId":30001140,"solarSystemName":"G:2I6K","location":{"x":-8640000000000000000,"y":6710000000000000000,"z":4960000000000000000}},"30001141":{"solarSystemId":30001141,"solarSystemName":"G:3EAL","location":{"x":-8430000000000000000,"y":6680000000000000000,"z":3470000000000000000}},"30001142":{"solarSystemId":30001142,"solarSystemName":"D:357O","location":{"x":-7300000000000000000,"y":5480000000000000000,"z":1180000000000000000}},"30001143":{"solarSystemId":30001143,"solarSystemName":"U:28A3","location":{"x":-10900000000000000000,"y":3300000000000000000,"z":1290000000000000000}},"30001144":{"solarSystemId":30001144,"solarSystemName":"J:2I8E","location":{"x":-5670000000000000000,"y":4040000000000000000,"z":1530000000000000000}},"30001145":{"solarSystemId":30001145,"solarSystemName":"J:3A55","location":{"x":-5320000000000000000,"y":5100000000000000000,"z":2520000000000000000}},"30001146":{"solarSystemId":30001146,"solarSystemName":"M:3AK8","location":{"x":-6090000000000000000,"y":3600000000000000000,"z":2650000000000000000}},"30001147":{"solarSystemId":30001147,"solarSystemName":"F:2984","location":{"x":-5510000000000000000,"y":3650000000000000000,"z":1950000000000000000}},"30001148":{"solarSystemId":30001148,"solarSystemName":"J:2N06","location":{"x":-5300000000000000000,"y":3080000000000000000,"z":3360000000000000000}},"30001149":{"solarSystemId":30001149,"solarSystemName":"U:3NN9","location":{"x":-5590000000000000000,"y":6300000000000000000,"z":2100000000000000000}},"30001150":{"solarSystemId":30001150,"solarSystemName":"Z:2RO9","location":{"x":-4790000000000000000,"y":5130000000000000000,"z":1710000000000000000}},"30001151":{"solarSystemId":30001151,"solarSystemName":"D:3IEA","location":{"x":-5610000000000000000,"y":3960000000000000000,"z":3260000000000000000}},"30001152":{"solarSystemId":30001152,"solarSystemName":"P:2ASR","location":{"x":-7400000000000000000,"y":6380000000000000000,"z":332000000000000000}},"30001153":{"solarSystemId":30001153,"solarSystemName":"J:NKK1","location":{"x":-8170000000000000000,"y":6520000000000000000,"z":151000000000000000}},"30001154":{"solarSystemId":30001154,"solarSystemName":"H:22I5","location":{"x":-7640000000000000000,"y":6770000000000000000,"z":158000000000000000}},"30001155":{"solarSystemId":30001155,"solarSystemName":"D:25SI","location":{"x":-7140000000000000000,"y":6270000000000000000,"z":785000000000000000}},"30001156":{"solarSystemId":30001156,"solarSystemName":"Z:EEV2","location":{"x":-6740000000000000000,"y":6490000000000000000,"z":789000000000000000}},"30001157":{"solarSystemId":30001157,"solarSystemName":"Q:2KNT","location":{"x":-5610000000000000000,"y":7830000000000000000,"z":2810000000000000000}},"30001158":{"solarSystemId":30001158,"solarSystemName":"U:3874","location":{"x":-8470000000000000000,"y":8900000000000000000,"z":2310000000000000000}},"30001159":{"solarSystemId":30001159,"solarSystemName":"D:3812","location":{"x":-5710000000000000000,"y":5530000000000000000,"z":1030000000000000000}},"30001160":{"solarSystemId":30001160,"solarSystemName":"B:3SLK","location":{"x":-7280000000000000000,"y":10300000000000000000,"z":3370000000000000000}},"30001161":{"solarSystemId":30001161,"solarSystemName":"Y:31KR","location":{"x":-8200000000000000000,"y":7430000000000000000,"z":2340000000000000000}},"30001162":{"solarSystemId":30001162,"solarSystemName":"M:3IO0","location":{"x":-7780000000000000000,"y":2220000000000000000,"z":1650000000000000000}},"30001163":{"solarSystemId":30001163,"solarSystemName":"Y:2958","location":{"x":-8380000000000000000,"y":3890000000000000000,"z":1630000000000000000}},"30001164":{"solarSystemId":30001164,"solarSystemName":"U:2N60","location":{"x":-6570000000000000000,"y":2940000000000000000,"z":1140000000000000000}},"30001165":{"solarSystemId":30001165,"solarSystemName":"Y:3N1R","location":{"x":-6630000000000000000,"y":4450000000000000000,"z":1710000000000000000}},"30001166":{"solarSystemId":30001166,"solarSystemName":"Y:3VES","location":{"x":-7980000000000000000,"y":2850000000000000000,"z":948000000000000000}},"30001167":{"solarSystemId":30001167,"solarSystemName":"D:2RRR","location":{"x":-6140000000000000000,"y":2620000000000000000,"z":1310000000000000000}},"30001168":{"solarSystemId":30001168,"solarSystemName":"P:3V4N","location":{"x":-8680000000000000000,"y":3230000000000000000,"z":1420000000000000000}},"30001169":{"solarSystemId":30001169,"solarSystemName":"Q:150E","location":{"x":-7790000000000000000,"y":3830000000000000000,"z":1610000000000000000}},"30001170":{"solarSystemId":30001170,"solarSystemName":"Q:3STK","location":{"x":-5530000000000000000,"y":-1750000000000000000,"z":3310000000000000000}},"30001171":{"solarSystemId":30001171,"solarSystemName":"M:2N6T","location":{"x":-5610000000000000000,"y":-1770000000000000000,"z":3740000000000000000}},"30001172":{"solarSystemId":30001172,"solarSystemName":"Y:27L9","location":{"x":-6490000000000000000,"y":-1920000000000000000,"z":2790000000000000000}},"30001173":{"solarSystemId":30001173,"solarSystemName":"H:3A67","location":{"x":-5180000000000000000,"y":-1160000000000000000,"z":4230000000000000000}},"30001174":{"solarSystemId":30001174,"solarSystemName":"Q:1SIK","location":{"x":-4790000000000000000,"y":-1600000000000000000,"z":2410000000000000000}},"30001175":{"solarSystemId":30001175,"solarSystemName":"G:1E36","location":{"x":-4890000000000000000,"y":-1510000000000000000,"z":2290000000000000000}},"30001176":{"solarSystemId":30001176,"solarSystemName":"G:23VO","location":{"x":-5140000000000000000,"y":-1900000000000000000,"z":2630000000000000000}},"30001177":{"solarSystemId":30001177,"solarSystemName":"Y:24I0","location":{"x":-4610000000000000000,"y":-1760000000000000000,"z":2750000000000000000}},"30001178":{"solarSystemId":30001178,"solarSystemName":"Y:2O9L","location":{"x":-6520000000000000000,"y":-1610000000000000000,"z":2760000000000000000}},"30001179":{"solarSystemId":30001179,"solarSystemName":"Q:1RL2","location":{"x":-4990000000000000000,"y":-1630000000000000000,"z":3360000000000000000}},"30001180":{"solarSystemId":30001180,"solarSystemName":"M:2R05","location":{"x":-4320000000000000000,"y":-1620000000000000000,"z":2730000000000000000}},"30001181":{"solarSystemId":30001181,"solarSystemName":"U:3N35","location":{"x":-5960000000000000000,"y":-1560000000000000000,"z":2350000000000000000}},"30001182":{"solarSystemId":30001182,"solarSystemName":"B:2OI3","location":{"x":-5160000000000000000,"y":-1330000000000000000,"z":2410000000000000000}},"30001183":{"solarSystemId":30001183,"solarSystemName":"H:2ILO","location":{"x":-6320000000000000000,"y":-1610000000000000000,"z":4140000000000000000}},"30001184":{"solarSystemId":30001184,"solarSystemName":"B:3A24","location":{"x":-4880000000000000000,"y":-1500000000000000000,"z":3980000000000000000}},"30001185":{"solarSystemId":30001185,"solarSystemName":"G:2LE0","location":{"x":-5080000000000000000,"y":-986000000000000000,"z":3390000000000000000}},"30001186":{"solarSystemId":30001186,"solarSystemName":"G:3924","location":{"x":-5420000000000000000,"y":-1290000000000000000,"z":4230000000000000000}},"30001187":{"solarSystemId":30001187,"solarSystemName":"H:1SES","location":{"x":-5130000000000000000,"y":-1440000000000000000,"z":4490000000000000000}},"30001188":{"solarSystemId":30001188,"solarSystemName":"D:3ER4","location":{"x":-4470000000000000000,"y":-210000000000000000,"z":1060000000000000000}},"30001189":{"solarSystemId":30001189,"solarSystemName":"G:3R7K","location":{"x":-4390000000000000000,"y":-436000000000000000,"z":1600000000000000000}},"30001190":{"solarSystemId":30001190,"solarSystemName":"M:1580","location":{"x":-4290000000000000000,"y":-907000000000000000,"z":1250000000000000000}},"30001191":{"solarSystemId":30001191,"solarSystemName":"Q:4SK6","location":{"x":-4400000000000000000,"y":-600000000000000000,"z":1590000000000000000}},"30001192":{"solarSystemId":30001192,"solarSystemName":"G:2A7V","location":{"x":-4420000000000000000,"y":-52400000000000000,"z":1620000000000000000}},"30001193":{"solarSystemId":30001193,"solarSystemName":"J:RR24","location":{"x":-4430000000000000000,"y":-192000000000000000,"z":1800000000000000000}},"30001194":{"solarSystemId":30001194,"solarSystemName":"J:2253","location":{"x":-4420000000000000000,"y":-349000000000000000,"z":1070000000000000000}},"30001195":{"solarSystemId":30001195,"solarSystemName":"Q:2V71","location":{"x":-4840000000000000000,"y":-273000000000000000,"z":1820000000000000000}},"30001196":{"solarSystemId":30001196,"solarSystemName":"G:48SA","location":{"x":-4480000000000000000,"y":-486000000000000000,"z":1740000000000000000}},"30001197":{"solarSystemId":30001197,"solarSystemName":"M:2A3S","location":{"x":-4240000000000000000,"y":-129000000000000000,"z":1660000000000000000}},"30001198":{"solarSystemId":30001198,"solarSystemName":"G:3EEK","location":{"x":-4550000000000000000,"y":-865000000000000000,"z":1190000000000000000}},"30001199":{"solarSystemId":30001199,"solarSystemName":"J:34A4","location":{"x":-4350000000000000000,"y":-245000000000000000,"z":1520000000000000000}},"30001200":{"solarSystemId":30001200,"solarSystemName":"D:2OLA","location":{"x":-4240000000000000000,"y":-178000000000000000,"z":1570000000000000000}},"30001201":{"solarSystemId":30001201,"solarSystemName":"H:2TR5","location":{"x":-4620000000000000000,"y":-325000000000000000,"z":1880000000000000000}},"30001202":{"solarSystemId":30001202,"solarSystemName":"Y:25IK","location":{"x":-4320000000000000000,"y":-524000000000000000,"z":1220000000000000000}},"30001203":{"solarSystemId":30001203,"solarSystemName":"P:2S8N","location":{"x":-4860000000000000000,"y":-439000000000000000,"z":1140000000000000000}},"30001204":{"solarSystemId":30001204,"solarSystemName":"D:3RK6","location":{"x":-4580000000000000000,"y":-334000000000000000,"z":1450000000000000000}},"30001205":{"solarSystemId":30001205,"solarSystemName":"Z:36I0","location":{"x":-4530000000000000000,"y":-361000000000000000,"z":1440000000000000000}},"30001206":{"solarSystemId":30001206,"solarSystemName":"Q:3IT2","location":{"x":-4470000000000000000,"y":-778000000000000000,"z":1220000000000000000}},"30001207":{"solarSystemId":30001207,"solarSystemName":"G:2RR9","location":{"x":-4370000000000000000,"y":-841000000000000000,"z":1510000000000000000}},"30001208":{"solarSystemId":30001208,"solarSystemName":"U:2S12","location":{"x":-4360000000000000000,"y":-70900000000000000,"z":1660000000000000000}},"30001209":{"solarSystemId":30001209,"solarSystemName":"B:292L","location":{"x":-4640000000000000000,"y":-362000000000000000,"z":1630000000000000000}},"30001210":{"solarSystemId":30001210,"solarSystemName":"Q:387I","location":{"x":-3520000000000000000,"y":-411000000000000000,"z":2610000000000000000}},"30001211":{"solarSystemId":30001211,"solarSystemName":"H:2V7E","location":{"x":-3310000000000000000,"y":-1410000000000000000,"z":2210000000000000000}},"30001212":{"solarSystemId":30001212,"solarSystemName":"H:3576","location":{"x":-3400000000000000000,"y":-613000000000000000,"z":3090000000000000000}},"30001213":{"solarSystemId":30001213,"solarSystemName":"M:1TT0","location":{"x":-3430000000000000000,"y":-637000000000000000,"z":2660000000000000000}},"30001214":{"solarSystemId":30001214,"solarSystemName":"F:3827","location":{"x":-3400000000000000000,"y":-379000000000000000,"z":2450000000000000000}},"30001215":{"solarSystemId":30001215,"solarSystemName":"P:2T58","location":{"x":-3220000000000000000,"y":-901000000000000000,"z":2280000000000000000}},"30001216":{"solarSystemId":30001216,"solarSystemName":"M:236K","location":{"x":-3200000000000000000,"y":-757000000000000000,"z":2900000000000000000}},"30001217":{"solarSystemId":30001217,"solarSystemName":"F:OLS3","location":{"x":-3310000000000000000,"y":-1060000000000000000,"z":2790000000000000000}},"30001218":{"solarSystemId":30001218,"solarSystemName":"Y:2690","location":{"x":-3970000000000000000,"y":-1190000000000000000,"z":2780000000000000000}},"30001219":{"solarSystemId":30001219,"solarSystemName":"Y:33N4","location":{"x":-3490000000000000000,"y":-860000000000000000,"z":2830000000000000000}},"30001220":{"solarSystemId":30001220,"solarSystemName":"M:251O","location":{"x":-3800000000000000000,"y":-1190000000000000000,"z":2590000000000000000}},"30001221":{"solarSystemId":30001221,"solarSystemName":"Y:3EK8","location":{"x":-2970000000000000000,"y":-1000000000000000000,"z":2660000000000000000}},"30001222":{"solarSystemId":30001222,"solarSystemName":"Z:2I19","location":{"x":-3550000000000000000,"y":-1320000000000000000,"z":2360000000000000000}},"30001223":{"solarSystemId":30001223,"solarSystemName":"D:2V06","location":{"x":-3720000000000000000,"y":-987000000000000000,"z":3150000000000000000}},"30001224":{"solarSystemId":30001224,"solarSystemName":"Y:3ERA","location":{"x":-3040000000000000000,"y":-777000000000000000,"z":2950000000000000000}},"30001225":{"solarSystemId":30001225,"solarSystemName":"Y:1OS1","location":{"x":-3830000000000000000,"y":-1110000000000000000,"z":3260000000000000000}},"30001226":{"solarSystemId":30001226,"solarSystemName":"J:1KKK","location":{"x":-2910000000000000000,"y":-925000000000000000,"z":2920000000000000000}},"30001227":{"solarSystemId":30001227,"solarSystemName":"Y:1ERE","location":{"x":-2740000000000000000,"y":-1190000000000000000,"z":2670000000000000000}},"30001228":{"solarSystemId":30001228,"solarSystemName":"D:25NL","location":{"x":-3180000000000000000,"y":-1180000000000000000,"z":3220000000000000000}},"30001229":{"solarSystemId":30001229,"solarSystemName":"D:26T4","location":{"x":-3740000000000000000,"y":-469000000000000000,"z":3060000000000000000}},"30001230":{"solarSystemId":30001230,"solarSystemName":"H:33IR","location":{"x":-3730000000000000000,"y":-1600000000000000000,"z":2360000000000000000}},"30001231":{"solarSystemId":30001231,"solarSystemName":"Y:3ANO","location":{"x":-2970000000000000000,"y":-792000000000000000,"z":2720000000000000000}},"30001232":{"solarSystemId":30001232,"solarSystemName":"B:3R8I","location":{"x":-3310000000000000000,"y":-1240000000000000000,"z":2440000000000000000}},"30001233":{"solarSystemId":30001233,"solarSystemName":"M:3N7I","location":{"x":-3560000000000000000,"y":-862000000000000000,"z":2700000000000000000}},"30001234":{"solarSystemId":30001234,"solarSystemName":"J:OO3L","location":{"x":-3230000000000000000,"y":-739000000000000000,"z":2330000000000000000}},"30001235":{"solarSystemId":30001235,"solarSystemName":"M:36O8","location":{"x":-3060000000000000000,"y":-769000000000000000,"z":2580000000000000000}},"30001236":{"solarSystemId":30001236,"solarSystemName":"U:1753","location":{"x":-3190000000000000000,"y":-842000000000000000,"z":2240000000000000000}},"30001237":{"solarSystemId":30001237,"solarSystemName":"H:3776","location":{"x":-5180000000000000000,"y":-469000000000000000,"z":943000000000000000}},"30001238":{"solarSystemId":30001238,"solarSystemName":"F:3O88","location":{"x":-5090000000000000000,"y":-632000000000000000,"z":1140000000000000000}},"30001239":{"solarSystemId":30001239,"solarSystemName":"G:32AS","location":{"x":-5490000000000000000,"y":-96800000000000000,"z":1340000000000000000}},"30001240":{"solarSystemId":30001240,"solarSystemName":"M:2RS7","location":{"x":-5390000000000000000,"y":-762000000000000000,"z":1250000000000000000}},"30001241":{"solarSystemId":30001241,"solarSystemName":"J:38A3","location":{"x":-5400000000000000000,"y":-346000000000000000,"z":1140000000000000000}},"30001242":{"solarSystemId":30001242,"solarSystemName":"Y:35LK","location":{"x":-4800000000000000000,"y":-752000000000000000,"z":961000000000000000}},"30001243":{"solarSystemId":30001243,"solarSystemName":"Z:2OK1","location":{"x":-5240000000000000000,"y":-474000000000000000,"z":785000000000000000}},"30001244":{"solarSystemId":30001244,"solarSystemName":"Q:25T8","location":{"x":-4820000000000000000,"y":-426000000000000000,"z":886000000000000000}},"30001245":{"solarSystemId":30001245,"solarSystemName":"F:R55O","location":{"x":-4790000000000000000,"y":-667000000000000000,"z":1190000000000000000}},"30001246":{"solarSystemId":30001246,"solarSystemName":"Y:25IA","location":{"x":-5120000000000000000,"y":-488000000000000000,"z":1020000000000000000}},"30001247":{"solarSystemId":30001247,"solarSystemName":"G:1RI7","location":{"x":-5420000000000000000,"y":-504000000000000000,"z":799000000000000000}},"30001248":{"solarSystemId":30001248,"solarSystemName":"Z:211T","location":{"x":-5310000000000000000,"y":-907000000000000000,"z":1270000000000000000}},"30001249":{"solarSystemId":30001249,"solarSystemName":"Y:3OSS","location":{"x":-5600000000000000000,"y":-722000000000000000,"z":1490000000000000000}},"30001250":{"solarSystemId":30001250,"solarSystemName":"D:1NLA","location":{"x":-5310000000000000000,"y":-947000000000000000,"z":720000000000000000}},"30001251":{"solarSystemId":30001251,"solarSystemName":"H:2SA7","location":{"x":-5120000000000000000,"y":-1010000000000000000,"z":1430000000000000000}},"30001252":{"solarSystemId":30001252,"solarSystemName":"B:18O4","location":{"x":-5820000000000000000,"y":-297000000000000000,"z":1080000000000000000}},"30001253":{"solarSystemId":30001253,"solarSystemName":"F:1S2N","location":{"x":-5970000000000000000,"y":-1260000000000000000,"z":905000000000000000}},"30001254":{"solarSystemId":30001254,"solarSystemName":"B:1A4L","location":{"x":-5460000000000000000,"y":-815000000000000000,"z":1760000000000000000}},"30001255":{"solarSystemId":30001255,"solarSystemName":"B:3119","location":{"x":-5340000000000000000,"y":-372000000000000000,"z":857000000000000000}},"30001256":{"solarSystemId":30001256,"solarSystemName":"Q:3RRS","location":{"x":-4690000000000000000,"y":-563000000000000000,"z":1050000000000000000}},"30001257":{"solarSystemId":30001257,"solarSystemName":"Q:36ON","location":{"x":-4960000000000000000,"y":-589000000000000000,"z":915000000000000000}},"30001258":{"solarSystemId":30001258,"solarSystemName":"J:3IS2","location":{"x":-5770000000000000000,"y":-427000000000000000,"z":941000000000000000}},"30001259":{"solarSystemId":30001259,"solarSystemName":"U:2E9E","location":{"x":-6030000000000000000,"y":-967000000000000000,"z":948000000000000000}},"30001260":{"solarSystemId":30001260,"solarSystemName":"G:2IOS","location":{"x":-5370000000000000000,"y":-182000000000000000,"z":1430000000000000000}},"30001261":{"solarSystemId":30001261,"solarSystemName":"G:34RI","location":{"x":-5880000000000000000,"y":-529000000000000000,"z":974000000000000000}},"30001262":{"solarSystemId":30001262,"solarSystemName":"H:3V4K","location":{"x":-4870000000000000000,"y":-12000000000000000,"z":1120000000000000000}},"30001263":{"solarSystemId":30001263,"solarSystemName":"P:3V3E","location":{"x":-4650000000000000000,"y":-158000000000000000,"z":1210000000000000000}},"30001264":{"solarSystemId":30001264,"solarSystemName":"J:2EAL","location":{"x":-4670000000000000000,"y":573000000000000000,"z":1220000000000000000}},"30001265":{"solarSystemId":30001265,"solarSystemName":"B:2L0I","location":{"x":-4630000000000000000,"y":53800000000000000,"z":1490000000000000000}},"30001266":{"solarSystemId":30001266,"solarSystemName":"Z:29TL","location":{"x":-4390000000000000000,"y":301000000000000000,"z":1480000000000000000}},"30001267":{"solarSystemId":30001267,"solarSystemName":"J:2V3O","location":{"x":-4780000000000000000,"y":-137000000000000000,"z":1450000000000000000}},"30001268":{"solarSystemId":30001268,"solarSystemName":"P:37AA","location":{"x":-4440000000000000000,"y":160000000000000000,"z":1680000000000000000}},"30001269":{"solarSystemId":30001269,"solarSystemName":"Q:29OL","location":{"x":-4680000000000000000,"y":-56800000000000000,"z":1130000000000000000}},"30001270":{"solarSystemId":30001270,"solarSystemName":"Q:15N3","location":{"x":-5210000000000000000,"y":468000000000000000,"z":1050000000000000000}},"30001271":{"solarSystemId":30001271,"solarSystemName":"U:4T82","location":{"x":-4410000000000000000,"y":24900000000000000,"z":1600000000000000000}},"30001272":{"solarSystemId":30001272,"solarSystemName":"U:2TTV","location":{"x":-5140000000000000000,"y":-96900000000000000,"z":1420000000000000000}},"30001273":{"solarSystemId":30001273,"solarSystemName":"H:2NSO","location":{"x":-4610000000000000000,"y":-74300000000000000,"z":1400000000000000000}},"30001274":{"solarSystemId":30001274,"solarSystemName":"D:3SER","location":{"x":-4850000000000000000,"y":71900000000000000,"z":992000000000000000}},"30001275":{"solarSystemId":30001275,"solarSystemName":"U:3AL5","location":{"x":-4330000000000000000,"y":271000000000000000,"z":1320000000000000000}},"30001276":{"solarSystemId":30001276,"solarSystemName":"P:39LK","location":{"x":-4570000000000000000,"y":-33600000000000000,"z":1570000000000000000}},"30001277":{"solarSystemId":30001277,"solarSystemName":"U:3599","location":{"x":-4880000000000000000,"y":168000000000000000,"z":1370000000000000000}},"30001278":{"solarSystemId":30001278,"solarSystemName":"U:29L5","location":{"x":-5230000000000000000,"y":369000000000000000,"z":936000000000000000}},"30001279":{"solarSystemId":30001279,"solarSystemName":"H:32N6","location":{"x":-4430000000000000000,"y":-120000000000000000,"z":1240000000000000000}},"30001280":{"solarSystemId":30001280,"solarSystemName":"P:2V7L","location":{"x":-5160000000000000000,"y":288000000000000000,"z":1750000000000000000}},"30001281":{"solarSystemId":30001281,"solarSystemName":"U:3RI2","location":{"x":-4300000000000000000,"y":-1430000000000000000,"z":1890000000000000000}},"30001282":{"solarSystemId":30001282,"solarSystemName":"H:37OO","location":{"x":-4160000000000000000,"y":-1380000000000000000,"z":1750000000000000000}},"30001283":{"solarSystemId":30001283,"solarSystemName":"F:283K","location":{"x":-3940000000000000000,"y":-510000000000000000,"z":1990000000000000000}},"30001284":{"solarSystemId":30001284,"solarSystemName":"P:2OR1","location":{"x":-4460000000000000000,"y":-864000000000000000,"z":2130000000000000000}},"30001285":{"solarSystemId":30001285,"solarSystemName":"Z:L368","location":{"x":-4420000000000000000,"y":-922000000000000000,"z":2230000000000000000}},"30001286":{"solarSystemId":30001286,"solarSystemName":"M:2IRV","location":{"x":-3800000000000000000,"y":-897000000000000000,"z":2200000000000000000}},"30001287":{"solarSystemId":30001287,"solarSystemName":"Q:3I8T","location":{"x":-4110000000000000000,"y":-822000000000000000,"z":2070000000000000000}},"30001288":{"solarSystemId":30001288,"solarSystemName":"B:1V27","location":{"x":-4020000000000000000,"y":-447000000000000000,"z":2080000000000000000}},"30001289":{"solarSystemId":30001289,"solarSystemName":"P:26E9","location":{"x":-3780000000000000000,"y":-522000000000000000,"z":2030000000000000000}},"30001290":{"solarSystemId":30001290,"solarSystemName":"Z:2ASV","location":{"x":-4000000000000000000,"y":-1110000000000000000,"z":1890000000000000000}},"30001291":{"solarSystemId":30001291,"solarSystemName":"M:1VV7","location":{"x":-4320000000000000000,"y":-908000000000000000,"z":1940000000000000000}},"30001292":{"solarSystemId":30001292,"solarSystemName":"P:3EI0","location":{"x":-4120000000000000000,"y":-923000000000000000,"z":1930000000000000000}},"30001293":{"solarSystemId":30001293,"solarSystemName":"M:3001","location":{"x":-4070000000000000000,"y":-1090000000000000000,"z":2350000000000000000}},"30001294":{"solarSystemId":30001294,"solarSystemName":"Q:2ERN","location":{"x":-4400000000000000000,"y":-611000000000000000,"z":2200000000000000000}},"30001295":{"solarSystemId":30001295,"solarSystemName":"P:3OS8","location":{"x":-3740000000000000000,"y":-838000000000000000,"z":2080000000000000000}},"30001296":{"solarSystemId":30001296,"solarSystemName":"Q:4S60","location":{"x":-4180000000000000000,"y":-983000000000000000,"z":2270000000000000000}},"30001297":{"solarSystemId":30001297,"solarSystemName":"U:1RA4","location":{"x":-4230000000000000000,"y":-928000000000000000,"z":1940000000000000000}},"30001298":{"solarSystemId":30001298,"solarSystemName":"D:3IN6","location":{"x":-4240000000000000000,"y":-843000000000000000,"z":1970000000000000000}},"30001299":{"solarSystemId":30001299,"solarSystemName":"Y:E667","location":{"x":-3990000000000000000,"y":-756000000000000000,"z":1890000000000000000}},"30001300":{"solarSystemId":30001300,"solarSystemName":"U:281V","location":{"x":-3930000000000000000,"y":-748000000000000000,"z":2410000000000000000}},"30001301":{"solarSystemId":30001301,"solarSystemName":"Z:I5LL","location":{"x":-4350000000000000000,"y":-657000000000000000,"z":1810000000000000000}},"30001302":{"solarSystemId":30001302,"solarSystemName":"J:3VR8","location":{"x":-4900000000000000000,"y":-706000000000000000,"z":2300000000000000000}},"30001303":{"solarSystemId":30001303,"solarSystemName":"M:2N1S","location":{"x":-4550000000000000000,"y":-1080000000000000000,"z":2030000000000000000}},"30001304":{"solarSystemId":30001304,"solarSystemName":"Y:26S4","location":{"x":-4710000000000000000,"y":-655000000000000000,"z":1980000000000000000}},"30001305":{"solarSystemId":30001305,"solarSystemName":"H:26S7","location":{"x":-4530000000000000000,"y":-491000000000000000,"z":1940000000000000000}},"30001306":{"solarSystemId":30001306,"solarSystemName":"D:3I33","location":{"x":-4920000000000000000,"y":-961000000000000000,"z":2100000000000000000}},"30001307":{"solarSystemId":30001307,"solarSystemName":"U:3AKK","location":{"x":-5160000000000000000,"y":-519000000000000000,"z":2260000000000000000}},"30001308":{"solarSystemId":30001308,"solarSystemName":"B:4ANN","location":{"x":-4800000000000000000,"y":-633000000000000000,"z":2030000000000000000}},"30001309":{"solarSystemId":30001309,"solarSystemName":"Q:3O35","location":{"x":-4750000000000000000,"y":-314000000000000000,"z":2140000000000000000}},"30001310":{"solarSystemId":30001310,"solarSystemName":"Y:3834","location":{"x":-4500000000000000000,"y":-636000000000000000,"z":2210000000000000000}},"30001311":{"solarSystemId":30001311,"solarSystemName":"Y:19TV","location":{"x":-4600000000000000000,"y":-626000000000000000,"z":2190000000000000000}},"30001312":{"solarSystemId":30001312,"solarSystemName":"H:33E6","location":{"x":-5530000000000000000,"y":-709000000000000000,"z":1930000000000000000}},"30001313":{"solarSystemId":30001313,"solarSystemName":"U:3TK2","location":{"x":-4800000000000000000,"y":-285000000000000000,"z":2780000000000000000}},"30001314":{"solarSystemId":30001314,"solarSystemName":"Z:3I2T","location":{"x":-4680000000000000000,"y":-662000000000000000,"z":1900000000000000000}},"30001315":{"solarSystemId":30001315,"solarSystemName":"B:29T5","location":{"x":-4910000000000000000,"y":-512000000000000000,"z":2210000000000000000}},"30001316":{"solarSystemId":30001316,"solarSystemName":"Z:4TS7","location":{"x":-4880000000000000000,"y":-190000000000000000,"z":1910000000000000000}},"30001317":{"solarSystemId":30001317,"solarSystemName":"Q:OEK7","location":{"x":-4740000000000000000,"y":-262000000000000000,"z":2130000000000000000}},"30001318":{"solarSystemId":30001318,"solarSystemName":"H:1EEN","location":{"x":-5000000000000000000,"y":-93400000000000000,"z":2770000000000000000}},"30001319":{"solarSystemId":30001319,"solarSystemName":"Q:T736","location":{"x":-5070000000000000000,"y":-198000000000000000,"z":2500000000000000000}},"30001320":{"solarSystemId":30001320,"solarSystemName":"B:2VAR","location":{"x":-4730000000000000000,"y":-121000000000000000,"z":2700000000000000000}},"30001321":{"solarSystemId":30001321,"solarSystemName":"F:31T4","location":{"x":-4140000000000000000,"y":117000000000000000,"z":3210000000000000000}},"30001322":{"solarSystemId":30001322,"solarSystemName":"F:1N29","location":{"x":-4730000000000000000,"y":245000000000000000,"z":3080000000000000000}},"30001323":{"solarSystemId":30001323,"solarSystemName":"G:10TA","location":{"x":-3580000000000000000,"y":243000000000000000,"z":3160000000000000000}},"30001324":{"solarSystemId":30001324,"solarSystemName":"H:2S4K","location":{"x":-3530000000000000000,"y":15600000000000000,"z":2880000000000000000}},"30001325":{"solarSystemId":30001325,"solarSystemName":"G:1VSL","location":{"x":-4260000000000000000,"y":-174000000000000000,"z":2450000000000000000}},"30001326":{"solarSystemId":30001326,"solarSystemName":"U:2SR5","location":{"x":-4170000000000000000,"y":-192000000000000000,"z":3160000000000000000}},"30001327":{"solarSystemId":30001327,"solarSystemName":"D:2VEA","location":{"x":-3790000000000000000,"y":-127000000000000000,"z":3090000000000000000}},"30001328":{"solarSystemId":30001328,"solarSystemName":"J:20VA","location":{"x":-4670000000000000000,"y":80700000000000000,"z":3390000000000000000}},"30001329":{"solarSystemId":30001329,"solarSystemName":"H:40O4","location":{"x":-4780000000000000000,"y":671000000000000000,"z":3180000000000000000}},"30001330":{"solarSystemId":30001330,"solarSystemName":"Y:35S8","location":{"x":-3400000000000000000,"y":-272000000000000000,"z":2910000000000000000}},"30001331":{"solarSystemId":30001331,"solarSystemName":"Z:1R79","location":{"x":-3350000000000000000,"y":278000000000000000,"z":3150000000000000000}},"30001332":{"solarSystemId":30001332,"solarSystemName":"H:3AIN","location":{"x":-3740000000000000000,"y":-126000000000000000,"z":3070000000000000000}},"30001333":{"solarSystemId":30001333,"solarSystemName":"Z:T994","location":{"x":-3810000000000000000,"y":-459000000000000000,"z":3320000000000000000}},"30001334":{"solarSystemId":30001334,"solarSystemName":"Y:32T3","location":{"x":-3960000000000000000,"y":-177000000000000000,"z":2710000000000000000}},"30001335":{"solarSystemId":30001335,"solarSystemName":"B:1AT7","location":{"x":-3520000000000000000,"y":-156000000000000000,"z":3000000000000000000}},"30001336":{"solarSystemId":30001336,"solarSystemName":"U:1K29","location":{"x":-4690000000000000000,"y":-153000000000000000,"z":2940000000000000000}},"30001337":{"solarSystemId":30001337,"solarSystemName":"J:1R41","location":{"x":-4040000000000000000,"y":-573000000000000000,"z":3310000000000000000}},"30001338":{"solarSystemId":30001338,"solarSystemName":"Z:2IN2","location":{"x":-4830000000000000000,"y":-761000000000000000,"z":2500000000000000000}},"30001339":{"solarSystemId":30001339,"solarSystemName":"J:38LI","location":{"x":-5210000000000000000,"y":-1000000000000000000,"z":2850000000000000000}},"30001340":{"solarSystemId":30001340,"solarSystemName":"H:NIVV","location":{"x":-4320000000000000000,"y":-936000000000000000,"z":3050000000000000000}},"30001341":{"solarSystemId":30001341,"solarSystemName":"M:3R2K","location":{"x":-4730000000000000000,"y":-1120000000000000000,"z":2500000000000000000}},"30001342":{"solarSystemId":30001342,"solarSystemName":"F:1KNE","location":{"x":-4090000000000000000,"y":-1170000000000000000,"z":2680000000000000000}},"30001343":{"solarSystemId":30001343,"solarSystemName":"G:16OI","location":{"x":-4550000000000000000,"y":-415000000000000000,"z":2650000000000000000}},"30001344":{"solarSystemId":30001344,"solarSystemName":"M:197S","location":{"x":-4650000000000000000,"y":-751000000000000000,"z":2370000000000000000}},"30001345":{"solarSystemId":30001345,"solarSystemName":"Y:1E5O","location":{"x":-4210000000000000000,"y":-979000000000000000,"z":3000000000000000000}},"30001346":{"solarSystemId":30001346,"solarSystemName":"J:129V","location":{"x":-4650000000000000000,"y":-499000000000000000,"z":3160000000000000000}},"30001347":{"solarSystemId":30001347,"solarSystemName":"J:I0OO","location":{"x":-4010000000000000000,"y":-962000000000000000,"z":3130000000000000000}},"30001348":{"solarSystemId":30001348,"solarSystemName":"B:2656","location":{"x":-4150000000000000000,"y":-770000000000000000,"z":2480000000000000000}},"30001349":{"solarSystemId":30001349,"solarSystemName":"P:3NNS","location":{"x":-4590000000000000000,"y":-805000000000000000,"z":2540000000000000000}},"30001350":{"solarSystemId":30001350,"solarSystemName":"G:3T8L","location":{"x":-4630000000000000000,"y":-554000000000000000,"z":3130000000000000000}},"30001351":{"solarSystemId":30001351,"solarSystemName":"P:2EL6","location":{"x":-4600000000000000000,"y":-914000000000000000,"z":2940000000000000000}},"30001352":{"solarSystemId":30001352,"solarSystemName":"Z:RAVL","location":{"x":-5120000000000000000,"y":-1060000000000000000,"z":3090000000000000000}},"30001353":{"solarSystemId":30001353,"solarSystemName":"G:369T","location":{"x":-4380000000000000000,"y":-843000000000000000,"z":2980000000000000000}},"30001354":{"solarSystemId":30001354,"solarSystemName":"J:2792","location":{"x":-4370000000000000000,"y":-670000000000000000,"z":2530000000000000000}},"30001355":{"solarSystemId":30001355,"solarSystemName":"J:2OSL","location":{"x":-4060000000000000000,"y":-862000000000000000,"z":3230000000000000000}},"30001356":{"solarSystemId":30001356,"solarSystemName":"Z:29AE","location":{"x":-4230000000000000000,"y":-625000000000000000,"z":2410000000000000000}},"30001357":{"solarSystemId":30001357,"solarSystemName":"P:3T9E","location":{"x":-6970000000000000000,"y":5330000000000000000,"z":-4590000000000000000}},"30001358":{"solarSystemId":30001358,"solarSystemName":"M:33TE","location":{"x":-6600000000000000000,"y":5750000000000000000,"z":-3290000000000000000}},"30001359":{"solarSystemId":30001359,"solarSystemName":"H:2K4K","location":{"x":-6080000000000000000,"y":6540000000000000000,"z":-4170000000000000000}},"30001360":{"solarSystemId":30001360,"solarSystemName":"D:3N5E","location":{"x":-6060000000000000000,"y":5700000000000000000,"z":-3230000000000000000}},"30001361":{"solarSystemId":30001361,"solarSystemName":"J:298S","location":{"x":-6150000000000000000,"y":5160000000000000000,"z":-3590000000000000000}},"30001362":{"solarSystemId":30001362,"solarSystemName":"J:2KAA","location":{"x":-7140000000000000000,"y":5890000000000000000,"z":-2500000000000000000}},"30001363":{"solarSystemId":30001363,"solarSystemName":"H:2S2A","location":{"x":-7680000000000000000,"y":6030000000000000000,"z":-2360000000000000000}},"30001364":{"solarSystemId":30001364,"solarSystemName":"J:1LEO","location":{"x":-7140000000000000000,"y":5970000000000000000,"z":-2740000000000000000}},"30001365":{"solarSystemId":30001365,"solarSystemName":"M:N4NE","location":{"x":-7780000000000000000,"y":6270000000000000000,"z":-2890000000000000000}},"30001366":{"solarSystemId":30001366,"solarSystemName":"Q:36NV","location":{"x":-7730000000000000000,"y":6460000000000000000,"z":-2400000000000000000}},"30001367":{"solarSystemId":30001367,"solarSystemName":"B:2E8L","location":{"x":-6280000000000000000,"y":3390000000000000000,"z":-2270000000000000000}},"30001368":{"solarSystemId":30001368,"solarSystemName":"G:2IRT","location":{"x":-8130000000000000000,"y":3380000000000000000,"z":-2330000000000000000}},"30001369":{"solarSystemId":30001369,"solarSystemName":"H:3E74","location":{"x":-5680000000000000000,"y":3990000000000000000,"z":-1520000000000000000}},"30001370":{"solarSystemId":30001370,"solarSystemName":"B:1370","location":{"x":-5300000000000000000,"y":3540000000000000000,"z":-2290000000000000000}},"30001371":{"solarSystemId":30001371,"solarSystemName":"F:2RTT","location":{"x":-7010000000000000000,"y":4990000000000000000,"z":-2160000000000000000}},"30001372":{"solarSystemId":30001372,"solarSystemName":"H:336A","location":{"x":-7150000000000000000,"y":4690000000000000000,"z":-1190000000000000000}},"30001373":{"solarSystemId":30001373,"solarSystemName":"Z:2SS8","location":{"x":-6940000000000000000,"y":3780000000000000000,"z":-1930000000000000000}},"30001374":{"solarSystemId":30001374,"solarSystemName":"Z:4811","location":{"x":-6860000000000000000,"y":3540000000000000000,"z":-758000000000000000}},"30001375":{"solarSystemId":30001375,"solarSystemName":"J:3I5T","location":{"x":-7780000000000000000,"y":6880000000000000000,"z":-868000000000000000}},"30001376":{"solarSystemId":30001376,"solarSystemName":"D:O4R3","location":{"x":-8840000000000000000,"y":7820000000000000000,"z":-1770000000000000000}},"30001377":{"solarSystemId":30001377,"solarSystemName":"P:3RT0","location":{"x":-10400000000000000000,"y":6950000000000000000,"z":-1130000000000000000}},"30001378":{"solarSystemId":30001378,"solarSystemName":"B:1ENT","location":{"x":-9710000000000000000,"y":7200000000000000000,"z":-2180000000000000000}},"30001379":{"solarSystemId":30001379,"solarSystemName":"P:23I1","location":{"x":-8850000000000000000,"y":8600000000000000000,"z":-1160000000000000000}},"30001380":{"solarSystemId":30001380,"solarSystemName":"J:34EO","location":{"x":-8880000000000000000,"y":3870000000000000000,"z":-2560000000000000000}},"30001381":{"solarSystemId":30001381,"solarSystemName":"M:38OV","location":{"x":-8740000000000000000,"y":5750000000000000000,"z":-3650000000000000000}},"30001382":{"solarSystemId":30001382,"solarSystemName":"B:3I17","location":{"x":-9040000000000000000,"y":3910000000000000000,"z":-2010000000000000000}},"30001383":{"solarSystemId":30001383,"solarSystemName":"U:35AE","location":{"x":-8950000000000000000,"y":5490000000000000000,"z":-4510000000000000000}},"30001384":{"solarSystemId":30001384,"solarSystemName":"Q:3187","location":{"x":-8650000000000000000,"y":4710000000000000000,"z":-3160000000000000000}},"30001385":{"solarSystemId":30001385,"solarSystemName":"J:4KK0","location":{"x":-9080000000000000000,"y":5380000000000000000,"z":-4600000000000000000}},"30001386":{"solarSystemId":30001386,"solarSystemName":"D:23K5","location":{"x":-8200000000000000000,"y":4790000000000000000,"z":-3550000000000000000}},"30001387":{"solarSystemId":30001387,"solarSystemName":"J:1V44","location":{"x":-11100000000000000000,"y":8140000000000000000,"z":-764000000000000000}},"30001388":{"solarSystemId":30001388,"solarSystemName":"J:1KNR","location":{"x":-10700000000000000000,"y":8420000000000000000,"z":-1830000000000000000}},"30001389":{"solarSystemId":30001389,"solarSystemName":"Y:3I5V","location":{"x":-10600000000000000000,"y":8560000000000000000,"z":-934000000000000000}},"30001390":{"solarSystemId":30001390,"solarSystemName":"H:3S5V","location":{"x":-10300000000000000000,"y":8140000000000000000,"z":242000000000000000}},"30001391":{"solarSystemId":30001391,"solarSystemName":"D:376V","location":{"x":-10900000000000000000,"y":7640000000000000000,"z":-1500000000000000000}},"30001392":{"solarSystemId":30001392,"solarSystemName":"G:3RLL","location":{"x":-9340000000000000000,"y":6510000000000000000,"z":-3970000000000000000}},"30001393":{"solarSystemId":30001393,"solarSystemName":"F:3NS6","location":{"x":-11600000000000000000,"y":6520000000000000000,"z":-3500000000000000000}},"30001394":{"solarSystemId":30001394,"solarSystemName":"Y:13S0","location":{"x":-10100000000000000000,"y":6820000000000000000,"z":-3730000000000000000}},"30001395":{"solarSystemId":30001395,"solarSystemName":"U:2489","location":{"x":-9720000000000000000,"y":6830000000000000000,"z":-3420000000000000000}},"30001396":{"solarSystemId":30001396,"solarSystemName":"D:1O6O","location":{"x":-10500000000000000000,"y":6090000000000000000,"z":-2380000000000000000}},"30001397":{"solarSystemId":30001397,"solarSystemName":"J:2ATL","location":{"x":-10100000000000000000,"y":-3730000000000000000,"z":-2680000000000000000}},"30001398":{"solarSystemId":30001398,"solarSystemName":"F:2IO2","location":{"x":-8350000000000000000,"y":-4570000000000000000,"z":-2850000000000000000}},"30001399":{"solarSystemId":30001399,"solarSystemName":"M:303R","location":{"x":-9720000000000000000,"y":-4230000000000000000,"z":-4680000000000000000}},"30001400":{"solarSystemId":30001400,"solarSystemName":"F:32IS","location":{"x":-9310000000000000000,"y":-3980000000000000000,"z":-3770000000000000000}},"30001401":{"solarSystemId":30001401,"solarSystemName":"G:3T5V","location":{"x":-9910000000000000000,"y":-4160000000000000000,"z":-3280000000000000000}},"30001402":{"solarSystemId":30001402,"solarSystemName":"H:3O22","location":{"x":-8160000000000000000,"y":-4210000000000000000,"z":-2500000000000000000}},"30001403":{"solarSystemId":30001403,"solarSystemName":"Y:177O","location":{"x":-9290000000000000000,"y":-4480000000000000000,"z":-4470000000000000000}},"30001404":{"solarSystemId":30001404,"solarSystemName":"F:1I3N","location":{"x":-11300000000000000000,"y":-4780000000000000000,"z":-2480000000000000000}},"30001405":{"solarSystemId":30001405,"solarSystemName":"B:3V76","location":{"x":-6950000000000000000,"y":-2680000000000000000,"z":-862000000000000000}},"30001406":{"solarSystemId":30001406,"solarSystemName":"F:3VE5","location":{"x":-7230000000000000000,"y":-3060000000000000000,"z":-1540000000000000000}},"30001407":{"solarSystemId":30001407,"solarSystemName":"J:32IV","location":{"x":-6140000000000000000,"y":-2380000000000000000,"z":-2380000000000000000}},"30001408":{"solarSystemId":30001408,"solarSystemName":"M:37R3","location":{"x":-8120000000000000000,"y":-3920000000000000000,"z":-2250000000000000000}},"30001409":{"solarSystemId":30001409,"solarSystemName":"M:2E3N","location":{"x":-7980000000000000000,"y":-1200000000000000000,"z":-2200000000000000000}},"30001410":{"solarSystemId":30001410,"solarSystemName":"D:397V","location":{"x":-7290000000000000000,"y":-2070000000000000000,"z":-1830000000000000000}},"30001411":{"solarSystemId":30001411,"solarSystemName":"Q:39I0","location":{"x":-7980000000000000000,"y":-953000000000000000,"z":-2520000000000000000}},"30001412":{"solarSystemId":30001412,"solarSystemName":"D:24A5","location":{"x":-7170000000000000000,"y":-1590000000000000000,"z":-2750000000000000000}},"30001413":{"solarSystemId":30001413,"solarSystemName":"G:366L","location":{"x":-6080000000000000000,"y":-2460000000000000000,"z":-1160000000000000000}},"30001414":{"solarSystemId":30001414,"solarSystemName":"G:3T06","location":{"x":-8050000000000000000,"y":-1510000000000000000,"z":-2130000000000000000}},"30001415":{"solarSystemId":30001415,"solarSystemName":"J:319V","location":{"x":-6430000000000000000,"y":-3700000000000000000,"z":-1530000000000000000}},"30001416":{"solarSystemId":30001416,"solarSystemName":"Y:2T2A","location":{"x":-7110000000000000000,"y":-2860000000000000000,"z":-2060000000000000000}},"30001417":{"solarSystemId":30001417,"solarSystemName":"Q:33A4","location":{"x":-7750000000000000000,"y":-1430000000000000000,"z":-2260000000000000000}},"30001418":{"solarSystemId":30001418,"solarSystemName":"P:365E","location":{"x":-7210000000000000000,"y":-1810000000000000000,"z":-2460000000000000000}},"30001419":{"solarSystemId":30001419,"solarSystemName":"D:37AR","location":{"x":-7440000000000000000,"y":-3470000000000000000,"z":-2910000000000000000}},"30001420":{"solarSystemId":30001420,"solarSystemName":"Y:3E17","location":{"x":-7370000000000000000,"y":-1940000000000000000,"z":-2210000000000000000}},"30001421":{"solarSystemId":30001421,"solarSystemName":"U:30AI","location":{"x":-9280000000000000000,"y":-7170000000000000000,"z":-4700000000000000000}},"30001422":{"solarSystemId":30001422,"solarSystemName":"Z:3949","location":{"x":-8780000000000000000,"y":-6600000000000000000,"z":-5010000000000000000}},"30001423":{"solarSystemId":30001423,"solarSystemName":"G:3A54","location":{"x":-8160000000000000000,"y":-4510000000000000000,"z":-4070000000000000000}},"30001424":{"solarSystemId":30001424,"solarSystemName":"P:L338","location":{"x":-7350000000000000000,"y":-5960000000000000000,"z":-4240000000000000000}},"30001425":{"solarSystemId":30001425,"solarSystemName":"J:1E96","location":{"x":-8570000000000000000,"y":-4330000000000000000,"z":-5780000000000000000}},"30001426":{"solarSystemId":30001426,"solarSystemName":"H:3AV6","location":{"x":-5140000000000000000,"y":-3120000000000000000,"z":-4220000000000000000}},"30001427":{"solarSystemId":30001427,"solarSystemName":"M:3N01","location":{"x":-5120000000000000000,"y":-3290000000000000000,"z":-3790000000000000000}},"30001428":{"solarSystemId":30001428,"solarSystemName":"P:2NE0","location":{"x":-5080000000000000000,"y":-2940000000000000000,"z":-4130000000000000000}},"30001429":{"solarSystemId":30001429,"solarSystemName":"F:2KVA","location":{"x":-4790000000000000000,"y":-1990000000000000000,"z":-5160000000000000000}},"30001430":{"solarSystemId":30001430,"solarSystemName":"Q:2OER","location":{"x":-5210000000000000000,"y":-1780000000000000000,"z":-4910000000000000000}},"30001431":{"solarSystemId":30001431,"solarSystemName":"P:3174","location":{"x":-5930000000000000000,"y":-2010000000000000000,"z":-4870000000000000000}},"30001432":{"solarSystemId":30001432,"solarSystemName":"Y:2RN6","location":{"x":-3770000000000000000,"y":-3410000000000000000,"z":-4640000000000000000}},"30001433":{"solarSystemId":30001433,"solarSystemName":"P:2L68","location":{"x":-4170000000000000000,"y":-3200000000000000000,"z":-3720000000000000000}},"30001434":{"solarSystemId":30001434,"solarSystemName":"J:3031","location":{"x":-5180000000000000000,"y":-3560000000000000000,"z":-2940000000000000000}},"30001435":{"solarSystemId":30001435,"solarSystemName":"Q:36A5","location":{"x":-5010000000000000000,"y":-3400000000000000000,"z":-4690000000000000000}},"30001436":{"solarSystemId":30001436,"solarSystemName":"B:2SE2","location":{"x":-4100000000000000000,"y":-3300000000000000000,"z":-3520000000000000000}},"30001437":{"solarSystemId":30001437,"solarSystemName":"U:3OS0","location":{"x":-6160000000000000000,"y":-2910000000000000000,"z":-4630000000000000000}},"30001438":{"solarSystemId":30001438,"solarSystemName":"Q:2L9I","location":{"x":-5440000000000000000,"y":-3340000000000000000,"z":-3230000000000000000}},"30001439":{"solarSystemId":30001439,"solarSystemName":"B:3237","location":{"x":-8270000000000000000,"y":563000000000000000,"z":-7770000000000000000}},"30001440":{"solarSystemId":30001440,"solarSystemName":"Z:3T29","location":{"x":-7850000000000000000,"y":-270000000000000000,"z":-7100000000000000000}},"30001441":{"solarSystemId":30001441,"solarSystemName":"Q:1VNN","location":{"x":-7620000000000000000,"y":126000000000000000,"z":-8550000000000000000}},"30001442":{"solarSystemId":30001442,"solarSystemName":"G:2LSN","location":{"x":-7980000000000000000,"y":-964000000000000000,"z":-7590000000000000000}},"30001443":{"solarSystemId":30001443,"solarSystemName":"B:2613","location":{"x":-7690000000000000000,"y":-544000000000000000,"z":-7740000000000000000}},"30001444":{"solarSystemId":30001444,"solarSystemName":"J:278K","location":{"x":-8140000000000000000,"y":-55000000000000000,"z":-7920000000000000000}},"30001445":{"solarSystemId":30001445,"solarSystemName":"Q:48VL","location":{"x":-8180000000000000000,"y":56900000000000000,"z":-8860000000000000000}},"30001446":{"solarSystemId":30001446,"solarSystemName":"M:2879","location":{"x":-8230000000000000000,"y":16800000000000000,"z":-7330000000000000000}},"30001447":{"solarSystemId":30001447,"solarSystemName":"H:193K","location":{"x":-8690000000000000000,"y":-114000000000000000,"z":-8030000000000000000}},"30001448":{"solarSystemId":30001448,"solarSystemName":"Z:1T59","location":{"x":-8660000000000000000,"y":161000000000000000,"z":-8410000000000000000}},"30001449":{"solarSystemId":30001449,"solarSystemName":"U:12VE","location":{"x":-8110000000000000000,"y":-210000000000000000,"z":-7990000000000000000}},"30001450":{"solarSystemId":30001450,"solarSystemName":"J:1NTS","location":{"x":-7340000000000000000,"y":-206000000000000000,"z":-8850000000000000000}},"30001451":{"solarSystemId":30001451,"solarSystemName":"P:237K","location":{"x":-8380000000000000000,"y":443000000000000000,"z":-8130000000000000000}},"30001452":{"solarSystemId":30001452,"solarSystemName":"D:2O7O","location":{"x":-8420000000000000000,"y":181000000000000000,"z":-8460000000000000000}},"30001453":{"solarSystemId":30001453,"solarSystemName":"F:18LA","location":{"x":-8110000000000000000,"y":-221000000000000000,"z":-8680000000000000000}},"30001454":{"solarSystemId":30001454,"solarSystemName":"M:3505","location":{"x":-7830000000000000000,"y":167000000000000000,"z":-8030000000000000000}},"30001455":{"solarSystemId":30001455,"solarSystemName":"M:O5R3","location":{"x":-7560000000000000000,"y":122000000000000000,"z":-8740000000000000000}},"30001456":{"solarSystemId":30001456,"solarSystemName":"Y:21RE","location":{"x":-7370000000000000000,"y":149000000000000000,"z":-8230000000000000000}},"30001457":{"solarSystemId":30001457,"solarSystemName":"P:21S4","location":{"x":-8790000000000000000,"y":174000000000000000,"z":-7500000000000000000}},"30001458":{"solarSystemId":30001458,"solarSystemName":"G:31SL","location":{"x":-8870000000000000000,"y":-394000000000000000,"z":-7760000000000000000}},"30001459":{"solarSystemId":30001459,"solarSystemName":"Z:32TI","location":{"x":-6370000000000000000,"y":-3010000000000000000,"z":-7250000000000000000}},"30001460":{"solarSystemId":30001460,"solarSystemName":"F:30TS","location":{"x":-6850000000000000000,"y":-4270000000000000000,"z":-6960000000000000000}},"30001461":{"solarSystemId":30001461,"solarSystemName":"Z:2R6I","location":{"x":-7220000000000000000,"y":-4140000000000000000,"z":-5760000000000000000}},"30001462":{"solarSystemId":30001462,"solarSystemName":"U:2T94","location":{"x":-7160000000000000000,"y":-3380000000000000000,"z":-7870000000000000000}},"30001463":{"solarSystemId":30001463,"solarSystemName":"H:3484","location":{"x":-7170000000000000000,"y":-3700000000000000000,"z":-7990000000000000000}},"30001464":{"solarSystemId":30001464,"solarSystemName":"H:39K8","location":{"x":-7710000000000000000,"y":-3660000000000000000,"z":-7030000000000000000}},"30001465":{"solarSystemId":30001465,"solarSystemName":"H:2OI9","location":{"x":-8700000000000000000,"y":-3630000000000000000,"z":-7680000000000000000}},"30001466":{"solarSystemId":30001466,"solarSystemName":"U:20R3","location":{"x":-7300000000000000000,"y":-4160000000000000000,"z":-7060000000000000000}},"30001467":{"solarSystemId":30001467,"solarSystemName":"P:N9K9","location":{"x":-8100000000000000000,"y":-4910000000000000000,"z":-7730000000000000000}},"30001468":{"solarSystemId":30001468,"solarSystemName":"Q:2IN8","location":{"x":-10300000000000000000,"y":-5090000000000000000,"z":-7010000000000000000}},"30001469":{"solarSystemId":30001469,"solarSystemName":"H:3NV9","location":{"x":-9560000000000000000,"y":-1730000000000000000,"z":-8990000000000000000}},"30001470":{"solarSystemId":30001470,"solarSystemName":"Q:3T1V","location":{"x":-10800000000000000000,"y":-5970000000000000000,"z":-6250000000000000000}},"30001471":{"solarSystemId":30001471,"solarSystemName":"D:37V8","location":{"x":-8920000000000000000,"y":-5220000000000000000,"z":-8880000000000000000}},"30001472":{"solarSystemId":30001472,"solarSystemName":"U:1OE5","location":{"x":-9460000000000000000,"y":-2310000000000000000,"z":-8150000000000000000}},"30001473":{"solarSystemId":30001473,"solarSystemName":"B:1KES","location":{"x":-9990000000000000000,"y":-2530000000000000000,"z":-6640000000000000000}},"30001474":{"solarSystemId":30001474,"solarSystemName":"Z:1I4V","location":{"x":-10500000000000000000,"y":-7830000000000000000,"z":-8420000000000000000}},"30001475":{"solarSystemId":30001475,"solarSystemName":"P:2ILT","location":{"x":-6340000000000000000,"y":-4010000000000000000,"z":-4280000000000000000}},"30001476":{"solarSystemId":30001476,"solarSystemName":"G:2I6A","location":{"x":-6800000000000000000,"y":-3410000000000000000,"z":-4740000000000000000}},"30001477":{"solarSystemId":30001477,"solarSystemName":"P:2SR6","location":{"x":-8540000000000000000,"y":-1650000000000000000,"z":-6240000000000000000}},"30001478":{"solarSystemId":30001478,"solarSystemName":"U:1312","location":{"x":-8760000000000000000,"y":-1710000000000000000,"z":-5720000000000000000}},"30001479":{"solarSystemId":30001479,"solarSystemName":"Z:VSN2","location":{"x":-8190000000000000000,"y":-2640000000000000000,"z":-3410000000000000000}},"30001480":{"solarSystemId":30001480,"solarSystemName":"Z:14EI","location":{"x":-8190000000000000000,"y":-2380000000000000000,"z":-6340000000000000000}},"30001481":{"solarSystemId":30001481,"solarSystemName":"U:2TTK","location":{"x":-7260000000000000000,"y":-3400000000000000000,"z":-4750000000000000000}},"30001482":{"solarSystemId":30001482,"solarSystemName":"Z:34TS","location":{"x":-7830000000000000000,"y":-3880000000000000000,"z":-4060000000000000000}},"30001483":{"solarSystemId":30001483,"solarSystemName":"P:2V5K","location":{"x":-8920000000000000000,"y":-3530000000000000000,"z":-6040000000000000000}},"30001484":{"solarSystemId":30001484,"solarSystemName":"P:2LV8","location":{"x":-9000000000000000000,"y":-2660000000000000000,"z":-4730000000000000000}},"30001485":{"solarSystemId":30001485,"solarSystemName":"M:3T87","location":{"x":-6900000000000000000,"y":-2620000000000000000,"z":-3900000000000000000}},"30001486":{"solarSystemId":30001486,"solarSystemName":"U:362L","location":{"x":-7930000000000000000,"y":-3260000000000000000,"z":-5530000000000000000}},"30001487":{"solarSystemId":30001487,"solarSystemName":"Y:2O5V","location":{"x":-8630000000000000000,"y":-2430000000000000000,"z":-3470000000000000000}},"30001488":{"solarSystemId":30001488,"solarSystemName":"J:4A13","location":{"x":-7730000000000000000,"y":-2580000000000000000,"z":-3660000000000000000}},"30001489":{"solarSystemId":30001489,"solarSystemName":"F:3488","location":{"x":-2100000000000000000,"y":-1910000000000000000,"z":-198000000000000000}},"30001490":{"solarSystemId":30001490,"solarSystemName":"D:2IV6","location":{"x":-3130000000000000000,"y":-2310000000000000000,"z":-803000000000000000}},"30001491":{"solarSystemId":30001491,"solarSystemName":"Z:2LA4","location":{"x":-1940000000000000000,"y":-1750000000000000000,"z":-1040000000000000000}},"30001492":{"solarSystemId":30001492,"solarSystemName":"Q:2EL8","location":{"x":-2410000000000000000,"y":-1560000000000000000,"z":-1150000000000000000}},"30001493":{"solarSystemId":30001493,"solarSystemName":"Z:329K","location":{"x":-2370000000000000000,"y":-2530000000000000000,"z":-889000000000000000}},"30001494":{"solarSystemId":30001494,"solarSystemName":"U:2I8A","location":{"x":-2490000000000000000,"y":-1900000000000000000,"z":-549000000000000000}},"30001495":{"solarSystemId":30001495,"solarSystemName":"B:39A3","location":{"x":-2650000000000000000,"y":-1660000000000000000,"z":-14300000000000000}},"30001496":{"solarSystemId":30001496,"solarSystemName":"G:2RTA","location":{"x":-1710000000000000000,"y":-2650000000000000000,"z":-1010000000000000000}},"30001497":{"solarSystemId":30001497,"solarSystemName":"D:38T0","location":{"x":-2440000000000000000,"y":-1840000000000000000,"z":-342000000000000000}},"30001498":{"solarSystemId":30001498,"solarSystemName":"G:3V37","location":{"x":-1930000000000000000,"y":-2370000000000000000,"z":16400000000000000}},"30001499":{"solarSystemId":30001499,"solarSystemName":"B:2R9R","location":{"x":-2840000000000000000,"y":-1970000000000000000,"z":-583000000000000000}},"30001500":{"solarSystemId":30001500,"solarSystemName":"D:3S3R","location":{"x":-2110000000000000000,"y":-1580000000000000000,"z":-784000000000000000}},"30001501":{"solarSystemId":30001501,"solarSystemName":"B:37EE","location":{"x":-2520000000000000000,"y":-2000000000000000000,"z":-118000000000000000}},"30001502":{"solarSystemId":30001502,"solarSystemName":"P:2SET","location":{"x":-2190000000000000000,"y":-2740000000000000000,"z":-1520000000000000000}},"30001503":{"solarSystemId":30001503,"solarSystemName":"F:2E1R","location":{"x":-2960000000000000000,"y":-2540000000000000000,"z":-508000000000000000}},"30001504":{"solarSystemId":30001504,"solarSystemName":"M:39O7","location":{"x":-2120000000000000000,"y":-2390000000000000000,"z":-87100000000000000}},"30001505":{"solarSystemId":30001505,"solarSystemName":"H:3INK","location":{"x":-2450000000000000000,"y":-1410000000000000000,"z":-1240000000000000000}},"30001506":{"solarSystemId":30001506,"solarSystemName":"B:3NS9","location":{"x":-870000000000000000,"y":-3140000000000000000,"z":-869000000000000000}},"30001507":{"solarSystemId":30001507,"solarSystemName":"F:38TV","location":{"x":-2430000000000000000,"y":-1850000000000000000,"z":-92600000000000000}},"30001508":{"solarSystemId":30001508,"solarSystemName":"D:35VN","location":{"x":-2220000000000000000,"y":-1920000000000000000,"z":-91100000000000000}},"30001509":{"solarSystemId":30001509,"solarSystemName":"G:3OTV","location":{"x":-725000000000000000,"y":-703000000000000000,"z":-613000000000000000}},"30001510":{"solarSystemId":30001510,"solarSystemName":"D:2866","location":{"x":-736000000000000000,"y":-508000000000000000,"z":-148000000000000000}},"30001511":{"solarSystemId":30001511,"solarSystemName":"U:2LT6","location":{"x":-815000000000000000,"y":-450000000000000000,"z":251000000000000000}},"30001512":{"solarSystemId":30001512,"solarSystemName":"F:3R0E","location":{"x":-338000000000000000,"y":-494000000000000000,"z":-527000000000000000}},"30001513":{"solarSystemId":30001513,"solarSystemName":"F:4OE7","location":{"x":-456000000000000000,"y":-429000000000000000,"z":-364000000000000000}},"30001514":{"solarSystemId":30001514,"solarSystemName":"D:2IS8","location":{"x":-909000000000000000,"y":-507000000000000000,"z":-551000000000000000}},"30001515":{"solarSystemId":30001515,"solarSystemName":"Z:2NIV","location":{"x":-977000000000000000,"y":-526000000000000000,"z":6390000000000000}},"30001516":{"solarSystemId":30001516,"solarSystemName":"P:1RKS","location":{"x":-232000000000000000,"y":-458000000000000000,"z":-50100000000000000}},"30001517":{"solarSystemId":30001517,"solarSystemName":"M:391R","location":{"x":-669000000000000000,"y":-404000000000000000,"z":-259000000000000000}},"30001518":{"solarSystemId":30001518,"solarSystemName":"U:3749","location":{"x":-303000000000000000,"y":-451000000000000000,"z":-446000000000000000}},"30001519":{"solarSystemId":30001519,"solarSystemName":"B:285K","location":{"x":-612000000000000000,"y":-329000000000000000,"z":-500000000000000000}},"30001520":{"solarSystemId":30001520,"solarSystemName":"B:4A4T","location":{"x":-582000000000000000,"y":-861000000000000000,"z":-261000000000000000}},"30001521":{"solarSystemId":30001521,"solarSystemName":"Q:I2K0","location":{"x":-603000000000000000,"y":-467000000000000000,"z":135000000000000000}},"30001522":{"solarSystemId":30001522,"solarSystemName":"B:1E05","location":{"x":-784000000000000000,"y":-303000000000000000,"z":-25300000000000000}},"30001523":{"solarSystemId":30001523,"solarSystemName":"D:E74S","location":{"x":-493000000000000000,"y":-322000000000000000,"z":-573000000000000000}},"30001524":{"solarSystemId":30001524,"solarSystemName":"F:1NA2","location":{"x":-404000000000000000,"y":-555000000000000000,"z":-596000000000000000}},"30001525":{"solarSystemId":30001525,"solarSystemName":"P:27NI","location":{"x":-566000000000000000,"y":-468000000000000000,"z":-533000000000000000}},"30001526":{"solarSystemId":30001526,"solarSystemName":"J:1S18","location":{"x":-535000000000000000,"y":-390000000000000000,"z":96700000000000000}},"30001527":{"solarSystemId":30001527,"solarSystemName":"Z:2T37","location":{"x":-1850000000000000000,"y":-586000000000000000,"z":499000000000000000}},"30001528":{"solarSystemId":30001528,"solarSystemName":"Y:29S2","location":{"x":-1720000000000000000,"y":-396000000000000000,"z":33600000000000000}},"30001529":{"solarSystemId":30001529,"solarSystemName":"D:2TLI","location":{"x":-1410000000000000000,"y":-57400000000000000,"z":271000000000000000}},"30001530":{"solarSystemId":30001530,"solarSystemName":"M:2S5E","location":{"x":-1750000000000000000,"y":-333000000000000000,"z":164000000000000000}},"30001531":{"solarSystemId":30001531,"solarSystemName":"J:1AOK","location":{"x":-1840000000000000000,"y":-510000000000000000,"z":-169000000000000000}},"30001532":{"solarSystemId":30001532,"solarSystemName":"Y:2A6N","location":{"x":-1940000000000000000,"y":-394000000000000000,"z":16400000000000000}},"30001533":{"solarSystemId":30001533,"solarSystemName":"Z:1SKV","location":{"x":-2120000000000000000,"y":-582000000000000000,"z":260000000000000000}},"30001534":{"solarSystemId":30001534,"solarSystemName":"H:TLE7","location":{"x":-1740000000000000000,"y":-713000000000000000,"z":17500000000000000}},"30001535":{"solarSystemId":30001535,"solarSystemName":"J:1VAA","location":{"x":-1520000000000000000,"y":-236000000000000000,"z":-19900000000000000}},"30001536":{"solarSystemId":30001536,"solarSystemName":"Z:2LT0","location":{"x":-1610000000000000000,"y":-278000000000000000,"z":-134000000000000000}},"30001537":{"solarSystemId":30001537,"solarSystemName":"J:1VE2","location":{"x":-1650000000000000000,"y":-541000000000000000,"z":120000000000000000}},"30001538":{"solarSystemId":30001538,"solarSystemName":"U:2KT0","location":{"x":-1850000000000000000,"y":-199000000000000000,"z":505000000000000000}},"30001539":{"solarSystemId":30001539,"solarSystemName":"Q:2OOT","location":{"x":-2050000000000000000,"y":16700000000000000,"z":191000000000000000}},"30001540":{"solarSystemId":30001540,"solarSystemName":"H:3I9R","location":{"x":-1480000000000000000,"y":-811000000000000000,"z":189000000000000000}},"30001541":{"solarSystemId":30001541,"solarSystemName":"J:35A4","location":{"x":-1790000000000000000,"y":-410000000000000000,"z":85400000000000000}},"30001542":{"solarSystemId":30001542,"solarSystemName":"Z:3N3A","location":{"x":-1940000000000000000,"y":-280000000000000000,"z":283000000000000000}},"30001543":{"solarSystemId":30001543,"solarSystemName":"Y:3I36","location":{"x":-1790000000000000000,"y":-302000000000000000,"z":768000000000000000}},"30001544":{"solarSystemId":30001544,"solarSystemName":"G:3EVI","location":{"x":-1640000000000000000,"y":-535000000000000000,"z":327000000000000000}},"30001545":{"solarSystemId":30001545,"solarSystemName":"D:2I3K","location":{"x":-1840000000000000000,"y":-244000000000000000,"z":448000000000000000}},"30001546":{"solarSystemId":30001546,"solarSystemName":"Z:37OR","location":{"x":-1700000000000000000,"y":-122000000000000000,"z":231000000000000000}},"30001547":{"solarSystemId":30001547,"solarSystemName":"Q:2ET8","location":{"x":-761000000000000000,"y":-843000000000000000,"z":1350000000000000000}},"30001548":{"solarSystemId":30001548,"solarSystemName":"M:3T9O","location":{"x":-614000000000000000,"y":-962000000000000000,"z":1150000000000000000}},"30001549":{"solarSystemId":30001549,"solarSystemName":"J:184E","location":{"x":-490000000000000000,"y":-462000000000000000,"z":759000000000000000}},"30001550":{"solarSystemId":30001550,"solarSystemName":"J:3EV4","location":{"x":-1350000000000000000,"y":-594000000000000000,"z":709000000000000000}},"30001551":{"solarSystemId":30001551,"solarSystemName":"Y:23KS","location":{"x":-890000000000000000,"y":-648000000000000000,"z":1050000000000000000}},"30001552":{"solarSystemId":30001552,"solarSystemName":"F:1OE7","location":{"x":-916000000000000000,"y":-579000000000000000,"z":973000000000000000}},"30001553":{"solarSystemId":30001553,"solarSystemName":"M:2EK3","location":{"x":-1180000000000000000,"y":-524000000000000000,"z":1230000000000000000}},"30001554":{"solarSystemId":30001554,"solarSystemName":"M:18EE","location":{"x":-886000000000000000,"y":22900000000000000,"z":1470000000000000000}},"30001555":{"solarSystemId":30001555,"solarSystemName":"D:1164","location":{"x":-433000000000000000,"y":-511000000000000000,"z":716000000000000000}},"30001556":{"solarSystemId":30001556,"solarSystemName":"F:401A","location":{"x":-1210000000000000000,"y":-342000000000000000,"z":1140000000000000000}},"30001557":{"solarSystemId":30001557,"solarSystemName":"P:13KR","location":{"x":-488000000000000000,"y":-339000000000000000,"z":1270000000000000000}},"30001558":{"solarSystemId":30001558,"solarSystemName":"Z:39OL","location":{"x":-736000000000000000,"y":-347000000000000000,"z":988000000000000000}},"30001559":{"solarSystemId":30001559,"solarSystemName":"U:3285","location":{"x":-869000000000000000,"y":-1060000000000000000,"z":997000000000000000}},"30001560":{"solarSystemId":30001560,"solarSystemName":"B:2L7N","location":{"x":-664000000000000000,"y":9160000000000000,"z":1450000000000000000}},"30001561":{"solarSystemId":30001561,"solarSystemName":"G:3NVV","location":{"x":-682000000000000000,"y":-574000000000000000,"z":1220000000000000000}},"30001562":{"solarSystemId":30001562,"solarSystemName":"Q:18VI","location":{"x":-959000000000000000,"y":-749000000000000000,"z":447000000000000000}},"30001563":{"solarSystemId":30001563,"solarSystemName":"Q:1TK4","location":{"x":-970000000000000000,"y":-598000000000000000,"z":1090000000000000000}},"30001564":{"solarSystemId":30001564,"solarSystemName":"Z:249N","location":{"x":-744000000000000000,"y":-103000000000000000,"z":935000000000000000}},"30001565":{"solarSystemId":30001565,"solarSystemName":"H:3323","location":{"x":-654000000000000000,"y":-696000000000000000,"z":1140000000000000000}},"30001566":{"solarSystemId":30001566,"solarSystemName":"Q:38L9","location":{"x":-1350000000000000000,"y":24600000000000000,"z":-344000000000000000}},"30001567":{"solarSystemId":30001567,"solarSystemName":"P:29KK","location":{"x":-1150000000000000000,"y":-563000000000000000,"z":-561000000000000000}},"30001568":{"solarSystemId":30001568,"solarSystemName":"B:3288","location":{"x":-1300000000000000000,"y":-714000000000000000,"z":-948000000000000000}},"30001569":{"solarSystemId":30001569,"solarSystemName":"J:29V8","location":{"x":-1250000000000000000,"y":-113000000000000000,"z":-178000000000000000}},"30001570":{"solarSystemId":30001570,"solarSystemName":"B:OT6R","location":{"x":-1200000000000000000,"y":125000000000000000,"z":-477000000000000000}},"30001571":{"solarSystemId":30001571,"solarSystemName":"Q:206S","location":{"x":-1270000000000000000,"y":-834000000000000000,"z":-295000000000000000}},"30001572":{"solarSystemId":30001572,"solarSystemName":"J:E10I","location":{"x":-1530000000000000000,"y":-284000000000000000,"z":-509000000000000000}},"30001573":{"solarSystemId":30001573,"solarSystemName":"F:S865","location":{"x":-1480000000000000000,"y":-87700000000000000,"z":-407000000000000000}},"30001574":{"solarSystemId":30001574,"solarSystemName":"Z:1OAS","location":{"x":-1510000000000000000,"y":-540000000000000000,"z":-627000000000000000}},"30001575":{"solarSystemId":30001575,"solarSystemName":"U:2A79","location":{"x":-1400000000000000000,"y":-92600000000000000,"z":-85800000000000000}},"30001576":{"solarSystemId":30001576,"solarSystemName":"H:3OT9","location":{"x":-1300000000000000000,"y":-322000000000000000,"z":-851000000000000000}},"30001577":{"solarSystemId":30001577,"solarSystemName":"J:3V5K","location":{"x":-1280000000000000000,"y":-123000000000000000,"z":-42000000000000000}},"30001578":{"solarSystemId":30001578,"solarSystemName":"B:38E0","location":{"x":-1420000000000000000,"y":-364000000000000000,"z":-507000000000000000}},"30001579":{"solarSystemId":30001579,"solarSystemName":"Y:37R8","location":{"x":-1390000000000000000,"y":-479000000000000000,"z":-149000000000000000}},"30001580":{"solarSystemId":30001580,"solarSystemName":"Y:38VT","location":{"x":-1630000000000000000,"y":-369000000000000000,"z":-682000000000000000}},"30001581":{"solarSystemId":30001581,"solarSystemName":"U:311K","location":{"x":-1060000000000000000,"y":-672000000000000000,"z":-635000000000000000}},"30001582":{"solarSystemId":30001582,"solarSystemName":"U:3081","location":{"x":-1260000000000000000,"y":-873000000000000000,"z":-509000000000000000}},"30001583":{"solarSystemId":30001583,"solarSystemName":"B:35N4","location":{"x":-1430000000000000000,"y":59300000000000000,"z":-752000000000000000}},"30001584":{"solarSystemId":30001584,"solarSystemName":"F:3N0S","location":{"x":-1650000000000000000,"y":-1110000000000000000,"z":922000000000000000}},"30001585":{"solarSystemId":30001585,"solarSystemName":"M:2RR0","location":{"x":-1240000000000000000,"y":-687000000000000000,"z":1400000000000000000}},"30001586":{"solarSystemId":30001586,"solarSystemName":"F:38AN","location":{"x":-1050000000000000000,"y":-1080000000000000000,"z":1310000000000000000}},"30001587":{"solarSystemId":30001587,"solarSystemName":"U:1K2V","location":{"x":-1800000000000000000,"y":-846000000000000000,"z":1320000000000000000}},"30001588":{"solarSystemId":30001588,"solarSystemName":"M:279S","location":{"x":-1300000000000000000,"y":-945000000000000000,"z":1100000000000000000}},"30001589":{"solarSystemId":30001589,"solarSystemName":"G:1O8V","location":{"x":-1200000000000000000,"y":-702000000000000000,"z":1410000000000000000}},"30001590":{"solarSystemId":30001590,"solarSystemName":"P:395O","location":{"x":-1460000000000000000,"y":-1080000000000000000,"z":1110000000000000000}},"30001591":{"solarSystemId":30001591,"solarSystemName":"B:1S04","location":{"x":-1610000000000000000,"y":-679000000000000000,"z":1270000000000000000}},"30001592":{"solarSystemId":30001592,"solarSystemName":"Z:2V22","location":{"x":-1690000000000000000,"y":-827000000000000000,"z":1410000000000000000}},"30001593":{"solarSystemId":30001593,"solarSystemName":"U:2TT6","location":{"x":-1790000000000000000,"y":-891000000000000000,"z":1390000000000000000}},"30001594":{"solarSystemId":30001594,"solarSystemName":"Z:353E","location":{"x":-1550000000000000000,"y":-1240000000000000000,"z":627000000000000000}},"30001595":{"solarSystemId":30001595,"solarSystemName":"U:3RIS","location":{"x":-1170000000000000000,"y":-1030000000000000000,"z":1380000000000000000}},"30001596":{"solarSystemId":30001596,"solarSystemName":"B:3IE1","location":{"x":-1750000000000000000,"y":-889000000000000000,"z":985000000000000000}},"30001597":{"solarSystemId":30001597,"solarSystemName":"F:30VK","location":{"x":-1570000000000000000,"y":-1200000000000000000,"z":1050000000000000000}},"30001598":{"solarSystemId":30001598,"solarSystemName":"F:2E68","location":{"x":-1150000000000000000,"y":-996000000000000000,"z":681000000000000000}},"30001599":{"solarSystemId":30001599,"solarSystemName":"B:361I","location":{"x":-1520000000000000000,"y":-1050000000000000000,"z":695000000000000000}},"30001600":{"solarSystemId":30001600,"solarSystemName":"Y:3I40","location":{"x":-1660000000000000000,"y":-818000000000000000,"z":789000000000000000}},"30001601":{"solarSystemId":30001601,"solarSystemName":"P:3129","location":{"x":-1140000000000000000,"y":-1300000000000000000,"z":1520000000000000000}},"30001602":{"solarSystemId":30001602,"solarSystemName":"F:33TR","location":{"x":-2240000000000000000,"y":-1500000000000000000,"z":488000000000000000}},"30001603":{"solarSystemId":30001603,"solarSystemName":"P:2E71","location":{"x":-2220000000000000000,"y":-1040000000000000000,"z":761000000000000000}},"30001604":{"solarSystemId":30001604,"solarSystemName":"J:34LI","location":{"x":-1820000000000000000,"y":-931000000000000000,"z":308000000000000000}},"30001605":{"solarSystemId":30001605,"solarSystemName":"J:3T0E","location":{"x":-2150000000000000000,"y":-800000000000000000,"z":416000000000000000}},"30001606":{"solarSystemId":30001606,"solarSystemName":"Z:3665","location":{"x":-2380000000000000000,"y":-1310000000000000000,"z":965000000000000000}},"30001607":{"solarSystemId":30001607,"solarSystemName":"B:11T2","location":{"x":-2100000000000000000,"y":-611000000000000000,"z":520000000000000000}},"30001608":{"solarSystemId":30001608,"solarSystemName":"Z:2IIK","location":{"x":-1830000000000000000,"y":-1020000000000000000,"z":463000000000000000}},"30001609":{"solarSystemId":30001609,"solarSystemName":"U:1AN1","location":{"x":-1860000000000000000,"y":-905000000000000000,"z":666000000000000000}},"30001610":{"solarSystemId":30001610,"solarSystemName":"Y:23OS","location":{"x":-2390000000000000000,"y":-984000000000000000,"z":604000000000000000}},"30001611":{"solarSystemId":30001611,"solarSystemName":"Y:343K","location":{"x":-1900000000000000000,"y":-886000000000000000,"z":432000000000000000}},"30001612":{"solarSystemId":30001612,"solarSystemName":"U:22I2","location":{"x":-2180000000000000000,"y":-1000000000000000000,"z":844000000000000000}},"30001613":{"solarSystemId":30001613,"solarSystemName":"D:236L","location":{"x":-1800000000000000000,"y":-699000000000000000,"z":704000000000000000}},"30001614":{"solarSystemId":30001614,"solarSystemName":"Y:3401","location":{"x":-1800000000000000000,"y":-1350000000000000000,"z":389000000000000000}},"30001615":{"solarSystemId":30001615,"solarSystemName":"Q:3779","location":{"x":-2040000000000000000,"y":-899000000000000000,"z":331000000000000000}},"30001616":{"solarSystemId":30001616,"solarSystemName":"H:389K","location":{"x":-1900000000000000000,"y":-845000000000000000,"z":832000000000000000}},"30001617":{"solarSystemId":30001617,"solarSystemName":"J:3SE8","location":{"x":-2240000000000000000,"y":-653000000000000000,"z":520000000000000000}},"30001618":{"solarSystemId":30001618,"solarSystemName":"H:2ERT","location":{"x":-1770000000000000000,"y":-995000000000000000,"z":357000000000000000}},"30001619":{"solarSystemId":30001619,"solarSystemName":"G:2TA8","location":{"x":-2340000000000000000,"y":-722000000000000000,"z":625000000000000000}},"30001620":{"solarSystemId":30001620,"solarSystemName":"H:36ST","location":{"x":-2160000000000000000,"y":-1070000000000000000,"z":628000000000000000}},"30001621":{"solarSystemId":30001621,"solarSystemName":"H:2S9N","location":{"x":-2280000000000000000,"y":-1140000000000000000,"z":948000000000000000}},"30001622":{"solarSystemId":30001622,"solarSystemName":"B:37ER","location":{"x":-2420000000000000000,"y":-466000000000000000,"z":-408000000000000000}},"30001623":{"solarSystemId":30001623,"solarSystemName":"D:375R","location":{"x":-2250000000000000000,"y":-233000000000000000,"z":-109000000000000000}},"30001624":{"solarSystemId":30001624,"solarSystemName":"Q:SV8V","location":{"x":-2180000000000000000,"y":-606000000000000000,"z":-588000000000000000}},"30001625":{"solarSystemId":30001625,"solarSystemName":"D:241O","location":{"x":-2290000000000000000,"y":-614000000000000000,"z":147000000000000000}},"30001626":{"solarSystemId":30001626,"solarSystemName":"B:3IO1","location":{"x":-2130000000000000000,"y":-866000000000000000,"z":-46500000000000000}},"30001627":{"solarSystemId":30001627,"solarSystemName":"J:25VI","location":{"x":-2050000000000000000,"y":-531000000000000000,"z":-937000000000000000}},"30001628":{"solarSystemId":30001628,"solarSystemName":"U:4L85","location":{"x":-1850000000000000000,"y":-273000000000000000,"z":-336000000000000000}},"30001629":{"solarSystemId":30001629,"solarSystemName":"H:1E4S","location":{"x":-1820000000000000000,"y":-770000000000000000,"z":-561000000000000000}},"30001630":{"solarSystemId":30001630,"solarSystemName":"B:2809","location":{"x":-2180000000000000000,"y":-622000000000000000,"z":-509000000000000000}},"30001631":{"solarSystemId":30001631,"solarSystemName":"F:K541","location":{"x":-2120000000000000000,"y":-655000000000000000,"z":-561000000000000000}},"30001632":{"solarSystemId":30001632,"solarSystemName":"U:143O","location":{"x":-2210000000000000000,"y":-521000000000000000,"z":-520000000000000000}},"30001633":{"solarSystemId":30001633,"solarSystemName":"J:1RE4","location":{"x":-2220000000000000000,"y":-583000000000000000,"z":-116000000000000000}},"30001634":{"solarSystemId":30001634,"solarSystemName":"B:3637","location":{"x":-1950000000000000000,"y":-533000000000000000,"z":-218000000000000000}},"30001635":{"solarSystemId":30001635,"solarSystemName":"H:2ETN","location":{"x":-1710000000000000000,"y":-431000000000000000,"z":-615000000000000000}},"30001636":{"solarSystemId":30001636,"solarSystemName":"Y:2KR6","location":{"x":-2260000000000000000,"y":-221000000000000000,"z":-84200000000000000}},"30001637":{"solarSystemId":30001637,"solarSystemName":"D:2S71","location":{"x":-1500000000000000000,"y":-625000000000000000,"z":-349000000000000000}},"30001638":{"solarSystemId":30001638,"solarSystemName":"U:3ISK","location":{"x":-2290000000000000000,"y":-684000000000000000,"z":163000000000000000}},"30001639":{"solarSystemId":30001639,"solarSystemName":"H:3ELA","location":{"x":-2260000000000000000,"y":-588000000000000000,"z":-521000000000000000}},"30001640":{"solarSystemId":30001640,"solarSystemName":"B:10IR","location":{"x":-1820000000000000000,"y":-420000000000000000,"z":-536000000000000000}},"30001641":{"solarSystemId":30001641,"solarSystemName":"M:1357","location":{"x":-2060000000000000000,"y":-448000000000000000,"z":-708000000000000000}},"30001642":{"solarSystemId":30001642,"solarSystemName":"H:3E8A","location":{"x":-1390000000000000000,"y":524000000000000000,"z":312000000000000000}},"30001643":{"solarSystemId":30001643,"solarSystemName":"G:3TTN","location":{"x":-1370000000000000000,"y":250000000000000000,"z":87600000000000000}},"30001644":{"solarSystemId":30001644,"solarSystemName":"G:3IN1","location":{"x":-827000000000000000,"y":-156000000000000000,"z":677000000000000000}},"30001645":{"solarSystemId":30001645,"solarSystemName":"Z:2IK0","location":{"x":-1270000000000000000,"y":-560000000000000000,"z":403000000000000000}},"30001646":{"solarSystemId":30001646,"solarSystemName":"P:365N","location":{"x":-861000000000000000,"y":15900000000000000,"z":683000000000000000}},"30001647":{"solarSystemId":30001647,"solarSystemName":"B:NI0L","location":{"x":-1010000000000000000,"y":-436000000000000000,"z":312000000000000000}},"30001648":{"solarSystemId":30001648,"solarSystemName":"G:3O6A","location":{"x":-799000000000000000,"y":-300000000000000000,"z":304000000000000000}},"30001649":{"solarSystemId":30001649,"solarSystemName":"G:32IN","location":{"x":-1060000000000000000,"y":-393000000000000000,"z":561000000000000000}},"30001650":{"solarSystemId":30001650,"solarSystemName":"D:1L48","location":{"x":-1110000000000000000,"y":3110000000000000,"z":413000000000000000}},"30001651":{"solarSystemId":30001651,"solarSystemName":"B:3O51","location":{"x":-688000000000000000,"y":-44200000000000000,"z":300000000000000000}},"30001652":{"solarSystemId":30001652,"solarSystemName":"U:2RS9","location":{"x":-769000000000000000,"y":-289000000000000000,"z":313000000000000000}},"30001653":{"solarSystemId":30001653,"solarSystemName":"G:3A4N","location":{"x":-1320000000000000000,"y":-768000000000000000,"z":498000000000000000}},"30001654":{"solarSystemId":30001654,"solarSystemName":"Q:3S6E","location":{"x":-1360000000000000000,"y":-491000000000000000,"z":512000000000000000}},"30001655":{"solarSystemId":30001655,"solarSystemName":"U:1N6T","location":{"x":-611000000000000000,"y":-44300000000000000,"z":206000000000000000}},"30001656":{"solarSystemId":30001656,"solarSystemName":"U:290T","location":{"x":-1390000000000000000,"y":-389000000000000000,"z":696000000000000000}},"30001657":{"solarSystemId":30001657,"solarSystemName":"D:35IT","location":{"x":-648000000000000000,"y":77300000000000000,"z":189000000000000000}},"30001658":{"solarSystemId":30001658,"solarSystemName":"J:3841","location":{"x":-969000000000000000,"y":27500000000000000,"z":238000000000000000}},"30001659":{"solarSystemId":30001659,"solarSystemName":"H:2422","location":{"x":-1260000000000000000,"y":-450000000000000000,"z":690000000000000000}},"30001660":{"solarSystemId":30001660,"solarSystemName":"U:1R8E","location":{"x":-1280000000000000000,"y":-691000000000000000,"z":226000000000000000}},"30001661":{"solarSystemId":30001661,"solarSystemName":"Z:3S0R","location":{"x":-1180000000000000000,"y":-127000000000000000,"z":510000000000000000}},"30001662":{"solarSystemId":30001662,"solarSystemName":"D:3LR8","location":{"x":-1070000000000000000,"y":-213000000000000000,"z":201000000000000000}},"30001663":{"solarSystemId":30001663,"solarSystemName":"P:1V1T","location":{"x":-1260000000000000000,"y":-437000000000000000,"z":311000000000000000}},"30001664":{"solarSystemId":30001664,"solarSystemName":"P:2O58","location":{"x":-1780000000000000000,"y":-1730000000000000000,"z":890000000000000000}},"30001665":{"solarSystemId":30001665,"solarSystemName":"G:3865","location":{"x":-1350000000000000000,"y":-1990000000000000000,"z":254000000000000000}},"30001666":{"solarSystemId":30001666,"solarSystemName":"Z:33RE","location":{"x":-1730000000000000000,"y":-1640000000000000000,"z":183000000000000000}},"30001667":{"solarSystemId":30001667,"solarSystemName":"B:3R48","location":{"x":-1080000000000000000,"y":-1960000000000000000,"z":542000000000000000}},"30001668":{"solarSystemId":30001668,"solarSystemName":"M:2RAO","location":{"x":-593000000000000000,"y":-1900000000000000000,"z":155000000000000000}},"30001669":{"solarSystemId":30001669,"solarSystemName":"Z:3V7S","location":{"x":-1610000000000000000,"y":-1190000000000000000,"z":-52900000000000000}},"30001670":{"solarSystemId":30001670,"solarSystemName":"P:1T12","location":{"x":-861000000000000000,"y":-1330000000000000000,"z":529000000000000000}},"30001671":{"solarSystemId":30001671,"solarSystemName":"H:18IK","location":{"x":-879000000000000000,"y":-1260000000000000000,"z":375000000000000000}},"30001672":{"solarSystemId":30001672,"solarSystemName":"Y:1K95","location":{"x":-1310000000000000000,"y":-2140000000000000000,"z":799000000000000000}},"30001673":{"solarSystemId":30001673,"solarSystemName":"F:3I84","location":{"x":-1330000000000000000,"y":-1710000000000000000,"z":340000000000000000}},"30001674":{"solarSystemId":30001674,"solarSystemName":"J:2NVE","location":{"x":-1280000000000000000,"y":-1370000000000000000,"z":498000000000000000}},"30001675":{"solarSystemId":30001675,"solarSystemName":"M:38O5","location":{"x":-2080000000000000000,"y":-1590000000000000000,"z":942000000000000000}},"30001676":{"solarSystemId":30001676,"solarSystemName":"Z:3S1L","location":{"x":-1230000000000000000,"y":-1620000000000000000,"z":397000000000000000}},"30001677":{"solarSystemId":30001677,"solarSystemName":"Z:3V8V","location":{"x":-1520000000000000000,"y":-1190000000000000000,"z":-104000000000000000}},"30001678":{"solarSystemId":30001678,"solarSystemName":"H:34N5","location":{"x":-1660000000000000000,"y":-1570000000000000000,"z":77300000000000000}},"30001679":{"solarSystemId":30001679,"solarSystemName":"D:3AA8","location":{"x":-1190000000000000000,"y":-1350000000000000000,"z":594000000000000000}},"30001680":{"solarSystemId":30001680,"solarSystemName":"Y:2RVE","location":{"x":-1700000000000000000,"y":-1650000000000000000,"z":-52700000000000000}},"30001681":{"solarSystemId":30001681,"solarSystemName":"H:3IV5","location":{"x":-1670000000000000000,"y":2890000000000000000,"z":5220000000000000000}},"30001682":{"solarSystemId":30001682,"solarSystemName":"J:3N3I","location":{"x":-668000000000000000,"y":4300000000000000000,"z":3840000000000000000}},"30001683":{"solarSystemId":30001683,"solarSystemName":"G:3ONO","location":{"x":-1320000000000000000,"y":2440000000000000000,"z":4720000000000000000}},"30001684":{"solarSystemId":30001684,"solarSystemName":"Q:3142","location":{"x":-1040000000000000000,"y":4130000000000000000,"z":5180000000000000000}},"30001685":{"solarSystemId":30001685,"solarSystemName":"J:3S44","location":{"x":-817000000000000000,"y":3290000000000000000,"z":4130000000000000000}},"30001686":{"solarSystemId":30001686,"solarSystemName":"D:2I0O","location":{"x":-1590000000000000000,"y":4260000000000000000,"z":4920000000000000000}},"30001687":{"solarSystemId":30001687,"solarSystemName":"Z:36I9","location":{"x":-1250000000000000000,"y":4050000000000000000,"z":2950000000000000000}},"30001688":{"solarSystemId":30001688,"solarSystemName":"J:2R7T","location":{"x":-2780000000000000000,"y":4540000000000000000,"z":3170000000000000000}},"30001689":{"solarSystemId":30001689,"solarSystemName":"Q:2RRA","location":{"x":-1160000000000000000,"y":4040000000000000000,"z":4410000000000000000}},"30001690":{"solarSystemId":30001690,"solarSystemName":"G:348R","location":{"x":-2140000000000000000,"y":3190000000000000000,"z":4120000000000000000}},"30001691":{"solarSystemId":30001691,"solarSystemName":"Y:38O3","location":{"x":-1560000000000000000,"y":4510000000000000000,"z":3520000000000000000}},"30001692":{"solarSystemId":30001692,"solarSystemName":"M:32TV","location":{"x":-1440000000000000000,"y":4060000000000000000,"z":4670000000000000000}},"30001693":{"solarSystemId":30001693,"solarSystemName":"U:2I4I","location":{"x":-4060000000000000000,"y":2930000000000000000,"z":2790000000000000000}},"30001694":{"solarSystemId":30001694,"solarSystemName":"Z:3I99","location":{"x":-4070000000000000000,"y":2950000000000000000,"z":2400000000000000000}},"30001695":{"solarSystemId":30001695,"solarSystemName":"Z:2E2L","location":{"x":-3090000000000000000,"y":2660000000000000000,"z":3270000000000000000}},"30001696":{"solarSystemId":30001696,"solarSystemName":"Q:30E0","location":{"x":-4170000000000000000,"y":2960000000000000000,"z":2700000000000000000}},"30001697":{"solarSystemId":30001697,"solarSystemName":"G:37R7","location":{"x":-3230000000000000000,"y":4500000000000000000,"z":2710000000000000000}},"30001698":{"solarSystemId":30001698,"solarSystemName":"F:3092","location":{"x":-4110000000000000000,"y":3150000000000000000,"z":2470000000000000000}},"30001699":{"solarSystemId":30001699,"solarSystemName":"D:2S1R","location":{"x":-3520000000000000000,"y":3450000000000000000,"z":3520000000000000000}},"30001700":{"solarSystemId":30001700,"solarSystemName":"M:290V","location":{"x":-2910000000000000000,"y":2580000000000000000,"z":3310000000000000000}},"30001701":{"solarSystemId":30001701,"solarSystemName":"J:3EVA","location":{"x":-2110000000000000000,"y":3090000000000000000,"z":2540000000000000000}},"30001702":{"solarSystemId":30001702,"solarSystemName":"Y:3T93","location":{"x":-2340000000000000000,"y":3450000000000000000,"z":2030000000000000000}},"30001703":{"solarSystemId":30001703,"solarSystemName":"J:2AOE","location":{"x":-2700000000000000000,"y":3630000000000000000,"z":1870000000000000000}},"30001704":{"solarSystemId":30001704,"solarSystemName":"J:3939","location":{"x":-2910000000000000000,"y":3740000000000000000,"z":1890000000000000000}},"30001705":{"solarSystemId":30001705,"solarSystemName":"M:301E","location":{"x":-2270000000000000000,"y":4000000000000000000,"z":2200000000000000000}},"30001706":{"solarSystemId":30001706,"solarSystemName":"U:3RE6","location":{"x":-2730000000000000000,"y":3980000000000000000,"z":2700000000000000000}},"30001707":{"solarSystemId":30001707,"solarSystemName":"F:3SO0","location":{"x":-1660000000000000000,"y":2740000000000000000,"z":2120000000000000000}},"30001708":{"solarSystemId":30001708,"solarSystemName":"B:3N8K","location":{"x":-2240000000000000000,"y":3780000000000000000,"z":2010000000000000000}},"30001709":{"solarSystemId":30001709,"solarSystemName":"U:2IO4","location":{"x":-2020000000000000000,"y":6930000000000000000,"z":2420000000000000000}},"30001710":{"solarSystemId":30001710,"solarSystemName":"P:39TA","location":{"x":-2850000000000000000,"y":5120000000000000000,"z":2370000000000000000}},"30001711":{"solarSystemId":30001711,"solarSystemName":"F:2NAV","location":{"x":-2230000000000000000,"y":6930000000000000000,"z":1250000000000000000}},"30001712":{"solarSystemId":30001712,"solarSystemName":"Q:363A","location":{"x":-2650000000000000000,"y":5980000000000000000,"z":3540000000000000000}},"30001713":{"solarSystemId":30001713,"solarSystemName":"M:3TO9","location":{"x":-1570000000000000000,"y":6430000000000000000,"z":2340000000000000000}},"30001714":{"solarSystemId":30001714,"solarSystemName":"Z:TET1","location":{"x":-3050000000000000000,"y":6610000000000000000,"z":323000000000000000}},"30001715":{"solarSystemId":30001715,"solarSystemName":"H:3I9T","location":{"x":607000000000000000,"y":1740000000000000000,"z":1070000000000000000}},"30001716":{"solarSystemId":30001716,"solarSystemName":"B:33S7","location":{"x":-180000000000000000,"y":1720000000000000000,"z":1100000000000000000}},"30001717":{"solarSystemId":30001717,"solarSystemName":"Y:2SAS","location":{"x":-628000000000000000,"y":685000000000000000,"z":749000000000000000}},"30001718":{"solarSystemId":30001718,"solarSystemName":"U:30T2","location":{"x":-497000000000000000,"y":1390000000000000000,"z":942000000000000000}},"30001719":{"solarSystemId":30001719,"solarSystemName":"J:2ES3","location":{"x":-555000000000000000,"y":989000000000000000,"z":1260000000000000000}},"30001720":{"solarSystemId":30001720,"solarSystemName":"P:3R4S","location":{"x":-401000000000000000,"y":477000000000000000,"z":466000000000000000}},"30001721":{"solarSystemId":30001721,"solarSystemName":"G:1VLI","location":{"x":-71400000000000000,"y":539000000000000000,"z":313000000000000000}},"30001722":{"solarSystemId":30001722,"solarSystemName":"U:39AA","location":{"x":-545000000000000000,"y":1510000000000000000,"z":572000000000000000}},"30001723":{"solarSystemId":30001723,"solarSystemName":"B:38NN","location":{"x":-629000000000000000,"y":2430000000000000000,"z":1420000000000000000}},"30001724":{"solarSystemId":30001724,"solarSystemName":"G:357A","location":{"x":-706909000000000,"y":482000000000000000,"z":1150000000000000000}},"30001725":{"solarSystemId":30001725,"solarSystemName":"P:3VNT","location":{"x":-1040000000000000000,"y":1450000000000000000,"z":1490000000000000000}},"30001726":{"solarSystemId":30001726,"solarSystemName":"G:2LLV","location":{"x":-205000000000000000,"y":1080000000000000000,"z":629000000000000000}},"30001727":{"solarSystemId":30001727,"solarSystemName":"M:37I7","location":{"x":-1230000000000000000,"y":1140000000000000000,"z":644000000000000000}},"30001728":{"solarSystemId":30001728,"solarSystemName":"G:29EA","location":{"x":970000000000000000,"y":2250000000000000000,"z":1250000000000000000}},"30001729":{"solarSystemId":30001729,"solarSystemName":"B:2R66","location":{"x":-1520000000000000000,"y":1700000000000000000,"z":731000000000000000}},"30001730":{"solarSystemId":30001730,"solarSystemName":"Q:2E2E","location":{"x":657000000000000000,"y":1630000000000000000,"z":2620000000000000000}},"30001731":{"solarSystemId":30001731,"solarSystemName":"D:34TN","location":{"x":-1230000000000000000,"y":2870000000000000000,"z":2340000000000000000}},"30001732":{"solarSystemId":30001732,"solarSystemName":"G:SLKS","location":{"x":-970000000000000000,"y":1010000000000000000,"z":3130000000000000000}},"30001733":{"solarSystemId":30001733,"solarSystemName":"J:2L12","location":{"x":-1190000000000000000,"y":3030000000000000000,"z":3300000000000000000}},"30001734":{"solarSystemId":30001734,"solarSystemName":"J:31EV","location":{"x":-550000000000000000,"y":1800000000000000000,"z":2540000000000000000}},"30001735":{"solarSystemId":30001735,"solarSystemName":"H:35I0","location":{"x":-1210000000000000000,"y":2680000000000000000,"z":2370000000000000000}},"30001736":{"solarSystemId":30001736,"solarSystemName":"U:3ITK","location":{"x":-1250000000000000000,"y":2690000000000000000,"z":2280000000000000000}},"30001737":{"solarSystemId":30001737,"solarSystemName":"P:2L64","location":{"x":-432000000000000000,"y":2250000000000000000,"z":2870000000000000000}},"30001738":{"solarSystemId":30001738,"solarSystemName":"F:3RRK","location":{"x":-434000000000000000,"y":1490000000000000000,"z":3300000000000000000}},"30001739":{"solarSystemId":30001739,"solarSystemName":"B:2RK7","location":{"x":-1640000000000000000,"y":2820000000000000000,"z":2470000000000000000}},"30001740":{"solarSystemId":30001740,"solarSystemName":"D:3OIK","location":{"x":-582000000000000000,"y":1340000000000000000,"z":2890000000000000000}},"30001741":{"solarSystemId":30001741,"solarSystemName":"F:312I","location":{"x":-3460000000000000000,"y":1160000000000000000,"z":-577000000000000000}},"30001742":{"solarSystemId":30001742,"solarSystemName":"G:3804","location":{"x":-3860000000000000000,"y":1230000000000000000,"z":-811000000000000000}},"30001743":{"solarSystemId":30001743,"solarSystemName":"H:314E","location":{"x":-3040000000000000000,"y":1220000000000000000,"z":-1170000000000000000}},"30001744":{"solarSystemId":30001744,"solarSystemName":"Z:39N9","location":{"x":-3440000000000000000,"y":786000000000000000,"z":-640000000000000000}},"30001745":{"solarSystemId":30001745,"solarSystemName":"U:2R25","location":{"x":-3560000000000000000,"y":850000000000000000,"z":-898000000000000000}},"30001746":{"solarSystemId":30001746,"solarSystemName":"J:2VKI","location":{"x":-4250000000000000000,"y":495000000000000000,"z":-887000000000000000}},"30001747":{"solarSystemId":30001747,"solarSystemName":"J:3NA3","location":{"x":-3230000000000000000,"y":1060000000000000000,"z":-974000000000000000}},"30001748":{"solarSystemId":30001748,"solarSystemName":"F:2AET","location":{"x":-4070000000000000000,"y":508000000000000000,"z":-903000000000000000}},"30001749":{"solarSystemId":30001749,"solarSystemName":"H:3O3L","location":{"x":-3640000000000000000,"y":359000000000000000,"z":-524000000000000000}},"30001750":{"solarSystemId":30001750,"solarSystemName":"Z:2RA3","location":{"x":-3980000000000000000,"y":1130000000000000000,"z":-940000000000000000}},"30001751":{"solarSystemId":30001751,"solarSystemName":"U:1N8S","location":{"x":-3330000000000000000,"y":1300000000000000000,"z":-1200000000000000000}},"30001752":{"solarSystemId":30001752,"solarSystemName":"J:2RR1","location":{"x":-3340000000000000000,"y":502000000000000000,"z":-544000000000000000}},"30001753":{"solarSystemId":30001753,"solarSystemName":"Q:2E82","location":{"x":-2840000000000000000,"y":817000000000000000,"z":-714000000000000000}},"30001754":{"solarSystemId":30001754,"solarSystemName":"U:3I56","location":{"x":-3680000000000000000,"y":991000000000000000,"z":-963000000000000000}},"30001755":{"solarSystemId":30001755,"solarSystemName":"M:31OO","location":{"x":-3610000000000000000,"y":967000000000000000,"z":-423000000000000000}},"30001756":{"solarSystemId":30001756,"solarSystemName":"H:383I","location":{"x":-3400000000000000000,"y":261000000000000000,"z":43500000000000000}},"30001757":{"solarSystemId":30001757,"solarSystemName":"G:3VE2","location":{"x":-2950000000000000000,"y":967000000000000000,"z":-568000000000000000}},"30001758":{"solarSystemId":30001758,"solarSystemName":"H:3944","location":{"x":-3190000000000000000,"y":249000000000000000,"z":-183000000000000000}},"30001759":{"solarSystemId":30001759,"solarSystemName":"U:3VT0","location":{"x":-3600000000000000000,"y":867000000000000000,"z":-1150000000000000000}},"30001760":{"solarSystemId":30001760,"solarSystemName":"J:3N4E","location":{"x":-3640000000000000000,"y":-363000000000000000,"z":-768000000000000000}},"30001761":{"solarSystemId":30001761,"solarSystemName":"Y:3399","location":{"x":-3850000000000000000,"y":-493000000000000000,"z":-851000000000000000}},"30001762":{"solarSystemId":30001762,"solarSystemName":"M:244O","location":{"x":-3750000000000000000,"y":-279000000000000000,"z":-969000000000000000}},"30001763":{"solarSystemId":30001763,"solarSystemName":"P:21OK","location":{"x":-3800000000000000000,"y":79200000000000000,"z":-1390000000000000000}},"30001764":{"solarSystemId":30001764,"solarSystemName":"H:3760","location":{"x":-3960000000000000000,"y":-630000000000000000,"z":-1010000000000000000}},"30001765":{"solarSystemId":30001765,"solarSystemName":"M:21N2","location":{"x":-4050000000000000000,"y":-389000000000000000,"z":-1010000000000000000}},"30001766":{"solarSystemId":30001766,"solarSystemName":"M:1O16","location":{"x":-4140000000000000000,"y":-241000000000000000,"z":-1030000000000000000}},"30001767":{"solarSystemId":30001767,"solarSystemName":"H:33SE","location":{"x":-4130000000000000000,"y":-242000000000000000,"z":-1190000000000000000}},"30001768":{"solarSystemId":30001768,"solarSystemName":"B:512K","location":{"x":-3750000000000000000,"y":-452000000000000000,"z":-820000000000000000}},"30001769":{"solarSystemId":30001769,"solarSystemName":"G:51K2","location":{"x":-3760000000000000000,"y":-131000000000000000,"z":-931000000000000000}},"30001770":{"solarSystemId":30001770,"solarSystemName":"Q:2VL0","location":{"x":-4020000000000000000,"y":-592000000000000000,"z":-978000000000000000}},"30001771":{"solarSystemId":30001771,"solarSystemName":"G:2710","location":{"x":-4070000000000000000,"y":-447000000000000000,"z":-965000000000000000}},"30001772":{"solarSystemId":30001772,"solarSystemName":"M:3718","location":{"x":-3750000000000000000,"y":-471000000000000000,"z":-1010000000000000000}},"30001773":{"solarSystemId":30001773,"solarSystemName":"P:339R","location":{"x":-4020000000000000000,"y":-33100000000000000,"z":-1130000000000000000}},"30001774":{"solarSystemId":30001774,"solarSystemName":"B:3S7A","location":{"x":-3520000000000000000,"y":-267000000000000000,"z":-1030000000000000000}},"30001775":{"solarSystemId":30001775,"solarSystemName":"Z:3SOE","location":{"x":-3970000000000000000,"y":-56300000000000000,"z":-1050000000000000000}},"30001776":{"solarSystemId":30001776,"solarSystemName":"F:2N0S","location":{"x":-3550000000000000000,"y":-140000000000000000,"z":-1010000000000000000}},"30001777":{"solarSystemId":30001777,"solarSystemName":"F:3861","location":{"x":-4120000000000000000,"y":-414000000000000000,"z":-1220000000000000000}},"30001778":{"solarSystemId":30001778,"solarSystemName":"G:33KI","location":{"x":-3790000000000000000,"y":-393000000000000000,"z":-1130000000000000000}},"30001779":{"solarSystemId":30001779,"solarSystemName":"U:34LV","location":{"x":-3900000000000000000,"y":-73400000000000000,"z":-1070000000000000000}},"30001780":{"solarSystemId":30001780,"solarSystemName":"Z:34A5","location":{"x":-3960000000000000000,"y":-658000000000000000,"z":149000000000000000}},"30001781":{"solarSystemId":30001781,"solarSystemName":"Q:345I","location":{"x":-4010000000000000000,"y":-280000000000000000,"z":-55200000000000000}},"30001782":{"solarSystemId":30001782,"solarSystemName":"F:2V70","location":{"x":-3970000000000000000,"y":-236000000000000000,"z":124000000000000000}},"30001783":{"solarSystemId":30001783,"solarSystemName":"H:2O26","location":{"x":-3890000000000000000,"y":-285000000000000000,"z":316000000000000000}},"30001784":{"solarSystemId":30001784,"solarSystemName":"F:38S0","location":{"x":-4060000000000000000,"y":-485000000000000000,"z":124000000000000000}},"30001785":{"solarSystemId":30001785,"solarSystemName":"Q:3TEL","location":{"x":-4210000000000000000,"y":-385000000000000000,"z":336000000000000000}},"30001786":{"solarSystemId":30001786,"solarSystemName":"U:35O6","location":{"x":-4020000000000000000,"y":-340000000000000000,"z":357000000000000000}},"30001787":{"solarSystemId":30001787,"solarSystemName":"J:2K3K","location":{"x":-3930000000000000000,"y":-308000000000000000,"z":41800000000000000}},"30001788":{"solarSystemId":30001788,"solarSystemName":"G:3T33","location":{"x":-3870000000000000000,"y":-300000000000000000,"z":68400000000000000}},"30001789":{"solarSystemId":30001789,"solarSystemName":"H:2AS3","location":{"x":-4140000000000000000,"y":-401000000000000000,"z":121000000000000000}},"30001790":{"solarSystemId":30001790,"solarSystemName":"Z:13N6","location":{"x":-4250000000000000000,"y":-399000000000000000,"z":33200000000000000}},"30001791":{"solarSystemId":30001791,"solarSystemName":"J:I9RR","location":{"x":-3950000000000000000,"y":-440000000000000000,"z":-113000000000000000}},"30001792":{"solarSystemId":30001792,"solarSystemName":"J:3350","location":{"x":-4110000000000000000,"y":-483000000000000000,"z":57100000000000000}},"30001793":{"solarSystemId":30001793,"solarSystemName":"P:233R","location":{"x":-3820000000000000000,"y":-400000000000000000,"z":273000000000000000}},"30001794":{"solarSystemId":30001794,"solarSystemName":"U:3N4K","location":{"x":-4200000000000000000,"y":-646000000000000000,"z":30000000000000000}},"30001795":{"solarSystemId":30001795,"solarSystemName":"B:2E4L","location":{"x":-4120000000000000000,"y":-407000000000000000,"z":4750000000000000}},"30001796":{"solarSystemId":30001796,"solarSystemName":"U:35SL","location":{"x":-3990000000000000000,"y":-575000000000000000,"z":90600000000000000}},"30001797":{"solarSystemId":30001797,"solarSystemName":"G:336V","location":{"x":-4190000000000000000,"y":-488000000000000000,"z":-94000000000000000}},"30001798":{"solarSystemId":30001798,"solarSystemName":"B:3O5A","location":{"x":-3930000000000000000,"y":-251000000000000000,"z":272000000000000000}},"30001799":{"solarSystemId":30001799,"solarSystemName":"H:39KA","location":{"x":-4070000000000000000,"y":-493000000000000000,"z":261000000000000000}},"30001800":{"solarSystemId":30001800,"solarSystemName":"F:3116","location":{"x":-3990000000000000000,"y":-391000000000000000,"z":297000000000000000}},"30001801":{"solarSystemId":30001801,"solarSystemName":"U:2S98","location":{"x":-3360000000000000000,"y":-361000000000000000,"z":-112000000000000000}},"30001802":{"solarSystemId":30001802,"solarSystemName":"G:3SO9","location":{"x":-3280000000000000000,"y":-561000000000000000,"z":-198000000000000000}},"30001803":{"solarSystemId":30001803,"solarSystemName":"U:2T06","location":{"x":-3180000000000000000,"y":107000000000000000,"z":-327000000000000000}},"30001804":{"solarSystemId":30001804,"solarSystemName":"F:3A4I","location":{"x":-3220000000000000000,"y":-562000000000000000,"z":32000000000000000}},"30001805":{"solarSystemId":30001805,"solarSystemName":"B:3SI4","location":{"x":-3130000000000000000,"y":-614000000000000000,"z":76300000000000000}},"30001806":{"solarSystemId":30001806,"solarSystemName":"Q:27L6","location":{"x":-3260000000000000000,"y":-197000000000000000,"z":-336000000000000000}},"30001807":{"solarSystemId":30001807,"solarSystemName":"H:38EN","location":{"x":-3370000000000000000,"y":-542000000000000000,"z":58600000000000000}},"30001808":{"solarSystemId":30001808,"solarSystemName":"G:2818","location":{"x":-3060000000000000000,"y":-284000000000000000,"z":-202000000000000000}},"30001809":{"solarSystemId":30001809,"solarSystemName":"J:3262","location":{"x":-3060000000000000000,"y":-431000000000000000,"z":-83100000000000000}},"30001810":{"solarSystemId":30001810,"solarSystemName":"H:2A1I","location":{"x":-3250000000000000000,"y":-346000000000000000,"z":-239000000000000000}},"30001811":{"solarSystemId":30001811,"solarSystemName":"F:37IA","location":{"x":-3120000000000000000,"y":-271000000000000000,"z":-128000000000000000}},"30001812":{"solarSystemId":30001812,"solarSystemName":"Y:2LL3","location":{"x":-3410000000000000000,"y":-567000000000000000,"z":46300000000000000}},"30001813":{"solarSystemId":30001813,"solarSystemName":"Q:2RL7","location":{"x":-3250000000000000000,"y":12200000000000000,"z":-286000000000000000}},"30001814":{"solarSystemId":30001814,"solarSystemName":"D:36TV","location":{"x":-3440000000000000000,"y":-460000000000000000,"z":14500000000000000}},"30001815":{"solarSystemId":30001815,"solarSystemName":"U:3O4N","location":{"x":-3400000000000000000,"y":-388000000000000000,"z":-188000000000000000}},"30001816":{"solarSystemId":30001816,"solarSystemName":"U:2OO7","location":{"x":-3060000000000000000,"y":-279000000000000000,"z":-329000000000000000}},"30001817":{"solarSystemId":30001817,"solarSystemName":"F:3N45","location":{"x":-3000000000000000000,"y":-473000000000000000,"z":-107000000000000000}},"30001818":{"solarSystemId":30001818,"solarSystemName":"D:3I73","location":{"x":-3140000000000000000,"y":-573000000000000000,"z":30500000000000000}},"30001819":{"solarSystemId":30001819,"solarSystemName":"Z:2938","location":{"x":-3340000000000000000,"y":-216000000000000000,"z":335000000000000000}},"30001820":{"solarSystemId":30001820,"solarSystemName":"P:2K57","location":{"x":-3570000000000000000,"y":-344000000000000000,"z":96700000000000000}},"30001821":{"solarSystemId":30001821,"solarSystemName":"G:384N","location":{"x":-3490000000000000000,"y":-198000000000000000,"z":226000000000000000}},"30001822":{"solarSystemId":30001822,"solarSystemName":"D:2K97","location":{"x":-3710000000000000000,"y":-272000000000000000,"z":164000000000000000}},"30001823":{"solarSystemId":30001823,"solarSystemName":"M:3601","location":{"x":-3390000000000000000,"y":-264000000000000000,"z":356000000000000000}},"30001824":{"solarSystemId":30001824,"solarSystemName":"H:2SLN","location":{"x":-3430000000000000000,"y":-367000000000000000,"z":398000000000000000}},"30001825":{"solarSystemId":30001825,"solarSystemName":"H:374V","location":{"x":-3360000000000000000,"y":-308000000000000000,"z":113000000000000000}},"30001826":{"solarSystemId":30001826,"solarSystemName":"M:3O79","location":{"x":-3430000000000000000,"y":-404000000000000000,"z":251000000000000000}},"30001827":{"solarSystemId":30001827,"solarSystemName":"J:32L2","location":{"x":-3560000000000000000,"y":-117000000000000000,"z":304000000000000000}},"30001828":{"solarSystemId":30001828,"solarSystemName":"B:2SOA","location":{"x":-3480000000000000000,"y":-425000000000000000,"z":138000000000000000}},"30001829":{"solarSystemId":30001829,"solarSystemName":"Q:32K0","location":{"x":-3400000000000000000,"y":-316000000000000000,"z":274000000000000000}},"30001830":{"solarSystemId":30001830,"solarSystemName":"U:297E","location":{"x":-3550000000000000000,"y":-318000000000000000,"z":89900000000000000}},"30001831":{"solarSystemId":30001831,"solarSystemName":"D:2ATR","location":{"x":-3530000000000000000,"y":-254000000000000000,"z":114000000000000000}},"30001832":{"solarSystemId":30001832,"solarSystemName":"F:2AV0","location":{"x":-3490000000000000000,"y":-352000000000000000,"z":117000000000000000}},"30001833":{"solarSystemId":30001833,"solarSystemName":"U:3EO6","location":{"x":-3470000000000000000,"y":-300000000000000000,"z":414000000000000000}},"30001834":{"solarSystemId":30001834,"solarSystemName":"H:2SVO","location":{"x":-3720000000000000000,"y":-94300000000000000,"z":272000000000000000}},"30001835":{"solarSystemId":30001835,"solarSystemName":"H:2VNV","location":{"x":-3730000000000000000,"y":-167000000000000000,"z":278000000000000000}},"30001836":{"solarSystemId":30001836,"solarSystemName":"B:3S7L","location":{"x":-3460000000000000000,"y":-198000000000000000,"z":77700000000000000}},"30001837":{"solarSystemId":30001837,"solarSystemName":"U:3593","location":{"x":-4800000000000000000,"y":106000000000000000,"z":-458000000000000000}},"30001838":{"solarSystemId":30001838,"solarSystemName":"Q:368R","location":{"x":-4640000000000000000,"y":-468000000000000000,"z":-248000000000000000}},"30001839":{"solarSystemId":30001839,"solarSystemName":"D:3ONV","location":{"x":-4840000000000000000,"y":-433000000000000000,"z":-616000000000000000}},"30001840":{"solarSystemId":30001840,"solarSystemName":"F:2T8L","location":{"x":-4340000000000000000,"y":-360000000000000000,"z":-887000000000000000}},"30001841":{"solarSystemId":30001841,"solarSystemName":"Y:1T07","location":{"x":-4490000000000000000,"y":-411000000000000000,"z":-261000000000000000}},"30001842":{"solarSystemId":30001842,"solarSystemName":"H:22I9","location":{"x":-4860000000000000000,"y":-76300000000000000,"z":-597000000000000000}},"30001843":{"solarSystemId":30001843,"solarSystemName":"U:3AE9","location":{"x":-4680000000000000000,"y":-155000000000000000,"z":-827000000000000000}},"30001844":{"solarSystemId":30001844,"solarSystemName":"D:2648","location":{"x":-4640000000000000000,"y":-395000000000000000,"z":-998000000000000000}},"30001845":{"solarSystemId":30001845,"solarSystemName":"P:1TIO","location":{"x":-4660000000000000000,"y":-312000000000000000,"z":-264000000000000000}},"30001846":{"solarSystemId":30001846,"solarSystemName":"Q:27K6","location":{"x":-4450000000000000000,"y":-140000000000000000,"z":-525000000000000000}},"30001847":{"solarSystemId":30001847,"solarSystemName":"J:18VL","location":{"x":-4840000000000000000,"y":-255000000000000000,"z":-367000000000000000}},"30001848":{"solarSystemId":30001848,"solarSystemName":"D:2VS9","location":{"x":-4800000000000000000,"y":-10200000000000000,"z":-523000000000000000}},"30001849":{"solarSystemId":30001849,"solarSystemName":"M:37E9","location":{"x":-4530000000000000000,"y":-412000000000000000,"z":-422000000000000000}},"30001850":{"solarSystemId":30001850,"solarSystemName":"J:ORN5","location":{"x":-4670000000000000000,"y":-134000000000000000,"z":-694000000000000000}},"30001851":{"solarSystemId":30001851,"solarSystemName":"B:3O8N","location":{"x":-4790000000000000000,"y":56500000000000000,"z":-926000000000000000}},"30001852":{"solarSystemId":30001852,"solarSystemName":"G:2K1S","location":{"x":-4870000000000000000,"y":-371000000000000000,"z":-562000000000000000}},"30001853":{"solarSystemId":30001853,"solarSystemName":"Q:2KEE","location":{"x":-4620000000000000000,"y":-461000000000000000,"z":-717000000000000000}},"30001854":{"solarSystemId":30001854,"solarSystemName":"U:3R1I","location":{"x":-4970000000000000000,"y":71200000000000000,"z":-744000000000000000}},"30001855":{"solarSystemId":30001855,"solarSystemName":"U:3R1K","location":{"x":-4710000000000000000,"y":145000000000000000,"z":-567000000000000000}},"30001856":{"solarSystemId":30001856,"solarSystemName":"Z:2A6T","location":{"x":-4690000000000000000,"y":125000000000000000,"z":-966000000000000000}},"30001857":{"solarSystemId":30001857,"solarSystemName":"Y:3N9O","location":{"x":-4860000000000000000,"y":194000000000000000,"z":-851000000000000000}},"30001858":{"solarSystemId":30001858,"solarSystemName":"U:2K9V","location":{"x":-4980000000000000000,"y":-131000000000000000,"z":-658000000000000000}},"30001859":{"solarSystemId":30001859,"solarSystemName":"Z:341L","location":{"x":-3900000000000000000,"y":-396000000000000000,"z":-249000000000000000}},"30001860":{"solarSystemId":30001860,"solarSystemName":"P:2V96","location":{"x":-3780000000000000000,"y":-709000000000000000,"z":-513000000000000000}},"30001861":{"solarSystemId":30001861,"solarSystemName":"M:300N","location":{"x":-3890000000000000000,"y":50800000000000000,"z":-657000000000000000}},"30001862":{"solarSystemId":30001862,"solarSystemName":"Q:32E3","location":{"x":-4050000000000000000,"y":-511000000000000000,"z":-543000000000000000}},"30001863":{"solarSystemId":30001863,"solarSystemName":"U:2ROT","location":{"x":-3830000000000000000,"y":-325000000000000000,"z":-415000000000000000}},"30001864":{"solarSystemId":30001864,"solarSystemName":"M:2RO7","location":{"x":-4140000000000000000,"y":-348000000000000000,"z":-346000000000000000}},"30001865":{"solarSystemId":30001865,"solarSystemName":"J:37VK","location":{"x":-3880000000000000000,"y":-714000000000000000,"z":-556000000000000000}},"30001866":{"solarSystemId":30001866,"solarSystemName":"H:O3A4","location":{"x":-3730000000000000000,"y":-362000000000000000,"z":-316000000000000000}},"30001867":{"solarSystemId":30001867,"solarSystemName":"Y:3OTT","location":{"x":-3970000000000000000,"y":-423000000000000000,"z":-191000000000000000}},"30001868":{"solarSystemId":30001868,"solarSystemName":"F:21ER","location":{"x":-3860000000000000000,"y":-559000000000000000,"z":-692000000000000000}},"30001869":{"solarSystemId":30001869,"solarSystemName":"Q:380R","location":{"x":-4040000000000000000,"y":-620000000000000000,"z":-767000000000000000}},"30001870":{"solarSystemId":30001870,"solarSystemName":"B:3ESK","location":{"x":-4300000000000000000,"y":-340000000000000000,"z":-435000000000000000}},"30001871":{"solarSystemId":30001871,"solarSystemName":"B:2IAA","location":{"x":-4040000000000000000,"y":-474000000000000000,"z":-806000000000000000}},"30001872":{"solarSystemId":30001872,"solarSystemName":"G:3IT7","location":{"x":-3980000000000000000,"y":-225000000000000000,"z":-522000000000000000}},"30001873":{"solarSystemId":30001873,"solarSystemName":"Y:1KO2","location":{"x":-4140000000000000000,"y":-465000000000000000,"z":-263000000000000000}},"30001874":{"solarSystemId":30001874,"solarSystemName":"H:ILKV","location":{"x":-4040000000000000000,"y":-477000000000000000,"z":-838000000000000000}},"30001875":{"solarSystemId":30001875,"solarSystemName":"M:36I2","location":{"x":-3940000000000000000,"y":-785000000000000000,"z":-585000000000000000}},"30001876":{"solarSystemId":30001876,"solarSystemName":"H:33LK","location":{"x":-4010000000000000000,"y":-222000000000000000,"z":-440000000000000000}},"30001877":{"solarSystemId":30001877,"solarSystemName":"M:2SK9","location":{"x":-3740000000000000000,"y":-127000000000000000,"z":-335000000000000000}},"30001878":{"solarSystemId":30001878,"solarSystemName":"G:2AO1","location":{"x":-4220000000000000000,"y":-92900000000000000,"z":-832000000000000000}},"30001879":{"solarSystemId":30001879,"solarSystemName":"U:3NRO","location":{"x":-3960000000000000000,"y":-241000000000000000,"z":-388000000000000000}},"30001880":{"solarSystemId":30001880,"solarSystemName":"Q:3E66","location":{"x":-4030000000000000000,"y":66100000000000000,"z":-603000000000000000}},"30001881":{"solarSystemId":30001881,"solarSystemName":"Q:2EI7","location":{"x":-3660000000000000000,"y":-282000000000000000,"z":-541000000000000000}},"30001882":{"solarSystemId":30001882,"solarSystemName":"F:39RS","location":{"x":-3790000000000000000,"y":-252000000000000000,"z":125000000000000000}},"30001883":{"solarSystemId":30001883,"solarSystemName":"B:2L24","location":{"x":-3620000000000000000,"y":-229000000000000000,"z":-85800000000000000}},"30001884":{"solarSystemId":30001884,"solarSystemName":"Y:3500","location":{"x":-3690000000000000000,"y":-52700000000000000,"z":80200000000000000}},"30001885":{"solarSystemId":30001885,"solarSystemName":"H:3RV3","location":{"x":-3670000000000000000,"y":-470000000000000000,"z":-382000000000000000}},"30001886":{"solarSystemId":30001886,"solarSystemName":"M:3NN8","location":{"x":-3600000000000000000,"y":-169000000000000000,"z":-207000000000000000}},"30001887":{"solarSystemId":30001887,"solarSystemName":"M:NLTE","location":{"x":-3480000000000000000,"y":-445000000000000000,"z":-87700000000000000}},"30001888":{"solarSystemId":30001888,"solarSystemName":"G:23LI","location":{"x":-3410000000000000000,"y":-324000000000000000,"z":-38100000000000000}},"30001889":{"solarSystemId":30001889,"solarSystemName":"U:226T","location":{"x":-3640000000000000000,"y":-469000000000000000,"z":98000000000000000}},"30001890":{"solarSystemId":30001890,"solarSystemName":"H:R3A3","location":{"x":-3700000000000000000,"y":-307000000000000000,"z":52600000000000000}},"30001891":{"solarSystemId":30001891,"solarSystemName":"H:1I42","location":{"x":-3580000000000000000,"y":-337000000000000000,"z":-54600000000000000}},"30001892":{"solarSystemId":30001892,"solarSystemName":"P:331S","location":{"x":-3560000000000000000,"y":-379000000000000000,"z":-325000000000000000}},"30001893":{"solarSystemId":30001893,"solarSystemName":"D:114S","location":{"x":-3790000000000000000,"y":-160000000000000000,"z":-127000000000000000}},"30001894":{"solarSystemId":30001894,"solarSystemName":"D:2VEV","location":{"x":-3720000000000000000,"y":-321000000000000000,"z":-199000000000000000}},"30001895":{"solarSystemId":30001895,"solarSystemName":"B:3OR2","location":{"x":-3800000000000000000,"y":-307000000000000000,"z":44200000000000000}},"30001896":{"solarSystemId":30001896,"solarSystemName":"U:32OO","location":{"x":-3720000000000000000,"y":-330000000000000000,"z":-216000000000000000}},"30001897":{"solarSystemId":30001897,"solarSystemName":"P:2SIR","location":{"x":-3640000000000000000,"y":-380000000000000000,"z":-267000000000000000}},"30001898":{"solarSystemId":30001898,"solarSystemName":"F:2O82","location":{"x":-3700000000000000000,"y":-684000000000000000,"z":-512000000000000000}},"30001899":{"solarSystemId":30001899,"solarSystemName":"U:3TTL","location":{"x":-3610000000000000000,"y":143000000000000000,"z":38700000000000000}},"30001900":{"solarSystemId":30001900,"solarSystemName":"Q:2VVO","location":{"x":-3510000000000000000,"y":-42700000000000000,"z":-352000000000000000}},"30001901":{"solarSystemId":30001901,"solarSystemName":"D:2R0K","location":{"x":-3690000000000000000,"y":-190000000000000000,"z":-214000000000000000}},"30001902":{"solarSystemId":30001902,"solarSystemName":"H:2LAN","location":{"x":-3090000000000000000,"y":-408000000000000000,"z":575000000000000000}},"30001903":{"solarSystemId":30001903,"solarSystemName":"M:3N6E","location":{"x":-3210000000000000000,"y":-386000000000000000,"z":467000000000000000}},"30001904":{"solarSystemId":30001904,"solarSystemName":"Q:3695","location":{"x":-3290000000000000000,"y":-650000000000000000,"z":492000000000000000}},"30001905":{"solarSystemId":30001905,"solarSystemName":"B:29O2","location":{"x":-3230000000000000000,"y":-400000000000000000,"z":508000000000000000}},"30001906":{"solarSystemId":30001906,"solarSystemName":"J:3ORO","location":{"x":-3520000000000000000,"y":-465000000000000000,"z":352000000000000000}},"30001907":{"solarSystemId":30001907,"solarSystemName":"F:3SNN","location":{"x":-3150000000000000000,"y":-650000000000000000,"z":189000000000000000}},"30001908":{"solarSystemId":30001908,"solarSystemName":"J:3S83","location":{"x":-3450000000000000000,"y":-508000000000000000,"z":269000000000000000}},"30001909":{"solarSystemId":30001909,"solarSystemName":"F:306K","location":{"x":-3240000000000000000,"y":-475000000000000000,"z":598000000000000000}},"30001910":{"solarSystemId":30001910,"solarSystemName":"D:31T1","location":{"x":-3210000000000000000,"y":-455000000000000000,"z":428000000000000000}},"30001911":{"solarSystemId":30001911,"solarSystemName":"F:3I46","location":{"x":-3270000000000000000,"y":-293000000000000000,"z":385000000000000000}},"30001912":{"solarSystemId":30001912,"solarSystemName":"M:3NO6","location":{"x":-3220000000000000000,"y":-296000000000000000,"z":89000000000000000}},"30001913":{"solarSystemId":30001913,"solarSystemName":"J:31KA","location":{"x":-3210000000000000000,"y":-585000000000000000,"z":519000000000000000}},"30001914":{"solarSystemId":30001914,"solarSystemName":"Z:2T9L","location":{"x":-3140000000000000000,"y":-505000000000000000,"z":194000000000000000}},"30001915":{"solarSystemId":30001915,"solarSystemName":"H:3I8E","location":{"x":-3280000000000000000,"y":-453000000000000000,"z":109000000000000000}},"30001916":{"solarSystemId":30001916,"solarSystemName":"Y:2IE8","location":{"x":-3150000000000000000,"y":-373000000000000000,"z":108000000000000000}},"30001917":{"solarSystemId":30001917,"solarSystemName":"U:3I1V","location":{"x":-3260000000000000000,"y":-286000000000000000,"z":295000000000000000}},"30001918":{"solarSystemId":30001918,"solarSystemName":"U:3SS8","location":{"x":-3180000000000000000,"y":-453000000000000000,"z":148000000000000000}},"30001919":{"solarSystemId":30001919,"solarSystemName":"U:3AV0","location":{"x":-3200000000000000000,"y":-583000000000000000,"z":383000000000000000}},"30001920":{"solarSystemId":30001920,"solarSystemName":"F:33RR","location":{"x":-3110000000000000000,"y":-430000000000000000,"z":193000000000000000}},"30001921":{"solarSystemId":30001921,"solarSystemName":"G:31LR","location":{"x":-3210000000000000000,"y":-481000000000000000,"z":54100000000000000}},"30001922":{"solarSystemId":30001922,"solarSystemName":"M:2SR2","location":{"x":-3190000000000000000,"y":-566000000000000000,"z":258000000000000000}},"30001923":{"solarSystemId":30001923,"solarSystemName":"J:312O","location":{"x":-3230000000000000000,"y":-596000000000000000,"z":445000000000000000}},"30001924":{"solarSystemId":30001924,"solarSystemName":"B:3915","location":{"x":-6050000000000000000,"y":36400000000000000,"z":-1120000000000000000}},"30001925":{"solarSystemId":30001925,"solarSystemName":"P:3IOO","location":{"x":-6160000000000000000,"y":672000000000000000,"z":-899000000000000000}},"30001926":{"solarSystemId":30001926,"solarSystemName":"B:27NS","location":{"x":-6500000000000000000,"y":197000000000000000,"z":-711000000000000000}},"30001927":{"solarSystemId":30001927,"solarSystemName":"M:26O4","location":{"x":-7130000000000000000,"y":79200000000000000,"z":-825000000000000000}},"30001928":{"solarSystemId":30001928,"solarSystemName":"P:1T5O","location":{"x":-6010000000000000000,"y":109000000000000000,"z":-1160000000000000000}},"30001929":{"solarSystemId":30001929,"solarSystemName":"J:1461","location":{"x":-6200000000000000000,"y":601000000000000000,"z":-855000000000000000}},"30001930":{"solarSystemId":30001930,"solarSystemName":"J:2006","location":{"x":-6250000000000000000,"y":166000000000000000,"z":-721000000000000000}},"30001931":{"solarSystemId":30001931,"solarSystemName":"Y:1L1V","location":{"x":-7240000000000000000,"y":-225000000000000000,"z":-890000000000000000}},"30001932":{"solarSystemId":30001932,"solarSystemName":"H:3T6L","location":{"x":-7270000000000000000,"y":-53000000000000000,"z":-1020000000000000000}},"30001933":{"solarSystemId":30001933,"solarSystemName":"Q:1108","location":{"x":-6670000000000000000,"y":440000000000000000,"z":-958000000000000000}},"30001934":{"solarSystemId":30001934,"solarSystemName":"P:20II","location":{"x":-6070000000000000000,"y":91400000000000000,"z":-1080000000000000000}},"30001935":{"solarSystemId":30001935,"solarSystemName":"Q:13N2","location":{"x":-6740000000000000000,"y":-48100000000000000,"z":-987000000000000000}},"30001936":{"solarSystemId":30001936,"solarSystemName":"F:3A44","location":{"x":-6800000000000000000,"y":702000000000000000,"z":-642000000000000000}},"30001937":{"solarSystemId":30001937,"solarSystemName":"H:2LNT","location":{"x":-7170000000000000000,"y":102000000000000000,"z":-1070000000000000000}},"30001938":{"solarSystemId":30001938,"solarSystemName":"J:26KO","location":{"x":-5810000000000000000,"y":337000000000000000,"z":-756000000000000000}},"30001939":{"solarSystemId":30001939,"solarSystemName":"U:2I78","location":{"x":-6390000000000000000,"y":238000000000000000,"z":-1180000000000000000}},"30001940":{"solarSystemId":30001940,"solarSystemName":"M:2727","location":{"x":-6740000000000000000,"y":-166000000000000000,"z":-1040000000000000000}},"30001941":{"solarSystemId":30001941,"solarSystemName":"D:31LE","location":{"x":-7370000000000000000,"y":-407000000000000000,"z":-1310000000000000000}},"30001942":{"solarSystemId":30001942,"solarSystemName":"D:25L9","location":{"x":-7260000000000000000,"y":335000000000000000,"z":-709000000000000000}},"30001943":{"solarSystemId":30001943,"solarSystemName":"G:2IE7","location":{"x":-6410000000000000000,"y":440000000000000000,"z":-940000000000000000}},"30001944":{"solarSystemId":30001944,"solarSystemName":"H:39T0","location":{"x":-5900000000000000000,"y":384000000000000000,"z":-1330000000000000000}},"30001945":{"solarSystemId":30001945,"solarSystemName":"F:2IAN","location":{"x":-6620000000000000000,"y":147000000000000000,"z":-1030000000000000000}},"30001946":{"solarSystemId":30001946,"solarSystemName":"F:3I81","location":{"x":-6800000000000000000,"y":740000000000000000,"z":-856000000000000000}},"30001947":{"solarSystemId":30001947,"solarSystemName":"Z:E6LS","location":{"x":-6280000000000000000,"y":377000000000000000,"z":-1140000000000000000}},"30001948":{"solarSystemId":30001948,"solarSystemName":"U:2079","location":{"x":-6470000000000000000,"y":505000000000000000,"z":-983000000000000000}},"30001949":{"solarSystemId":30001949,"solarSystemName":"Q:51RI","location":{"x":-6380000000000000000,"y":182000000000000000,"z":-1400000000000000000}},"30001950":{"solarSystemId":30001950,"solarSystemName":"H:2S42","location":{"x":-5660000000000000000,"y":-337000000000000000,"z":-739000000000000000}},"30001951":{"solarSystemId":30001951,"solarSystemName":"F:3IA7","location":{"x":-5330000000000000000,"y":-71000000000000000,"z":-560000000000000000}},"30001952":{"solarSystemId":30001952,"solarSystemName":"B:2LT2","location":{"x":-5440000000000000000,"y":-641000000000000000,"z":-1210000000000000000}},"30001953":{"solarSystemId":30001953,"solarSystemName":"D:1L09","location":{"x":-5790000000000000000,"y":-21400000000000000,"z":-378000000000000000}},"30001954":{"solarSystemId":30001954,"solarSystemName":"G:R671","location":{"x":-5340000000000000000,"y":-178000000000000000,"z":-757000000000000000}},"30001955":{"solarSystemId":30001955,"solarSystemName":"J:1447","location":{"x":-6210000000000000000,"y":-227000000000000000,"z":-707000000000000000}},"30001956":{"solarSystemId":30001956,"solarSystemName":"P:LOV1","location":{"x":-5270000000000000000,"y":-245000000000000000,"z":-538000000000000000}},"30001957":{"solarSystemId":30001957,"solarSystemName":"B:18E2","location":{"x":-6190000000000000000,"y":-137000000000000000,"z":-888000000000000000}},"30001958":{"solarSystemId":30001958,"solarSystemName":"P:24NL","location":{"x":-5480000000000000000,"y":-97100000000000000,"z":-353000000000000000}},"30001959":{"solarSystemId":30001959,"solarSystemName":"Y:28LR","location":{"x":-5840000000000000000,"y":-690000000000000000,"z":-259000000000000000}},"30001960":{"solarSystemId":30001960,"solarSystemName":"J:3O61","location":{"x":-6100000000000000000,"y":-399000000000000000,"z":-1190000000000000000}},"30001961":{"solarSystemId":30001961,"solarSystemName":"Q:24L7","location":{"x":-5430000000000000000,"y":-126000000000000000,"z":-382000000000000000}},"30001962":{"solarSystemId":30001962,"solarSystemName":"H:3IRA","location":{"x":-6010000000000000000,"y":-730000000000000000,"z":-580000000000000000}},"30001963":{"solarSystemId":30001963,"solarSystemName":"H:1O0O","location":{"x":-5480000000000000000,"y":-593000000000000000,"z":-832000000000000000}},"30001964":{"solarSystemId":30001964,"solarSystemName":"U:EL18","location":{"x":-5740000000000000000,"y":32000000000000000,"z":-200000000000000000}},"30001965":{"solarSystemId":30001965,"solarSystemName":"G:520I","location":{"x":-5940000000000000000,"y":-498000000000000000,"z":-214000000000000000}},"30001966":{"solarSystemId":30001966,"solarSystemName":"P:33S1","location":{"x":-6390000000000000000,"y":-678000000000000000,"z":-583000000000000000}},"30001967":{"solarSystemId":30001967,"solarSystemName":"U:29R6","location":{"x":-5600000000000000000,"y":-253000000000000000,"z":-386000000000000000}},"30001968":{"solarSystemId":30001968,"solarSystemName":"Y:26AR","location":{"x":-5980000000000000000,"y":-448000000000000000,"z":-1030000000000000000}},"30001969":{"solarSystemId":30001969,"solarSystemName":"F:25S8","location":{"x":-5410000000000000000,"y":-727000000000000000,"z":-470000000000000000}},"30001970":{"solarSystemId":30001970,"solarSystemName":"Z:3OKS","location":{"x":-5320000000000000000,"y":-53700000000000000,"z":-607000000000000000}},"30001971":{"solarSystemId":30001971,"solarSystemName":"P:3SIL","location":{"x":-5460000000000000000,"y":-850000000000000000,"z":-678000000000000000}},"30001972":{"solarSystemId":30001972,"solarSystemName":"U:2LOV","location":{"x":-5730000000000000000,"y":-573000000000000000,"z":-811000000000000000}},"30001973":{"solarSystemId":30001973,"solarSystemName":"P:3R6V","location":{"x":-6130000000000000000,"y":-177000000000000000,"z":-1390000000000000000}},"30001974":{"solarSystemId":30001974,"solarSystemName":"G:37E4","location":{"x":-5760000000000000000,"y":-417000000000000000,"z":-617000000000000000}},"30001975":{"solarSystemId":30001975,"solarSystemName":"U:39A7","location":{"x":-6130000000000000000,"y":-864000000000000000,"z":-439000000000000000}},"30001976":{"solarSystemId":30001976,"solarSystemName":"Y:3A4E","location":{"x":-6000000000000000000,"y":-990000000000000000,"z":-512000000000000000}},"30001977":{"solarSystemId":30001977,"solarSystemName":"U:2O0N","location":{"x":-4930000000000000000,"y":-218000000000000000,"z":-1090000000000000000}},"30001978":{"solarSystemId":30001978,"solarSystemName":"Z:2K43","location":{"x":-4490000000000000000,"y":564000000000000000,"z":-1410000000000000000}},"30001979":{"solarSystemId":30001979,"solarSystemName":"P:350I","location":{"x":-5420000000000000000,"y":277000000000000000,"z":-1150000000000000000}},"30001980":{"solarSystemId":30001980,"solarSystemName":"P:2NE6","location":{"x":-4010000000000000000,"y":587000000000000000,"z":-1420000000000000000}},"30001981":{"solarSystemId":30001981,"solarSystemName":"P:2S02","location":{"x":-4210000000000000000,"y":-101000000000000000,"z":-1440000000000000000}},"30001982":{"solarSystemId":30001982,"solarSystemName":"Q:2E41","location":{"x":-4590000000000000000,"y":623000000000000000,"z":-1150000000000000000}},"30001983":{"solarSystemId":30001983,"solarSystemName":"Y:3VET","location":{"x":-4070000000000000000,"y":524000000000000000,"z":-1290000000000000000}},"30001984":{"solarSystemId":30001984,"solarSystemName":"Z:3125","location":{"x":-4680000000000000000,"y":260000000000000000,"z":-1500000000000000000}},"30001985":{"solarSystemId":30001985,"solarSystemName":"B:3761","location":{"x":-4440000000000000000,"y":74800000000000000,"z":-1050000000000000000}},"30001986":{"solarSystemId":30001986,"solarSystemName":"G:N48N","location":{"x":-5050000000000000000,"y":-169000000000000000,"z":-1450000000000000000}},"30001987":{"solarSystemId":30001987,"solarSystemName":"Q:33S9","location":{"x":-4280000000000000000,"y":510000000000000000,"z":-1720000000000000000}},"30001988":{"solarSystemId":30001988,"solarSystemName":"M:3V01","location":{"x":-5300000000000000000,"y":106000000000000000,"z":-831000000000000000}},"30001989":{"solarSystemId":30001989,"solarSystemName":"G:2NN1","location":{"x":-5600000000000000000,"y":-127000000000000000,"z":-1290000000000000000}},"30001990":{"solarSystemId":30001990,"solarSystemName":"Q:12L4","location":{"x":-5170000000000000000,"y":39000000000000000,"z":-1440000000000000000}},"30001991":{"solarSystemId":30001991,"solarSystemName":"P:14EE","location":{"x":-4850000000000000000,"y":134000000000000000,"z":-1400000000000000000}},"30001992":{"solarSystemId":30001992,"solarSystemName":"Q:2130","location":{"x":-5390000000000000000,"y":-63800000000000000,"z":-1410000000000000000}},"30001993":{"solarSystemId":30001993,"solarSystemName":"G:SALE","location":{"x":-4420000000000000000,"y":20500000000000000,"z":-1590000000000000000}},"30001994":{"solarSystemId":30001994,"solarSystemName":"F:2OSE","location":{"x":-4380000000000000000,"y":-147000000000000000,"z":-1270000000000000000}},"30001995":{"solarSystemId":30001995,"solarSystemName":"H:1RL7","location":{"x":-4430000000000000000,"y":301000000000000000,"z":-1770000000000000000}},"30001996":{"solarSystemId":30001996,"solarSystemName":"J:52TA","location":{"x":-4270000000000000000,"y":30300000000000000,"z":-1140000000000000000}},"30001997":{"solarSystemId":30001997,"solarSystemName":"H:10IA","location":{"x":-4850000000000000000,"y":140000000000000000,"z":-1710000000000000000}},"30001998":{"solarSystemId":30001998,"solarSystemName":"M:3STI","location":{"x":-4340000000000000000,"y":259000000000000000,"z":-1210000000000000000}},"30001999":{"solarSystemId":30001999,"solarSystemName":"M:33AA","location":{"x":-4870000000000000000,"y":181000000000000000,"z":-1220000000000000000}},"30002000":{"solarSystemId":30002000,"solarSystemName":"G:3TN5","location":{"x":-4980000000000000000,"y":159000000000000000,"z":-1100000000000000000}},"30002001":{"solarSystemId":30002001,"solarSystemName":"Q:29E4","location":{"x":-4270000000000000000,"y":145000000000000000,"z":-1040000000000000000}},"30002002":{"solarSystemId":30002002,"solarSystemName":"D:2E9I","location":{"x":-4360000000000000000,"y":316000000000000000,"z":-1220000000000000000}},"30002003":{"solarSystemId":30002003,"solarSystemName":"P:3S8E","location":{"x":-4440000000000000000,"y":549000000000000000,"z":-824000000000000000}},"30002004":{"solarSystemId":30002004,"solarSystemName":"D:34NS","location":{"x":-4420000000000000000,"y":102000000000000000,"z":-1260000000000000000}},"30002005":{"solarSystemId":30002005,"solarSystemName":"H:2VRT","location":{"x":-4940000000000000000,"y":-1290000000000000000,"z":-1810000000000000000}},"30002006":{"solarSystemId":30002006,"solarSystemName":"G:3NI9","location":{"x":-5100000000000000000,"y":-1290000000000000000,"z":-1540000000000000000}},"30002007":{"solarSystemId":30002007,"solarSystemName":"J:36V9","location":{"x":-5360000000000000000,"y":-2180000000000000000,"z":-1900000000000000000}},"30002008":{"solarSystemId":30002008,"solarSystemName":"B:3RL5","location":{"x":-5480000000000000000,"y":-1050000000000000000,"z":-2190000000000000000}},"30002009":{"solarSystemId":30002009,"solarSystemName":"D:2L8R","location":{"x":-5950000000000000000,"y":-1490000000000000000,"z":-1030000000000000000}},"30002010":{"solarSystemId":30002010,"solarSystemName":"U:364K","location":{"x":-5390000000000000000,"y":-2170000000000000000,"z":-1960000000000000000}},"30002011":{"solarSystemId":30002011,"solarSystemName":"H:34E8","location":{"x":-4530000000000000000,"y":-1260000000000000000,"z":-1630000000000000000}},"30002012":{"solarSystemId":30002012,"solarSystemName":"Z:22O6","location":{"x":-4940000000000000000,"y":-771000000000000000,"z":-2450000000000000000}},"30002013":{"solarSystemId":30002013,"solarSystemName":"F:36S9","location":{"x":-5580000000000000000,"y":-596000000000000000,"z":-1810000000000000000}},"30002014":{"solarSystemId":30002014,"solarSystemName":"Q:2LA2","location":{"x":-5110000000000000000,"y":-881000000000000000,"z":-1020000000000000000}},"30002015":{"solarSystemId":30002015,"solarSystemName":"B:362S","location":{"x":-5100000000000000000,"y":-1070000000000000000,"z":-1710000000000000000}},"30002016":{"solarSystemId":30002016,"solarSystemName":"Q:3E31","location":{"x":-5120000000000000000,"y":-900000000000000000,"z":-2000000000000000000}},"30002017":{"solarSystemId":30002017,"solarSystemName":"F:2T8I","location":{"x":-5460000000000000000,"y":-1740000000000000000,"z":-1720000000000000000}},"30002018":{"solarSystemId":30002018,"solarSystemName":"Y:335V","location":{"x":-5240000000000000000,"y":-773000000000000000,"z":-2250000000000000000}},"30002019":{"solarSystemId":30002019,"solarSystemName":"J:35VL","location":{"x":-5360000000000000000,"y":-1940000000000000000,"z":-1380000000000000000}},"30002020":{"solarSystemId":30002020,"solarSystemName":"U:2V67","location":{"x":-5330000000000000000,"y":-2010000000000000000,"z":-2010000000000000000}},"30002021":{"solarSystemId":30002021,"solarSystemName":"B:3E5L","location":{"x":-6220000000000000000,"y":-1590000000000000000,"z":-1570000000000000000}},"30002022":{"solarSystemId":30002022,"solarSystemName":"J:37I3","location":{"x":-5420000000000000000,"y":-1140000000000000000,"z":-899000000000000000}},"30002023":{"solarSystemId":30002023,"solarSystemName":"F:2IR9","location":{"x":-6830000000000000000,"y":-1250000000000000000,"z":-2630000000000000000}},"30002024":{"solarSystemId":30002024,"solarSystemName":"Y:2L84","location":{"x":-5910000000000000000,"y":-865000000000000000,"z":-2390000000000000000}},"30002025":{"solarSystemId":30002025,"solarSystemName":"B:35NA","location":{"x":-6130000000000000000,"y":-484000000000000000,"z":-2700000000000000000}},"30002026":{"solarSystemId":30002026,"solarSystemName":"H:1A3E","location":{"x":-6410000000000000000,"y":-334000000000000000,"z":-2810000000000000000}},"30002027":{"solarSystemId":30002027,"solarSystemName":"Y:3926","location":{"x":-6320000000000000000,"y":-393000000000000000,"z":-2470000000000000000}},"30002028":{"solarSystemId":30002028,"solarSystemName":"Z:2K8R","location":{"x":-6030000000000000000,"y":-594000000000000000,"z":-2570000000000000000}},"30002029":{"solarSystemId":30002029,"solarSystemName":"P:2618","location":{"x":-6770000000000000000,"y":-597000000000000000,"z":-2150000000000000000}},"30002030":{"solarSystemId":30002030,"solarSystemName":"P:37S1","location":{"x":-5780000000000000000,"y":-722000000000000000,"z":-2110000000000000000}},"30002031":{"solarSystemId":30002031,"solarSystemName":"Q:1NS1","location":{"x":-6760000000000000000,"y":-632000000000000000,"z":-2150000000000000000}},"30002032":{"solarSystemId":30002032,"solarSystemName":"D:V58O","location":{"x":-5910000000000000000,"y":-234000000000000000,"z":-2260000000000000000}},"30002033":{"solarSystemId":30002033,"solarSystemName":"Y:1N4R","location":{"x":-6510000000000000000,"y":-952000000000000000,"z":-1360000000000000000}},"30002034":{"solarSystemId":30002034,"solarSystemName":"Z:1099","location":{"x":-6050000000000000000,"y":-418000000000000000,"z":-2640000000000000000}},"30002035":{"solarSystemId":30002035,"solarSystemName":"G:32R5","location":{"x":-6350000000000000000,"y":-913000000000000000,"z":-2360000000000000000}},"30002036":{"solarSystemId":30002036,"solarSystemName":"Q:231R","location":{"x":-6600000000000000000,"y":-931000000000000000,"z":-1560000000000000000}},"30002037":{"solarSystemId":30002037,"solarSystemName":"D:35O9","location":{"x":-7020000000000000000,"y":-743000000000000000,"z":-1150000000000000000}},"30002038":{"solarSystemId":30002038,"solarSystemName":"Z:2TIK","location":{"x":-5820000000000000000,"y":-1460000000000000000,"z":-2230000000000000000}},"30002039":{"solarSystemId":30002039,"solarSystemName":"U:274S","location":{"x":-5610000000000000000,"y":-916000000000000000,"z":-2190000000000000000}},"30002040":{"solarSystemId":30002040,"solarSystemName":"J:32V3","location":{"x":-6590000000000000000,"y":-876000000000000000,"z":-2020000000000000000}},"30002041":{"solarSystemId":30002041,"solarSystemName":"G:3V02","location":{"x":-6060000000000000000,"y":-467000000000000000,"z":-2090000000000000000}},"30002042":{"solarSystemId":30002042,"solarSystemName":"M:3V6I","location":{"x":-6250000000000000000,"y":-319000000000000000,"z":-1990000000000000000}},"30002043":{"solarSystemId":30002043,"solarSystemName":"Y:385A","location":{"x":-6220000000000000000,"y":-217000000000000000,"z":-1950000000000000000}},"30002044":{"solarSystemId":30002044,"solarSystemName":"J:2R7L","location":{"x":-4490000000000000000,"y":-787000000000000000,"z":-439000000000000000}},"30002045":{"solarSystemId":30002045,"solarSystemName":"U:3I91","location":{"x":-4680000000000000000,"y":-1330000000000000000,"z":-460000000000000000}},"30002046":{"solarSystemId":30002046,"solarSystemName":"B:3E0O","location":{"x":-4940000000000000000,"y":-1460000000000000000,"z":-1050000000000000000}},"30002047":{"solarSystemId":30002047,"solarSystemName":"M:399V","location":{"x":-4410000000000000000,"y":-1300000000000000000,"z":-895000000000000000}},"30002048":{"solarSystemId":30002048,"solarSystemName":"H:3098","location":{"x":-4520000000000000000,"y":-1220000000000000000,"z":-813000000000000000}},"30002049":{"solarSystemId":30002049,"solarSystemName":"U:3S73","location":{"x":-4810000000000000000,"y":-761000000000000000,"z":-881000000000000000}},"30002050":{"solarSystemId":30002050,"solarSystemName":"G:3NE6","location":{"x":-4390000000000000000,"y":-818000000000000000,"z":-718000000000000000}},"30002051":{"solarSystemId":30002051,"solarSystemName":"P:347K","location":{"x":-3860000000000000000,"y":-1230000000000000000,"z":-1460000000000000000}},"30002052":{"solarSystemId":30002052,"solarSystemName":"M:330S","location":{"x":-4960000000000000000,"y":-1090000000000000000,"z":-1060000000000000000}},"30002053":{"solarSystemId":30002053,"solarSystemName":"P:38T2","location":{"x":-3970000000000000000,"y":-1210000000000000000,"z":-604000000000000000}},"30002054":{"solarSystemId":30002054,"solarSystemName":"H:37LR","location":{"x":-4110000000000000000,"y":-1170000000000000000,"z":-1400000000000000000}},"30002055":{"solarSystemId":30002055,"solarSystemName":"U:307A","location":{"x":-3910000000000000000,"y":-931000000000000000,"z":-1280000000000000000}},"30002056":{"solarSystemId":30002056,"solarSystemName":"U:3I96","location":{"x":-4850000000000000000,"y":-1540000000000000000,"z":-116000000000000000}},"30002057":{"solarSystemId":30002057,"solarSystemName":"B:2594","location":{"x":-4850000000000000000,"y":-791000000000000000,"z":-760000000000000000}},"30002058":{"solarSystemId":30002058,"solarSystemName":"G:3771","location":{"x":-4350000000000000000,"y":-682000000000000000,"z":-849000000000000000}},"30002059":{"solarSystemId":30002059,"solarSystemName":"U:35SE","location":{"x":-4570000000000000000,"y":-1120000000000000000,"z":-302000000000000000}},"30002060":{"solarSystemId":30002060,"solarSystemName":"F:3OI6","location":{"x":-4020000000000000000,"y":-1590000000000000000,"z":-1000000000000000000}},"30002061":{"solarSystemId":30002061,"solarSystemName":"Z:3688","location":{"x":-3970000000000000000,"y":-1370000000000000000,"z":-659000000000000000}},"30002062":{"solarSystemId":30002062,"solarSystemName":"P:2IV0","location":{"x":-4350000000000000000,"y":-1010000000000000000,"z":-727000000000000000}},"30002063":{"solarSystemId":30002063,"solarSystemName":"G:2TK6","location":{"x":-4490000000000000000,"y":-1790000000000000000,"z":-625000000000000000}},"30002064":{"solarSystemId":30002064,"solarSystemName":"B:2E5E","location":{"x":-4770000000000000000,"y":-1440000000000000000,"z":-333000000000000000}},"30002065":{"solarSystemId":30002065,"solarSystemName":"Q:2R74","location":{"x":-5550000000000000000,"y":-34300000000000000,"z":-1730000000000000000}},"30002066":{"solarSystemId":30002066,"solarSystemName":"Q:2RO6","location":{"x":-4810000000000000000,"y":122000000000000000,"z":-2460000000000000000}},"30002067":{"solarSystemId":30002067,"solarSystemName":"Q:27ES","location":{"x":-4720000000000000000,"y":-180000000000000000,"z":-2230000000000000000}},"30002068":{"solarSystemId":30002068,"solarSystemName":"B:33OT","location":{"x":-4690000000000000000,"y":3580000000000000,"z":-2720000000000000000}},"30002069":{"solarSystemId":30002069,"solarSystemName":"Z:1TKV","location":{"x":-5350000000000000000,"y":-373000000000000000,"z":-2190000000000000000}},"30002070":{"solarSystemId":30002070,"solarSystemName":"Y:363S","location":{"x":-4480000000000000000,"y":96000000000000000,"z":-2470000000000000000}},"30002071":{"solarSystemId":30002071,"solarSystemName":"U:27N1","location":{"x":-5010000000000000000,"y":-275000000000000000,"z":-1930000000000000000}},"30002072":{"solarSystemId":30002072,"solarSystemName":"U:21KV","location":{"x":-5510000000000000000,"y":77800000000000000,"z":-2470000000000000000}},"30002073":{"solarSystemId":30002073,"solarSystemName":"Y:1OIK","location":{"x":-5890000000000000000,"y":122000000000000000,"z":-2440000000000000000}},"30002074":{"solarSystemId":30002074,"solarSystemName":"Y:3IR8","location":{"x":-5540000000000000000,"y":-522000000000000000,"z":-2530000000000000000}},"30002075":{"solarSystemId":30002075,"solarSystemName":"P:1O4T","location":{"x":-5180000000000000000,"y":38700000000000000,"z":-1620000000000000000}},"30002076":{"solarSystemId":30002076,"solarSystemName":"U:393L","location":{"x":-6050000000000000000,"y":341000000000000000,"z":-1780000000000000000}},"30002077":{"solarSystemId":30002077,"solarSystemName":"Q:2R94","location":{"x":-4840000000000000000,"y":384000000000000000,"z":-1870000000000000000}},"30002078":{"solarSystemId":30002078,"solarSystemName":"F:OLN3","location":{"x":-5600000000000000000,"y":-557000000000000000,"z":-2500000000000000000}},"30002079":{"solarSystemId":30002079,"solarSystemName":"G:2T98","location":{"x":-5300000000000000000,"y":1230000000000000,"z":-2320000000000000000}},"30002080":{"solarSystemId":30002080,"solarSystemName":"J:1RV7","location":{"x":-4930000000000000000,"y":-121000000000000000,"z":-2120000000000000000}},"30002081":{"solarSystemId":30002081,"solarSystemName":"M:1NVL","location":{"x":-6010000000000000000,"y":204000000000000000,"z":-2290000000000000000}},"30002082":{"solarSystemId":30002082,"solarSystemName":"H:1LST","location":{"x":-5370000000000000000,"y":-553000000000000000,"z":-2270000000000000000}},"30002083":{"solarSystemId":30002083,"solarSystemName":"B:4AT8","location":{"x":-5820000000000000000,"y":235000000000000000,"z":-1850000000000000000}},"30002084":{"solarSystemId":30002084,"solarSystemName":"Y:1V26","location":{"x":-5700000000000000000,"y":-8160000000000000,"z":-1970000000000000000}},"30002085":{"solarSystemId":30002085,"solarSystemName":"G:15A3","location":{"x":-5330000000000000000,"y":316000000000000000,"z":-2220000000000000000}},"30002086":{"solarSystemId":30002086,"solarSystemName":"D:IRRA","location":{"x":-5540000000000000000,"y":38100000000000000,"z":-1610000000000000000}},"30002087":{"solarSystemId":30002087,"solarSystemName":"P:37EO","location":{"x":-5390000000000000000,"y":301000000000000000,"z":-1580000000000000000}},"30002088":{"solarSystemId":30002088,"solarSystemName":"H:15R5","location":{"x":-5270000000000000000,"y":302000000000000000,"z":-2490000000000000000}},"30002089":{"solarSystemId":30002089,"solarSystemName":"Y:17AT","location":{"x":-5130000000000000000,"y":533000000000000000,"z":-2680000000000000000}},"30002090":{"solarSystemId":30002090,"solarSystemName":"H:16TR","location":{"x":-5320000000000000000,"y":-144000000000000000,"z":-1820000000000000000}},"30002091":{"solarSystemId":30002091,"solarSystemName":"F:173S","location":{"x":-5120000000000000000,"y":-361000000000000000,"z":-2320000000000000000}},"30002092":{"solarSystemId":30002092,"solarSystemName":"Q:377E","location":{"x":-4960000000000000000,"y":464000000000000000,"z":-1660000000000000000}},"30002093":{"solarSystemId":30002093,"solarSystemName":"M:10EN","location":{"x":-5550000000000000000,"y":-108000000000000000,"z":-1670000000000000000}},"30002094":{"solarSystemId":30002094,"solarSystemName":"J:3I60","location":{"x":-5120000000000000000,"y":-623000000000000000,"z":-1280000000000000000}},"30002095":{"solarSystemId":30002095,"solarSystemName":"Z:34N6","location":{"x":-4170000000000000000,"y":-759000000000000000,"z":-1340000000000000000}},"30002096":{"solarSystemId":30002096,"solarSystemName":"J:3ER1","location":{"x":-4710000000000000000,"y":-771000000000000000,"z":-1230000000000000000}},"30002097":{"solarSystemId":30002097,"solarSystemName":"Q:3422","location":{"x":-4190000000000000000,"y":-647000000000000000,"z":-1030000000000000000}},"30002098":{"solarSystemId":30002098,"solarSystemName":"U:36E6","location":{"x":-5000000000000000000,"y":-528000000000000000,"z":-1760000000000000000}},"30002099":{"solarSystemId":30002099,"solarSystemName":"Q:3N0R","location":{"x":-4430000000000000000,"y":-489000000000000000,"z":-1530000000000000000}},"30002100":{"solarSystemId":30002100,"solarSystemName":"Q:2R33","location":{"x":-4210000000000000000,"y":-633000000000000000,"z":-675000000000000000}},"30002101":{"solarSystemId":30002101,"solarSystemName":"P:2V12","location":{"x":-4300000000000000000,"y":-601000000000000000,"z":-760000000000000000}},"30002102":{"solarSystemId":30002102,"solarSystemName":"Z:V710","location":{"x":-4260000000000000000,"y":-190000000000000000,"z":-1140000000000000000}},"30002103":{"solarSystemId":30002103,"solarSystemName":"Z:1O6E","location":{"x":-4400000000000000000,"y":-376000000000000000,"z":-1070000000000000000}},"30002104":{"solarSystemId":30002104,"solarSystemName":"M:1O43","location":{"x":-4980000000000000000,"y":-463000000000000000,"z":-1860000000000000000}},"30002105":{"solarSystemId":30002105,"solarSystemName":"Y:1SI2","location":{"x":-5220000000000000000,"y":-549000000000000000,"z":-1660000000000000000}},"30002106":{"solarSystemId":30002106,"solarSystemName":"B:3E90","location":{"x":-4530000000000000000,"y":-657000000000000000,"z":-569000000000000000}},"30002107":{"solarSystemId":30002107,"solarSystemName":"P:2E2N","location":{"x":-4250000000000000000,"y":-513000000000000000,"z":-709000000000000000}},"30002108":{"solarSystemId":30002108,"solarSystemName":"H:NK9O","location":{"x":-4200000000000000000,"y":-452000000000000000,"z":-794000000000000000}},"30002109":{"solarSystemId":30002109,"solarSystemName":"Y:3N58","location":{"x":-4870000000000000000,"y":-521000000000000000,"z":-1100000000000000000}},"30002110":{"solarSystemId":30002110,"solarSystemName":"D:376R","location":{"x":-4330000000000000000,"y":-645000000000000000,"z":-595000000000000000}},"30002111":{"solarSystemId":30002111,"solarSystemName":"J:3ANS","location":{"x":-4890000000000000000,"y":-680000000000000000,"z":-1490000000000000000}},"30002112":{"solarSystemId":30002112,"solarSystemName":"F:35L7","location":{"x":-4790000000000000000,"y":-487000000000000000,"z":-1820000000000000000}},"30002113":{"solarSystemId":30002113,"solarSystemName":"J:3231","location":{"x":-4230000000000000000,"y":-662000000000000000,"z":-1160000000000000000}},"30002114":{"solarSystemId":30002114,"solarSystemName":"Q:3V18","location":{"x":-4700000000000000000,"y":-618000000000000000,"z":-1780000000000000000}},"30002115":{"solarSystemId":30002115,"solarSystemName":"H:3796","location":{"x":-4270000000000000000,"y":-582000000000000000,"z":-1280000000000000000}},"30002116":{"solarSystemId":30002116,"solarSystemName":"Q:3V59","location":{"x":-6060000000000000000,"y":-133000000000000000,"z":-1970000000000000000}},"30002117":{"solarSystemId":30002117,"solarSystemName":"F:34AN","location":{"x":-6390000000000000000,"y":3620000000000000,"z":-2450000000000000000}},"30002118":{"solarSystemId":30002118,"solarSystemName":"Z:2RL4","location":{"x":-7400000000000000000,"y":-725000000000000000,"z":-1980000000000000000}},"30002119":{"solarSystemId":30002119,"solarSystemName":"M:1AAI","location":{"x":-6470000000000000000,"y":792000000000000000,"z":-2500000000000000000}},"30002120":{"solarSystemId":30002120,"solarSystemName":"U:1S3N","location":{"x":-6630000000000000000,"y":525000000000000000,"z":-2070000000000000000}},"30002121":{"solarSystemId":30002121,"solarSystemName":"B:R5R2","location":{"x":-6330000000000000000,"y":74700000000000000,"z":-2690000000000000000}},"30002122":{"solarSystemId":30002122,"solarSystemName":"G:10SR","location":{"x":-7450000000000000000,"y":514000000000000000,"z":-1700000000000000000}},"30002123":{"solarSystemId":30002123,"solarSystemName":"J:2K5O","location":{"x":-7100000000000000000,"y":673000000000000000,"z":-2360000000000000000}},"30002124":{"solarSystemId":30002124,"solarSystemName":"H:38K6","location":{"x":-7480000000000000000,"y":464000000000000000,"z":-1810000000000000000}},"30002125":{"solarSystemId":30002125,"solarSystemName":"P:1L65","location":{"x":-6450000000000000000,"y":-8750000000000000,"z":-2510000000000000000}},"30002126":{"solarSystemId":30002126,"solarSystemName":"P:2OEV","location":{"x":-6340000000000000000,"y":-59600000000000000,"z":-1960000000000000000}},"30002127":{"solarSystemId":30002127,"solarSystemName":"Z:27VS","location":{"x":-6710000000000000000,"y":224000000000000000,"z":-2150000000000000000}},"30002128":{"solarSystemId":30002128,"solarSystemName":"Q:387K","location":{"x":-6640000000000000000,"y":502000000000000000,"z":-1820000000000000000}},"30002129":{"solarSystemId":30002129,"solarSystemName":"Y:26T4","location":{"x":-6640000000000000000,"y":31600000000000000,"z":-1990000000000000000}},"30002130":{"solarSystemId":30002130,"solarSystemName":"P:V6E0","location":{"x":-6840000000000000000,"y":58900000000000000,"z":-2200000000000000000}},"30002131":{"solarSystemId":30002131,"solarSystemName":"M:2RK4","location":{"x":-6410000000000000000,"y":711000000000000000,"z":-2310000000000000000}},"30002132":{"solarSystemId":30002132,"solarSystemName":"F:2NI1","location":{"x":-6950000000000000000,"y":216000000000000000,"z":-2180000000000000000}},"30002133":{"solarSystemId":30002133,"solarSystemName":"P:28IO","location":{"x":-6680000000000000000,"y":65100000000000000,"z":-1710000000000000000}},"30002134":{"solarSystemId":30002134,"solarSystemName":"G:37K4","location":{"x":-6990000000000000000,"y":-551000000000000000,"z":-1820000000000000000}},"30002135":{"solarSystemId":30002135,"solarSystemName":"B:17NN","location":{"x":-7130000000000000000,"y":-250000000000000000,"z":-1950000000000000000}},"30002136":{"solarSystemId":30002136,"solarSystemName":"Z:KL51","location":{"x":-7100000000000000000,"y":-171000000000000000,"z":-1740000000000000000}},"30002137":{"solarSystemId":30002137,"solarSystemName":"B:3228","location":{"x":-7330000000000000000,"y":-889000000000000000,"z":-1420000000000000000}},"30002138":{"solarSystemId":30002138,"solarSystemName":"P:3S8T","location":{"x":-5640000000000000000,"y":1520000000000000000,"z":-857000000000000000}},"30002139":{"solarSystemId":30002139,"solarSystemName":"J:3TSR","location":{"x":-6410000000000000000,"y":1110000000000000000,"z":-897000000000000000}},"30002140":{"solarSystemId":30002140,"solarSystemName":"B:3534","location":{"x":-5760000000000000000,"y":272000000000000000,"z":-859000000000000000}},"30002141":{"solarSystemId":30002141,"solarSystemName":"Z:35S1","location":{"x":-5280000000000000000,"y":850000000000000000,"z":-1140000000000000000}},"30002142":{"solarSystemId":30002142,"solarSystemName":"M:3RK7","location":{"x":-5490000000000000000,"y":1100000000000000000,"z":-679000000000000000}},"30002143":{"solarSystemId":30002143,"solarSystemName":"B:3O4K","location":{"x":-6240000000000000000,"y":1730000000000000000,"z":-852000000000000000}},"30002144":{"solarSystemId":30002144,"solarSystemName":"P:398R","location":{"x":-5830000000000000000,"y":776000000000000000,"z":-1030000000000000000}},"30002145":{"solarSystemId":30002145,"solarSystemName":"Z:2E0E","location":{"x":-5500000000000000000,"y":387000000000000000,"z":-774000000000000000}},"30002146":{"solarSystemId":30002146,"solarSystemName":"Y:27LV","location":{"x":-5070000000000000000,"y":1880000000000000000,"z":-917000000000000000}},"30002147":{"solarSystemId":30002147,"solarSystemName":"Y:3O0N","location":{"x":-5750000000000000000,"y":1590000000000000000,"z":-30500000000000000}},"30002148":{"solarSystemId":30002148,"solarSystemName":"M:2VTA","location":{"x":-4840000000000000000,"y":1650000000000000000,"z":-751000000000000000}},"30002149":{"solarSystemId":30002149,"solarSystemName":"F:3E19","location":{"x":-5180000000000000000,"y":1080000000000000000,"z":-1160000000000000000}},"30002150":{"solarSystemId":30002150,"solarSystemName":"P:39I6","location":{"x":-5380000000000000000,"y":592000000000000000,"z":-1280000000000000000}},"30002151":{"solarSystemId":30002151,"solarSystemName":"J:3N4S","location":{"x":-5540000000000000000,"y":495000000000000000,"z":-116000000000000000}},"30002152":{"solarSystemId":30002152,"solarSystemName":"Y:3S14","location":{"x":-5220000000000000000,"y":1520000000000000000,"z":-747000000000000000}},"30002153":{"solarSystemId":30002153,"solarSystemName":"P:3I1R","location":{"x":-5610000000000000000,"y":1110000000000000000,"z":-750000000000000000}},"30002154":{"solarSystemId":30002154,"solarSystemName":"Y:34IS","location":{"x":-5990000000000000000,"y":915000000000000000,"z":-347000000000000000}},"30002155":{"solarSystemId":30002155,"solarSystemName":"P:36TI","location":{"x":1060000000000000000,"y":-882000000000000000,"z":3170000000000000000}},"30002156":{"solarSystemId":30002156,"solarSystemName":"D:3NT6","location":{"x":972000000000000000,"y":56100000000000000,"z":4280000000000000000}},"30002157":{"solarSystemId":30002157,"solarSystemName":"H:2E5R","location":{"x":1590000000000000000,"y":-1100000000000000000,"z":3440000000000000000}},"30002158":{"solarSystemId":30002158,"solarSystemName":"B:1L19","location":{"x":1720000000000000000,"y":-835000000000000000,"z":4090000000000000000}},"30002159":{"solarSystemId":30002159,"solarSystemName":"P:24R4","location":{"x":1400000000000000000,"y":-132000000000000000,"z":3700000000000000000}},"30002160":{"solarSystemId":30002160,"solarSystemName":"Q:25II","location":{"x":789000000000000000,"y":-204000000000000000,"z":3300000000000000000}},"30002161":{"solarSystemId":30002161,"solarSystemName":"Y:19AS","location":{"x":2040000000000000000,"y":-101000000000000000,"z":3670000000000000000}},"30002162":{"solarSystemId":30002162,"solarSystemName":"G:3E37","location":{"x":1900000000000000000,"y":-179000000000000000,"z":4090000000000000000}},"30002163":{"solarSystemId":30002163,"solarSystemName":"U:3R4E","location":{"x":1030000000000000000,"y":-884000000000000000,"z":3660000000000000000}},"30002164":{"solarSystemId":30002164,"solarSystemName":"Y:3667","location":{"x":1030000000000000000,"y":-66600000000000000,"z":3450000000000000000}},"30002165":{"solarSystemId":30002165,"solarSystemName":"G:30L9","location":{"x":925000000000000000,"y":-183000000000000000,"z":3110000000000000000}},"30002166":{"solarSystemId":30002166,"solarSystemName":"H:35L5","location":{"x":1940000000000000000,"y":-676000000000000000,"z":4280000000000000000}},"30002167":{"solarSystemId":30002167,"solarSystemName":"P:37O1","location":{"x":1910000000000000000,"y":-81300000000000000,"z":3990000000000000000}},"30002168":{"solarSystemId":30002168,"solarSystemName":"U:3N4R","location":{"x":1890000000000000000,"y":-913000000000000000,"z":3810000000000000000}},"30002169":{"solarSystemId":30002169,"solarSystemName":"G:24KA","location":{"x":992000000000000000,"y":-734000000000000000,"z":3520000000000000000}},"30002170":{"solarSystemId":30002170,"solarSystemName":"Y:3I67","location":{"x":-16000000000000000,"y":-935000000000000000,"z":3640000000000000000}},"30002171":{"solarSystemId":30002171,"solarSystemName":"H:2R9V","location":{"x":566000000000000000,"y":-688000000000000000,"z":4780000000000000000}},"30002172":{"solarSystemId":30002172,"solarSystemName":"M:15S6","location":{"x":-831000000000000000,"y":-97600000000000000,"z":4500000000000000000}},"30002173":{"solarSystemId":30002173,"solarSystemName":"P:3L2V","location":{"x":498000000000000000,"y":-557000000000000000,"z":3990000000000000000}},"30002174":{"solarSystemId":30002174,"solarSystemName":"J:11AN","location":{"x":5240000000000000,"y":-543000000000000000,"z":4500000000000000000}},"30002175":{"solarSystemId":30002175,"solarSystemName":"Z:2L4E","location":{"x":107000000000000000,"y":-69000000000000000,"z":4410000000000000000}},"30002176":{"solarSystemId":30002176,"solarSystemName":"F:SL77","location":{"x":-335000000000000000,"y":-298000000000000000,"z":4010000000000000000}},"30002177":{"solarSystemId":30002177,"solarSystemName":"D:VSVE","location":{"x":215000000000000000,"y":369000000000000000,"z":4770000000000000000}},"30002178":{"solarSystemId":30002178,"solarSystemName":"Z:2K0S","location":{"x":332000000000000000,"y":476000000000000000,"z":4420000000000000000}},"30002179":{"solarSystemId":30002179,"solarSystemName":"G:38T5","location":{"x":617000000000000000,"y":-356000000000000000,"z":3650000000000000000}},"30002180":{"solarSystemId":30002180,"solarSystemName":"J:12L5","location":{"x":106000000000000000,"y":-886000000000000000,"z":4580000000000000000}},"30002181":{"solarSystemId":30002181,"solarSystemName":"P:432N","location":{"x":-86500000000000000,"y":-606000000000000000,"z":3470000000000000000}},"30002182":{"solarSystemId":30002182,"solarSystemName":"P:E41L","location":{"x":528000000000000000,"y":-995000000000000000,"z":4780000000000000000}},"30002183":{"solarSystemId":30002183,"solarSystemName":"G:2333","location":{"x":478000000000000000,"y":-858000000000000000,"z":3630000000000000000}},"30002184":{"solarSystemId":30002184,"solarSystemName":"B:227I","location":{"x":454000000000000000,"y":-1510000000000000000,"z":4360000000000000000}},"30002185":{"solarSystemId":30002185,"solarSystemName":"Y:1NE2","location":{"x":160000000000000000,"y":29900000000000000,"z":4910000000000000000}},"30002186":{"solarSystemId":30002186,"solarSystemName":"M:2T41","location":{"x":-4350000000000000000,"y":-2330000000000000000,"z":6530000000000000000}},"30002187":{"solarSystemId":30002187,"solarSystemName":"F:3ARO","location":{"x":-4040000000000000000,"y":-2060000000000000000,"z":6740000000000000000}},"30002188":{"solarSystemId":30002188,"solarSystemName":"D:1T2N","location":{"x":-4610000000000000000,"y":-2480000000000000000,"z":7190000000000000000}},"30002189":{"solarSystemId":30002189,"solarSystemName":"J:1460","location":{"x":-4220000000000000000,"y":-1730000000000000000,"z":7050000000000000000}},"30002190":{"solarSystemId":30002190,"solarSystemName":"J:2N26","location":{"x":-4830000000000000000,"y":-3670000000000000000,"z":5890000000000000000}},"30002191":{"solarSystemId":30002191,"solarSystemName":"Y:3TL4","location":{"x":-4320000000000000000,"y":-2910000000000000000,"z":6700000000000000000}},"30002192":{"solarSystemId":30002192,"solarSystemName":"U:3RES","location":{"x":-3970000000000000000,"y":-2430000000000000000,"z":7330000000000000000}},"30002193":{"solarSystemId":30002193,"solarSystemName":"B:3AVK","location":{"x":-3520000000000000000,"y":-3150000000000000000,"z":7160000000000000000}},"30002194":{"solarSystemId":30002194,"solarSystemName":"M:31V4","location":{"x":-3520000000000000000,"y":-2380000000000000000,"z":6470000000000000000}},"30002195":{"solarSystemId":30002195,"solarSystemName":"H:1N9S","location":{"x":-4300000000000000000,"y":-2800000000000000000,"z":8190000000000000000}},"30002196":{"solarSystemId":30002196,"solarSystemName":"Z:1L6S","location":{"x":-3950000000000000000,"y":-2800000000000000000,"z":7970000000000000000}},"30002197":{"solarSystemId":30002197,"solarSystemName":"J:36VN","location":{"x":-3970000000000000000,"y":-2790000000000000000,"z":7780000000000000000}},"30002198":{"solarSystemId":30002198,"solarSystemName":"H:NKN1","location":{"x":-6020000000000000000,"y":-482000000000000000,"z":9840000000000000000}},"30002199":{"solarSystemId":30002199,"solarSystemName":"H:18VK","location":{"x":-5680000000000000000,"y":-440000000000000000,"z":9590000000000000000}},"30002200":{"solarSystemId":30002200,"solarSystemName":"Y:1V21","location":{"x":-5940000000000000000,"y":-529000000000000000,"z":9770000000000000000}},"30002201":{"solarSystemId":30002201,"solarSystemName":"Q:I2N0","location":{"x":-5420000000000000000,"y":-135000000000000000,"z":10000000000000000000}},"30002202":{"solarSystemId":30002202,"solarSystemName":"J:14L8","location":{"x":-6190000000000000000,"y":-430000000000000000,"z":9800000000000000000}},"30002203":{"solarSystemId":30002203,"solarSystemName":"P:27AR","location":{"x":-4870000000000000000,"y":-479000000000000000,"z":9740000000000000000}},"30002204":{"solarSystemId":30002204,"solarSystemName":"M:43ON","location":{"x":-5970000000000000000,"y":48700000000000000,"z":8990000000000000000}},"30002205":{"solarSystemId":30002205,"solarSystemName":"H:V075","location":{"x":-5690000000000000000,"y":-320000000000000000,"z":9770000000000000000}},"30002206":{"solarSystemId":30002206,"solarSystemName":"G:38AK","location":{"x":-6160000000000000000,"y":-940000000000000000,"z":9180000000000000000}},"30002207":{"solarSystemId":30002207,"solarSystemName":"G:1OVL","location":{"x":-5890000000000000000,"y":-439000000000000000,"z":10400000000000000000}},"30002208":{"solarSystemId":30002208,"solarSystemName":"F:118T","location":{"x":-6070000000000000000,"y":-476000000000000000,"z":10300000000000000000}},"30002209":{"solarSystemId":30002209,"solarSystemName":"J:3OAK","location":{"x":-6730000000000000000,"y":-1530000000000000000,"z":9680000000000000000}},"30002210":{"solarSystemId":30002210,"solarSystemName":"Z:2KV7","location":{"x":-2090000000000000000,"y":471000000000000000,"z":6900000000000000000}},"30002211":{"solarSystemId":30002211,"solarSystemName":"U:2K89","location":{"x":-2770000000000000000,"y":-462000000000000000,"z":6440000000000000000}},"30002212":{"solarSystemId":30002212,"solarSystemName":"U:19SR","location":{"x":-2840000000000000000,"y":-441000000000000000,"z":6590000000000000000}},"30002213":{"solarSystemId":30002213,"solarSystemName":"M:1N6A","location":{"x":-2620000000000000000,"y":-747000000000000000,"z":6780000000000000000}},"30002214":{"solarSystemId":30002214,"solarSystemName":"M:31K8","location":{"x":-2360000000000000000,"y":-971000000000000000,"z":6550000000000000000}},"30002215":{"solarSystemId":30002215,"solarSystemName":"F:2OLO","location":{"x":-2040000000000000000,"y":-405000000000000000,"z":6180000000000000000}},"30002216":{"solarSystemId":30002216,"solarSystemName":"G:22AN","location":{"x":-2360000000000000000,"y":-762000000000000000,"z":6450000000000000000}},"30002217":{"solarSystemId":30002217,"solarSystemName":"Y:2916","location":{"x":-2090000000000000000,"y":-735000000000000000,"z":6200000000000000000}},"30002218":{"solarSystemId":30002218,"solarSystemName":"J:20RA","location":{"x":-2700000000000000000,"y":-7290000000000000,"z":6970000000000000000}},"30002219":{"solarSystemId":30002219,"solarSystemName":"M:1N30","location":{"x":-2150000000000000000,"y":-898000000000000000,"z":6030000000000000000}},"30002220":{"solarSystemId":30002220,"solarSystemName":"U:LNAA","location":{"x":-2160000000000000000,"y":-348000000000000000,"z":6350000000000000000}},"30002221":{"solarSystemId":30002221,"solarSystemName":"Y:354A","location":{"x":-2220000000000000000,"y":-723000000000000000,"z":6070000000000000000}},"30002222":{"solarSystemId":30002222,"solarSystemName":"M:2ONT","location":{"x":-2170000000000000000,"y":-128000000000000000,"z":6450000000000000000}},"30002223":{"solarSystemId":30002223,"solarSystemName":"Y:2316","location":{"x":-2110000000000000000,"y":-697000000000000000,"z":6190000000000000000}},"30002224":{"solarSystemId":30002224,"solarSystemName":"Q:35O3","location":{"x":-1610000000000000000,"y":-1320000000000000000,"z":5560000000000000000}},"30002225":{"solarSystemId":30002225,"solarSystemName":"F:3189","location":{"x":-1940000000000000000,"y":-1620000000000000000,"z":6290000000000000000}},"30002226":{"solarSystemId":30002226,"solarSystemName":"F:1L69","location":{"x":-1370000000000000000,"y":-1330000000000000000,"z":6250000000000000000}},"30002227":{"solarSystemId":30002227,"solarSystemName":"M:1634","location":{"x":-1380000000000000000,"y":-1170000000000000000,"z":5950000000000000000}},"30002228":{"solarSystemId":30002228,"solarSystemName":"D:3A6E","location":{"x":-1370000000000000000,"y":-1580000000000000000,"z":5950000000000000000}},"30002229":{"solarSystemId":30002229,"solarSystemName":"J:2RET","location":{"x":-1490000000000000000,"y":-999000000000000000,"z":5960000000000000000}},"30002230":{"solarSystemId":30002230,"solarSystemName":"G:1EE5","location":{"x":-1030000000000000000,"y":-905000000000000000,"z":5670000000000000000}},"30002231":{"solarSystemId":30002231,"solarSystemName":"P:1OR5","location":{"x":-1340000000000000000,"y":-748000000000000000,"z":6390000000000000000}},"30002232":{"solarSystemId":30002232,"solarSystemName":"F:4ET3","location":{"x":-1830000000000000000,"y":-992000000000000000,"z":6000000000000000000}},"30002233":{"solarSystemId":30002233,"solarSystemName":"M:2VKE","location":{"x":-2040000000000000000,"y":-1250000000000000000,"z":6210000000000000000}},"30002234":{"solarSystemId":30002234,"solarSystemName":"P:2E7E","location":{"x":-1340000000000000000,"y":-1120000000000000000,"z":5840000000000000000}},"30002235":{"solarSystemId":30002235,"solarSystemName":"U:1R9N","location":{"x":-1020000000000000000,"y":-1270000000000000000,"z":5770000000000000000}},"30002236":{"solarSystemId":30002236,"solarSystemName":"Z:E0S1","location":{"x":-1620000000000000000,"y":-907000000000000000,"z":5570000000000000000}},"30002237":{"solarSystemId":30002237,"solarSystemName":"B:O58N","location":{"x":-1780000000000000000,"y":-1340000000000000000,"z":6100000000000000000}},"30002238":{"solarSystemId":30002238,"solarSystemName":"Y:1LRV","location":{"x":-911000000000000000,"y":-1020000000000000000,"z":5770000000000000000}},"30002239":{"solarSystemId":30002239,"solarSystemName":"Y:52AA","location":{"x":-970000000000000000,"y":-1000000000000000000,"z":5770000000000000000}},"30002240":{"solarSystemId":30002240,"solarSystemName":"H:27RI","location":{"x":-1010000000000000000,"y":-1500000000000000000,"z":5680000000000000000}},"30002241":{"solarSystemId":30002241,"solarSystemName":"D:2R16","location":{"x":-5900000000000000000,"y":-3130000000000000000,"z":9510000000000000000}},"30002242":{"solarSystemId":30002242,"solarSystemName":"F:31R7","location":{"x":-4280000000000000000,"y":-3470000000000000000,"z":7980000000000000000}},"30002243":{"solarSystemId":30002243,"solarSystemName":"J:2E6R","location":{"x":-4630000000000000000,"y":-3060000000000000000,"z":8620000000000000000}},"30002244":{"solarSystemId":30002244,"solarSystemName":"J:317L","location":{"x":-5460000000000000000,"y":-5040000000000000000,"z":7830000000000000000}},"30002245":{"solarSystemId":30002245,"solarSystemName":"J:3A47","location":{"x":-4310000000000000000,"y":-4240000000000000000,"z":7930000000000000000}},"30002246":{"solarSystemId":30002246,"solarSystemName":"P:37S5","location":{"x":-6090000000000000000,"y":-4260000000000000000,"z":7800000000000000000}},"30002247":{"solarSystemId":30002247,"solarSystemName":"H:2OI6","location":{"x":-5210000000000000000,"y":-4140000000000000000,"z":9000000000000000000}},"30002248":{"solarSystemId":30002248,"solarSystemName":"M:3NR2","location":{"x":-3160000000000000000,"y":-2770000000000000000,"z":10900000000000000000}},"30002249":{"solarSystemId":30002249,"solarSystemName":"B:3651","location":{"x":-3770000000000000000,"y":-3080000000000000000,"z":9910000000000000000}},"30002250":{"solarSystemId":30002250,"solarSystemName":"D:3NK3","location":{"x":-3640000000000000000,"y":-3140000000000000000,"z":8960000000000000000}},"30002251":{"solarSystemId":30002251,"solarSystemName":"U:2T87","location":{"x":-4390000000000000000,"y":-3130000000000000000,"z":9890000000000000000}},"30002252":{"solarSystemId":30002252,"solarSystemName":"U:23VK","location":{"x":-4910000000000000000,"y":-2170000000000000000,"z":11200000000000000000}},"30002253":{"solarSystemId":30002253,"solarSystemName":"J:3T10","location":{"x":-3740000000000000000,"y":-2230000000000000000,"z":10900000000000000000}},"30002254":{"solarSystemId":30002254,"solarSystemName":"J:1NI8","location":{"x":-5700000000000000000,"y":-2970000000000000000,"z":10500000000000000000}},"30002255":{"solarSystemId":30002255,"solarSystemName":"Z:1ETN","location":{"x":-4010000000000000000,"y":-1980000000000000000,"z":10800000000000000000}},"30002256":{"solarSystemId":30002256,"solarSystemName":"F:2RRO","location":{"x":-5090000000000000000,"y":-2710000000000000000,"z":10500000000000000000}},"30002257":{"solarSystemId":30002257,"solarSystemName":"Y:3S50","location":{"x":-1900000000000000000,"y":102000000000000000,"z":1240000000000000000}},"30002258":{"solarSystemId":30002258,"solarSystemName":"Y:2OEL","location":{"x":-1740000000000000000,"y":377000000000000000,"z":392000000000000000}},"30002259":{"solarSystemId":30002259,"solarSystemName":"M:2K5R","location":{"x":-2430000000000000000,"y":567000000000000000,"z":498000000000000000}},"30002260":{"solarSystemId":30002260,"solarSystemName":"Y:2991","location":{"x":-2110000000000000000,"y":151000000000000000,"z":259000000000000000}},"30002261":{"solarSystemId":30002261,"solarSystemName":"Y:2IN7","location":{"x":-1970000000000000000,"y":279000000000000000,"z":183000000000000000}},"30002262":{"solarSystemId":30002262,"solarSystemName":"J:2O7K","location":{"x":-2420000000000000000,"y":139000000000000000,"z":365000000000000000}},"30002263":{"solarSystemId":30002263,"solarSystemName":"Q:389O","location":{"x":-1680000000000000000,"y":-35600000000000000,"z":973000000000000000}},"30002264":{"solarSystemId":30002264,"solarSystemName":"H:39OV","location":{"x":-2090000000000000000,"y":-196000000000000000,"z":787000000000000000}},"30002265":{"solarSystemId":30002265,"solarSystemName":"U:338L","location":{"x":-2000000000000000000,"y":258000000000000000,"z":607000000000000000}},"30002266":{"solarSystemId":30002266,"solarSystemName":"Y:31NE","location":{"x":-1860000000000000000,"y":219000000000000000,"z":1030000000000000000}},"30002267":{"solarSystemId":30002267,"solarSystemName":"M:2LNS","location":{"x":-2020000000000000000,"y":355000000000000000,"z":975000000000000000}},"30002268":{"solarSystemId":30002268,"solarSystemName":"P:3VRI","location":{"x":-2190000000000000000,"y":-248000000000000000,"z":439000000000000000}},"30002269":{"solarSystemId":30002269,"solarSystemName":"Q:2TK2","location":{"x":-2270000000000000000,"y":123000000000000000,"z":202000000000000000}},"30002270":{"solarSystemId":30002270,"solarSystemName":"Y:35RR","location":{"x":-1430000000000000000,"y":-35700000000000000,"z":891000000000000000}},"30002271":{"solarSystemId":30002271,"solarSystemName":"H:2ITA","location":{"x":-1610000000000000000,"y":205000000000000000,"z":703000000000000000}},"30002272":{"solarSystemId":30002272,"solarSystemName":"J:3A35","location":{"x":-2000000000000000000,"y":636000000000000000,"z":677000000000000000}},"30002273":{"solarSystemId":30002273,"solarSystemName":"Z:3OIV","location":{"x":-2100000000000000000,"y":-215000000000000000,"z":583000000000000000}},"30002274":{"solarSystemId":30002274,"solarSystemName":"D:35VE","location":{"x":-1380000000000000000,"y":561000000000000000,"z":785000000000000000}},"30002275":{"solarSystemId":30002275,"solarSystemName":"U:2VI4","location":{"x":-1950000000000000000,"y":226000000000000000,"z":458000000000000000}},"30002276":{"solarSystemId":30002276,"solarSystemName":"D:350K","location":{"x":-2210000000000000000,"y":155000000000000000,"z":215000000000000000}},"30002277":{"solarSystemId":30002277,"solarSystemName":"G:3V6V","location":{"x":-1560000000000000000,"y":561000000000000000,"z":421000000000000000}},"30002278":{"solarSystemId":30002278,"solarSystemName":"U:2SV5","location":{"x":-3400000000000000000,"y":-1010000000000000000,"z":1860000000000000000}},"30002279":{"solarSystemId":30002279,"solarSystemName":"Y:3EE4","location":{"x":-3490000000000000000,"y":-743000000000000000,"z":1640000000000000000}},"30002280":{"solarSystemId":30002280,"solarSystemName":"M:1A2O","location":{"x":-3480000000000000000,"y":-667000000000000000,"z":1710000000000000000}},"30002281":{"solarSystemId":30002281,"solarSystemName":"U:2V62","location":{"x":-3630000000000000000,"y":-558000000000000000,"z":2160000000000000000}},"30002282":{"solarSystemId":30002282,"solarSystemName":"F:1O7L","location":{"x":-3220000000000000000,"y":-745000000000000000,"z":1630000000000000000}},"30002283":{"solarSystemId":30002283,"solarSystemName":"D:2268","location":{"x":-3510000000000000000,"y":-582000000000000000,"z":1700000000000000000}},"30002284":{"solarSystemId":30002284,"solarSystemName":"Y:IO1N","location":{"x":-3320000000000000000,"y":-726000000000000000,"z":1890000000000000000}},"30002285":{"solarSystemId":30002285,"solarSystemName":"D:L71R","location":{"x":-3280000000000000000,"y":-829000000000000000,"z":1510000000000000000}},"30002286":{"solarSystemId":30002286,"solarSystemName":"J:305R","location":{"x":-3680000000000000000,"y":-938000000000000000,"z":1930000000000000000}},"30002287":{"solarSystemId":30002287,"solarSystemName":"Q:N0IS","location":{"x":-3260000000000000000,"y":-879000000000000000,"z":2010000000000000000}},"30002288":{"solarSystemId":30002288,"solarSystemName":"Z:2A36","location":{"x":-3430000000000000000,"y":-837000000000000000,"z":1420000000000000000}},"30002289":{"solarSystemId":30002289,"solarSystemName":"Q:3AO2","location":{"x":-3410000000000000000,"y":-960000000000000000,"z":1840000000000000000}},"30002290":{"solarSystemId":30002290,"solarSystemName":"D:38KN","location":{"x":-3700000000000000000,"y":-744000000000000000,"z":2040000000000000000}},"30002291":{"solarSystemId":30002291,"solarSystemName":"B:3E1L","location":{"x":-3670000000000000000,"y":-1210000000000000000,"z":2070000000000000000}},"30002292":{"solarSystemId":30002292,"solarSystemName":"J:367S","location":{"x":-3540000000000000000,"y":-600000000000000000,"z":1790000000000000000}},"30002293":{"solarSystemId":30002293,"solarSystemName":"M:3VAV","location":{"x":-3030000000000000000,"y":-1090000000000000000,"z":1740000000000000000}},"30002294":{"solarSystemId":30002294,"solarSystemName":"B:KN0T","location":{"x":-3710000000000000000,"y":-957000000000000000,"z":2150000000000000000}},"30002295":{"solarSystemId":30002295,"solarSystemName":"Y:OT56","location":{"x":-3630000000000000000,"y":-783000000000000000,"z":1910000000000000000}},"30002296":{"solarSystemId":30002296,"solarSystemName":"H:3S8V","location":{"x":-2350000000000000000,"y":-251000000000000000,"z":2050000000000000000}},"30002297":{"solarSystemId":30002297,"solarSystemName":"U:36IT","location":{"x":-2070000000000000000,"y":-260000000000000000,"z":1590000000000000000}},"30002298":{"solarSystemId":30002298,"solarSystemName":"P:29OS","location":{"x":-1910000000000000000,"y":170000000000000000,"z":1850000000000000000}},"30002299":{"solarSystemId":30002299,"solarSystemName":"G:OL3E","location":{"x":-2220000000000000000,"y":-521000000000000000,"z":1920000000000000000}},"30002300":{"solarSystemId":30002300,"solarSystemName":"M:3N2R","location":{"x":-2530000000000000000,"y":-651000000000000000,"z":2140000000000000000}},"30002301":{"solarSystemId":30002301,"solarSystemName":"H:N68O","location":{"x":-2260000000000000000,"y":-741000000000000000,"z":1920000000000000000}},"30002302":{"solarSystemId":30002302,"solarSystemName":"F:17O8","location":{"x":-2460000000000000000,"y":-518000000000000000,"z":2270000000000000000}},"30002303":{"solarSystemId":30002303,"solarSystemName":"U:3R86","location":{"x":-2530000000000000000,"y":-528000000000000000,"z":2250000000000000000}},"30002304":{"solarSystemId":30002304,"solarSystemName":"D:1NVI","location":{"x":-2700000000000000000,"y":-477000000000000000,"z":2260000000000000000}},"30002305":{"solarSystemId":30002305,"solarSystemName":"D:4L35","location":{"x":-2500000000000000000,"y":-358000000000000000,"z":2310000000000000000}},"30002306":{"solarSystemId":30002306,"solarSystemName":"B:1LSA","location":{"x":-2290000000000000000,"y":-621000000000000000,"z":1820000000000000000}},"30002307":{"solarSystemId":30002307,"solarSystemName":"Z:3RL6","location":{"x":-2390000000000000000,"y":140000000000000000,"z":1960000000000000000}},"30002308":{"solarSystemId":30002308,"solarSystemName":"D:2NN7","location":{"x":-1950000000000000000,"y":-507000000000000000,"z":1910000000000000000}},"30002309":{"solarSystemId":30002309,"solarSystemName":"F:3T0R","location":{"x":-2350000000000000000,"y":-264000000000000000,"z":2410000000000000000}},"30002310":{"solarSystemId":30002310,"solarSystemName":"D:3NL9","location":{"x":-2700000000000000000,"y":-277000000000000000,"z":1880000000000000000}},"30002311":{"solarSystemId":30002311,"solarSystemName":"F:394E","location":{"x":-2360000000000000000,"y":36100000000000000,"z":1770000000000000000}},"30002312":{"solarSystemId":30002312,"solarSystemName":"U:3ENK","location":{"x":-2040000000000000000,"y":-272511000000000,"z":1930000000000000000}},"30002313":{"solarSystemId":30002313,"solarSystemName":"Q:2ON1","location":{"x":-2280000000000000000,"y":-271000000000000000,"z":2010000000000000000}},"30002314":{"solarSystemId":30002314,"solarSystemName":"U:292N","location":{"x":-2110000000000000000,"y":-79200000000000000,"z":1890000000000000000}},"30002315":{"solarSystemId":30002315,"solarSystemName":"Y:3S66","location":{"x":-2480000000000000000,"y":566000000000000000,"z":1030000000000000000}},"30002316":{"solarSystemId":30002316,"solarSystemName":"U:31VK","location":{"x":-3130000000000000000,"y":60700000000000000,"z":775000000000000000}},"30002317":{"solarSystemId":30002317,"solarSystemName":"H:30KK","location":{"x":-2810000000000000000,"y":519000000000000000,"z":762000000000000000}},"30002318":{"solarSystemId":30002318,"solarSystemName":"M:2N19","location":{"x":-2880000000000000000,"y":85100000000000000,"z":1120000000000000000}},"30002319":{"solarSystemId":30002319,"solarSystemName":"D:2AI3","location":{"x":-2420000000000000000,"y":222000000000000000,"z":828000000000000000}},"30002320":{"solarSystemId":30002320,"solarSystemName":"H:2ET9","location":{"x":-2900000000000000000,"y":466000000000000000,"z":813000000000000000}},"30002321":{"solarSystemId":30002321,"solarSystemName":"Y:30LO","location":{"x":-2800000000000000000,"y":429000000000000000,"z":753000000000000000}},"30002322":{"solarSystemId":30002322,"solarSystemName":"U:2O0I","location":{"x":-2850000000000000000,"y":646000000000000000,"z":1360000000000000000}},"30002323":{"solarSystemId":30002323,"solarSystemName":"Z:35SS","location":{"x":-3020000000000000000,"y":130000000000000000,"z":1090000000000000000}},"30002324":{"solarSystemId":30002324,"solarSystemName":"Z:34ET","location":{"x":-2550000000000000000,"y":627000000000000000,"z":1070000000000000000}},"30002325":{"solarSystemId":30002325,"solarSystemName":"P:3R18","location":{"x":-2700000000000000000,"y":256000000000000000,"z":1030000000000000000}},"30002326":{"solarSystemId":30002326,"solarSystemName":"M:330T","location":{"x":-2780000000000000000,"y":-258000000000000000,"z":926000000000000000}},"30002327":{"solarSystemId":30002327,"solarSystemName":"F:34AI","location":{"x":-2730000000000000000,"y":254000000000000000,"z":1320000000000000000}},"30002328":{"solarSystemId":30002328,"solarSystemName":"D:32K9","location":{"x":-3000000000000000000,"y":344000000000000000,"z":621000000000000000}},"30002329":{"solarSystemId":30002329,"solarSystemName":"F:2IAI","location":{"x":-2860000000000000000,"y":-252000000000000000,"z":1020000000000000000}},"30002330":{"solarSystemId":30002330,"solarSystemName":"D:2V0K","location":{"x":-3070000000000000000,"y":472000000000000000,"z":1260000000000000000}},"30002331":{"solarSystemId":30002331,"solarSystemName":"B:324I","location":{"x":-2330000000000000000,"y":70500000000000000,"z":966000000000000000}},"30002332":{"solarSystemId":30002332,"solarSystemName":"H:3A45","location":{"x":-3180000000000000000,"y":-1250000000000000000,"z":658000000000000000}},"30002333":{"solarSystemId":30002333,"solarSystemName":"Z:3IK8","location":{"x":-3320000000000000000,"y":-928000000000000000,"z":513000000000000000}},"30002334":{"solarSystemId":30002334,"solarSystemName":"D:2K9A","location":{"x":-3150000000000000000,"y":-747000000000000000,"z":715000000000000000}},"30002335":{"solarSystemId":30002335,"solarSystemName":"Z:2N40","location":{"x":-3220000000000000000,"y":-979000000000000000,"z":613000000000000000}},"30002336":{"solarSystemId":30002336,"solarSystemName":"Z:2AA7","location":{"x":-3260000000000000000,"y":-880000000000000000,"z":568000000000000000}},"30002337":{"solarSystemId":30002337,"solarSystemName":"G:2V32","location":{"x":-3040000000000000000,"y":-1290000000000000000,"z":930000000000000000}},"30002338":{"solarSystemId":30002338,"solarSystemName":"U:2N42","location":{"x":-3180000000000000000,"y":-882000000000000000,"z":323000000000000000}},"30002339":{"solarSystemId":30002339,"solarSystemName":"D:3RKE","location":{"x":-3090000000000000000,"y":-1160000000000000000,"z":910000000000000000}},"30002340":{"solarSystemId":30002340,"solarSystemName":"D:3V1I","location":{"x":-3180000000000000000,"y":-895000000000000000,"z":381000000000000000}},"30002341":{"solarSystemId":30002341,"solarSystemName":"P:2T1N","location":{"x":-3040000000000000000,"y":-1100000000000000000,"z":619000000000000000}},"30002342":{"solarSystemId":30002342,"solarSystemName":"Z:3OS6","location":{"x":-3090000000000000000,"y":-817000000000000000,"z":507000000000000000}},"30002343":{"solarSystemId":30002343,"solarSystemName":"H:3TI7","location":{"x":-3170000000000000000,"y":-1070000000000000000,"z":365000000000000000}},"30002344":{"solarSystemId":30002344,"solarSystemName":"Y:33O1","location":{"x":-3140000000000000000,"y":-1410000000000000000,"z":615000000000000000}},"30002345":{"solarSystemId":30002345,"solarSystemName":"Y:29K0","location":{"x":-3170000000000000000,"y":-1020000000000000000,"z":366000000000000000}},"30002346":{"solarSystemId":30002346,"solarSystemName":"B:3NII","location":{"x":-2990000000000000000,"y":-764000000000000000,"z":838000000000000000}},"30002347":{"solarSystemId":30002347,"solarSystemName":"D:3736","location":{"x":-2980000000000000000,"y":-888000000000000000,"z":904000000000000000}},"30002348":{"solarSystemId":30002348,"solarSystemName":"H:33V8","location":{"x":-3030000000000000000,"y":-1180000000000000000,"z":777000000000000000}},"30002349":{"solarSystemId":30002349,"solarSystemName":"J:2IL5","location":{"x":-3070000000000000000,"y":-710000000000000000,"z":895000000000000000}},"30002350":{"solarSystemId":30002350,"solarSystemName":"G:3E6E","location":{"x":-3060000000000000000,"y":-788000000000000000,"z":830000000000000000}},"30002351":{"solarSystemId":30002351,"solarSystemName":"Y:317T","location":{"x":-3090000000000000000,"y":-1090000000000000000,"z":431000000000000000}},"30002352":{"solarSystemId":30002352,"solarSystemName":"Q:375T","location":{"x":-2980000000000000000,"y":-1100000000000000000,"z":725000000000000000}},"30002353":{"solarSystemId":30002353,"solarSystemName":"B:3I2R","location":{"x":-2570000000000000000,"y":-920000000000000000,"z":1620000000000000000}},"30002354":{"solarSystemId":30002354,"solarSystemName":"B:3750","location":{"x":-2660000000000000000,"y":-1340000000000000000,"z":1740000000000000000}},"30002355":{"solarSystemId":30002355,"solarSystemName":"Z:3N2N","location":{"x":-2640000000000000000,"y":-542000000000000000,"z":1750000000000000000}},"30002356":{"solarSystemId":30002356,"solarSystemName":"J:3RE2","location":{"x":-2550000000000000000,"y":-1090000000000000000,"z":1810000000000000000}},"30002357":{"solarSystemId":30002357,"solarSystemName":"G:3ENA","location":{"x":-2440000000000000000,"y":-780000000000000000,"z":1860000000000000000}},"30002358":{"solarSystemId":30002358,"solarSystemName":"P:3OL0","location":{"x":-2540000000000000000,"y":-1200000000000000000,"z":1960000000000000000}},"30002359":{"solarSystemId":30002359,"solarSystemName":"Z:52R4","location":{"x":-2750000000000000000,"y":-435000000000000000,"z":1940000000000000000}},"30002360":{"solarSystemId":30002360,"solarSystemName":"F:35KA","location":{"x":-2660000000000000000,"y":-839000000000000000,"z":1750000000000000000}},"30002361":{"solarSystemId":30002361,"solarSystemName":"M:2LRT","location":{"x":-2640000000000000000,"y":-708000000000000000,"z":1590000000000000000}},"30002362":{"solarSystemId":30002362,"solarSystemName":"Y:27O7","location":{"x":-2280000000000000000,"y":-759000000000000000,"z":2280000000000000000}},"30002363":{"solarSystemId":30002363,"solarSystemName":"M:1O9S","location":{"x":-2800000000000000000,"y":-921000000000000000,"z":2230000000000000000}},"30002364":{"solarSystemId":30002364,"solarSystemName":"F:I3TA","location":{"x":-2720000000000000000,"y":-929000000000000000,"z":2020000000000000000}},"30002365":{"solarSystemId":30002365,"solarSystemName":"J:2AAT","location":{"x":-2760000000000000000,"y":-537000000000000000,"z":2020000000000000000}},"30002366":{"solarSystemId":30002366,"solarSystemName":"F:ISKK","location":{"x":-2840000000000000000,"y":-503000000000000000,"z":1840000000000000000}},"30002367":{"solarSystemId":30002367,"solarSystemName":"Q:L13A","location":{"x":-2670000000000000000,"y":-697000000000000000,"z":1570000000000000000}},"30002368":{"solarSystemId":30002368,"solarSystemName":"H:2920","location":{"x":-2830000000000000000,"y":-771000000000000000,"z":2400000000000000000}},"30002369":{"solarSystemId":30002369,"solarSystemName":"H:2V81","location":{"x":-2520000000000000000,"y":-791000000000000000,"z":2630000000000000000}},"30002370":{"solarSystemId":30002370,"solarSystemName":"Z:3ON8","location":{"x":-2890000000000000000,"y":-925000000000000000,"z":2380000000000000000}},"30002371":{"solarSystemId":30002371,"solarSystemName":"Q:3RK9","location":{"x":-2550000000000000000,"y":-1380000000000000000,"z":1510000000000000000}},"30002372":{"solarSystemId":30002372,"solarSystemName":"J:3S29","location":{"x":-2670000000000000000,"y":-1220000000000000000,"z":1680000000000000000}},"30002373":{"solarSystemId":30002373,"solarSystemName":"F:2IEL","location":{"x":-2340000000000000000,"y":-791000000000000000,"z":2050000000000000000}},"30002374":{"solarSystemId":30002374,"solarSystemName":"Y:3AS2","location":{"x":-2710000000000000000,"y":-1310000000000000000,"z":1630000000000000000}},"30002375":{"solarSystemId":30002375,"solarSystemName":"U:3SVR","location":{"x":-2530000000000000000,"y":-690000000000000000,"z":1540000000000000000}},"30002376":{"solarSystemId":30002376,"solarSystemName":"J:386E","location":{"x":-3930000000000000000,"y":-1030000000000000000,"z":1050000000000000000}},"30002377":{"solarSystemId":30002377,"solarSystemName":"B:3OLT","location":{"x":-3840000000000000000,"y":-1050000000000000000,"z":1100000000000000000}},"30002378":{"solarSystemId":30002378,"solarSystemName":"J:2VNA","location":{"x":-3480000000000000000,"y":-843000000000000000,"z":654000000000000000}},"30002379":{"solarSystemId":30002379,"solarSystemName":"G:36V0","location":{"x":-3670000000000000000,"y":-875000000000000000,"z":1050000000000000000}},"30002380":{"solarSystemId":30002380,"solarSystemName":"J:2L9N","location":{"x":-3360000000000000000,"y":-1000000000000000000,"z":767000000000000000}},"30002381":{"solarSystemId":30002381,"solarSystemName":"D:38O8","location":{"x":-3280000000000000000,"y":-1120000000000000000,"z":620000000000000000}},"30002382":{"solarSystemId":30002382,"solarSystemName":"Y:36VK","location":{"x":-3720000000000000000,"y":-1090000000000000000,"z":986000000000000000}},"30002383":{"solarSystemId":30002383,"solarSystemName":"F:3RS0","location":{"x":-3520000000000000000,"y":-1230000000000000000,"z":1060000000000000000}},"30002384":{"solarSystemId":30002384,"solarSystemName":"F:3EEE","location":{"x":-3700000000000000000,"y":-718000000000000000,"z":907000000000000000}},"30002385":{"solarSystemId":30002385,"solarSystemName":"J:2OV0","location":{"x":-3380000000000000000,"y":-920000000000000000,"z":623000000000000000}},"30002386":{"solarSystemId":30002386,"solarSystemName":"F:2ST9","location":{"x":-3220000000000000000,"y":-898000000000000000,"z":889000000000000000}},"30002387":{"solarSystemId":30002387,"solarSystemName":"F:3T86","location":{"x":-3730000000000000000,"y":-950000000000000000,"z":646000000000000000}},"30002388":{"solarSystemId":30002388,"solarSystemName":"G:2R43","location":{"x":-3650000000000000000,"y":-925000000000000000,"z":1140000000000000000}},"30002389":{"solarSystemId":30002389,"solarSystemName":"H:359T","location":{"x":-3500000000000000000,"y":-1020000000000000000,"z":622000000000000000}},"30002390":{"solarSystemId":30002390,"solarSystemName":"G:3OV3","location":{"x":-3470000000000000000,"y":-802000000000000000,"z":730000000000000000}},"30002391":{"solarSystemId":30002391,"solarSystemName":"M:2K76","location":{"x":-3410000000000000000,"y":-903000000000000000,"z":860000000000000000}},"30002392":{"solarSystemId":30002392,"solarSystemName":"M:2EN2","location":{"x":-3530000000000000000,"y":-1060000000000000000,"z":860000000000000000}},"30002393":{"solarSystemId":30002393,"solarSystemName":"U:3NN5","location":{"x":-3470000000000000000,"y":-1260000000000000000,"z":937000000000000000}},"30002394":{"solarSystemId":30002394,"solarSystemName":"G:3E3V","location":{"x":-3720000000000000000,"y":-1070000000000000000,"z":570000000000000000}},"30002395":{"solarSystemId":30002395,"solarSystemName":"M:3447","location":{"x":-3660000000000000000,"y":-604000000000000000,"z":888000000000000000}},"30002396":{"solarSystemId":30002396,"solarSystemName":"H:35E1","location":{"x":-3380000000000000000,"y":-942000000000000000,"z":1010000000000000000}},"30002397":{"solarSystemId":30002397,"solarSystemName":"B:3RAI","location":{"x":-3620000000000000000,"y":-762000000000000000,"z":907000000000000000}},"30002398":{"solarSystemId":30002398,"solarSystemName":"Z:2IIA","location":{"x":-1850000000000000000,"y":-646000000000000000,"z":1490000000000000000}},"30002399":{"solarSystemId":30002399,"solarSystemName":"J:3TA0","location":{"x":-2400000000000000000,"y":-658000000000000000,"z":1390000000000000000}},"30002400":{"solarSystemId":30002400,"solarSystemName":"D:33NO","location":{"x":-2210000000000000000,"y":-1110000000000000000,"z":1420000000000000000}},"30002401":{"solarSystemId":30002401,"solarSystemName":"H:IL19","location":{"x":-2240000000000000000,"y":-734000000000000000,"z":1510000000000000000}},"30002402":{"solarSystemId":30002402,"solarSystemName":"P:3SN1","location":{"x":-2030000000000000000,"y":-808000000000000000,"z":1770000000000000000}},"30002403":{"solarSystemId":30002403,"solarSystemName":"H:2RT0","location":{"x":-2050000000000000000,"y":-620000000000000000,"z":1390000000000000000}},"30002404":{"solarSystemId":30002404,"solarSystemName":"P:2V9L","location":{"x":-1990000000000000000,"y":-1040000000000000000,"z":1580000000000000000}},"30002405":{"solarSystemId":30002405,"solarSystemName":"F:ONTS","location":{"x":-1940000000000000000,"y":-484000000000000000,"z":1670000000000000000}},"30002406":{"solarSystemId":30002406,"solarSystemName":"M:1398","location":{"x":-2190000000000000000,"y":-816000000000000000,"z":1400000000000000000}},"30002407":{"solarSystemId":30002407,"solarSystemName":"F:NVS3","location":{"x":-1990000000000000000,"y":-632000000000000000,"z":1390000000000000000}},"30002408":{"solarSystemId":30002408,"solarSystemName":"Z:104R","location":{"x":-2340000000000000000,"y":-761000000000000000,"z":1690000000000000000}},"30002409":{"solarSystemId":30002409,"solarSystemName":"P:14E5","location":{"x":-2180000000000000000,"y":-1040000000000000000,"z":1180000000000000000}},"30002410":{"solarSystemId":30002410,"solarSystemName":"P:2K7R","location":{"x":-1460000000000000000,"y":-618000000000000000,"z":1430000000000000000}},"30002411":{"solarSystemId":30002411,"solarSystemName":"B:1SLE","location":{"x":-2400000000000000000,"y":-590000000000000000,"z":1350000000000000000}},"30002412":{"solarSystemId":30002412,"solarSystemName":"D:295E","location":{"x":-1900000000000000000,"y":-967000000000000000,"z":1630000000000000000}},"30002413":{"solarSystemId":30002413,"solarSystemName":"J:2K19","location":{"x":-1900000000000000000,"y":-332000000000000000,"z":1690000000000000000}},"30002414":{"solarSystemId":30002414,"solarSystemName":"G:3V6O","location":{"x":-2050000000000000000,"y":-274000000000000000,"z":1390000000000000000}},"30002415":{"solarSystemId":30002415,"solarSystemName":"Z:2T3S","location":{"x":-2330000000000000000,"y":-654000000000000000,"z":1340000000000000000}},"30002416":{"solarSystemId":30002416,"solarSystemName":"U:3VAI","location":{"x":-1980000000000000000,"y":-210000000000000000,"z":1290000000000000000}},"30002417":{"solarSystemId":30002417,"solarSystemName":"D:2ET0","location":{"x":-1900000000000000000,"y":-857000000000000000,"z":1830000000000000000}},"30002418":{"solarSystemId":30002418,"solarSystemName":"P:3V9O","location":{"x":-2220000000000000000,"y":-1180000000000000000,"z":1390000000000000000}},"30002419":{"solarSystemId":30002419,"solarSystemName":"M:38N5","location":{"x":-1850000000000000000,"y":-237000000000000000,"z":1190000000000000000}},"30002420":{"solarSystemId":30002420,"solarSystemName":"G:38TK","location":{"x":-2110000000000000000,"y":-616000000000000000,"z":1240000000000000000}},"30002421":{"solarSystemId":30002421,"solarSystemName":"F:32A5","location":{"x":-2090000000000000000,"y":1210000000000000000,"z":1890000000000000000}},"30002422":{"solarSystemId":30002422,"solarSystemName":"D:3A2I","location":{"x":-1450000000000000000,"y":743000000000000000,"z":3170000000000000000}},"30002423":{"solarSystemId":30002423,"solarSystemName":"D:2SIA","location":{"x":-2110000000000000000,"y":172000000000000000,"z":2390000000000000000}},"30002424":{"solarSystemId":30002424,"solarSystemName":"U:2L61","location":{"x":-561000000000000000,"y":419000000000000000,"z":2480000000000000000}},"30002425":{"solarSystemId":30002425,"solarSystemName":"M:297R","location":{"x":-1950000000000000000,"y":626000000000000000,"z":1640000000000000000}},"30002426":{"solarSystemId":30002426,"solarSystemName":"J:29TI","location":{"x":-1690000000000000000,"y":1250000000000000000,"z":3670000000000000000}},"30002427":{"solarSystemId":30002427,"solarSystemName":"U:3272","location":{"x":-2320000000000000000,"y":9420000000000000,"z":2520000000000000000}},"30002428":{"solarSystemId":30002428,"solarSystemName":"U:2KIE","location":{"x":-1870000000000000000,"y":869000000000000000,"z":3460000000000000000}},"30002429":{"solarSystemId":30002429,"solarSystemName":"U:360R","location":{"x":-1620000000000000000,"y":699000000000000000,"z":2520000000000000000}},"30002430":{"solarSystemId":30002430,"solarSystemName":"U:1SRT","location":{"x":-1530000000000000000,"y":285000000000000000,"z":2440000000000000000}},"30002431":{"solarSystemId":30002431,"solarSystemName":"H:3R80","location":{"x":-1980000000000000000,"y":1020000000000000000,"z":2320000000000000000}},"30002432":{"solarSystemId":30002432,"solarSystemName":"H:30A5","location":{"x":-2010000000000000000,"y":1110000000000000000,"z":1940000000000000000}},"30002433":{"solarSystemId":30002433,"solarSystemName":"P:3SNR","location":{"x":-1830000000000000000,"y":700000000000000000,"z":2500000000000000000}},"30002434":{"solarSystemId":30002434,"solarSystemName":"D:3309","location":{"x":-1950000000000000000,"y":1700000000000000000,"z":3030000000000000000}},"30002435":{"solarSystemId":30002435,"solarSystemName":"M:33RV","location":{"x":-1770000000000000000,"y":547000000000000000,"z":1670000000000000000}},"30002436":{"solarSystemId":30002436,"solarSystemName":"Z:2SAR","location":{"x":-1990000000000000000,"y":908000000000000000,"z":2750000000000000000}},"30002437":{"solarSystemId":30002437,"solarSystemName":"H:3ET5","location":{"x":-1340000000000000000,"y":906000000000000000,"z":2520000000000000000}},"30002438":{"solarSystemId":30002438,"solarSystemName":"Z:3NTN","location":{"x":-1850000000000000000,"y":2160000000000000000,"z":2640000000000000000}},"30002439":{"solarSystemId":30002439,"solarSystemName":"J:2I2K","location":{"x":-5820000000000000000,"y":9220000000000000000,"z":-491000000000000000}},"30002440":{"solarSystemId":30002440,"solarSystemName":"U:307E","location":{"x":-7640000000000000000,"y":8140000000000000000,"z":-518000000000000000}},"30002441":{"solarSystemId":30002441,"solarSystemName":"D:2KVO","location":{"x":-6830000000000000000,"y":9000000000000000000,"z":846000000000000000}},"30002442":{"solarSystemId":30002442,"solarSystemName":"B:2ESV","location":{"x":-7620000000000000000,"y":9610000000000000000,"z":1250000000000000000}},"30002443":{"solarSystemId":30002443,"solarSystemName":"Z:393T","location":{"x":-7000000000000000000,"y":9400000000000000000,"z":-2590000000000000000}},"30002444":{"solarSystemId":30002444,"solarSystemName":"B:2T07","location":{"x":-6350000000000000000,"y":7010000000000000000,"z":424000000000000000}},"30002445":{"solarSystemId":30002445,"solarSystemName":"F:30O3","location":{"x":-6750000000000000000,"y":7670000000000000000,"z":-2090000000000000000}},"30002446":{"solarSystemId":30002446,"solarSystemName":"G:1V13","location":{"x":-6780000000000000000,"y":7300000000000000000,"z":-756000000000000000}},"30002447":{"solarSystemId":30002447,"solarSystemName":"B:3438","location":{"x":-5900000000000000000,"y":6000000000000000000,"z":-440000000000000000}},"30002448":{"solarSystemId":30002448,"solarSystemName":"F:2NO9","location":{"x":-6090000000000000000,"y":7500000000000000000,"z":-700000000000000000}},"30002449":{"solarSystemId":30002449,"solarSystemName":"F:378A","location":{"x":-5200000000000000000,"y":6990000000000000000,"z":-2000000000000000000}},"30002450":{"solarSystemId":30002450,"solarSystemName":"P:31O7","location":{"x":-5760000000000000000,"y":7290000000000000000,"z":-1310000000000000000}},"30002451":{"solarSystemId":30002451,"solarSystemName":"U:1NEI","location":{"x":-5580000000000000000,"y":7020000000000000000,"z":-1530000000000000000}},"30002452":{"solarSystemId":30002452,"solarSystemName":"J:1LAN","location":{"x":-5430000000000000000,"y":7240000000000000000,"z":-2360000000000000000}},"30002453":{"solarSystemId":30002453,"solarSystemName":"F:185L","location":{"x":-5400000000000000000,"y":7110000000000000000,"z":-2050000000000000000}},"30002454":{"solarSystemId":30002454,"solarSystemName":"U:3TI6","location":{"x":-10700000000000000000,"y":9200000000000000000,"z":-1010000000000000000}},"30002455":{"solarSystemId":30002455,"solarSystemName":"M:3IKI","location":{"x":-8520000000000000000,"y":11900000000000000000,"z":-3630000000000000000}},"30002456":{"solarSystemId":30002456,"solarSystemName":"G:356E","location":{"x":-8980000000000000000,"y":11500000000000000000,"z":-1440000000000000000}},"30002457":{"solarSystemId":30002457,"solarSystemName":"D:332T","location":{"x":-8480000000000000000,"y":11500000000000000000,"z":727000000000000000}},"30002458":{"solarSystemId":30002458,"solarSystemName":"Q:1S83","location":{"x":-9890000000000000000,"y":8960000000000000000,"z":-1590000000000000000}},"30002459":{"solarSystemId":30002459,"solarSystemName":"Z:2TR8","location":{"x":-7850000000000000000,"y":7840000000000000000,"z":-2790000000000000000}},"30002460":{"solarSystemId":30002460,"solarSystemName":"F:30N6","location":{"x":-7590000000000000000,"y":8930000000000000000,"z":-3310000000000000000}},"30002461":{"solarSystemId":30002461,"solarSystemName":"Z:3022","location":{"x":-6840000000000000000,"y":8140000000000000000,"z":-3650000000000000000}},"30002462":{"solarSystemId":30002462,"solarSystemName":"B:3AL8","location":{"x":-7500000000000000000,"y":7540000000000000000,"z":-2540000000000000000}},"30002463":{"solarSystemId":30002463,"solarSystemName":"U:1R0T","location":{"x":-8270000000000000000,"y":7730000000000000000,"z":-2490000000000000000}},"30002464":{"solarSystemId":30002464,"solarSystemName":"G:3OOT","location":{"x":1680000000000000000,"y":8390000000000000000,"z":669000000000000000}},"30002465":{"solarSystemId":30002465,"solarSystemName":"P:3T16","location":{"x":2440000000000000000,"y":5740000000000000000,"z":1330000000000000000}},"30002466":{"solarSystemId":30002466,"solarSystemName":"P:2RTL","location":{"x":2450000000000000000,"y":4660000000000000000,"z":2360000000000000000}},"30002467":{"solarSystemId":30002467,"solarSystemName":"Q:3N8T","location":{"x":2700000000000000000,"y":5330000000000000000,"z":2030000000000000000}},"30002468":{"solarSystemId":30002468,"solarSystemName":"Q:3744","location":{"x":1840000000000000000,"y":7750000000000000000,"z":-2300000000000000}},"30002469":{"solarSystemId":30002469,"solarSystemName":"H:3S5T","location":{"x":243000000000000000,"y":8400000000000000000,"z":-1610000000000000000}},"30002470":{"solarSystemId":30002470,"solarSystemName":"M:2L2N","location":{"x":203000000000000000,"y":7050000000000000000,"z":-2700000000000000000}},"30002471":{"solarSystemId":30002471,"solarSystemName":"P:3698","location":{"x":-2380000000000000000,"y":6420000000000000000,"z":-1020000000000000000}},"30002472":{"solarSystemId":30002472,"solarSystemName":"M:2V56","location":{"x":-196000000000000000,"y":8350000000000000000,"z":-1570000000000000000}},"30002473":{"solarSystemId":30002473,"solarSystemName":"Q:3TAO","location":{"x":-1160000000000000000,"y":7210000000000000000,"z":-2150000000000000000}},"30002474":{"solarSystemId":30002474,"solarSystemName":"G:2T25","location":{"x":814000000000000000,"y":7810000000000000000,"z":1310000000000000000}},"30002475":{"solarSystemId":30002475,"solarSystemName":"H:2LO1","location":{"x":1340000000000000000,"y":6730000000000000000,"z":1540000000000000000}},"30002476":{"solarSystemId":30002476,"solarSystemName":"D:3482","location":{"x":1170000000000000000,"y":6230000000000000000,"z":68100000000000000}},"30002477":{"solarSystemId":30002477,"solarSystemName":"Z:2O2I","location":{"x":2160000000000000000,"y":6330000000000000000,"z":967000000000000000}},"30002478":{"solarSystemId":30002478,"solarSystemName":"J:3TAA","location":{"x":583000000000000000,"y":6160000000000000000,"z":1660000000000000000}},"30002479":{"solarSystemId":30002479,"solarSystemName":"Y:3V3S","location":{"x":958000000000000000,"y":7150000000000000000,"z":-2110000000000000000}},"30002480":{"solarSystemId":30002480,"solarSystemName":"Q:390S","location":{"x":982000000000000000,"y":6500000000000000000,"z":-2300000000000000000}},"30002481":{"solarSystemId":30002481,"solarSystemName":"H:2EIL","location":{"x":-189000000000000000,"y":5890000000000000000,"z":-1120000000000000000}},"30002482":{"solarSystemId":30002482,"solarSystemName":"H:3TRI","location":{"x":-2140000000000000000,"y":6100000000000000000,"z":-439000000000000000}},"30002483":{"solarSystemId":30002483,"solarSystemName":"G:2KAV","location":{"x":1320000000000000000,"y":6490000000000000000,"z":-2060000000000000000}},"30002484":{"solarSystemId":30002484,"solarSystemName":"B:3RN9","location":{"x":1530000000000000000,"y":9260000000000000000,"z":-5150000000000000000}},"30002485":{"solarSystemId":30002485,"solarSystemName":"D:2N7R","location":{"x":70200000000000000,"y":8100000000000000000,"z":-6360000000000000000}},"30002486":{"solarSystemId":30002486,"solarSystemName":"G:31LI","location":{"x":2270000000000000000,"y":8550000000000000000,"z":-5530000000000000000}},"30002487":{"solarSystemId":30002487,"solarSystemName":"P:30R5","location":{"x":278000000000000000,"y":8490000000000000000,"z":-7600000000000000000}},"30002488":{"solarSystemId":30002488,"solarSystemName":"G:3V25","location":{"x":3370000000000000000,"y":8970000000000000000,"z":-2620000000000000000}},"30002489":{"solarSystemId":30002489,"solarSystemName":"Z:2945","location":{"x":-747000000000000000,"y":12200000000000000000,"z":-1450000000000000000}},"30002490":{"solarSystemId":30002490,"solarSystemName":"Y:3T71","location":{"x":-2540000000000000000,"y":13200000000000000000,"z":1060000000000000000}},"30002491":{"solarSystemId":30002491,"solarSystemName":"F:35RK","location":{"x":-1340000000000000000,"y":13700000000000000000,"z":93100000000000000}},"30002492":{"solarSystemId":30002492,"solarSystemName":"D:37T0","location":{"x":-165000000000000000,"y":13700000000000000000,"z":-358000000000000000}},"30002493":{"solarSystemId":30002493,"solarSystemName":"U:2SAI","location":{"x":-2740000000000000000,"y":13800000000000000000,"z":-228000000000000000}},"30002494":{"solarSystemId":30002494,"solarSystemName":"Q:3AE0","location":{"x":-1920000000000000000,"y":11000000000000000000,"z":-3670000000000000000}},"30002495":{"solarSystemId":30002495,"solarSystemName":"J:3987","location":{"x":-1320000000000000000,"y":11400000000000000000,"z":-1600000000000000000}},"30002496":{"solarSystemId":30002496,"solarSystemName":"Q:34ST","location":{"x":-2250000000000000000,"y":13900000000000000000,"z":-2410000000000000000}},"30002497":{"solarSystemId":30002497,"solarSystemName":"B:368A","location":{"x":-3010000000000000000,"y":12400000000000000000,"z":-2940000000000000000}},"30002498":{"solarSystemId":30002498,"solarSystemName":"P:3I4V","location":{"x":-1570000000000000000,"y":11000000000000000000,"z":-2780000000000000000}},"30002499":{"solarSystemId":30002499,"solarSystemName":"M:3R1N","location":{"x":-910000000000000000,"y":11000000000000000000,"z":3400000000000000000}},"30002500":{"solarSystemId":30002500,"solarSystemName":"H:2OT4","location":{"x":-4430000000000000000,"y":11500000000000000000,"z":939000000000000000}},"30002501":{"solarSystemId":30002501,"solarSystemName":"Z:3VN6","location":{"x":-2130000000000000000,"y":10300000000000000000,"z":868000000000000000}},"30002502":{"solarSystemId":30002502,"solarSystemName":"J:305L","location":{"x":-408000000000000000,"y":10600000000000000000,"z":297000000000000000}},"30002503":{"solarSystemId":30002503,"solarSystemName":"P:32LI","location":{"x":251000000000000000,"y":8080000000000000000,"z":658000000000000000}},"30002504":{"solarSystemId":30002504,"solarSystemName":"J:30O0","location":{"x":2730000000000000000,"y":8790000000000000000,"z":-257000000000000000}},"30002505":{"solarSystemId":30002505,"solarSystemName":"H:30E8","location":{"x":1400000000000000000,"y":9870000000000000000,"z":-1590000000000000000}},"30002506":{"solarSystemId":30002506,"solarSystemName":"U:2OL3","location":{"x":2870000000000000000,"y":9660000000000000000,"z":1390000000000000000}},"30002507":{"solarSystemId":30002507,"solarSystemName":"M:3R47","location":{"x":3160000000000000000,"y":11100000000000000000,"z":-1980000000000000000}},"30002508":{"solarSystemId":30002508,"solarSystemName":"U:37RI","location":{"x":4820000000000000000,"y":10800000000000000000,"z":628000000000000000}},"30002509":{"solarSystemId":30002509,"solarSystemName":"H:3SSE","location":{"x":-332000000000000000,"y":-247000000000000000,"z":-1000000000000000000}},"30002510":{"solarSystemId":30002510,"solarSystemName":"G:2AKL","location":{"x":-246000000000000000,"y":-303000000000000000,"z":-963000000000000000}},"30002511":{"solarSystemId":30002511,"solarSystemName":"U:1E4K","location":{"x":-971000000000000000,"y":-507000000000000000,"z":-1380000000000000000}},"30002512":{"solarSystemId":30002512,"solarSystemName":"P:2A5N","location":{"x":-425000000000000000,"y":-844000000000000000,"z":-990000000000000000}},"30002513":{"solarSystemId":30002513,"solarSystemName":"H:19VV","location":{"x":-507000000000000000,"y":-751000000000000000,"z":-960000000000000000}},"30002514":{"solarSystemId":30002514,"solarSystemName":"Z:K68A","location":{"x":-813000000000000000,"y":-387000000000000000,"z":-1050000000000000000}},"30002515":{"solarSystemId":30002515,"solarSystemName":"G:2025","location":{"x":-122000000000000000,"y":-549000000000000000,"z":-1280000000000000000}},"30002516":{"solarSystemId":30002516,"solarSystemName":"M:2SSI","location":{"x":-801000000000000000,"y":-382000000000000000,"z":-1360000000000000000}},"30002517":{"solarSystemId":30002517,"solarSystemName":"Q:3KRS","location":{"x":-105000000000000000,"y":-487000000000000000,"z":-1310000000000000000}},"30002518":{"solarSystemId":30002518,"solarSystemName":"Z:1N94","location":{"x":112000000000000000,"y":-474000000000000000,"z":-1450000000000000000}},"30002519":{"solarSystemId":30002519,"solarSystemName":"U:1NAL","location":{"x":-193000000000000000,"y":-265000000000000000,"z":-972000000000000000}},"30002520":{"solarSystemId":30002520,"solarSystemName":"Q:2S58","location":{"x":-414000000000000000,"y":-1170000000000000000,"z":-388000000000000000}},"30002521":{"solarSystemId":30002521,"solarSystemName":"Z:3383","location":{"x":-474000000000000000,"y":-740000000000000000,"z":-1120000000000000000}},"30002522":{"solarSystemId":30002522,"solarSystemName":"Q:3I37","location":{"x":-472000000000000000,"y":-1140000000000000000,"z":-731000000000000000}},"30002523":{"solarSystemId":30002523,"solarSystemName":"F:1EIN","location":{"x":-869000000000000000,"y":-524000000000000000,"z":-1520000000000000000}},"30002524":{"solarSystemId":30002524,"solarSystemName":"M:1315","location":{"x":60400000000000000,"y":-462000000000000000,"z":-1480000000000000000}},"30002525":{"solarSystemId":30002525,"solarSystemName":"D:3580","location":{"x":-633000000000000000,"y":-332000000000000000,"z":-1140000000000000000}},"30002526":{"solarSystemId":30002526,"solarSystemName":"J:1I6T","location":{"x":-202000000000000000,"y":-618000000000000000,"z":-1270000000000000000}},"30002527":{"solarSystemId":30002527,"solarSystemName":"G:EE92","location":{"x":-340000000000000000,"y":-385000000000000000,"z":-1380000000000000000}},"30002528":{"solarSystemId":30002528,"solarSystemName":"U:2VRV","location":{"x":367000000000000000,"y":-28500000000000000,"z":-2100000000000000000}},"30002529":{"solarSystemId":30002529,"solarSystemName":"J:2L97","location":{"x":-309000000000000000,"y":302000000000000000,"z":-1340000000000000000}},"30002530":{"solarSystemId":30002530,"solarSystemName":"F:1R3A","location":{"x":-266000000000000000,"y":-215000000000000000,"z":-1620000000000000000}},"30002531":{"solarSystemId":30002531,"solarSystemName":"M:2KOE","location":{"x":-234000000000000000,"y":66900000000000000,"z":-1510000000000000000}},"30002532":{"solarSystemId":30002532,"solarSystemName":"J:20A6","location":{"x":181000000000000000,"y":-352000000000000000,"z":-2100000000000000000}},"30002533":{"solarSystemId":30002533,"solarSystemName":"J:3I64","location":{"x":-322000000000000000,"y":-449000000000000000,"z":-2410000000000000000}},"30002534":{"solarSystemId":30002534,"solarSystemName":"P:114I","location":{"x":56900000000000000,"y":187000000000000000,"z":-1940000000000000000}},"30002535":{"solarSystemId":30002535,"solarSystemName":"H:30V0","location":{"x":228000000000000000,"y":193000000000000000,"z":-1650000000000000000}},"30002536":{"solarSystemId":30002536,"solarSystemName":"F:116T","location":{"x":476000000000000000,"y":-102000000000000000,"z":-2250000000000000000}},"30002537":{"solarSystemId":30002537,"solarSystemName":"H:33SO","location":{"x":255000000000000000,"y":-104000000000000000,"z":-1640000000000000000}},"30002538":{"solarSystemId":30002538,"solarSystemName":"B:2668","location":{"x":-66600000000000000,"y":572000000000000000,"z":-1590000000000000000}},"30002539":{"solarSystemId":30002539,"solarSystemName":"Y:3ALO","location":{"x":308000000000000000,"y":601000000000000000,"z":-2020000000000000000}},"30002540":{"solarSystemId":30002540,"solarSystemName":"F:2RI9","location":{"x":567000000000000000,"y":633000000000000000,"z":-1400000000000000000}},"30002541":{"solarSystemId":30002541,"solarSystemName":"D:2A72","location":{"x":357000000000000000,"y":48300000000000000,"z":-2610000000000000000}},"30002542":{"solarSystemId":30002542,"solarSystemName":"F:15L9","location":{"x":-201000000000000000,"y":-357000000000000000,"z":-2340000000000000000}},"30002543":{"solarSystemId":30002543,"solarSystemName":"U:1VR2","location":{"x":-493000000000000000,"y":313000000000000000,"z":-2120000000000000000}},"30002544":{"solarSystemId":30002544,"solarSystemName":"F:NNOR","location":{"x":291000000000000000,"y":-72400000000000000,"z":-1490000000000000000}},"30002545":{"solarSystemId":30002545,"solarSystemName":"Q:226I","location":{"x":264000000000000000,"y":109000000000000000,"z":-1670000000000000000}},"30002546":{"solarSystemId":30002546,"solarSystemName":"M:23L9","location":{"x":326000000000000000,"y":595000000000000000,"z":-2520000000000000000}},"30002547":{"solarSystemId":30002547,"solarSystemName":"P:3AN5","location":{"x":-1150000000000000000,"y":-925000000000000000,"z":-587000000000000000}},"30002548":{"solarSystemId":30002548,"solarSystemName":"D:2S6E","location":{"x":-670000000000000000,"y":-1280000000000000000,"z":-20800000000000000}},"30002549":{"solarSystemId":30002549,"solarSystemName":"M:3102","location":{"x":-194000000000000000,"y":-1370000000000000000,"z":724000000000000000}},"30002550":{"solarSystemId":30002550,"solarSystemName":"Z:2T55","location":{"x":-699000000000000000,"y":-1470000000000000000,"z":-511000000000000000}},"30002551":{"solarSystemId":30002551,"solarSystemName":"Z:35I9","location":{"x":-1380000000000000000,"y":-2050000000000000000,"z":-656000000000000000}},"30002552":{"solarSystemId":30002552,"solarSystemName":"G:1KRR","location":{"x":-1060000000000000000,"y":-886000000000000000,"z":303000000000000000}},"30002553":{"solarSystemId":30002553,"solarSystemName":"B:1N4E","location":{"x":-1160000000000000000,"y":-1130000000000000000,"z":-363000000000000000}},"30002554":{"solarSystemId":30002554,"solarSystemName":"Y:1E7N","location":{"x":-573000000000000000,"y":-1510000000000000000,"z":-609000000000000000}},"30002555":{"solarSystemId":30002555,"solarSystemName":"D:24NR","location":{"x":-965000000000000000,"y":-858000000000000000,"z":178000000000000000}},"30002556":{"solarSystemId":30002556,"solarSystemName":"Y:3EO7","location":{"x":-1140000000000000000,"y":-975000000000000000,"z":-500000000000000000}},"30002557":{"solarSystemId":30002557,"solarSystemName":"P:S9RN","location":{"x":-919000000000000000,"y":-569000000000000000,"z":275000000000000000}},"30002558":{"solarSystemId":30002558,"solarSystemName":"J:3O7O","location":{"x":-1150000000000000000,"y":-994000000000000000,"z":-226000000000000000}},"30002559":{"solarSystemId":30002559,"solarSystemName":"H:35E3","location":{"x":-989000000000000000,"y":-1340000000000000000,"z":-514000000000000000}},"30002560":{"solarSystemId":30002560,"solarSystemName":"Q:258A","location":{"x":-65900000000000000,"y":-1870000000000000000,"z":-137000000000000000}},"30002561":{"solarSystemId":30002561,"solarSystemName":"F:2IOA","location":{"x":-948000000000000000,"y":-1090000000000000000,"z":-339000000000000000}},"30002562":{"solarSystemId":30002562,"solarSystemName":"Y:3625","location":{"x":-1180000000000000000,"y":-909000000000000000,"z":-237000000000000000}},"30002563":{"solarSystemId":30002563,"solarSystemName":"J:3S13","location":{"x":-279000000000000000,"y":-2160000000000000000,"z":-69600000000000000}},"30002564":{"solarSystemId":30002564,"solarSystemName":"P:31KS","location":{"x":-649000000000000000,"y":-1000000000000000000,"z":309000000000000000}},"30002565":{"solarSystemId":30002565,"solarSystemName":"P:309N","location":{"x":-1350000000000000000,"y":-1940000000000000000,"z":-270000000000000000}},"30002566":{"solarSystemId":30002566,"solarSystemName":"Z:38N3","location":{"x":-1170000000000000000,"y":-1780000000000000000,"z":-486000000000000000}},"30002567":{"solarSystemId":30002567,"solarSystemName":"Q:3EK4","location":{"x":-470000000000000000,"y":-1100000000000000000,"z":605000000000000000}},"30002568":{"solarSystemId":30002568,"solarSystemName":"B:2T1E","location":{"x":-1810000000000000000,"y":-2000000000000000000,"z":-1280000000000000000}},"30002569":{"solarSystemId":30002569,"solarSystemName":"G:307R","location":{"x":-1660000000000000000,"y":-1710000000000000000,"z":-1660000000000000000}},"30002570":{"solarSystemId":30002570,"solarSystemName":"G:33O6","location":{"x":-1640000000000000000,"y":-894000000000000000,"z":-1710000000000000000}},"30002571":{"solarSystemId":30002571,"solarSystemName":"M:3072","location":{"x":-1400000000000000000,"y":-966000000000000000,"z":-1150000000000000000}},"30002572":{"solarSystemId":30002572,"solarSystemName":"J:35N3","location":{"x":-1120000000000000000,"y":-906000000000000000,"z":-1420000000000000000}},"30002573":{"solarSystemId":30002573,"solarSystemName":"H:28O0","location":{"x":-1660000000000000000,"y":-1300000000000000000,"z":-1440000000000000000}},"30002574":{"solarSystemId":30002574,"solarSystemName":"D:VN25","location":{"x":-757000000000000000,"y":-982000000000000000,"z":-1560000000000000000}},"30002575":{"solarSystemId":30002575,"solarSystemName":"Q:1TKR","location":{"x":-749000000000000000,"y":-816000000000000000,"z":-1400000000000000000}},"30002576":{"solarSystemId":30002576,"solarSystemName":"D:3S11","location":{"x":-686000000000000000,"y":-956000000000000000,"z":-1450000000000000000}},"30002577":{"solarSystemId":30002577,"solarSystemName":"F:33R0","location":{"x":-504000000000000000,"y":-2260000000000000000,"z":-1920000000000000000}},"30002578":{"solarSystemId":30002578,"solarSystemName":"U:36O0","location":{"x":-1450000000000000000,"y":-2000000000000000000,"z":-1850000000000000000}},"30002579":{"solarSystemId":30002579,"solarSystemName":"J:3A5R","location":{"x":-1620000000000000000,"y":-1430000000000000000,"z":-1400000000000000000}},"30002580":{"solarSystemId":30002580,"solarSystemName":"P:1NLK","location":{"x":-1030000000000000000,"y":-1620000000000000000,"z":-1650000000000000000}},"30002581":{"solarSystemId":30002581,"solarSystemName":"H:LVL6","location":{"x":-346000000000000000,"y":-1090000000000000000,"z":-1120000000000000000}},"30002582":{"solarSystemId":30002582,"solarSystemName":"F:1SLA","location":{"x":-795000000000000000,"y":-614000000000000000,"z":-1610000000000000000}},"30002583":{"solarSystemId":30002583,"solarSystemName":"B:258K","location":{"x":-915000000000000000,"y":-827000000000000000,"z":-1310000000000000000}},"30002584":{"solarSystemId":30002584,"solarSystemName":"P:2VLA","location":{"x":-47300000000000000,"y":-708000000000000000,"z":-262000000000000000}},"30002585":{"solarSystemId":30002585,"solarSystemName":"Z:2OE7","location":{"x":-232000000000000000,"y":-511000000000000000,"z":282000000000000000}},"30002586":{"solarSystemId":30002586,"solarSystemName":"Y:24AO","location":{"x":719000000000000000,"y":-312000000000000000,"z":-487000000000000000}},"30002587":{"solarSystemId":30002587,"solarSystemName":"Z:312K","location":{"x":-354000000000000000,"y":-86100000000000000,"z":1050000000000000000}},"30002588":{"solarSystemId":30002588,"solarSystemName":"H:2430","location":{"x":-466000000000000000,"y":-720000000000000000,"z":316000000000000000}},"30002589":{"solarSystemId":30002589,"solarSystemName":"M:11L6","location":{"x":-72300000000000000,"y":-278000000000000000,"z":437000000000000000}},"30002590":{"solarSystemId":30002590,"solarSystemName":"P:5242","location":{"x":283000000000000000,"y":-705000000000000000,"z":655000000000000000}},"30002591":{"solarSystemId":30002591,"solarSystemName":"H:KE55","location":{"x":629000000000000000,"y":-275000000000000000,"z":-551000000000000000}},"30002592":{"solarSystemId":30002592,"solarSystemName":"Z:29R4","location":{"x":10500000000000000,"y":-38500000000000000,"z":237000000000000000}},"30002593":{"solarSystemId":30002593,"solarSystemName":"Y:1K11","location":{"x":-687000000000000000,"y":235000000000000000,"z":721000000000000000}},"30002594":{"solarSystemId":30002594,"solarSystemName":"Z:1LNL","location":{"x":461000000000000000,"y":-514000000000000000,"z":-704000000000000000}},"30002595":{"solarSystemId":30002595,"solarSystemName":"Z:1ER9","location":{"x":507000000000000000,"y":-346000000000000000,"z":-76600000000000000}},"30002596":{"solarSystemId":30002596,"solarSystemName":"P:3N7N","location":{"x":-549000000000000000,"y":178000000000000000,"z":1300000000000000000}},"30002597":{"solarSystemId":30002597,"solarSystemName":"Z:I599","location":{"x":280000000000000000,"y":455000000000000000,"z":700000000000000000}},"30002598":{"solarSystemId":30002598,"solarSystemName":"M:1AO2","location":{"x":399000000000000000,"y":-711000000000000000,"z":1060000000000000000}},"30002599":{"solarSystemId":30002599,"solarSystemName":"G:2AEE","location":{"x":282000000000000000,"y":-64300000000000000,"z":1350000000000000000}},"30002600":{"solarSystemId":30002600,"solarSystemName":"Z:124O","location":{"x":400000000000000000,"y":-458000000000000000,"z":-62500000000000000}},"30002601":{"solarSystemId":30002601,"solarSystemName":"Z:1SV7","location":{"x":-602000000000000000,"y":-302000000000000000,"z":346000000000000000}},"30002602":{"solarSystemId":30002602,"solarSystemName":"M:33IA","location":{"x":566000000000000000,"y":-467000000000000000,"z":-406000000000000000}},"30002603":{"solarSystemId":30002603,"solarSystemName":"F:1KA7","location":{"x":-59200000000000000,"y":-265000000000000000,"z":519000000000000000}},"30002604":{"solarSystemId":30002604,"solarSystemName":"F:1LKR","location":{"x":-217000000000000000,"y":-856000000000000000,"z":824000000000000000}},"30002605":{"solarSystemId":30002605,"solarSystemName":"U:32E0","location":{"x":-60400000000000000,"y":-253000000000000000,"z":-143000000000000000}},"30002606":{"solarSystemId":30002606,"solarSystemName":"H:3815","location":{"x":-1760000000000000000,"y":-267000000000000000,"z":-1700000000000000000}},"30002607":{"solarSystemId":30002607,"solarSystemName":"M:2K7L","location":{"x":-1800000000000000000,"y":-242000000000000000,"z":-1150000000000000000}},"30002608":{"solarSystemId":30002608,"solarSystemName":"Y:22IS","location":{"x":-1250000000000000000,"y":-583000000000000000,"z":-1820000000000000000}},"30002609":{"solarSystemId":30002609,"solarSystemName":"P:1K4E","location":{"x":-2010000000000000000,"y":-376000000000000000,"z":-1540000000000000000}},"30002610":{"solarSystemId":30002610,"solarSystemName":"F:27S0","location":{"x":-1140000000000000000,"y":-387000000000000000,"z":-1600000000000000000}},"30002611":{"solarSystemId":30002611,"solarSystemName":"U:L61R","location":{"x":-1620000000000000000,"y":21800000000000000,"z":-1350000000000000000}},"30002612":{"solarSystemId":30002612,"solarSystemName":"Q:1OAE","location":{"x":-1830000000000000000,"y":-126000000000000000,"z":-1620000000000000000}},"30002613":{"solarSystemId":30002613,"solarSystemName":"Y:2OOA","location":{"x":-1020000000000000000,"y":-185000000000000000,"z":-1200000000000000000}},"30002614":{"solarSystemId":30002614,"solarSystemName":"M:1STV","location":{"x":-556000000000000000,"y":-324000000000000000,"z":-1880000000000000000}},"30002615":{"solarSystemId":30002615,"solarSystemName":"P:34ON","location":{"x":-777000000000000000,"y":-21900000000000000,"z":-1950000000000000000}},"30002616":{"solarSystemId":30002616,"solarSystemName":"U:131K","location":{"x":-1270000000000000000,"y":-575000000000000000,"z":-1290000000000000000}},"30002617":{"solarSystemId":30002617,"solarSystemName":"P:1EO8","location":{"x":-1190000000000000000,"y":-221000000000000000,"z":-1040000000000000000}},"30002618":{"solarSystemId":30002618,"solarSystemName":"Y:3V3K","location":{"x":-824000000000000000,"y":-213000000000000000,"z":-1850000000000000000}},"30002619":{"solarSystemId":30002619,"solarSystemName":"Z:1836","location":{"x":-1680000000000000000,"y":-301000000000000000,"z":-1010000000000000000}},"30002620":{"solarSystemId":30002620,"solarSystemName":"G:2RNR","location":{"x":-1280000000000000000,"y":-232000000000000000,"z":-1100000000000000000}},"30002621":{"solarSystemId":30002621,"solarSystemName":"G:286T","location":{"x":-1810000000000000000,"y":-396000000000000000,"z":-1060000000000000000}},"30002622":{"solarSystemId":30002622,"solarSystemName":"J:2L65","location":{"x":-1460000000000000000,"y":-83900000000000000,"z":-1470000000000000000}},"30002623":{"solarSystemId":30002623,"solarSystemName":"J:1V7R","location":{"x":-846000000000000000,"y":-458000000000000000,"z":-1860000000000000000}},"30002624":{"solarSystemId":30002624,"solarSystemName":"P:2OVR","location":{"x":-1690000000000000000,"y":-492000000000000000,"z":-1140000000000000000}},"30002625":{"solarSystemId":30002625,"solarSystemName":"H:286V","location":{"x":-1170000000000000000,"y":-586000000000000000,"z":-1060000000000000000}},"30002626":{"solarSystemId":30002626,"solarSystemName":"Z:21LS","location":{"x":-1910000000000000000,"y":-328000000000000000,"z":-1520000000000000000}},"30002627":{"solarSystemId":30002627,"solarSystemName":"M:3EE0","location":{"x":611000000000000000,"y":1090000000000000000,"z":-966000000000000000}},"30002628":{"solarSystemId":30002628,"solarSystemName":"F:2NTV","location":{"x":2890000000000000000,"y":-46500000000000000,"z":-1010000000000000000}},"30002629":{"solarSystemId":30002629,"solarSystemName":"Z:SNT0","location":{"x":318000000000000000,"y":-518000000000000000,"z":-2200000000000000000}},"30002630":{"solarSystemId":30002630,"solarSystemName":"P:291T","location":{"x":-165000000000000000,"y":-950000000000000000,"z":-1970000000000000000}},"30002631":{"solarSystemId":30002631,"solarSystemName":"D:SI7E","location":{"x":1000000000000000000,"y":-37200000000000000,"z":-3420000000000000000}},"30002632":{"solarSystemId":30002632,"solarSystemName":"Q:2O9R","location":{"x":991000000000000000,"y":-582000000000000000,"z":-2340000000000000000}},"30002633":{"solarSystemId":30002633,"solarSystemName":"D:3NTO","location":{"x":1990000000000000000,"y":-350000000000000000,"z":-1790000000000000000}},"30002634":{"solarSystemId":30002634,"solarSystemName":"G:1EKR","location":{"x":1390000000000000000,"y":382000000000000000,"z":-3280000000000000000}},"30002635":{"solarSystemId":30002635,"solarSystemName":"M:1EST","location":{"x":1200000000000000000,"y":990000000000000000,"z":-1400000000000000000}},"30002636":{"solarSystemId":30002636,"solarSystemName":"J:1S90","location":{"x":1460000000000000000,"y":294000000000000000,"z":-2040000000000000000}},"30002637":{"solarSystemId":30002637,"solarSystemName":"J:39E0","location":{"x":949000000000000000,"y":-392000000000000000,"z":-2500000000000000000}},"30002638":{"solarSystemId":30002638,"solarSystemName":"U:25E8","location":{"x":1010000000000000000,"y":142000000000000000,"z":-3160000000000000000}},"30002639":{"solarSystemId":30002639,"solarSystemName":"J:2A18","location":{"x":1490000000000000000,"y":-1520000000000000000,"z":-1530000000000000000}},"30002640":{"solarSystemId":30002640,"solarSystemName":"M:211A","location":{"x":688000000000000000,"y":-627000000000000000,"z":-2030000000000000000}},"30002641":{"solarSystemId":30002641,"solarSystemName":"Z:399E","location":{"x":1420000000000000000,"y":-959000000000000000,"z":-1930000000000000000}},"30002642":{"solarSystemId":30002642,"solarSystemName":"Y:2VVL","location":{"x":1230000000000000000,"y":-243000000000000000,"z":-611000000000000000}},"30002643":{"solarSystemId":30002643,"solarSystemName":"J:2I5K","location":{"x":1080000000000000000,"y":31600000000000000,"z":-2100000000000000000}},"30002644":{"solarSystemId":30002644,"solarSystemName":"F:3EEV","location":{"x":593000000000000000,"y":884000000000000000,"z":-1000000000000000000}},"30002645":{"solarSystemId":30002645,"solarSystemName":"G:3OA8","location":{"x":1030000000000000000,"y":-253000000000000000,"z":-3330000000000000000}},"30002646":{"solarSystemId":30002646,"solarSystemName":"G:3150","location":{"x":862000000000000000,"y":348000000000000000,"z":-706000000000000000}},"30002647":{"solarSystemId":30002647,"solarSystemName":"J:1R6L","location":{"x":172000000000000000,"y":-852000000000000000,"z":-1810000000000000000}},"30002648":{"solarSystemId":30002648,"solarSystemName":"U:I509","location":{"x":1980000000000000000,"y":-760000000000000000,"z":-1650000000000000000}},"30002649":{"solarSystemId":30002649,"solarSystemName":"P:1O8A","location":{"x":778000000000000000,"y":161000000000000000,"z":-826000000000000000}},"30002650":{"solarSystemId":30002650,"solarSystemName":"G:2I22","location":{"x":-1680000000000000000,"y":253000000000000000,"z":-2120000000000000000}},"30002651":{"solarSystemId":30002651,"solarSystemName":"P:31ET","location":{"x":-1630000000000000000,"y":936000000000000000,"z":-969000000000000000}},"30002652":{"solarSystemId":30002652,"solarSystemName":"F:2EA2","location":{"x":-1150000000000000000,"y":641000000000000000,"z":-1680000000000000000}},"30002653":{"solarSystemId":30002653,"solarSystemName":"H:3E2T","location":{"x":-1160000000000000000,"y":465000000000000000,"z":-2150000000000000000}},"30002654":{"solarSystemId":30002654,"solarSystemName":"G:395R","location":{"x":-1350000000000000000,"y":530000000000000000,"z":-2060000000000000000}},"30002655":{"solarSystemId":30002655,"solarSystemName":"D:2I32","location":{"x":-1580000000000000000,"y":1340000000000000000,"z":-1120000000000000000}},"30002656":{"solarSystemId":30002656,"solarSystemName":"Q:3R28","location":{"x":-375000000000000000,"y":1200000000000000000,"z":-2260000000000000000}},"30002657":{"solarSystemId":30002657,"solarSystemName":"P:22RO","location":{"x":-1210000000000000000,"y":1420000000000000000,"z":-2580000000000000000}},"30002658":{"solarSystemId":30002658,"solarSystemName":"U:V4E2","location":{"x":-1760000000000000000,"y":303000000000000000,"z":-816000000000000000}},"30002659":{"solarSystemId":30002659,"solarSystemName":"Q:2SA8","location":{"x":-1860000000000000000,"y":1210000000000000000,"z":-1420000000000000000}},"30002660":{"solarSystemId":30002660,"solarSystemName":"P:3RA2","location":{"x":-1940000000000000000,"y":216000000000000000,"z":-1150000000000000000}},"30002661":{"solarSystemId":30002661,"solarSystemName":"J:2A53","location":{"x":-1680000000000000000,"y":1090000000000000000,"z":-885000000000000000}},"30002662":{"solarSystemId":30002662,"solarSystemName":"Q:3ALT","location":{"x":-1140000000000000000,"y":1320000000000000000,"z":-1380000000000000000}},"30002663":{"solarSystemId":30002663,"solarSystemName":"Q:15KT","location":{"x":-1490000000000000000,"y":284000000000000000,"z":-1270000000000000000}},"30002664":{"solarSystemId":30002664,"solarSystemName":"H:K1A4","location":{"x":-1830000000000000000,"y":127000000000000000,"z":-1370000000000000000}},"30002665":{"solarSystemId":30002665,"solarSystemName":"J:3RET","location":{"x":-799000000000000000,"y":901000000000000000,"z":-2200000000000000000}},"30002666":{"solarSystemId":30002666,"solarSystemName":"J:1LT3","location":{"x":-1840000000000000000,"y":1280000000000000000,"z":-2100000000000000000}},"30002667":{"solarSystemId":30002667,"solarSystemName":"P:2RVO","location":{"x":-595000000000000000,"y":282000000000000000,"z":-259000000000000000}},"30002668":{"solarSystemId":30002668,"solarSystemName":"Z:3ALK","location":{"x":-561000000000000000,"y":423000000000000000,"z":-572000000000000000}},"30002669":{"solarSystemId":30002669,"solarSystemName":"H:SAV3","location":{"x":-822000000000000000,"y":57700000000000000,"z":-590000000000000000}},"30002670":{"solarSystemId":30002670,"solarSystemName":"Q:127E","location":{"x":-114000000000000000,"y":-180000000000000000,"z":-296000000000000000}},"30002671":{"solarSystemId":30002671,"solarSystemName":"B:39L8","location":{"x":-774000000000000000,"y":498000000000000000,"z":-465000000000000000}},"30002672":{"solarSystemId":30002672,"solarSystemName":"Q:SLL6","location":{"x":-226000000000000000,"y":22300000000000000,"z":-677000000000000000}},"30002673":{"solarSystemId":30002673,"solarSystemName":"Z:NK22","location":{"x":60300000000000000,"y":-133000000000000000,"z":-369000000000000000}},"30002674":{"solarSystemId":30002674,"solarSystemName":"U:3A3E","location":{"x":-113000000000000000,"y":333000000000000000,"z":-924000000000000000}},"30002675":{"solarSystemId":30002675,"solarSystemName":"Q:11RV","location":{"x":85500000000000000,"y":16500000000000000,"z":-403000000000000000}},"30002676":{"solarSystemId":30002676,"solarSystemName":"F:O62E","location":{"x":267000000000000000,"y":50200000000000000,"z":-595000000000000000}},"30002677":{"solarSystemId":30002677,"solarSystemName":"H:2K80","location":{"x":-1040000000000000000,"y":698000000000000000,"z":104000000000000000}},"30002678":{"solarSystemId":30002678,"solarSystemName":"J:30L6","location":{"x":255000000000000000,"y":208000000000000000,"z":-785000000000000000}},"30002679":{"solarSystemId":30002679,"solarSystemName":"P:340S","location":{"x":-1220000000000000000,"y":551000000000000000,"z":-366000000000000000}},"30002680":{"solarSystemId":30002680,"solarSystemName":"Z:3OI0","location":{"x":-899000000000000000,"y":-170000000000000000,"z":-754000000000000000}},"30002681":{"solarSystemId":30002681,"solarSystemName":"F:3A75","location":{"x":-1340000000000000000,"y":396000000000000000,"z":-730000000000000000}},"30002682":{"solarSystemId":30002682,"solarSystemName":"D:2O4T","location":{"x":-710000000000000000,"y":1150000000000000000,"z":-895000000000000000}},"30002683":{"solarSystemId":30002683,"solarSystemName":"D:1K94","location":{"x":-1060000000000000000,"y":-155000000000000000,"z":-1020000000000000000}},"30002684":{"solarSystemId":30002684,"solarSystemName":"M:1V98","location":{"x":372000000000000000,"y":432000000000000000,"z":-247000000000000000}},"30002685":{"solarSystemId":30002685,"solarSystemName":"H:3136","location":{"x":-8310000000000000000,"y":-1710000000000000000,"z":-1020000000000000000}},"30002686":{"solarSystemId":30002686,"solarSystemName":"Z:2R6O","location":{"x":-7500000000000000000,"y":-1140000000000000000,"z":-315000000000000000}},"30002687":{"solarSystemId":30002687,"solarSystemName":"Y:2N7L","location":{"x":-8330000000000000000,"y":-1780000000000000000,"z":451000000000000000}},"30002688":{"solarSystemId":30002688,"solarSystemName":"D:1E32","location":{"x":-8890000000000000000,"y":-1380000000000000000,"z":-136000000000000000}},"30002689":{"solarSystemId":30002689,"solarSystemName":"U:2LI5","location":{"x":-7860000000000000000,"y":-1160000000000000000,"z":-125000000000000000}},"30002690":{"solarSystemId":30002690,"solarSystemName":"Y:22E9","location":{"x":-7540000000000000000,"y":-2090000000000000000,"z":-646000000000000000}},"30002691":{"solarSystemId":30002691,"solarSystemName":"M:140R","location":{"x":-8510000000000000000,"y":-2420000000000000000,"z":-792000000000000000}},"30002692":{"solarSystemId":30002692,"solarSystemName":"U:16S4","location":{"x":-9270000000000000000,"y":-1300000000000000000,"z":-121000000000000000}},"30002693":{"solarSystemId":30002693,"solarSystemName":"B:3007","location":{"x":-7720000000000000000,"y":-1160000000000000000,"z":-761000000000000000}},"30002694":{"solarSystemId":30002694,"solarSystemName":"Y:39AO","location":{"x":-8740000000000000000,"y":-2890000000000000000,"z":123000000000000000}},"30002695":{"solarSystemId":30002695,"solarSystemName":"U:29E8","location":{"x":-8730000000000000000,"y":-3280000000000000000,"z":-245000000000000000}},"30002696":{"solarSystemId":30002696,"solarSystemName":"G:38N9","location":{"x":-7780000000000000000,"y":-3010000000000000000,"z":-1280000000000000000}},"30002697":{"solarSystemId":30002697,"solarSystemName":"B:2KO0","location":{"x":-9780000000000000000,"y":-2720000000000000000,"z":-1290000000000000000}},"30002698":{"solarSystemId":30002698,"solarSystemName":"B:2TO5","location":{"x":-8510000000000000000,"y":-2340000000000000000,"z":188000000000000000}},"30002699":{"solarSystemId":30002699,"solarSystemName":"Q:32NS","location":{"x":-7110000000000000000,"y":-1590000000000000000,"z":-409000000000000000}},"30002700":{"solarSystemId":30002700,"solarSystemName":"P:369V","location":{"x":-8510000000000000000,"y":-2560000000000000000,"z":-358000000000000000}},"30002701":{"solarSystemId":30002701,"solarSystemName":"F:2K4S","location":{"x":-6230000000000000000,"y":95700000000000000,"z":1240000000000000000}},"30002702":{"solarSystemId":30002702,"solarSystemName":"D:325R","location":{"x":-6790000000000000000,"y":847000000000000000,"z":521000000000000000}},"30002703":{"solarSystemId":30002703,"solarSystemName":"G:1R3R","location":{"x":-6690000000000000000,"y":-225000000000000000,"z":967000000000000000}},"30002704":{"solarSystemId":30002704,"solarSystemName":"F:1AL8","location":{"x":-6020000000000000000,"y":-153000000000000000,"z":842000000000000000}},"30002705":{"solarSystemId":30002705,"solarSystemName":"F:34RN","location":{"x":-7250000000000000000,"y":414000000000000000,"z":1070000000000000000}},"30002706":{"solarSystemId":30002706,"solarSystemName":"P:26N3","location":{"x":-7270000000000000000,"y":45600000000000000,"z":994000000000000000}},"30002707":{"solarSystemId":30002707,"solarSystemName":"H:388E","location":{"x":-7250000000000000000,"y":716000000000000000,"z":831000000000000000}},"30002708":{"solarSystemId":30002708,"solarSystemName":"Z:2V7O","location":{"x":-5890000000000000000,"y":216000000000000000,"z":679000000000000000}},"30002709":{"solarSystemId":30002709,"solarSystemName":"M:20S0","location":{"x":-6330000000000000000,"y":219000000000000000,"z":647000000000000000}},"30002710":{"solarSystemId":30002710,"solarSystemName":"J:100T","location":{"x":-6060000000000000000,"y":32500000000000000,"z":800000000000000000}},"30002711":{"solarSystemId":30002711,"solarSystemName":"Z:NSON","location":{"x":-7150000000000000000,"y":435000000000000000,"z":1240000000000000000}},"30002712":{"solarSystemId":30002712,"solarSystemName":"P:14V7","location":{"x":-6970000000000000000,"y":407000000000000000,"z":1360000000000000000}},"30002713":{"solarSystemId":30002713,"solarSystemName":"G:2EN5","location":{"x":-6710000000000000000,"y":-55600000000000000,"z":1080000000000000000}},"30002714":{"solarSystemId":30002714,"solarSystemName":"F:37VR","location":{"x":-6710000000000000000,"y":1050000000000000000,"z":1380000000000000000}},"30002715":{"solarSystemId":30002715,"solarSystemName":"H:31NA","location":{"x":-6590000000000000000,"y":501000000000000000,"z":1220000000000000000}},"30002716":{"solarSystemId":30002716,"solarSystemName":"M:383N","location":{"x":-6250000000000000000,"y":263000000000000000,"z":1290000000000000000}},"30002717":{"solarSystemId":30002717,"solarSystemName":"U:2R65","location":{"x":-6520000000000000000,"y":287000000000000000,"z":1150000000000000000}},"30002718":{"solarSystemId":30002718,"solarSystemName":"B:3077","location":{"x":-6030000000000000000,"y":323000000000000000,"z":861000000000000000}},"30002719":{"solarSystemId":30002719,"solarSystemName":"J:31K5","location":{"x":-6080000000000000000,"y":697000000000000000,"z":551000000000000000}},"30002720":{"solarSystemId":30002720,"solarSystemName":"H:29ON","location":{"x":-6000000000000000000,"y":108000000000000000,"z":831000000000000000}},"30002721":{"solarSystemId":30002721,"solarSystemName":"Y:2I0R","location":{"x":-7940000000000000000,"y":-316000000000000000,"z":-54600000000000000}},"30002722":{"solarSystemId":30002722,"solarSystemName":"U:3A90","location":{"x":-9010000000000000000,"y":-80200000000000000,"z":740000000000000000}},"30002723":{"solarSystemId":30002723,"solarSystemName":"M:RN3R","location":{"x":-7830000000000000000,"y":580000000000000000,"z":-213000000000000000}},"30002724":{"solarSystemId":30002724,"solarSystemName":"Z:1I04","location":{"x":-8200000000000000000,"y":-229000000000000000,"z":-73300000000000000}},"30002725":{"solarSystemId":30002725,"solarSystemName":"B:1376","location":{"x":-7970000000000000000,"y":-427000000000000000,"z":625000000000000000}},"30002726":{"solarSystemId":30002726,"solarSystemName":"J:398E","location":{"x":-8710000000000000000,"y":44700000000000000,"z":-245000000000000000}},"30002727":{"solarSystemId":30002727,"solarSystemName":"P:N4R3","location":{"x":-8000000000000000000,"y":271000000000000000,"z":164000000000000000}},"30002728":{"solarSystemId":30002728,"solarSystemName":"U:397O","location":{"x":-7780000000000000000,"y":-689000000000000000,"z":466000000000000000}},"30002729":{"solarSystemId":30002729,"solarSystemName":"Q:2E8I","location":{"x":-8490000000000000000,"y":141000000000000000,"z":222000000000000000}},"30002730":{"solarSystemId":30002730,"solarSystemName":"H:1R74","location":{"x":-8880000000000000000,"y":102000000000000000,"z":-699000000000000000}},"30002731":{"solarSystemId":30002731,"solarSystemName":"D:1K0T","location":{"x":-8540000000000000000,"y":-366000000000000000,"z":-887000000000000000}},"30002732":{"solarSystemId":30002732,"solarSystemName":"U:1LNV","location":{"x":-9020000000000000000,"y":82500000000000000,"z":-395000000000000000}},"30002733":{"solarSystemId":30002733,"solarSystemName":"Y:32NV","location":{"x":-8190000000000000000,"y":-103000000000000000,"z":418000000000000000}},"30002734":{"solarSystemId":30002734,"solarSystemName":"J:15VV","location":{"x":-9180000000000000000,"y":161000000000000000,"z":661000000000000000}},"30002735":{"solarSystemId":30002735,"solarSystemName":"B:15K6","location":{"x":-8210000000000000000,"y":425000000000000000,"z":-97700000000000000}},"30002736":{"solarSystemId":30002736,"solarSystemName":"G:14E7","location":{"x":-7930000000000000000,"y":170000000000000000,"z":413000000000000000}},"30002737":{"solarSystemId":30002737,"solarSystemName":"Z:3ORI","location":{"x":-8170000000000000000,"y":-377000000000000000,"z":-783000000000000000}},"30002738":{"solarSystemId":30002738,"solarSystemName":"G:1O74","location":{"x":-8540000000000000000,"y":-440000000000000000,"z":75100000000000000}},"30002739":{"solarSystemId":30002739,"solarSystemName":"B:25IE","location":{"x":-7980000000000000000,"y":-596000000000000000,"z":-444000000000000000}},"30002740":{"solarSystemId":30002740,"solarSystemName":"U:1ITO","location":{"x":-7890000000000000000,"y":-135000000000000000,"z":608000000000000000}},"30002741":{"solarSystemId":30002741,"solarSystemName":"B:23EL","location":{"x":-7950000000000000000,"y":-433000000000000000,"z":73300000000000000}},"30002742":{"solarSystemId":30002742,"solarSystemName":"U:3EI4","location":{"x":-8910000000000000000,"y":151000000000000000,"z":-525000000000000000}},"30002743":{"solarSystemId":30002743,"solarSystemName":"B:3KOI","location":{"x":-7830000000000000000,"y":626000000000000000,"z":-200000000000000000}},"30002744":{"solarSystemId":30002744,"solarSystemName":"B:2L8I","location":{"x":-6740000000000000000,"y":-1180000000000000000,"z":1810000000000000000}},"30002745":{"solarSystemId":30002745,"solarSystemName":"P:31K7","location":{"x":-6250000000000000000,"y":-285000000000000000,"z":1470000000000000000}},"30002746":{"solarSystemId":30002746,"solarSystemName":"B:I7ES","location":{"x":-6360000000000000000,"y":-326000000000000000,"z":1830000000000000000}},"30002747":{"solarSystemId":30002747,"solarSystemName":"J:3NS3","location":{"x":-6700000000000000000,"y":-589000000000000000,"z":1950000000000000000}},"30002748":{"solarSystemId":30002748,"solarSystemName":"U:1V41","location":{"x":-6090000000000000000,"y":-225000000000000000,"z":1820000000000000000}},"30002749":{"solarSystemId":30002749,"solarSystemName":"Z:3760","location":{"x":-6600000000000000000,"y":-74000000000000000,"z":1880000000000000000}},"30002750":{"solarSystemId":30002750,"solarSystemName":"M:251T","location":{"x":-6760000000000000000,"y":-990000000000000000,"z":2870000000000000000}},"30002751":{"solarSystemId":30002751,"solarSystemName":"J:25NS","location":{"x":-6570000000000000000,"y":-736000000000000000,"z":2210000000000000000}},"30002752":{"solarSystemId":30002752,"solarSystemName":"Y:3OE6","location":{"x":-7060000000000000000,"y":-676000000000000000,"z":2400000000000000000}},"30002753":{"solarSystemId":30002753,"solarSystemName":"J:L9EN","location":{"x":-6250000000000000000,"y":-535000000000000000,"z":1220000000000000000}},"30002754":{"solarSystemId":30002754,"solarSystemName":"J:2458","location":{"x":-6710000000000000000,"y":-702000000000000000,"z":2140000000000000000}},"30002755":{"solarSystemId":30002755,"solarSystemName":"G:1EEI","location":{"x":-6630000000000000000,"y":-242000000000000000,"z":2770000000000000000}},"30002756":{"solarSystemId":30002756,"solarSystemName":"U:3RO8","location":{"x":-6950000000000000000,"y":-213000000000000000,"z":2070000000000000000}},"30002757":{"solarSystemId":30002757,"solarSystemName":"B:2LVK","location":{"x":-7020000000000000000,"y":-1260000000000000000,"z":1920000000000000000}},"30002758":{"solarSystemId":30002758,"solarSystemName":"P:2RNT","location":{"x":-6860000000000000000,"y":-790000000000000000,"z":1950000000000000000}},"30002759":{"solarSystemId":30002759,"solarSystemName":"P:2T7S","location":{"x":-6380000000000000000,"y":-425000000000000000,"z":2130000000000000000}},"30002760":{"solarSystemId":30002760,"solarSystemName":"G:3V9K","location":{"x":-7130000000000000000,"y":-929000000000000000,"z":2540000000000000000}},"30002761":{"solarSystemId":30002761,"solarSystemName":"F:2O72","location":{"x":-7020000000000000000,"y":-926000000000000000,"z":1870000000000000000}},"30002762":{"solarSystemId":30002762,"solarSystemName":"M:3NAS","location":{"x":-6310000000000000000,"y":-340000000000000000,"z":2230000000000000000}},"30002763":{"solarSystemId":30002763,"solarSystemName":"F:NTS5","location":{"x":-6950000000000000000,"y":-434000000000000000,"z":2090000000000000000}},"30002764":{"solarSystemId":30002764,"solarSystemName":"D:3S5R","location":{"x":-6400000000000000000,"y":-1360000000000000000,"z":840000000000000000}},"30002765":{"solarSystemId":30002765,"solarSystemName":"H:3808","location":{"x":-6360000000000000000,"y":-1430000000000000000,"z":316000000000000000}},"30002766":{"solarSystemId":30002766,"solarSystemName":"F:1LK6","location":{"x":-6490000000000000000,"y":-710000000000000000,"z":771000000000000000}},"30002767":{"solarSystemId":30002767,"solarSystemName":"D:1IR8","location":{"x":-6670000000000000000,"y":-622000000000000000,"z":800000000000000000}},"30002768":{"solarSystemId":30002768,"solarSystemName":"H:2RI6","location":{"x":-6730000000000000000,"y":-1240000000000000000,"z":1350000000000000000}},"30002769":{"solarSystemId":30002769,"solarSystemName":"Z:2S9S","location":{"x":-7300000000000000000,"y":-904000000000000000,"z":-376000000000000000}},"30002770":{"solarSystemId":30002770,"solarSystemName":"B:185E","location":{"x":-7430000000000000000,"y":-1120000000000000000,"z":598000000000000000}},"30002771":{"solarSystemId":30002771,"solarSystemName":"U:2SK3","location":{"x":-7030000000000000000,"y":-578000000000000000,"z":1120000000000000000}},"30002772":{"solarSystemId":30002772,"solarSystemName":"G:10VI","location":{"x":-6360000000000000000,"y":-1010000000000000000,"z":1300000000000000000}},"30002773":{"solarSystemId":30002773,"solarSystemName":"Z:18I2","location":{"x":-7210000000000000000,"y":-1300000000000000000,"z":808000000000000000}},"30002774":{"solarSystemId":30002774,"solarSystemName":"B:16K1","location":{"x":-6680000000000000000,"y":-860000000000000000,"z":102000000000000000}},"30002775":{"solarSystemId":30002775,"solarSystemName":"B:L507","location":{"x":-7010000000000000000,"y":-1170000000000000000,"z":606000000000000000}},"30002776":{"solarSystemId":30002776,"solarSystemName":"P:2ROV","location":{"x":-7280000000000000000,"y":-705000000000000000,"z":-62700000000000000}},"30002777":{"solarSystemId":30002777,"solarSystemName":"M:37R0","location":{"x":-7140000000000000000,"y":-1430000000000000000,"z":1300000000000000000}},"30002778":{"solarSystemId":30002778,"solarSystemName":"Z:33SS","location":{"x":-6570000000000000000,"y":-1550000000000000000,"z":672000000000000000}},"30002779":{"solarSystemId":30002779,"solarSystemName":"M:2SVI","location":{"x":-6270000000000000000,"y":-811000000000000000,"z":582000000000000000}},"30002780":{"solarSystemId":30002780,"solarSystemName":"Q:34EV","location":{"x":-6420000000000000000,"y":-1560000000000000000,"z":360000000000000000}},"30002781":{"solarSystemId":30002781,"solarSystemName":"U:1TS0","location":{"x":-6560000000000000000,"y":-846000000000000000,"z":382000000000000000}},"30002782":{"solarSystemId":30002782,"solarSystemName":"P:R0L5","location":{"x":-7010000000000000000,"y":-471000000000000000,"z":790000000000000000}},"30002783":{"solarSystemId":30002783,"solarSystemName":"B:13N3","location":{"x":-7470000000000000000,"y":-718000000000000000,"z":1080000000000000000}},"30002784":{"solarSystemId":30002784,"solarSystemName":"B:3IVL","location":{"x":-7700000000000000000,"y":-2130000000000000000,"z":2900000000000000000}},"30002785":{"solarSystemId":30002785,"solarSystemName":"Q:3T7V","location":{"x":-7700000000000000000,"y":-1530000000000000000,"z":3060000000000000000}},"30002786":{"solarSystemId":30002786,"solarSystemName":"F:K5SI","location":{"x":-7550000000000000000,"y":-911000000000000000,"z":3190000000000000000}},"30002787":{"solarSystemId":30002787,"solarSystemName":"Q:2OKL","location":{"x":-6690000000000000000,"y":-627000000000000000,"z":1220000000000000000}},"30002788":{"solarSystemId":30002788,"solarSystemName":"Y:2INL","location":{"x":-7380000000000000000,"y":-1480000000000000000,"z":2910000000000000000}},"30002789":{"solarSystemId":30002789,"solarSystemName":"M:244N","location":{"x":-7870000000000000000,"y":-911000000000000000,"z":1680000000000000000}},"30002790":{"solarSystemId":30002790,"solarSystemName":"B:1N44","location":{"x":-7330000000000000000,"y":-1380000000000000000,"z":1450000000000000000}},"30002791":{"solarSystemId":30002791,"solarSystemName":"Z:1SS4","location":{"x":-7330000000000000000,"y":-1530000000000000000,"z":3370000000000000000}},"30002792":{"solarSystemId":30002792,"solarSystemName":"P:33EL","location":{"x":-7880000000000000000,"y":-1080000000000000000,"z":2220000000000000000}},"30002793":{"solarSystemId":30002793,"solarSystemName":"Q:2I8R","location":{"x":-7940000000000000000,"y":-1740000000000000000,"z":2000000000000000000}},"30002794":{"solarSystemId":30002794,"solarSystemName":"G:3759","location":{"x":-7650000000000000000,"y":-1030000000000000000,"z":1630000000000000000}},"30002795":{"solarSystemId":30002795,"solarSystemName":"Q:2NOL","location":{"x":-8060000000000000000,"y":-1870000000000000000,"z":2960000000000000000}},"30002796":{"solarSystemId":30002796,"solarSystemName":"B:3N4N","location":{"x":-8710000000000000000,"y":-2670000000000000000,"z":2500000000000000000}},"30002797":{"solarSystemId":30002797,"solarSystemName":"G:12I9","location":{"x":-6940000000000000000,"y":-731000000000000000,"z":1420000000000000000}},"30002798":{"solarSystemId":30002798,"solarSystemName":"Z:ST1A","location":{"x":-8340000000000000000,"y":-1880000000000000000,"z":2300000000000000000}},"30002799":{"solarSystemId":30002799,"solarSystemName":"M:2E9N","location":{"x":-7750000000000000000,"y":-938000000000000000,"z":2090000000000000000}},"30002800":{"solarSystemId":30002800,"solarSystemName":"Q:2778","location":{"x":-7450000000000000000,"y":-1960000000000000000,"z":711000000000000000}},"30002801":{"solarSystemId":30002801,"solarSystemName":"M:3708","location":{"x":-5250000000000000000,"y":-506000000000000000,"z":-370000000000000000}},"30002802":{"solarSystemId":30002802,"solarSystemName":"J:3NA8","location":{"x":-6180000000000000000,"y":-1300000000000000000,"z":-109000000000000000}},"30002803":{"solarSystemId":30002803,"solarSystemName":"J:1718","location":{"x":-5720000000000000000,"y":-663000000000000000,"z":687000000000000000}},"30002804":{"solarSystemId":30002804,"solarSystemName":"J:334L","location":{"x":-5640000000000000000,"y":-738000000000000000,"z":102000000000000000}},"30002805":{"solarSystemId":30002805,"solarSystemName":"G:T309","location":{"x":-6350000000000000000,"y":-889000000000000000,"z":-48000000000000000}},"30002806":{"solarSystemId":30002806,"solarSystemName":"M:2OAA","location":{"x":-5670000000000000000,"y":-185000000000000000,"z":71500000000000000}},"30002807":{"solarSystemId":30002807,"solarSystemName":"D:KV51","location":{"x":-5170000000000000000,"y":-459000000000000000,"z":-60700000000000000}},"30002808":{"solarSystemId":30002808,"solarSystemName":"F:2A7S","location":{"x":-6370000000000000000,"y":-604000000000000000,"z":269000000000000000}},"30002809":{"solarSystemId":30002809,"solarSystemName":"F:218S","location":{"x":-5830000000000000000,"y":-1030000000000000000,"z":-129000000000000000}},"30002810":{"solarSystemId":30002810,"solarSystemName":"G:20RV","location":{"x":-5940000000000000000,"y":-789000000000000000,"z":497000000000000000}},"30002811":{"solarSystemId":30002811,"solarSystemName":"D:3349","location":{"x":-5450000000000000000,"y":-573000000000000000,"z":-175000000000000000}},"30002812":{"solarSystemId":30002812,"solarSystemName":"G:113I","location":{"x":-6020000000000000000,"y":-1280000000000000000,"z":-187000000000000000}},"30002813":{"solarSystemId":30002813,"solarSystemName":"D:34O5","location":{"x":-5060000000000000000,"y":-697000000000000000,"z":-230000000000000000}},"30002814":{"solarSystemId":30002814,"solarSystemName":"D:3NST","location":{"x":-5230000000000000000,"y":-491000000000000000,"z":-25300000000000000}},"30002815":{"solarSystemId":30002815,"solarSystemName":"H:356L","location":{"x":-5370000000000000000,"y":-387000000000000000,"z":-21400000000000000}},"30002816":{"solarSystemId":30002816,"solarSystemName":"F:3242","location":{"x":-6530000000000000000,"y":-745000000000000000,"z":-204000000000000000}},"30002817":{"solarSystemId":30002817,"solarSystemName":"J:3OSK","location":{"x":-6700000000000000000,"y":-1240000000000000000,"z":-474000000000000000}},"30002818":{"solarSystemId":30002818,"solarSystemName":"Y:2T4E","location":{"x":-4790000000000000000,"y":-674000000000000000,"z":-301000000000000000}},"30002819":{"solarSystemId":30002819,"solarSystemName":"Y:2E34","location":{"x":-5910000000000000000,"y":-871000000000000000,"z":183000000000000000}},"30002820":{"solarSystemId":30002820,"solarSystemName":"G:3E06","location":{"x":-5360000000000000000,"y":-503000000000000000,"z":61600000000000000}},"30002821":{"solarSystemId":30002821,"solarSystemName":"P:39RL","location":{"x":-5770000000000000000,"y":-397000000000000000,"z":-82500000000000000}},"30002822":{"solarSystemId":30002822,"solarSystemName":"D:2E91","location":{"x":-5790000000000000000,"y":-741000000000000000,"z":516000000000000000}},"30002823":{"solarSystemId":30002823,"solarSystemName":"Z:3NS2","location":{"x":-5340000000000000000,"y":-1260000000000000000,"z":-6180000000000000}},"30002824":{"solarSystemId":30002824,"solarSystemName":"U:3R92","location":{"x":-7130000000000000000,"y":839000000000000000,"z":493000000000000000}},"30002825":{"solarSystemId":30002825,"solarSystemName":"H:3N6T","location":{"x":-7730000000000000000,"y":355000000000000000,"z":442000000000000000}},"30002826":{"solarSystemId":30002826,"solarSystemName":"J:3E60","location":{"x":-7490000000000000000,"y":730000000000000000,"z":208000000000000000}},"30002827":{"solarSystemId":30002827,"solarSystemName":"D:15NI","location":{"x":-7400000000000000000,"y":-268000000000000000,"z":231000000000000000}},"30002828":{"solarSystemId":30002828,"solarSystemName":"Y:3790","location":{"x":-8260000000000000000,"y":872000000000000000,"z":772000000000000000}},"30002829":{"solarSystemId":30002829,"solarSystemName":"M:2V55","location":{"x":-7620000000000000000,"y":496000000000000000,"z":42200000000000000}},"30002830":{"solarSystemId":30002830,"solarSystemName":"M:31LA","location":{"x":-7710000000000000000,"y":146000000000000000,"z":1080000000000000000}},"30002831":{"solarSystemId":30002831,"solarSystemName":"M:RS3N","location":{"x":-7550000000000000000,"y":-320000000000000000,"z":531000000000000000}},"30002832":{"solarSystemId":30002832,"solarSystemName":"H:1IIO","location":{"x":-7440000000000000000,"y":81300000000000000,"z":356000000000000000}},"30002833":{"solarSystemId":30002833,"solarSystemName":"U:4LRR","location":{"x":-8220000000000000000,"y":176000000000000000,"z":848000000000000000}},"30002834":{"solarSystemId":30002834,"solarSystemName":"J:2K96","location":{"x":-8110000000000000000,"y":121000000000000000,"z":1160000000000000000}},"30002835":{"solarSystemId":30002835,"solarSystemName":"M:3TT5","location":{"x":-7580000000000000000,"y":-256000000000000000,"z":337000000000000000}},"30002836":{"solarSystemId":30002836,"solarSystemName":"P:250V","location":{"x":-7220000000000000000,"y":-91500000000000000,"z":791000000000000000}},"30002837":{"solarSystemId":30002837,"solarSystemName":"M:3N3S","location":{"x":-8000000000000000000,"y":774000000000000000,"z":1560000000000000000}},"30002838":{"solarSystemId":30002838,"solarSystemName":"G:3NV3","location":{"x":-8450000000000000000,"y":733000000000000000,"z":982000000000000000}},"30002839":{"solarSystemId":30002839,"solarSystemName":"D:1R85","location":{"x":-7760000000000000000,"y":-645000000000000000,"z":744000000000000000}},"30002840":{"solarSystemId":30002840,"solarSystemName":"P:47EI","location":{"x":-7630000000000000000,"y":-178000000000000000,"z":536000000000000000}},"30002841":{"solarSystemId":30002841,"solarSystemName":"P:1T02","location":{"x":-7050000000000000000,"y":-44000000000000000,"z":630000000000000000}},"30002842":{"solarSystemId":30002842,"solarSystemName":"P:1R47","location":{"x":-7400000000000000000,"y":678000000000000000,"z":563000000000000000}},"30002843":{"solarSystemId":30002843,"solarSystemName":"H:36RS","location":{"x":-6990000000000000000,"y":-351000000000000000,"z":-237000000000000000}},"30002844":{"solarSystemId":30002844,"solarSystemName":"F:2L1L","location":{"x":-6900000000000000000,"y":-410000000000000000,"z":-237000000000000000}},"30002845":{"solarSystemId":30002845,"solarSystemName":"D:300A","location":{"x":-6450000000000000000,"y":495474000000000,"z":-589000000000000000}},"30002846":{"solarSystemId":30002846,"solarSystemName":"Z:26EO","location":{"x":-6950000000000000000,"y":366000000000000000,"z":-450000000000000000}},"30002847":{"solarSystemId":30002847,"solarSystemName":"Y:245S","location":{"x":-6840000000000000000,"y":-369000000000000000,"z":-455000000000000000}},"30002848":{"solarSystemId":30002848,"solarSystemName":"Q:3E2R","location":{"x":-7300000000000000000,"y":592000000000000000,"z":146000000000000000}},"30002849":{"solarSystemId":30002849,"solarSystemName":"Q:1L76","location":{"x":-6820000000000000000,"y":641000000000000000,"z":43300000000000000}},"30002850":{"solarSystemId":30002850,"solarSystemName":"Q:2KST","location":{"x":-6760000000000000000,"y":364000000000000000,"z":-307000000000000000}},"30002851":{"solarSystemId":30002851,"solarSystemName":"P:5215","location":{"x":-7180000000000000000,"y":489000000000000000,"z":-130000000000000000}},"30002852":{"solarSystemId":30002852,"solarSystemName":"F:3R98","location":{"x":-7110000000000000000,"y":470000000000000000,"z":138000000000000000}},"30002853":{"solarSystemId":30002853,"solarSystemName":"G:314L","location":{"x":-7060000000000000000,"y":369000000000000000,"z":490000000000000000}},"30002854":{"solarSystemId":30002854,"solarSystemName":"U:4365","location":{"x":-6220000000000000000,"y":289000000000000000,"z":-99800000000000000}},"30002855":{"solarSystemId":30002855,"solarSystemName":"U:2L1S","location":{"x":-6670000000000000000,"y":127000000000000000,"z":25800000000000000}},"30002856":{"solarSystemId":30002856,"solarSystemName":"Z:1LA5","location":{"x":-6080000000000000000,"y":-119000000000000000,"z":254000000000000000}},"30002857":{"solarSystemId":30002857,"solarSystemName":"F:4IT1","location":{"x":-7170000000000000000,"y":668000000000000000,"z":-232000000000000000}},"30002858":{"solarSystemId":30002858,"solarSystemName":"H:V3SE","location":{"x":-6270000000000000000,"y":327000000000000000,"z":-21500000000000000}},"30002859":{"solarSystemId":30002859,"solarSystemName":"H:3NVK","location":{"x":-5980000000000000000,"y":-51600000000000000,"z":155000000000000000}},"30002860":{"solarSystemId":30002860,"solarSystemName":"D:3R45","location":{"x":-6040000000000000000,"y":3990000000000000,"z":428000000000000000}},"30002861":{"solarSystemId":30002861,"solarSystemName":"H:3VA3","location":{"x":-6190000000000000000,"y":-224000000000000000,"z":-46100000000000000}},"30002862":{"solarSystemId":30002862,"solarSystemName":"B:29SO","location":{"x":-6690000000000000000,"y":-75800000000000000,"z":331000000000000000}},"30002863":{"solarSystemId":30002863,"solarSystemName":"P:3TLE","location":{"x":-6570000000000000000,"y":361000000000000000,"z":-303000000000000000}},"30002864":{"solarSystemId":30002864,"solarSystemName":"P:2KO1","location":{"x":-6740000000000000000,"y":619000000000000000,"z":5320000000000000}},"30002865":{"solarSystemId":30002865,"solarSystemName":"U:1583","location":{"x":-7140000000000000000,"y":233000000000000000,"z":-415000000000000000}},"30002866":{"solarSystemId":30002866,"solarSystemName":"D:34A1","location":{"x":-1680000000000000000,"y":682000000000000000,"z":3890000000000000000}},"30002867":{"solarSystemId":30002867,"solarSystemName":"P:36II","location":{"x":-1280000000000000000,"y":1680000000000000000,"z":4960000000000000000}},"30002868":{"solarSystemId":30002868,"solarSystemName":"B:1KEK","location":{"x":-1970000000000000000,"y":843000000000000000,"z":4790000000000000000}},"30002869":{"solarSystemId":30002869,"solarSystemName":"Z:2L11","location":{"x":-835000000000000000,"y":574000000000000000,"z":3640000000000000000}},"30002870":{"solarSystemId":30002870,"solarSystemName":"B:137K","location":{"x":-1280000000000000000,"y":968000000000000000,"z":4460000000000000000}},"30002871":{"solarSystemId":30002871,"solarSystemName":"D:28I0","location":{"x":-79800000000000000,"y":818000000000000000,"z":3590000000000000000}},"30002872":{"solarSystemId":30002872,"solarSystemName":"G:12I3","location":{"x":-692000000000000000,"y":799000000000000000,"z":4680000000000000000}},"30002873":{"solarSystemId":30002873,"solarSystemName":"G:2SLV","location":{"x":-1210000000000000000,"y":683000000000000000,"z":3650000000000000000}},"30002874":{"solarSystemId":30002874,"solarSystemName":"Z:2V36","location":{"x":1500000000000000,"y":328000000000000000,"z":3620000000000000000}},"30002875":{"solarSystemId":30002875,"solarSystemName":"U:3R1R","location":{"x":-1010000000000000000,"y":723000000000000000,"z":3420000000000000000}},"30002876":{"solarSystemId":30002876,"solarSystemName":"B:3I1A","location":{"x":-488000000000000000,"y":1970000000000000000,"z":5450000000000000000}},"30002877":{"solarSystemId":30002877,"solarSystemName":"Q:134A","location":{"x":-798000000000000000,"y":299000000000000000,"z":3540000000000000000}},"30002878":{"solarSystemId":30002878,"solarSystemName":"B:12AA","location":{"x":-900000000000000000,"y":65500000000000000,"z":3720000000000000000}},"30002879":{"solarSystemId":30002879,"solarSystemName":"F:224V","location":{"x":-863000000000000000,"y":292000000000000000,"z":3730000000000000000}},"30002880":{"solarSystemId":30002880,"solarSystemName":"D:1OEK","location":{"x":-1190000000000000000,"y":25500000000000000,"z":4210000000000000000}},"30002881":{"solarSystemId":30002881,"solarSystemName":"H:2AOV","location":{"x":-874000000000000000,"y":241000000000000000,"z":5650000000000000000}},"30002882":{"solarSystemId":30002882,"solarSystemName":"B:3A07","location":{"x":-1160000000000000000,"y":875000000000000000,"z":5460000000000000000}},"30002883":{"solarSystemId":30002883,"solarSystemName":"Q:1RVR","location":{"x":-1280000000000000000,"y":449000000000000000,"z":6020000000000000000}},"30002884":{"solarSystemId":30002884,"solarSystemName":"Z:93I0","location":{"x":-1380000000000000000,"y":434000000000000000,"z":5710000000000000000}},"30002885":{"solarSystemId":30002885,"solarSystemName":"D:NNTR","location":{"x":-580000000000000000,"y":-291000000000000000,"z":6260000000000000000}},"30002886":{"solarSystemId":30002886,"solarSystemName":"P:25L2","location":{"x":72100000000000000,"y":210000000000000000,"z":5840000000000000000}},"30002887":{"solarSystemId":30002887,"solarSystemName":"Y:38S3","location":{"x":-1470000000000000000,"y":-404000000000000000,"z":6080000000000000000}},"30002888":{"solarSystemId":30002888,"solarSystemName":"D:2AT3","location":{"x":-879000000000000000,"y":322000000000000000,"z":5200000000000000000}},"30002889":{"solarSystemId":30002889,"solarSystemName":"B:3SR2","location":{"x":-1270000000000000000,"y":-406000000000000000,"z":5170000000000000000}},"30002890":{"solarSystemId":30002890,"solarSystemName":"Z:3R5S","location":{"x":-793000000000000000,"y":437000000000000000,"z":5560000000000000000}},"30002891":{"solarSystemId":30002891,"solarSystemName":"U:32RK","location":{"x":-1030000000000000000,"y":478000000000000000,"z":4800000000000000000}},"30002892":{"solarSystemId":30002892,"solarSystemName":"Y:1921","location":{"x":-1590000000000000000,"y":-361000000000000000,"z":5230000000000000000}},"30002893":{"solarSystemId":30002893,"solarSystemName":"U:S3O8","location":{"x":-1110000000000000000,"y":-2710000000000000,"z":6410000000000000000}},"30002894":{"solarSystemId":30002894,"solarSystemName":"J:R6L1","location":{"x":-1260000000000000000,"y":-600000000000000000,"z":5650000000000000000}},"30002895":{"solarSystemId":30002895,"solarSystemName":"Q:2V23","location":{"x":-2910000000000000000,"y":-272000000000000000,"z":5730000000000000000}},"30002896":{"solarSystemId":30002896,"solarSystemName":"U:3IA3","location":{"x":-4060000000000000000,"y":1240000000000000000,"z":4850000000000000000}},"30002897":{"solarSystemId":30002897,"solarSystemName":"G:38V2","location":{"x":-2530000000000000000,"y":647000000000000000,"z":6890000000000000000}},"30002898":{"solarSystemId":30002898,"solarSystemName":"Z:3184","location":{"x":-2800000000000000000,"y":1420000000000000000,"z":5520000000000000000}},"30002899":{"solarSystemId":30002899,"solarSystemName":"U:200T","location":{"x":-3920000000000000000,"y":290000000000000000,"z":5720000000000000000}},"30002900":{"solarSystemId":30002900,"solarSystemName":"H:180T","location":{"x":-2840000000000000000,"y":547000000000000000,"z":5350000000000000000}},"30002901":{"solarSystemId":30002901,"solarSystemName":"M:L864","location":{"x":-2790000000000000000,"y":513000000000000000,"z":5440000000000000000}},"30002902":{"solarSystemId":30002902,"solarSystemName":"G:14A4","location":{"x":-3490000000000000000,"y":-144000000000000000,"z":5910000000000000000}},"30002903":{"solarSystemId":30002903,"solarSystemName":"H:365N","location":{"x":-2940000000000000000,"y":1640000000000000000,"z":5430000000000000000}},"30002904":{"solarSystemId":30002904,"solarSystemName":"U:370I","location":{"x":-3280000000000000000,"y":-344000000000000000,"z":5930000000000000000}},"30002905":{"solarSystemId":30002905,"solarSystemName":"Q:369A","location":{"x":-3850000000000000000,"y":1150000000000000000,"z":4810000000000000000}},"30002906":{"solarSystemId":30002906,"solarSystemName":"P:34R3","location":{"x":-3610000000000000000,"y":1310000000000000000,"z":5370000000000000000}},"30002907":{"solarSystemId":30002907,"solarSystemName":"M:39VS","location":{"x":-1970000000000000000,"y":1260000000000000000,"z":5940000000000000000}},"30002908":{"solarSystemId":30002908,"solarSystemName":"H:306L","location":{"x":-3590000000000000000,"y":323000000000000000,"z":6900000000000000000}},"30002909":{"solarSystemId":30002909,"solarSystemName":"Y:3ROI","location":{"x":-3050000000000000000,"y":696000000000000000,"z":6270000000000000000}},"30002910":{"solarSystemId":30002910,"solarSystemName":"Y:2N2K","location":{"x":-2760000000000000000,"y":2390000000000000000,"z":5480000000000000000}},"30002911":{"solarSystemId":30002911,"solarSystemName":"G:368K","location":{"x":-1650000000000000000,"y":179000000000000000,"z":4590000000000000000}},"30002912":{"solarSystemId":30002912,"solarSystemName":"J:3NE3","location":{"x":-2730000000000000000,"y":-223000000000000000,"z":4620000000000000000}},"30002913":{"solarSystemId":30002913,"solarSystemName":"B:1SR7","location":{"x":-2430000000000000000,"y":340000000000000000,"z":4680000000000000000}},"30002914":{"solarSystemId":30002914,"solarSystemName":"Y:KSN2","location":{"x":-1870000000000000000,"y":148000000000000000,"z":5110000000000000000}},"30002915":{"solarSystemId":30002915,"solarSystemName":"Y:17TT","location":{"x":-1900000000000000000,"y":214000000000000000,"z":4480000000000000000}},"30002916":{"solarSystemId":30002916,"solarSystemName":"D:3058","location":{"x":-2130000000000000000,"y":-604000000000000000,"z":4530000000000000000}},"30002917":{"solarSystemId":30002917,"solarSystemName":"D:1NV7","location":{"x":-1950000000000000000,"y":-321000000000000000,"z":4750000000000000000}},"30002918":{"solarSystemId":30002918,"solarSystemName":"P:3302","location":{"x":-2300000000000000000,"y":-119000000000000000,"z":5480000000000000000}},"30002919":{"solarSystemId":30002919,"solarSystemName":"Z:28NR","location":{"x":-2420000000000000000,"y":-419000000000000000,"z":5010000000000000000}},"30002920":{"solarSystemId":30002920,"solarSystemName":"H:289O","location":{"x":-2550000000000000000,"y":210000000000000000,"z":4100000000000000000}},"30002921":{"solarSystemId":30002921,"solarSystemName":"U:359E","location":{"x":-1770000000000000000,"y":-514000000000000000,"z":4230000000000000000}},"30002922":{"solarSystemId":30002922,"solarSystemName":"Y:4114","location":{"x":-1970000000000000000,"y":53300000000000000,"z":5340000000000000000}},"30002923":{"solarSystemId":30002923,"solarSystemName":"U:3V2I","location":{"x":-1990000000000000000,"y":-119000000000000000,"z":4630000000000000000}},"30002924":{"solarSystemId":30002924,"solarSystemName":"G:2K1K","location":{"x":-2430000000000000000,"y":-310000000000000000,"z":4700000000000000000}},"30002925":{"solarSystemId":30002925,"solarSystemName":"G:15TO","location":{"x":-1820000000000000000,"y":-389000000000000000,"z":4890000000000000000}},"30002926":{"solarSystemId":30002926,"solarSystemName":"M:37K5","location":{"x":-1850000000000000000,"y":-119000000000000000,"z":5150000000000000000}},"30002927":{"solarSystemId":30002927,"solarSystemName":"Y:38S2","location":{"x":-1660000000000000000,"y":-648000000000000000,"z":4720000000000000000}},"30002928":{"solarSystemId":30002928,"solarSystemName":"D:1S69","location":{"x":-1840000000000000000,"y":-215000000000000000,"z":5270000000000000000}},"30002929":{"solarSystemId":30002929,"solarSystemName":"D:2073","location":{"x":-2380000000000000000,"y":39100000000000000,"z":4410000000000000000}},"30002930":{"solarSystemId":30002930,"solarSystemName":"U:203T","location":{"x":-1680000000000000000,"y":-626000000000000000,"z":5040000000000000000}},"30002931":{"solarSystemId":30002931,"solarSystemName":"D:3VN2","location":{"x":-3160000000000000000,"y":-1280000000000000000,"z":4410000000000000000}},"30002932":{"solarSystemId":30002932,"solarSystemName":"F:2ETV","location":{"x":-2880000000000000000,"y":-2270000000000000000,"z":4650000000000000000}},"30002933":{"solarSystemId":30002933,"solarSystemName":"H:3O4I","location":{"x":-2650000000000000000,"y":-1550000000000000000,"z":4090000000000000000}},"30002934":{"solarSystemId":30002934,"solarSystemName":"U:38N5","location":{"x":-2540000000000000000,"y":-1430000000000000000,"z":4100000000000000000}},"30002935":{"solarSystemId":30002935,"solarSystemName":"Q:2T5I","location":{"x":-2670000000000000000,"y":-2730000000000000000,"z":3850000000000000000}},"30002936":{"solarSystemId":30002936,"solarSystemName":"P:316O","location":{"x":-3100000000000000000,"y":-1040000000000000000,"z":4760000000000000000}},"30002937":{"solarSystemId":30002937,"solarSystemName":"J:3319","location":{"x":-3360000000000000000,"y":-1680000000000000000,"z":3960000000000000000}},"30002938":{"solarSystemId":30002938,"solarSystemName":"H:3AR3","location":{"x":-2800000000000000000,"y":-1340000000000000000,"z":3670000000000000000}},"30002939":{"solarSystemId":30002939,"solarSystemName":"J:2E67","location":{"x":-3860000000000000000,"y":-2230000000000000000,"z":4160000000000000000}},"30002940":{"solarSystemId":30002940,"solarSystemName":"Y:3IV7","location":{"x":-3280000000000000000,"y":-2060000000000000000,"z":4570000000000000000}},"30002941":{"solarSystemId":30002941,"solarSystemName":"F:3NRS","location":{"x":-3680000000000000000,"y":-2850000000000000000,"z":4430000000000000000}},"30002942":{"solarSystemId":30002942,"solarSystemName":"H:2E98","location":{"x":-4060000000000000000,"y":-1640000000000000000,"z":4540000000000000000}},"30002943":{"solarSystemId":30002943,"solarSystemName":"F:2S5K","location":{"x":-3640000000000000000,"y":-2810000000000000000,"z":4470000000000000000}},"30002944":{"solarSystemId":30002944,"solarSystemName":"Y:37V1","location":{"x":-2180000000000000000,"y":-2420000000000000000,"z":4550000000000000000}},"30002945":{"solarSystemId":30002945,"solarSystemName":"D:2V8O","location":{"x":-1870000000000000000,"y":-578000000000000000,"z":5440000000000000000}},"30002946":{"solarSystemId":30002946,"solarSystemName":"Z:3315","location":{"x":-1380000000000000000,"y":-436000000000000000,"z":4900000000000000000}},"30002947":{"solarSystemId":30002947,"solarSystemName":"H:303S","location":{"x":-1050000000000000000,"y":-894000000000000000,"z":5000000000000000000}},"30002948":{"solarSystemId":30002948,"solarSystemName":"Y:1S33","location":{"x":-1680000000000000000,"y":-1090000000000000000,"z":5010000000000000000}},"30002949":{"solarSystemId":30002949,"solarSystemName":"J:ITLI","location":{"x":-989000000000000000,"y":-1030000000000000000,"z":5290000000000000000}},"30002950":{"solarSystemId":30002950,"solarSystemName":"B:1TO6","location":{"x":-1180000000000000000,"y":-1690000000000000000,"z":4590000000000000000}},"30002951":{"solarSystemId":30002951,"solarSystemName":"J:250R","location":{"x":-1430000000000000000,"y":-925000000000000000,"z":4320000000000000000}},"30002952":{"solarSystemId":30002952,"solarSystemName":"F:N9SA","location":{"x":-269000000000000000,"y":-1370000000000000000,"z":4830000000000000000}},"30002953":{"solarSystemId":30002953,"solarSystemName":"M:2AK7","location":{"x":-1380000000000000000,"y":-1120000000000000000,"z":4940000000000000000}},"30002954":{"solarSystemId":30002954,"solarSystemName":"M:3RV5","location":{"x":-1410000000000000000,"y":-1220000000000000000,"z":5350000000000000000}},"30002955":{"solarSystemId":30002955,"solarSystemName":"H:222V","location":{"x":-637000000000000000,"y":-1440000000000000000,"z":4550000000000000000}},"30002956":{"solarSystemId":30002956,"solarSystemName":"F:1O4R","location":{"x":-920000000000000000,"y":-542000000000000000,"z":4190000000000000000}},"30002957":{"solarSystemId":30002957,"solarSystemName":"P:1896","location":{"x":-1650000000000000000,"y":-585000000000000000,"z":5180000000000000000}},"30002958":{"solarSystemId":30002958,"solarSystemName":"Q:3EIR","location":{"x":-609000000000000000,"y":-1360000000000000000,"z":4800000000000000000}},"30002959":{"solarSystemId":30002959,"solarSystemName":"Z:17L0","location":{"x":-1130000000000000000,"y":-1100000000000000000,"z":4980000000000000000}},"30002960":{"solarSystemId":30002960,"solarSystemName":"Z:3S40","location":{"x":-1840000000000000000,"y":-966000000000000000,"z":5490000000000000000}},"30002961":{"solarSystemId":30002961,"solarSystemName":"Q:30OO","location":{"x":-1240000000000000000,"y":-1140000000000000000,"z":3880000000000000000}},"30002962":{"solarSystemId":30002962,"solarSystemName":"P:3NVI","location":{"x":-1110000000000000000,"y":-1040000000000000000,"z":3660000000000000000}},"30002963":{"solarSystemId":30002963,"solarSystemName":"Z:36VO","location":{"x":-513000000000000000,"y":-1520000000000000000,"z":4260000000000000000}},"30002964":{"solarSystemId":30002964,"solarSystemName":"F:1S4T","location":{"x":-793000000000000000,"y":-1070000000000000000,"z":4220000000000000000}},"30002965":{"solarSystemId":30002965,"solarSystemName":"U:1SI6","location":{"x":-102000000000000000,"y":-1280000000000000000,"z":3850000000000000000}},"30002966":{"solarSystemId":30002966,"solarSystemName":"H:157S","location":{"x":-765000000000000000,"y":-773000000000000000,"z":4000000000000000000}},"30002967":{"solarSystemId":30002967,"solarSystemName":"H:TVR8","location":{"x":-723000000000000000,"y":-1280000000000000000,"z":3830000000000000000}},"30002968":{"solarSystemId":30002968,"solarSystemName":"H:25V6","location":{"x":-675000000000000000,"y":-1940000000000000000,"z":3950000000000000000}},"30002969":{"solarSystemId":30002969,"solarSystemName":"Z:1OSN","location":{"x":-558000000000000000,"y":-1750000000000000000,"z":3430000000000000000}},"30002970":{"solarSystemId":30002970,"solarSystemName":"U:2KT1","location":{"x":-1230000000000000000,"y":-986000000000000000,"z":3800000000000000000}},"30002971":{"solarSystemId":30002971,"solarSystemName":"G:2SR9","location":{"x":-723000000000000000,"y":-1200000000000000000,"z":3350000000000000000}},"30002972":{"solarSystemId":30002972,"solarSystemName":"Q:3627","location":{"x":-796000000000000000,"y":-1270000000000000000,"z":4300000000000000000}},"30002973":{"solarSystemId":30002973,"solarSystemName":"U:2V38","location":{"x":-706000000000000000,"y":-1030000000000000000,"z":3620000000000000000}},"30002974":{"solarSystemId":30002974,"solarSystemName":"M:3ALV","location":{"x":-1220000000000000000,"y":-1390000000000000000,"z":3940000000000000000}},"30002975":{"solarSystemId":30002975,"solarSystemName":"Z:26K9","location":{"x":-780000000000000000,"y":-1440000000000000000,"z":3640000000000000000}},"30002976":{"solarSystemId":30002976,"solarSystemName":"Z:25EL","location":{"x":-112000000000000000,"y":-1140000000000000000,"z":3840000000000000000}},"30002977":{"solarSystemId":30002977,"solarSystemName":"Q:3TE3","location":{"x":-505000000000000000,"y":-847000000000000000,"z":3390000000000000000}},"30002978":{"solarSystemId":30002978,"solarSystemName":"U:38I5","location":{"x":-2520000000000000000,"y":-1330000000000000000,"z":4670000000000000000}},"30002979":{"solarSystemId":30002979,"solarSystemName":"M:2I58","location":{"x":-2010000000000000000,"y":-1350000000000000000,"z":5420000000000000000}},"30002980":{"solarSystemId":30002980,"solarSystemName":"Y:ORTT","location":{"x":-1740000000000000000,"y":-1570000000000000000,"z":5460000000000000000}},"30002981":{"solarSystemId":30002981,"solarSystemName":"B:2ROL","location":{"x":-2470000000000000000,"y":-2090000000000000000,"z":5350000000000000000}},"30002982":{"solarSystemId":30002982,"solarSystemName":"Z:19R9","location":{"x":-1950000000000000000,"y":-1490000000000000000,"z":4460000000000000000}},"30002983":{"solarSystemId":30002983,"solarSystemName":"Z:114K","location":{"x":-2150000000000000000,"y":-1710000000000000000,"z":4330000000000000000}},"30002984":{"solarSystemId":30002984,"solarSystemName":"G:1KLL","location":{"x":-2470000000000000000,"y":-899000000000000000,"z":4790000000000000000}},"30002985":{"solarSystemId":30002985,"solarSystemName":"J:1I6N","location":{"x":-2010000000000000000,"y":-1080000000000000000,"z":5370000000000000000}},"30002986":{"solarSystemId":30002986,"solarSystemName":"Q:32N3","location":{"x":-1940000000000000000,"y":-1570000000000000000,"z":5100000000000000000}},"30002987":{"solarSystemId":30002987,"solarSystemName":"D:30O2","location":{"x":-2290000000000000000,"y":-1780000000000000000,"z":4360000000000000000}},"30002988":{"solarSystemId":30002988,"solarSystemName":"H:3387","location":{"x":-1610000000000000000,"y":-2260000000000000000,"z":4930000000000000000}},"30002989":{"solarSystemId":30002989,"solarSystemName":"B:3E97","location":{"x":-2370000000000000000,"y":-1980000000000000000,"z":4520000000000000000}},"30002990":{"solarSystemId":30002990,"solarSystemName":"J:2VRL","location":{"x":-2250000000000000000,"y":-794000000000000000,"z":5050000000000000000}},"30002991":{"solarSystemId":30002991,"solarSystemName":"H:3AA2","location":{"x":-1960000000000000000,"y":-1180000000000000000,"z":4720000000000000000}},"30002992":{"solarSystemId":30002992,"solarSystemName":"U:197K","location":{"x":-2100000000000000000,"y":-956000000000000000,"z":5450000000000000000}},"30002993":{"solarSystemId":30002993,"solarSystemName":"G:3V68","location":{"x":-1370000000000000000,"y":-2120000000000000000,"z":4700000000000000000}},"30002994":{"solarSystemId":30002994,"solarSystemName":"M:3T57","location":{"x":-2360000000000000000,"y":-861000000000000000,"z":4950000000000000000}},"30002995":{"solarSystemId":30002995,"solarSystemName":"J:32II","location":{"x":-2500000000000000000,"y":-687000000000000000,"z":3840000000000000000}},"30002996":{"solarSystemId":30002996,"solarSystemName":"F:2972","location":{"x":-1710000000000000000,"y":-799000000000000000,"z":3670000000000000000}},"30002997":{"solarSystemId":30002997,"solarSystemName":"H:2R4O","location":{"x":-1600000000000000000,"y":-502000000000000000,"z":3390000000000000000}},"30002998":{"solarSystemId":30002998,"solarSystemName":"F:43SE","location":{"x":-2010000000000000000,"y":-961000000000000000,"z":3390000000000000000}},"30002999":{"solarSystemId":30002999,"solarSystemName":"Y:24OL","location":{"x":-1510000000000000000,"y":-1390000000000000000,"z":3190000000000000000}},"30003000":{"solarSystemId":30003000,"solarSystemName":"G:1894","location":{"x":-2210000000000000000,"y":-1060000000000000000,"z":2950000000000000000}},"30003001":{"solarSystemId":30003001,"solarSystemName":"U:KVTO","location":{"x":-1740000000000000000,"y":-476000000000000000,"z":3620000000000000000}},"30003002":{"solarSystemId":30003002,"solarSystemName":"Y:1SLR","location":{"x":-1890000000000000000,"y":-1100000000000000000,"z":4170000000000000000}},"30003003":{"solarSystemId":30003003,"solarSystemName":"Q:2377","location":{"x":-2590000000000000000,"y":-737000000000000000,"z":3600000000000000000}},"30003004":{"solarSystemId":30003004,"solarSystemName":"M:16VI","location":{"x":-1300000000000000000,"y":-484000000000000000,"z":2850000000000000000}},"30003005":{"solarSystemId":30003005,"solarSystemName":"U:1A6R","location":{"x":-1910000000000000000,"y":-571000000000000000,"z":2870000000000000000}},"30003006":{"solarSystemId":30003006,"solarSystemName":"M:3ER7","location":{"x":-2320000000000000000,"y":-1040000000000000000,"z":3300000000000000000}},"30003007":{"solarSystemId":30003007,"solarSystemName":"Q:29S9","location":{"x":-1710000000000000000,"y":-519000000000000000,"z":3360000000000000000}},"30003008":{"solarSystemId":30003008,"solarSystemName":"Z:38NK","location":{"x":-1220000000000000000,"y":-244000000000000000,"z":2930000000000000000}},"30003009":{"solarSystemId":30003009,"solarSystemName":"D:324E","location":{"x":-2280000000000000000,"y":-638000000000000000,"z":2710000000000000000}},"30003010":{"solarSystemId":30003010,"solarSystemName":"U:3AE8","location":{"x":-2320000000000000000,"y":-695000000000000000,"z":2690000000000000000}},"30003011":{"solarSystemId":30003011,"solarSystemName":"J:3SVE","location":{"x":-2220000000000000000,"y":-472000000000000000,"z":3040000000000000000}},"30003012":{"solarSystemId":30003012,"solarSystemName":"U:1KK3","location":{"x":-1560000000000000000,"y":-437000000000000000,"z":3730000000000000000}},"30003013":{"solarSystemId":30003013,"solarSystemName":"D:1KK6","location":{"x":-1810000000000000000,"y":-624000000000000000,"z":3560000000000000000}},"30003014":{"solarSystemId":30003014,"solarSystemName":"D:2SL9","location":{"x":227000000000000000,"y":-339000000000000000,"z":3220000000000000000}},"30003015":{"solarSystemId":30003015,"solarSystemName":"Z:3017","location":{"x":-149000000000000000,"y":70400000000000000,"z":3480000000000000000}},"30003016":{"solarSystemId":30003016,"solarSystemName":"D:24TR","location":{"x":-571000000000000000,"y":-202000000000000000,"z":1880000000000000000}},"30003017":{"solarSystemId":30003017,"solarSystemName":"P:2VN4","location":{"x":-1080000000000000000,"y":-1190000000000000000,"z":3100000000000000000}},"30003018":{"solarSystemId":30003018,"solarSystemName":"G:1NVN","location":{"x":-325000000000000000,"y":261000000000000000,"z":1980000000000000000}},"30003019":{"solarSystemId":30003019,"solarSystemName":"P:2E48","location":{"x":-780000000000000000,"y":-936000000000000000,"z":2330000000000000000}},"30003020":{"solarSystemId":30003020,"solarSystemName":"F:21N4","location":{"x":-365000000000000000,"y":-864000000000000000,"z":3340000000000000000}},"30003021":{"solarSystemId":30003021,"solarSystemName":"D:R35N","location":{"x":-721000000000000000,"y":363000000000000000,"z":3370000000000000000}},"30003022":{"solarSystemId":30003022,"solarSystemName":"J:2E3A","location":{"x":-497000000000000000,"y":-449000000000000000,"z":2240000000000000000}},"30003023":{"solarSystemId":30003023,"solarSystemName":"P:30V6","location":{"x":-860000000000000000,"y":-1020000000000000000,"z":3020000000000000000}},"30003024":{"solarSystemId":30003024,"solarSystemName":"B:345N","location":{"x":-948000000000000000,"y":-280000000000000000,"z":3280000000000000000}},"30003025":{"solarSystemId":30003025,"solarSystemName":"J:2V25","location":{"x":-37600000000000000,"y":-267000000000000000,"z":3010000000000000000}},"30003026":{"solarSystemId":30003026,"solarSystemName":"G:2R0O","location":{"x":-837000000000000000,"y":-683000000000000000,"z":2930000000000000000}},"30003027":{"solarSystemId":30003027,"solarSystemName":"B:IRLA","location":{"x":-208000000000000000,"y":-179000000000000000,"z":3240000000000000000}},"30003028":{"solarSystemId":30003028,"solarSystemName":"D:1N57","location":{"x":-103000000000000000,"y":-1100000000000000000,"z":3020000000000000000}},"30003029":{"solarSystemId":30003029,"solarSystemName":"B:N473","location":{"x":-924000000000000000,"y":-1010000000000000000,"z":2810000000000000000}},"30003030":{"solarSystemId":30003030,"solarSystemName":"J:2L3E","location":{"x":906000000000000000,"y":552000000000000000,"z":345000000000000000}},"30003031":{"solarSystemId":30003031,"solarSystemName":"U:3TO6","location":{"x":420000000000000000,"y":97000000000000000,"z":1590000000000000000}},"30003032":{"solarSystemId":30003032,"solarSystemName":"B:3N5S","location":{"x":1210000000000000000,"y":-612000000000000000,"z":820000000000000000}},"30003033":{"solarSystemId":30003033,"solarSystemName":"J:1EOO","location":{"x":1410000000000000000,"y":909000000000000000,"z":1490000000000000000}},"30003034":{"solarSystemId":30003034,"solarSystemName":"Z:K3R2","location":{"x":341000000000000000,"y":17300000000000000,"z":1310000000000000000}},"30003035":{"solarSystemId":30003035,"solarSystemName":"Q:27NL","location":{"x":1200000000000000000,"y":222000000000000000,"z":2060000000000000000}},"30003036":{"solarSystemId":30003036,"solarSystemName":"Y:2E75","location":{"x":1330000000000000000,"y":162000000000000000,"z":1160000000000000000}},"30003037":{"solarSystemId":30003037,"solarSystemName":"Y:O1SR","location":{"x":1600000000000000000,"y":-646000000000000000,"z":1450000000000000000}},"30003038":{"solarSystemId":30003038,"solarSystemName":"Z:3A18","location":{"x":1630000000000000000,"y":-471000000000000000,"z":1730000000000000000}},"30003039":{"solarSystemId":30003039,"solarSystemName":"D:2EIS","location":{"x":1890000000000000000,"y":416000000000000000,"z":1960000000000000000}},"30003040":{"solarSystemId":30003040,"solarSystemName":"G:2OAR","location":{"x":809000000000000000,"y":-322000000000000000,"z":951000000000000000}},"30003041":{"solarSystemId":30003041,"solarSystemName":"D:2RAT","location":{"x":430000000000000000,"y":495000000000000000,"z":1370000000000000000}},"30003042":{"solarSystemId":30003042,"solarSystemName":"U:30K6","location":{"x":1780000000000000000,"y":453000000000000000,"z":1710000000000000000}},"30003043":{"solarSystemId":30003043,"solarSystemName":"Z:3EET","location":{"x":819000000000000000,"y":-659000000000000000,"z":1410000000000000000}},"30003044":{"solarSystemId":30003044,"solarSystemName":"J:378T","location":{"x":784000000000000000,"y":-98500000000000000,"z":1300000000000000000}},"30003045":{"solarSystemId":30003045,"solarSystemName":"H:1N71","location":{"x":1010000000000000000,"y":-698000000000000000,"z":1180000000000000000}},"30003046":{"solarSystemId":30003046,"solarSystemName":"M:3AS9","location":{"x":-223000000000000000,"y":-475000000000000000,"z":1430000000000000000}},"30003047":{"solarSystemId":30003047,"solarSystemName":"F:2VK1","location":{"x":55900000000000000,"y":-1670000000000000000,"z":1390000000000000000}},"30003048":{"solarSystemId":30003048,"solarSystemName":"G:11S2","location":{"x":-336000000000000000,"y":-728000000000000000,"z":1520000000000000000}},"30003049":{"solarSystemId":30003049,"solarSystemName":"D:39S4","location":{"x":-53600000000000000,"y":-994000000000000000,"z":1600000000000000000}},"30003050":{"solarSystemId":30003050,"solarSystemName":"F:1NS2","location":{"x":-5560000000000000,"y":-800000000000000000,"z":1240000000000000000}},"30003051":{"solarSystemId":30003051,"solarSystemName":"J:22VE","location":{"x":-96200000000000000,"y":-1080000000000000000,"z":1260000000000000000}},"30003052":{"solarSystemId":30003052,"solarSystemName":"P:26AO","location":{"x":535000000000000000,"y":-1100000000000000000,"z":1350000000000000000}},"30003053":{"solarSystemId":30003053,"solarSystemName":"Q:1E90","location":{"x":-476000000000000000,"y":-1570000000000000000,"z":1590000000000000000}},"30003054":{"solarSystemId":30003054,"solarSystemName":"Z:S51V","location":{"x":33900000000000000,"y":-1260000000000000000,"z":1700000000000000000}},"30003055":{"solarSystemId":30003055,"solarSystemName":"Z:34I3","location":{"x":-312000000000000000,"y":-864000000000000000,"z":1840000000000000000}},"30003056":{"solarSystemId":30003056,"solarSystemName":"H:420V","location":{"x":413000000000000000,"y":-1890000000000000000,"z":1660000000000000000}},"30003057":{"solarSystemId":30003057,"solarSystemName":"F:2672","location":{"x":-295000000000000000,"y":-607000000000000000,"z":1510000000000000000}},"30003058":{"solarSystemId":30003058,"solarSystemName":"F:3IN0","location":{"x":-229000000000000000,"y":-825000000000000000,"z":1900000000000000000}},"30003059":{"solarSystemId":30003059,"solarSystemName":"H:1NO5","location":{"x":32300000000000000,"y":-437000000000000000,"z":1700000000000000000}},"30003060":{"solarSystemId":30003060,"solarSystemName":"M:3SSS","location":{"x":-346000000000000000,"y":-790000000000000000,"z":1030000000000000000}},"30003061":{"solarSystemId":30003061,"solarSystemName":"U:3TS5","location":{"x":-122000000000000000,"y":-1430000000000000000,"z":1920000000000000000}},"30003062":{"solarSystemId":30003062,"solarSystemName":"Y:28EL","location":{"x":76900000000000000,"y":-411000000000000000,"z":1740000000000000000}},"30003063":{"solarSystemId":30003063,"solarSystemName":"Y:38K2","location":{"x":-476000000000000000,"y":-498000000000000000,"z":1520000000000000000}},"30003064":{"solarSystemId":30003064,"solarSystemName":"G:3NIV","location":{"x":-256000000000000000,"y":-1150000000000000000,"z":1990000000000000000}},"30003065":{"solarSystemId":30003065,"solarSystemName":"J:117K","location":{"x":-687000000000000000,"y":-1350000000000000000,"z":1790000000000000000}},"30003066":{"solarSystemId":30003066,"solarSystemName":"Z:1VL2","location":{"x":-148000000000000000,"y":-881000000000000000,"z":1780000000000000000}},"30003067":{"solarSystemId":30003067,"solarSystemName":"J:3I0I","location":{"x":-123000000000000000,"y":366000000000000000,"z":2030000000000000000}},"30003068":{"solarSystemId":30003068,"solarSystemName":"H:3893","location":{"x":978000000000000000,"y":152000000000000000,"z":2590000000000000000}},"30003069":{"solarSystemId":30003069,"solarSystemName":"P:14ON","location":{"x":349000000000000000,"y":561000000000000000,"z":2670000000000000000}},"30003070":{"solarSystemId":30003070,"solarSystemName":"Z:I00E","location":{"x":713000000000000000,"y":-118000000000000000,"z":2790000000000000000}},"30003071":{"solarSystemId":30003071,"solarSystemName":"H:L536","location":{"x":329000000000000000,"y":504000000000000000,"z":2250000000000000000}},"30003072":{"solarSystemId":30003072,"solarSystemName":"B:12VL","location":{"x":-199000000000000000,"y":509000000000000000,"z":2280000000000000000}},"30003073":{"solarSystemId":30003073,"solarSystemName":"Y:425V","location":{"x":1010000000000000000,"y":2420000000000000,"z":2930000000000000000}},"30003074":{"solarSystemId":30003074,"solarSystemName":"F:3I8L","location":{"x":-193000000000000000,"y":641000000000000000,"z":2040000000000000000}},"30003075":{"solarSystemId":30003075,"solarSystemName":"P:3SV4","location":{"x":-226000000000000000,"y":253000000000000000,"z":2320000000000000000}},"30003076":{"solarSystemId":30003076,"solarSystemName":"Y:388L","location":{"x":-289000000000000000,"y":790000000000000000,"z":2430000000000000000}},"30003077":{"solarSystemId":30003077,"solarSystemName":"H:3R66","location":{"x":63000000000000000,"y":50600000000000000,"z":3100000000000000000}},"30003078":{"solarSystemId":30003078,"solarSystemName":"G:TN01","location":{"x":-358700000000000,"y":-87100000000000000,"z":2690000000000000000}},"30003079":{"solarSystemId":30003079,"solarSystemName":"G:16E2","location":{"x":-405000000000000000,"y":442000000000000000,"z":2730000000000000000}},"30003080":{"solarSystemId":30003080,"solarSystemName":"H:2T0L","location":{"x":-46900000000000000,"y":857000000000000000,"z":2430000000000000000}},"30003081":{"solarSystemId":30003081,"solarSystemName":"D:OLI3","location":{"x":883000000000000000,"y":-47300000000000000,"z":3020000000000000000}},"30003082":{"solarSystemId":30003082,"solarSystemName":"F:36K0","location":{"x":1730000000000000000,"y":-2040000000000000000,"z":1850000000000000000}},"30003083":{"solarSystemId":30003083,"solarSystemName":"D:2ST6","location":{"x":100000000000000000,"y":-1040000000000000000,"z":3530000000000000000}},"30003084":{"solarSystemId":30003084,"solarSystemName":"P:EN01","location":{"x":782000000000000000,"y":-1510000000000000000,"z":2740000000000000000}},"30003085":{"solarSystemId":30003085,"solarSystemName":"Q:2SNS","location":{"x":2080000000000000000,"y":-1010000000000000000,"z":3780000000000000000}},"30003086":{"solarSystemId":30003086,"solarSystemName":"P:25A1","location":{"x":1050000000000000000,"y":-1440000000000000000,"z":3310000000000000000}},"30003087":{"solarSystemId":30003087,"solarSystemName":"B:2N20","location":{"x":1190000000000000000,"y":-1480000000000000000,"z":3380000000000000000}},"30003088":{"solarSystemId":30003088,"solarSystemName":"B:2LE3","location":{"x":1660000000000000000,"y":-2120000000000000000,"z":3460000000000000000}},"30003089":{"solarSystemId":30003089,"solarSystemName":"F:3657","location":{"x":76800000000000000,"y":-1370000000000000000,"z":3130000000000000000}},"30003090":{"solarSystemId":30003090,"solarSystemName":"H:27OS","location":{"x":1940000000000000000,"y":-1710000000000000000,"z":2180000000000000000}},"30003091":{"solarSystemId":30003091,"solarSystemName":"G:2NLR","location":{"x":352000000000000000,"y":-1950000000000000000,"z":3090000000000000000}},"30003092":{"solarSystemId":30003092,"solarSystemName":"Y:O0IS","location":{"x":1380000000000000000,"y":-1500000000000000000,"z":3420000000000000000}},"30003093":{"solarSystemId":30003093,"solarSystemName":"Q:1KIN","location":{"x":855000000000000000,"y":-2110000000000000000,"z":2330000000000000000}},"30003094":{"solarSystemId":30003094,"solarSystemName":"F:2RS0","location":{"x":1870000000000000000,"y":-1940000000000000000,"z":2630000000000000000}},"30003095":{"solarSystemId":30003095,"solarSystemName":"H:333N","location":{"x":320000000000000000,"y":-1230000000000000000,"z":2710000000000000000}},"30003096":{"solarSystemId":30003096,"solarSystemName":"J:3AR8","location":{"x":1470000000000000000,"y":-1780000000000000000,"z":2290000000000000000}},"30003097":{"solarSystemId":30003097,"solarSystemName":"Q:2O2N","location":{"x":854000000000000000,"y":-2150000000000000000,"z":3250000000000000000}},"30003098":{"solarSystemId":30003098,"solarSystemName":"G:27IS","location":{"x":1890000000000000000,"y":-1560000000000000000,"z":3490000000000000000}},"30003099":{"solarSystemId":30003099,"solarSystemName":"J:2AE9","location":{"x":171000000000000000,"y":-1970000000000000000,"z":3180000000000000000}},"30003100":{"solarSystemId":30003100,"solarSystemName":"P:2ALT","location":{"x":100000000000000000,"y":-1490000000000000000,"z":2810000000000000000}},"30003101":{"solarSystemId":30003101,"solarSystemName":"F:25VN","location":{"x":1560000000000000000,"y":-1680000000000000000,"z":2220000000000000000}},"30003102":{"solarSystemId":30003102,"solarSystemName":"F:295L","location":{"x":-1300000000000000000,"y":-1010000000000000000,"z":1810000000000000000}},"30003103":{"solarSystemId":30003103,"solarSystemName":"G:3160","location":{"x":-1540000000000000000,"y":-885000000000000000,"z":2510000000000000000}},"30003104":{"solarSystemId":30003104,"solarSystemName":"P:LOLI","location":{"x":-1860000000000000000,"y":-766000000000000000,"z":2310000000000000000}},"30003105":{"solarSystemId":30003105,"solarSystemName":"D:3149","location":{"x":-1790000000000000000,"y":-1390000000000000000,"z":2230000000000000000}},"30003106":{"solarSystemId":30003106,"solarSystemName":"G:1L75","location":{"x":-1330000000000000000,"y":-1350000000000000000,"z":2270000000000000000}},"30003107":{"solarSystemId":30003107,"solarSystemName":"P:3EE6","location":{"x":-1590000000000000000,"y":-1180000000000000000,"z":1790000000000000000}},"30003108":{"solarSystemId":30003108,"solarSystemName":"Q:3AKN","location":{"x":-1540000000000000000,"y":-1470000000000000000,"z":2850000000000000000}},"30003109":{"solarSystemId":30003109,"solarSystemName":"B:1R67","location":{"x":-1420000000000000000,"y":-1000000000000000000,"z":1870000000000000000}},"30003110":{"solarSystemId":30003110,"solarSystemName":"Z:23S7","location":{"x":-733000000000000000,"y":-1310000000000000000,"z":2450000000000000000}},"30003111":{"solarSystemId":30003111,"solarSystemName":"P:3R1N","location":{"x":-981000000000000000,"y":-1160000000000000000,"z":2490000000000000000}},"30003112":{"solarSystemId":30003112,"solarSystemName":"H:1KE7","location":{"x":-965000000000000000,"y":-1200000000000000000,"z":2690000000000000000}},"30003113":{"solarSystemId":30003113,"solarSystemName":"Z:3TLS","location":{"x":-1860000000000000000,"y":-1540000000000000000,"z":2770000000000000000}},"30003114":{"solarSystemId":30003114,"solarSystemName":"U:3TN8","location":{"x":-1610000000000000000,"y":-1500000000000000000,"z":2730000000000000000}},"30003115":{"solarSystemId":30003115,"solarSystemName":"U:31V3","location":{"x":-1660000000000000000,"y":-870000000000000000,"z":2380000000000000000}},"30003116":{"solarSystemId":30003116,"solarSystemName":"Q:3035","location":{"x":-1650000000000000000,"y":-1110000000000000000,"z":2600000000000000000}},"30003117":{"solarSystemId":30003117,"solarSystemName":"U:3I7R","location":{"x":-1720000000000000000,"y":-1030000000000000000,"z":2590000000000000000}},"30003118":{"solarSystemId":30003118,"solarSystemName":"M:3RKV","location":{"x":-1510000000000000000,"y":-1010000000000000000,"z":1940000000000000000}},"30003119":{"solarSystemId":30003119,"solarSystemName":"B:1S5N","location":{"x":-1520000000000000000,"y":-1110000000000000000,"z":2460000000000000000}},"30003120":{"solarSystemId":30003120,"solarSystemName":"P:KN55","location":{"x":-1730000000000000000,"y":-913000000000000000,"z":2010000000000000000}},"30003121":{"solarSystemId":30003121,"solarSystemName":"F:374R","location":{"x":-848000000000000000,"y":-179000000000000000,"z":2210000000000000000}},"30003122":{"solarSystemId":30003122,"solarSystemName":"Y:30IK","location":{"x":-1230000000000000000,"y":201000000000000000,"z":1350000000000000000}},"30003123":{"solarSystemId":30003123,"solarSystemName":"Q:E44L","location":{"x":-1110000000000000000,"y":-699000000000000000,"z":2250000000000000000}},"30003124":{"solarSystemId":30003124,"solarSystemName":"B:201I","location":{"x":-1280000000000000000,"y":-316000000000000000,"z":2040000000000000000}},"30003125":{"solarSystemId":30003125,"solarSystemName":"F:24N0","location":{"x":-1230000000000000000,"y":-333000000000000000,"z":1660000000000000000}},"30003126":{"solarSystemId":30003126,"solarSystemName":"Q:22SL","location":{"x":-1260000000000000000,"y":-254000000000000000,"z":2430000000000000000}},"30003127":{"solarSystemId":30003127,"solarSystemName":"H:1ATR","location":{"x":-1530000000000000000,"y":-133000000000000000,"z":1680000000000000000}},"30003128":{"solarSystemId":30003128,"solarSystemName":"F:26KL","location":{"x":-1540000000000000000,"y":-780000000000000000,"z":1940000000000000000}},"30003129":{"solarSystemId":30003129,"solarSystemName":"P:1N91","location":{"x":-1720000000000000000,"y":-93300000000000000,"z":1530000000000000000}},"30003130":{"solarSystemId":30003130,"solarSystemName":"B:15A2","location":{"x":-1800000000000000000,"y":-109000000000000000,"z":2160000000000000000}},"30003131":{"solarSystemId":30003131,"solarSystemName":"M:12IA","location":{"x":-1130000000000000000,"y":-8710000000000000,"z":2260000000000000000}},"30003132":{"solarSystemId":30003132,"solarSystemName":"D:33TO","location":{"x":-1470000000000000000,"y":-646000000000000000,"z":2430000000000000000}},"30003133":{"solarSystemId":30003133,"solarSystemName":"H:3787","location":{"x":-855000000000000000,"y":155000000000000000,"z":2060000000000000000}},"30003134":{"solarSystemId":30003134,"solarSystemName":"Q:38R9","location":{"x":-1520000000000000000,"y":-617000000000000000,"z":2390000000000000000}},"30003135":{"solarSystemId":30003135,"solarSystemName":"P:2R9T","location":{"x":-1500000000000000000,"y":-237000000000000000,"z":2530000000000000000}},"30003136":{"solarSystemId":30003136,"solarSystemName":"J:385R","location":{"x":-1790000000000000000,"y":-193000000000000000,"z":2450000000000000000}},"30003137":{"solarSystemId":30003137,"solarSystemName":"F:25S1","location":{"x":-1830000000000000000,"y":-434000000000000000,"z":1870000000000000000}},"30003138":{"solarSystemId":30003138,"solarSystemName":"J:21VA","location":{"x":-1770000000000000000,"y":-647000000000000000,"z":1680000000000000000}},"30003139":{"solarSystemId":30003139,"solarSystemName":"G:104O","location":{"x":-1210000000000000000,"y":-708000000000000000,"z":1480000000000000000}},"30003140":{"solarSystemId":30003140,"solarSystemName":"B:2N81","location":{"x":3120000000000000000,"y":2000000000000000000,"z":4110000000000000000}},"30003141":{"solarSystemId":30003141,"solarSystemName":"U:3N83","location":{"x":3070000000000000000,"y":1430000000000000000,"z":3630000000000000000}},"30003142":{"solarSystemId":30003142,"solarSystemName":"B:13AS","location":{"x":1400000000000000000,"y":987000000000000000,"z":5690000000000000000}},"30003143":{"solarSystemId":30003143,"solarSystemName":"G:1199","location":{"x":4800000000000000000,"y":-6950000000000000,"z":3320000000000000000}},"30003144":{"solarSystemId":30003144,"solarSystemName":"Q:3519","location":{"x":2190000000000000000,"y":594000000000000000,"z":2820000000000000000}},"30003145":{"solarSystemId":30003145,"solarSystemName":"J:32K5","location":{"x":4340000000000000000,"y":492000000000000000,"z":4190000000000000000}},"30003146":{"solarSystemId":30003146,"solarSystemName":"U:2LE2","location":{"x":3400000000000000000,"y":2740000000000000000,"z":4330000000000000000}},"30003147":{"solarSystemId":30003147,"solarSystemName":"H:2S3S","location":{"x":4700000000000000000,"y":170000000000000000,"z":3320000000000000000}},"30003148":{"solarSystemId":30003148,"solarSystemName":"G:KT84","location":{"x":3340000000000000000,"y":195000000000000000,"z":4600000000000000000}},"30003149":{"solarSystemId":30003149,"solarSystemName":"U:N3L4","location":{"x":2010000000000000000,"y":263000000000000000,"z":2510000000000000000}},"30003150":{"solarSystemId":30003150,"solarSystemName":"Y:828S","location":{"x":2630000000000000000,"y":15200000000000000,"z":2830000000000000000}},"30003151":{"solarSystemId":30003151,"solarSystemName":"B:2IN7","location":{"x":2710000000000000000,"y":46100000000000000,"z":4320000000000000000}},"30003152":{"solarSystemId":30003152,"solarSystemName":"U:3641","location":{"x":697000000000000000,"y":-721000000000000000,"z":2660000000000000000}},"30003153":{"solarSystemId":30003153,"solarSystemName":"Z:34OV","location":{"x":1080000000000000000,"y":-1280000000000000000,"z":1450000000000000000}},"30003154":{"solarSystemId":30003154,"solarSystemName":"P:2RLR","location":{"x":942000000000000000,"y":-1380000000000000000,"z":2370000000000000000}},"30003155":{"solarSystemId":30003155,"solarSystemName":"Q:15S8","location":{"x":1090000000000000000,"y":-925000000000000000,"z":1860000000000000000}},"30003156":{"solarSystemId":30003156,"solarSystemName":"U:17VL","location":{"x":221000000000000000,"y":-1320000000000000000,"z":2160000000000000000}},"30003157":{"solarSystemId":30003157,"solarSystemName":"P:2EAR","location":{"x":910000000000000000,"y":-488000000000000000,"z":1860000000000000000}},"30003158":{"solarSystemId":30003158,"solarSystemName":"D:22KA","location":{"x":929000000000000000,"y":-1100000000000000000,"z":1910000000000000000}},"30003159":{"solarSystemId":30003159,"solarSystemName":"F:20KR","location":{"x":972000000000000000,"y":-901000000000000000,"z":1630000000000000000}},"30003160":{"solarSystemId":30003160,"solarSystemName":"Q:2EL5","location":{"x":746000000000000000,"y":-966000000000000000,"z":1720000000000000000}},"30003161":{"solarSystemId":30003161,"solarSystemName":"Q:2T7L","location":{"x":-29700000000000000,"y":-38900000000000000,"z":1680000000000000000}},"30003162":{"solarSystemId":30003162,"solarSystemName":"M:2OOR","location":{"x":1200000000000000000,"y":-994000000000000000,"z":2280000000000000000}},"30003163":{"solarSystemId":30003163,"solarSystemName":"P:3IKE","location":{"x":644000000000000000,"y":-812000000000000000,"z":1480000000000000000}},"30003164":{"solarSystemId":30003164,"solarSystemName":"Y:2LKO","location":{"x":320000000000000000,"y":-189000000000000000,"z":1710000000000000000}},"30003165":{"solarSystemId":30003165,"solarSystemName":"G:IS00","location":{"x":843000000000000000,"y":-988000000000000000,"z":2500000000000000000}},"30003166":{"solarSystemId":30003166,"solarSystemName":"Y:1VR8","location":{"x":1460000000000000000,"y":-1090000000000000000,"z":1730000000000000000}},"30003167":{"solarSystemId":30003167,"solarSystemName":"D:12NN","location":{"x":769000000000000000,"y":-734000000000000000,"z":1680000000000000000}},"30003168":{"solarSystemId":30003168,"solarSystemName":"J:253T","location":{"x":726000000000000000,"y":-907000000000000000,"z":881000000000000000}},"30003169":{"solarSystemId":30003169,"solarSystemName":"B:2L0K","location":{"x":-3460000000000000000,"y":-269000000000000000,"z":508000000000000000}},"30003170":{"solarSystemId":30003170,"solarSystemName":"B:299R","location":{"x":-3490000000000000000,"y":-344000000000000000,"z":534000000000000000}},"30003171":{"solarSystemId":30003171,"solarSystemName":"Q:3E96","location":{"x":-3630000000000000000,"y":-454000000000000000,"z":682000000000000000}},"30003172":{"solarSystemId":30003172,"solarSystemName":"D:38VS","location":{"x":-3660000000000000000,"y":-385000000000000000,"z":448000000000000000}},"30003173":{"solarSystemId":30003173,"solarSystemName":"U:36ES","location":{"x":-3630000000000000000,"y":-299000000000000000,"z":625000000000000000}},"30003174":{"solarSystemId":30003174,"solarSystemName":"Y:29RO","location":{"x":-3430000000000000000,"y":-399000000000000000,"z":590000000000000000}},"30003175":{"solarSystemId":30003175,"solarSystemName":"J:3042","location":{"x":-3540000000000000000,"y":-356000000000000000,"z":466000000000000000}},"30003176":{"solarSystemId":30003176,"solarSystemName":"J:3TS2","location":{"x":-3330000000000000000,"y":-388000000000000000,"z":533000000000000000}},"30003177":{"solarSystemId":30003177,"solarSystemName":"M:3622","location":{"x":-3530000000000000000,"y":-342000000000000000,"z":571000000000000000}},"30003178":{"solarSystemId":30003178,"solarSystemName":"Z:38RS","location":{"x":-3510000000000000000,"y":-432000000000000000,"z":581000000000000000}},"30003179":{"solarSystemId":30003179,"solarSystemName":"F:1LV6","location":{"x":-3500000000000000000,"y":-497000000000000000,"z":663000000000000000}},"30003180":{"solarSystemId":30003180,"solarSystemName":"F:2K19","location":{"x":-3470000000000000000,"y":-510000000000000000,"z":646000000000000000}},"30003181":{"solarSystemId":30003181,"solarSystemName":"G:2KTV","location":{"x":-3530000000000000000,"y":-257000000000000000,"z":618000000000000000}},"30003182":{"solarSystemId":30003182,"solarSystemName":"Z:14NK","location":{"x":-3340000000000000000,"y":-420000000000000000,"z":535000000000000000}},"30003183":{"solarSystemId":30003183,"solarSystemName":"D:1TI3","location":{"x":-3610000000000000000,"y":-430000000000000000,"z":440000000000000000}},"30003184":{"solarSystemId":30003184,"solarSystemName":"Q:29NL","location":{"x":-3550000000000000000,"y":-508000000000000000,"z":735000000000000000}},"30003185":{"solarSystemId":30003185,"solarSystemName":"D:2N49","location":{"x":-3500000000000000000,"y":-376000000000000000,"z":753000000000000000}},"30003186":{"solarSystemId":30003186,"solarSystemName":"Q:2V3N","location":{"x":-3460000000000000000,"y":-492000000000000000,"z":620000000000000000}},"30003187":{"solarSystemId":30003187,"solarSystemName":"G:3T7A","location":{"x":-3630000000000000000,"y":-583000000000000000,"z":758000000000000000}},"30003188":{"solarSystemId":30003188,"solarSystemName":"D:3NNO","location":{"x":-3550000000000000000,"y":-268000000000000000,"z":503000000000000000}},"30003189":{"solarSystemId":30003189,"solarSystemName":"D:328S","location":{"x":-3570000000000000000,"y":-375000000000000000,"z":568000000000000000}},"30003190":{"solarSystemId":30003190,"solarSystemName":"Z:35V7","location":{"x":-3310000000000000000,"y":-523000000000000000,"z":587000000000000000}},"30003191":{"solarSystemId":30003191,"solarSystemName":"M:300R","location":{"x":-3610000000000000000,"y":-572000000000000000,"z":876000000000000000}},"30003192":{"solarSystemId":30003192,"solarSystemName":"D:2E35","location":{"x":-3410000000000000000,"y":-374000000000000000,"z":869000000000000000}},"30003193":{"solarSystemId":30003193,"solarSystemName":"Q:36A3","location":{"x":-3300000000000000000,"y":-26600000000000000,"z":906000000000000000}},"30003194":{"solarSystemId":30003194,"solarSystemName":"U:3057","location":{"x":-3620000000000000000,"y":-543000000000000000,"z":1080000000000000000}},"30003195":{"solarSystemId":30003195,"solarSystemName":"H:2278","location":{"x":-3440000000000000000,"y":-491000000000000000,"z":1090000000000000000}},"30003196":{"solarSystemId":30003196,"solarSystemName":"Y:1KN5","location":{"x":-3620000000000000000,"y":-518000000000000000,"z":1140000000000000000}},"30003197":{"solarSystemId":30003197,"solarSystemName":"B:337E","location":{"x":-3520000000000000000,"y":-498000000000000000,"z":802000000000000000}},"30003198":{"solarSystemId":30003198,"solarSystemName":"U:32S0","location":{"x":-3360000000000000000,"y":-380000000000000000,"z":793000000000000000}},"30003199":{"solarSystemId":30003199,"solarSystemName":"G:2181","location":{"x":-3420000000000000000,"y":-477000000000000000,"z":750000000000000000}},"30003200":{"solarSystemId":30003200,"solarSystemName":"M:N58E","location":{"x":-3420000000000000000,"y":-512000000000000000,"z":899000000000000000}},"30003201":{"solarSystemId":30003201,"solarSystemName":"Q:1TII","location":{"x":-3570000000000000000,"y":-119000000000000000,"z":907000000000000000}},"30003202":{"solarSystemId":30003202,"solarSystemName":"U:211V","location":{"x":-3450000000000000000,"y":-264000000000000000,"z":1060000000000000000}},"30003203":{"solarSystemId":30003203,"solarSystemName":"J:319T","location":{"x":-3530000000000000000,"y":-228000000000000000,"z":728000000000000000}},"30003204":{"solarSystemId":30003204,"solarSystemName":"Q:364L","location":{"x":-3590000000000000000,"y":-246000000000000000,"z":945000000000000000}},"30003205":{"solarSystemId":30003205,"solarSystemName":"Q:2VE1","location":{"x":-3560000000000000000,"y":-288000000000000000,"z":819000000000000000}},"30003206":{"solarSystemId":30003206,"solarSystemName":"U:3TTI","location":{"x":-3630000000000000000,"y":-239000000000000000,"z":832000000000000000}},"30003207":{"solarSystemId":30003207,"solarSystemName":"P:31KL","location":{"x":-3370000000000000000,"y":-212000000000000000,"z":681000000000000000}},"30003208":{"solarSystemId":30003208,"solarSystemName":"H:3SAT","location":{"x":-3540000000000000000,"y":-264000000000000000,"z":860000000000000000}},"30003209":{"solarSystemId":30003209,"solarSystemName":"Q:2RNV","location":{"x":-3340000000000000000,"y":-159000000000000000,"z":762000000000000000}},"30003210":{"solarSystemId":30003210,"solarSystemName":"M:30V8","location":{"x":-3250000000000000000,"y":-134000000000000000,"z":702000000000000000}},"30003211":{"solarSystemId":30003211,"solarSystemName":"P:2L7S","location":{"x":-3850000000000000000,"y":-618000000000000000,"z":1030000000000000000}},"30003212":{"solarSystemId":30003212,"solarSystemName":"J:32L5","location":{"x":-4640000000000000000,"y":-550000000000000000,"z":527000000000000000}},"30003213":{"solarSystemId":30003213,"solarSystemName":"H:3A32","location":{"x":-4200000000000000000,"y":-630000000000000000,"z":439000000000000000}},"30003214":{"solarSystemId":30003214,"solarSystemName":"Z:32EI","location":{"x":-4100000000000000000,"y":-525000000000000000,"z":812000000000000000}},"30003215":{"solarSystemId":30003215,"solarSystemName":"G:2LN8","location":{"x":-4320000000000000000,"y":-697000000000000000,"z":234000000000000000}},"30003216":{"solarSystemId":30003216,"solarSystemName":"F:205O","location":{"x":-4020000000000000000,"y":-579000000000000000,"z":563000000000000000}},"30003217":{"solarSystemId":30003217,"solarSystemName":"B:2T65","location":{"x":-4230000000000000000,"y":-606000000000000000,"z":415000000000000000}},"30003218":{"solarSystemId":30003218,"solarSystemName":"M:20V0","location":{"x":-3810000000000000000,"y":-665000000000000000,"z":931000000000000000}},"30003219":{"solarSystemId":30003219,"solarSystemName":"G:2N4O","location":{"x":-3820000000000000000,"y":-619000000000000000,"z":893000000000000000}},"30003220":{"solarSystemId":30003220,"solarSystemName":"B:30OI","location":{"x":-3860000000000000000,"y":-395000000000000000,"z":962000000000000000}},"30003221":{"solarSystemId":30003221,"solarSystemName":"U:2NVA","location":{"x":-4580000000000000000,"y":-607000000000000000,"z":704000000000000000}},"30003222":{"solarSystemId":30003222,"solarSystemName":"Y:502O","location":{"x":-4260000000000000000,"y":-655000000000000000,"z":741000000000000000}},"30003223":{"solarSystemId":30003223,"solarSystemName":"M:3EI3","location":{"x":-3950000000000000000,"y":-606000000000000000,"z":536000000000000000}},"30003224":{"solarSystemId":30003224,"solarSystemName":"B:14LE","location":{"x":-4030000000000000000,"y":-406000000000000000,"z":1030000000000000000}},"30003225":{"solarSystemId":30003225,"solarSystemName":"Y:3ATT","location":{"x":-3860000000000000000,"y":-799000000000000000,"z":606000000000000000}},"30003226":{"solarSystemId":30003226,"solarSystemName":"H:2I1S","location":{"x":-4040000000000000000,"y":-550000000000000000,"z":669000000000000000}},"30003227":{"solarSystemId":30003227,"solarSystemName":"U:3587","location":{"x":-4210000000000000000,"y":-634000000000000000,"z":634000000000000000}},"30003228":{"solarSystemId":30003228,"solarSystemName":"F:3VO0","location":{"x":-4260000000000000000,"y":-821000000000000000,"z":412000000000000000}},"30003229":{"solarSystemId":30003229,"solarSystemName":"J:2IES","location":{"x":-3890000000000000000,"y":-780000000000000000,"z":981000000000000000}},"30003230":{"solarSystemId":30003230,"solarSystemName":"Q:3SK7","location":{"x":-3990000000000000000,"y":-723000000000000000,"z":352000000000000000}},"30003231":{"solarSystemId":30003231,"solarSystemName":"Y:3TKS","location":{"x":-3930000000000000000,"y":-639000000000000000,"z":414000000000000000}},"30003232":{"solarSystemId":30003232,"solarSystemName":"H:3NIN","location":{"x":-3640000000000000000,"y":-523000000000000000,"z":333000000000000000}},"30003233":{"solarSystemId":30003233,"solarSystemName":"M:3024","location":{"x":-3680000000000000000,"y":-616000000000000000,"z":197000000000000000}},"30003234":{"solarSystemId":30003234,"solarSystemName":"P:325S","location":{"x":-3580000000000000000,"y":-497000000000000000,"z":284000000000000000}},"30003235":{"solarSystemId":30003235,"solarSystemName":"H:3TNK","location":{"x":-3560000000000000000,"y":-521000000000000000,"z":191000000000000000}},"30003236":{"solarSystemId":30003236,"solarSystemName":"M:3R4N","location":{"x":-3550000000000000000,"y":-986000000000000000,"z":324000000000000000}},"30003237":{"solarSystemId":30003237,"solarSystemName":"D:2I7A","location":{"x":-3670000000000000000,"y":-964000000000000000,"z":342000000000000000}},"30003238":{"solarSystemId":30003238,"solarSystemName":"H:2S05","location":{"x":-3700000000000000000,"y":-453000000000000000,"z":334000000000000000}},"30003239":{"solarSystemId":30003239,"solarSystemName":"Y:2A8S","location":{"x":-3720000000000000000,"y":-375000000000000000,"z":291000000000000000}},"30003240":{"solarSystemId":30003240,"solarSystemName":"J:2914","location":{"x":-3560000000000000000,"y":-505000000000000000,"z":231000000000000000}},"30003241":{"solarSystemId":30003241,"solarSystemName":"Z:3E6V","location":{"x":-3660000000000000000,"y":-667000000000000000,"z":267000000000000000}},"30003242":{"solarSystemId":30003242,"solarSystemName":"B:IKKV","location":{"x":-3780000000000000000,"y":-775000000000000000,"z":312000000000000000}},"30003243":{"solarSystemId":30003243,"solarSystemName":"G:3R60","location":{"x":-3550000000000000000,"y":-691000000000000000,"z":284000000000000000}},"30003244":{"solarSystemId":30003244,"solarSystemName":"B:36NI","location":{"x":-3480000000000000000,"y":-594000000000000000,"z":99400000000000000}},"30003245":{"solarSystemId":30003245,"solarSystemName":"B:3TAV","location":{"x":-3820000000000000000,"y":-491000000000000000,"z":355000000000000000}},"30003246":{"solarSystemId":30003246,"solarSystemName":"F:2KRA","location":{"x":-3810000000000000000,"y":-849000000000000000,"z":205000000000000000}},"30003247":{"solarSystemId":30003247,"solarSystemName":"D:313V","location":{"x":-3680000000000000000,"y":-848000000000000000,"z":498000000000000000}},"30003248":{"solarSystemId":30003248,"solarSystemName":"U:35T9","location":{"x":-3520000000000000000,"y":-817000000000000000,"z":22000000000000000}},"30003249":{"solarSystemId":30003249,"solarSystemName":"H:33A1","location":{"x":-3490000000000000000,"y":-712000000000000000,"z":18800000000000000}},"30003250":{"solarSystemId":30003250,"solarSystemName":"H:3S5O","location":{"x":-3710000000000000000,"y":-782000000000000000,"z":349000000000000000}},"30003251":{"solarSystemId":30003251,"solarSystemName":"J:2V6V","location":{"x":-3180000000000000000,"y":-594000000000000000,"z":1070000000000000000}},"30003252":{"solarSystemId":30003252,"solarSystemName":"Z:3TV1","location":{"x":-2870000000000000000,"y":-318000000000000000,"z":837000000000000000}},"30003253":{"solarSystemId":30003253,"solarSystemName":"Z:29VS","location":{"x":-2850000000000000000,"y":-395000000000000000,"z":982000000000000000}},"30003254":{"solarSystemId":30003254,"solarSystemName":"M:3130","location":{"x":-2980000000000000000,"y":-529000000000000000,"z":957000000000000000}},"30003255":{"solarSystemId":30003255,"solarSystemName":"Q:2E4A","location":{"x":-2840000000000000000,"y":-485000000000000000,"z":892000000000000000}},"30003256":{"solarSystemId":30003256,"solarSystemName":"U:2S15","location":{"x":-2990000000000000000,"y":-270000000000000000,"z":1180000000000000000}},"30003257":{"solarSystemId":30003257,"solarSystemName":"J:3EL8","location":{"x":-2910000000000000000,"y":-414000000000000000,"z":1210000000000000000}},"30003258":{"solarSystemId":30003258,"solarSystemName":"Z:2L7R","location":{"x":-3080000000000000000,"y":-415000000000000000,"z":862000000000000000}},"30003259":{"solarSystemId":30003259,"solarSystemName":"P:3S6R","location":{"x":-3080000000000000000,"y":-352000000000000000,"z":705000000000000000}},"30003260":{"solarSystemId":30003260,"solarSystemName":"Q:36VV","location":{"x":-3070000000000000000,"y":-294000000000000000,"z":951000000000000000}},"30003261":{"solarSystemId":30003261,"solarSystemName":"H:2VRE","location":{"x":-3200000000000000000,"y":-124000000000000000,"z":761000000000000000}},"30003262":{"solarSystemId":30003262,"solarSystemName":"P:25LI","location":{"x":-3080000000000000000,"y":-258000000000000000,"z":732000000000000000}},"30003263":{"solarSystemId":30003263,"solarSystemName":"F:3A34","location":{"x":-3270000000000000000,"y":-392000000000000000,"z":1070000000000000000}},"30003264":{"solarSystemId":30003264,"solarSystemName":"D:1VI7","location":{"x":-3280000000000000000,"y":-392000000000000000,"z":1070000000000000000}},"30003265":{"solarSystemId":30003265,"solarSystemName":"Q:O5NE","location":{"x":-3150000000000000000,"y":-371000000000000000,"z":702000000000000000}},"30003266":{"solarSystemId":30003266,"solarSystemName":"J:373V","location":{"x":-3010000000000000000,"y":-559000000000000000,"z":863000000000000000}},"30003267":{"solarSystemId":30003267,"solarSystemName":"D:1V9N","location":{"x":-3080000000000000000,"y":-537000000000000000,"z":998000000000000000}},"30003268":{"solarSystemId":30003268,"solarSystemName":"H:3II3","location":{"x":-2970000000000000000,"y":-598000000000000000,"z":945000000000000000}},"30003269":{"solarSystemId":30003269,"solarSystemName":"D:2V8V","location":{"x":-2930000000000000000,"y":-398000000000000000,"z":893000000000000000}},"30003270":{"solarSystemId":30003270,"solarSystemName":"U:2V2I","location":{"x":-3140000000000000000,"y":-562000000000000000,"z":967000000000000000}},"30003271":{"solarSystemId":30003271,"solarSystemName":"M:3O1S","location":{"x":-3010000000000000000,"y":-523000000000000000,"z":925000000000000000}},"30003272":{"solarSystemId":30003272,"solarSystemName":"Z:321R","location":{"x":-3350000000000000000,"y":-271000000000000000,"z":896000000000000000}},"30003273":{"solarSystemId":30003273,"solarSystemName":"J:3TE8","location":{"x":-3110000000000000000,"y":-139000000000000000,"z":741000000000000000}},"30003274":{"solarSystemId":30003274,"solarSystemName":"B:3VTK","location":{"x":-2930000000000000000,"y":-211000000000000000,"z":839000000000000000}},"30003275":{"solarSystemId":30003275,"solarSystemName":"U:339O","location":{"x":-4570000000000000000,"y":-79700000000000000,"z":125000000000000000}},"30003276":{"solarSystemId":30003276,"solarSystemName":"M:2T5K","location":{"x":-4450000000000000000,"y":232000000000000000,"z":281000000000000000}},"30003277":{"solarSystemId":30003277,"solarSystemName":"Z:361S","location":{"x":-4630000000000000000,"y":-256000000000000000,"z":153000000000000000}},"30003278":{"solarSystemId":30003278,"solarSystemName":"M:2RK3","location":{"x":-4480000000000000000,"y":33700000000000000,"z":4810000000000000}},"30003279":{"solarSystemId":30003279,"solarSystemName":"Q:33N1","location":{"x":-4270000000000000000,"y":-301000000000000000,"z":52100000000000000}},"30003280":{"solarSystemId":30003280,"solarSystemName":"P:380L","location":{"x":-4520000000000000000,"y":-415000000000000000,"z":198000000000000000}},"30003281":{"solarSystemId":30003281,"solarSystemName":"Z:33O3","location":{"x":-4440000000000000000,"y":-292000000000000000,"z":15500000000000000}},"30003282":{"solarSystemId":30003282,"solarSystemName":"Z:1SLT","location":{"x":-4490000000000000000,"y":-472000000000000000,"z":53500000000000000}},"30003283":{"solarSystemId":30003283,"solarSystemName":"Q:1K7S","location":{"x":-4260000000000000000,"y":-374000000000000000,"z":247000000000000000}},"30003284":{"solarSystemId":30003284,"solarSystemName":"Q:2RKL","location":{"x":-4540000000000000000,"y":-525000000000000000,"z":41500000000000000}},"30003285":{"solarSystemId":30003285,"solarSystemName":"U:2O86","location":{"x":-4550000000000000000,"y":-242000000000000000,"z":445000000000000000}},"30003286":{"solarSystemId":30003286,"solarSystemName":"U:319O","location":{"x":-4590000000000000000,"y":-288000000000000000,"z":325000000000000000}},"30003287":{"solarSystemId":30003287,"solarSystemName":"Q:37N3","location":{"x":-4690000000000000000,"y":-175000000000000000,"z":504000000000000000}},"30003288":{"solarSystemId":30003288,"solarSystemName":"G:3854","location":{"x":-4280000000000000000,"y":-400000000000000000,"z":226000000000000000}},"30003289":{"solarSystemId":30003289,"solarSystemName":"M:30VI","location":{"x":-4530000000000000000,"y":77800000000000000,"z":160000000000000000}},"30003290":{"solarSystemId":30003290,"solarSystemName":"D:3SKR","location":{"x":-4440000000000000000,"y":232000000000000000,"z":126000000000000000}},"30003291":{"solarSystemId":30003291,"solarSystemName":"B:2S81","location":{"x":-4560000000000000000,"y":-410000000000000000,"z":229000000000000000}},"30003292":{"solarSystemId":30003292,"solarSystemName":"M:3IK7","location":{"x":-4440000000000000000,"y":-19700000000000000,"z":373000000000000000}},"30003293":{"solarSystemId":30003293,"solarSystemName":"P:2TO4","location":{"x":-4720000000000000000,"y":-155000000000000000,"z":389000000000000000}},"30003294":{"solarSystemId":30003294,"solarSystemName":"P:37OL","location":{"x":-4610000000000000000,"y":155000000000000000,"z":229000000000000000}},"30003295":{"solarSystemId":30003295,"solarSystemName":"J:3ONI","location":{"x":-4580000000000000000,"y":118000000000000000,"z":543000000000000000}},"30003296":{"solarSystemId":30003296,"solarSystemName":"F:2L71","location":{"x":-4260000000000000000,"y":-396000000000000000,"z":603000000000000000}},"30003297":{"solarSystemId":30003297,"solarSystemName":"D:3V93","location":{"x":-4260000000000000000,"y":-313000000000000000,"z":896000000000000000}},"30003298":{"solarSystemId":30003298,"solarSystemName":"F:3E8R","location":{"x":-4350000000000000000,"y":-209000000000000000,"z":899000000000000000}},"30003299":{"solarSystemId":30003299,"solarSystemName":"H:32NN","location":{"x":-4130000000000000000,"y":-462000000000000000,"z":531000000000000000}},"30003300":{"solarSystemId":30003300,"solarSystemName":"Y:13KL","location":{"x":-4610000000000000000,"y":-12400000000000000,"z":759000000000000000}},"30003301":{"solarSystemId":30003301,"solarSystemName":"Z:V1KN","location":{"x":-4400000000000000000,"y":-564000000000000000,"z":442000000000000000}},"30003302":{"solarSystemId":30003302,"solarSystemName":"F:K7NA","location":{"x":-4770000000000000000,"y":-342000000000000000,"z":442000000000000000}},"30003303":{"solarSystemId":30003303,"solarSystemName":"B:3OA6","location":{"x":-4640000000000000000,"y":-263000000000000000,"z":645000000000000000}},"30003304":{"solarSystemId":30003304,"solarSystemName":"B:2T45","location":{"x":-4450000000000000000,"y":-147000000000000000,"z":674000000000000000}},"30003305":{"solarSystemId":30003305,"solarSystemName":"M:15KE","location":{"x":-4670000000000000000,"y":-378000000000000000,"z":531000000000000000}},"30003306":{"solarSystemId":30003306,"solarSystemName":"Q:2N39","location":{"x":-4300000000000000000,"y":-409000000000000000,"z":815000000000000000}},"30003307":{"solarSystemId":30003307,"solarSystemName":"U:36K3","location":{"x":-4610000000000000000,"y":-483000000000000000,"z":684000000000000000}},"30003308":{"solarSystemId":30003308,"solarSystemName":"F:274E","location":{"x":-4320000000000000000,"y":-517000000000000000,"z":420000000000000000}},"30003309":{"solarSystemId":30003309,"solarSystemName":"P:24O6","location":{"x":-4340000000000000000,"y":-403000000000000000,"z":869000000000000000}},"30003310":{"solarSystemId":30003310,"solarSystemName":"B:2N46","location":{"x":-4110000000000000000,"y":-298000000000000000,"z":395000000000000000}},"30003311":{"solarSystemId":30003311,"solarSystemName":"Q:V8S9","location":{"x":-4330000000000000000,"y":-116000000000000000,"z":1040000000000000000}},"30003312":{"solarSystemId":30003312,"solarSystemName":"H:29NN","location":{"x":-4510000000000000000,"y":-433000000000000000,"z":843000000000000000}},"30003313":{"solarSystemId":30003313,"solarSystemName":"F:2VN9","location":{"x":-4640000000000000000,"y":-451000000000000000,"z":819000000000000000}},"30003314":{"solarSystemId":30003314,"solarSystemName":"Q:3AO8","location":{"x":-4580000000000000000,"y":-228000000000000000,"z":920000000000000000}},"30003315":{"solarSystemId":30003315,"solarSystemName":"G:38V0","location":{"x":-4410000000000000000,"y":25300000000000000,"z":644000000000000000}},"30003316":{"solarSystemId":30003316,"solarSystemName":"F:2ILK","location":{"x":-4710000000000000000,"y":-246000000000000000,"z":665000000000000000}},"30003317":{"solarSystemId":30003317,"solarSystemName":"P:373A","location":{"x":-4480000000000000000,"y":-138000000000000000,"z":813000000000000000}},"30003318":{"solarSystemId":30003318,"solarSystemName":"H:3I0V","location":{"x":-4360000000000000000,"y":-239000000000000000,"z":598000000000000000}},"30003319":{"solarSystemId":30003319,"solarSystemName":"J:329I","location":{"x":-3160000000000000000,"y":-1520000000000000000,"z":1500000000000000000}},"30003320":{"solarSystemId":30003320,"solarSystemName":"U:2EVK","location":{"x":-3110000000000000000,"y":-1670000000000000000,"z":2160000000000000000}},"30003321":{"solarSystemId":30003321,"solarSystemName":"Q:2NKV","location":{"x":-3590000000000000000,"y":-1560000000000000000,"z":1950000000000000000}},"30003322":{"solarSystemId":30003322,"solarSystemName":"U:377R","location":{"x":-3800000000000000000,"y":-1270000000000000000,"z":1140000000000000000}},"30003323":{"solarSystemId":30003323,"solarSystemName":"Z:3EN5","location":{"x":-3720000000000000000,"y":-1110000000000000000,"z":1270000000000000000}},"30003324":{"solarSystemId":30003324,"solarSystemName":"P:3110","location":{"x":-3470000000000000000,"y":-1500000000000000000,"z":1590000000000000000}},"30003325":{"solarSystemId":30003325,"solarSystemName":"M:3T2E","location":{"x":-3180000000000000000,"y":-1690000000000000000,"z":1810000000000000000}},"30003326":{"solarSystemId":30003326,"solarSystemName":"F:2ENR","location":{"x":-3460000000000000000,"y":-1650000000000000000,"z":1210000000000000000}},"30003327":{"solarSystemId":30003327,"solarSystemName":"U:29K3","location":{"x":-3070000000000000000,"y":-964000000000000000,"z":1320000000000000000}},"30003328":{"solarSystemId":30003328,"solarSystemName":"Z:2K25","location":{"x":-3420000000000000000,"y":-1170000000000000000,"z":1380000000000000000}},"30003329":{"solarSystemId":30003329,"solarSystemName":"J:3R57","location":{"x":-3340000000000000000,"y":-1520000000000000000,"z":984000000000000000}},"30003330":{"solarSystemId":30003330,"solarSystemName":"Q:1NV1","location":{"x":-3800000000000000000,"y":-1010000000000000000,"z":1600000000000000000}},"30003331":{"solarSystemId":30003331,"solarSystemName":"H:2E58","location":{"x":-3440000000000000000,"y":-1390000000000000000,"z":1440000000000000000}},"30003332":{"solarSystemId":30003332,"solarSystemName":"U:TS19","location":{"x":-3940000000000000000,"y":-1090000000000000000,"z":1650000000000000000}},"30003333":{"solarSystemId":30003333,"solarSystemName":"Z:3444","location":{"x":-3800000000000000000,"y":-1090000000000000000,"z":1380000000000000000}},"30003334":{"solarSystemId":30003334,"solarSystemName":"B:2LVS","location":{"x":-2860000000000000000,"y":-1420000000000000000,"z":1500000000000000000}},"30003335":{"solarSystemId":30003335,"solarSystemName":"Q:33S4","location":{"x":-3180000000000000000,"y":-1550000000000000000,"z":1950000000000000000}},"30003336":{"solarSystemId":30003336,"solarSystemName":"P:39I4","location":{"x":-3850000000000000000,"y":-1580000000000000000,"z":1920000000000000000}},"30003337":{"solarSystemId":30003337,"solarSystemName":"P:2N86","location":{"x":-3760000000000000000,"y":-1490000000000000000,"z":1050000000000000000}},"30003338":{"solarSystemId":30003338,"solarSystemName":"B:3169","location":{"x":-3230000000000000000,"y":-1790000000000000000,"z":1120000000000000000}},"30003339":{"solarSystemId":30003339,"solarSystemName":"F:3N2I","location":{"x":-3680000000000000000,"y":-1530000000000000000,"z":812000000000000000}},"30003340":{"solarSystemId":30003340,"solarSystemName":"D:3T4L","location":{"x":-3570000000000000000,"y":-578000000000000000,"z":449000000000000000}},"30003341":{"solarSystemId":30003341,"solarSystemName":"F:3451","location":{"x":-3510000000000000000,"y":-611000000000000000,"z":480000000000000000}},"30003342":{"solarSystemId":30003342,"solarSystemName":"F:2K7E","location":{"x":-3540000000000000000,"y":-586000000000000000,"z":389000000000000000}},"30003343":{"solarSystemId":30003343,"solarSystemName":"D:3N5R","location":{"x":-3540000000000000000,"y":-582000000000000000,"z":410000000000000000}},"30003344":{"solarSystemId":30003344,"solarSystemName":"P:2LS2","location":{"x":-3700000000000000000,"y":-716000000000000000,"z":586000000000000000}},"30003345":{"solarSystemId":30003345,"solarSystemName":"Y:3OVS","location":{"x":-3780000000000000000,"y":-605000000000000000,"z":476000000000000000}},"30003346":{"solarSystemId":30003346,"solarSystemName":"D:2VV0","location":{"x":-3650000000000000000,"y":-515000000000000000,"z":520000000000000000}},"30003347":{"solarSystemId":30003347,"solarSystemName":"B:38AS","location":{"x":-3340000000000000000,"y":-634000000000000000,"z":478000000000000000}},"30003348":{"solarSystemId":30003348,"solarSystemName":"J:387E","location":{"x":-3420000000000000000,"y":-593000000000000000,"z":508000000000000000}},"30003349":{"solarSystemId":30003349,"solarSystemName":"G:2R8L","location":{"x":-3650000000000000000,"y":-668000000000000000,"z":478000000000000000}},"30003350":{"solarSystemId":30003350,"solarSystemName":"D:30SO","location":{"x":-3680000000000000000,"y":-530000000000000000,"z":660000000000000000}},"30003351":{"solarSystemId":30003351,"solarSystemName":"Q:31V8","location":{"x":-3650000000000000000,"y":-528000000000000000,"z":572000000000000000}},"30003352":{"solarSystemId":30003352,"solarSystemName":"F:362R","location":{"x":-3600000000000000000,"y":-672000000000000000,"z":430000000000000000}},"30003353":{"solarSystemId":30003353,"solarSystemName":"D:3O45","location":{"x":-3560000000000000000,"y":-585000000000000000,"z":351000000000000000}},"30003354":{"solarSystemId":30003354,"solarSystemName":"M:3TT2","location":{"x":-3520000000000000000,"y":-542000000000000000,"z":359000000000000000}},"30003355":{"solarSystemId":30003355,"solarSystemName":"J:3IN9","location":{"x":-3630000000000000000,"y":-531000000000000000,"z":644000000000000000}},"30003356":{"solarSystemId":30003356,"solarSystemName":"M:379V","location":{"x":-3430000000000000000,"y":-659000000000000000,"z":374000000000000000}},"30003357":{"solarSystemId":30003357,"solarSystemName":"U:31OT","location":{"x":-3590000000000000000,"y":-647000000000000000,"z":503000000000000000}},"30003358":{"solarSystemId":30003358,"solarSystemName":"H:3832","location":{"x":-3450000000000000000,"y":-715000000000000000,"z":414000000000000000}},"30003359":{"solarSystemId":30003359,"solarSystemName":"F:2A3I","location":{"x":-3580000000000000000,"y":-746000000000000000,"z":329000000000000000}},"30003360":{"solarSystemId":30003360,"solarSystemName":"U:2T7K","location":{"x":-6290000000000000000,"y":-174000000000000000,"z":5790000000000000000}},"30003361":{"solarSystemId":30003361,"solarSystemName":"F:3ORS","location":{"x":-6200000000000000000,"y":1090000000000000000,"z":6150000000000000000}},"30003362":{"solarSystemId":30003362,"solarSystemName":"P:IRAI","location":{"x":-5320000000000000000,"y":16900000000000000,"z":5810000000000000000}},"30003363":{"solarSystemId":30003363,"solarSystemName":"H:193V","location":{"x":-4930000000000000000,"y":229000000000000000,"z":5800000000000000000}},"30003364":{"solarSystemId":30003364,"solarSystemName":"F:2V97","location":{"x":-6050000000000000000,"y":-298000000000000000,"z":5990000000000000000}},"30003365":{"solarSystemId":30003365,"solarSystemName":"F:16OK","location":{"x":-5890000000000000000,"y":567000000000000000,"z":5050000000000000000}},"30003366":{"solarSystemId":30003366,"solarSystemName":"M:304A","location":{"x":-5060000000000000000,"y":553000000000000000,"z":5830000000000000000}},"30003367":{"solarSystemId":30003367,"solarSystemName":"B:21K0","location":{"x":-5180000000000000000,"y":-105000000000000000,"z":5980000000000000000}},"30003368":{"solarSystemId":30003368,"solarSystemName":"H:17T6","location":{"x":-5390000000000000000,"y":-211000000000000000,"z":6070000000000000000}},"30003369":{"solarSystemId":30003369,"solarSystemName":"Z:T7RR","location":{"x":-5490000000000000000,"y":-249000000000000000,"z":5840000000000000000}},"30003370":{"solarSystemId":30003370,"solarSystemName":"Z:1325","location":{"x":-6060000000000000000,"y":395000000000000000,"z":5780000000000000000}},"30003371":{"solarSystemId":30003371,"solarSystemName":"J:26KE","location":{"x":-5970000000000000000,"y":785000000000000000,"z":6040000000000000000}},"30003372":{"solarSystemId":30003372,"solarSystemName":"G:3SOR","location":{"x":-5620000000000000000,"y":10300000000000000,"z":6190000000000000000}},"30003373":{"solarSystemId":30003373,"solarSystemName":"P:33E1","location":{"x":-5930000000000000000,"y":390000000000000000,"z":5980000000000000000}},"30003374":{"solarSystemId":30003374,"solarSystemName":"B:34E5","location":{"x":-5350000000000000000,"y":25200000000000000,"z":2690000000000000000}},"30003375":{"solarSystemId":30003375,"solarSystemName":"D:2L3R","location":{"x":-5630000000000000000,"y":-479000000000000000,"z":3560000000000000000}},"30003376":{"solarSystemId":30003376,"solarSystemName":"J:22V9","location":{"x":-5430000000000000000,"y":-533000000000000000,"z":3150000000000000000}},"30003377":{"solarSystemId":30003377,"solarSystemName":"M:29II","location":{"x":-5780000000000000000,"y":-237000000000000000,"z":3980000000000000000}},"30003378":{"solarSystemId":30003378,"solarSystemName":"F:N116","location":{"x":-5380000000000000000,"y":-590000000000000000,"z":3740000000000000000}},"30003379":{"solarSystemId":30003379,"solarSystemName":"P:259L","location":{"x":-5820000000000000000,"y":-506000000000000000,"z":3670000000000000000}},"30003380":{"solarSystemId":30003380,"solarSystemName":"B:2A62","location":{"x":-5690000000000000000,"y":-894000000000000000,"z":2690000000000000000}},"30003381":{"solarSystemId":30003381,"solarSystemName":"G:2K0I","location":{"x":-5800000000000000000,"y":-639000000000000000,"z":4160000000000000000}},"30003382":{"solarSystemId":30003382,"solarSystemName":"Y:1AEN","location":{"x":-5980000000000000000,"y":-506000000000000000,"z":3500000000000000000}},"30003383":{"solarSystemId":30003383,"solarSystemName":"F:32AR","location":{"x":-5420000000000000000,"y":-47400000000000000,"z":3860000000000000000}},"30003384":{"solarSystemId":30003384,"solarSystemName":"Z:385N","location":{"x":-5990000000000000000,"y":-531000000000000000,"z":3200000000000000000}},"30003385":{"solarSystemId":30003385,"solarSystemName":"D:17TO","location":{"x":-5350000000000000000,"y":-887000000000000000,"z":2680000000000000000}},"30003386":{"solarSystemId":30003386,"solarSystemName":"Q:343I","location":{"x":-6630000000000000000,"y":-992000000000000000,"z":3650000000000000000}},"30003387":{"solarSystemId":30003387,"solarSystemName":"J:4V23","location":{"x":-5300000000000000000,"y":-695000000000000000,"z":2840000000000000000}},"30003388":{"solarSystemId":30003388,"solarSystemName":"U:1V7E","location":{"x":-6390000000000000000,"y":-853000000000000000,"z":3410000000000000000}},"30003389":{"solarSystemId":30003389,"solarSystemName":"D:1RSE","location":{"x":-5700000000000000000,"y":-159000000000000000,"z":3660000000000000000}},"30003390":{"solarSystemId":30003390,"solarSystemName":"D:34S9","location":{"x":-5730000000000000000,"y":-176000000000000000,"z":3940000000000000000}},"30003391":{"solarSystemId":30003391,"solarSystemName":"D:1VIS","location":{"x":-5210000000000000000,"y":-272000000000000000,"z":3960000000000000000}},"30003392":{"solarSystemId":30003392,"solarSystemName":"M:3TT1","location":{"x":-6700000000000000000,"y":-1350000000000000000,"z":5380000000000000000}},"30003393":{"solarSystemId":30003393,"solarSystemName":"M:37EV","location":{"x":-6420000000000000000,"y":-473000000000000000,"z":5390000000000000000}},"30003394":{"solarSystemId":30003394,"solarSystemName":"H:3KI2","location":{"x":-6260000000000000000,"y":-906000000000000000,"z":4860000000000000000}},"30003395":{"solarSystemId":30003395,"solarSystemName":"Z:342R","location":{"x":-6030000000000000000,"y":-1040000000000000000,"z":4530000000000000000}},"30003396":{"solarSystemId":30003396,"solarSystemName":"B:1EKT","location":{"x":-6170000000000000000,"y":-468000000000000000,"z":4780000000000000000}},"30003397":{"solarSystemId":30003397,"solarSystemName":"J:1VA8","location":{"x":-6130000000000000000,"y":-1130000000000000000,"z":4290000000000000000}},"30003398":{"solarSystemId":30003398,"solarSystemName":"J:IKR7","location":{"x":-6960000000000000000,"y":-1060000000000000000,"z":5140000000000000000}},"30003399":{"solarSystemId":30003399,"solarSystemName":"Z:N28T","location":{"x":-6670000000000000000,"y":-1530000000000000000,"z":4660000000000000000}},"30003400":{"solarSystemId":30003400,"solarSystemName":"Y:3A74","location":{"x":-5890000000000000000,"y":-447000000000000000,"z":4920000000000000000}},"30003401":{"solarSystemId":30003401,"solarSystemName":"Y:1SE5","location":{"x":-6020000000000000000,"y":-189000000000000000,"z":5170000000000000000}},"30003402":{"solarSystemId":30003402,"solarSystemName":"Q:212R","location":{"x":-5530000000000000000,"y":-620000000000000000,"z":4310000000000000000}},"30003403":{"solarSystemId":30003403,"solarSystemName":"P:3R5E","location":{"x":-5710000000000000000,"y":-718000000000000000,"z":4320000000000000000}},"30003404":{"solarSystemId":30003404,"solarSystemName":"M:1VV2","location":{"x":-6070000000000000000,"y":-1160000000000000000,"z":4920000000000000000}},"30003405":{"solarSystemId":30003405,"solarSystemName":"G:32AE","location":{"x":-5870000000000000000,"y":-723000000000000000,"z":4950000000000000000}},"30003406":{"solarSystemId":30003406,"solarSystemName":"G:2197","location":{"x":-6220000000000000000,"y":-905000000000000000,"z":4850000000000000000}},"30003407":{"solarSystemId":30003407,"solarSystemName":"Y:O9IA","location":{"x":-6640000000000000000,"y":-1040000000000000000,"z":5020000000000000000}},"30003408":{"solarSystemId":30003408,"solarSystemName":"Z:28N9","location":{"x":-6020000000000000000,"y":-377000000000000000,"z":4740000000000000000}},"30003409":{"solarSystemId":30003409,"solarSystemName":"Y:O1IR","location":{"x":-6000000000000000000,"y":-1210000000000000000,"z":5090000000000000000}},"30003410":{"solarSystemId":30003410,"solarSystemName":"M:3A3S","location":{"x":-5600000000000000000,"y":-920000000000000000,"z":4170000000000000000}},"30003411":{"solarSystemId":30003411,"solarSystemName":"Y:3516","location":{"x":-8040000000000000000,"y":2200000000000000000,"z":6270000000000000000}},"30003412":{"solarSystemId":30003412,"solarSystemName":"B:2S72","location":{"x":-7240000000000000000,"y":2140000000000000000,"z":6850000000000000000}},"30003413":{"solarSystemId":30003413,"solarSystemName":"F:26O9","location":{"x":-6490000000000000000,"y":-760000000000000000,"z":5660000000000000000}},"30003414":{"solarSystemId":30003414,"solarSystemName":"U:ITRI","location":{"x":-8560000000000000000,"y":691000000000000000,"z":6600000000000000000}},"30003415":{"solarSystemId":30003415,"solarSystemName":"Z:1O26","location":{"x":-7570000000000000000,"y":-453000000000000000,"z":4280000000000000000}},"30003416":{"solarSystemId":30003416,"solarSystemName":"F:2520","location":{"x":-7880000000000000000,"y":-479000000000000000,"z":4210000000000000000}},"30003417":{"solarSystemId":30003417,"solarSystemName":"U:1325","location":{"x":-8310000000000000000,"y":761000000000000000,"z":5110000000000000000}},"30003418":{"solarSystemId":30003418,"solarSystemName":"G:1KIR","location":{"x":-8870000000000000000,"y":89200000000000000,"z":5860000000000000000}},"30003419":{"solarSystemId":30003419,"solarSystemName":"H:1O1E","location":{"x":-7780000000000000000,"y":754000000000000000,"z":5490000000000000000}},"30003420":{"solarSystemId":30003420,"solarSystemName":"G:1AE1","location":{"x":-7730000000000000000,"y":-162000000000000000,"z":5430000000000000000}},"30003421":{"solarSystemId":30003421,"solarSystemName":"Z:2S5A","location":{"x":-6810000000000000000,"y":-638000000000000000,"z":5730000000000000000}},"30003422":{"solarSystemId":30003422,"solarSystemName":"G:3EL4","location":{"x":-8960000000000000000,"y":1520000000000000000,"z":5130000000000000000}},"30003423":{"solarSystemId":30003423,"solarSystemName":"M:31RO","location":{"x":-7210000000000000000,"y":55200000000000000,"z":5300000000000000000}},"30003424":{"solarSystemId":30003424,"solarSystemName":"F:14RN","location":{"x":-6620000000000000000,"y":-376000000000000000,"z":5360000000000000000}},"30003425":{"solarSystemId":30003425,"solarSystemName":"Q:2941","location":{"x":-7420000000000000000,"y":-341000000000000000,"z":4220000000000000000}},"30003426":{"solarSystemId":30003426,"solarSystemName":"Y:1T49","location":{"x":-6960000000000000000,"y":-234000000000000000,"z":5720000000000000000}},"30003427":{"solarSystemId":30003427,"solarSystemName":"M:281S","location":{"x":-7680000000000000000,"y":-370000000000000000,"z":3980000000000000000}},"30003428":{"solarSystemId":30003428,"solarSystemName":"U:1SKA","location":{"x":-7060000000000000000,"y":199000000000000000,"z":5550000000000000000}},"30003429":{"solarSystemId":30003429,"solarSystemName":"H:3A6I","location":{"x":-6840000000000000000,"y":1350000000000000000,"z":3670000000000000000}},"30003430":{"solarSystemId":30003430,"solarSystemName":"Q:3A12","location":{"x":-5690000000000000000,"y":802000000000000000,"z":4200000000000000000}},"30003431":{"solarSystemId":30003431,"solarSystemName":"J:17R6","location":{"x":-6450000000000000000,"y":-64900000000000000,"z":4520000000000000000}},"30003432":{"solarSystemId":30003432,"solarSystemName":"U:27R4","location":{"x":-6560000000000000000,"y":-131000000000000000,"z":4150000000000000000}},"30003433":{"solarSystemId":30003433,"solarSystemName":"D:S795","location":{"x":-7330000000000000000,"y":300000000000000000,"z":4250000000000000000}},"30003434":{"solarSystemId":30003434,"solarSystemName":"Y:23SN","location":{"x":-6270000000000000000,"y":548000000000000000,"z":4750000000000000000}},"30003435":{"solarSystemId":30003435,"solarSystemName":"H:10NS","location":{"x":-6540000000000000000,"y":-16900000000000000,"z":4270000000000000000}},"30003436":{"solarSystemId":30003436,"solarSystemName":"P:1A5A","location":{"x":-5840000000000000000,"y":608000000000000000,"z":3610000000000000000}},"30003437":{"solarSystemId":30003437,"solarSystemName":"P:13KO","location":{"x":-6460000000000000000,"y":-461000000000000000,"z":4170000000000000000}},"30003438":{"solarSystemId":30003438,"solarSystemName":"Z:23K2","location":{"x":-5110000000000000000,"y":814000000000000000,"z":4490000000000000000}},"30003439":{"solarSystemId":30003439,"solarSystemName":"Z:266N","location":{"x":-6380000000000000000,"y":527000000000000000,"z":4850000000000000000}},"30003440":{"solarSystemId":30003440,"solarSystemName":"Q:2I6L","location":{"x":-6200000000000000000,"y":-158000000000000000,"z":4340000000000000000}},"30003441":{"solarSystemId":30003441,"solarSystemName":"P:34N0","location":{"x":-5850000000000000000,"y":545000000000000000,"z":3660000000000000000}},"30003442":{"solarSystemId":30003442,"solarSystemName":"H:2S04","location":{"x":-5270000000000000000,"y":1210000000000000000,"z":4430000000000000000}},"30003443":{"solarSystemId":30003443,"solarSystemName":"G:3E8V","location":{"x":-7630000000000000000,"y":136000000000000000,"z":3800000000000000000}},"30003444":{"solarSystemId":30003444,"solarSystemName":"G:2I5N","location":{"x":-6760000000000000000,"y":694000000000000000,"z":4040000000000000000}},"30003445":{"solarSystemId":30003445,"solarSystemName":"F:27AA","location":{"x":-5850000000000000000,"y":196000000000000000,"z":4470000000000000000}},"30003446":{"solarSystemId":30003446,"solarSystemName":"M:1S25","location":{"x":-7130000000000000000,"y":244000000000000000,"z":4090000000000000000}},"30003447":{"solarSystemId":30003447,"solarSystemName":"Q:4I1I","location":{"x":-7080000000000000000,"y":601000000000000000,"z":5020000000000000000}},"30003448":{"solarSystemId":30003448,"solarSystemName":"G:2AS9","location":{"x":-5310000000000000000,"y":-344000000000000000,"z":4980000000000000000}},"30003449":{"solarSystemId":30003449,"solarSystemName":"Q:2K91","location":{"x":-4770000000000000000,"y":-550000000000000000,"z":4680000000000000000}},"30003450":{"solarSystemId":30003450,"solarSystemName":"J:1O73","location":{"x":-4690000000000000000,"y":-947000000000000000,"z":5000000000000000000}},"30003451":{"solarSystemId":30003451,"solarSystemName":"Q:210A","location":{"x":-5130000000000000000,"y":-404000000000000000,"z":4970000000000000000}},"30003452":{"solarSystemId":30003452,"solarSystemName":"U:1KTK","location":{"x":-4540000000000000000,"y":-133000000000000000,"z":4880000000000000000}},"30003453":{"solarSystemId":30003453,"solarSystemName":"Z:1S6I","location":{"x":-5570000000000000000,"y":-59700000000000000,"z":4610000000000000000}},"30003454":{"solarSystemId":30003454,"solarSystemName":"H:1RRE","location":{"x":-5100000000000000000,"y":-599000000000000000,"z":5090000000000000000}},"30003455":{"solarSystemId":30003455,"solarSystemName":"P:1104","location":{"x":-5490000000000000000,"y":-421000000000000000,"z":5220000000000000000}},"30003456":{"solarSystemId":30003456,"solarSystemName":"P:1NSN","location":{"x":-4870000000000000000,"y":-646000000000000000,"z":4630000000000000000}},"30003457":{"solarSystemId":30003457,"solarSystemName":"H:1LIT","location":{"x":-4690000000000000000,"y":-500000000000000000,"z":5020000000000000000}},"30003458":{"solarSystemId":30003458,"solarSystemName":"J:3R31","location":{"x":-4950000000000000000,"y":-336000000000000000,"z":5330000000000000000}},"30003459":{"solarSystemId":30003459,"solarSystemName":"Z:38V9","location":{"x":-4750000000000000000,"y":-563000000000000000,"z":5420000000000000000}},"30003460":{"solarSystemId":30003460,"solarSystemName":"G:2TN2","location":{"x":-4710000000000000000,"y":-559000000000000000,"z":5160000000000000000}},"30003461":{"solarSystemId":30003461,"solarSystemName":"J:K8S9","location":{"x":-5160000000000000000,"y":-570000000000000000,"z":4610000000000000000}},"30003462":{"solarSystemId":30003462,"solarSystemName":"J:235N","location":{"x":-5660000000000000000,"y":-744000000000000000,"z":4890000000000000000}},"30003463":{"solarSystemId":30003463,"solarSystemName":"G:1A6T","location":{"x":-5590000000000000000,"y":-279000000000000000,"z":5270000000000000000}},"30003464":{"solarSystemId":30003464,"solarSystemName":"J:3ILN","location":{"x":-5590000000000000000,"y":-753000000000000000,"z":4950000000000000000}},"30003465":{"solarSystemId":30003465,"solarSystemName":"P:2159","location":{"x":-5580000000000000000,"y":119000000000000000,"z":4630000000000000000}},"30003466":{"solarSystemId":30003466,"solarSystemName":"P:1R1T","location":{"x":-4820000000000000000,"y":-245000000000000000,"z":4890000000000000000}},"30003467":{"solarSystemId":30003467,"solarSystemName":"U:2SSV","location":{"x":-5950000000000000000,"y":557000000000000000,"z":2740000000000000000}},"30003468":{"solarSystemId":30003468,"solarSystemName":"G:2E38","location":{"x":-5180000000000000000,"y":172000000000000000,"z":2940000000000000000}},"30003469":{"solarSystemId":30003469,"solarSystemName":"G:225O","location":{"x":-5110000000000000000,"y":116000000000000000,"z":3440000000000000000}},"30003470":{"solarSystemId":30003470,"solarSystemName":"F:295A","location":{"x":-5180000000000000000,"y":139000000000000000,"z":3820000000000000000}},"30003471":{"solarSystemId":30003471,"solarSystemName":"D:23VI","location":{"x":-5200000000000000000,"y":596000000000000000,"z":3880000000000000000}},"30003472":{"solarSystemId":30003472,"solarSystemName":"Z:1KAN","location":{"x":-5050000000000000000,"y":40000000000000000,"z":3950000000000000000}},"30003473":{"solarSystemId":30003473,"solarSystemName":"F:246T","location":{"x":-5020000000000000000,"y":558000000000000000,"z":3990000000000000000}},"30003474":{"solarSystemId":30003474,"solarSystemName":"P:297A","location":{"x":-5470000000000000000,"y":524000000000000000,"z":4100000000000000000}},"30003475":{"solarSystemId":30003475,"solarSystemName":"J:3RSO","location":{"x":-5270000000000000000,"y":922000000000000000,"z":3640000000000000000}},"30003476":{"solarSystemId":30003476,"solarSystemName":"Y:36IK","location":{"x":-4650000000000000000,"y":1450000000000000000,"z":3590000000000000000}},"30003477":{"solarSystemId":30003477,"solarSystemName":"Y:3II9","location":{"x":-5240000000000000000,"y":164000000000000000,"z":2710000000000000000}},"30003478":{"solarSystemId":30003478,"solarSystemName":"F:2TAR","location":{"x":-4510000000000000000,"y":1180000000000000000,"z":3750000000000000000}},"30003479":{"solarSystemId":30003479,"solarSystemName":"Z:3697","location":{"x":-5180000000000000000,"y":202000000000000000,"z":3940000000000000000}},"30003480":{"solarSystemId":30003480,"solarSystemName":"D:39L7","location":{"x":-5480000000000000000,"y":819000000000000000,"z":3140000000000000000}},"30003481":{"solarSystemId":30003481,"solarSystemName":"Y:34L6","location":{"x":-4980000000000000000,"y":-96900000000000000,"z":3260000000000000000}},"30003482":{"solarSystemId":30003482,"solarSystemName":"M:2AS6","location":{"x":-5080000000000000000,"y":-42500000000000000,"z":3930000000000000000}},"30003483":{"solarSystemId":30003483,"solarSystemName":"Q:294K","location":{"x":-7030000000000000000,"y":506000000000000000,"z":3190000000000000000}},"30003484":{"solarSystemId":30003484,"solarSystemName":"G:3234","location":{"x":-6820000000000000000,"y":967000000000000000,"z":2690000000000000000}},"30003485":{"solarSystemId":30003485,"solarSystemName":"Q:O0SS","location":{"x":-6900000000000000000,"y":39000000000000000,"z":2940000000000000000}},"30003486":{"solarSystemId":30003486,"solarSystemName":"J:39V7","location":{"x":-6890000000000000000,"y":-85400000000000000,"z":3200000000000000000}},"30003487":{"solarSystemId":30003487,"solarSystemName":"M:1EES","location":{"x":-7310000000000000000,"y":769000000000000000,"z":2320000000000000000}},"30003488":{"solarSystemId":30003488,"solarSystemName":"G:21NN","location":{"x":-7270000000000000000,"y":259000000000000000,"z":3230000000000000000}},"30003489":{"solarSystemId":30003489,"solarSystemName":"G:2VNR","location":{"x":-6550000000000000000,"y":-121000000000000000,"z":3840000000000000000}},"30003490":{"solarSystemId":30003490,"solarSystemName":"Z:37A7","location":{"x":-6340000000000000000,"y":-390000000000000000,"z":3630000000000000000}},"30003491":{"solarSystemId":30003491,"solarSystemName":"F:ONOS","location":{"x":-7590000000000000000,"y":31400000000000000,"z":3580000000000000000}},"30003492":{"solarSystemId":30003492,"solarSystemName":"Y:239S","location":{"x":-6110000000000000000,"y":150000000000000000,"z":3350000000000000000}},"30003493":{"solarSystemId":30003493,"solarSystemName":"U:294L","location":{"x":-7040000000000000000,"y":788000000000000000,"z":2000000000000000000}},"30003494":{"solarSystemId":30003494,"solarSystemName":"J:2A56","location":{"x":-6680000000000000000,"y":231000000000000000,"z":2890000000000000000}},"30003495":{"solarSystemId":30003495,"solarSystemName":"F:37K2","location":{"x":-6840000000000000000,"y":-139000000000000000,"z":3120000000000000000}},"30003496":{"solarSystemId":30003496,"solarSystemName":"B:23L2","location":{"x":-7440000000000000000,"y":-511000000000000000,"z":3640000000000000000}},"30003497":{"solarSystemId":30003497,"solarSystemName":"J:2A1K","location":{"x":-7070000000000000000,"y":-236000000000000000,"z":2930000000000000000}},"30003498":{"solarSystemId":30003498,"solarSystemName":"P:4K47","location":{"x":-6530000000000000000,"y":239000000000000000,"z":3240000000000000000}},"30003499":{"solarSystemId":30003499,"solarSystemName":"J:2LON","location":{"x":-6190000000000000000,"y":-211000000000000000,"z":2990000000000000000}},"30003500":{"solarSystemId":30003500,"solarSystemName":"D:OK22","location":{"x":-6730000000000000000,"y":-325000000000000000,"z":3830000000000000000}},"30003501":{"solarSystemId":30003501,"solarSystemName":"D:2T1R","location":{"x":-6660000000000000000,"y":-1640000000000000000,"z":3870000000000000000}},"30003502":{"solarSystemId":30003502,"solarSystemName":"G:333L","location":{"x":-7650000000000000000,"y":-1740000000000000000,"z":4140000000000000000}},"30003503":{"solarSystemId":30003503,"solarSystemName":"U:V0R5","location":{"x":-6350000000000000000,"y":-1790000000000000000,"z":4310000000000000000}},"30003504":{"solarSystemId":30003504,"solarSystemName":"M:2951","location":{"x":-6880000000000000000,"y":-2040000000000000000,"z":4400000000000000000}},"30003505":{"solarSystemId":30003505,"solarSystemName":"B:374O","location":{"x":-6990000000000000000,"y":-626000000000000000,"z":3850000000000000000}},"30003506":{"solarSystemId":30003506,"solarSystemName":"P:2AA0","location":{"x":-7010000000000000000,"y":-1560000000000000000,"z":3340000000000000000}},"30003507":{"solarSystemId":30003507,"solarSystemName":"H:298A","location":{"x":-7640000000000000000,"y":-840000000000000000,"z":3680000000000000000}},"30003508":{"solarSystemId":30003508,"solarSystemName":"F:3ROS","location":{"x":-7910000000000000000,"y":-1440000000000000000,"z":3610000000000000000}},"30003509":{"solarSystemId":30003509,"solarSystemName":"Q:2VS3","location":{"x":-6570000000000000000,"y":-1280000000000000000,"z":4100000000000000000}},"30003510":{"solarSystemId":30003510,"solarSystemName":"Q:2SA4","location":{"x":-6310000000000000000,"y":-1230000000000000000,"z":4100000000000000000}},"30003511":{"solarSystemId":30003511,"solarSystemName":"P:1K67","location":{"x":-7370000000000000000,"y":-1470000000000000000,"z":3910000000000000000}},"30003512":{"solarSystemId":30003512,"solarSystemName":"M:1L2I","location":{"x":-7630000000000000000,"y":-1520000000000000000,"z":3610000000000000000}},"30003513":{"solarSystemId":30003513,"solarSystemName":"U:111K","location":{"x":-6700000000000000000,"y":-1360000000000000000,"z":3850000000000000000}},"30003514":{"solarSystemId":30003514,"solarSystemName":"F:2R5S","location":{"x":-7950000000000000000,"y":-1290000000000000000,"z":3870000000000000000}},"30003515":{"solarSystemId":30003515,"solarSystemName":"F:3SO1","location":{"x":-7100000000000000000,"y":-936000000000000000,"z":3600000000000000000}},"30003516":{"solarSystemId":30003516,"solarSystemName":"J:332K","location":{"x":-6750000000000000000,"y":-1360000000000000000,"z":3760000000000000000}},"30003517":{"solarSystemId":30003517,"solarSystemName":"J:265O","location":{"x":-7290000000000000000,"y":-1320000000000000000,"z":4900000000000000000}},"30003518":{"solarSystemId":30003518,"solarSystemName":"Z:1S3V","location":{"x":-7840000000000000000,"y":-995000000000000000,"z":4020000000000000000}},"30003519":{"solarSystemId":30003519,"solarSystemName":"Y:OEOV","location":{"x":-7280000000000000000,"y":-862000000000000000,"z":4520000000000000000}},"30003520":{"solarSystemId":30003520,"solarSystemName":"F:1SAS","location":{"x":-7740000000000000000,"y":-769000000000000000,"z":5220000000000000000}},"30003521":{"solarSystemId":30003521,"solarSystemName":"F:VO27","location":{"x":-8220000000000000000,"y":-1260000000000000000,"z":4530000000000000000}},"30003522":{"solarSystemId":30003522,"solarSystemName":"F:1EL0","location":{"x":-7990000000000000000,"y":-825000000000000000,"z":4030000000000000000}},"30003523":{"solarSystemId":30003523,"solarSystemName":"G:1NT8","location":{"x":-7360000000000000000,"y":-1540000000000000000,"z":4900000000000000000}},"30003524":{"solarSystemId":30003524,"solarSystemName":"J:1210","location":{"x":-8000000000000000000,"y":-730000000000000000,"z":4550000000000000000}},"30003525":{"solarSystemId":30003525,"solarSystemName":"P:1RLN","location":{"x":-8300000000000000000,"y":-1360000000000000000,"z":4230000000000000000}},"30003526":{"solarSystemId":30003526,"solarSystemName":"U:1K1E","location":{"x":-8620000000000000000,"y":-1960000000000000000,"z":4310000000000000000}},"30003527":{"solarSystemId":30003527,"solarSystemName":"G:3I79","location":{"x":-7400000000000000000,"y":-1470000000000000000,"z":4760000000000000000}},"30003528":{"solarSystemId":30003528,"solarSystemName":"M:1E3T","location":{"x":-8160000000000000000,"y":-1750000000000000000,"z":4750000000000000000}},"30003529":{"solarSystemId":30003529,"solarSystemName":"M:E2LK","location":{"x":-8330000000000000000,"y":-897000000000000000,"z":5030000000000000000}},"30003530":{"solarSystemId":30003530,"solarSystemName":"U:2E0L","location":{"x":-7610000000000000000,"y":-1590000000000000000,"z":5160000000000000000}},"30003531":{"solarSystemId":30003531,"solarSystemName":"J:3O2R","location":{"x":-7910000000000000000,"y":-1140000000000000000,"z":4290000000000000000}},"30003532":{"solarSystemId":30003532,"solarSystemName":"Z:1NNA","location":{"x":-7940000000000000000,"y":-1240000000000000000,"z":4670000000000000000}},"30003533":{"solarSystemId":30003533,"solarSystemName":"Z:3RRO","location":{"x":-3870000000000000000,"y":-1430000000000000000,"z":-2680000000000000000}},"30003534":{"solarSystemId":30003534,"solarSystemName":"F:2O09","location":{"x":-3170000000000000000,"y":-2080000000000000000,"z":-3100000000000000000}},"30003535":{"solarSystemId":30003535,"solarSystemName":"M:30L0","location":{"x":-3870000000000000000,"y":-1420000000000000000,"z":-2590000000000000000}},"30003536":{"solarSystemId":30003536,"solarSystemName":"B:1R57","location":{"x":-2750000000000000000,"y":-1230000000000000000,"z":-2850000000000000000}},"30003537":{"solarSystemId":30003537,"solarSystemName":"H:N15R","location":{"x":-3280000000000000000,"y":-2610000000000000000,"z":-3500000000000000000}},"30003538":{"solarSystemId":30003538,"solarSystemName":"U:21LI","location":{"x":-3250000000000000000,"y":-885000000000000000,"z":-3050000000000000000}},"30003539":{"solarSystemId":30003539,"solarSystemName":"B:EA1T","location":{"x":-2910000000000000000,"y":-1410000000000000000,"z":-3310000000000000000}},"30003540":{"solarSystemId":30003540,"solarSystemName":"Q:1V5T","location":{"x":-3750000000000000000,"y":-1410000000000000000,"z":-4170000000000000000}},"30003541":{"solarSystemId":30003541,"solarSystemName":"F:S050","location":{"x":-4220000000000000000,"y":-1270000000000000000,"z":-3720000000000000000}},"30003542":{"solarSystemId":30003542,"solarSystemName":"F:4N43","location":{"x":-3270000000000000000,"y":-781000000000000000,"z":-3950000000000000000}},"30003543":{"solarSystemId":30003543,"solarSystemName":"D:3TLN","location":{"x":-3830000000000000000,"y":-989000000000000000,"z":-3100000000000000000}},"30003544":{"solarSystemId":30003544,"solarSystemName":"J:2N2I","location":{"x":-3790000000000000000,"y":-976000000000000000,"z":-3240000000000000000}},"30003545":{"solarSystemId":30003545,"solarSystemName":"Q:2E81","location":{"x":-4020000000000000000,"y":-1860000000000000000,"z":-3650000000000000000}},"30003546":{"solarSystemId":30003546,"solarSystemName":"D:2I3L","location":{"x":-2880000000000000000,"y":-2070000000000000000,"z":-3090000000000000000}},"30003547":{"solarSystemId":30003547,"solarSystemName":"D:3AI3","location":{"x":-3800000000000000000,"y":-1260000000000000000,"z":-3460000000000000000}},"30003548":{"solarSystemId":30003548,"solarSystemName":"Y:L239","location":{"x":-3380000000000000000,"y":-1550000000000000000,"z":-3390000000000000000}},"30003549":{"solarSystemId":30003549,"solarSystemName":"Z:2TIA","location":{"x":-3710000000000000000,"y":-1210000000000000000,"z":-3200000000000000000}},"30003550":{"solarSystemId":30003550,"solarSystemName":"Y:TA04","location":{"x":-4560000000000000000,"y":-1230000000000000000,"z":-4010000000000000000}},"30003551":{"solarSystemId":30003551,"solarSystemName":"M:3AI9","location":{"x":-3480000000000000000,"y":-196000000000000000,"z":-2510000000000000000}},"30003552":{"solarSystemId":30003552,"solarSystemName":"D:2K90","location":{"x":-3910000000000000000,"y":-770000000000000000,"z":-2710000000000000000}},"30003553":{"solarSystemId":30003553,"solarSystemName":"M:3I7O","location":{"x":-3850000000000000000,"y":-409000000000000000,"z":-3220000000000000000}},"30003554":{"solarSystemId":30003554,"solarSystemName":"Y:2849","location":{"x":-4030000000000000000,"y":-645000000000000000,"z":-3100000000000000000}},"30003555":{"solarSystemId":30003555,"solarSystemName":"Q:172R","location":{"x":-3720000000000000000,"y":-17800000000000000,"z":-3140000000000000000}},"30003556":{"solarSystemId":30003556,"solarSystemName":"Y:140O","location":{"x":-3470000000000000000,"y":-352000000000000000,"z":-2640000000000000000}},"30003557":{"solarSystemId":30003557,"solarSystemName":"M:EOLE","location":{"x":-3810000000000000000,"y":-281000000000000000,"z":-3100000000000000000}},"30003558":{"solarSystemId":30003558,"solarSystemName":"G:VN6R","location":{"x":-4190000000000000000,"y":-331000000000000000,"z":-3110000000000000000}},"30003559":{"solarSystemId":30003559,"solarSystemName":"H:223K","location":{"x":-4030000000000000000,"y":-96500000000000000,"z":-2610000000000000000}},"30003560":{"solarSystemId":30003560,"solarSystemName":"Q:1N66","location":{"x":-3640000000000000000,"y":-327000000000000000,"z":-2690000000000000000}},"30003561":{"solarSystemId":30003561,"solarSystemName":"Q:248T","location":{"x":-4190000000000000000,"y":-401000000000000000,"z":-3340000000000000000}},"30003562":{"solarSystemId":30003562,"solarSystemName":"D:2AIV","location":{"x":-3430000000000000000,"y":-171000000000000000,"z":-2990000000000000000}},"30003563":{"solarSystemId":30003563,"solarSystemName":"U:3OI5","location":{"x":-4130000000000000000,"y":-769000000000000000,"z":-2810000000000000000}},"30003564":{"solarSystemId":30003564,"solarSystemName":"D:3V6K","location":{"x":-3470000000000000000,"y":-526000000000000000,"z":-2390000000000000000}},"30003565":{"solarSystemId":30003565,"solarSystemName":"F:11S8","location":{"x":-4280000000000000000,"y":-342000000000000000,"z":-3130000000000000000}},"30003566":{"solarSystemId":30003566,"solarSystemName":"P:2VKL","location":{"x":-3750000000000000000,"y":-369000000000000000,"z":-2860000000000000000}},"30003567":{"solarSystemId":30003567,"solarSystemName":"Z:EI34","location":{"x":-4100000000000000000,"y":-233000000000000000,"z":-2410000000000000000}},"30003568":{"solarSystemId":30003568,"solarSystemName":"H:3SOR","location":{"x":-3520000000000000000,"y":517182000000000,"z":-2720000000000000000}},"30003569":{"solarSystemId":30003569,"solarSystemName":"U:3RT2","location":{"x":-3180000000000000000,"y":-198000000000000000,"z":-2650000000000000000}},"30003570":{"solarSystemId":30003570,"solarSystemName":"Y:39NA","location":{"x":-1600000000000000000,"y":215000000000000000,"z":-3020000000000000000}},"30003571":{"solarSystemId":30003571,"solarSystemName":"G:3654","location":{"x":-2320000000000000000,"y":1180000000000000000,"z":-3260000000000000000}},"30003572":{"solarSystemId":30003572,"solarSystemName":"B:2R3K","location":{"x":-2310000000000000000,"y":321000000000000000,"z":-3620000000000000000}},"30003573":{"solarSystemId":30003573,"solarSystemName":"H:3SR7","location":{"x":-1490000000000000000,"y":171000000000000000,"z":-2750000000000000000}},"30003574":{"solarSystemId":30003574,"solarSystemName":"M:45N3","location":{"x":-1560000000000000000,"y":666000000000000000,"z":-2680000000000000000}},"30003575":{"solarSystemId":30003575,"solarSystemName":"D:R3IN","location":{"x":-2170000000000000000,"y":385000000000000000,"z":-2880000000000000000}},"30003576":{"solarSystemId":30003576,"solarSystemName":"M:1SE9","location":{"x":-1220000000000000000,"y":671000000000000000,"z":-3120000000000000000}},"30003577":{"solarSystemId":30003577,"solarSystemName":"B:31E7","location":{"x":-1330000000000000000,"y":907000000000000000,"z":-4120000000000000000}},"30003578":{"solarSystemId":30003578,"solarSystemName":"M:120A","location":{"x":-1850000000000000000,"y":1040000000000000000,"z":-2460000000000000000}},"30003579":{"solarSystemId":30003579,"solarSystemName":"P:2L6A","location":{"x":-1330000000000000000,"y":84800000000000000,"z":-3780000000000000000}},"30003580":{"solarSystemId":30003580,"solarSystemName":"P:2T2I","location":{"x":-2010000000000000000,"y":934000000000000000,"z":-3210000000000000000}},"30003581":{"solarSystemId":30003581,"solarSystemName":"D:2T6L","location":{"x":-1950000000000000000,"y":523000000000000000,"z":-2460000000000000000}},"30003582":{"solarSystemId":30003582,"solarSystemName":"D:2AA9","location":{"x":-1720000000000000000,"y":352000000000000000,"z":-3100000000000000000}},"30003583":{"solarSystemId":30003583,"solarSystemName":"G:36T9","location":{"x":-2060000000000000000,"y":437000000000000000,"z":-2260000000000000000}},"30003584":{"solarSystemId":30003584,"solarSystemName":"M:2NIR","location":{"x":-1310000000000000000,"y":367000000000000000,"z":-3970000000000000000}},"30003585":{"solarSystemId":30003585,"solarSystemName":"G:18TE","location":{"x":-2030000000000000000,"y":776000000000000000,"z":-3190000000000000000}},"30003586":{"solarSystemId":30003586,"solarSystemName":"J:18OK","location":{"x":-2150000000000000000,"y":339000000000000000,"z":-3250000000000000000}},"30003587":{"solarSystemId":30003587,"solarSystemName":"Q:30LK","location":{"x":-3550000000000000000,"y":-985000000000000000,"z":-4680000000000000000}},"30003588":{"solarSystemId":30003588,"solarSystemName":"G:358A","location":{"x":-3070000000000000000,"y":-729000000000000000,"z":-4430000000000000000}},"30003589":{"solarSystemId":30003589,"solarSystemName":"H:1KE5","location":{"x":-3340000000000000000,"y":101000000000000000,"z":-4630000000000000000}},"30003590":{"solarSystemId":30003590,"solarSystemName":"P:2RV4","location":{"x":-3930000000000000000,"y":-269000000000000000,"z":-3870000000000000000}},"30003591":{"solarSystemId":30003591,"solarSystemName":"H:2AKO","location":{"x":-3700000000000000000,"y":-581000000000000000,"z":-5080000000000000000}},"30003592":{"solarSystemId":30003592,"solarSystemName":"Y:1N24","location":{"x":-4420000000000000000,"y":-343000000000000000,"z":-4600000000000000000}},"30003593":{"solarSystemId":30003593,"solarSystemName":"M:20AI","location":{"x":-3650000000000000000,"y":-704000000000000000,"z":-5250000000000000000}},"30003594":{"solarSystemId":30003594,"solarSystemName":"G:1RVA","location":{"x":-4350000000000000000,"y":-43700000000000000,"z":-4390000000000000000}},"30003595":{"solarSystemId":30003595,"solarSystemName":"Z:27S2","location":{"x":-3790000000000000000,"y":101000000000000000,"z":-4420000000000000000}},"30003596":{"solarSystemId":30003596,"solarSystemName":"Y:24KL","location":{"x":-3200000000000000000,"y":300000000000000000,"z":-3910000000000000000}},"30003597":{"solarSystemId":30003597,"solarSystemName":"Q:1A97","location":{"x":-3180000000000000000,"y":-462000000000000000,"z":-3900000000000000000}},"30003598":{"solarSystemId":30003598,"solarSystemName":"D:2VS7","location":{"x":-3840000000000000000,"y":-720000000000000000,"z":-4690000000000000000}},"30003599":{"solarSystemId":30003599,"solarSystemName":"B:3R12","location":{"x":-3320000000000000000,"y":245000000000000000,"z":-4200000000000000000}},"30003600":{"solarSystemId":30003600,"solarSystemName":"J:33EV","location":{"x":-3340000000000000000,"y":69700000000000000,"z":-4560000000000000000}},"30003601":{"solarSystemId":30003601,"solarSystemName":"Q:2R6N","location":{"x":-3080000000000000000,"y":-120000000000000000,"z":-4140000000000000000}},"30003602":{"solarSystemId":30003602,"solarSystemName":"P:3SV7","location":{"x":-3970000000000000000,"y":-683000000000000000,"z":-5150000000000000000}},"30003603":{"solarSystemId":30003603,"solarSystemName":"F:2O75","location":{"x":-4300000000000000000,"y":-383000000000000000,"z":-4850000000000000000}},"30003604":{"solarSystemId":30003604,"solarSystemName":"P:3IKS","location":{"x":-3480000000000000000,"y":-1110000000000000000,"z":-4650000000000000000}},"30003605":{"solarSystemId":30003605,"solarSystemName":"P:17II","location":{"x":-3710000000000000000,"y":-293000000000000000,"z":-4560000000000000000}},"30003606":{"solarSystemId":30003606,"solarSystemName":"U:1OER","location":{"x":-4410000000000000000,"y":-429000000000000000,"z":-4310000000000000000}},"30003607":{"solarSystemId":30003607,"solarSystemName":"J:297I","location":{"x":-4200000000000000000,"y":-360000000000000000,"z":-4720000000000000000}},"30003608":{"solarSystemId":30003608,"solarSystemName":"G:E3RK","location":{"x":-3220000000000000000,"y":-623000000000000000,"z":-4140000000000000000}},"30003609":{"solarSystemId":30003609,"solarSystemName":"Y:30RN","location":{"x":-2130000000000000000,"y":-1220000000000000000,"z":-2520000000000000000}},"30003610":{"solarSystemId":30003610,"solarSystemName":"H:38OI","location":{"x":-2130000000000000000,"y":-957000000000000000,"z":-2660000000000000000}},"30003611":{"solarSystemId":30003611,"solarSystemName":"M:1S9N","location":{"x":-2650000000000000000,"y":-801000000000000000,"z":-3300000000000000000}},"30003612":{"solarSystemId":30003612,"solarSystemName":"Q:2O76","location":{"x":-2890000000000000000,"y":-492000000000000000,"z":-2740000000000000000}},"30003613":{"solarSystemId":30003613,"solarSystemName":"Q:478I","location":{"x":-1420000000000000000,"y":-367000000000000000,"z":-3670000000000000000}},"30003614":{"solarSystemId":30003614,"solarSystemName":"B:3369","location":{"x":-2280000000000000000,"y":-336000000000000000,"z":-3490000000000000000}},"30003615":{"solarSystemId":30003615,"solarSystemName":"F:3ES5","location":{"x":-1790000000000000000,"y":-486000000000000000,"z":-3380000000000000000}},"30003616":{"solarSystemId":30003616,"solarSystemName":"B:1358","location":{"x":-2730000000000000000,"y":-465000000000000000,"z":-2650000000000000000}},"30003617":{"solarSystemId":30003617,"solarSystemName":"Z:VI57","location":{"x":-1970000000000000000,"y":-1250000000000000000,"z":-3360000000000000000}},"30003618":{"solarSystemId":30003618,"solarSystemName":"Y:4RS1","location":{"x":-2990000000000000000,"y":-280000000000000000,"z":-3030000000000000000}},"30003619":{"solarSystemId":30003619,"solarSystemName":"B:1KK8","location":{"x":-1730000000000000000,"y":-1400000000000000000,"z":-2960000000000000000}},"30003620":{"solarSystemId":30003620,"solarSystemName":"M:3IS1","location":{"x":-2530000000000000000,"y":-229000000000000000,"z":-3250000000000000000}},"30003621":{"solarSystemId":30003621,"solarSystemName":"G:3VR3","location":{"x":-2340000000000000000,"y":-589000000000000000,"z":-3170000000000000000}},"30003622":{"solarSystemId":30003622,"solarSystemName":"J:R12R","location":{"x":-2240000000000000000,"y":-818000000000000000,"z":-2220000000000000000}},"30003623":{"solarSystemId":30003623,"solarSystemName":"U:3T4V","location":{"x":-2330000000000000000,"y":-821000000000000000,"z":-3190000000000000000}},"30003624":{"solarSystemId":30003624,"solarSystemName":"U:2OKT","location":{"x":-1880000000000000000,"y":-1680000000000000000,"z":-2680000000000000000}},"30003625":{"solarSystemId":30003625,"solarSystemName":"G:31K2","location":{"x":-1710000000000000000,"y":-301000000000000000,"z":-3500000000000000000}},"30003626":{"solarSystemId":30003626,"solarSystemName":"G:1S7V","location":{"x":-2120000000000000000,"y":-764000000000000000,"z":-2520000000000000000}},"30003627":{"solarSystemId":30003627,"solarSystemName":"J:34L3","location":{"x":-2260000000000000000,"y":-163000000000000000,"z":-3080000000000000000}},"30003628":{"solarSystemId":30003628,"solarSystemName":"G:2RVT","location":{"x":-2790000000000000000,"y":-479000000000000000,"z":-2950000000000000000}},"30003629":{"solarSystemId":30003629,"solarSystemName":"B:3920","location":{"x":-2190000000000000000,"y":-1080000000000000000,"z":-3000000000000000000}},"30003630":{"solarSystemId":30003630,"solarSystemName":"H:381L","location":{"x":-3600000000000000000,"y":330000000000000000,"z":-2420000000000000000}},"30003631":{"solarSystemId":30003631,"solarSystemName":"D:3STR","location":{"x":-3240000000000000000,"y":622000000000000000,"z":-2600000000000000000}},"30003632":{"solarSystemId":30003632,"solarSystemName":"B:3O31","location":{"x":-3520000000000000000,"y":399000000000000000,"z":-2640000000000000000}},"30003633":{"solarSystemId":30003633,"solarSystemName":"U:3N8O","location":{"x":-3090000000000000000,"y":36200000000000000,"z":-2510000000000000000}},"30003634":{"solarSystemId":30003634,"solarSystemName":"H:1229","location":{"x":-3630000000000000000,"y":593000000000000000,"z":-2570000000000000000}},"30003635":{"solarSystemId":30003635,"solarSystemName":"J:1IVA","location":{"x":-2690000000000000000,"y":383000000000000000,"z":-3160000000000000000}},"30003636":{"solarSystemId":30003636,"solarSystemName":"H:25AK","location":{"x":-2460000000000000000,"y":-74900000000000000,"z":-2780000000000000000}},"30003637":{"solarSystemId":30003637,"solarSystemName":"Q:3E63","location":{"x":-2750000000000000000,"y":-3370000000000000,"z":-3120000000000000000}},"30003638":{"solarSystemId":30003638,"solarSystemName":"U:1NNN","location":{"x":-3020000000000000000,"y":17200000000000000,"z":-3240000000000000000}},"30003639":{"solarSystemId":30003639,"solarSystemName":"Q:2NT4","location":{"x":-2180000000000000000,"y":743000000000000000,"z":-2370000000000000000}},"30003640":{"solarSystemId":30003640,"solarSystemName":"J:20T9","location":{"x":-2200000000000000000,"y":512000000000000000,"z":-2120000000000000000}},"30003641":{"solarSystemId":30003641,"solarSystemName":"P:39LE","location":{"x":-2370000000000000000,"y":434000000000000000,"z":-2110000000000000000}},"30003642":{"solarSystemId":30003642,"solarSystemName":"F:3AR5","location":{"x":-2580000000000000000,"y":283000000000000000,"z":-2440000000000000000}},"30003643":{"solarSystemId":30003643,"solarSystemName":"Z:2V9T","location":{"x":-2950000000000000000,"y":-311000000000000000,"z":-2470000000000000000}},"30003644":{"solarSystemId":30003644,"solarSystemName":"Z:22N1","location":{"x":-2540000000000000000,"y":1030000000000000000,"z":-2930000000000000000}},"30003645":{"solarSystemId":30003645,"solarSystemName":"Q:2REA","location":{"x":-2800000000000000000,"y":946000000000000000,"z":-2500000000000000000}},"30003646":{"solarSystemId":30003646,"solarSystemName":"Q:3176","location":{"x":-2920000000000000000,"y":423000000000000000,"z":-2500000000000000000}},"30003647":{"solarSystemId":30003647,"solarSystemName":"J:1OII","location":{"x":-2930000000000000000,"y":267000000000000000,"z":-2300000000000000000}},"30003648":{"solarSystemId":30003648,"solarSystemName":"P:2KS0","location":{"x":-3230000000000000000,"y":166000000000000000,"z":-2810000000000000000}},"30003649":{"solarSystemId":30003649,"solarSystemName":"G:3E0T","location":{"x":-4320000000000000000,"y":-588000000000000000,"z":-2040000000000000000}},"30003650":{"solarSystemId":30003650,"solarSystemName":"G:3364","location":{"x":-3980000000000000000,"y":-1330000000000000000,"z":-2410000000000000000}},"30003651":{"solarSystemId":30003651,"solarSystemName":"M:2LV6","location":{"x":-3910000000000000000,"y":-1290000000000000000,"z":-1870000000000000000}},"30003652":{"solarSystemId":30003652,"solarSystemName":"G:2A4O","location":{"x":-4320000000000000000,"y":-904000000000000000,"z":-1790000000000000000}},"30003653":{"solarSystemId":30003653,"solarSystemName":"Q:3728","location":{"x":-3880000000000000000,"y":-839000000000000000,"z":-1470000000000000000}},"30003654":{"solarSystemId":30003654,"solarSystemName":"M:2TIS","location":{"x":-3700000000000000000,"y":-1560000000000000000,"z":-2340000000000000000}},"30003655":{"solarSystemId":30003655,"solarSystemName":"Y:394V","location":{"x":-4340000000000000000,"y":-1060000000000000000,"z":-2310000000000000000}},"30003656":{"solarSystemId":30003656,"solarSystemName":"P:3T20","location":{"x":-3590000000000000000,"y":-872000000000000000,"z":-1660000000000000000}},"30003657":{"solarSystemId":30003657,"solarSystemName":"Y:2A50","location":{"x":-3780000000000000000,"y":-977000000000000000,"z":-1640000000000000000}},"30003658":{"solarSystemId":30003658,"solarSystemName":"B:1L8S","location":{"x":-4150000000000000000,"y":-1190000000000000000,"z":-2600000000000000000}},"30003659":{"solarSystemId":30003659,"solarSystemName":"D:1LVE","location":{"x":-4290000000000000000,"y":-1660000000000000000,"z":-2610000000000000000}},"30003660":{"solarSystemId":30003660,"solarSystemName":"Y:319E","location":{"x":-4370000000000000000,"y":-784000000000000000,"z":-2630000000000000000}},"30003661":{"solarSystemId":30003661,"solarSystemName":"D:3999","location":{"x":-4420000000000000000,"y":-1030000000000000000,"z":-1760000000000000000}},"30003662":{"solarSystemId":30003662,"solarSystemName":"B:33RT","location":{"x":-3510000000000000000,"y":-1620000000000000000,"z":-1740000000000000000}},"30003663":{"solarSystemId":30003663,"solarSystemName":"Y:3TIT","location":{"x":-4670000000000000000,"y":-1320000000000000000,"z":-2890000000000000000}},"30003664":{"solarSystemId":30003664,"solarSystemName":"H:2TR0","location":{"x":-4440000000000000000,"y":-1680000000000000000,"z":-3120000000000000000}},"30003665":{"solarSystemId":30003665,"solarSystemName":"F:3871","location":{"x":-3420000000000000000,"y":-1590000000000000000,"z":-2050000000000000000}},"30003666":{"solarSystemId":30003666,"solarSystemName":"Z:3R41","location":{"x":-4120000000000000000,"y":-1430000000000000000,"z":-1740000000000000000}},"30003667":{"solarSystemId":30003667,"solarSystemName":"J:2KK8","location":{"x":-4060000000000000000,"y":-1450000000000000000,"z":-1770000000000000000}},"30003668":{"solarSystemId":30003668,"solarSystemName":"Z:3OE5","location":{"x":-4280000000000000000,"y":604000000000000000,"z":-3690000000000000000}},"30003669":{"solarSystemId":30003669,"solarSystemName":"F:30VV","location":{"x":-4070000000000000000,"y":263000000000000000,"z":-2940000000000000000}},"30003670":{"solarSystemId":30003670,"solarSystemName":"B:32OO","location":{"x":-4610000000000000000,"y":148000000000000000,"z":-4570000000000000000}},"30003671":{"solarSystemId":30003671,"solarSystemName":"Y:127T","location":{"x":-3520000000000000000,"y":86500000000000000,"z":-3730000000000000000}},"30003672":{"solarSystemId":30003672,"solarSystemName":"P:210E","location":{"x":-3020000000000000000,"y":-37600000000000000,"z":-3680000000000000000}},"30003673":{"solarSystemId":30003673,"solarSystemName":"U:3I1O","location":{"x":-4260000000000000000,"y":598000000000000000,"z":-2760000000000000000}},"30003674":{"solarSystemId":30003674,"solarSystemName":"G:218I","location":{"x":-4140000000000000000,"y":1110000000000000000,"z":-4320000000000000000}},"30003675":{"solarSystemId":30003675,"solarSystemName":"J:2161","location":{"x":-3760000000000000000,"y":-47800000000000000,"z":-3500000000000000000}},"30003676":{"solarSystemId":30003676,"solarSystemName":"Z:ALTN","location":{"x":-3840000000000000000,"y":922000000000000000,"z":-3560000000000000000}},"30003677":{"solarSystemId":30003677,"solarSystemName":"D:19RN","location":{"x":-3400000000000000000,"y":50400000000000000,"z":-3680000000000000000}},"30003678":{"solarSystemId":30003678,"solarSystemName":"D:2K23","location":{"x":-3770000000000000000,"y":1020000000000000000,"z":-2880000000000000000}},"30003679":{"solarSystemId":30003679,"solarSystemName":"U:3V56","location":{"x":-3350000000000000000,"y":528000000000000000,"z":-3280000000000000000}},"30003680":{"solarSystemId":30003680,"solarSystemName":"G:2TER","location":{"x":-4750000000000000000,"y":905000000000000000,"z":-4160000000000000000}},"30003681":{"solarSystemId":30003681,"solarSystemName":"G:3984","location":{"x":-4420000000000000000,"y":761000000000000000,"z":-2720000000000000000}},"30003682":{"solarSystemId":30003682,"solarSystemName":"P:2V52","location":{"x":-4410000000000000000,"y":1040000000000000000,"z":-3660000000000000000}},"30003683":{"solarSystemId":30003683,"solarSystemName":"U:3442","location":{"x":-4280000000000000000,"y":700000000000000000,"z":-4010000000000000000}},"30003684":{"solarSystemId":30003684,"solarSystemName":"Z:13LE","location":{"x":-4310000000000000000,"y":-21500000000000000,"z":-3980000000000000000}},"30003685":{"solarSystemId":30003685,"solarSystemName":"Y:228S","location":{"x":-3620000000000000000,"y":427000000000000000,"z":-3460000000000000000}},"30003686":{"solarSystemId":30003686,"solarSystemName":"D:KOK5","location":{"x":-3600000000000000000,"y":99400000000000000,"z":-3490000000000000000}},"30003687":{"solarSystemId":30003687,"solarSystemName":"M:2R35","location":{"x":-1910000000000000000,"y":-568000000000000000,"z":-3920000000000000000}},"30003688":{"solarSystemId":30003688,"solarSystemName":"P:2O10","location":{"x":-2420000000000000000,"y":-455000000000000000,"z":-4520000000000000000}},"30003689":{"solarSystemId":30003689,"solarSystemName":"F:25VO","location":{"x":-2200000000000000000,"y":-998000000000000000,"z":-5810000000000000000}},"30003690":{"solarSystemId":30003690,"solarSystemName":"Y:SRR9","location":{"x":-2000000000000000000,"y":-1410000000000000000,"z":-4730000000000000000}},"30003691":{"solarSystemId":30003691,"solarSystemName":"Y:3R93","location":{"x":-1070000000000000000,"y":115000000000000000,"z":-4830000000000000000}},"30003692":{"solarSystemId":30003692,"solarSystemName":"U:3551","location":{"x":-2030000000000000000,"y":-903000000000000000,"z":-5290000000000000000}},"30003693":{"solarSystemId":30003693,"solarSystemName":"Z:208T","location":{"x":-2170000000000000000,"y":-903000000000000000,"z":-4550000000000000000}},"30003694":{"solarSystemId":30003694,"solarSystemName":"J:4IVE","location":{"x":-2300000000000000000,"y":-1140000000000000000,"z":-4740000000000000000}},"30003695":{"solarSystemId":30003695,"solarSystemName":"D:34KS","location":{"x":-1560000000000000000,"y":42900000000000000,"z":-5510000000000000000}},"30003696":{"solarSystemId":30003696,"solarSystemName":"P:2300","location":{"x":-1190000000000000000,"y":-272000000000000000,"z":-4650000000000000000}},"30003697":{"solarSystemId":30003697,"solarSystemName":"P:1L35","location":{"x":-2590000000000000000,"y":-868000000000000000,"z":-4540000000000000000}},"30003698":{"solarSystemId":30003698,"solarSystemName":"B:EV49","location":{"x":-1360000000000000000,"y":-337000000000000000,"z":-5300000000000000000}},"30003699":{"solarSystemId":30003699,"solarSystemName":"B:300S","location":{"x":-1930000000000000000,"y":-462000000000000000,"z":-4680000000000000000}},"30003700":{"solarSystemId":30003700,"solarSystemName":"P:1EAS","location":{"x":-2860000000000000000,"y":-859000000000000000,"z":-4780000000000000000}},"30003701":{"solarSystemId":30003701,"solarSystemName":"Z:31V1","location":{"x":-1660000000000000000,"y":41100000000000000,"z":-5080000000000000000}},"30003702":{"solarSystemId":30003702,"solarSystemName":"B:I0N2","location":{"x":-2550000000000000000,"y":-744000000000000000,"z":-4230000000000000000}},"30003703":{"solarSystemId":30003703,"solarSystemName":"Z:E81R","location":{"x":-1820000000000000000,"y":-274000000000000000,"z":-4430000000000000000}},"30003704":{"solarSystemId":30003704,"solarSystemName":"P:2V6R","location":{"x":-1480000000000000000,"y":21400000000000000,"z":-4370000000000000000}},"30003705":{"solarSystemId":30003705,"solarSystemName":"H:39SN","location":{"x":-2740000000000000000,"y":-875000000000000000,"z":-5420000000000000000}},"30003706":{"solarSystemId":30003706,"solarSystemName":"J:20E7","location":{"x":-2820000000000000000,"y":-473000000000000000,"z":-4450000000000000000}},"30003707":{"solarSystemId":30003707,"solarSystemName":"B:3IIO","location":{"x":1120000000000000000,"y":-3100000000000000000,"z":4940000000000000000}},"30003708":{"solarSystemId":30003708,"solarSystemName":"U:3E3E","location":{"x":1050000000000000000,"y":-3310000000000000000,"z":4910000000000000000}},"30003709":{"solarSystemId":30003709,"solarSystemName":"Y:1E20","location":{"x":1620000000000000000,"y":-1770000000000000000,"z":4040000000000000000}},"30003710":{"solarSystemId":30003710,"solarSystemName":"F:2EEN","location":{"x":1450000000000000000,"y":-1680000000000000000,"z":4520000000000000000}},"30003711":{"solarSystemId":30003711,"solarSystemName":"F:1728","location":{"x":1690000000000000000,"y":-2520000000000000000,"z":4730000000000000000}},"30003712":{"solarSystemId":30003712,"solarSystemName":"Q:2E00","location":{"x":720000000000000000,"y":-2470000000000000000,"z":4700000000000000000}},"30003713":{"solarSystemId":30003713,"solarSystemName":"J:2658","location":{"x":1650000000000000000,"y":-1700000000000000000,"z":4230000000000000000}},"30003714":{"solarSystemId":30003714,"solarSystemName":"F:3R5K","location":{"x":2200000000000000000,"y":-2110000000000000000,"z":5440000000000000000}},"30003715":{"solarSystemId":30003715,"solarSystemName":"F:26E0","location":{"x":2010000000000000000,"y":-1760000000000000000,"z":5280000000000000000}},"30003716":{"solarSystemId":30003716,"solarSystemName":"J:1I70","location":{"x":1070000000000000000,"y":-2080000000000000000,"z":4150000000000000000}},"30003717":{"solarSystemId":30003717,"solarSystemName":"B:1LNR","location":{"x":2600000000000000000,"y":-2000000000000000000,"z":4790000000000000000}},"30003718":{"solarSystemId":30003718,"solarSystemName":"B:3TL8","location":{"x":2130000000000000000,"y":-1780000000000000000,"z":5580000000000000000}},"30003719":{"solarSystemId":30003719,"solarSystemName":"H:2AOL","location":{"x":2860000000000000000,"y":-2310000000000000000,"z":4780000000000000000}},"30003720":{"solarSystemId":30003720,"solarSystemName":"F:2T1S","location":{"x":80000000000000000,"y":-2970000000000000000,"z":5650000000000000000}},"30003721":{"solarSystemId":30003721,"solarSystemName":"M:3AE2","location":{"x":77200000000000000,"y":-2850000000000000000,"z":5230000000000000000}},"30003722":{"solarSystemId":30003722,"solarSystemName":"Z:2OAE","location":{"x":642000000000000000,"y":-3100000000000000000,"z":4700000000000000000}},"30003723":{"solarSystemId":30003723,"solarSystemName":"J:3634","location":{"x":379000000000000000,"y":-3130000000000000000,"z":5410000000000000000}},"30003724":{"solarSystemId":30003724,"solarSystemName":"D:3186","location":{"x":276000000000000000,"y":-3360000000000000000,"z":5000000000000000000}},"30003725":{"solarSystemId":30003725,"solarSystemName":"H:34VI","location":{"x":344000000000000000,"y":-3380000000000000000,"z":5990000000000000000}},"30003726":{"solarSystemId":30003726,"solarSystemName":"H:2I38","location":{"x":917000000000000000,"y":-3630000000000000000,"z":5360000000000000000}},"30003727":{"solarSystemId":30003727,"solarSystemName":"D:3AV8","location":{"x":1340000000000000000,"y":-3440000000000000000,"z":5410000000000000000}},"30003728":{"solarSystemId":30003728,"solarSystemName":"Q:1ETT","location":{"x":358000000000000000,"y":-2280000000000000000,"z":5610000000000000000}},"30003729":{"solarSystemId":30003729,"solarSystemName":"Q:342A","location":{"x":1570000000000000000,"y":-3100000000000000000,"z":8000000000000000000}},"30003730":{"solarSystemId":30003730,"solarSystemName":"B:3AE6","location":{"x":581000000000000000,"y":-3470000000000000000,"z":7890000000000000000}},"30003731":{"solarSystemId":30003731,"solarSystemName":"Q:TVL8","location":{"x":1360000000000000000,"y":-1600000000000000000,"z":7380000000000000000}},"30003732":{"solarSystemId":30003732,"solarSystemName":"U:3S1V","location":{"x":1380000000000000000,"y":-1560000000000000000,"z":7450000000000000000}},"30003733":{"solarSystemId":30003733,"solarSystemName":"H:35ER","location":{"x":2630000000000000000,"y":-2250000000000000000,"z":8860000000000000000}},"30003734":{"solarSystemId":30003734,"solarSystemName":"M:1RO1","location":{"x":2770000000000000000,"y":-2530000000000000000,"z":6410000000000000000}},"30003735":{"solarSystemId":30003735,"solarSystemName":"P:230A","location":{"x":2370000000000000000,"y":-1960000000000000000,"z":8520000000000000000}},"30003736":{"solarSystemId":30003736,"solarSystemName":"P:2LSO","location":{"x":1370000000000000000,"y":-1710000000000000000,"z":7480000000000000000}},"30003737":{"solarSystemId":30003737,"solarSystemName":"P:2TTN","location":{"x":834000000000000000,"y":-2030000000000000000,"z":7140000000000000000}},"30003738":{"solarSystemId":30003738,"solarSystemName":"H:N9TK","location":{"x":2550000000000000000,"y":-2300000000000000000,"z":8710000000000000000}},"30003739":{"solarSystemId":30003739,"solarSystemName":"H:3025","location":{"x":2320000000000000000,"y":-3100000000000000000,"z":6760000000000000000}},"30003740":{"solarSystemId":30003740,"solarSystemName":"U:2R8A","location":{"x":110000000000000000,"y":-1940000000000000000,"z":3730000000000000000}},"30003741":{"solarSystemId":30003741,"solarSystemName":"Y:2RE6","location":{"x":587000000000000000,"y":-1800000000000000000,"z":3710000000000000000}},"30003742":{"solarSystemId":30003742,"solarSystemName":"M:23O7","location":{"x":1110000000000000000,"y":-1310000000000000000,"z":4170000000000000000}},"30003743":{"solarSystemId":30003743,"solarSystemName":"J:1O13","location":{"x":1520000000000000000,"y":-1290000000000000000,"z":4950000000000000000}},"30003744":{"solarSystemId":30003744,"solarSystemName":"J:15A8","location":{"x":822000000000000000,"y":-1720000000000000000,"z":3740000000000000000}},"30003745":{"solarSystemId":30003745,"solarSystemName":"B:123T","location":{"x":862000000000000000,"y":-1380000000000000000,"z":4360000000000000000}},"30003746":{"solarSystemId":30003746,"solarSystemName":"D:1KRA","location":{"x":684000000000000000,"y":-1790000000000000000,"z":5250000000000000000}},"30003747":{"solarSystemId":30003747,"solarSystemName":"B:22O3","location":{"x":934000000000000000,"y":-1520000000000000000,"z":4880000000000000000}},"30003748":{"solarSystemId":30003748,"solarSystemName":"G:33V4","location":{"x":162000000000000000,"y":-2260000000000000000,"z":3850000000000000000}},"30003749":{"solarSystemId":30003749,"solarSystemName":"Y:2IS6","location":{"x":-10300000000000000,"y":-1930000000000000000,"z":3940000000000000000}},"30003750":{"solarSystemId":30003750,"solarSystemName":"H:29N4","location":{"x":683000000000000000,"y":-1230000000000000000,"z":3730000000000000000}},"30003751":{"solarSystemId":30003751,"solarSystemName":"J:355L","location":{"x":819000000000000000,"y":-1290000000000000000,"z":5190000000000000000}},"30003752":{"solarSystemId":30003752,"solarSystemName":"J:40OL","location":{"x":286000000000000000,"y":-1860000000000000000,"z":4260000000000000000}},"30003753":{"solarSystemId":30003753,"solarSystemName":"P:253L","location":{"x":1110000000000000000,"y":-1200000000000000000,"z":4540000000000000000}},"30003754":{"solarSystemId":30003754,"solarSystemName":"F:1790","location":{"x":1360000000000000000,"y":-1160000000000000000,"z":4590000000000000000}},"30003755":{"solarSystemId":30003755,"solarSystemName":"Y:26V3","location":{"x":739000000000000000,"y":-1940000000000000000,"z":5600000000000000000}},"30003756":{"solarSystemId":30003756,"solarSystemName":"Z:TO92","location":{"x":679000000000000000,"y":-1510000000000000000,"z":4600000000000000000}},"30003757":{"solarSystemId":30003757,"solarSystemName":"J:1877","location":{"x":1260000000000000000,"y":-1210000000000000000,"z":3910000000000000000}},"30003758":{"solarSystemId":30003758,"solarSystemName":"Z:3T04","location":{"x":-1120000000000000000,"y":-1070000000000000000,"z":6950000000000000000}},"30003759":{"solarSystemId":30003759,"solarSystemName":"U:3IS4","location":{"x":-917000000000000000,"y":-1080000000000000000,"z":6850000000000000000}},"30003760":{"solarSystemId":30003760,"solarSystemName":"U:1IA6","location":{"x":74400000000000000,"y":-1050000000000000000,"z":6480000000000000000}},"30003761":{"solarSystemId":30003761,"solarSystemName":"Z:OTN6","location":{"x":-1030000000000000000,"y":-1510000000000000000,"z":6920000000000000000}},"30003762":{"solarSystemId":30003762,"solarSystemName":"G:31E3","location":{"x":-839000000000000000,"y":-1340000000000000000,"z":6940000000000000000}},"30003763":{"solarSystemId":30003763,"solarSystemName":"F:1N27","location":{"x":-186000000000000000,"y":-1310000000000000000,"z":6250000000000000000}},"30003764":{"solarSystemId":30003764,"solarSystemName":"F:270A","location":{"x":90500000000000000,"y":-1360000000000000000,"z":6440000000000000000}},"30003765":{"solarSystemId":30003765,"solarSystemName":"P:1REK","location":{"x":-803000000000000000,"y":-678000000000000000,"z":6130000000000000000}},"30003766":{"solarSystemId":30003766,"solarSystemName":"U:29E2","location":{"x":-593000000000000000,"y":-558000000000000000,"z":6610000000000000000}},"30003767":{"solarSystemId":30003767,"solarSystemName":"B:2NV4","location":{"x":-522000000000000000,"y":-378000000000000000,"z":6990000000000000000}},"30003768":{"solarSystemId":30003768,"solarSystemName":"Z:2A89","location":{"x":-672000000000000000,"y":-1400000000000000000,"z":6160000000000000000}},"30003769":{"solarSystemId":30003769,"solarSystemName":"J:1TS9","location":{"x":-946000000000000000,"y":-375000000000000000,"z":6860000000000000000}},"30003770":{"solarSystemId":30003770,"solarSystemName":"P:3858","location":{"x":124000000000000000,"y":33400000000000000,"z":6350000000000000000}},"30003771":{"solarSystemId":30003771,"solarSystemName":"G:2876","location":{"x":-393000000000000000,"y":-1360000000000000000,"z":6190000000000000000}},"30003772":{"solarSystemId":30003772,"solarSystemName":"G:2VN3","location":{"x":-1210000000000000000,"y":-696000000000000000,"z":7200000000000000000}},"30003773":{"solarSystemId":30003773,"solarSystemName":"U:VKVI","location":{"x":-631000000000000000,"y":-1110000000000000000,"z":6810000000000000000}},"30003774":{"solarSystemId":30003774,"solarSystemName":"D:2A75","location":{"x":-424000000000000000,"y":-641000000000000000,"z":6150000000000000000}},"30003775":{"solarSystemId":30003775,"solarSystemName":"B:329E","location":{"x":-213000000000000000,"y":-1540000000000000000,"z":5750000000000000000}},"30003776":{"solarSystemId":30003776,"solarSystemName":"J:186V","location":{"x":-874000000000000000,"y":-719000000000000000,"z":5420000000000000000}},"30003777":{"solarSystemId":30003777,"solarSystemName":"G:1N7O","location":{"x":-154000000000000000,"y":-781000000000000000,"z":5440000000000000000}},"30003778":{"solarSystemId":30003778,"solarSystemName":"J:1EEK","location":{"x":-343000000000000000,"y":-935000000000000000,"z":6140000000000000000}},"30003779":{"solarSystemId":30003779,"solarSystemName":"P:3I4T","location":{"x":169000000000000000,"y":-1230000000000000000,"z":5010000000000000000}},"30003780":{"solarSystemId":30003780,"solarSystemName":"Q:1A04","location":{"x":316000000000000000,"y":-803000000000000000,"z":4980000000000000000}},"30003781":{"solarSystemId":30003781,"solarSystemName":"J:3IV5","location":{"x":-268000000000000000,"y":-745000000000000000,"z":5200000000000000000}},"30003782":{"solarSystemId":30003782,"solarSystemName":"G:2LL0","location":{"x":-493000000000000000,"y":-875000000000000000,"z":6080000000000000000}},"30003783":{"solarSystemId":30003783,"solarSystemName":"Q:2ONO","location":{"x":-82400000000000000,"y":-710000000000000000,"z":5080000000000000000}},"30003784":{"solarSystemId":30003784,"solarSystemName":"M:1ORL","location":{"x":22800000000000000,"y":-1310000000000000000,"z":5960000000000000000}},"30003785":{"solarSystemId":30003785,"solarSystemName":"J:2LV9","location":{"x":135000000000000000,"y":-1240000000000000000,"z":5050000000000000000}},"30003786":{"solarSystemId":30003786,"solarSystemName":"Q:37O6","location":{"x":-546000000000000000,"y":-1170000000000000000,"z":5310000000000000000}},"30003787":{"solarSystemId":30003787,"solarSystemName":"P:3T47","location":{"x":638000000000000000,"y":-1490000000000000000,"z":5720000000000000000}},"30003788":{"solarSystemId":30003788,"solarSystemName":"Q:25LV","location":{"x":412000000000000000,"y":-1150000000000000000,"z":5930000000000000000}},"30003789":{"solarSystemId":30003789,"solarSystemName":"U:1VRE","location":{"x":663000000000000000,"y":-990000000000000000,"z":5570000000000000000}},"30003790":{"solarSystemId":30003790,"solarSystemName":"Z:3VI6","location":{"x":-1660000000000000000,"y":-3420000000000000000,"z":5650000000000000000}},"30003791":{"solarSystemId":30003791,"solarSystemName":"Q:2LT3","location":{"x":-201000000000000000,"y":-3770000000000000000,"z":6330000000000000000}},"30003792":{"solarSystemId":30003792,"solarSystemName":"J:LKE5","location":{"x":-1050000000000000000,"y":-2480000000000000000,"z":5290000000000000000}},"30003793":{"solarSystemId":30003793,"solarSystemName":"Z:1EK0","location":{"x":396000000000000000,"y":-2520000000000000000,"z":6210000000000000000}},"30003794":{"solarSystemId":30003794,"solarSystemName":"U:2V60","location":{"x":-1070000000000000000,"y":-2820000000000000000,"z":6400000000000000000}},"30003795":{"solarSystemId":30003795,"solarSystemName":"Y:3A4A","location":{"x":-2190000000000000000,"y":-2960000000000000000,"z":6000000000000000000}},"30003796":{"solarSystemId":30003796,"solarSystemName":"D:3TN1","location":{"x":-915000000000000000,"y":-3310000000000000000,"z":5660000000000000000}},"30003797":{"solarSystemId":30003797,"solarSystemName":"P:3477","location":{"x":-1660000000000000000,"y":-2390000000000000000,"z":6210000000000000000}},"30003798":{"solarSystemId":30003798,"solarSystemName":"Y:2S5N","location":{"x":-1830000000000000000,"y":-2060000000000000000,"z":6420000000000000000}},"30003799":{"solarSystemId":30003799,"solarSystemName":"G:33A6","location":{"x":-449000000000000000,"y":-2510000000000000000,"z":5740000000000000000}},"30003800":{"solarSystemId":30003800,"solarSystemName":"U:1483","location":{"x":-135000000000000000,"y":-2230000000000000000,"z":6080000000000000000}},"30003801":{"solarSystemId":30003801,"solarSystemName":"J:37S2","location":{"x":-837000000000000000,"y":-1800000000000000000,"z":5990000000000000000}},"30003802":{"solarSystemId":30003802,"solarSystemName":"Y:2T74","location":{"x":1120000000000000000,"y":-1720000000000000000,"z":6040000000000000000}},"30003803":{"solarSystemId":30003803,"solarSystemName":"Z:2E4I","location":{"x":249000000000000000,"y":-1750000000000000000,"z":6480000000000000000}},"30003804":{"solarSystemId":30003804,"solarSystemName":"G:1VI8","location":{"x":863000000000000000,"y":-1520000000000000000,"z":6470000000000000000}},"30003805":{"solarSystemId":30003805,"solarSystemName":"D:1NR4","location":{"x":1440000000000000000,"y":-1830000000000000000,"z":5990000000000000000}},"30003806":{"solarSystemId":30003806,"solarSystemName":"F:22VA","location":{"x":926000000000000000,"y":-1460000000000000000,"z":7010000000000000000}},"30003807":{"solarSystemId":30003807,"solarSystemName":"G:2K4O","location":{"x":1120000000000000000,"y":-1570000000000000000,"z":7260000000000000000}},"30003808":{"solarSystemId":30003808,"solarSystemName":"Y:311T","location":{"x":848000000000000000,"y":-1340000000000000000,"z":6460000000000000000}},"30003809":{"solarSystemId":30003809,"solarSystemName":"U:2290","location":{"x":1260000000000000000,"y":-1370000000000000000,"z":6580000000000000000}},"30003810":{"solarSystemId":30003810,"solarSystemName":"J:199T","location":{"x":543000000000000000,"y":-1810000000000000000,"z":6160000000000000000}},"30003811":{"solarSystemId":30003811,"solarSystemName":"M:1LA2","location":{"x":812000000000000000,"y":-1160000000000000000,"z":6620000000000000000}},"30003812":{"solarSystemId":30003812,"solarSystemName":"U:24R9","location":{"x":1070000000000000000,"y":-1580000000000000000,"z":7250000000000000000}},"30003813":{"solarSystemId":30003813,"solarSystemName":"Q:27V2","location":{"x":990000000000000000,"y":-1180000000000000000,"z":6850000000000000000}},"30003814":{"solarSystemId":30003814,"solarSystemName":"D:1RL1","location":{"x":1390000000000000000,"y":-1610000000000000000,"z":7210000000000000000}},"30003815":{"solarSystemId":30003815,"solarSystemName":"U:3RVV","location":{"x":1340000000000000000,"y":-453000000000000000,"z":7070000000000000000}},"30003816":{"solarSystemId":30003816,"solarSystemName":"D:3VTS","location":{"x":116000000000000000,"y":96500000000000000,"z":7400000000000000000}},"30003817":{"solarSystemId":30003817,"solarSystemName":"J:2927","location":{"x":278000000000000000,"y":159000000000000000,"z":5700000000000000000}},"30003818":{"solarSystemId":30003818,"solarSystemName":"U:19RV","location":{"x":105000000000000000,"y":354000000000000000,"z":6790000000000000000}},"30003819":{"solarSystemId":30003819,"solarSystemName":"B:11TI","location":{"x":307000000000000000,"y":46100000000000000,"z":5940000000000000000}},"30003820":{"solarSystemId":30003820,"solarSystemName":"Y:NS9N","location":{"x":548000000000000000,"y":394000000000000000,"z":5950000000000000000}},"30003821":{"solarSystemId":30003821,"solarSystemName":"U:TR8K","location":{"x":761000000000000000,"y":282000000000000000,"z":7140000000000000000}},"30003822":{"solarSystemId":30003822,"solarSystemName":"U:1983","location":{"x":289000000000000000,"y":444000000000000000,"z":6430000000000000000}},"30003823":{"solarSystemId":30003823,"solarSystemName":"F:1ITI","location":{"x":443000000000000000,"y":310000000000000000,"z":6260000000000000000}},"30003824":{"solarSystemId":30003824,"solarSystemName":"H:3OOK","location":{"x":685000000000000000,"y":1170000000000000000,"z":6400000000000000000}},"30003825":{"solarSystemId":30003825,"solarSystemName":"Z:3703","location":{"x":439000000000000000,"y":1700000000000000000,"z":6980000000000000000}},"30003826":{"solarSystemId":30003826,"solarSystemName":"P:2A9L","location":{"x":679000000000000000,"y":201000000000000000,"z":6140000000000000000}},"30003827":{"solarSystemId":30003827,"solarSystemName":"J:37I9","location":{"x":270000000000000000,"y":890000000000000000,"z":7100000000000000000}},"30003828":{"solarSystemId":30003828,"solarSystemName":"Q:3R51","location":{"x":1040000000000000000,"y":-829000000000000000,"z":6010000000000000000}},"30003829":{"solarSystemId":30003829,"solarSystemName":"Q:1O71","location":{"x":1180000000000000000,"y":-895000000000000000,"z":6600000000000000000}},"30003830":{"solarSystemId":30003830,"solarSystemName":"F:16KK","location":{"x":437000000000000000,"y":-1150000000000000000,"z":6050000000000000000}},"30003831":{"solarSystemId":30003831,"solarSystemName":"U:3O6L","location":{"x":366000000000000000,"y":-726000000000000000,"z":6630000000000000000}},"30003832":{"solarSystemId":30003832,"solarSystemName":"B:2TAE","location":{"x":-3200000000000000000,"y":-1370000000000000000,"z":-901000000000000000}},"30003833":{"solarSystemId":30003833,"solarSystemName":"Q:3RT6","location":{"x":-3710000000000000000,"y":-1680000000000000000,"z":-567000000000000000}},"30003834":{"solarSystemId":30003834,"solarSystemName":"F:2AER","location":{"x":-3760000000000000000,"y":-2020000000000000000,"z":-692000000000000000}},"30003835":{"solarSystemId":30003835,"solarSystemName":"U:3282","location":{"x":-2870000000000000000,"y":-1730000000000000000,"z":-266000000000000000}},"30003836":{"solarSystemId":30003836,"solarSystemName":"Q:3N80","location":{"x":-4260000000000000000,"y":-2020000000000000000,"z":-684000000000000000}},"30003837":{"solarSystemId":30003837,"solarSystemName":"P:35SK","location":{"x":-3660000000000000000,"y":-1660000000000000000,"z":-450000000000000000}},"30003838":{"solarSystemId":30003838,"solarSystemName":"P:3O7I","location":{"x":-3300000000000000000,"y":-1610000000000000000,"z":-432000000000000000}},"30003839":{"solarSystemId":30003839,"solarSystemName":"M:3S64","location":{"x":-3900000000000000000,"y":-2050000000000000000,"z":-1010000000000000000}},"30003840":{"solarSystemId":30003840,"solarSystemName":"D:2TV5","location":{"x":-3790000000000000000,"y":-928000000000000000,"z":-733000000000000000}},"30003841":{"solarSystemId":30003841,"solarSystemName":"Q:2KOV","location":{"x":-3850000000000000000,"y":-990000000000000000,"z":-306000000000000000}},"30003842":{"solarSystemId":30003842,"solarSystemName":"M:2T8N","location":{"x":-3610000000000000000,"y":-1320000000000000000,"z":-371000000000000000}},"30003843":{"solarSystemId":30003843,"solarSystemName":"H:1LK1","location":{"x":-3590000000000000000,"y":-969000000000000000,"z":-594000000000000000}},"30003844":{"solarSystemId":30003844,"solarSystemName":"D:35S4","location":{"x":-4280000000000000000,"y":-1950000000000000000,"z":-509000000000000000}},"30003845":{"solarSystemId":30003845,"solarSystemName":"M:291R","location":{"x":-3630000000000000000,"y":-971000000000000000,"z":-595000000000000000}},"30003846":{"solarSystemId":30003846,"solarSystemName":"M:3I47","location":{"x":-3530000000000000000,"y":-1060000000000000000,"z":-696000000000000000}},"30003847":{"solarSystemId":30003847,"solarSystemName":"F:3817","location":{"x":-3210000000000000000,"y":-1240000000000000000,"z":-613000000000000000}},"30003848":{"solarSystemId":30003848,"solarSystemName":"B:3183","location":{"x":-3210000000000000000,"y":-1640000000000000000,"z":-419000000000000000}},"30003849":{"solarSystemId":30003849,"solarSystemName":"H:357T","location":{"x":-3680000000000000000,"y":-1420000000000000000,"z":-503000000000000000}},"30003850":{"solarSystemId":30003850,"solarSystemName":"H:38KK","location":{"x":-3560000000000000000,"y":-848000000000000000,"z":-495000000000000000}},"30003851":{"solarSystemId":30003851,"solarSystemName":"Q:30NT","location":{"x":-3690000000000000000,"y":-1070000000000000000,"z":-410000000000000000}},"30003852":{"solarSystemId":30003852,"solarSystemName":"J:371K","location":{"x":-4750000000000000000,"y":-148000000000000000,"z":-112000000000000000}},"30003853":{"solarSystemId":30003853,"solarSystemName":"Z:3AES","location":{"x":-5050000000000000000,"y":408000000000000000,"z":355000000000000000}},"30003854":{"solarSystemId":30003854,"solarSystemName":"U:303K","location":{"x":-4970000000000000000,"y":-355000000000000000,"z":91800000000000000}},"30003855":{"solarSystemId":30003855,"solarSystemName":"Y:3S34","location":{"x":-5020000000000000000,"y":-64700000000000000,"z":-244000000000000000}},"30003856":{"solarSystemId":30003856,"solarSystemName":"G:2IAK","location":{"x":-4910000000000000000,"y":196000000000000000,"z":241000000000000000}},"30003857":{"solarSystemId":30003857,"solarSystemName":"J:2TL0","location":{"x":-4580000000000000000,"y":124000000000000000,"z":-201000000000000000}},"30003858":{"solarSystemId":30003858,"solarSystemName":"Z:1ET2","location":{"x":-5030000000000000000,"y":-156000000000000000,"z":124000000000000000}},"30003859":{"solarSystemId":30003859,"solarSystemName":"F:26K3","location":{"x":-4860000000000000000,"y":69600000000000000,"z":376000000000000000}},"30003860":{"solarSystemId":30003860,"solarSystemName":"U:3E7V","location":{"x":-5210000000000000000,"y":55900000000000000,"z":-367000000000000000}},"30003861":{"solarSystemId":30003861,"solarSystemName":"D:4OV7","location":{"x":-5110000000000000000,"y":-16600000000000000,"z":-240000000000000000}},"30003862":{"solarSystemId":30003862,"solarSystemName":"F:21E2","location":{"x":-4910000000000000000,"y":-486000000000000000,"z":63800000000000000}},"30003863":{"solarSystemId":30003863,"solarSystemName":"M:112R","location":{"x":-5140000000000000000,"y":148000000000000000,"z":-569000000000000000}},"30003864":{"solarSystemId":30003864,"solarSystemName":"B:3V9V","location":{"x":-4870000000000000000,"y":-37900000000000000,"z":150000000000000000}},"30003865":{"solarSystemId":30003865,"solarSystemName":"J:805L","location":{"x":-5000000000000000000,"y":332000000000000000,"z":-135000000000000000}},"30003866":{"solarSystemId":30003866,"solarSystemName":"Z:3RAK","location":{"x":-5040000000000000000,"y":88700000000000000,"z":-105000000000000000}},"30003867":{"solarSystemId":30003867,"solarSystemName":"M:2A4T","location":{"x":-4860000000000000000,"y":-24700000000000000,"z":54500000000000000}},"30003868":{"solarSystemId":30003868,"solarSystemName":"M:3N2L","location":{"x":-4830000000000000000,"y":363000000000000000,"z":-506000000000000000}},"30003869":{"solarSystemId":30003869,"solarSystemName":"B:3923","location":{"x":-5460000000000000000,"y":99500000000000000,"z":-10900000000000000}},"30003870":{"solarSystemId":30003870,"solarSystemName":"Q:39TL","location":{"x":-4980000000000000000,"y":338000000000000000,"z":423000000000000000}},"30003871":{"solarSystemId":30003871,"solarSystemName":"F:3R73","location":{"x":-5090000000000000000,"y":-62800000000000000,"z":137000000000000000}},"30003872":{"solarSystemId":30003872,"solarSystemName":"J:2O6S","location":{"x":-5280000000000000000,"y":233000000000000000,"z":-611000000000000000}},"30003873":{"solarSystemId":30003873,"solarSystemName":"G:33NT","location":{"x":-5270000000000000000,"y":108000000000000000,"z":-381000000000000000}},"30003874":{"solarSystemId":30003874,"solarSystemName":"G:3S20","location":{"x":-5440000000000000000,"y":-997000000000000000,"z":2120000000000000000}},"30003875":{"solarSystemId":30003875,"solarSystemName":"U:3T3T","location":{"x":-4780000000000000000,"y":-1390000000000000000,"z":1770000000000000000}},"30003876":{"solarSystemId":30003876,"solarSystemName":"D:3RV2","location":{"x":-4940000000000000000,"y":-800000000000000000,"z":1880000000000000000}},"30003877":{"solarSystemId":30003877,"solarSystemName":"Y:150R","location":{"x":-4700000000000000000,"y":-880000000000000000,"z":1450000000000000000}},"30003878":{"solarSystemId":30003878,"solarSystemName":"F:342E","location":{"x":-4760000000000000000,"y":-1190000000000000000,"z":1160000000000000000}},"30003879":{"solarSystemId":30003879,"solarSystemName":"M:RKS1","location":{"x":-4780000000000000000,"y":-998000000000000000,"z":1420000000000000000}},"30003880":{"solarSystemId":30003880,"solarSystemName":"B:3A51","location":{"x":-5210000000000000000,"y":-1270000000000000000,"z":1650000000000000000}},"30003881":{"solarSystemId":30003881,"solarSystemName":"Q:K32E","location":{"x":-4740000000000000000,"y":-1030000000000000000,"z":1880000000000000000}},"30003882":{"solarSystemId":30003882,"solarSystemName":"Z:3SI1","location":{"x":-4780000000000000000,"y":-1510000000000000000,"z":1160000000000000000}},"30003883":{"solarSystemId":30003883,"solarSystemName":"Z:4EN9","location":{"x":-5700000000000000000,"y":-1060000000000000000,"z":1880000000000000000}},"30003884":{"solarSystemId":30003884,"solarSystemName":"F:1V7A","location":{"x":-5220000000000000000,"y":-1990000000000000000,"z":1050000000000000000}},"30003885":{"solarSystemId":30003885,"solarSystemName":"F:3ELL","location":{"x":-5440000000000000000,"y":-1360000000000000000,"z":853000000000000000}},"30003886":{"solarSystemId":30003886,"solarSystemName":"U:2RA1","location":{"x":-5280000000000000000,"y":-2050000000000000000,"z":805000000000000000}},"30003887":{"solarSystemId":30003887,"solarSystemName":"G:36OK","location":{"x":-5350000000000000000,"y":-1080000000000000000,"z":1880000000000000000}},"30003888":{"solarSystemId":30003888,"solarSystemName":"M:315V","location":{"x":-5130000000000000000,"y":-1460000000000000000,"z":1300000000000000000}},"30003889":{"solarSystemId":30003889,"solarSystemName":"H:332V","location":{"x":-5640000000000000000,"y":-1320000000000000000,"z":1270000000000000000}},"30003890":{"solarSystemId":30003890,"solarSystemName":"G:39N4","location":{"x":-5250000000000000000,"y":-1430000000000000000,"z":1380000000000000000}},"30003891":{"solarSystemId":30003891,"solarSystemName":"Q:2S0R","location":{"x":-4310000000000000000,"y":-1470000000000000000,"z":1660000000000000000}},"30003892":{"solarSystemId":30003892,"solarSystemName":"P:2I25","location":{"x":-4810000000000000000,"y":-902000000000000000,"z":1890000000000000000}},"30003893":{"solarSystemId":30003893,"solarSystemName":"G:3ARI","location":{"x":-4560000000000000000,"y":-948000000000000000,"z":-197000000000000000}},"30003894":{"solarSystemId":30003894,"solarSystemName":"Q:2IA7","location":{"x":-4580000000000000000,"y":-777000000000000000,"z":750000000000000000}},"30003895":{"solarSystemId":30003895,"solarSystemName":"Q:3431","location":{"x":-4450000000000000000,"y":-905000000000000000,"z":360000000000000000}},"30003896":{"solarSystemId":30003896,"solarSystemName":"D:399A","location":{"x":-4540000000000000000,"y":-647000000000000000,"z":331000000000000000}},"30003897":{"solarSystemId":30003897,"solarSystemName":"F:320A","location":{"x":-4300000000000000000,"y":-864000000000000000,"z":359000000000000000}},"30003898":{"solarSystemId":30003898,"solarSystemName":"H:38S2","location":{"x":-4940000000000000000,"y":-1320000000000000000,"z":37200000000000000}},"30003899":{"solarSystemId":30003899,"solarSystemName":"B:2EEK","location":{"x":-4350000000000000000,"y":-717000000000000000,"z":189000000000000000}},"30003900":{"solarSystemId":30003900,"solarSystemName":"Q:29L2","location":{"x":-4640000000000000000,"y":-532000000000000000,"z":288000000000000000}},"30003901":{"solarSystemId":30003901,"solarSystemName":"J:K3NE","location":{"x":-4650000000000000000,"y":-670000000000000000,"z":539000000000000000}},"30003902":{"solarSystemId":30003902,"solarSystemName":"B:2NV6","location":{"x":-4750000000000000000,"y":-621000000000000000,"z":142000000000000000}},"30003903":{"solarSystemId":30003903,"solarSystemName":"J:2I52","location":{"x":-4350000000000000000,"y":-1290000000000000000,"z":158000000000000000}},"30003904":{"solarSystemId":30003904,"solarSystemName":"D:3E8T","location":{"x":-4800000000000000000,"y":-1080000000000000000,"z":283000000000000000}},"30003905":{"solarSystemId":30003905,"solarSystemName":"M:3N32","location":{"x":-4740000000000000000,"y":-1470000000000000000,"z":131000000000000000}},"30003906":{"solarSystemId":30003906,"solarSystemName":"F:30T5","location":{"x":-5050000000000000000,"y":-1240000000000000000,"z":361000000000000000}},"30003907":{"solarSystemId":30003907,"solarSystemName":"B:3R3I","location":{"x":-5150000000000000000,"y":-846000000000000000,"z":593000000000000000}},"30003908":{"solarSystemId":30003908,"solarSystemName":"J:2O0K","location":{"x":-4690000000000000000,"y":-609000000000000000,"z":571000000000000000}},"30003909":{"solarSystemId":30003909,"solarSystemName":"Z:3RVS","location":{"x":-4800000000000000000,"y":-699000000000000000,"z":705000000000000000}},"30003910":{"solarSystemId":30003910,"solarSystemName":"G:2A25","location":{"x":-5300000000000000000,"y":-1120000000000000000,"z":-130299000000000}},"30003911":{"solarSystemId":30003911,"solarSystemName":"Q:337V","location":{"x":-5710000000000000000,"y":-79000000000000000,"z":792000000000000000}},"30003912":{"solarSystemId":30003912,"solarSystemName":"F:2LT8","location":{"x":-5340000000000000000,"y":-178000000000000000,"z":606000000000000000}},"30003913":{"solarSystemId":30003913,"solarSystemName":"F:2TTI","location":{"x":-5580000000000000000,"y":250000000000000000,"z":474000000000000000}},"30003914":{"solarSystemId":30003914,"solarSystemName":"J:39T3","location":{"x":-5070000000000000000,"y":-200000000000000000,"z":868000000000000000}},"30003915":{"solarSystemId":30003915,"solarSystemName":"D:1368","location":{"x":-5320000000000000000,"y":-313000000000000000,"z":646000000000000000}},"30003916":{"solarSystemId":30003916,"solarSystemName":"J:3095","location":{"x":-5220000000000000000,"y":-264000000000000000,"z":596000000000000000}},"30003917":{"solarSystemId":30003917,"solarSystemName":"D:3VNO","location":{"x":-5350000000000000000,"y":-507000000000000000,"z":465000000000000000}},"30003918":{"solarSystemId":30003918,"solarSystemName":"U:2698","location":{"x":-4990000000000000000,"y":-456000000000000000,"z":310000000000000000}},"30003919":{"solarSystemId":30003919,"solarSystemName":"Z:32N8","location":{"x":-4840000000000000000,"y":-254000000000000000,"z":680000000000000000}},"30003920":{"solarSystemId":30003920,"solarSystemName":"Q:374O","location":{"x":-5600000000000000000,"y":-729000000000000000,"z":566000000000000000}},"30003921":{"solarSystemId":30003921,"solarSystemName":"Y:24EL","location":{"x":-5370000000000000000,"y":107000000000000000,"z":495000000000000000}},"30003922":{"solarSystemId":30003922,"solarSystemName":"B:K6L0","location":{"x":-4980000000000000000,"y":-83000000000000000,"z":397000000000000000}},"30003923":{"solarSystemId":30003923,"solarSystemName":"Z:3TTR","location":{"x":-5310000000000000000,"y":-410000000000000000,"z":665000000000000000}},"30003924":{"solarSystemId":30003924,"solarSystemName":"H:1I4K","location":{"x":-5410000000000000000,"y":-668000000000000000,"z":572000000000000000}},"30003925":{"solarSystemId":30003925,"solarSystemName":"F:2RS6","location":{"x":-4910000000000000000,"y":-399000000000000000,"z":237000000000000000}},"30003926":{"solarSystemId":30003926,"solarSystemName":"G:3V99","location":{"x":-5430000000000000000,"y":150000000000000000,"z":880000000000000000}},"30003927":{"solarSystemId":30003927,"solarSystemName":"F:35OV","location":{"x":-4980000000000000000,"y":-318000000000000000,"z":607000000000000000}},"30003928":{"solarSystemId":30003928,"solarSystemName":"J:3959","location":{"x":-4990000000000000000,"y":7010000000000000,"z":842000000000000000}},"30003929":{"solarSystemId":30003929,"solarSystemName":"P:353A","location":{"x":-5270000000000000000,"y":112000000000000000,"z":380000000000000000}},"30003930":{"solarSystemId":30003930,"solarSystemName":"Q:2ROR","location":{"x":-5620000000000000000,"y":419000000000000000,"z":679000000000000000}},"30003931":{"solarSystemId":30003931,"solarSystemName":"M:2A06","location":{"x":-5090000000000000000,"y":-578000000000000000,"z":466000000000000000}},"30003932":{"solarSystemId":30003932,"solarSystemName":"Q:3A05","location":{"x":-3970000000000000000,"y":-587000000000000000,"z":-312000000000000000}},"30003933":{"solarSystemId":30003933,"solarSystemName":"Z:2IIS","location":{"x":-4120000000000000000,"y":-1010000000000000000,"z":219000000000000000}},"30003934":{"solarSystemId":30003934,"solarSystemName":"F:3S5L","location":{"x":-3560000000000000000,"y":-976000000000000000,"z":184000000000000000}},"30003935":{"solarSystemId":30003935,"solarSystemName":"Q:3N4I","location":{"x":-4120000000000000000,"y":-1060000000000000000,"z":-72100000000000000}},"30003936":{"solarSystemId":30003936,"solarSystemName":"H:38R5","location":{"x":-3890000000000000000,"y":-765000000000000000,"z":100000000000000000}},"30003937":{"solarSystemId":30003937,"solarSystemName":"G:361A","location":{"x":-3970000000000000000,"y":-977000000000000000,"z":-317000000000000000}},"30003938":{"solarSystemId":30003938,"solarSystemName":"Y:3VOT","location":{"x":-4140000000000000000,"y":-721000000000000000,"z":-72300000000000000}},"30003939":{"solarSystemId":30003939,"solarSystemName":"F:3A85","location":{"x":-3880000000000000000,"y":-1190000000000000000,"z":163000000000000000}},"30003940":{"solarSystemId":30003940,"solarSystemName":"D:38AI","location":{"x":-4220000000000000000,"y":-1100000000000000000,"z":16200000000000000}},"30003941":{"solarSystemId":30003941,"solarSystemName":"P:3EAO","location":{"x":-3770000000000000000,"y":-1070000000000000000,"z":-22500000000000000}},"30003942":{"solarSystemId":30003942,"solarSystemName":"Z:3AEV","location":{"x":-4110000000000000000,"y":-1110000000000000000,"z":-232000000000000000}},"30003943":{"solarSystemId":30003943,"solarSystemName":"J:34R5","location":{"x":-4170000000000000000,"y":-1170000000000000000,"z":-109000000000000000}},"30003944":{"solarSystemId":30003944,"solarSystemName":"D:320R","location":{"x":-4110000000000000000,"y":-755000000000000000,"z":-226000000000000000}},"30003945":{"solarSystemId":30003945,"solarSystemName":"U:33VS","location":{"x":-4110000000000000000,"y":-594000000000000000,"z":-156000000000000000}},"30003946":{"solarSystemId":30003946,"solarSystemName":"J:3E6R","location":{"x":-3700000000000000000,"y":-1100000000000000000,"z":205000000000000000}},"30003947":{"solarSystemId":30003947,"solarSystemName":"G:2O62","location":{"x":-4260000000000000000,"y":-795000000000000000,"z":68200000000000000}},"30003948":{"solarSystemId":30003948,"solarSystemName":"M:2SL2","location":{"x":-4010000000000000000,"y":-953000000000000000,"z":222000000000000000}},"30003949":{"solarSystemId":30003949,"solarSystemName":"F:2N2S","location":{"x":-3710000000000000000,"y":-995000000000000000,"z":-220000000000000000}},"30003950":{"solarSystemId":30003950,"solarSystemName":"B:3S41","location":{"x":-4030000000000000000,"y":-996000000000000000,"z":297000000000000000}},"30003951":{"solarSystemId":30003951,"solarSystemName":"B:2SSS","location":{"x":-4030000000000000000,"y":-659000000000000000,"z":-240000000000000000}},"30003952":{"solarSystemId":30003952,"solarSystemName":"Z:3A5N","location":{"x":-3910000000000000000,"y":-1020000000000000000,"z":-270000000000000000}},"30003953":{"solarSystemId":30003953,"solarSystemName":"Y:2NK1","location":{"x":-4290000000000000000,"y":-1100000000000000000,"z":291000000000000000}},"30003954":{"solarSystemId":30003954,"solarSystemName":"B:3RRI","location":{"x":-4230000000000000000,"y":-1050000000000000000,"z":536000000000000000}},"30003955":{"solarSystemId":30003955,"solarSystemName":"P:3E53","location":{"x":-4090000000000000000,"y":-1340000000000000000,"z":944000000000000000}},"30003956":{"solarSystemId":30003956,"solarSystemName":"Y:2NO7","location":{"x":-4010000000000000000,"y":-1360000000000000000,"z":877000000000000000}},"30003957":{"solarSystemId":30003957,"solarSystemName":"Q:2I7N","location":{"x":-3780000000000000000,"y":-1630000000000000000,"z":901000000000000000}},"30003958":{"solarSystemId":30003958,"solarSystemName":"Y:370V","location":{"x":-3910000000000000000,"y":-1420000000000000000,"z":1010000000000000000}},"30003959":{"solarSystemId":30003959,"solarSystemName":"F:2NLA","location":{"x":-3940000000000000000,"y":-1320000000000000000,"z":547000000000000000}},"30003960":{"solarSystemId":30003960,"solarSystemName":"G:2I6I","location":{"x":-4230000000000000000,"y":-1170000000000000000,"z":577000000000000000}},"30003961":{"solarSystemId":30003961,"solarSystemName":"M:3199","location":{"x":-3940000000000000000,"y":-983000000000000000,"z":727000000000000000}},"30003962":{"solarSystemId":30003962,"solarSystemName":"P:3746","location":{"x":-4300000000000000000,"y":-1320000000000000000,"z":713000000000000000}},"30003963":{"solarSystemId":30003963,"solarSystemName":"J:2I7R","location":{"x":-4270000000000000000,"y":-1180000000000000000,"z":898000000000000000}},"30003964":{"solarSystemId":30003964,"solarSystemName":"Q:3ALN","location":{"x":-4310000000000000000,"y":-941000000000000000,"z":816000000000000000}},"30003965":{"solarSystemId":30003965,"solarSystemName":"M:2KK5","location":{"x":-4330000000000000000,"y":-875000000000000000,"z":1110000000000000000}},"30003966":{"solarSystemId":30003966,"solarSystemName":"Y:34O3","location":{"x":-4250000000000000000,"y":-1540000000000000000,"z":1360000000000000000}},"30003967":{"solarSystemId":30003967,"solarSystemName":"M:3V6T","location":{"x":-3920000000000000000,"y":-1640000000000000000,"z":876000000000000000}},"30003968":{"solarSystemId":30003968,"solarSystemName":"P:3R35","location":{"x":-4460000000000000000,"y":-1520000000000000000,"z":1190000000000000000}},"30003969":{"solarSystemId":30003969,"solarSystemName":"M:3N90","location":{"x":-4050000000000000000,"y":-1110000000000000000,"z":385000000000000000}},"30003970":{"solarSystemId":30003970,"solarSystemName":"P:2VO7","location":{"x":-4220000000000000000,"y":-812000000000000000,"z":567000000000000000}},"30003971":{"solarSystemId":30003971,"solarSystemName":"M:2K53","location":{"x":-4240000000000000000,"y":-798000000000000000,"z":616000000000000000}},"30003972":{"solarSystemId":30003972,"solarSystemName":"D:2SV3","location":{"x":-4490000000000000000,"y":-1130000000000000000,"z":403000000000000000}},"30003973":{"solarSystemId":30003973,"solarSystemName":"B:394T","location":{"x":-4860000000000000000,"y":-2540000000000000000,"z":-586000000000000000}},"30003974":{"solarSystemId":30003974,"solarSystemName":"U:3961","location":{"x":-4740000000000000000,"y":-2290000000000000000,"z":-295000000000000000}},"30003975":{"solarSystemId":30003975,"solarSystemName":"Q:2LV5","location":{"x":-4900000000000000000,"y":-1800000000000000000,"z":233000000000000000}},"30003976":{"solarSystemId":30003976,"solarSystemName":"P:34SS","location":{"x":-5110000000000000000,"y":-3220000000000000000,"z":-468000000000000000}},"30003977":{"solarSystemId":30003977,"solarSystemName":"H:36I8","location":{"x":-4690000000000000000,"y":-2250000000000000000,"z":-249000000000000000}},"30003978":{"solarSystemId":30003978,"solarSystemName":"U:32O9","location":{"x":-4780000000000000000,"y":-1740000000000000000,"z":491000000000000000}},"30003979":{"solarSystemId":30003979,"solarSystemName":"Q:3O14","location":{"x":-5890000000000000000,"y":-1380000000000000000,"z":-77000000000000000}},"30003980":{"solarSystemId":30003980,"solarSystemName":"F:379E","location":{"x":-4640000000000000000,"y":-1980000000000000000,"z":-500000000000000000}},"30003981":{"solarSystemId":30003981,"solarSystemName":"U:3AOV","location":{"x":-5400000000000000000,"y":-2420000000000000000,"z":423000000000000000}},"30003982":{"solarSystemId":30003982,"solarSystemName":"B:2IR5","location":{"x":-5790000000000000000,"y":-2690000000000000000,"z":-227000000000000000}},"30003983":{"solarSystemId":30003983,"solarSystemName":"Z:3R9I","location":{"x":-5490000000000000000,"y":-2730000000000000000,"z":-1540000000000000000}},"30003984":{"solarSystemId":30003984,"solarSystemName":"H:2RA7","location":{"x":-5020000000000000000,"y":-3780000000000000000,"z":71300000000000000}},"30003985":{"solarSystemId":30003985,"solarSystemName":"B:3TLI","location":{"x":-5500000000000000000,"y":-1370000000000000000,"z":-319000000000000000}},"30003986":{"solarSystemId":30003986,"solarSystemName":"J:38V6","location":{"x":-5110000000000000000,"y":-2160000000000000000,"z":405000000000000000}},"30003987":{"solarSystemId":30003987,"solarSystemName":"P:3A74","location":{"x":-4460000000000000000,"y":-1860000000000000000,"z":-67500000000000000}},"30003988":{"solarSystemId":30003988,"solarSystemName":"G:3V3R","location":{"x":-4400000000000000000,"y":-1530000000000000000,"z":-128000000000000000}},"30003989":{"solarSystemId":30003989,"solarSystemName":"F:3TKE","location":{"x":-4370000000000000000,"y":-1870000000000000000,"z":278000000000000000}},"30003990":{"solarSystemId":30003990,"solarSystemName":"B:3V14","location":{"x":-3530000000000000000,"y":-1460000000000000000,"z":364000000000000000}},"30003991":{"solarSystemId":30003991,"solarSystemName":"J:3R15","location":{"x":-3800000000000000000,"y":-1890000000000000000,"z":652000000000000000}},"30003992":{"solarSystemId":30003992,"solarSystemName":"D:2RV0","location":{"x":-4030000000000000000,"y":-1890000000000000000,"z":-416000000000000000}},"30003993":{"solarSystemId":30003993,"solarSystemName":"J:381R","location":{"x":-3660000000000000000,"y":-1520000000000000000,"z":361000000000000000}},"30003994":{"solarSystemId":30003994,"solarSystemName":"B:3ER8","location":{"x":-4120000000000000000,"y":-1960000000000000000,"z":239000000000000000}},"30003995":{"solarSystemId":30003995,"solarSystemName":"G:295N","location":{"x":-4290000000000000000,"y":-2130000000000000000,"z":-351000000000000000}},"30003996":{"solarSystemId":30003996,"solarSystemName":"J:3S4O","location":{"x":-4310000000000000000,"y":-1400000000000000000,"z":362000000000000000}},"30003997":{"solarSystemId":30003997,"solarSystemName":"M:3V63","location":{"x":-4360000000000000000,"y":-1440000000000000000,"z":375000000000000000}},"30003998":{"solarSystemId":30003998,"solarSystemName":"M:2S37","location":{"x":-4090000000000000000,"y":-2100000000000000000,"z":-421000000000000000}},"30003999":{"solarSystemId":30003999,"solarSystemName":"F:2K6A","location":{"x":-4350000000000000000,"y":-1510000000000000000,"z":531000000000000000}},"30004000":{"solarSystemId":30004000,"solarSystemName":"B:324N","location":{"x":-4470000000000000000,"y":-1380000000000000000,"z":179000000000000000}},"30004001":{"solarSystemId":30004001,"solarSystemName":"H:3VN8","location":{"x":-4630000000000000000,"y":-2150000000000000000,"z":611000000000000000}},"30004002":{"solarSystemId":30004002,"solarSystemName":"M:3R58","location":{"x":-3680000000000000000,"y":-2060000000000000000,"z":692000000000000000}},"30004003":{"solarSystemId":30004003,"solarSystemName":"J:3O9V","location":{"x":-4250000000000000000,"y":-1730000000000000000,"z":740000000000000000}},"30004004":{"solarSystemId":30004004,"solarSystemName":"D:38S6","location":{"x":-3830000000000000000,"y":2000000000000000000,"z":55400000000000000}},"30004005":{"solarSystemId":30004005,"solarSystemName":"P:3594","location":{"x":-3480000000000000000,"y":1840000000000000000,"z":-1580000000000000000}},"30004006":{"solarSystemId":30004006,"solarSystemName":"J:3O1N","location":{"x":-3210000000000000000,"y":2450000000000000000,"z":-755000000000000000}},"30004007":{"solarSystemId":30004007,"solarSystemName":"U:IOT3","location":{"x":-3510000000000000000,"y":2680000000000000000,"z":-1860000000000000000}},"30004008":{"solarSystemId":30004008,"solarSystemName":"H:2S9I","location":{"x":-3460000000000000000,"y":2540000000000000000,"z":-1000000000000000000}},"30004009":{"solarSystemId":30004009,"solarSystemName":"P:366N","location":{"x":-3340000000000000000,"y":1430000000000000000,"z":-735000000000000000}},"30004010":{"solarSystemId":30004010,"solarSystemName":"J:3NK9","location":{"x":-2840000000000000000,"y":2060000000000000000,"z":-856000000000000000}},"30004011":{"solarSystemId":30004011,"solarSystemName":"P:2O46","location":{"x":-3870000000000000000,"y":2310000000000000000,"z":-1540000000000000000}},"30004012":{"solarSystemId":30004012,"solarSystemName":"Q:3852","location":{"x":-3080000000000000000,"y":1360000000000000000,"z":-633000000000000000}},"30004013":{"solarSystemId":30004013,"solarSystemName":"Y:2LKN","location":{"x":-3310000000000000000,"y":2190000000000000000,"z":-383000000000000000}},"30004014":{"solarSystemId":30004014,"solarSystemName":"F:351I","location":{"x":-3830000000000000000,"y":2230000000000000000,"z":-106000000000000000}},"30004015":{"solarSystemId":30004015,"solarSystemName":"J:2E47","location":{"x":-2910000000000000000,"y":3170000000000000000,"z":-1060000000000000000}},"30004016":{"solarSystemId":30004016,"solarSystemName":"D:2LKI","location":{"x":-3840000000000000000,"y":2830000000000000000,"z":-662000000000000000}},"30004017":{"solarSystemId":30004017,"solarSystemName":"F:3E3L","location":{"x":-4790000000000000000,"y":-484000000000000000,"z":-2990000000000000000}},"30004018":{"solarSystemId":30004018,"solarSystemName":"J:31O3","location":{"x":-4390000000000000000,"y":51200000000000000,"z":-3380000000000000000}},"30004019":{"solarSystemId":30004019,"solarSystemName":"U:262K","location":{"x":-5160000000000000000,"y":-77200000000000000,"z":-3340000000000000000}},"30004020":{"solarSystemId":30004020,"solarSystemName":"G:1VOR","location":{"x":-4890000000000000000,"y":-739000000000000000,"z":-3420000000000000000}},"30004021":{"solarSystemId":30004021,"solarSystemName":"B:11E9","location":{"x":-4870000000000000000,"y":102000000000000000,"z":-4160000000000000000}},"30004022":{"solarSystemId":30004022,"solarSystemName":"D:203V","location":{"x":-4930000000000000000,"y":240000000000000000,"z":-3430000000000000000}},"30004023":{"solarSystemId":30004023,"solarSystemName":"Y:21O7","location":{"x":-4840000000000000000,"y":222000000000000000,"z":-3330000000000000000}},"30004024":{"solarSystemId":30004024,"solarSystemName":"M:3906","location":{"x":-5170000000000000000,"y":-224000000000000000,"z":-2770000000000000000}},"30004025":{"solarSystemId":30004025,"solarSystemName":"G:1TL6","location":{"x":-5040000000000000000,"y":-355000000000000000,"z":-2990000000000000000}},"30004026":{"solarSystemId":30004026,"solarSystemName":"Y:3I6E","location":{"x":-5010000000000000000,"y":-392000000000000000,"z":-3510000000000000000}},"30004027":{"solarSystemId":30004027,"solarSystemName":"Q:24K9","location":{"x":-4450000000000000000,"y":-90800000000000000,"z":-3240000000000000000}},"30004028":{"solarSystemId":30004028,"solarSystemName":"Z:267O","location":{"x":-4260000000000000000,"y":254000000000000000,"z":-3230000000000000000}},"30004029":{"solarSystemId":30004029,"solarSystemName":"F:391I","location":{"x":-5420000000000000000,"y":76100000000000000,"z":-3560000000000000000}},"30004030":{"solarSystemId":30004030,"solarSystemName":"Q:1RK5","location":{"x":-5320000000000000000,"y":-324000000000000000,"z":-2860000000000000000}},"30004031":{"solarSystemId":30004031,"solarSystemName":"Q:249S","location":{"x":-5150000000000000000,"y":110000000000000000,"z":-3680000000000000000}},"30004032":{"solarSystemId":30004032,"solarSystemName":"G:EV8L","location":{"x":-4920000000000000000,"y":451000000000000000,"z":-3440000000000000000}},"30004033":{"solarSystemId":30004033,"solarSystemName":"F:I8AS","location":{"x":-5380000000000000000,"y":86000000000000000,"z":-3320000000000000000}},"30004034":{"solarSystemId":30004034,"solarSystemName":"M:386K","location":{"x":-4520000000000000000,"y":-470000000000000000,"z":-2980000000000000000}},"30004035":{"solarSystemId":30004035,"solarSystemName":"J:29AK","location":{"x":-4720000000000000000,"y":-307000000000000000,"z":-3080000000000000000}},"30004036":{"solarSystemId":30004036,"solarSystemName":"U:T4RV","location":{"x":-5010000000000000000,"y":-358000000000000000,"z":-3550000000000000000}},"30004037":{"solarSystemId":30004037,"solarSystemName":"F:O95I","location":{"x":-4820000000000000000,"y":206000000000000000,"z":-3080000000000000000}},"30004038":{"solarSystemId":30004038,"solarSystemName":"J:1VNR","location":{"x":-5300000000000000000,"y":-23400000000000000,"z":-3190000000000000000}},"30004039":{"solarSystemId":30004039,"solarSystemName":"M:1OTA","location":{"x":-4680000000000000000,"y":131000000000000000,"z":-3450000000000000000}},"30004040":{"solarSystemId":30004040,"solarSystemName":"J:127O","location":{"x":-4830000000000000000,"y":-25900000000000000,"z":-3680000000000000000}},"30004041":{"solarSystemId":30004041,"solarSystemName":"Z:2T8E","location":{"x":-6870000000000000000,"y":-175000000000000000,"z":-4200000000000000000}},"30004042":{"solarSystemId":30004042,"solarSystemName":"J:2VIT","location":{"x":-6780000000000000000,"y":-507000000000000000,"z":-4590000000000000000}},"30004043":{"solarSystemId":30004043,"solarSystemName":"G:15EN","location":{"x":-6920000000000000000,"y":-410000000000000000,"z":-5650000000000000000}},"30004044":{"solarSystemId":30004044,"solarSystemName":"P:13T9","location":{"x":-5370000000000000000,"y":-588000000000000000,"z":-3750000000000000000}},"30004045":{"solarSystemId":30004045,"solarSystemName":"B:R25T","location":{"x":-5710000000000000000,"y":-475000000000000000,"z":-4540000000000000000}},"30004046":{"solarSystemId":30004046,"solarSystemName":"Y:3EL1","location":{"x":-6960000000000000000,"y":43100000000000000,"z":-4310000000000000000}},"30004047":{"solarSystemId":30004047,"solarSystemName":"D:1R8K","location":{"x":-5930000000000000000,"y":-231000000000000000,"z":-4270000000000000000}},"30004048":{"solarSystemId":30004048,"solarSystemName":"B:1O95","location":{"x":-4990000000000000000,"y":-298000000000000000,"z":-4020000000000000000}},"30004049":{"solarSystemId":30004049,"solarSystemName":"D:2V43","location":{"x":-4970000000000000000,"y":-182000000000000000,"z":-4220000000000000000}},"30004050":{"solarSystemId":30004050,"solarSystemName":"H:E081","location":{"x":-5370000000000000000,"y":-442000000000000000,"z":-4090000000000000000}},"30004051":{"solarSystemId":30004051,"solarSystemName":"Q:446E","location":{"x":-7280000000000000000,"y":53200000000000000,"z":-4670000000000000000}},"30004052":{"solarSystemId":30004052,"solarSystemName":"Y:2T9S","location":{"x":-7080000000000000000,"y":-178000000000000000,"z":-4300000000000000000}},"30004053":{"solarSystemId":30004053,"solarSystemName":"U:2V29","location":{"x":-5240000000000000000,"y":-1220000000000000000,"z":-3530000000000000000}},"30004054":{"solarSystemId":30004054,"solarSystemName":"H:2N80","location":{"x":-6990000000000000000,"y":494000000000000000,"z":-5000000000000000000}},"30004055":{"solarSystemId":30004055,"solarSystemName":"U:1VTN","location":{"x":-5420000000000000000,"y":-820000000000000000,"z":-3600000000000000000}},"30004056":{"solarSystemId":30004056,"solarSystemName":"J:2EVN","location":{"x":-5500000000000000000,"y":-693000000000000000,"z":-3640000000000000000}},"30004057":{"solarSystemId":30004057,"solarSystemName":"Q:276N","location":{"x":-5930000000000000000,"y":-420000000000000000,"z":-4330000000000000000}},"30004058":{"solarSystemId":30004058,"solarSystemName":"P:1KA1","location":{"x":-6970000000000000000,"y":-1090000000000000000,"z":-5800000000000000000}},"30004059":{"solarSystemId":30004059,"solarSystemName":"Q:27IN","location":{"x":-7150000000000000000,"y":332000000000000000,"z":-4320000000000000000}},"30004060":{"solarSystemId":30004060,"solarSystemName":"M:2A12","location":{"x":-6700000000000000000,"y":-430000000000000000,"z":-5850000000000000000}},"30004061":{"solarSystemId":30004061,"solarSystemName":"J:1I8V","location":{"x":-7000000000000000000,"y":390000000000000000,"z":-4240000000000000000}},"30004062":{"solarSystemId":30004062,"solarSystemName":"P:2NA7","location":{"x":-6590000000000000000,"y":-671000000000000000,"z":-5270000000000000000}},"30004063":{"solarSystemId":30004063,"solarSystemName":"P:1LNA","location":{"x":-6670000000000000000,"y":-182000000000000000,"z":-4110000000000000000}},"30004064":{"solarSystemId":30004064,"solarSystemName":"Y:20R9","location":{"x":-6810000000000000000,"y":-29400000000000000,"z":-5490000000000000000}},"30004065":{"solarSystemId":30004065,"solarSystemName":"D:1ISL","location":{"x":-5480000000000000000,"y":-796000000000000000,"z":-4040000000000000000}},"30004066":{"solarSystemId":30004066,"solarSystemName":"Y:2136","location":{"x":-6970000000000000000,"y":-1630000000000000000,"z":-4290000000000000000}},"30004067":{"solarSystemId":30004067,"solarSystemName":"B:2311","location":{"x":-5590000000000000000,"y":-495000000000000000,"z":-4540000000000000000}},"30004068":{"solarSystemId":30004068,"solarSystemName":"D:20T7","location":{"x":-6410000000000000000,"y":-806000000000000000,"z":-4620000000000000000}},"30004069":{"solarSystemId":30004069,"solarSystemName":"M:37K1","location":{"x":-5850000000000000000,"y":626000000000000000,"z":-3750000000000000000}},"30004070":{"solarSystemId":30004070,"solarSystemName":"H:2I2A","location":{"x":-5730000000000000000,"y":-102000000000000000,"z":-3540000000000000000}},"30004071":{"solarSystemId":30004071,"solarSystemName":"U:38O2","location":{"x":-5560000000000000000,"y":917000000000000000,"z":-2990000000000000000}},"30004072":{"solarSystemId":30004072,"solarSystemName":"G:2KK1","location":{"x":-6380000000000000000,"y":1240000000000000000,"z":-3800000000000000000}},"30004073":{"solarSystemId":30004073,"solarSystemName":"P:36AN","location":{"x":-5950000000000000000,"y":1140000000000000000,"z":-3950000000000000000}},"30004074":{"solarSystemId":30004074,"solarSystemName":"D:2IKS","location":{"x":-5840000000000000000,"y":-145000000000000000,"z":-2960000000000000000}},"30004075":{"solarSystemId":30004075,"solarSystemName":"Y:18II","location":{"x":-6110000000000000000,"y":514000000000000000,"z":-3410000000000000000}},"30004076":{"solarSystemId":30004076,"solarSystemName":"Z:1RNR","location":{"x":-5730000000000000000,"y":-37600000000000000,"z":-3240000000000000000}},"30004077":{"solarSystemId":30004077,"solarSystemName":"G:1VK2","location":{"x":-5980000000000000000,"y":60200000000000000,"z":-2970000000000000000}},"30004078":{"solarSystemId":30004078,"solarSystemName":"H:VTN4","location":{"x":-6310000000000000000,"y":-205000000000000000,"z":-2930000000000000000}},"30004079":{"solarSystemId":30004079,"solarSystemName":"Z:4L08","location":{"x":-6180000000000000000,"y":1300000000000000000,"z":-3270000000000000000}},"30004080":{"solarSystemId":30004080,"solarSystemName":"H:2767","location":{"x":-6570000000000000000,"y":1430000000000000000,"z":-3460000000000000000}},"30004081":{"solarSystemId":30004081,"solarSystemName":"P:3SE4","location":{"x":-6500000000000000000,"y":335000000000000000,"z":-3960000000000000000}},"30004082":{"solarSystemId":30004082,"solarSystemName":"G:1RAN","location":{"x":-6600000000000000000,"y":175000000000000000,"z":-3600000000000000000}},"30004083":{"solarSystemId":30004083,"solarSystemName":"F:3S9O","location":{"x":-5670000000000000000,"y":-86400000000000000,"z":-3820000000000000000}},"30004084":{"solarSystemId":30004084,"solarSystemName":"Y:1SNE","location":{"x":-5660000000000000000,"y":272000000000000000,"z":-3660000000000000000}},"30004085":{"solarSystemId":30004085,"solarSystemName":"H:1VKN","location":{"x":-5470000000000000000,"y":766000000000000000,"z":-3930000000000000000}},"30004086":{"solarSystemId":30004086,"solarSystemName":"F:L21L","location":{"x":-6030000000000000000,"y":61100000000000000,"z":-3920000000000000000}},"30004087":{"solarSystemId":30004087,"solarSystemName":"Q:2236","location":{"x":-6200000000000000000,"y":-343000000000000000,"z":-3040000000000000000}},"30004088":{"solarSystemId":30004088,"solarSystemName":"U:1V6L","location":{"x":-6180000000000000000,"y":90100000000000000,"z":-3140000000000000000}},"30004089":{"solarSystemId":30004089,"solarSystemName":"U:2AOR","location":{"x":-2870000000000000000,"y":1680000000000000000,"z":-4380000000000000000}},"30004090":{"solarSystemId":30004090,"solarSystemName":"H:3AA0","location":{"x":-4170000000000000000,"y":2180000000000000000,"z":-3330000000000000000}},"30004091":{"solarSystemId":30004091,"solarSystemName":"H:KEOR","location":{"x":-3470000000000000000,"y":2690000000000000000,"z":-4440000000000000000}},"30004092":{"solarSystemId":30004092,"solarSystemName":"D:2LK8","location":{"x":-3850000000000000000,"y":2860000000000000000,"z":-2940000000000000000}},"30004093":{"solarSystemId":30004093,"solarSystemName":"Y:I1K1","location":{"x":-3320000000000000000,"y":1820000000000000000,"z":-4070000000000000000}},"30004094":{"solarSystemId":30004094,"solarSystemName":"F:S339","location":{"x":-3810000000000000000,"y":2680000000000000000,"z":-4270000000000000000}},"30004095":{"solarSystemId":30004095,"solarSystemName":"P:28T3","location":{"x":-5070000000000000000,"y":2700000000000000000,"z":-3360000000000000000}},"30004096":{"solarSystemId":30004096,"solarSystemName":"G:19V3","location":{"x":-5070000000000000000,"y":2160000000000000000,"z":-2440000000000000000}},"30004097":{"solarSystemId":30004097,"solarSystemName":"Z:OT86","location":{"x":-5240000000000000000,"y":1820000000000000000,"z":-3250000000000000000}},"30004098":{"solarSystemId":30004098,"solarSystemName":"F:3805","location":{"x":-4910000000000000000,"y":1440000000000000000,"z":-2430000000000000000}},"30004099":{"solarSystemId":30004099,"solarSystemName":"G:2VV1","location":{"x":-4930000000000000000,"y":2590000000000000000,"z":-1860000000000000000}},"30004100":{"solarSystemId":30004100,"solarSystemName":"Z:3IRN","location":{"x":-4460000000000000000,"y":1740000000000000000,"z":-3900000000000000000}},"30004101":{"solarSystemId":30004101,"solarSystemName":"F:394L","location":{"x":-4640000000000000000,"y":1570000000000000000,"z":-4060000000000000000}},"30004102":{"solarSystemId":30004102,"solarSystemName":"B:2KKR","location":{"x":-4600000000000000000,"y":2600000000000000000,"z":-2950000000000000000}},"30004103":{"solarSystemId":30004103,"solarSystemName":"M:2SI5","location":{"x":-2750000000000000000,"y":1580000000000000000,"z":-4170000000000000000}},"30004104":{"solarSystemId":30004104,"solarSystemName":"U:2EII","location":{"x":-3990000000000000000,"y":2110000000000000000,"z":-2480000000000000000}},"30004105":{"solarSystemId":30004105,"solarSystemName":"G:3T2L","location":{"x":-4870000000000000000,"y":2410000000000000000,"z":-2650000000000000000}},"30004106":{"solarSystemId":30004106,"solarSystemName":"J:2SS9","location":{"x":-3100000000000000000,"y":1380000000000000000,"z":-2940000000000000000}},"30004107":{"solarSystemId":30004107,"solarSystemName":"B:349E","location":{"x":-2880000000000000000,"y":1190000000000000000,"z":-2930000000000000000}},"30004108":{"solarSystemId":30004108,"solarSystemName":"Y:38L5","location":{"x":-4650000000000000000,"y":1260000000000000000,"z":-2150000000000000000}},"30004109":{"solarSystemId":30004109,"solarSystemName":"P:325K","location":{"x":-4130000000000000000,"y":1190000000000000000,"z":-1820000000000000000}},"30004110":{"solarSystemId":30004110,"solarSystemName":"F:3A01","location":{"x":-4430000000000000000,"y":554000000000000000,"z":-2080000000000000000}},"30004111":{"solarSystemId":30004111,"solarSystemName":"Y:1IOO","location":{"x":-3570000000000000000,"y":1160000000000000000,"z":-2890000000000000000}},"30004112":{"solarSystemId":30004112,"solarSystemName":"F:214R","location":{"x":-4050000000000000000,"y":368000000000000000,"z":-2550000000000000000}},"30004113":{"solarSystemId":30004113,"solarSystemName":"P:2683","location":{"x":-3400000000000000000,"y":1010000000000000000,"z":-1660000000000000000}},"30004114":{"solarSystemId":30004114,"solarSystemName":"P:2IE1","location":{"x":-3910000000000000000,"y":1520000000000000000,"z":-3100000000000000000}},"30004115":{"solarSystemId":30004115,"solarSystemName":"Q:3105","location":{"x":-4150000000000000000,"y":1380000000000000000,"z":-2920000000000000000}},"30004116":{"solarSystemId":30004116,"solarSystemName":"B:2A08","location":{"x":-4440000000000000000,"y":1310000000000000000,"z":-2570000000000000000}},"30004117":{"solarSystemId":30004117,"solarSystemName":"U:2S01","location":{"x":-3320000000000000000,"y":1050000000000000000,"z":-2940000000000000000}},"30004118":{"solarSystemId":30004118,"solarSystemName":"M:2VS4","location":{"x":-3750000000000000000,"y":999000000000000000,"z":-2700000000000000000}},"30004119":{"solarSystemId":30004119,"solarSystemName":"Y:323E","location":{"x":-4100000000000000000,"y":1040000000000000000,"z":-2510000000000000000}},"30004120":{"solarSystemId":30004120,"solarSystemName":"Y:2E48","location":{"x":-3480000000000000000,"y":656000000000000000,"z":-1800000000000000000}},"30004121":{"solarSystemId":30004121,"solarSystemName":"H:2ERK","location":{"x":-2840000000000000000,"y":1250000000000000000,"z":-3020000000000000000}},"30004122":{"solarSystemId":30004122,"solarSystemName":"Z:3ISN","location":{"x":-3440000000000000000,"y":1300000000000000000,"z":-2060000000000000000}},"30004123":{"solarSystemId":30004123,"solarSystemName":"U:2TE5","location":{"x":-5050000000000000000,"y":1210000000000000000,"z":-5420000000000000000}},"30004124":{"solarSystemId":30004124,"solarSystemName":"Y:326N","location":{"x":-6620000000000000000,"y":1210000000000000000,"z":-5280000000000000000}},"30004125":{"solarSystemId":30004125,"solarSystemName":"J:15S9","location":{"x":-6870000000000000000,"y":2080000000000000000,"z":-5610000000000000000}},"30004126":{"solarSystemId":30004126,"solarSystemName":"M:I1S1","location":{"x":-6670000000000000000,"y":963000000000000000,"z":-5280000000000000000}},"30004127":{"solarSystemId":30004127,"solarSystemName":"F:21EI","location":{"x":-4460000000000000000,"y":2260000000000000000,"z":-4710000000000000000}},"30004128":{"solarSystemId":30004128,"solarSystemName":"M:ALK3","location":{"x":-6080000000000000000,"y":1620000000000000000,"z":-5530000000000000000}},"30004129":{"solarSystemId":30004129,"solarSystemName":"Y:1ANS","location":{"x":-5520000000000000000,"y":1460000000000000000,"z":-4490000000000000000}},"30004130":{"solarSystemId":30004130,"solarSystemName":"U:13NN","location":{"x":-5460000000000000000,"y":907000000000000000,"z":-4550000000000000000}},"30004131":{"solarSystemId":30004131,"solarSystemName":"P:2EON","location":{"x":-4660000000000000000,"y":1660000000000000000,"z":-4600000000000000000}},"30004132":{"solarSystemId":30004132,"solarSystemName":"H:2VVA","location":{"x":-6300000000000000000,"y":943000000000000000,"z":-4730000000000000000}},"30004133":{"solarSystemId":30004133,"solarSystemName":"P:E3EK","location":{"x":-5510000000000000000,"y":1440000000000000000,"z":-3220000000000000000}},"30004134":{"solarSystemId":30004134,"solarSystemName":"Y:2KOT","location":{"x":-5210000000000000000,"y":1230000000000000000,"z":-5660000000000000000}},"30004135":{"solarSystemId":30004135,"solarSystemName":"G:2T4A","location":{"x":-5340000000000000000,"y":1250000000000000000,"z":-3760000000000000000}},"30004136":{"solarSystemId":30004136,"solarSystemName":"P:3VN5","location":{"x":-5290000000000000000,"y":1720000000000000000,"z":-5090000000000000000}},"30004137":{"solarSystemId":30004137,"solarSystemName":"P:NVK3","location":{"x":-5680000000000000000,"y":1490000000000000000,"z":-3540000000000000000}},"30004138":{"solarSystemId":30004138,"solarSystemName":"Q:1563","location":{"x":-5890000000000000000,"y":2020000000000000000,"z":-4070000000000000000}},"30004139":{"solarSystemId":30004139,"solarSystemName":"Z:1R1R","location":{"x":-6010000000000000000,"y":2160000000000000000,"z":-5150000000000000000}},"30004140":{"solarSystemId":30004140,"solarSystemName":"H:S0VA","location":{"x":-5360000000000000000,"y":1270000000000000000,"z":-4350000000000000000}},"30004141":{"solarSystemId":30004141,"solarSystemName":"Z:381K","location":{"x":-5920000000000000000,"y":2260000000000000000,"z":-5550000000000000000}},"30004142":{"solarSystemId":30004142,"solarSystemName":"J:2ETT","location":{"x":-5720000000000000000,"y":2710000000000000000,"z":-1930000000000000000}},"30004143":{"solarSystemId":30004143,"solarSystemName":"D:2AK4","location":{"x":-5690000000000000000,"y":1530000000000000000,"z":-2110000000000000000}},"30004144":{"solarSystemId":30004144,"solarSystemName":"B:30TV","location":{"x":-6080000000000000000,"y":2570000000000000000,"z":-2820000000000000000}},"30004145":{"solarSystemId":30004145,"solarSystemName":"B:VLTI","location":{"x":-5860000000000000000,"y":854000000000000000,"z":-2510000000000000000}},"30004146":{"solarSystemId":30004146,"solarSystemName":"H:1R23","location":{"x":-4780000000000000000,"y":1280000000000000000,"z":-1570000000000000000}},"30004147":{"solarSystemId":30004147,"solarSystemName":"P:1E5I","location":{"x":-5710000000000000000,"y":2370000000000000000,"z":-2120000000000000000}},"30004148":{"solarSystemId":30004148,"solarSystemName":"Q:2124","location":{"x":-6080000000000000000,"y":559000000000000000,"z":-2430000000000000000}},"30004149":{"solarSystemId":30004149,"solarSystemName":"P:1TNI","location":{"x":-5960000000000000000,"y":945000000000000000,"z":-2620000000000000000}},"30004150":{"solarSystemId":30004150,"solarSystemName":"D:29LK","location":{"x":-6620000000000000000,"y":1590000000000000000,"z":-2940000000000000000}},"30004151":{"solarSystemId":30004151,"solarSystemName":"Z:3V66","location":{"x":-6020000000000000000,"y":590000000000000000,"z":-1690000000000000000}},"30004152":{"solarSystemId":30004152,"solarSystemName":"P:367A","location":{"x":-5390000000000000000,"y":918000000000000000,"z":-1730000000000000000}},"30004153":{"solarSystemId":30004153,"solarSystemName":"D:2O8R","location":{"x":-4600000000000000000,"y":1250000000000000000,"z":-1520000000000000000}},"30004154":{"solarSystemId":30004154,"solarSystemName":"M:2KL4","location":{"x":-6640000000000000000,"y":1500000000000000000,"z":-1700000000000000000}},"30004155":{"solarSystemId":30004155,"solarSystemName":"Q:3I89","location":{"x":-5900000000000000000,"y":825000000000000000,"z":-2020000000000000000}},"30004156":{"solarSystemId":30004156,"solarSystemName":"Z:37N1","location":{"x":-4580000000000000000,"y":1530000000000000000,"z":-1230000000000000000}},"30004157":{"solarSystemId":30004157,"solarSystemName":"P:3II7","location":{"x":-5410000000000000000,"y":1680000000000000000,"z":-1940000000000000000}},"30004158":{"solarSystemId":30004158,"solarSystemName":"G:3ARS","location":{"x":-5970000000000000000,"y":2000000000000000000,"z":-1130000000000000000}},"30004159":{"solarSystemId":30004159,"solarSystemName":"Q:2T0S","location":{"x":-4480000000000000000,"y":-655000000000000000,"z":5820000000000000000}},"30004160":{"solarSystemId":30004160,"solarSystemName":"Y:33EE","location":{"x":-4160000000000000000,"y":-370000000000000000,"z":5570000000000000000}},"30004161":{"solarSystemId":30004161,"solarSystemName":"G:21SK","location":{"x":-4420000000000000000,"y":-355000000000000000,"z":5980000000000000000}},"30004162":{"solarSystemId":30004162,"solarSystemName":"D:1LVR","location":{"x":-3850000000000000000,"y":-607000000000000000,"z":5900000000000000000}},"30004163":{"solarSystemId":30004163,"solarSystemName":"B:1V39","location":{"x":-4550000000000000000,"y":-4510000000000000,"z":5460000000000000000}},"30004164":{"solarSystemId":30004164,"solarSystemName":"M:29EL","location":{"x":-4280000000000000000,"y":-651000000000000000,"z":5830000000000000000}},"30004165":{"solarSystemId":30004165,"solarSystemName":"F:22OL","location":{"x":-3430000000000000000,"y":-600000000000000000,"z":5340000000000000000}},"30004166":{"solarSystemId":30004166,"solarSystemName":"U:1N39","location":{"x":-4090000000000000000,"y":-521000000000000000,"z":5630000000000000000}},"30004167":{"solarSystemId":30004167,"solarSystemName":"F:2VN0","location":{"x":-3500000000000000000,"y":-454000000000000000,"z":5360000000000000000}},"30004168":{"solarSystemId":30004168,"solarSystemName":"J:O275","location":{"x":-3950000000000000000,"y":106000000000000000,"z":5660000000000000000}},"30004169":{"solarSystemId":30004169,"solarSystemName":"Q:3163","location":{"x":-3700000000000000000,"y":-520000000000000000,"z":5430000000000000000}},"30004170":{"solarSystemId":30004170,"solarSystemName":"P:205I","location":{"x":-3930000000000000000,"y":22400000000000000,"z":5520000000000000000}},"30004171":{"solarSystemId":30004171,"solarSystemName":"U:3SA1","location":{"x":-4160000000000000000,"y":-27400000000000000,"z":5860000000000000000}},"30004172":{"solarSystemId":30004172,"solarSystemName":"U:313K","location":{"x":-4650000000000000000,"y":-709000000000000000,"z":5570000000000000000}},"30004173":{"solarSystemId":30004173,"solarSystemName":"Z:2TRN","location":{"x":-4370000000000000000,"y":-108000000000000000,"z":5050000000000000000}},"30004174":{"solarSystemId":30004174,"solarSystemName":"G:2L3L","location":{"x":-4130000000000000000,"y":-850000000000000000,"z":6340000000000000000}},"30004175":{"solarSystemId":30004175,"solarSystemName":"U:E03O","location":{"x":-3940000000000000000,"y":-703000000000000000,"z":5530000000000000000}},"30004176":{"solarSystemId":30004176,"solarSystemName":"G:3RIT","location":{"x":-3940000000000000000,"y":-474000000000000000,"z":5530000000000000000}},"30004177":{"solarSystemId":30004177,"solarSystemName":"H:3173","location":{"x":-4870000000000000000,"y":-378000000000000000,"z":3560000000000000000}},"30004178":{"solarSystemId":30004178,"solarSystemName":"J:3N6A","location":{"x":-4210000000000000000,"y":-1040000000000000000,"z":3970000000000000000}},"30004179":{"solarSystemId":30004179,"solarSystemName":"J:254A","location":{"x":-4490000000000000000,"y":-251000000000000000,"z":3590000000000000000}},"30004180":{"solarSystemId":30004180,"solarSystemName":"M:3SS1","location":{"x":-4390000000000000000,"y":-509000000000000000,"z":4240000000000000000}},"30004181":{"solarSystemId":30004181,"solarSystemName":"D:1155","location":{"x":-4610000000000000000,"y":-684000000000000000,"z":3370000000000000000}},"30004182":{"solarSystemId":30004182,"solarSystemName":"Y:21IR","location":{"x":-4370000000000000000,"y":-892000000000000000,"z":4320000000000000000}},"30004183":{"solarSystemId":30004183,"solarSystemName":"P:KAK7","location":{"x":-4260000000000000000,"y":41100000000000000,"z":4260000000000000000}},"30004184":{"solarSystemId":30004184,"solarSystemName":"F:2SEO","location":{"x":-4820000000000000000,"y":-727000000000000000,"z":3500000000000000000}},"30004185":{"solarSystemId":30004185,"solarSystemName":"P:3TO4","location":{"x":-4470000000000000000,"y":-860000000000000000,"z":3850000000000000000}},"30004186":{"solarSystemId":30004186,"solarSystemName":"B:2N18","location":{"x":-4690000000000000000,"y":-737000000000000000,"z":3560000000000000000}},"30004187":{"solarSystemId":30004187,"solarSystemName":"D:2EK9","location":{"x":-4870000000000000000,"y":-444000000000000000,"z":4130000000000000000}},"30004188":{"solarSystemId":30004188,"solarSystemName":"B:39KK","location":{"x":-4060000000000000000,"y":-1650000000000000000,"z":3680000000000000000}},"30004189":{"solarSystemId":30004189,"solarSystemName":"D:3R4A","location":{"x":-4550000000000000000,"y":40600000000000000,"z":3680000000000000000}},"30004190":{"solarSystemId":30004190,"solarSystemName":"P:39K7","location":{"x":-4490000000000000000,"y":-589000000000000000,"z":3990000000000000000}},"30004191":{"solarSystemId":30004191,"solarSystemName":"H:2N63","location":{"x":-4610000000000000000,"y":37300000000000000,"z":3830000000000000000}},"30004192":{"solarSystemId":30004192,"solarSystemName":"Q:T6T6","location":{"x":-5010000000000000000,"y":-590000000000000000,"z":4450000000000000000}},"30004193":{"solarSystemId":30004193,"solarSystemName":"B:207T","location":{"x":-5190000000000000000,"y":-731000000000000000,"z":4000000000000000000}},"30004194":{"solarSystemId":30004194,"solarSystemName":"H:2OTA","location":{"x":-3860000000000000000,"y":-771000000000000000,"z":3830000000000000000}},"30004195":{"solarSystemId":30004195,"solarSystemName":"Q:2T9I","location":{"x":-4900000000000000000,"y":-2860000000000000000,"z":3970000000000000000}},"30004196":{"solarSystemId":30004196,"solarSystemName":"P:3RRV","location":{"x":-4390000000000000000,"y":-3300000000000000000,"z":5040000000000000000}},"30004197":{"solarSystemId":30004197,"solarSystemName":"D:3VEV","location":{"x":-3960000000000000000,"y":-2900000000000000000,"z":3310000000000000000}},"30004198":{"solarSystemId":30004198,"solarSystemName":"D:3TRK","location":{"x":-4280000000000000000,"y":-1870000000000000000,"z":3510000000000000000}},"30004199":{"solarSystemId":30004199,"solarSystemName":"B:2L1K","location":{"x":-4710000000000000000,"y":-1780000000000000000,"z":4300000000000000000}},"30004200":{"solarSystemId":30004200,"solarSystemName":"Y:2T7N","location":{"x":-5000000000000000000,"y":-1920000000000000000,"z":4050000000000000000}},"30004201":{"solarSystemId":30004201,"solarSystemName":"J:1K4O","location":{"x":-5540000000000000000,"y":-2610000000000000000,"z":4540000000000000000}},"30004202":{"solarSystemId":30004202,"solarSystemName":"B:2TA5","location":{"x":-5020000000000000000,"y":-2230000000000000000,"z":3620000000000000000}},"30004203":{"solarSystemId":30004203,"solarSystemName":"Q:2A4V","location":{"x":-4060000000000000000,"y":-2400000000000000000,"z":3850000000000000000}},"30004204":{"solarSystemId":30004204,"solarSystemName":"M:2V3V","location":{"x":-5990000000000000000,"y":-3140000000000000000,"z":4610000000000000000}},"30004205":{"solarSystemId":30004205,"solarSystemName":"G:2TN9","location":{"x":-5100000000000000000,"y":-2860000000000000000,"z":3510000000000000000}},"30004206":{"solarSystemId":30004206,"solarSystemName":"J:396T","location":{"x":-4870000000000000000,"y":-3310000000000000000,"z":5060000000000000000}},"30004207":{"solarSystemId":30004207,"solarSystemName":"G:3OLO","location":{"x":-5100000000000000000,"y":-1670000000000000000,"z":4100000000000000000}},"30004208":{"solarSystemId":30004208,"solarSystemName":"H:3R6O","location":{"x":-4590000000000000000,"y":-3380000000000000000,"z":3750000000000000000}},"30004209":{"solarSystemId":30004209,"solarSystemName":"U:2E0V","location":{"x":-4500000000000000000,"y":-2680000000000000000,"z":3770000000000000000}},"30004210":{"solarSystemId":30004210,"solarSystemName":"U:3V7O","location":{"x":-3650000000000000000,"y":-4720000000000000000,"z":2900000000000000000}},"30004211":{"solarSystemId":30004211,"solarSystemName":"G:327N","location":{"x":-4290000000000000000,"y":-2380000000000000000,"z":2820000000000000000}},"30004212":{"solarSystemId":30004212,"solarSystemName":"Q:37EA","location":{"x":-3990000000000000000,"y":-2760000000000000000,"z":2770000000000000000}},"30004213":{"solarSystemId":30004213,"solarSystemName":"P:2N9V","location":{"x":-3270000000000000000,"y":-3630000000000000000,"z":2980000000000000000}},"30004214":{"solarSystemId":30004214,"solarSystemName":"D:33KE","location":{"x":-4650000000000000000,"y":-4170000000000000000,"z":3830000000000000000}},"30004215":{"solarSystemId":30004215,"solarSystemName":"Y:3R0A","location":{"x":-3740000000000000000,"y":-4740000000000000000,"z":3330000000000000000}},"30004216":{"solarSystemId":30004216,"solarSystemName":"G:296L","location":{"x":-4080000000000000000,"y":-3690000000000000000,"z":3260000000000000000}},"30004217":{"solarSystemId":30004217,"solarSystemName":"D:2ER2","location":{"x":-3910000000000000000,"y":-3780000000000000000,"z":4630000000000000000}},"30004218":{"solarSystemId":30004218,"solarSystemName":"M:338O","location":{"x":-4170000000000000000,"y":-1910000000000000000,"z":2970000000000000000}},"30004219":{"solarSystemId":30004219,"solarSystemName":"J:2TOL","location":{"x":-2880000000000000000,"y":-4220000000000000000,"z":3660000000000000000}},"30004220":{"solarSystemId":30004220,"solarSystemName":"M:2R08","location":{"x":-4610000000000000000,"y":-3520000000000000000,"z":2480000000000000000}},"30004221":{"solarSystemId":30004221,"solarSystemName":"Q:3SSL","location":{"x":-4430000000000000000,"y":-1950000000000000000,"z":5140000000000000000}},"30004222":{"solarSystemId":30004222,"solarSystemName":"J:353O","location":{"x":-4830000000000000000,"y":-1840000000000000000,"z":4900000000000000000}},"30004223":{"solarSystemId":30004223,"solarSystemName":"B:16NI","location":{"x":-4890000000000000000,"y":-1760000000000000000,"z":4620000000000000000}},"30004224":{"solarSystemId":30004224,"solarSystemName":"H:18VN","location":{"x":-4320000000000000000,"y":-868000000000000000,"z":6350000000000000000}},"30004225":{"solarSystemId":30004225,"solarSystemName":"J:29RN","location":{"x":-5340000000000000000,"y":-1300000000000000000,"z":5640000000000000000}},"30004226":{"solarSystemId":30004226,"solarSystemName":"J:L64R","location":{"x":-5240000000000000000,"y":-1460000000000000000,"z":6140000000000000000}},"30004227":{"solarSystemId":30004227,"solarSystemName":"G:1LS1","location":{"x":-4580000000000000000,"y":-1180000000000000000,"z":5650000000000000000}},"30004228":{"solarSystemId":30004228,"solarSystemName":"M:2610","location":{"x":-4820000000000000000,"y":-1160000000000000000,"z":5800000000000000000}},"30004229":{"solarSystemId":30004229,"solarSystemName":"G:25ES","location":{"x":-4770000000000000000,"y":-1970000000000000000,"z":5730000000000000000}},"30004230":{"solarSystemId":30004230,"solarSystemName":"Q:3VRK","location":{"x":-4360000000000000000,"y":-1640000000000000000,"z":5500000000000000000}},"30004231":{"solarSystemId":30004231,"solarSystemName":"F:2OV3","location":{"x":-4760000000000000000,"y":-1550000000000000000,"z":5420000000000000000}},"30004232":{"solarSystemId":30004232,"solarSystemName":"D:3VOS","location":{"x":-5300000000000000000,"y":-2560000000000000000,"z":6010000000000000000}},"30004233":{"solarSystemId":30004233,"solarSystemName":"Z:2R69","location":{"x":-4700000000000000000,"y":-1520000000000000000,"z":5230000000000000000}},"30004234":{"solarSystemId":30004234,"solarSystemName":"H:30LS","location":{"x":-5330000000000000000,"y":-1710000000000000000,"z":4960000000000000000}},"30004235":{"solarSystemId":30004235,"solarSystemName":"B:3983","location":{"x":-4740000000000000000,"y":-1130000000000000000,"z":6200000000000000000}},"30004236":{"solarSystemId":30004236,"solarSystemName":"F:SN90","location":{"x":-4820000000000000000,"y":-1690000000000000000,"z":6330000000000000000}},"30004237":{"solarSystemId":30004237,"solarSystemName":"F:3T11","location":{"x":-5020000000000000000,"y":-2400000000000000000,"z":6460000000000000000}},"30004238":{"solarSystemId":30004238,"solarSystemName":"D:2LI1","location":{"x":-3230000000000000000,"y":-1270000000000000000,"z":5280000000000000000}},"30004239":{"solarSystemId":30004239,"solarSystemName":"Y:2O9O","location":{"x":-2840000000000000000,"y":-824000000000000000,"z":5190000000000000000}},"30004240":{"solarSystemId":30004240,"solarSystemName":"Y:RT55","location":{"x":-2620000000000000000,"y":-1780000000000000000,"z":6790000000000000000}},"30004241":{"solarSystemId":30004241,"solarSystemName":"Q:1969","location":{"x":-3130000000000000000,"y":-1390000000000000000,"z":5890000000000000000}},"30004242":{"solarSystemId":30004242,"solarSystemName":"B:2AKA","location":{"x":-3620000000000000000,"y":-1810000000000000000,"z":5460000000000000000}},"30004243":{"solarSystemId":30004243,"solarSystemName":"B:1NKN","location":{"x":-3330000000000000000,"y":-1590000000000000000,"z":5360000000000000000}},"30004244":{"solarSystemId":30004244,"solarSystemName":"B:2ON0","location":{"x":-2550000000000000000,"y":-1330000000000000000,"z":5140000000000000000}},"30004245":{"solarSystemId":30004245,"solarSystemName":"M:1VR5","location":{"x":-3070000000000000000,"y":-630000000000000000,"z":5530000000000000000}},"30004246":{"solarSystemId":30004246,"solarSystemName":"U:2782","location":{"x":-2620000000000000000,"y":-1460000000000000000,"z":5140000000000000000}},"30004247":{"solarSystemId":30004247,"solarSystemName":"Y:26T7","location":{"x":-3710000000000000000,"y":-1290000000000000000,"z":6660000000000000000}},"30004248":{"solarSystemId":30004248,"solarSystemName":"Y:28I0","location":{"x":-3130000000000000000,"y":-902000000000000000,"z":6070000000000000000}},"30004249":{"solarSystemId":30004249,"solarSystemName":"U:1L0S","location":{"x":-2720000000000000000,"y":-1460000000000000000,"z":6620000000000000000}},"30004250":{"solarSystemId":30004250,"solarSystemName":"F:4861","location":{"x":-2780000000000000000,"y":-521000000000000000,"z":5860000000000000000}},"30004251":{"solarSystemId":30004251,"solarSystemName":"M:37RN","location":{"x":-2660000000000000000,"y":-1770000000000000000,"z":6810000000000000000}},"30004252":{"solarSystemId":30004252,"solarSystemName":"F:3V0A","location":{"x":-2400000000000000000,"y":-1160000000000000000,"z":5550000000000000000}},"30004253":{"solarSystemId":30004253,"solarSystemName":"P:2SS2","location":{"x":-3440000000000000000,"y":-907000000000000000,"z":6240000000000000000}},"30004254":{"solarSystemId":30004254,"solarSystemName":"B:2EV3","location":{"x":-3820000000000000000,"y":-2070000000000000000,"z":5960000000000000000}},"30004255":{"solarSystemId":30004255,"solarSystemName":"H:2KIO","location":{"x":-6620000000000000000,"y":-2360000000000000000,"z":5710000000000000000}},"30004256":{"solarSystemId":30004256,"solarSystemName":"H:33S6","location":{"x":-6410000000000000000,"y":-2060000000000000000,"z":5330000000000000000}},"30004257":{"solarSystemId":30004257,"solarSystemName":"Z:1NIK","location":{"x":-5190000000000000000,"y":-1680000000000000000,"z":6690000000000000000}},"30004258":{"solarSystemId":30004258,"solarSystemName":"Y:3RLI","location":{"x":-6130000000000000000,"y":-1670000000000000000,"z":6310000000000000000}},"30004259":{"solarSystemId":30004259,"solarSystemName":"Q:1V30","location":{"x":-6540000000000000000,"y":-1220000000000000000,"z":6050000000000000000}},"30004260":{"solarSystemId":30004260,"solarSystemName":"B:3NN9","location":{"x":-5910000000000000000,"y":-1020000000000000000,"z":6540000000000000000}},"30004261":{"solarSystemId":30004261,"solarSystemName":"H:1E82","location":{"x":-6640000000000000000,"y":-1000000000000000000,"z":5890000000000000000}},"30004262":{"solarSystemId":30004262,"solarSystemName":"J:3I11","location":{"x":-6820000000000000000,"y":-1750000000000000000,"z":6310000000000000000}},"30004263":{"solarSystemId":30004263,"solarSystemName":"F:29K5","location":{"x":-5910000000000000000,"y":-2540000000000000000,"z":6180000000000000000}},"30004264":{"solarSystemId":30004264,"solarSystemName":"U:S4RV","location":{"x":-5930000000000000000,"y":-1360000000000000000,"z":5730000000000000000}},"30004265":{"solarSystemId":30004265,"solarSystemName":"U:3L73","location":{"x":-5470000000000000000,"y":-1550000000000000000,"z":7150000000000000000}},"30004266":{"solarSystemId":30004266,"solarSystemName":"B:3N05","location":{"x":-5740000000000000000,"y":-1530000000000000000,"z":6320000000000000000}},"30004267":{"solarSystemId":30004267,"solarSystemName":"D:3VRV","location":{"x":-5440000000000000000,"y":-1160000000000000000,"z":6590000000000000000}},"30004268":{"solarSystemId":30004268,"solarSystemName":"Z:277S","location":{"x":-7020000000000000000,"y":-2220000000000000000,"z":5200000000000000000}},"30004269":{"solarSystemId":30004269,"solarSystemName":"J:SSA8","location":{"x":-5960000000000000000,"y":-1930000000000000000,"z":6420000000000000000}},"30004270":{"solarSystemId":30004270,"solarSystemName":"B:386N","location":{"x":-6180000000000000000,"y":-1090000000000000000,"z":6230000000000000000}},"30004271":{"solarSystemId":30004271,"solarSystemName":"H:2A2O","location":{"x":-3080000000000000000,"y":-108000000000000000,"z":5220000000000000000}},"30004272":{"solarSystemId":30004272,"solarSystemName":"B:3462","location":{"x":-3240000000000000000,"y":-643000000000000000,"z":3480000000000000000}},"30004273":{"solarSystemId":30004273,"solarSystemName":"Y:33VA","location":{"x":-3200000000000000000,"y":-984000000000000000,"z":4310000000000000000}},"30004274":{"solarSystemId":30004274,"solarSystemName":"P:O9E0","location":{"x":-3540000000000000000,"y":-215000000000000000,"z":4240000000000000000}},"30004275":{"solarSystemId":30004275,"solarSystemName":"B:43KA","location":{"x":-3680000000000000000,"y":-111000000000000000,"z":3470000000000000000}},"30004276":{"solarSystemId":30004276,"solarSystemName":"Q:2A68","location":{"x":-3740000000000000000,"y":-668000000000000000,"z":3900000000000000000}},"30004277":{"solarSystemId":30004277,"solarSystemName":"P:10T1","location":{"x":-4070000000000000000,"y":9190000000000000,"z":5050000000000000000}},"30004278":{"solarSystemId":30004278,"solarSystemName":"Q:2557","location":{"x":-3560000000000000000,"y":-384000000000000000,"z":3920000000000000000}},"30004279":{"solarSystemId":30004279,"solarSystemName":"Y:37VN","location":{"x":-3990000000000000000,"y":-183000000000000000,"z":4440000000000000000}},"30004280":{"solarSystemId":30004280,"solarSystemName":"B:2T17","location":{"x":-3350000000000000000,"y":45000000000000000,"z":4860000000000000000}},"30004281":{"solarSystemId":30004281,"solarSystemName":"B:31NL","location":{"x":-4070000000000000000,"y":345000000000000000,"z":4940000000000000000}},"30004282":{"solarSystemId":30004282,"solarSystemName":"M:RSN3","location":{"x":-3110000000000000000,"y":206000000000000000,"z":3790000000000000000}},"30004283":{"solarSystemId":30004283,"solarSystemName":"D:2768","location":{"x":-3690000000000000000,"y":-373000000000000000,"z":4310000000000000000}},"30004284":{"solarSystemId":30004284,"solarSystemName":"Q:28R9","location":{"x":-4470000000000000000,"y":-316000000000000000,"z":4870000000000000000}},"30004285":{"solarSystemId":30004285,"solarSystemName":"G:3N1L","location":{"x":-3660000000000000000,"y":-321000000000000000,"z":3920000000000000000}},"30004286":{"solarSystemId":30004286,"solarSystemName":"Y:EK5V","location":{"x":-3920000000000000000,"y":-168000000000000000,"z":3730000000000000000}},"30004287":{"solarSystemId":30004287,"solarSystemName":"G:E7AS","location":{"x":-3760000000000000000,"y":-959000000000000000,"z":4170000000000000000}},"30004288":{"solarSystemId":30004288,"solarSystemName":"Z:30VN","location":{"x":-3900000000000000000,"y":-1040000000000000000,"z":4740000000000000000}},"30004289":{"solarSystemId":30004289,"solarSystemName":"B:3SVI","location":{"x":-2920000000000000000,"y":200000000000000000,"z":-228000000000000000}},"30004290":{"solarSystemId":30004290,"solarSystemName":"J:2VK8","location":{"x":-3000000000000000000,"y":432000000000000000,"z":204000000000000000}},"30004291":{"solarSystemId":30004291,"solarSystemName":"J:3S94","location":{"x":-2950000000000000000,"y":411000000000000000,"z":535000000000000000}},"30004292":{"solarSystemId":30004292,"solarSystemName":"Y:3730","location":{"x":-2680000000000000000,"y":131000000000000000,"z":323000000000000000}},"30004293":{"solarSystemId":30004293,"solarSystemName":"Q:2L4S","location":{"x":-2750000000000000000,"y":156000000000000000,"z":-12300000000000000}},"30004294":{"solarSystemId":30004294,"solarSystemName":"U:30OS","location":{"x":-2740000000000000000,"y":841000000000000000,"z":-67400000000000000}},"30004295":{"solarSystemId":30004295,"solarSystemName":"F:331O","location":{"x":-2940000000000000000,"y":205000000000000000,"z":-115000000000000000}},"30004296":{"solarSystemId":30004296,"solarSystemName":"Z:2R2O","location":{"x":-2880000000000000000,"y":384000000000000000,"z":-72500000000000000}},"30004297":{"solarSystemId":30004297,"solarSystemName":"H:3V6N","location":{"x":-3010000000000000000,"y":113000000000000000,"z":219000000000000000}},"30004298":{"solarSystemId":30004298,"solarSystemName":"F:2KLK","location":{"x":-2900000000000000000,"y":185000000000000000,"z":-141000000000000000}},"30004299":{"solarSystemId":30004299,"solarSystemName":"D:328A","location":{"x":-3130000000000000000,"y":195000000000000000,"z":534000000000000000}},"30004300":{"solarSystemId":30004300,"solarSystemName":"Y:2EIE","location":{"x":-2980000000000000000,"y":535000000000000000,"z":174000000000000000}},"30004301":{"solarSystemId":30004301,"solarSystemName":"Y:30OK","location":{"x":-2510000000000000000,"y":300000000000000000,"z":308000000000000000}},"30004302":{"solarSystemId":30004302,"solarSystemName":"U:31A4","location":{"x":-2540000000000000000,"y":580000000000000000,"z":230000000000000000}},"30004303":{"solarSystemId":30004303,"solarSystemName":"B:3SKL","location":{"x":-2670000000000000000,"y":538000000000000000,"z":-9090000000000000}},"30004304":{"solarSystemId":30004304,"solarSystemName":"Y:3OL2","location":{"x":-3150000000000000000,"y":335000000000000000,"z":375000000000000000}},"30004305":{"solarSystemId":30004305,"solarSystemName":"B:34L0","location":{"x":-2860000000000000000,"y":491000000000000000,"z":-291000000000000000}},"30004306":{"solarSystemId":30004306,"solarSystemName":"B:33NL","location":{"x":-3020000000000000000,"y":168000000000000000,"z":-263000000000000000}},"30004307":{"solarSystemId":30004307,"solarSystemName":"M:3S99","location":{"x":-3240000000000000000,"y":-120000000000000000,"z":261000000000000000}},"30004308":{"solarSystemId":30004308,"solarSystemName":"F:32EO","location":{"x":-3320000000000000000,"y":123000000000000000,"z":227000000000000000}},"30004309":{"solarSystemId":30004309,"solarSystemName":"U:3IIE","location":{"x":-3150000000000000000,"y":-206000000000000000,"z":176000000000000000}},"30004310":{"solarSystemId":30004310,"solarSystemName":"M:2L1E","location":{"x":-3290000000000000000,"y":-12000000000000000,"z":216000000000000000}},"30004311":{"solarSystemId":30004311,"solarSystemName":"B:3V2E","location":{"x":-3220000000000000000,"y":-11400000000000000,"z":28900000000000000}},"30004312":{"solarSystemId":30004312,"solarSystemName":"G:2RN4","location":{"x":-3300000000000000000,"y":131000000000000000,"z":216000000000000000}},"30004313":{"solarSystemId":30004313,"solarSystemName":"F:3R72","location":{"x":-3450000000000000000,"y":-86900000000000000,"z":205000000000000000}},"30004314":{"solarSystemId":30004314,"solarSystemName":"Q:2K93","location":{"x":-3240000000000000000,"y":-130000000000000000,"z":169000000000000000}},"30004315":{"solarSystemId":30004315,"solarSystemName":"P:34OK","location":{"x":-3150000000000000000,"y":-162000000000000000,"z":72600000000000000}},"30004316":{"solarSystemId":30004316,"solarSystemName":"B:3I6A","location":{"x":-3280000000000000000,"y":-264000000000000000,"z":48600000000000000}},"30004317":{"solarSystemId":30004317,"solarSystemName":"Z:3IL1","location":{"x":-3210000000000000000,"y":-43400000000000000,"z":142000000000000000}},"30004318":{"solarSystemId":30004318,"solarSystemName":"U:3SAO","location":{"x":-3210000000000000000,"y":46700000000000000,"z":286000000000000000}},"30004319":{"solarSystemId":30004319,"solarSystemName":"U:2L38","location":{"x":-3290000000000000000,"y":-190000000000000000,"z":238000000000000000}},"30004320":{"solarSystemId":30004320,"solarSystemName":"M:2R70","location":{"x":-3350000000000000000,"y":-200000000000000000,"z":142000000000000000}},"30004321":{"solarSystemId":30004321,"solarSystemName":"J:39KS","location":{"x":-3200000000000000000,"y":-298000000000000000,"z":148000000000000000}},"30004322":{"solarSystemId":30004322,"solarSystemName":"G:3AN0","location":{"x":-3250000000000000000,"y":-8710000000000000,"z":389000000000000000}},"30004323":{"solarSystemId":30004323,"solarSystemName":"Y:324K","location":{"x":-3150000000000000000,"y":-48100000000000000,"z":222000000000000000}},"30004324":{"solarSystemId":30004324,"solarSystemName":"D:3TN2","location":{"x":-3140000000000000000,"y":-173000000000000000,"z":-71400000000000000}},"30004325":{"solarSystemId":30004325,"solarSystemName":"Q:34LO","location":{"x":-4080000000000000000,"y":182000000000000000,"z":449000000000000000}},"30004326":{"solarSystemId":30004326,"solarSystemName":"B:3NK5","location":{"x":-4400000000000000000,"y":1050000000000000000,"z":837000000000000000}},"30004327":{"solarSystemId":30004327,"solarSystemName":"P:2LEO","location":{"x":-4890000000000000000,"y":766000000000000000,"z":352000000000000000}},"30004328":{"solarSystemId":30004328,"solarSystemName":"M:325A","location":{"x":-4140000000000000000,"y":206000000000000000,"z":537000000000000000}},"30004329":{"solarSystemId":30004329,"solarSystemName":"M:3015","location":{"x":-4340000000000000000,"y":474000000000000000,"z":964000000000000000}},"30004330":{"solarSystemId":30004330,"solarSystemName":"Q:3ILN","location":{"x":-4680000000000000000,"y":417000000000000000,"z":449000000000000000}},"30004331":{"solarSystemId":30004331,"solarSystemName":"D:3O02","location":{"x":-4300000000000000000,"y":788000000000000000,"z":918000000000000000}},"30004332":{"solarSystemId":30004332,"solarSystemName":"Y:3390","location":{"x":-4140000000000000000,"y":764000000000000000,"z":853000000000000000}},"30004333":{"solarSystemId":30004333,"solarSystemName":"F:3976","location":{"x":-4350000000000000000,"y":650000000000000000,"z":436000000000000000}},"30004334":{"solarSystemId":30004334,"solarSystemName":"M:2V4I","location":{"x":-3790000000000000000,"y":452000000000000000,"z":879000000000000000}},"30004335":{"solarSystemId":30004335,"solarSystemName":"G:3IKL","location":{"x":-4040000000000000000,"y":285000000000000000,"z":526000000000000000}},"30004336":{"solarSystemId":30004336,"solarSystemName":"D:12V8","location":{"x":-4390000000000000000,"y":368000000000000000,"z":1130000000000000000}},"30004337":{"solarSystemId":30004337,"solarSystemName":"H:3TSL","location":{"x":-4490000000000000000,"y":439000000000000000,"z":993000000000000000}},"30004338":{"solarSystemId":30004338,"solarSystemName":"B:1689","location":{"x":-4830000000000000000,"y":246000000000000000,"z":787000000000000000}},"30004339":{"solarSystemId":30004339,"solarSystemName":"U:294S","location":{"x":-4440000000000000000,"y":511000000000000000,"z":464000000000000000}},"30004340":{"solarSystemId":30004340,"solarSystemName":"B:2NNA","location":{"x":-4270000000000000000,"y":914000000000000000,"z":1120000000000000000}},"30004341":{"solarSystemId":30004341,"solarSystemName":"D:39KE","location":{"x":-3900000000000000000,"y":736000000000000000,"z":729000000000000000}},"30004342":{"solarSystemId":30004342,"solarSystemName":"F:3AEI","location":{"x":-4240000000000000000,"y":629000000000000000,"z":942000000000000000}},"30004343":{"solarSystemId":30004343,"solarSystemName":"P:2ON9","location":{"x":-4180000000000000000,"y":289000000000000000,"z":445000000000000000}},"30004344":{"solarSystemId":30004344,"solarSystemName":"Q:36V3","location":{"x":-3880000000000000000,"y":300000000000000000,"z":898000000000000000}},"30004345":{"solarSystemId":30004345,"solarSystemName":"Z:2N1N","location":{"x":-4250000000000000000,"y":336000000000000000,"z":691000000000000000}},"30004346":{"solarSystemId":30004346,"solarSystemName":"B:35KS","location":{"x":-3790000000000000000,"y":1520000000000000000,"z":21200000000000000}},"30004347":{"solarSystemId":30004347,"solarSystemName":"J:3087","location":{"x":-4910000000000000000,"y":1490000000000000000,"z":-213000000000000000}},"30004348":{"solarSystemId":30004348,"solarSystemName":"H:2EAA","location":{"x":-4040000000000000000,"y":1110000000000000000,"z":-867000000000000000}},"30004349":{"solarSystemId":30004349,"solarSystemName":"M:2ILV","location":{"x":-3840000000000000000,"y":1410000000000000000,"z":-521000000000000000}},"30004350":{"solarSystemId":30004350,"solarSystemName":"Z:2I2N","location":{"x":-4910000000000000000,"y":1270000000000000000,"z":-568000000000000000}},"30004351":{"solarSystemId":30004351,"solarSystemName":"U:3T00","location":{"x":-4830000000000000000,"y":1070000000000000000,"z":-127000000000000000}},"30004352":{"solarSystemId":30004352,"solarSystemName":"J:2R9A","location":{"x":-4970000000000000000,"y":1350000000000000000,"z":-255000000000000000}},"30004353":{"solarSystemId":30004353,"solarSystemName":"U:29LV","location":{"x":-4320000000000000000,"y":1280000000000000000,"z":-288000000000000000}},"30004354":{"solarSystemId":30004354,"solarSystemName":"Z:30EK","location":{"x":-4590000000000000000,"y":1380000000000000000,"z":87200000000000000}},"30004355":{"solarSystemId":30004355,"solarSystemName":"M:2A46","location":{"x":-4580000000000000000,"y":831000000000000000,"z":-404000000000000000}},"30004356":{"solarSystemId":30004356,"solarSystemName":"U:2KE6","location":{"x":-4540000000000000000,"y":1630000000000000000,"z":-257000000000000000}},"30004357":{"solarSystemId":30004357,"solarSystemName":"G:3I3R","location":{"x":-4670000000000000000,"y":1140000000000000000,"z":-796000000000000000}},"30004358":{"solarSystemId":30004358,"solarSystemName":"Z:2NEA","location":{"x":-3730000000000000000,"y":1480000000000000000,"z":-80500000000000000}},"30004359":{"solarSystemId":30004359,"solarSystemName":"D:2N5I","location":{"x":-5010000000000000000,"y":786000000000000000,"z":88900000000000000}},"30004360":{"solarSystemId":30004360,"solarSystemName":"M:2VTO","location":{"x":-3730000000000000000,"y":1340000000000000000,"z":-49200000000000000}},"30004361":{"solarSystemId":30004361,"solarSystemName":"P:38AN","location":{"x":-3920000000000000000,"y":1840000000000000000,"z":-280000000000000000}},"30004362":{"solarSystemId":30004362,"solarSystemName":"H:388K","location":{"x":-4400000000000000000,"y":1190000000000000000,"z":-147000000000000000}},"30004363":{"solarSystemId":30004363,"solarSystemName":"Z:31KE","location":{"x":-3810000000000000000,"y":428000000000000000,"z":555000000000000000}},"30004364":{"solarSystemId":30004364,"solarSystemName":"J:32K6","location":{"x":-3580000000000000000,"y":197000000000000000,"z":587000000000000000}},"30004365":{"solarSystemId":30004365,"solarSystemName":"H:3AL9","location":{"x":-3630000000000000000,"y":-123000000000000000,"z":562000000000000000}},"30004366":{"solarSystemId":30004366,"solarSystemName":"U:3IN7","location":{"x":-3820000000000000000,"y":269000000000000000,"z":606000000000000000}},"30004367":{"solarSystemId":30004367,"solarSystemName":"D:3ONK","location":{"x":-3760000000000000000,"y":179000000000000000,"z":882000000000000000}},"30004368":{"solarSystemId":30004368,"solarSystemName":"J:35KI","location":{"x":-3490000000000000000,"y":20600000000000000,"z":561000000000000000}},"30004369":{"solarSystemId":30004369,"solarSystemName":"U:2E6N","location":{"x":-3420000000000000000,"y":341000000000000000,"z":338000000000000000}},"30004370":{"solarSystemId":30004370,"solarSystemName":"M:35TE","location":{"x":-3780000000000000000,"y":250000000000000000,"z":915000000000000000}},"30004371":{"solarSystemId":30004371,"solarSystemName":"Q:I5T8","location":{"x":-3860000000000000000,"y":199000000000000000,"z":458000000000000000}},"30004372":{"solarSystemId":30004372,"solarSystemName":"P:19OT","location":{"x":-3600000000000000000,"y":259000000000000000,"z":236000000000000000}},"30004373":{"solarSystemId":30004373,"solarSystemName":"B:2RNO","location":{"x":-3550000000000000000,"y":-34800000000000000,"z":826000000000000000}},"30004374":{"solarSystemId":30004374,"solarSystemName":"M:2L87","location":{"x":-3490000000000000000,"y":170000000000000000,"z":513000000000000000}},"30004375":{"solarSystemId":30004375,"solarSystemName":"F:2SKK","location":{"x":-3460000000000000000,"y":185000000000000000,"z":315000000000000000}},"30004376":{"solarSystemId":30004376,"solarSystemName":"J:3T26","location":{"x":-3760000000000000000,"y":367000000000000000,"z":894000000000000000}},"30004377":{"solarSystemId":30004377,"solarSystemName":"P:397E","location":{"x":-3550000000000000000,"y":97500000000000000,"z":465000000000000000}},"30004378":{"solarSystemId":30004378,"solarSystemName":"J:3N17","location":{"x":-3460000000000000000,"y":-58800000000000000,"z":853000000000000000}},"30004379":{"solarSystemId":30004379,"solarSystemName":"F:2NI6","location":{"x":-3660000000000000000,"y":466000000000000000,"z":843000000000000000}},"30004380":{"solarSystemId":30004380,"solarSystemName":"P:3R7N","location":{"x":-3590000000000000000,"y":430000000000000000,"z":821000000000000000}},"30004381":{"solarSystemId":30004381,"solarSystemName":"M:3EOV","location":{"x":-2400000000000000000,"y":707000000000000000,"z":1080000000000000000}},"30004382":{"solarSystemId":30004382,"solarSystemName":"D:3993","location":{"x":-1800000000000000000,"y":1600000000000000000,"z":1580000000000000000}},"30004383":{"solarSystemId":30004383,"solarSystemName":"M:3351","location":{"x":-2030000000000000000,"y":954000000000000000,"z":1210000000000000000}},"30004384":{"solarSystemId":30004384,"solarSystemName":"M:3T1E","location":{"x":-2460000000000000000,"y":764000000000000000,"z":400000000000000000}},"30004385":{"solarSystemId":30004385,"solarSystemName":"Y:3NV8","location":{"x":-2060000000000000000,"y":1030000000000000000,"z":667000000000000000}},"30004386":{"solarSystemId":30004386,"solarSystemName":"P:3465","location":{"x":-2220000000000000000,"y":766000000000000000,"z":414000000000000000}},"30004387":{"solarSystemId":30004387,"solarSystemName":"H:2T2K","location":{"x":-1900000000000000000,"y":645000000000000000,"z":1090000000000000000}},"30004388":{"solarSystemId":30004388,"solarSystemName":"M:2LRK","location":{"x":-2270000000000000000,"y":948000000000000000,"z":349000000000000000}},"30004389":{"solarSystemId":30004389,"solarSystemName":"M:329N","location":{"x":-1930000000000000000,"y":510000000000000000,"z":1150000000000000000}},"30004390":{"solarSystemId":30004390,"solarSystemName":"B:N2KT","location":{"x":-2390000000000000000,"y":899000000000000000,"z":-240000000000000000}},"30004391":{"solarSystemId":30004391,"solarSystemName":"J:KSK2","location":{"x":-2530000000000000000,"y":641000000000000000,"z":544000000000000000}},"30004392":{"solarSystemId":30004392,"solarSystemName":"P:31AE","location":{"x":-3040000000000000000,"y":1140000000000000000,"z":228000000000000000}},"30004393":{"solarSystemId":30004393,"solarSystemName":"U:3NNN","location":{"x":-2010000000000000000,"y":795000000000000000,"z":-171000000000000000}},"30004394":{"solarSystemId":30004394,"solarSystemName":"P:2T47","location":{"x":-2510000000000000000,"y":780000000000000000,"z":1000000000000000000}},"30004395":{"solarSystemId":30004395,"solarSystemName":"Q:2R8T","location":{"x":-2410000000000000000,"y":1300000000000000000,"z":803000000000000000}},"30004396":{"solarSystemId":30004396,"solarSystemName":"Q:2TKT","location":{"x":-1790000000000000000,"y":523000000000000000,"z":1260000000000000000}},"30004397":{"solarSystemId":30004397,"solarSystemName":"U:31T0","location":{"x":-1870000000000000000,"y":1190000000000000000,"z":1440000000000000000}},"30004398":{"solarSystemId":30004398,"solarSystemName":"J:38VO","location":{"x":-2300000000000000000,"y":1020000000000000000,"z":1450000000000000000}},"30004399":{"solarSystemId":30004399,"solarSystemName":"U:3523","location":{"x":-3030000000000000000,"y":1080000000000000000,"z":354000000000000000}},"30004400":{"solarSystemId":30004400,"solarSystemName":"J:34T0","location":{"x":-3370000000000000000,"y":1130000000000000000,"z":889000000000000000}},"30004401":{"solarSystemId":30004401,"solarSystemName":"Y:36N0","location":{"x":-3560000000000000000,"y":765000000000000000,"z":-3450000000000000}},"30004402":{"solarSystemId":30004402,"solarSystemName":"G:2I62","location":{"x":-3310000000000000000,"y":914000000000000000,"z":670000000000000000}},"30004403":{"solarSystemId":30004403,"solarSystemName":"D:3OT2","location":{"x":-3830000000000000000,"y":937000000000000000,"z":337000000000000000}},"30004404":{"solarSystemId":30004404,"solarSystemName":"J:38K5","location":{"x":-3580000000000000000,"y":642000000000000000,"z":382000000000000000}},"30004405":{"solarSystemId":30004405,"solarSystemName":"Z:3T9V","location":{"x":-3710000000000000000,"y":707000000000000000,"z":452000000000000000}},"30004406":{"solarSystemId":30004406,"solarSystemName":"F:2K74","location":{"x":-3320000000000000000,"y":548000000000000000,"z":100000000000000000}},"30004407":{"solarSystemId":30004407,"solarSystemName":"F:125L","location":{"x":-4060000000000000000,"y":1630000000000000000,"z":487000000000000000}},"30004408":{"solarSystemId":30004408,"solarSystemName":"M:3SNK","location":{"x":-3490000000000000000,"y":867000000000000000,"z":308000000000000000}},"30004409":{"solarSystemId":30004409,"solarSystemName":"U:3V0L","location":{"x":-3680000000000000000,"y":351000000000000000,"z":78700000000000000}},"30004410":{"solarSystemId":30004410,"solarSystemName":"Q:3TT7","location":{"x":-3890000000000000000,"y":359000000000000000,"z":345000000000000000}},"30004411":{"solarSystemId":30004411,"solarSystemName":"P:32E5","location":{"x":-3990000000000000000,"y":1410000000000000000,"z":467000000000000000}},"30004412":{"solarSystemId":30004412,"solarSystemName":"G:2NK4","location":{"x":-3520000000000000000,"y":758000000000000000,"z":545000000000000000}},"30004413":{"solarSystemId":30004413,"solarSystemName":"P:315R","location":{"x":-3260000000000000000,"y":535000000000000000,"z":236000000000000000}},"30004414":{"solarSystemId":30004414,"solarSystemName":"U:2L9A","location":{"x":-3240000000000000000,"y":860000000000000000,"z":790000000000000000}},"30004415":{"solarSystemId":30004415,"solarSystemName":"J:3T9L","location":{"x":-3480000000000000000,"y":1230000000000000000,"z":818000000000000000}},"30004416":{"solarSystemId":30004416,"solarSystemName":"H:2IVT","location":{"x":-4590000000000000000,"y":1710000000000000000,"z":1080000000000000000}},"30004417":{"solarSystemId":30004417,"solarSystemName":"J:3V35","location":{"x":-5130000000000000000,"y":2040000000000000000,"z":525000000000000000}},"30004418":{"solarSystemId":30004418,"solarSystemName":"Z:2I3R","location":{"x":-5430000000000000000,"y":2310000000000000000,"z":1050000000000000000}},"30004419":{"solarSystemId":30004419,"solarSystemName":"Y:3652","location":{"x":-4720000000000000000,"y":1550000000000000000,"z":422000000000000000}},"30004420":{"solarSystemId":30004420,"solarSystemName":"H:3T6V","location":{"x":-4020000000000000000,"y":2260000000000000000,"z":895000000000000000}},"30004421":{"solarSystemId":30004421,"solarSystemName":"Q:2L58","location":{"x":-4300000000000000000,"y":2120000000000000000,"z":458000000000000000}},"30004422":{"solarSystemId":30004422,"solarSystemName":"B:1SOI","location":{"x":-5070000000000000000,"y":2390000000000000000,"z":-4400000000000000}},"30004423":{"solarSystemId":30004423,"solarSystemName":"J:2LN2","location":{"x":-4730000000000000000,"y":2420000000000000000,"z":422000000000000000}},"30004424":{"solarSystemId":30004424,"solarSystemName":"D:2IR6","location":{"x":-5320000000000000000,"y":1870000000000000000,"z":482000000000000000}},"30004425":{"solarSystemId":30004425,"solarSystemName":"H:2AR1","location":{"x":-5140000000000000000,"y":2300000000000000000,"z":-101000000000000000}},"30004426":{"solarSystemId":30004426,"solarSystemName":"B:3ILR","location":{"x":-4020000000000000000,"y":1770000000000000000,"z":899000000000000000}},"30004427":{"solarSystemId":30004427,"solarSystemName":"Y:2KNR","location":{"x":-5220000000000000000,"y":1730000000000000000,"z":530000000000000000}},"30004428":{"solarSystemId":30004428,"solarSystemName":"P:3TNI","location":{"x":-3790000000000000000,"y":1890000000000000000,"z":1310000000000000000}},"30004429":{"solarSystemId":30004429,"solarSystemName":"B:2T8S","location":{"x":-4630000000000000000,"y":1860000000000000000,"z":501000000000000000}},"30004430":{"solarSystemId":30004430,"solarSystemName":"G:2S8S","location":{"x":-4540000000000000000,"y":2190000000000000000,"z":721000000000000000}},"30004431":{"solarSystemId":30004431,"solarSystemName":"G:3ILL","location":{"x":-2170000000000000000,"y":1760000000000000000,"z":964000000000000000}},"30004432":{"solarSystemId":30004432,"solarSystemName":"H:2E15","location":{"x":-2230000000000000000,"y":1720000000000000000,"z":1460000000000000000}},"30004433":{"solarSystemId":30004433,"solarSystemName":"M:3ONT","location":{"x":-3170000000000000000,"y":1330000000000000000,"z":1670000000000000000}},"30004434":{"solarSystemId":30004434,"solarSystemName":"Z:3I6L","location":{"x":-2480000000000000000,"y":1540000000000000000,"z":860000000000000000}},"30004435":{"solarSystemId":30004435,"solarSystemName":"B:2I68","location":{"x":-3220000000000000000,"y":1260000000000000000,"z":1990000000000000000}},"30004436":{"solarSystemId":30004436,"solarSystemName":"P:30NN","location":{"x":-2230000000000000000,"y":1690000000000000000,"z":1580000000000000000}},"30004437":{"solarSystemId":30004437,"solarSystemName":"G:2A22","location":{"x":-2790000000000000000,"y":1830000000000000000,"z":1310000000000000000}},"30004438":{"solarSystemId":30004438,"solarSystemName":"B:3T13","location":{"x":-3210000000000000000,"y":1550000000000000000,"z":1890000000000000000}},"30004439":{"solarSystemId":30004439,"solarSystemName":"G:38L3","location":{"x":-2890000000000000000,"y":2200000000000000000,"z":908000000000000000}},"30004440":{"solarSystemId":30004440,"solarSystemName":"G:365A","location":{"x":-2110000000000000000,"y":1770000000000000000,"z":1020000000000000000}},"30004441":{"solarSystemId":30004441,"solarSystemName":"Y:2E04","location":{"x":-3560000000000000000,"y":2220000000000000000,"z":1790000000000000000}},"30004442":{"solarSystemId":30004442,"solarSystemName":"G:2TLO","location":{"x":-3340000000000000000,"y":2090000000000000000,"z":1990000000000000000}},"30004443":{"solarSystemId":30004443,"solarSystemName":"B:39RN","location":{"x":-2950000000000000000,"y":1870000000000000000,"z":2020000000000000000}},"30004444":{"solarSystemId":30004444,"solarSystemName":"M:30L5","location":{"x":-3240000000000000000,"y":2120000000000000000,"z":1120000000000000000}},"30004445":{"solarSystemId":30004445,"solarSystemName":"H:3OKK","location":{"x":-2680000000000000000,"y":1820000000000000000,"z":2060000000000000000}},"30004446":{"solarSystemId":30004446,"solarSystemName":"D:3N0L","location":{"x":-3220000000000000000,"y":2580000000000000000,"z":1690000000000000000}},"30004447":{"solarSystemId":30004447,"solarSystemName":"Z:38OT","location":{"x":-2920000000000000000,"y":1240000000000000000,"z":1880000000000000000}},"30004448":{"solarSystemId":30004448,"solarSystemName":"M:37KE","location":{"x":-2810000000000000000,"y":1810000000000000000,"z":1220000000000000000}},"30004449":{"solarSystemId":30004449,"solarSystemName":"F:3T77","location":{"x":-1300000000000000000,"y":-2780000000000000000,"z":1360000000000000000}},"30004450":{"solarSystemId":30004450,"solarSystemName":"M:33K4","location":{"x":-1380000000000000000,"y":-3250000000000000000,"z":1190000000000000000}},"30004451":{"solarSystemId":30004451,"solarSystemName":"Q:39A4","location":{"x":-1140000000000000000,"y":-3670000000000000000,"z":1480000000000000000}},"30004452":{"solarSystemId":30004452,"solarSystemName":"Z:2TI2","location":{"x":-782000000000000000,"y":-2950000000000000000,"z":800000000000000000}},"30004453":{"solarSystemId":30004453,"solarSystemName":"B:3V5I","location":{"x":-571000000000000000,"y":-2000000000000000000,"z":417000000000000000}},"30004454":{"solarSystemId":30004454,"solarSystemName":"B:2V30","location":{"x":-435000000000000000,"y":-3580000000000000000,"z":1270000000000000000}},"30004455":{"solarSystemId":30004455,"solarSystemName":"G:364S","location":{"x":-1260000000000000000,"y":-3750000000000000000,"z":1330000000000000000}},"30004456":{"solarSystemId":30004456,"solarSystemName":"M:376L","location":{"x":-601000000000000000,"y":-2620000000000000000,"z":-270000000000000000}},"30004457":{"solarSystemId":30004457,"solarSystemName":"H:2E9R","location":{"x":-1480000000000000000,"y":-2650000000000000000,"z":591000000000000000}},"30004458":{"solarSystemId":30004458,"solarSystemName":"F:3E7E","location":{"x":-1060000000000000000,"y":-2840000000000000000,"z":-281000000000000000}},"30004459":{"solarSystemId":30004459,"solarSystemName":"Z:2NVO","location":{"x":-279000000000000000,"y":-2180000000000000000,"z":634000000000000000}},"30004460":{"solarSystemId":30004460,"solarSystemName":"P:2S65","location":{"x":-602000000000000000,"y":-2470000000000000000,"z":486000000000000000}},"30004461":{"solarSystemId":30004461,"solarSystemName":"H:3S23","location":{"x":-491000000000000000,"y":-3310000000000000000,"z":1920000000000000000}},"30004462":{"solarSystemId":30004462,"solarSystemName":"G:3I2E","location":{"x":-344000000000000000,"y":-3040000000000000000,"z":914000000000000000}},"30004463":{"solarSystemId":30004463,"solarSystemName":"H:3I1L","location":{"x":-2250000000000000000,"y":-3130000000000000000,"z":1300000000000000000}},"30004464":{"solarSystemId":30004464,"solarSystemName":"Q:3V45","location":{"x":-966000000000000000,"y":-3000000000000000000,"z":2060000000000000000}},"30004465":{"solarSystemId":30004465,"solarSystemName":"Q:3E64","location":{"x":-2690000000000000000,"y":-3990000000000000000,"z":1060000000000000000}},"30004466":{"solarSystemId":30004466,"solarSystemName":"B:3NRK","location":{"x":-2880000000000000000,"y":-4000000000000000000,"z":1020000000000000000}},"30004467":{"solarSystemId":30004467,"solarSystemName":"D:2SSN","location":{"x":-2140000000000000000,"y":-3400000000000000000,"z":858000000000000000}},"30004468":{"solarSystemId":30004468,"solarSystemName":"Z:2I5E","location":{"x":-2490000000000000000,"y":-2820000000000000000,"z":1470000000000000000}},"30004469":{"solarSystemId":30004469,"solarSystemName":"G:3O8I","location":{"x":-2670000000000000000,"y":-2890000000000000000,"z":1100000000000000000}},"30004470":{"solarSystemId":30004470,"solarSystemName":"P:380A","location":{"x":-2600000000000000000,"y":-3450000000000000000,"z":1010000000000000000}},"30004471":{"solarSystemId":30004471,"solarSystemName":"F:3RNO","location":{"x":-1620000000000000000,"y":-2570000000000000000,"z":663000000000000000}},"30004472":{"solarSystemId":30004472,"solarSystemName":"H:37NA","location":{"x":-1810000000000000000,"y":-3490000000000000000,"z":1440000000000000000}},"30004473":{"solarSystemId":30004473,"solarSystemName":"H:3EL7","location":{"x":-1400000000000000000,"y":-4550000000000000000,"z":721000000000000000}},"30004474":{"solarSystemId":30004474,"solarSystemName":"U:3RK0","location":{"x":-1250000000000000000,"y":-3880000000000000000,"z":1160000000000000000}},"30004475":{"solarSystemId":30004475,"solarSystemName":"P:3554","location":{"x":-1370000000000000000,"y":-4330000000000000000,"z":-47600000000000000}},"30004476":{"solarSystemId":30004476,"solarSystemName":"H:2T6N","location":{"x":-1230000000000000000,"y":-4740000000000000000,"z":799000000000000000}},"30004477":{"solarSystemId":30004477,"solarSystemName":"U:2987","location":{"x":-1820000000000000000,"y":-4460000000000000000,"z":243000000000000000}},"30004478":{"solarSystemId":30004478,"solarSystemName":"M:397T","location":{"x":-1420000000000000000,"y":-4780000000000000000,"z":801000000000000000}},"30004479":{"solarSystemId":30004479,"solarSystemName":"Y:291E","location":{"x":-1990000000000000000,"y":-4930000000000000000,"z":1120000000000000000}},"30004480":{"solarSystemId":30004480,"solarSystemName":"U:3O0K","location":{"x":-5050000000000000000,"y":-4010000000000000000,"z":5360000000000000000}},"30004481":{"solarSystemId":30004481,"solarSystemName":"D:3475","location":{"x":-2480000000000000000,"y":-5710000000000000000,"z":3450000000000000000}},"30004482":{"solarSystemId":30004482,"solarSystemName":"P:2S07","location":{"x":-3640000000000000000,"y":-5670000000000000000,"z":3590000000000000000}},"30004483":{"solarSystemId":30004483,"solarSystemName":"U:2VIR","location":{"x":-1450000000000000000,"y":-5090000000000000000,"z":4440000000000000000}},"30004484":{"solarSystemId":30004484,"solarSystemName":"D:2N5N","location":{"x":-1500000000000000000,"y":-5120000000000000000,"z":4660000000000000000}},"30004485":{"solarSystemId":30004485,"solarSystemName":"F:3RVK","location":{"x":-1620000000000000000,"y":-5330000000000000000,"z":1950000000000000000}},"30004486":{"solarSystemId":30004486,"solarSystemName":"F:2VOA","location":{"x":-412000000000000000,"y":-4470000000000000000,"z":2600000000000000000}},"30004487":{"solarSystemId":30004487,"solarSystemName":"F:2NAO","location":{"x":-1020000000000000000,"y":-4820000000000000000,"z":1970000000000000000}},"30004488":{"solarSystemId":30004488,"solarSystemName":"D:3887","location":{"x":-205000000000000000,"y":-4570000000000000000,"z":2960000000000000000}},"30004489":{"solarSystemId":30004489,"solarSystemName":"Z:36KN","location":{"x":-640000000000000000,"y":-4210000000000000000,"z":3030000000000000000}},"30004490":{"solarSystemId":30004490,"solarSystemName":"Q:3A95","location":{"x":-460000000000000000,"y":-5530000000000000000,"z":2220000000000000000}},"30004491":{"solarSystemId":30004491,"solarSystemName":"Z:2NS0","location":{"x":-427000000000000000,"y":-4090000000000000000,"z":2640000000000000000}},"30004492":{"solarSystemId":30004492,"solarSystemName":"H:3VOI","location":{"x":-196000000000000000,"y":-4830000000000000000,"z":2020000000000000000}},"30004493":{"solarSystemId":30004493,"solarSystemName":"U:3O57","location":{"x":-108000000000000000,"y":-5130000000000000000,"z":3390000000000000000}},"30004494":{"solarSystemId":30004494,"solarSystemName":"Y:2TEK","location":{"x":-193000000000000000,"y":-2020000000000000000,"z":3440000000000000000}},"30004495":{"solarSystemId":30004495,"solarSystemName":"U:3892","location":{"x":83200000000000000,"y":-2640000000000000000,"z":2060000000000000000}},"30004496":{"solarSystemId":30004496,"solarSystemName":"F:24RV","location":{"x":153000000000000000,"y":-3200000000000000000,"z":3000000000000000000}},"30004497":{"solarSystemId":30004497,"solarSystemName":"G:28OV","location":{"x":306000000000000000,"y":-2870000000000000000,"z":4180000000000000000}},"30004498":{"solarSystemId":30004498,"solarSystemName":"Z:TRL9","location":{"x":-455000000000000000,"y":-3080000000000000000,"z":2190000000000000000}},"30004499":{"solarSystemId":30004499,"solarSystemName":"D:2RIV","location":{"x":-269000000000000000,"y":-3220000000000000000,"z":3140000000000000000}},"30004500":{"solarSystemId":30004500,"solarSystemName":"Q:2N0O","location":{"x":-379000000000000000,"y":-2660000000000000000,"z":3950000000000000000}},"30004501":{"solarSystemId":30004501,"solarSystemName":"Q:2OOO","location":{"x":386000000000000000,"y":-2580000000000000000,"z":3050000000000000000}},"30004502":{"solarSystemId":30004502,"solarSystemName":"Y:2RAE","location":{"x":-751000000000000000,"y":-3060000000000000000,"z":3340000000000000000}},"30004503":{"solarSystemId":30004503,"solarSystemName":"G:3V55","location":{"x":-531000000000000000,"y":-2800000000000000000,"z":2730000000000000000}},"30004504":{"solarSystemId":30004504,"solarSystemName":"Y:3RTK","location":{"x":-650000000000000000,"y":-2970000000000000000,"z":4920000000000000000}},"30004505":{"solarSystemId":30004505,"solarSystemName":"Y:36S3","location":{"x":-318000000000000000,"y":-3130000000000000000,"z":4380000000000000000}},"30004506":{"solarSystemId":30004506,"solarSystemName":"U:3V44","location":{"x":41100000000000000,"y":-2710000000000000000,"z":3570000000000000000}},"30004507":{"solarSystemId":30004507,"solarSystemName":"U:2E8R","location":{"x":-364000000000000000,"y":-2630000000000000000,"z":4350000000000000000}},"30004508":{"solarSystemId":30004508,"solarSystemName":"Q:ER00","location":{"x":-66100000000000000,"y":-2610000000000000000,"z":4580000000000000000}},"30004509":{"solarSystemId":30004509,"solarSystemName":"P:2OT3","location":{"x":-2380000000000000000,"y":-4070000000000000000,"z":3070000000000000000}},"30004510":{"solarSystemId":30004510,"solarSystemName":"B:2A3V","location":{"x":-1450000000000000000,"y":-4080000000000000000,"z":3040000000000000000}},"30004511":{"solarSystemId":30004511,"solarSystemName":"Y:3RO3","location":{"x":-1810000000000000000,"y":-2620000000000000000,"z":3570000000000000000}},"30004512":{"solarSystemId":30004512,"solarSystemName":"Y:3S1R","location":{"x":-3210000000000000000,"y":-4880000000000000000,"z":2430000000000000000}},"30004513":{"solarSystemId":30004513,"solarSystemName":"Q:2R6L","location":{"x":-1940000000000000000,"y":-2130000000000000000,"z":3200000000000000000}},"30004514":{"solarSystemId":30004514,"solarSystemName":"G:3E9A","location":{"x":-1470000000000000000,"y":-2780000000000000000,"z":3030000000000000000}},"30004515":{"solarSystemId":30004515,"solarSystemName":"F:3SV8","location":{"x":-1260000000000000000,"y":-5080000000000000000,"z":3230000000000000000}},"30004516":{"solarSystemId":30004516,"solarSystemName":"Y:33I0","location":{"x":-2080000000000000000,"y":-3070000000000000000,"z":3450000000000000000}},"30004517":{"solarSystemId":30004517,"solarSystemName":"B:2N89","location":{"x":-1550000000000000000,"y":-4590000000000000000,"z":2890000000000000000}},"30004518":{"solarSystemId":30004518,"solarSystemName":"Z:3RA8","location":{"x":-2010000000000000000,"y":-4520000000000000000,"z":4270000000000000000}},"30004519":{"solarSystemId":30004519,"solarSystemName":"H:2AV4","location":{"x":-1300000000000000000,"y":-2190000000000000000,"z":3200000000000000000}},"30004520":{"solarSystemId":30004520,"solarSystemName":"G:3E1T","location":{"x":-2830000000000000000,"y":-366000000000000000,"z":541000000000000000}},"30004521":{"solarSystemId":30004521,"solarSystemName":"Z:2EV5","location":{"x":-3030000000000000000,"y":-333000000000000000,"z":396000000000000000}},"30004522":{"solarSystemId":30004522,"solarSystemName":"F:38NS","location":{"x":-3070000000000000000,"y":-36200000000000000,"z":611000000000000000}},"30004523":{"solarSystemId":30004523,"solarSystemName":"P:3V28","location":{"x":-3150000000000000000,"y":-36200000000000000,"z":497000000000000000}},"30004524":{"solarSystemId":30004524,"solarSystemName":"Q:384I","location":{"x":-3080000000000000000,"y":-433000000000000000,"z":395000000000000000}},"30004525":{"solarSystemId":30004525,"solarSystemName":"B:39KL","location":{"x":-3160000000000000000,"y":-281000000000000000,"z":330000000000000000}},"30004526":{"solarSystemId":30004526,"solarSystemName":"Y:3862","location":{"x":-2870000000000000000,"y":-286000000000000000,"z":469000000000000000}},"30004527":{"solarSystemId":30004527,"solarSystemName":"F:3T41","location":{"x":-2750000000000000000,"y":-311000000000000000,"z":278000000000000000}},"30004528":{"solarSystemId":30004528,"solarSystemName":"F:3N3N","location":{"x":-3000000000000000000,"y":-127000000000000000,"z":585000000000000000}},"30004529":{"solarSystemId":30004529,"solarSystemName":"U:34IT","location":{"x":-2770000000000000000,"y":11900000000000000,"z":328000000000000000}},"30004530":{"solarSystemId":30004530,"solarSystemName":"B:2E1S","location":{"x":-2970000000000000000,"y":-167000000000000000,"z":388000000000000000}},"30004531":{"solarSystemId":30004531,"solarSystemName":"J:2RK6","location":{"x":-2890000000000000000,"y":-341000000000000000,"z":594000000000000000}},"30004532":{"solarSystemId":30004532,"solarSystemName":"M:2N58","location":{"x":-3090000000000000000,"y":-289000000000000000,"z":562000000000000000}},"30004533":{"solarSystemId":30004533,"solarSystemName":"M:3N37","location":{"x":-2860000000000000000,"y":-37500000000000000,"z":441000000000000000}},"30004534":{"solarSystemId":30004534,"solarSystemName":"Z:3287","location":{"x":-3020000000000000000,"y":-474000000000000000,"z":462000000000000000}},"30004535":{"solarSystemId":30004535,"solarSystemName":"D:35S5","location":{"x":-3150000000000000000,"y":-25600000000000000,"z":489000000000000000}},"30004536":{"solarSystemId":30004536,"solarSystemName":"P:2S1E","location":{"x":-3090000000000000000,"y":6740000000000000,"z":498000000000000000}},"30004537":{"solarSystemId":30004537,"solarSystemName":"B:3IAT","location":{"x":-2930000000000000000,"y":-412000000000000000,"z":378000000000000000}},"30004538":{"solarSystemId":30004538,"solarSystemName":"U:2OLT","location":{"x":-2600000000000000000,"y":-93500000000000000,"z":-77500000000000000}},"30004539":{"solarSystemId":30004539,"solarSystemName":"U:300K","location":{"x":-2850000000000000000,"y":-381000000000000000,"z":23300000000000000}},"30004540":{"solarSystemId":30004540,"solarSystemName":"G:2NN3","location":{"x":-2310000000000000000,"y":-95400000000000000,"z":-193000000000000000}},"30004541":{"solarSystemId":30004541,"solarSystemName":"H:3ILA","location":{"x":-2680000000000000000,"y":-394000000000000000,"z":-613000000000000000}},"30004542":{"solarSystemId":30004542,"solarSystemName":"U:3SA9","location":{"x":-2510000000000000000,"y":-220000000000000000,"z":-229000000000000000}},"30004543":{"solarSystemId":30004543,"solarSystemName":"Q:2N7I","location":{"x":-2480000000000000000,"y":-56100000000000000,"z":38600000000000000}},"30004544":{"solarSystemId":30004544,"solarSystemName":"U:384S","location":{"x":-2820000000000000000,"y":-14500000000000000,"z":91900000000000000}},"30004545":{"solarSystemId":30004545,"solarSystemName":"G:190N","location":{"x":-2460000000000000000,"y":-466000000000000000,"z":-44700000000000000}},"30004546":{"solarSystemId":30004546,"solarSystemName":"Q:SA4N","location":{"x":-2550000000000000000,"y":-437000000000000000,"z":146000000000000000}},"30004547":{"solarSystemId":30004547,"solarSystemName":"D:O45N","location":{"x":-2550000000000000000,"y":-318000000000000000,"z":-9550000000000000}},"30004548":{"solarSystemId":30004548,"solarSystemName":"D:3ETI","location":{"x":-2650000000000000000,"y":-80300000000000000,"z":153000000000000000}},"30004549":{"solarSystemId":30004549,"solarSystemName":"Q:2S0E","location":{"x":-2640000000000000000,"y":-635000000000000000,"z":-335000000000000000}},"30004550":{"solarSystemId":30004550,"solarSystemName":"B:3818","location":{"x":-2750000000000000000,"y":-41200000000000000,"z":71300000000000000}},"30004551":{"solarSystemId":30004551,"solarSystemName":"M:35R0","location":{"x":-2810000000000000000,"y":-235000000000000000,"z":-120000000000000000}},"30004552":{"solarSystemId":30004552,"solarSystemName":"U:2T0N","location":{"x":-2500000000000000000,"y":-516000000000000000,"z":-219000000000000000}},"30004553":{"solarSystemId":30004553,"solarSystemName":"M:2N65","location":{"x":-2880000000000000000,"y":-238000000000000000,"z":35300000000000000}},"30004554":{"solarSystemId":30004554,"solarSystemName":"Q:2T12","location":{"x":-2760000000000000000,"y":-518000000000000000,"z":-354000000000000000}},"30004555":{"solarSystemId":30004555,"solarSystemName":"F:2O7S","location":{"x":-2560000000000000000,"y":-118000000000000000,"z":-46300000000000000}},"30004556":{"solarSystemId":30004556,"solarSystemName":"D:2RV6","location":{"x":-2890000000000000000,"y":-919000000000000000,"z":90100000000000000}},"30004557":{"solarSystemId":30004557,"solarSystemName":"Q:3R6T","location":{"x":-2850000000000000000,"y":-711000000000000000,"z":61700000000000000}},"30004558":{"solarSystemId":30004558,"solarSystemName":"G:3I34","location":{"x":-2800000000000000000,"y":-695000000000000000,"z":62500000000000000}},"30004559":{"solarSystemId":30004559,"solarSystemName":"P:2985","location":{"x":-2780000000000000000,"y":-600000000000000000,"z":4730000000000000}},"30004560":{"solarSystemId":30004560,"solarSystemName":"J:2INA","location":{"x":-2910000000000000000,"y":-924000000000000000,"z":21600000000000000}},"30004561":{"solarSystemId":30004561,"solarSystemName":"Q:K114","location":{"x":-3100000000000000000,"y":-683000000000000000,"z":15500000000000000}},"30004562":{"solarSystemId":30004562,"solarSystemName":"J:3492","location":{"x":-2610000000000000000,"y":-566000000000000000,"z":247000000000000000}},"30004563":{"solarSystemId":30004563,"solarSystemName":"B:3751","location":{"x":-2580000000000000000,"y":-618000000000000000,"z":17500000000000000}},"30004564":{"solarSystemId":30004564,"solarSystemName":"F:1K7R","location":{"x":-2540000000000000000,"y":-697000000000000000,"z":41500000000000000}},"30004565":{"solarSystemId":30004565,"solarSystemName":"P:2646","location":{"x":-2950000000000000000,"y":-451000000000000000,"z":66200000000000000}},"30004566":{"solarSystemId":30004566,"solarSystemName":"Q:3SA3","location":{"x":-2730000000000000000,"y":-557000000000000000,"z":57000000000000000}},"30004567":{"solarSystemId":30004567,"solarSystemName":"H:32I3","location":{"x":-2730000000000000000,"y":-663000000000000000,"z":359000000000000000}},"30004568":{"solarSystemId":30004568,"solarSystemName":"D:3614","location":{"x":-2880000000000000000,"y":-563000000000000000,"z":-9680000000000000}},"30004569":{"solarSystemId":30004569,"solarSystemName":"U:2V26","location":{"x":-2640000000000000000,"y":-541000000000000000,"z":-14900000000000000}},"30004570":{"solarSystemId":30004570,"solarSystemName":"Z:3V5V","location":{"x":-2810000000000000000,"y":-894000000000000000,"z":282000000000000000}},"30004571":{"solarSystemId":30004571,"solarSystemName":"U:3002","location":{"x":-2890000000000000000,"y":-471000000000000000,"z":-105000000000000000}},"30004572":{"solarSystemId":30004572,"solarSystemName":"Y:3A3R","location":{"x":-2830000000000000000,"y":-670000000000000000,"z":168000000000000000}},"30004573":{"solarSystemId":30004573,"solarSystemName":"F:3E2V","location":{"x":-2640000000000000000,"y":-520000000000000000,"z":-60800000000000000}},"30004574":{"solarSystemId":30004574,"solarSystemName":"Q:34S6","location":{"x":-3650000000000000000,"y":628000000000000000,"z":1080000000000000000}},"30004575":{"solarSystemId":30004575,"solarSystemName":"U:29V0","location":{"x":-3160000000000000000,"y":395000000000000000,"z":1600000000000000000}},"30004576":{"solarSystemId":30004576,"solarSystemName":"B:3I74","location":{"x":-3820000000000000000,"y":868000000000000000,"z":1780000000000000000}},"30004577":{"solarSystemId":30004577,"solarSystemName":"H:2O66","location":{"x":-2860000000000000000,"y":643000000000000000,"z":1800000000000000000}},"30004578":{"solarSystemId":30004578,"solarSystemName":"P:3ISE","location":{"x":-3700000000000000000,"y":1580000000000000000,"z":1040000000000000000}},"30004579":{"solarSystemId":30004579,"solarSystemName":"U:2V50","location":{"x":-3170000000000000000,"y":1260000000000000000,"z":809000000000000000}},"30004580":{"solarSystemId":30004580,"solarSystemName":"M:2OI4","location":{"x":-3280000000000000000,"y":766000000000000000,"z":1930000000000000000}},"30004581":{"solarSystemId":30004581,"solarSystemName":"G:37E3","location":{"x":-3680000000000000000,"y":844000000000000000,"z":1090000000000000000}},"30004582":{"solarSystemId":30004582,"solarSystemName":"Z:2SNO","location":{"x":-3640000000000000000,"y":357000000000000000,"z":1370000000000000000}},"30004583":{"solarSystemId":30004583,"solarSystemName":"Z:2EVT","location":{"x":-3560000000000000000,"y":815000000000000000,"z":1290000000000000000}},"30004584":{"solarSystemId":30004584,"solarSystemName":"Z:2V80","location":{"x":-3320000000000000000,"y":858000000000000000,"z":2090000000000000000}},"30004585":{"solarSystemId":30004585,"solarSystemName":"G:1A37","location":{"x":-3340000000000000000,"y":351000000000000000,"z":1900000000000000000}},"30004586":{"solarSystemId":30004586,"solarSystemName":"P:33L2","location":{"x":-3020000000000000000,"y":185000000000000000,"z":1670000000000000000}},"30004587":{"solarSystemId":30004587,"solarSystemName":"J:3VE0","location":{"x":-4120000000000000000,"y":1050000000000000000,"z":1410000000000000000}},"30004588":{"solarSystemId":30004588,"solarSystemName":"J:3O8N","location":{"x":-3940000000000000000,"y":1090000000000000000,"z":1240000000000000000}},"30004589":{"solarSystemId":30004589,"solarSystemName":"Y:3V0S","location":{"x":-3170000000000000000,"y":736000000000000000,"z":845000000000000000}},"30004590":{"solarSystemId":30004590,"solarSystemName":"G:2A1V","location":{"x":-3380000000000000000,"y":435000000000000000,"z":1050000000000000000}},"30004591":{"solarSystemId":30004591,"solarSystemName":"P:3INR","location":{"x":-3530000000000000000,"y":1450000000000000000,"z":1340000000000000000}},"30004592":{"solarSystemId":30004592,"solarSystemName":"G:3VRS","location":{"x":-3620000000000000000,"y":1080000000000000000,"z":1210000000000000000}},"30004593":{"solarSystemId":30004593,"solarSystemName":"Z:2SE1","location":{"x":-3890000000000000000,"y":553000000000000000,"z":1410000000000000000}},"30004594":{"solarSystemId":30004594,"solarSystemName":"Z:3IOT","location":{"x":-3100000000000000000,"y":-648000000000000000,"z":328000000000000000}},"30004595":{"solarSystemId":30004595,"solarSystemName":"Z:30AR","location":{"x":-3060000000000000000,"y":-715000000000000000,"z":399000000000000000}},"30004596":{"solarSystemId":30004596,"solarSystemName":"Y:2O22","location":{"x":-3010000000000000000,"y":-700000000000000000,"z":336000000000000000}},"30004597":{"solarSystemId":30004597,"solarSystemName":"Q:2KLN","location":{"x":-3140000000000000000,"y":-583000000000000000,"z":439000000000000000}},"30004598":{"solarSystemId":30004598,"solarSystemName":"D:3O11","location":{"x":-3130000000000000000,"y":-513000000000000000,"z":430000000000000000}},"30004599":{"solarSystemId":30004599,"solarSystemName":"G:38I3","location":{"x":-3110000000000000000,"y":-637000000000000000,"z":586000000000000000}},"30004600":{"solarSystemId":30004600,"solarSystemName":"F:3OOI","location":{"x":-2900000000000000000,"y":-561000000000000000,"z":371000000000000000}},"30004601":{"solarSystemId":30004601,"solarSystemName":"B:1TVA","location":{"x":-2930000000000000000,"y":-632000000000000000,"z":538000000000000000}},"30004602":{"solarSystemId":30004602,"solarSystemName":"B:38RK","location":{"x":-3060000000000000000,"y":-629000000000000000,"z":337000000000000000}},"30004603":{"solarSystemId":30004603,"solarSystemName":"B:2LKK","location":{"x":-2890000000000000000,"y":-620000000000000000,"z":434000000000000000}},"30004604":{"solarSystemId":30004604,"solarSystemName":"U:3IN0","location":{"x":-3000000000000000000,"y":-685000000000000000,"z":516000000000000000}},"30004605":{"solarSystemId":30004605,"solarSystemName":"H:1S53","location":{"x":-3010000000000000000,"y":-601000000000000000,"z":295000000000000000}},"30004606":{"solarSystemId":30004606,"solarSystemName":"H:3T50","location":{"x":-3090000000000000000,"y":-519000000000000000,"z":379000000000000000}},"30004607":{"solarSystemId":30004607,"solarSystemName":"F:38E9","location":{"x":-3140000000000000000,"y":-555000000000000000,"z":370000000000000000}},"30004608":{"solarSystemId":30004608,"solarSystemName":"M:2AN0","location":{"x":-3000000000000000000,"y":-694000000000000000,"z":558000000000000000}},"30004609":{"solarSystemId":30004609,"solarSystemName":"D:2S6L","location":{"x":-3120000000000000000,"y":-487000000000000000,"z":372000000000000000}},"30004610":{"solarSystemId":30004610,"solarSystemName":"P:2L82","location":{"x":-3010000000000000000,"y":-518000000000000000,"z":320000000000000000}},"30004611":{"solarSystemId":30004611,"solarSystemName":"B:2A2T","location":{"x":-2940000000000000000,"y":-493000000000000000,"z":595000000000000000}},"30004612":{"solarSystemId":30004612,"solarSystemName":"Q:3133","location":{"x":-2880000000000000000,"y":-703000000000000000,"z":569000000000000000}},"30004613":{"solarSystemId":30004613,"solarSystemName":"D:3T63","location":{"x":-2900000000000000000,"y":-600000000000000000,"z":543000000000000000}},"30004614":{"solarSystemId":30004614,"solarSystemName":"Z:3A6N","location":{"x":-3920000000000000000,"y":-571000000000000000,"z":-197000000000000000}},"30004615":{"solarSystemId":30004615,"solarSystemName":"G:375O","location":{"x":-3650000000000000000,"y":-525000000000000000,"z":-112000000000000000}},"30004616":{"solarSystemId":30004616,"solarSystemName":"M:3SEL","location":{"x":-3600000000000000000,"y":-889000000000000000,"z":-221000000000000000}},"30004617":{"solarSystemId":30004617,"solarSystemName":"Q:3TS1","location":{"x":-3790000000000000000,"y":-632000000000000000,"z":25400000000000000}},"30004618":{"solarSystemId":30004618,"solarSystemName":"J:3394","location":{"x":-3690000000000000000,"y":-821000000000000000,"z":-8330000000000000}},"30004619":{"solarSystemId":30004619,"solarSystemName":"G:3O4R","location":{"x":-3580000000000000000,"y":-740000000000000000,"z":-198000000000000000}},"30004620":{"solarSystemId":30004620,"solarSystemName":"B:2VO6","location":{"x":-3790000000000000000,"y":-421000000000000000,"z":-130000000000000000}},"30004621":{"solarSystemId":30004621,"solarSystemName":"U:3I21","location":{"x":-3510000000000000000,"y":-694000000000000000,"z":-165000000000000000}},"30004622":{"solarSystemId":30004622,"solarSystemName":"Q:2V64","location":{"x":-3610000000000000000,"y":-834000000000000000,"z":-34600000000000000}},"30004623":{"solarSystemId":30004623,"solarSystemName":"G:2EK2","location":{"x":-3890000000000000000,"y":-808000000000000000,"z":-280000000000000000}},"30004624":{"solarSystemId":30004624,"solarSystemName":"Q:1VO4","location":{"x":-3690000000000000000,"y":-693000000000000000,"z":123000000000000000}},"30004625":{"solarSystemId":30004625,"solarSystemName":"Z:293I","location":{"x":-3750000000000000000,"y":-691000000000000000,"z":-153000000000000000}},"30004626":{"solarSystemId":30004626,"solarSystemName":"Q:3A8T","location":{"x":-3840000000000000000,"y":-653000000000000000,"z":-95800000000000000}},"30004627":{"solarSystemId":30004627,"solarSystemName":"B:2L15","location":{"x":-3860000000000000000,"y":-680000000000000000,"z":-106000000000000000}},"30004628":{"solarSystemId":30004628,"solarSystemName":"Y:3837","location":{"x":-3640000000000000000,"y":-811000000000000000,"z":-60400000000000000}},"30004629":{"solarSystemId":30004629,"solarSystemName":"J:3I06","location":{"x":-3900000000000000000,"y":-686000000000000000,"z":-55300000000000000}},"30004630":{"solarSystemId":30004630,"solarSystemName":"B:2IL3","location":{"x":-3530000000000000000,"y":-567000000000000000,"z":-209000000000000000}},"30004631":{"solarSystemId":30004631,"solarSystemName":"P:3AA3","location":{"x":-3560000000000000000,"y":-1020000000000000000,"z":24100000000000000}},"30004632":{"solarSystemId":30004632,"solarSystemName":"Y:3V3N","location":{"x":-3730000000000000000,"y":-867000000000000000,"z":-6420000000000000}},"30004633":{"solarSystemId":30004633,"solarSystemName":"D:2AVR","location":{"x":-2440000000000000000,"y":141000000000000000,"z":236000000000000000}},"30004634":{"solarSystemId":30004634,"solarSystemName":"D:348S","location":{"x":-2270000000000000000,"y":-465000000000000000,"z":814000000000000000}},"30004635":{"solarSystemId":30004635,"solarSystemName":"P:2ITN","location":{"x":-2360000000000000000,"y":-147000000000000000,"z":330000000000000000}},"30004636":{"solarSystemId":30004636,"solarSystemName":"J:2S9L","location":{"x":-2670000000000000000,"y":-397000000000000000,"z":219000000000000000}},"30004637":{"solarSystemId":30004637,"solarSystemName":"P:2I1E","location":{"x":-2570000000000000000,"y":-209000000000000000,"z":416000000000000000}},"30004638":{"solarSystemId":30004638,"solarSystemName":"U:30LI","location":{"x":-2400000000000000000,"y":-431000000000000000,"z":623000000000000000}},"30004639":{"solarSystemId":30004639,"solarSystemName":"U:1LSL","location":{"x":-2480000000000000000,"y":-513000000000000000,"z":377000000000000000}},"30004640":{"solarSystemId":30004640,"solarSystemName":"F:184A","location":{"x":-2150000000000000000,"y":-391000000000000000,"z":715000000000000000}},"30004641":{"solarSystemId":30004641,"solarSystemName":"F:229K","location":{"x":-2220000000000000000,"y":-401000000000000000,"z":768000000000000000}},"30004642":{"solarSystemId":30004642,"solarSystemName":"Y:36RT","location":{"x":-2660000000000000000,"y":-459000000000000000,"z":217000000000000000}},"30004643":{"solarSystemId":30004643,"solarSystemName":"Y:OA8A","location":{"x":-2390000000000000000,"y":-260000000000000000,"z":734000000000000000}},"30004644":{"solarSystemId":30004644,"solarSystemName":"B:3RAV","location":{"x":-2550000000000000000,"y":-190000000000000000,"z":330000000000000000}},"30004645":{"solarSystemId":30004645,"solarSystemName":"H:2AS7","location":{"x":-2830000000000000000,"y":-315000000000000000,"z":716000000000000000}},"30004646":{"solarSystemId":30004646,"solarSystemName":"D:3TKI","location":{"x":-2700000000000000000,"y":-443000000000000000,"z":821000000000000000}},"30004647":{"solarSystemId":30004647,"solarSystemName":"B:3TV2","location":{"x":-2230000000000000000,"y":-555000000000000000,"z":237000000000000000}},"30004648":{"solarSystemId":30004648,"solarSystemName":"Q:3291","location":{"x":-2280000000000000000,"y":-320000000000000000,"z":935000000000000000}},"30004649":{"solarSystemId":30004649,"solarSystemName":"D:3NI8","location":{"x":-2710000000000000000,"y":-295000000000000000,"z":530000000000000000}},"30004650":{"solarSystemId":30004650,"solarSystemName":"Q:3674","location":{"x":-2670000000000000000,"y":-388000000000000000,"z":657000000000000000}},"30004651":{"solarSystemId":30004651,"solarSystemName":"Q:3807","location":{"x":-2670000000000000000,"y":-323000000000000000,"z":379000000000000000}},"30004652":{"solarSystemId":30004652,"solarSystemName":"Z:329S","location":{"x":-3250000000000000000,"y":-724000000000000000,"z":289000000000000000}},"30004653":{"solarSystemId":30004653,"solarSystemName":"D:2N59","location":{"x":-3450000000000000000,"y":-629000000000000000,"z":255000000000000000}},"30004654":{"solarSystemId":30004654,"solarSystemName":"U:2O60","location":{"x":-3290000000000000000,"y":-649000000000000000,"z":52800000000000000}},"30004655":{"solarSystemId":30004655,"solarSystemName":"Q:2V03","location":{"x":-3340000000000000000,"y":-842000000000000000,"z":355000000000000000}},"30004656":{"solarSystemId":30004656,"solarSystemName":"U:3ALS","location":{"x":-3250000000000000000,"y":-751000000000000000,"z":399000000000000000}},"30004657":{"solarSystemId":30004657,"solarSystemName":"Q:3R85","location":{"x":-3250000000000000000,"y":-806000000000000000,"z":365000000000000000}},"30004658":{"solarSystemId":30004658,"solarSystemName":"D:347N","location":{"x":-3290000000000000000,"y":-778000000000000000,"z":255000000000000000}},"30004659":{"solarSystemId":30004659,"solarSystemName":"M:2AVA","location":{"x":-3330000000000000000,"y":-770000000000000000,"z":307000000000000000}},"30004660":{"solarSystemId":30004660,"solarSystemName":"H:3IE3","location":{"x":-3380000000000000000,"y":-539000000000000000,"z":205000000000000000}},"30004661":{"solarSystemId":30004661,"solarSystemName":"H:2VNO","location":{"x":-3280000000000000000,"y":-548000000000000000,"z":159000000000000000}},"30004662":{"solarSystemId":30004662,"solarSystemName":"Q:3I7L","location":{"x":-3400000000000000000,"y":-558000000000000000,"z":114000000000000000}},"30004663":{"solarSystemId":30004663,"solarSystemName":"D:21O4","location":{"x":-3330000000000000000,"y":-561000000000000000,"z":192000000000000000}},"30004664":{"solarSystemId":30004664,"solarSystemName":"B:35K4","location":{"x":-3290000000000000000,"y":-710000000000000000,"z":258000000000000000}},"30004665":{"solarSystemId":30004665,"solarSystemName":"Z:31VR","location":{"x":-3350000000000000000,"y":-600000000000000000,"z":237000000000000000}},"30004666":{"solarSystemId":30004666,"solarSystemName":"H:2OVO","location":{"x":-3300000000000000000,"y":-775000000000000000,"z":261000000000000000}},"30004667":{"solarSystemId":30004667,"solarSystemName":"Z:3694","location":{"x":-3330000000000000000,"y":-691000000000000000,"z":337000000000000000}},"30004668":{"solarSystemId":30004668,"solarSystemName":"H:2V09","location":{"x":-3410000000000000000,"y":-791000000000000000,"z":214000000000000000}},"30004669":{"solarSystemId":30004669,"solarSystemName":"J:3O4S","location":{"x":-3330000000000000000,"y":-723000000000000000,"z":345000000000000000}},"30004670":{"solarSystemId":30004670,"solarSystemName":"H:3N7V","location":{"x":-3420000000000000000,"y":-589000000000000000,"z":192000000000000000}},"30004671":{"solarSystemId":30004671,"solarSystemName":"Y:340A","location":{"x":-3380000000000000000,"y":-615000000000000000,"z":64300000000000000}},"30004672":{"solarSystemId":30004672,"solarSystemName":"G:39VR","location":{"x":-3350000000000000000,"y":-658000000000000000,"z":186000000000000000}},"30004673":{"solarSystemId":30004673,"solarSystemName":"Z:37IT","location":{"x":-3460000000000000000,"y":-615000000000000000,"z":287000000000000000}},"30004674":{"solarSystemId":30004674,"solarSystemName":"Y:381A","location":{"x":-3160000000000000000,"y":-572000000000000000,"z":627000000000000000}},"30004675":{"solarSystemId":30004675,"solarSystemName":"F:2S6R","location":{"x":-3220000000000000000,"y":-467000000000000000,"z":833000000000000000}},"30004676":{"solarSystemId":30004676,"solarSystemName":"Y:2N8R","location":{"x":-3170000000000000000,"y":-755000000000000000,"z":743000000000000000}},"30004677":{"solarSystemId":30004677,"solarSystemName":"F:2N3K","location":{"x":-3290000000000000000,"y":-611000000000000000,"z":786000000000000000}},"30004678":{"solarSystemId":30004678,"solarSystemName":"F:3T5R","location":{"x":-3260000000000000000,"y":-627000000000000000,"z":921000000000000000}},"30004679":{"solarSystemId":30004679,"solarSystemName":"Z:3A4L","location":{"x":-3390000000000000000,"y":-758000000000000000,"z":646000000000000000}},"30004680":{"solarSystemId":30004680,"solarSystemName":"H:29R1","location":{"x":-3390000000000000000,"y":-616000000000000000,"z":735000000000000000}},"30004681":{"solarSystemId":30004681,"solarSystemName":"H:3T46","location":{"x":-3400000000000000000,"y":-508000000000000000,"z":898000000000000000}},"30004682":{"solarSystemId":30004682,"solarSystemName":"P:35A0","location":{"x":-3170000000000000000,"y":-546000000000000000,"z":573000000000000000}},"30004683":{"solarSystemId":30004683,"solarSystemName":"F:1TRE","location":{"x":-3150000000000000000,"y":-557000000000000000,"z":589000000000000000}},"30004684":{"solarSystemId":30004684,"solarSystemName":"Y:2KLA","location":{"x":-3120000000000000000,"y":-634000000000000000,"z":838000000000000000}},"30004685":{"solarSystemId":30004685,"solarSystemName":"Y:1N00","location":{"x":-3160000000000000000,"y":-530000000000000000,"z":719000000000000000}},"30004686":{"solarSystemId":30004686,"solarSystemName":"P:2AL7","location":{"x":-3400000000000000000,"y":-552000000000000000,"z":887000000000000000}},"30004687":{"solarSystemId":30004687,"solarSystemName":"F:382E","location":{"x":-3360000000000000000,"y":-504000000000000000,"z":696000000000000000}},"30004688":{"solarSystemId":30004688,"solarSystemName":"F:39E4","location":{"x":-3460000000000000000,"y":-625000000000000000,"z":700000000000000000}},"30004689":{"solarSystemId":30004689,"solarSystemName":"G:2568","location":{"x":-3220000000000000000,"y":-724000000000000000,"z":820000000000000000}},"30004690":{"solarSystemId":30004690,"solarSystemName":"P:1ILE","location":{"x":-3180000000000000000,"y":-748000000000000000,"z":866000000000000000}},"30004691":{"solarSystemId":30004691,"solarSystemName":"D:3N72","location":{"x":-3150000000000000000,"y":-554000000000000000,"z":758000000000000000}},"30004692":{"solarSystemId":30004692,"solarSystemName":"J:IIV4","location":{"x":-3100000000000000000,"y":-501000000000000000,"z":612000000000000000}},"30004693":{"solarSystemId":30004693,"solarSystemName":"H:3IE7","location":{"x":-3130000000000000000,"y":-645000000000000000,"z":791000000000000000}},"30004694":{"solarSystemId":30004694,"solarSystemName":"Q:318T","location":{"x":-3240000000000000000,"y":-636000000000000000,"z":610000000000000000}},"30004695":{"solarSystemId":30004695,"solarSystemName":"M:35K8","location":{"x":-3500000000000000000,"y":-637000000000000000,"z":819000000000000000}},"30004696":{"solarSystemId":30004696,"solarSystemName":"F:3468","location":{"x":-3230000000000000000,"y":-740000000000000000,"z":961000000000000000}},"30004697":{"solarSystemId":30004697,"solarSystemName":"J:2SLO","location":{"x":-3280000000000000000,"y":-630000000000000000,"z":653000000000000000}},"30004698":{"solarSystemId":30004698,"solarSystemName":"Z:29VO","location":{"x":-3250000000000000000,"y":-744000000000000000,"z":769000000000000000}},"30004699":{"solarSystemId":30004699,"solarSystemName":"D:2TIL","location":{"x":-3420000000000000000,"y":-679000000000000000,"z":682000000000000000}},"30004700":{"solarSystemId":30004700,"solarSystemName":"D:2S48","location":{"x":-8040000000000000000,"y":2770000000000000000,"z":-1730000000000000000}},"30004701":{"solarSystemId":30004701,"solarSystemName":"Y:3NO2","location":{"x":-7870000000000000000,"y":2920000000000000000,"z":-517000000000000000}},"30004702":{"solarSystemId":30004702,"solarSystemName":"D:23RK","location":{"x":-9440000000000000000,"y":2320000000000000000,"z":-1030000000000000000}},"30004703":{"solarSystemId":30004703,"solarSystemName":"M:3IK8","location":{"x":-9390000000000000000,"y":1970000000000000000,"z":-1990000000000000000}},"30004704":{"solarSystemId":30004704,"solarSystemName":"Q:124E","location":{"x":-8760000000000000000,"y":2700000000000000000,"z":-646000000000000000}},"30004705":{"solarSystemId":30004705,"solarSystemName":"Z:RA6L","location":{"x":-8730000000000000000,"y":2700000000000000000,"z":-658000000000000000}},"30004706":{"solarSystemId":30004706,"solarSystemName":"F:3IA6","location":{"x":-9540000000000000000,"y":2360000000000000000,"z":-1690000000000000000}},"30004707":{"solarSystemId":30004707,"solarSystemName":"B:345L","location":{"x":-9150000000000000000,"y":1890000000000000000,"z":-419000000000000000}},"30004708":{"solarSystemId":30004708,"solarSystemName":"D:37LN","location":{"x":-8630000000000000000,"y":3520000000000000000,"z":-770000000000000000}},"30004709":{"solarSystemId":30004709,"solarSystemName":"Y:2T6I","location":{"x":-8580000000000000000,"y":2120000000000000000,"z":-1680000000000000000}},"30004710":{"solarSystemId":30004710,"solarSystemName":"G:2IA1","location":{"x":-8280000000000000000,"y":3610000000000000000,"z":-718000000000000000}},"30004711":{"solarSystemId":30004711,"solarSystemName":"B:3IAV","location":{"x":-8380000000000000000,"y":2020000000000000000,"z":-733000000000000000}},"30004712":{"solarSystemId":30004712,"solarSystemName":"Z:3OA9","location":{"x":-9110000000000000000,"y":2570000000000000000,"z":160000000000000000}},"30004713":{"solarSystemId":30004713,"solarSystemName":"M:2LSV","location":{"x":-7830000000000000000,"y":2250000000000000000,"z":-909000000000000000}},"30004714":{"solarSystemId":30004714,"solarSystemName":"G:2E4E","location":{"x":-11300000000000000000,"y":922000000000000000,"z":-2060000000000000000}},"30004715":{"solarSystemId":30004715,"solarSystemName":"J:31L5","location":{"x":-9680000000000000000,"y":1050000000000000000,"z":-1590000000000000000}},"30004716":{"solarSystemId":30004716,"solarSystemName":"B:2A52","location":{"x":-9590000000000000000,"y":-45300000000000000,"z":-1170000000000000000}},"30004717":{"solarSystemId":30004717,"solarSystemName":"D:221K","location":{"x":-8910000000000000000,"y":694000000000000000,"z":-1340000000000000000}},"30004718":{"solarSystemId":30004718,"solarSystemName":"H:1L63","location":{"x":-9650000000000000000,"y":509000000000000000,"z":-1700000000000000000}},"30004719":{"solarSystemId":30004719,"solarSystemName":"G:AVON","location":{"x":-9660000000000000000,"y":830000000000000000,"z":-1530000000000000000}},"30004720":{"solarSystemId":30004720,"solarSystemName":"P:2S6A","location":{"x":-10600000000000000000,"y":604000000000000000,"z":-2000000000000000000}},"30004721":{"solarSystemId":30004721,"solarSystemName":"F:2923","location":{"x":-8710000000000000000,"y":353000000000000000,"z":-2110000000000000000}},"30004722":{"solarSystemId":30004722,"solarSystemName":"U:10OA","location":{"x":-9210000000000000000,"y":-86400000000000000,"z":-1530000000000000000}},"30004723":{"solarSystemId":30004723,"solarSystemName":"Q:28E3","location":{"x":-10000000000000000000,"y":174000000000000000,"z":-1590000000000000000}},"30004724":{"solarSystemId":30004724,"solarSystemName":"Z:1A49","location":{"x":-8880000000000000000,"y":197000000000000000,"z":-1800000000000000000}},"30004725":{"solarSystemId":30004725,"solarSystemName":"G:3LL5","location":{"x":-10200000000000000000,"y":97300000000000000,"z":-1530000000000000000}},"30004726":{"solarSystemId":30004726,"solarSystemName":"Q:2KA6","location":{"x":-9670000000000000000,"y":632000000000000000,"z":-1550000000000000000}},"30004727":{"solarSystemId":30004727,"solarSystemName":"M:2STV","location":{"x":-9700000000000000000,"y":332000000000000000,"z":-1880000000000000000}},"30004728":{"solarSystemId":30004728,"solarSystemName":"M:137T","location":{"x":-10200000000000000000,"y":152000000000000000,"z":-943000000000000000}},"30004729":{"solarSystemId":30004729,"solarSystemName":"M:STAA","location":{"x":-9620000000000000000,"y":728000000000000000,"z":-1660000000000000000}},"30004730":{"solarSystemId":30004730,"solarSystemName":"F:283T","location":{"x":-10800000000000000000,"y":675000000000000000,"z":-1910000000000000000}},"30004731":{"solarSystemId":30004731,"solarSystemName":"P:4795","location":{"x":-9860000000000000000,"y":183000000000000000,"z":-1690000000000000000}},"30004732":{"solarSystemId":30004732,"solarSystemName":"Q:3SS2","location":{"x":-10400000000000000000,"y":489000000000000000,"z":-1230000000000000000}},"30004733":{"solarSystemId":30004733,"solarSystemName":"B:35LN","location":{"x":-9530000000000000000,"y":606000000000000000,"z":-2480000000000000000}},"30004734":{"solarSystemId":30004734,"solarSystemName":"H:2SL0","location":{"x":-10000000000000000000,"y":1490000000000000000,"z":230000000000000000}},"30004735":{"solarSystemId":30004735,"solarSystemName":"F:3OEN","location":{"x":-10000000000000000000,"y":-180000000000000000,"z":267000000000000000}},"30004736":{"solarSystemId":30004736,"solarSystemName":"H:3A7L","location":{"x":-10200000000000000000,"y":1470000000000000000,"z":177000000000000000}},"30004737":{"solarSystemId":30004737,"solarSystemName":"J:461T","location":{"x":-10600000000000000000,"y":892000000000000000,"z":-233000000000000000}},"30004738":{"solarSystemId":30004738,"solarSystemName":"Q:SET1","location":{"x":-9580000000000000000,"y":67200000000000000,"z":-409000000000000000}},"30004739":{"solarSystemId":30004739,"solarSystemName":"B:21NI","location":{"x":-10400000000000000000,"y":557000000000000000,"z":303000000000000000}},"30004740":{"solarSystemId":30004740,"solarSystemName":"B:151E","location":{"x":-9810000000000000000,"y":800000000000000000,"z":-65100000000000000}},"30004741":{"solarSystemId":30004741,"solarSystemName":"U:2V66","location":{"x":-9430000000000000000,"y":471000000000000000,"z":-770000000000000000}},"30004742":{"solarSystemId":30004742,"solarSystemName":"P:2KSL","location":{"x":-9380000000000000000,"y":1150000000000000000,"z":-840000000000000000}},"30004743":{"solarSystemId":30004743,"solarSystemName":"Q:4TLA","location":{"x":-10000000000000000000,"y":1150000000000000000,"z":-745000000000000000}},"30004744":{"solarSystemId":30004744,"solarSystemName":"M:4TTL","location":{"x":-9770000000000000000,"y":150000000000000000,"z":-783000000000000000}},"30004745":{"solarSystemId":30004745,"solarSystemName":"J:2V71","location":{"x":-10000000000000000000,"y":-122000000000000000,"z":411000000000000000}},"30004746":{"solarSystemId":30004746,"solarSystemName":"H:36OV","location":{"x":-9300000000000000000,"y":-214000000000000000,"z":-479000000000000000}},"30004747":{"solarSystemId":30004747,"solarSystemName":"Z:N146","location":{"x":-9940000000000000000,"y":-264000000000000000,"z":-188000000000000000}},"30004748":{"solarSystemId":30004748,"solarSystemName":"F:27AE","location":{"x":-9890000000000000000,"y":-72600000000000000,"z":509000000000000000}},"30004749":{"solarSystemId":30004749,"solarSystemName":"H:OO0L","location":{"x":-10900000000000000000,"y":577000000000000000,"z":-609000000000000000}},"30004750":{"solarSystemId":30004750,"solarSystemName":"H:1683","location":{"x":-9830000000000000000,"y":1480000000000000000,"z":-540000000000000000}},"30004751":{"solarSystemId":30004751,"solarSystemName":"B:22LE","location":{"x":-10400000000000000000,"y":725000000000000000,"z":-575000000000000000}},"30004752":{"solarSystemId":30004752,"solarSystemName":"Q:3875","location":{"x":-9550000000000000000,"y":805000000000000000,"z":888000000000000000}},"30004753":{"solarSystemId":30004753,"solarSystemName":"D:379T","location":{"x":-9920000000000000000,"y":1740000000000000000,"z":199000000000000000}},"30004754":{"solarSystemId":30004754,"solarSystemName":"P:3VTT","location":{"x":-10300000000000000000,"y":337000000000000000,"z":28000000000000000}},"30004755":{"solarSystemId":30004755,"solarSystemName":"U:1N47","location":{"x":-10900000000000000000,"y":920000000000000000,"z":-219000000000000000}},"30004756":{"solarSystemId":30004756,"solarSystemName":"M:20O2","location":{"x":-9570000000000000000,"y":1340000000000000000,"z":-106000000000000000}},"30004757":{"solarSystemId":30004757,"solarSystemName":"Z:3OL3","location":{"x":-6790000000000000000,"y":3080000000000000000,"z":-1820000000000000000}},"30004758":{"solarSystemId":30004758,"solarSystemName":"B:29EI","location":{"x":-6940000000000000000,"y":1310000000000000000,"z":-1630000000000000000}},"30004759":{"solarSystemId":30004759,"solarSystemName":"P:19N2","location":{"x":-6900000000000000000,"y":1140000000000000000,"z":-2180000000000000000}},"30004760":{"solarSystemId":30004760,"solarSystemName":"Y:2S2R","location":{"x":-7990000000000000000,"y":1170000000000000000,"z":-1040000000000000000}},"30004761":{"solarSystemId":30004761,"solarSystemName":"Z:2919","location":{"x":-6980000000000000000,"y":720000000000000000,"z":-1320000000000000000}},"30004762":{"solarSystemId":30004762,"solarSystemName":"D:265S","location":{"x":-6360000000000000000,"y":3120000000000000000,"z":-1070000000000000000}},"30004763":{"solarSystemId":30004763,"solarSystemName":"Q:24RL","location":{"x":-7020000000000000000,"y":1940000000000000000,"z":-1070000000000000000}},"30004764":{"solarSystemId":30004764,"solarSystemName":"Q:2K73","location":{"x":-6720000000000000000,"y":3100000000000000000,"z":-1520000000000000000}},"30004765":{"solarSystemId":30004765,"solarSystemName":"B:2RSR","location":{"x":-7110000000000000000,"y":542000000000000000,"z":-1270000000000000000}},"30004766":{"solarSystemId":30004766,"solarSystemName":"H:363K","location":{"x":-7120000000000000000,"y":2250000000000000000,"z":-1060000000000000000}},"30004767":{"solarSystemId":30004767,"solarSystemName":"P:37LS","location":{"x":-7660000000000000000,"y":1020000000000000000,"z":-1300000000000000000}},"30004768":{"solarSystemId":30004768,"solarSystemName":"P:37KR","location":{"x":-7080000000000000000,"y":2110000000000000000,"z":-1310000000000000000}},"30004769":{"solarSystemId":30004769,"solarSystemName":"F:321K","location":{"x":-6410000000000000000,"y":2760000000000000000,"z":-187000000000000000}},"30004770":{"solarSystemId":30004770,"solarSystemName":"M:1IKR","location":{"x":-7390000000000000000,"y":619000000000000000,"z":-1460000000000000000}},"30004771":{"solarSystemId":30004771,"solarSystemName":"Y:V15T","location":{"x":-7260000000000000000,"y":873000000000000000,"z":-1370000000000000000}},"30004772":{"solarSystemId":30004772,"solarSystemName":"J:1TL9","location":{"x":-7150000000000000000,"y":589000000000000000,"z":-1480000000000000000}},"30004773":{"solarSystemId":30004773,"solarSystemName":"J:3S39","location":{"x":-7480000000000000000,"y":797000000000000000,"z":-1380000000000000000}},"30004774":{"solarSystemId":30004774,"solarSystemName":"J:362I","location":{"x":-7380000000000000000,"y":1250000000000000000,"z":1160000000000000000}},"30004775":{"solarSystemId":30004775,"solarSystemName":"U:3AKO","location":{"x":-8280000000000000000,"y":2290000000000000000,"z":1100000000000000000}},"30004776":{"solarSystemId":30004776,"solarSystemName":"Y:17KE","location":{"x":-8250000000000000000,"y":1220000000000000000,"z":657000000000000000}},"30004777":{"solarSystemId":30004777,"solarSystemName":"U:215A","location":{"x":-9270000000000000000,"y":1410000000000000000,"z":765000000000000000}},"30004778":{"solarSystemId":30004778,"solarSystemName":"D:315T","location":{"x":-8480000000000000000,"y":1530000000000000000,"z":1640000000000000000}},"30004779":{"solarSystemId":30004779,"solarSystemName":"U:3RSS","location":{"x":-7180000000000000000,"y":1850000000000000000,"z":1930000000000000000}},"30004780":{"solarSystemId":30004780,"solarSystemName":"G:2I42","location":{"x":-8500000000000000000,"y":1750000000000000000,"z":302000000000000000}},"30004781":{"solarSystemId":30004781,"solarSystemName":"M:33T0","location":{"x":-8380000000000000000,"y":2020000000000000000,"z":1370000000000000000}},"30004782":{"solarSystemId":30004782,"solarSystemName":"G:35LA","location":{"x":-6980000000000000000,"y":2200000000000000000,"z":1370000000000000000}},"30004783":{"solarSystemId":30004783,"solarSystemName":"D:1LA9","location":{"x":-7700000000000000000,"y":1120000000000000000,"z":1560000000000000000}},"30004784":{"solarSystemId":30004784,"solarSystemName":"Q:L4O7","location":{"x":-8760000000000000000,"y":992000000000000000,"z":528000000000000000}},"30004785":{"solarSystemId":30004785,"solarSystemName":"Z:VO0S","location":{"x":-9390000000000000000,"y":1130000000000000000,"z":1130000000000000000}},"30004786":{"solarSystemId":30004786,"solarSystemName":"Q:395T","location":{"x":-10300000000000000000,"y":1570000000000000000,"z":1150000000000000000}},"30004787":{"solarSystemId":30004787,"solarSystemName":"B:394O","location":{"x":-11000000000000000000,"y":1550000000000000000,"z":-619000000000000000}},"30004788":{"solarSystemId":30004788,"solarSystemName":"H:17N3","location":{"x":-10800000000000000000,"y":2740000000000000000,"z":-977000000000000000}},"30004789":{"solarSystemId":30004789,"solarSystemName":"Q:15I2","location":{"x":-11600000000000000000,"y":1500000000000000000,"z":121000000000000000}},"30004790":{"solarSystemId":30004790,"solarSystemName":"D:2T82","location":{"x":-9890000000000000000,"y":1290000000000000000,"z":930000000000000000}},"30004791":{"solarSystemId":30004791,"solarSystemName":"B:32AA","location":{"x":-10800000000000000000,"y":2460000000000000000,"z":-701000000000000000}},"30004792":{"solarSystemId":30004792,"solarSystemName":"B:2ANL","location":{"x":-10600000000000000000,"y":2180000000000000000,"z":105000000000000000}},"30004793":{"solarSystemId":30004793,"solarSystemName":"J:2N22","location":{"x":-11000000000000000000,"y":2710000000000000000,"z":412000000000000000}},"30004794":{"solarSystemId":30004794,"solarSystemName":"M:2NNL","location":{"x":-10800000000000000000,"y":2260000000000000000,"z":335000000000000000}},"30004795":{"solarSystemId":30004795,"solarSystemName":"F:1KTL","location":{"x":-10900000000000000000,"y":2380000000000000000,"z":-514000000000000000}},"30004796":{"solarSystemId":30004796,"solarSystemName":"Y:12A1","location":{"x":-11500000000000000000,"y":2360000000000000000,"z":499000000000000000}},"30004797":{"solarSystemId":30004797,"solarSystemName":"U:2ASO","location":{"x":-10100000000000000000,"y":1660000000000000000,"z":904000000000000000}},"30004798":{"solarSystemId":30004798,"solarSystemName":"Y:2260","location":{"x":-11100000000000000000,"y":2140000000000000000,"z":553000000000000000}},"30004799":{"solarSystemId":30004799,"solarSystemName":"M:2L8S","location":{"x":-10200000000000000000,"y":1650000000000000000,"z":487000000000000000}},"30004800":{"solarSystemId":30004800,"solarSystemName":"U:2ASA","location":{"x":-7930000000000000000,"y":380000000000000000,"z":-1720000000000000000}},"30004801":{"solarSystemId":30004801,"solarSystemName":"D:2AOO","location":{"x":-9120000000000000000,"y":-269000000000000000,"z":-801000000000000000}},"30004802":{"solarSystemId":30004802,"solarSystemName":"Q:2I7S","location":{"x":-8070000000000000000,"y":309000000000000000,"z":-1680000000000000000}},"30004803":{"solarSystemId":30004803,"solarSystemName":"D:36T5","location":{"x":-8550000000000000000,"y":-122000000000000000,"z":-1570000000000000000}},"30004804":{"solarSystemId":30004804,"solarSystemName":"B:344R","location":{"x":-7650000000000000000,"y":-297000000000000000,"z":-2090000000000000000}},"30004805":{"solarSystemId":30004805,"solarSystemName":"Z:397R","location":{"x":-7930000000000000000,"y":-238000000000000000,"z":-1870000000000000000}},"30004806":{"solarSystemId":30004806,"solarSystemName":"M:242K","location":{"x":-8530000000000000000,"y":-365000000000000000,"z":-1380000000000000000}},"30004807":{"solarSystemId":30004807,"solarSystemName":"Q:V48E","location":{"x":-8390000000000000000,"y":-9560000000000000,"z":-1900000000000000000}},"30004808":{"solarSystemId":30004808,"solarSystemName":"U:R2SN","location":{"x":-8880000000000000000,"y":-414000000000000000,"z":-1140000000000000000}},"30004809":{"solarSystemId":30004809,"solarSystemName":"Z:1LI3","location":{"x":-8180000000000000000,"y":-357000000000000000,"z":-1860000000000000000}},"30004810":{"solarSystemId":30004810,"solarSystemName":"Q:21IL","location":{"x":-8050000000000000000,"y":425000000000000000,"z":-781000000000000000}},"30004811":{"solarSystemId":30004811,"solarSystemName":"B:1IRE","location":{"x":-8980000000000000000,"y":-483000000000000000,"z":-981000000000000000}},"30004812":{"solarSystemId":30004812,"solarSystemName":"Z:2I8L","location":{"x":-8280000000000000000,"y":590000000000000000,"z":-1910000000000000000}},"30004813":{"solarSystemId":30004813,"solarSystemName":"U:26TL","location":{"x":-9380000000000000000,"y":-676000000000000000,"z":-1020000000000000000}},"30004814":{"solarSystemId":30004814,"solarSystemName":"H:1IK6","location":{"x":-7930000000000000000,"y":167000000000000000,"z":-1170000000000000000}},"30004815":{"solarSystemId":30004815,"solarSystemName":"Z:2046","location":{"x":-8260000000000000000,"y":456000000000000000,"z":-1660000000000000000}},"30004816":{"solarSystemId":30004816,"solarSystemName":"Q:1A2E","location":{"x":-8180000000000000000,"y":-12300000000000000,"z":-1330000000000000000}},"30004817":{"solarSystemId":30004817,"solarSystemName":"P:1AI8","location":{"x":-8750000000000000000,"y":-336000000000000000,"z":-1340000000000000000}},"30004818":{"solarSystemId":30004818,"solarSystemName":"J:3V88","location":{"x":-7950000000000000000,"y":246000000000000000,"z":-1570000000000000000}},"30004819":{"solarSystemId":30004819,"solarSystemName":"Q:E7ES","location":{"x":-8300000000000000000,"y":646000000000000000,"z":-1170000000000000000}},"30004820":{"solarSystemId":30004820,"solarSystemName":"F:2SV6","location":{"x":-8430000000000000000,"y":-267000000000000000,"z":-1690000000000000000}},"30004821":{"solarSystemId":30004821,"solarSystemName":"Z:1558","location":{"x":-8590000000000000000,"y":-516000000000000000,"z":-1690000000000000000}},"30004822":{"solarSystemId":30004822,"solarSystemName":"Z:1VVI","location":{"x":-7770000000000000000,"y":240000000000000000,"z":-853000000000000000}},"30004823":{"solarSystemId":30004823,"solarSystemName":"U:3S17","location":{"x":-7910000000000000000,"y":692000000000000000,"z":-732000000000000000}},"30004824":{"solarSystemId":30004824,"solarSystemName":"J:3A22","location":{"x":-8950000000000000000,"y":-280000000000000000,"z":-1420000000000000000}},"30004825":{"solarSystemId":30004825,"solarSystemName":"Q:318R","location":{"x":-8980000000000000000,"y":1610000000000000000,"z":-271000000000000000}},"30004826":{"solarSystemId":30004826,"solarSystemName":"F:3OV5","location":{"x":-8870000000000000000,"y":955000000000000000,"z":-1010000000000000000}},"30004827":{"solarSystemId":30004827,"solarSystemName":"Y:1N9A","location":{"x":-8850000000000000000,"y":504000000000000000,"z":-754000000000000000}},"30004828":{"solarSystemId":30004828,"solarSystemName":"D:16VK","location":{"x":-8960000000000000000,"y":681000000000000000,"z":-531000000000000000}},"30004829":{"solarSystemId":30004829,"solarSystemName":"F:1K3V","location":{"x":-8660000000000000000,"y":584000000000000000,"z":-525000000000000000}},"30004830":{"solarSystemId":30004830,"solarSystemName":"M:1E7S","location":{"x":-8580000000000000000,"y":375000000000000000,"z":-123000000000000000}},"30004831":{"solarSystemId":30004831,"solarSystemName":"J:3V11","location":{"x":-8750000000000000000,"y":501000000000000000,"z":-114000000000000000}},"30004832":{"solarSystemId":30004832,"solarSystemName":"M:V214","location":{"x":-8330000000000000000,"y":410000000000000000,"z":-436000000000000000}},"30004833":{"solarSystemId":30004833,"solarSystemName":"F:2O3S","location":{"x":-8590000000000000000,"y":1220000000000000000,"z":198000000000000000}},"30004834":{"solarSystemId":30004834,"solarSystemName":"Z:3S16","location":{"x":-8260000000000000000,"y":1120000000000000000,"z":-205000000000000000}},"30004835":{"solarSystemId":30004835,"solarSystemName":"Z:3481","location":{"x":-9130000000000000000,"y":636000000000000000,"z":-143000000000000000}},"30004836":{"solarSystemId":30004836,"solarSystemName":"Y:VA28","location":{"x":-9160000000000000000,"y":1380000000000000000,"z":-205000000000000000}},"30004837":{"solarSystemId":30004837,"solarSystemName":"U:1VI1","location":{"x":-8270000000000000000,"y":687000000000000000,"z":-325000000000000000}},"30004838":{"solarSystemId":30004838,"solarSystemName":"U:1LS6","location":{"x":-8610000000000000000,"y":1180000000000000000,"z":-327000000000000000}},"30004839":{"solarSystemId":30004839,"solarSystemName":"P:1A1L","location":{"x":-9010000000000000000,"y":809000000000000000,"z":-314000000000000000}},"30004840":{"solarSystemId":30004840,"solarSystemName":"J:3O6R","location":{"x":-8160000000000000000,"y":919000000000000000,"z":126000000000000000}},"30004841":{"solarSystemId":30004841,"solarSystemName":"Z:3RLT","location":{"x":-7060000000000000000,"y":1400000000000000000,"z":147000000000000000}},"30004842":{"solarSystemId":30004842,"solarSystemName":"H:2SOK","location":{"x":-6120000000000000000,"y":2240000000000000000,"z":-24800000000000000}},"30004843":{"solarSystemId":30004843,"solarSystemName":"M:RI58","location":{"x":-7760000000000000000,"y":1770000000000000000,"z":443000000000000000}},"30004844":{"solarSystemId":30004844,"solarSystemName":"Y:1VLR","location":{"x":-6540000000000000000,"y":1400000000000000000,"z":-157000000000000000}},"30004845":{"solarSystemId":30004845,"solarSystemName":"J:LNNK","location":{"x":-7300000000000000000,"y":1590000000000000000,"z":995000000000000000}},"30004846":{"solarSystemId":30004846,"solarSystemName":"G:190L","location":{"x":-6880000000000000000,"y":2900000000000000000,"z":486000000000000000}},"30004847":{"solarSystemId":30004847,"solarSystemName":"D:3O08","location":{"x":-6320000000000000000,"y":2420000000000000000,"z":-83300000000000000}},"30004848":{"solarSystemId":30004848,"solarSystemName":"U:2KT4","location":{"x":-6720000000000000000,"y":2950000000000000000,"z":320000000000000000}},"30004849":{"solarSystemId":30004849,"solarSystemName":"D:2NRT","location":{"x":-6710000000000000000,"y":1810000000000000000,"z":94400000000000000}},"30004850":{"solarSystemId":30004850,"solarSystemName":"Y:292S","location":{"x":-6610000000000000000,"y":2070000000000000000,"z":-38600000000000000}},"30004851":{"solarSystemId":30004851,"solarSystemName":"U:32EV","location":{"x":-6410000000000000000,"y":1340000000000000000,"z":-238000000000000000}},"30004852":{"solarSystemId":30004852,"solarSystemName":"G:339T","location":{"x":-6570000000000000000,"y":2090000000000000000,"z":374000000000000000}},"30004853":{"solarSystemId":30004853,"solarSystemName":"G:1ROS","location":{"x":-7120000000000000000,"y":863000000000000000,"z":72400000000000000}},"30004854":{"solarSystemId":30004854,"solarSystemName":"Q:2LI1","location":{"x":-7080000000000000000,"y":1910000000000000000,"z":337000000000000000}},"30004855":{"solarSystemId":30004855,"solarSystemName":"D:2S88","location":{"x":-8800000000000000000,"y":-1250000000000000000,"z":2510000000000000000}},"30004856":{"solarSystemId":30004856,"solarSystemName":"M:2I4R","location":{"x":-9990000000000000000,"y":-1040000000000000000,"z":3100000000000000000}},"30004857":{"solarSystemId":30004857,"solarSystemName":"Z:2TO1","location":{"x":-9370000000000000000,"y":-342000000000000000,"z":3050000000000000000}},"30004858":{"solarSystemId":30004858,"solarSystemName":"B:1VS8","location":{"x":-9640000000000000000,"y":-1210000000000000000,"z":2840000000000000000}},"30004859":{"solarSystemId":30004859,"solarSystemName":"J:3I8A","location":{"x":-9000000000000000000,"y":-840000000000000000,"z":2930000000000000000}},"30004860":{"solarSystemId":30004860,"solarSystemName":"B:1SL9","location":{"x":-8450000000000000000,"y":-1510000000000000000,"z":3680000000000000000}},"30004861":{"solarSystemId":30004861,"solarSystemName":"U:4276","location":{"x":-9120000000000000000,"y":-1360000000000000000,"z":2950000000000000000}},"30004862":{"solarSystemId":30004862,"solarSystemName":"F:1TSV","location":{"x":-8340000000000000000,"y":-1050000000000000000,"z":2610000000000000000}},"30004863":{"solarSystemId":30004863,"solarSystemName":"B:2666","location":{"x":-8720000000000000000,"y":-1010000000000000000,"z":2620000000000000000}},"30004864":{"solarSystemId":30004864,"solarSystemName":"Y:28E7","location":{"x":-9560000000000000000,"y":-1970000000000000000,"z":3150000000000000000}},"30004865":{"solarSystemId":30004865,"solarSystemName":"H:ET90","location":{"x":-8610000000000000000,"y":-790000000000000000,"z":2760000000000000000}},"30004866":{"solarSystemId":30004866,"solarSystemName":"H:348A","location":{"x":-9950000000000000000,"y":-905000000000000000,"z":2780000000000000000}},"30004867":{"solarSystemId":30004867,"solarSystemName":"F:1KTR","location":{"x":-9370000000000000000,"y":-1630000000000000000,"z":3130000000000000000}},"30004868":{"solarSystemId":30004868,"solarSystemName":"D:O5A3","location":{"x":-9690000000000000000,"y":-1160000000000000000,"z":2090000000000000000}},"30004869":{"solarSystemId":30004869,"solarSystemName":"U:26VR","location":{"x":-9710000000000000000,"y":-1580000000000000000,"z":2070000000000000000}},"30004870":{"solarSystemId":30004870,"solarSystemName":"M:3VEN","location":{"x":-8310000000000000000,"y":-1500000000000000000,"z":3340000000000000000}},"30004871":{"solarSystemId":30004871,"solarSystemName":"B:289R","location":{"x":-8630000000000000000,"y":-914000000000000000,"z":2560000000000000000}},"30004872":{"solarSystemId":30004872,"solarSystemName":"Y:3943","location":{"x":-7010000000000000000,"y":273000000000000000,"z":2370000000000000000}},"30004873":{"solarSystemId":30004873,"solarSystemName":"Z:3644","location":{"x":-7370000000000000000,"y":-129000000000000000,"z":2760000000000000000}},"30004874":{"solarSystemId":30004874,"solarSystemName":"Q:1N56","location":{"x":-7640000000000000000,"y":-623000000000000000,"z":2490000000000000000}},"30004875":{"solarSystemId":30004875,"solarSystemName":"D:RON7","location":{"x":-7690000000000000000,"y":362000000000000000,"z":1500000000000000000}},"30004876":{"solarSystemId":30004876,"solarSystemName":"H:2A7K","location":{"x":-7940000000000000000,"y":552000000000000000,"z":2020000000000000000}},"30004877":{"solarSystemId":30004877,"solarSystemName":"P:2453","location":{"x":-7530000000000000000,"y":170000000000000000,"z":2540000000000000000}},"30004878":{"solarSystemId":30004878,"solarSystemName":"F:1SR6","location":{"x":-7220000000000000000,"y":477000000000000000,"z":1740000000000000000}},"30004879":{"solarSystemId":30004879,"solarSystemName":"Z:1IA9","location":{"x":-7230000000000000000,"y":-2420000000000000,"z":1750000000000000000}},"30004880":{"solarSystemId":30004880,"solarSystemName":"Y:1TL1","location":{"x":-7940000000000000000,"y":-410000000000000000,"z":1580000000000000000}},"30004881":{"solarSystemId":30004881,"solarSystemName":"J:2KA0","location":{"x":-7750000000000000000,"y":447000000000000000,"z":2170000000000000000}},"30004882":{"solarSystemId":30004882,"solarSystemName":"U:1TSR","location":{"x":-7610000000000000000,"y":-67800000000000000,"z":1620000000000000000}},"30004883":{"solarSystemId":30004883,"solarSystemName":"P:VIOV","location":{"x":-7530000000000000000,"y":578000000000000000,"z":1640000000000000000}},"30004884":{"solarSystemId":30004884,"solarSystemName":"J:154I","location":{"x":-7370000000000000000,"y":-101000000000000000,"z":2110000000000000000}},"30004885":{"solarSystemId":30004885,"solarSystemName":"G:23N5","location":{"x":-7480000000000000000,"y":-246000000000000000,"z":2050000000000000000}},"30004886":{"solarSystemId":30004886,"solarSystemName":"G:316L","location":{"x":-7500000000000000000,"y":440000000000000000,"z":2420000000000000000}},"30004887":{"solarSystemId":30004887,"solarSystemName":"M:2I24","location":{"x":-7310000000000000000,"y":340000000000000000,"z":2050000000000000000}},"30004888":{"solarSystemId":30004888,"solarSystemName":"P:3RE5","location":{"x":-7360000000000000000,"y":-371000000000000000,"z":2430000000000000000}},"30004889":{"solarSystemId":30004889,"solarSystemName":"Y:3571","location":{"x":-7010000000000000000,"y":-199000000000000000,"z":2750000000000000000}},"30004890":{"solarSystemId":30004890,"solarSystemName":"G:3VNV","location":{"x":-7250000000000000000,"y":1880000000000000000,"z":4490000000000000000}},"30004891":{"solarSystemId":30004891,"solarSystemName":"U:2VK5","location":{"x":-8240000000000000000,"y":631000000000000000,"z":4670000000000000000}},"30004892":{"solarSystemId":30004892,"solarSystemName":"G:TOLO","location":{"x":-7460000000000000000,"y":1150000000000000000,"z":2620000000000000000}},"30004893":{"solarSystemId":30004893,"solarSystemName":"H:397A","location":{"x":-7840000000000000000,"y":759000000000000000,"z":3080000000000000000}},"30004894":{"solarSystemId":30004894,"solarSystemName":"H:3SIT","location":{"x":-7600000000000000000,"y":2070000000000000000,"z":3840000000000000000}},"30004895":{"solarSystemId":30004895,"solarSystemName":"Q:29K2","location":{"x":-8560000000000000000,"y":2060000000000000000,"z":5010000000000000000}},"30004896":{"solarSystemId":30004896,"solarSystemName":"Q:3V07","location":{"x":-6440000000000000000,"y":2670000000000000000,"z":2860000000000000000}},"30004897":{"solarSystemId":30004897,"solarSystemName":"Q:388S","location":{"x":-7270000000000000000,"y":1540000000000000000,"z":2030000000000000000}},"30004898":{"solarSystemId":30004898,"solarSystemName":"M:38S9","location":{"x":-8170000000000000000,"y":1300000000000000000,"z":3220000000000000000}},"30004899":{"solarSystemId":30004899,"solarSystemName":"B:1LT4","location":{"x":-7770000000000000000,"y":951000000000000000,"z":2330000000000000000}},"30004900":{"solarSystemId":30004900,"solarSystemName":"U:263S","location":{"x":-8370000000000000000,"y":385000000000000000,"z":4030000000000000000}},"30004901":{"solarSystemId":30004901,"solarSystemName":"G:2L5L","location":{"x":-10600000000000000000,"y":-511000000000000000,"z":2990000000000000000}},"30004902":{"solarSystemId":30004902,"solarSystemName":"P:353V","location":{"x":-11300000000000000000,"y":742000000000000000,"z":2830000000000000000}},"30004903":{"solarSystemId":30004903,"solarSystemName":"Y:165V","location":{"x":-10500000000000000000,"y":-294000000000000000,"z":2360000000000000000}},"30004904":{"solarSystemId":30004904,"solarSystemName":"B:30T8","location":{"x":-11200000000000000000,"y":756000000000000000,"z":1340000000000000000}},"30004905":{"solarSystemId":30004905,"solarSystemName":"G:213T","location":{"x":-10000000000000000000,"y":-233000000000000000,"z":1520000000000000000}},"30004906":{"solarSystemId":30004906,"solarSystemName":"D:OR0R","location":{"x":-10500000000000000000,"y":617000000000000000,"z":2140000000000000000}},"30004907":{"solarSystemId":30004907,"solarSystemName":"D:3EL1","location":{"x":-11400000000000000000,"y":-553000000000000000,"z":2360000000000000000}},"30004908":{"solarSystemId":30004908,"solarSystemName":"U:6277","location":{"x":-10400000000000000000,"y":7480000000000000,"z":1670000000000000000}},"30004909":{"solarSystemId":30004909,"solarSystemName":"J:302I","location":{"x":-11100000000000000000,"y":469000000000000000,"z":2440000000000000000}},"30004910":{"solarSystemId":30004910,"solarSystemName":"U:OLK2","location":{"x":-9220000000000000000,"y":487000000000000000,"z":1370000000000000000}},"30004911":{"solarSystemId":30004911,"solarSystemName":"J:2NTA","location":{"x":-10100000000000000000,"y":665000000000000000,"z":1240000000000000000}},"30004912":{"solarSystemId":30004912,"solarSystemName":"M:2A10","location":{"x":-10400000000000000000,"y":758000000000000000,"z":1530000000000000000}},"30004913":{"solarSystemId":30004913,"solarSystemName":"Y:2OLE","location":{"x":-11100000000000000000,"y":305000000000000000,"z":2620000000000000000}},"30004914":{"solarSystemId":30004914,"solarSystemName":"J:1R1O","location":{"x":-10700000000000000000,"y":1070000000000000000,"z":1440000000000000000}},"30004915":{"solarSystemId":30004915,"solarSystemName":"B:4163","location":{"x":-9290000000000000000,"y":373000000000000000,"z":1780000000000000000}},"30004916":{"solarSystemId":30004916,"solarSystemName":"B:1T8N","location":{"x":-10400000000000000000,"y":-40300000000000000,"z":2720000000000000000}},"30004917":{"solarSystemId":30004917,"solarSystemName":"D:2248","location":{"x":-9690000000000000000,"y":331000000000000000,"z":1410000000000000000}},"30004918":{"solarSystemId":30004918,"solarSystemName":"M:1R95","location":{"x":-10400000000000000000,"y":60900000000000000,"z":982000000000000000}},"30004919":{"solarSystemId":30004919,"solarSystemName":"F:2TS9","location":{"x":-11200000000000000000,"y":65000000000000000,"z":1960000000000000000}},"30004920":{"solarSystemId":30004920,"solarSystemName":"J:3AO6","location":{"x":-9130000000000000000,"y":-103000000000000000,"z":2650000000000000000}},"30004921":{"solarSystemId":30004921,"solarSystemName":"F:3R78","location":{"x":-8020000000000000000,"y":-93500000000000000,"z":3090000000000000000}},"30004922":{"solarSystemId":30004922,"solarSystemName":"Q:3TEN","location":{"x":-7830000000000000000,"y":-841000000000000000,"z":2260000000000000000}},"30004923":{"solarSystemId":30004923,"solarSystemName":"U:23OE","location":{"x":-8810000000000000000,"y":-4130000000000000,"z":2290000000000000000}},"30004924":{"solarSystemId":30004924,"solarSystemName":"U:1EKE","location":{"x":-7910000000000000000,"y":-651000000000000000,"z":2960000000000000000}},"30004925":{"solarSystemId":30004925,"solarSystemName":"F:O772","location":{"x":-9360000000000000000,"y":-199000000000000000,"z":2300000000000000000}},"30004926":{"solarSystemId":30004926,"solarSystemName":"F:3TI6","location":{"x":-8160000000000000000,"y":-400000000000000000,"z":2380000000000000000}},"30004927":{"solarSystemId":30004927,"solarSystemName":"P:ESL9","location":{"x":-8810000000000000000,"y":-606000000000000000,"z":1860000000000000000}},"30004928":{"solarSystemId":30004928,"solarSystemName":"Q:19OI","location":{"x":-8470000000000000000,"y":-147000000000000000,"z":2740000000000000000}},"30004929":{"solarSystemId":30004929,"solarSystemName":"P:158K","location":{"x":-8310000000000000000,"y":-214000000000000000,"z":2870000000000000000}},"30004930":{"solarSystemId":30004930,"solarSystemName":"Q:38S8","location":{"x":-8520000000000000000,"y":802000000000000000,"z":2260000000000000000}},"30004931":{"solarSystemId":30004931,"solarSystemName":"H:3O93","location":{"x":-8670000000000000000,"y":-535000000000000000,"z":2290000000000000000}},"30004932":{"solarSystemId":30004932,"solarSystemName":"Y:238K","location":{"x":-8300000000000000000,"y":-701000000000000000,"z":1860000000000000000}},"30004933":{"solarSystemId":30004933,"solarSystemName":"D:21O1","location":{"x":-9370000000000000000,"y":-163000000000000000,"z":1980000000000000000}},"30004934":{"solarSystemId":30004934,"solarSystemName":"Q:1EIV","location":{"x":-8340000000000000000,"y":-516000000000000000,"z":2540000000000000000}},"30004935":{"solarSystemId":30004935,"solarSystemName":"M:1S12","location":{"x":-7750000000000000000,"y":339000000000000000,"z":3170000000000000000}},"30004936":{"solarSystemId":30004936,"solarSystemName":"J:269O","location":{"x":-9380000000000000000,"y":-299000000000000000,"z":2530000000000000000}},"30004937":{"solarSystemId":30004937,"solarSystemName":"B:23N8","location":{"x":-8490000000000000000,"y":-477000000000000000,"z":3100000000000000000}},"30004938":{"solarSystemId":30004938,"solarSystemName":"U:3NKO","location":{"x":-9780000000000000000,"y":-91400000000000000,"z":1150000000000000000}},"30004939":{"solarSystemId":30004939,"solarSystemName":"H:3TOT","location":{"x":-9240000000000000000,"y":-1350000000000000000,"z":1180000000000000000}},"30004940":{"solarSystemId":30004940,"solarSystemName":"P:I5T8","location":{"x":-8200000000000000000,"y":-759000000000000000,"z":1390000000000000000}},"30004941":{"solarSystemId":30004941,"solarSystemName":"D:21T7","location":{"x":-8910000000000000000,"y":-671000000000000000,"z":1220000000000000000}},"30004942":{"solarSystemId":30004942,"solarSystemName":"M:23L8","location":{"x":-8460000000000000000,"y":54800000000000000,"z":1540000000000000000}},"30004943":{"solarSystemId":30004943,"solarSystemName":"Z:1AAN","location":{"x":-8880000000000000000,"y":-655000000000000000,"z":1800000000000000000}},"30004944":{"solarSystemId":30004944,"solarSystemName":"U:3LKN","location":{"x":-8190000000000000000,"y":-561000000000000000,"z":1150000000000000000}},"30004945":{"solarSystemId":30004945,"solarSystemName":"P:2495","location":{"x":-8230000000000000000,"y":-739000000000000000,"z":1050000000000000000}},"30004946":{"solarSystemId":30004946,"solarSystemName":"J:T1K0","location":{"x":-9620000000000000000,"y":-306000000000000000,"z":1790000000000000000}},"30004947":{"solarSystemId":30004947,"solarSystemName":"Q:235A","location":{"x":-9210000000000000000,"y":-1370000000000000000,"z":1710000000000000000}},"30004948":{"solarSystemId":30004948,"solarSystemName":"H:3SKE","location":{"x":-9700000000000000000,"y":-360000000000000000,"z":639000000000000000}},"30004949":{"solarSystemId":30004949,"solarSystemName":"B:E6AV","location":{"x":-8510000000000000000,"y":134000000000000000,"z":1420000000000000000}},"30004950":{"solarSystemId":30004950,"solarSystemName":"H:2VV9","location":{"x":-9800000000000000000,"y":-1290000000000000000,"z":930000000000000000}},"30004951":{"solarSystemId":30004951,"solarSystemName":"Q:S1RK","location":{"x":-9530000000000000000,"y":-248000000000000000,"z":1370000000000000000}},"30004952":{"solarSystemId":30004952,"solarSystemName":"G:27OR","location":{"x":-9780000000000000000,"y":-343000000000000000,"z":894000000000000000}},"30004953":{"solarSystemId":30004953,"solarSystemName":"Y:30E5","location":{"x":-9150000000000000000,"y":435000000000000000,"z":1000000000000000000}},"30004954":{"solarSystemId":30004954,"solarSystemName":"P:13V6","location":{"x":-10200000000000000000,"y":-347000000000000000,"z":758000000000000000}},"30004955":{"solarSystemId":30004955,"solarSystemName":"B:NR6T","location":{"x":-8970000000000000000,"y":261000000000000000,"z":1020000000000000000}},"30004956":{"solarSystemId":30004956,"solarSystemName":"Q:1E4T","location":{"x":-9790000000000000000,"y":41800000000000000,"z":1140000000000000000}},"30004957":{"solarSystemId":30004957,"solarSystemName":"Q:3ETL","location":{"x":-8750000000000000000,"y":-1480000000000000000,"z":1690000000000000000}},"30004958":{"solarSystemId":30004958,"solarSystemName":"H:3VRO","location":{"x":-9030000000000000000,"y":-1350000000000000000,"z":1760000000000000000}},"30004959":{"solarSystemId":30004959,"solarSystemName":"Y:209S","location":{"x":-8960000000000000000,"y":-415000000000000000,"z":1450000000000000000}},"30004960":{"solarSystemId":30004960,"solarSystemName":"J:O42N","location":{"x":-8530000000000000000,"y":-772000000000000000,"z":1850000000000000000}},"30004961":{"solarSystemId":30004961,"solarSystemName":"J:3V7K","location":{"x":-9840000000000000000,"y":-583000000000000000,"z":692000000000000000}},"30004962":{"solarSystemId":30004962,"solarSystemName":"F:350S","location":{"x":-9880000000000000000,"y":-756000000000000000,"z":923000000000000000}},"30004963":{"solarSystemId":30004963,"solarSystemName":"G:2A30","location":{"x":-8890000000000000000,"y":-237000000000000000,"z":1390000000000000000}},"30004964":{"solarSystemId":30004964,"solarSystemName":"Z:2NE1","location":{"x":-11000000000000000000,"y":-931000000000000000,"z":4690000000000000000}},"30004965":{"solarSystemId":30004965,"solarSystemName":"Z:29T8","location":{"x":-9580000000000000000,"y":-3030000000000000000,"z":4090000000000000000}},"30004966":{"solarSystemId":30004966,"solarSystemName":"G:22N9","location":{"x":-9920000000000000000,"y":-954000000000000000,"z":4410000000000000000}},"30004967":{"solarSystemId":30004967,"solarSystemName":"H:1V29","location":{"x":-10200000000000000000,"y":-1630000000000000000,"z":3970000000000000000}},"30004968":{"solarSystemId":30004968,"solarSystemName":"F:37LI","location":{"x":-10600000000000000000,"y":-1780000000000000000,"z":5270000000000000000}},"30004969":{"solarSystemId":30004969,"solarSystemName":"U:RIOV","location":{"x":-10300000000000000000,"y":-2090000000000000000,"z":4000000000000000000}},"30004970":{"solarSystemId":30004970,"solarSystemName":"J:2839","location":{"x":-11200000000000000000,"y":-895000000000000000,"z":3170000000000000000}},"30004971":{"solarSystemId":30004971,"solarSystemName":"B:23EA","location":{"x":-11300000000000000000,"y":-1700000000000000000,"z":3970000000000000000}},"30004972":{"solarSystemId":30004972,"solarSystemName":"H:195S","location":{"x":-10300000000000000000,"y":-1390000000000000000,"z":4130000000000000000}},"30004973":{"solarSystemId":30004973,"solarSystemName":"F:1EO2","location":{"x":-9380000000000000000,"y":-923000000000000000,"z":4040000000000000000}},"30004974":{"solarSystemId":30004974,"solarSystemName":"F:3868","location":{"x":-10200000000000000000,"y":-2610000000000000000,"z":4890000000000000000}},"30004975":{"solarSystemId":30004975,"solarSystemName":"Z:3146","location":{"x":-11500000000000000000,"y":-1240000000000000000,"z":3590000000000000000}},"30004976":{"solarSystemId":30004976,"solarSystemName":"G:1VN8","location":{"x":-10600000000000000000,"y":-1930000000000000000,"z":4450000000000000000}},"30004977":{"solarSystemId":30004977,"solarSystemName":"G:2480","location":{"x":-11400000000000000000,"y":-1250000000000000000,"z":4120000000000000000}},"30004978":{"solarSystemId":30004978,"solarSystemName":"G:EI93","location":{"x":-9560000000000000000,"y":-1880000000000000000,"z":5000000000000000000}},"30004979":{"solarSystemId":30004979,"solarSystemName":"H:2O1I","location":{"x":-11000000000000000000,"y":-1700000000000000000,"z":3690000000000000000}},"30004980":{"solarSystemId":30004980,"solarSystemName":"H:3N85","location":{"x":-11000000000000000000,"y":-1190000000000000000,"z":4560000000000000000}},"30004981":{"solarSystemId":30004981,"solarSystemName":"M:33S3","location":{"x":-11300000000000000000,"y":-1300000000000000000,"z":4600000000000000000}},"30004982":{"solarSystemId":30004982,"solarSystemName":"D:3RE9","location":{"x":-8360000000000000000,"y":-325000000000000000,"z":4610000000000000000}},"30004983":{"solarSystemId":30004983,"solarSystemName":"F:2NIL","location":{"x":-8530000000000000000,"y":206000000000000000,"z":5000000000000000000}},"30004984":{"solarSystemId":30004984,"solarSystemName":"H:1IA0","location":{"x":-9020000000000000000,"y":227000000000000000,"z":4930000000000000000}},"30004985":{"solarSystemId":30004985,"solarSystemName":"D:317L","location":{"x":-8600000000000000000,"y":-750000000000000000,"z":5240000000000000000}},"30004986":{"solarSystemId":30004986,"solarSystemName":"D:1TOO","location":{"x":-9350000000000000000,"y":-915000000000000000,"z":4730000000000000000}},"30004987":{"solarSystemId":30004987,"solarSystemName":"D:32A1","location":{"x":-8410000000000000000,"y":7350000000000000,"z":4010000000000000000}},"30004988":{"solarSystemId":30004988,"solarSystemName":"M:AVVN","location":{"x":-9050000000000000000,"y":-818000000000000000,"z":5780000000000000000}},"30004989":{"solarSystemId":30004989,"solarSystemName":"D:I4LL","location":{"x":-10500000000000000000,"y":548000000000000000,"z":3400000000000000000}},"30004990":{"solarSystemId":30004990,"solarSystemName":"M:158S","location":{"x":-9790000000000000000,"y":-122000000000000000,"z":3130000000000000000}},"30004991":{"solarSystemId":30004991,"solarSystemName":"J:17L9","location":{"x":-8480000000000000000,"y":393000000000000000,"z":5100000000000000000}},"30004992":{"solarSystemId":30004992,"solarSystemName":"P:L67R","location":{"x":-10400000000000000000,"y":-840000000000000000,"z":5270000000000000000}},"30004993":{"solarSystemId":30004993,"solarSystemName":"Q:3V6S","location":{"x":-8860000000000000000,"y":349000000000000000,"z":4960000000000000000}},"30004994":{"solarSystemId":30004994,"solarSystemName":"U:INEO","location":{"x":-10300000000000000000,"y":-958000000000000000,"z":6070000000000000000}},"30004995":{"solarSystemId":30004995,"solarSystemName":"F:2ISS","location":{"x":-9210000000000000000,"y":-723000000000000000,"z":4560000000000000000}},"30004996":{"solarSystemId":30004996,"solarSystemName":"D:2357","location":{"x":-9740000000000000000,"y":-178000000000000000,"z":4540000000000000000}},"30004997":{"solarSystemId":30004997,"solarSystemName":"J:516I","location":{"x":-9990000000000000000,"y":-210000000000000000,"z":3250000000000000000}},"30004998":{"solarSystemId":30004998,"solarSystemName":"Y:371N","location":{"x":-8830000000000000000,"y":-1130000000000000000,"z":4170000000000000000}},"30004999":{"solarSystemId":30004999,"solarSystemName":"D:330O","location":{"x":-8200000000000000000,"y":-311000000000000000,"z":4070000000000000000}},"30005000":{"solarSystemId":30005000,"solarSystemName":"U:2E10","location":{"x":-8120000000000000000,"y":-351000000000000000,"z":3950000000000000000}},"30005001":{"solarSystemId":30005001,"solarSystemName":"Z:3A04","location":{"x":-10500000000000000000,"y":-988000000000000000,"z":192000000000000000}},"30005002":{"solarSystemId":30005002,"solarSystemName":"Q:1T6T","location":{"x":-11000000000000000000,"y":-1330000000000000000,"z":1900000000000000000}},"30005003":{"solarSystemId":30005003,"solarSystemName":"B:37RE","location":{"x":-11300000000000000000,"y":218000000000000000,"z":904000000000000000}},"30005004":{"solarSystemId":30005004,"solarSystemName":"U:S3RL","location":{"x":-11500000000000000000,"y":-1140000000000000000,"z":914000000000000000}},"30005005":{"solarSystemId":30005005,"solarSystemName":"Y:3RSV","location":{"x":-11900000000000000000,"y":-505000000000000000,"z":1350000000000000000}},"30005006":{"solarSystemId":30005006,"solarSystemName":"Q:L7V4","location":{"x":-10400000000000000000,"y":-1870000000000000000,"z":1340000000000000000}},"30005007":{"solarSystemId":30005007,"solarSystemName":"U:16I4","location":{"x":-11000000000000000000,"y":-1560000000000000000,"z":2720000000000000000}},"30005008":{"solarSystemId":30005008,"solarSystemName":"G:20LR","location":{"x":-10400000000000000000,"y":-346000000000000000,"z":1430000000000000000}},"30005009":{"solarSystemId":30005009,"solarSystemName":"U:275I","location":{"x":-11300000000000000000,"y":26500000000000000,"z":1450000000000000000}},"30005010":{"solarSystemId":30005010,"solarSystemName":"D:27KO","location":{"x":-10800000000000000000,"y":50600000000000000,"z":704000000000000000}},"30005011":{"solarSystemId":30005011,"solarSystemName":"Z:2819","location":{"x":-11700000000000000000,"y":331000000000000000,"z":209000000000000000}},"30005012":{"solarSystemId":30005012,"solarSystemName":"U:345I","location":{"x":-10800000000000000000,"y":-328000000000000000,"z":60800000000000000}},"30005013":{"solarSystemId":30005013,"solarSystemName":"P:1R0A","location":{"x":-11500000000000000000,"y":294000000000000000,"z":394000000000000000}},"30005014":{"solarSystemId":30005014,"solarSystemName":"H:L4RS","location":{"x":-12100000000000000000,"y":-165000000000000000,"z":1010000000000000000}},"30005015":{"solarSystemId":30005015,"solarSystemName":"Q:2AOA","location":{"x":-10500000000000000000,"y":-318000000000000000,"z":407000000000000000}},"30005016":{"solarSystemId":30005016,"solarSystemName":"Z:2104","location":{"x":-10400000000000000000,"y":-236000000000000000,"z":1250000000000000000}},"30005017":{"solarSystemId":30005017,"solarSystemName":"J:221O","location":{"x":-11900000000000000000,"y":12000000000000000,"z":2050000000000000000}},"30005018":{"solarSystemId":30005018,"solarSystemName":"Y:2OO3","location":{"x":-12100000000000000000,"y":-1330000000000000000,"z":1410000000000000000}},"30005019":{"solarSystemId":30005019,"solarSystemName":"H:2233","location":{"x":-11300000000000000000,"y":-2070000000000000000,"z":1920000000000000000}},"30005020":{"solarSystemId":30005020,"solarSystemName":"J:2L27","location":{"x":-11400000000000000000,"y":99900000000000000,"z":1550000000000000000}},"30005021":{"solarSystemId":30005021,"solarSystemName":"Z:214L","location":{"x":-10000000000000000000,"y":-1240000000000000000,"z":1400000000000000000}},"30005022":{"solarSystemId":30005022,"solarSystemName":"F:13T2","location":{"x":-11800000000000000000,"y":-118000000000000000,"z":1750000000000000000}},"30005023":{"solarSystemId":30005023,"solarSystemName":"B:3I7V","location":{"x":103000000000000000,"y":11000000000000000,"z":-3370000000000000000}},"30005024":{"solarSystemId":30005024,"solarSystemName":"Q:3EA1","location":{"x":-81000000000000000,"y":736000000000000000,"z":-3120000000000000000}},"30005025":{"solarSystemId":30005025,"solarSystemName":"H:2S08","location":{"x":-77300000000000000,"y":-68400000000000000,"z":-4100000000000000000}},"30005026":{"solarSystemId":30005026,"solarSystemName":"M:20OT","location":{"x":631000000000000000,"y":-328000000000000000,"z":-3090000000000000000}},"30005027":{"solarSystemId":30005027,"solarSystemName":"Z:21A8","location":{"x":183000000000000000,"y":-51500000000000000,"z":-3910000000000000000}},"30005028":{"solarSystemId":30005028,"solarSystemName":"G:3KEK","location":{"x":525000000000000000,"y":-243000000000000000,"z":-3280000000000000000}},"30005029":{"solarSystemId":30005029,"solarSystemName":"D:3O5E","location":{"x":315000000000000000,"y":-49400000000000000,"z":-4050000000000000000}},"30005030":{"solarSystemId":30005030,"solarSystemName":"Q:263T","location":{"x":67300000000000000,"y":479000000000000000,"z":-2720000000000000000}},"30005031":{"solarSystemId":30005031,"solarSystemName":"U:1RON","location":{"x":592000000000000000,"y":63300000000000000,"z":-3890000000000000000}},"30005032":{"solarSystemId":30005032,"solarSystemName":"Q:E97T","location":{"x":85200000000000000,"y":333000000000000000,"z":-2980000000000000000}},"30005033":{"solarSystemId":30005033,"solarSystemName":"Q:11I0","location":{"x":134000000000000000,"y":64900000000000000,"z":-3800000000000000000}},"30005034":{"solarSystemId":30005034,"solarSystemName":"M:1LVT","location":{"x":322000000000000000,"y":23600000000000000,"z":-3130000000000000000}},"30005035":{"solarSystemId":30005035,"solarSystemName":"U:3529","location":{"x":-147000000000000000,"y":-229000000000000000,"z":-3710000000000000000}},"30005036":{"solarSystemId":30005036,"solarSystemName":"D:367R","location":{"x":298000000000000000,"y":-127000000000000000,"z":-3500000000000000000}},"30005037":{"solarSystemId":30005037,"solarSystemName":"Y:2KO9","location":{"x":503000000000000000,"y":-259000000000000000,"z":-2950000000000000000}},"30005038":{"solarSystemId":30005038,"solarSystemName":"H:33I3","location":{"x":-117000000000000000,"y":380000000000000000,"z":-2690000000000000000}},"30005039":{"solarSystemId":30005039,"solarSystemName":"Z:35T4","location":{"x":461000000000000000,"y":384000000000000000,"z":-3010000000000000000}},"30005040":{"solarSystemId":30005040,"solarSystemName":"D:30N8","location":{"x":-526000000000000000,"y":-247000000000000000,"z":-3600000000000000000}},"30005041":{"solarSystemId":30005041,"solarSystemName":"G:2R79","location":{"x":-901000000000000000,"y":-1790000000000000000,"z":-4320000000000000000}},"30005042":{"solarSystemId":30005042,"solarSystemName":"G:2OK7","location":{"x":-738000000000000000,"y":-1350000000000000000,"z":-4050000000000000000}},"30005043":{"solarSystemId":30005043,"solarSystemName":"H:1SRA","location":{"x":-940000000000000000,"y":-403000000000000000,"z":-3600000000000000000}},"30005044":{"solarSystemId":30005044,"solarSystemName":"H:LK16","location":{"x":-850000000000000000,"y":-331000000000000000,"z":-3760000000000000000}},"30005045":{"solarSystemId":30005045,"solarSystemName":"U:3S3A","location":{"x":-811000000000000000,"y":-259000000000000000,"z":-3340000000000000000}},"30005046":{"solarSystemId":30005046,"solarSystemName":"G:TT1I","location":{"x":-724000000000000000,"y":-817000000000000000,"z":-4280000000000000000}},"30005047":{"solarSystemId":30005047,"solarSystemName":"H:30K5","location":{"x":-7600000000000000,"y":-962000000000000000,"z":-4200000000000000000}},"30005048":{"solarSystemId":30005048,"solarSystemName":"B:22R4","location":{"x":-1090000000000000000,"y":-304000000000000000,"z":-3790000000000000000}},"30005049":{"solarSystemId":30005049,"solarSystemName":"H:2OEE","location":{"x":-708000000000000000,"y":-479000000000000000,"z":-3790000000000000000}},"30005050":{"solarSystemId":30005050,"solarSystemName":"Q:2T4K","location":{"x":-951000000000000000,"y":42100000000000000,"z":-3980000000000000000}},"30005051":{"solarSystemId":30005051,"solarSystemName":"F:1778","location":{"x":-213000000000000000,"y":-932000000000000000,"z":-4410000000000000000}},"30005052":{"solarSystemId":30005052,"solarSystemName":"P:1IA5","location":{"x":-960000000000000000,"y":192000000000000000,"z":-4240000000000000000}},"30005053":{"solarSystemId":30005053,"solarSystemName":"Q:298L","location":{"x":-561000000000000000,"y":-384000000000000000,"z":-4290000000000000000}},"30005054":{"solarSystemId":30005054,"solarSystemName":"D:168O","location":{"x":-952000000000000000,"y":-270000000000000000,"z":-3890000000000000000}},"30005055":{"solarSystemId":30005055,"solarSystemName":"M:2L1N","location":{"x":312000000000000000,"y":-253000000000000000,"z":-4700000000000000000}},"30005056":{"solarSystemId":30005056,"solarSystemName":"B:27R5","location":{"x":-770000000000000000,"y":-94200000000000000,"z":-4100000000000000000}},"30005057":{"solarSystemId":30005057,"solarSystemName":"F:4047","location":{"x":-615000000000000000,"y":-420000000000000000,"z":-4350000000000000000}},"30005058":{"solarSystemId":30005058,"solarSystemName":"P:IT4O","location":{"x":-811000000000000000,"y":-178000000000000000,"z":-3760000000000000000}},"30005059":{"solarSystemId":30005059,"solarSystemName":"B:1ER0","location":{"x":-1180000000000000000,"y":-131000000000000000,"z":-3560000000000000000}},"30005060":{"solarSystemId":30005060,"solarSystemName":"D:3NE0","location":{"x":32900000000000000,"y":3330000000000000000,"z":-2720000000000000000}},"30005061":{"solarSystemId":30005061,"solarSystemName":"M:3937","location":{"x":1940000000000000000,"y":3730000000000000000,"z":-3900000000000000000}},"30005062":{"solarSystemId":30005062,"solarSystemName":"G:3004","location":{"x":852000000000000000,"y":3360000000000000000,"z":-2870000000000000000}},"30005063":{"solarSystemId":30005063,"solarSystemName":"Q:2L7I","location":{"x":310000000000000000,"y":2100000000000000000,"z":-2880000000000000000}},"30005064":{"solarSystemId":30005064,"solarSystemName":"F:2I3N","location":{"x":14500000000000000,"y":3920000000000000000,"z":-3710000000000000000}},"30005065":{"solarSystemId":30005065,"solarSystemName":"M:KT54","location":{"x":-1680000000000000000,"y":3140000000000000000,"z":-3680000000000000000}},"30005066":{"solarSystemId":30005066,"solarSystemName":"U:1S1N","location":{"x":-1190000000000000000,"y":2200000000000000000,"z":-2760000000000000000}},"30005067":{"solarSystemId":30005067,"solarSystemName":"M:273I","location":{"x":-1040000000000000000,"y":2360000000000000000,"z":-2700000000000000000}},"30005068":{"solarSystemId":30005068,"solarSystemName":"B:354R","location":{"x":-192000000000000000,"y":617000000000000000,"z":-2820000000000000000}},"30005069":{"solarSystemId":30005069,"solarSystemName":"U:3A4K","location":{"x":-1060000000000000000,"y":-500000000000000000,"z":-2320000000000000000}},"30005070":{"solarSystemId":30005070,"solarSystemName":"G:3OT5","location":{"x":-1440000000000000000,"y":-748000000000000000,"z":-2350000000000000000}},"30005071":{"solarSystemId":30005071,"solarSystemName":"D:2N93","location":{"x":-800000000000000000,"y":-344000000000000000,"z":-2520000000000000000}},"30005072":{"solarSystemId":30005072,"solarSystemName":"U:1RVI","location":{"x":-1780000000000000000,"y":-979000000000000000,"z":-2770000000000000000}},"30005073":{"solarSystemId":30005073,"solarSystemName":"Q:1I7S","location":{"x":-1260000000000000000,"y":-582000000000000000,"z":-2830000000000000000}},"30005074":{"solarSystemId":30005074,"solarSystemName":"U:20I0","location":{"x":-1450000000000000000,"y":-1010000000000000000,"z":-3060000000000000000}},"30005075":{"solarSystemId":30005075,"solarSystemName":"M:1192","location":{"x":-1510000000000000000,"y":-1380000000000000000,"z":-2470000000000000000}},"30005076":{"solarSystemId":30005076,"solarSystemName":"Q:ROI7","location":{"x":-1220000000000000000,"y":-1930000000000000000,"z":-2680000000000000000}},"30005077":{"solarSystemId":30005077,"solarSystemName":"U:1VN2","location":{"x":-1610000000000000000,"y":-742000000000000000,"z":-2460000000000000000}},"30005078":{"solarSystemId":30005078,"solarSystemName":"B:14KK","location":{"x":-1410000000000000000,"y":-1300000000000000000,"z":-2230000000000000000}},"30005079":{"solarSystemId":30005079,"solarSystemName":"B:2VEA","location":{"x":-1380000000000000000,"y":-900000000000000000,"z":-2000000000000000000}},"30005080":{"solarSystemId":30005080,"solarSystemName":"M:3E81","location":{"x":-1500000000000000000,"y":-683000000000000000,"z":-2380000000000000000}},"30005081":{"solarSystemId":30005081,"solarSystemName":"G:37KN","location":{"x":-1200000000000000000,"y":-1080000000000000000,"z":-2300000000000000000}},"30005082":{"solarSystemId":30005082,"solarSystemName":"H:392V","location":{"x":-763000000000000000,"y":-885000000000000000,"z":-2830000000000000000}},"30005083":{"solarSystemId":30005083,"solarSystemName":"F:3NRN","location":{"x":-1170000000000000000,"y":-870000000000000000,"z":-2660000000000000000}},"30005084":{"solarSystemId":30005084,"solarSystemName":"Z:22R7","location":{"x":-867000000000000000,"y":-420000000000000000,"z":-2540000000000000000}},"30005085":{"solarSystemId":30005085,"solarSystemName":"H:KR9E","location":{"x":-766000000000000000,"y":-406000000000000000,"z":-2500000000000000000}},"30005086":{"solarSystemId":30005086,"solarSystemName":"H:38LT","location":{"x":-748000000000000000,"y":-360000000000000000,"z":-2680000000000000000}},"30005087":{"solarSystemId":30005087,"solarSystemName":"Z:2AS1","location":{"x":-2210000000000000000,"y":611000000000000000,"z":-971000000000000000}},"30005088":{"solarSystemId":30005088,"solarSystemName":"G:3A7A","location":{"x":-2620000000000000000,"y":1190000000000000000,"z":-1760000000000000000}},"30005089":{"solarSystemId":30005089,"solarSystemName":"H:3824","location":{"x":-2470000000000000000,"y":263000000000000000,"z":-1230000000000000000}},"30005090":{"solarSystemId":30005090,"solarSystemName":"M:1131","location":{"x":-2860000000000000000,"y":-45800000000000000,"z":-1680000000000000000}},"30005091":{"solarSystemId":30005091,"solarSystemName":"H:OS54","location":{"x":-2190000000000000000,"y":406000000000000000,"z":-2020000000000000000}},"30005092":{"solarSystemId":30005092,"solarSystemName":"F:1VS1","location":{"x":-2200000000000000000,"y":351000000000000000,"z":-1810000000000000000}},"30005093":{"solarSystemId":30005093,"solarSystemName":"Y:28KE","location":{"x":-2620000000000000000,"y":-18100000000000000,"z":-1700000000000000000}},"30005094":{"solarSystemId":30005094,"solarSystemName":"P:N78I","location":{"x":-2160000000000000000,"y":517000000000000000,"z":-1680000000000000000}},"30005095":{"solarSystemId":30005095,"solarSystemName":"M:11EO","location":{"x":-2450000000000000000,"y":507000000000000000,"z":-1600000000000000000}},"30005096":{"solarSystemId":30005096,"solarSystemName":"Z:2VR6","location":{"x":-2200000000000000000,"y":943000000000000000,"z":-1540000000000000000}},"30005097":{"solarSystemId":30005097,"solarSystemName":"Z:29L3","location":{"x":-2140000000000000000,"y":1270000000000000000,"z":-1170000000000000000}},"30005098":{"solarSystemId":30005098,"solarSystemName":"G:1I3K","location":{"x":-2110000000000000000,"y":313000000000000000,"z":-1560000000000000000}},"30005099":{"solarSystemId":30005099,"solarSystemName":"G:2LK9","location":{"x":-2360000000000000000,"y":903000000000000000,"z":-1400000000000000000}},"30005100":{"solarSystemId":30005100,"solarSystemName":"D:2OI0","location":{"x":-2140000000000000000,"y":618000000000000000,"z":-1770000000000000000}},"30005101":{"solarSystemId":30005101,"solarSystemName":"Y:2OSA","location":{"x":-2210000000000000000,"y":631000000000000000,"z":-1410000000000000000}},"30005102":{"solarSystemId":30005102,"solarSystemName":"G:3TNN","location":{"x":-2210000000000000000,"y":419000000000000000,"z":-1180000000000000000}},"30005103":{"solarSystemId":30005103,"solarSystemName":"Z:317E","location":{"x":-2280000000000000000,"y":1270000000000000000,"z":-1470000000000000000}},"30005104":{"solarSystemId":30005104,"solarSystemName":"P:399T","location":{"x":-2470000000000000000,"y":519000000000000000,"z":-1430000000000000000}},"30005105":{"solarSystemId":30005105,"solarSystemName":"Z:3SRR","location":{"x":-2020000000000000000,"y":358000000000000000,"z":-1490000000000000000}},"30005106":{"solarSystemId":30005106,"solarSystemName":"G:2KN1","location":{"x":-2710000000000000000,"y":1020000000000000000,"z":-1750000000000000000}},"30005107":{"solarSystemId":30005107,"solarSystemName":"P:3214","location":{"x":-530000000000000000,"y":-520000000000000000,"z":-2990000000000000000}},"30005108":{"solarSystemId":30005108,"solarSystemName":"U:2OK6","location":{"x":-329000000000000000,"y":-961000000000000000,"z":-3260000000000000000}},"30005109":{"solarSystemId":30005109,"solarSystemName":"H:3OV9","location":{"x":-764000000000000000,"y":-674000000000000000,"z":-3220000000000000000}},"30005110":{"solarSystemId":30005110,"solarSystemName":"H:2SON","location":{"x":-139000000000000000,"y":-699000000000000000,"z":-3120000000000000000}},"30005111":{"solarSystemId":30005111,"solarSystemName":"U:3OL8","location":{"x":115000000000000000,"y":-435000000000000000,"z":-2910000000000000000}},"30005112":{"solarSystemId":30005112,"solarSystemName":"F:408E","location":{"x":-629000000000000000,"y":-1320000000000000000,"z":-3870000000000000000}},"30005113":{"solarSystemId":30005113,"solarSystemName":"Q:1LNT","location":{"x":-823000000000000000,"y":-686000000000000000,"z":-3670000000000000000}},"30005114":{"solarSystemId":30005114,"solarSystemName":"F:2AE4","location":{"x":-458000000000000000,"y":-400000000000000000,"z":-3420000000000000000}},"30005115":{"solarSystemId":30005115,"solarSystemName":"H:1N50","location":{"x":-307000000000000000,"y":-994000000000000000,"z":-3170000000000000000}},"30005116":{"solarSystemId":30005116,"solarSystemName":"P:3R38","location":{"x":237000000000000000,"y":-950000000000000000,"z":-2790000000000000000}},"30005117":{"solarSystemId":30005117,"solarSystemName":"H:3306","location":{"x":-379000000000000000,"y":-719000000000000000,"z":-3490000000000000000}},"30005118":{"solarSystemId":30005118,"solarSystemName":"U:1VON","location":{"x":-317000000000000000,"y":-590000000000000000,"z":-3930000000000000000}},"30005119":{"solarSystemId":30005119,"solarSystemName":"Z:2L72","location":{"x":-266000000000000000,"y":-188000000000000000,"z":-3270000000000000000}},"30005120":{"solarSystemId":30005120,"solarSystemName":"F:1VS2","location":{"x":-594000000000000000,"y":-389000000000000000,"z":-3710000000000000000}},"30005121":{"solarSystemId":30005121,"solarSystemName":"P:1915","location":{"x":356000000000000000,"y":-708000000000000000,"z":-2710000000000000000}},"30005122":{"solarSystemId":30005122,"solarSystemName":"Q:2VS1","location":{"x":-199000000000000000,"y":-1200000000000000000,"z":-2670000000000000000}},"30005123":{"solarSystemId":30005123,"solarSystemName":"Y:20L7","location":{"x":-631000000000000000,"y":-1060000000000000000,"z":-3190000000000000000}},"30005124":{"solarSystemId":30005124,"solarSystemName":"D:33LR","location":{"x":-1970000000000000000,"y":-440000000000000000,"z":-1210000000000000000}},"30005125":{"solarSystemId":30005125,"solarSystemName":"G:3RST","location":{"x":-1890000000000000000,"y":-780000000000000000,"z":-1240000000000000000}},"30005126":{"solarSystemId":30005126,"solarSystemName":"H:3V7V","location":{"x":-1650000000000000000,"y":-1150000000000000000,"z":-967000000000000000}},"30005127":{"solarSystemId":30005127,"solarSystemName":"Q:3326","location":{"x":-2030000000000000000,"y":-482000000000000000,"z":-1230000000000000000}},"30005128":{"solarSystemId":30005128,"solarSystemName":"H:EKNS","location":{"x":-2150000000000000000,"y":-784000000000000000,"z":-1280000000000000000}},"30005129":{"solarSystemId":30005129,"solarSystemName":"U:389K","location":{"x":-2230000000000000000,"y":-640000000000000000,"z":-1090000000000000000}},"30005130":{"solarSystemId":30005130,"solarSystemName":"B:1TV0","location":{"x":-2030000000000000000,"y":-494000000000000000,"z":-1210000000000000000}},"30005131":{"solarSystemId":30005131,"solarSystemName":"M:3E76","location":{"x":-2680000000000000000,"y":-1020000000000000000,"z":-1530000000000000000}},"30005132":{"solarSystemId":30005132,"solarSystemName":"B:1VE5","location":{"x":-2390000000000000000,"y":-1030000000000000000,"z":-852000000000000000}},"30005133":{"solarSystemId":30005133,"solarSystemName":"F:V2L3","location":{"x":-1600000000000000000,"y":-712000000000000000,"z":-1010000000000000000}},"30005134":{"solarSystemId":30005134,"solarSystemName":"H:3SIR","location":{"x":-2360000000000000000,"y":-642000000000000000,"z":-1040000000000000000}},"30005135":{"solarSystemId":30005135,"solarSystemName":"G:2EER","location":{"x":-2050000000000000000,"y":-970000000000000000,"z":-1180000000000000000}},"30005136":{"solarSystemId":30005136,"solarSystemName":"P:3VT2","location":{"x":-2570000000000000000,"y":-878000000000000000,"z":-800000000000000000}},"30005137":{"solarSystemId":30005137,"solarSystemName":"P:1R9R","location":{"x":-1960000000000000000,"y":-952000000000000000,"z":-1080000000000000000}},"30005138":{"solarSystemId":30005138,"solarSystemName":"Y:2VV4","location":{"x":-2310000000000000000,"y":-762000000000000000,"z":-1240000000000000000}},"30005139":{"solarSystemId":30005139,"solarSystemName":"P:39TS","location":{"x":-2690000000000000000,"y":-1240000000000000000,"z":-1830000000000000000}},"30005140":{"solarSystemId":30005140,"solarSystemName":"G:2058","location":{"x":-1890000000000000000,"y":-746000000000000000,"z":-992000000000000000}},"30005141":{"solarSystemId":30005141,"solarSystemName":"B:3AV2","location":{"x":-2310000000000000000,"y":-1010000000000000000,"z":-1600000000000000000}},"30005142":{"solarSystemId":30005142,"solarSystemName":"Y:2995","location":{"x":-2410000000000000000,"y":-958000000000000000,"z":-881000000000000000}},"30005143":{"solarSystemId":30005143,"solarSystemName":"J:394R","location":{"x":-1670000000000000000,"y":-678000000000000000,"z":-1150000000000000000}},"30005144":{"solarSystemId":30005144,"solarSystemName":"Q:2RRV","location":{"x":-2450000000000000000,"y":-644000000000000000,"z":-885000000000000000}},"30005145":{"solarSystemId":30005145,"solarSystemName":"M:3T37","location":{"x":-1990000000000000000,"y":-951000000000000000,"z":-843000000000000000}},"30005146":{"solarSystemId":30005146,"solarSystemName":"J:3118","location":{"x":-1820000000000000000,"y":-597000000000000000,"z":-1370000000000000000}},"30005147":{"solarSystemId":30005147,"solarSystemName":"Z:3NN3","location":{"x":-1800000000000000000,"y":-932000000000000000,"z":-1180000000000000000}},"30005148":{"solarSystemId":30005148,"solarSystemName":"D:36IN","location":{"x":-1710000000000000000,"y":-256000000000000000,"z":-2340000000000000000}},"30005149":{"solarSystemId":30005149,"solarSystemName":"D:29OA","location":{"x":-1400000000000000000,"y":-240000000000000000,"z":-2540000000000000000}},"30005150":{"solarSystemId":30005150,"solarSystemName":"Y:S020","location":{"x":-1490000000000000000,"y":-347000000000000000,"z":-2360000000000000000}},"30005151":{"solarSystemId":30005151,"solarSystemName":"D:V6SI","location":{"x":-2280000000000000000,"y":169000000000000000,"z":-2480000000000000000}},"30005152":{"solarSystemId":30005152,"solarSystemName":"Y:O8II","location":{"x":-1860000000000000000,"y":-621000000000000000,"z":-2140000000000000000}},"30005153":{"solarSystemId":30005153,"solarSystemName":"Q:2351","location":{"x":-2240000000000000000,"y":-533000000000000000,"z":-2560000000000000000}},"30005154":{"solarSystemId":30005154,"solarSystemName":"Z:2KKA","location":{"x":-2400000000000000000,"y":-209000000000000000,"z":-2550000000000000000}},"30005155":{"solarSystemId":30005155,"solarSystemName":"P:35N1","location":{"x":-1890000000000000000,"y":-682000000000000000,"z":-2640000000000000000}},"30005156":{"solarSystemId":30005156,"solarSystemName":"Y:2AA6","location":{"x":-1730000000000000000,"y":-468000000000000000,"z":-2500000000000000000}},"30005157":{"solarSystemId":30005157,"solarSystemName":"Y:LI7O","location":{"x":-1590000000000000000,"y":-340000000000000000,"z":-2300000000000000000}},"30005158":{"solarSystemId":30005158,"solarSystemName":"Z:LTSL","location":{"x":-2150000000000000000,"y":-134000000000000000,"z":-2950000000000000000}},"30005159":{"solarSystemId":30005159,"solarSystemName":"D:2488","location":{"x":-1850000000000000000,"y":-548000000000000000,"z":-2180000000000000000}},"30005160":{"solarSystemId":30005160,"solarSystemName":"J:3SV1","location":{"x":-1950000000000000000,"y":-167000000000000000,"z":-2460000000000000000}},"30005161":{"solarSystemId":30005161,"solarSystemName":"Y:33S0","location":{"x":-2050000000000000000,"y":-557000000000000000,"z":-2590000000000000000}},"30005162":{"solarSystemId":30005162,"solarSystemName":"P:3252","location":{"x":-1770000000000000000,"y":-475000000000000000,"z":-2760000000000000000}},"30005163":{"solarSystemId":30005163,"solarSystemName":"G:S438","location":{"x":-1860000000000000000,"y":-158000000000000000,"z":-2600000000000000000}},"30005164":{"solarSystemId":30005164,"solarSystemName":"Y:E2N0","location":{"x":-2320000000000000000,"y":-190000000000000000,"z":-2330000000000000000}},"30005165":{"solarSystemId":30005165,"solarSystemName":"G:1390","location":{"x":-2160000000000000000,"y":-245000000000000000,"z":-2580000000000000000}},"30005166":{"solarSystemId":30005166,"solarSystemName":"B:3SIE","location":{"x":-1740000000000000000,"y":2990000000000000000,"z":326000000000000000}},"30005167":{"solarSystemId":30005167,"solarSystemName":"H:3S60","location":{"x":-1820000000000000000,"y":2230000000000000000,"z":1340000000000000000}},"30005168":{"solarSystemId":30005168,"solarSystemName":"M:298E","location":{"x":-1840000000000000000,"y":2610000000000000000,"z":903000000000000000}},"30005169":{"solarSystemId":30005169,"solarSystemName":"B:37LA","location":{"x":-2130000000000000000,"y":3370000000000000000,"z":879000000000000000}},"30005170":{"solarSystemId":30005170,"solarSystemName":"F:33OE","location":{"x":-1750000000000000000,"y":3270000000000000000,"z":548000000000000000}},"30005171":{"solarSystemId":30005171,"solarSystemName":"Z:35AR","location":{"x":-1790000000000000000,"y":3560000000000000000,"z":-171000000000000000}},"30005172":{"solarSystemId":30005172,"solarSystemName":"D:38IS","location":{"x":-1490000000000000000,"y":2160000000000000000,"z":860000000000000000}},"30005173":{"solarSystemId":30005173,"solarSystemName":"G:2KK7","location":{"x":-2300000000000000000,"y":2400000000000000000,"z":1500000000000000000}},"30005174":{"solarSystemId":30005174,"solarSystemName":"F:3890","location":{"x":-2140000000000000000,"y":2830000000000000000,"z":1130000000000000000}},"30005175":{"solarSystemId":30005175,"solarSystemName":"Y:3T3A","location":{"x":-1920000000000000000,"y":2330000000000000000,"z":1160000000000000000}},"30005176":{"solarSystemId":30005176,"solarSystemName":"U:3S81","location":{"x":-2450000000000000000,"y":3460000000000000000,"z":940000000000000000}},"30005177":{"solarSystemId":30005177,"solarSystemName":"G:3I7A","location":{"x":-1730000000000000000,"y":2920000000000000000,"z":-1940000000000000000}},"30005178":{"solarSystemId":30005178,"solarSystemName":"J:392O","location":{"x":-1690000000000000000,"y":2550000000000000000,"z":-1180000000000000000}},"30005179":{"solarSystemId":30005179,"solarSystemName":"D:49SV","location":{"x":-1640000000000000000,"y":1910000000000000000,"z":-1210000000000000000}},"30005180":{"solarSystemId":30005180,"solarSystemName":"G:35L2","location":{"x":-1370000000000000000,"y":2100000000000000000,"z":-1900000000000000000}},"30005181":{"solarSystemId":30005181,"solarSystemName":"D:2VIL","location":{"x":-1790000000000000000,"y":3870000000000000000,"z":-1950000000000000000}},"30005182":{"solarSystemId":30005182,"solarSystemName":"Q:2ST8","location":{"x":-2730000000000000000,"y":3290000000000000000,"z":-1930000000000000000}},"30005183":{"solarSystemId":30005183,"solarSystemName":"G:3N15","location":{"x":-1990000000000000000,"y":3310000000000000000,"z":-2140000000000000000}},"30005184":{"solarSystemId":30005184,"solarSystemName":"D:3O5S","location":{"x":-1480000000000000000,"y":3430000000000000000,"z":-2510000000000000000}},"30005185":{"solarSystemId":30005185,"solarSystemName":"F:381S","location":{"x":-1830000000000000000,"y":1930000000000000000,"z":-1430000000000000000}},"30005186":{"solarSystemId":30005186,"solarSystemName":"B:3V5O","location":{"x":-1910000000000000000,"y":2910000000000000000,"z":-750000000000000000}},"30005187":{"solarSystemId":30005187,"solarSystemName":"G:3S4L","location":{"x":-1410000000000000000,"y":2880000000000000000,"z":-1730000000000000000}},"30005188":{"solarSystemId":30005188,"solarSystemName":"Z:2IA8","location":{"x":-2750000000000000000,"y":1820000000000000000,"z":92900000000000000}},"30005189":{"solarSystemId":30005189,"solarSystemName":"F:2IKV","location":{"x":-1440000000000000000,"y":1540000000000000000,"z":-190000000000000000}},"30005190":{"solarSystemId":30005190,"solarSystemName":"D:3TNL","location":{"x":-1840000000000000000,"y":1170000000000000000,"z":318000000000000000}},"30005191":{"solarSystemId":30005191,"solarSystemName":"P:51II","location":{"x":-2490000000000000000,"y":1390000000000000000,"z":-570000000000000000}},"30005192":{"solarSystemId":30005192,"solarSystemName":"Y:37S4","location":{"x":-2480000000000000000,"y":1970000000000000000,"z":194000000000000000}},"30005193":{"solarSystemId":30005193,"solarSystemName":"Y:3O86","location":{"x":-1310000000000000000,"y":1550000000000000000,"z":238000000000000000}},"30005194":{"solarSystemId":30005194,"solarSystemName":"U:3ARV","location":{"x":-2130000000000000000,"y":2090000000000000000,"z":-93500000000000000}},"30005195":{"solarSystemId":30005195,"solarSystemName":"D:3I9L","location":{"x":-2450000000000000000,"y":1750000000000000000,"z":-56300000000000000}},"30005196":{"solarSystemId":30005196,"solarSystemName":"J:2VTR","location":{"x":-2050000000000000000,"y":1740000000000000000,"z":280000000000000000}},"30005197":{"solarSystemId":30005197,"solarSystemName":"U:3S0V","location":{"x":-1930000000000000000,"y":2560000000000000000,"z":-639000000000000000}},"30005198":{"solarSystemId":30005198,"solarSystemName":"F:3IR7","location":{"x":-2050000000000000000,"y":1740000000000000000,"z":-455000000000000000}},"30005199":{"solarSystemId":30005199,"solarSystemName":"G:3NKL","location":{"x":-1570000000000000000,"y":1930000000000000000,"z":-767000000000000000}},"30005200":{"solarSystemId":30005200,"solarSystemName":"P:2INN","location":{"x":804000000000000000,"y":1950000000000000000,"z":552000000000000000}},"30005201":{"solarSystemId":30005201,"solarSystemName":"Y:2S8R","location":{"x":466018000000000,"y":4340000000000000000,"z":-1200000000000000000}},"30005202":{"solarSystemId":30005202,"solarSystemName":"M:2KV3","location":{"x":1280000000000000000,"y":4240000000000000000,"z":-205000000000000000}},"30005203":{"solarSystemId":30005203,"solarSystemName":"D:341S","location":{"x":174000000000000000,"y":4190000000000000000,"z":-686000000000000000}},"30005204":{"solarSystemId":30005204,"solarSystemName":"Y:2T1L","location":{"x":-1060000000000000000,"y":2750000000000000000,"z":117000000000000000}},"30005205":{"solarSystemId":30005205,"solarSystemName":"U:39T6","location":{"x":423000000000000000,"y":3250000000000000000,"z":-190000000000000000}},"30005206":{"solarSystemId":30005206,"solarSystemName":"Z:2V2T","location":{"x":435000000000000000,"y":4190000000000000000,"z":48700000000000000}},"30005207":{"solarSystemId":30005207,"solarSystemName":"G:3313","location":{"x":-544000000000000000,"y":3120000000000000000,"z":-239000000000000000}},"30005208":{"solarSystemId":30005208,"solarSystemName":"M:3T5A","location":{"x":610000000000000000,"y":3010000000000000000,"z":-1160000000000000000}},"30005209":{"solarSystemId":30005209,"solarSystemName":"J:2S0I","location":{"x":-318000000000000000,"y":3890000000000000000,"z":-160000000000000000}},"30005210":{"solarSystemId":30005210,"solarSystemName":"F:34VS","location":{"x":-890000000000000000,"y":2750000000000000000,"z":-893000000000000000}},"30005211":{"solarSystemId":30005211,"solarSystemName":"Q:2OO9","location":{"x":-231000000000000000,"y":1480000000000000000,"z":-2150000000000000000}},"30005212":{"solarSystemId":30005212,"solarSystemName":"Y:31RT","location":{"x":-55900000000000000,"y":2170000000000000000,"z":-715000000000000000}},"30005213":{"solarSystemId":30005213,"solarSystemName":"J:34SV","location":{"x":273000000000000000,"y":1410000000000000000,"z":-67200000000000000}},"30005214":{"solarSystemId":30005214,"solarSystemName":"Q:2975","location":{"x":-525000000000000000,"y":1390000000000000000,"z":-778000000000000000}},"30005215":{"solarSystemId":30005215,"solarSystemName":"P:2810","location":{"x":-177000000000000000,"y":2690000000000000000,"z":-1890000000000000000}},"30005216":{"solarSystemId":30005216,"solarSystemName":"Z:1TE9","location":{"x":669000000000000000,"y":2340000000000000000,"z":-1110000000000000000}},"30005217":{"solarSystemId":30005217,"solarSystemName":"Z:LIAO","location":{"x":724000000000000000,"y":1400000000000000000,"z":312000000000000000}},"30005218":{"solarSystemId":30005218,"solarSystemName":"Z:2SIN","location":{"x":-1150000000000000000,"y":1900000000000000000,"z":-984000000000000000}},"30005219":{"solarSystemId":30005219,"solarSystemName":"J:2NR7","location":{"x":-212000000000000000,"y":1310000000000000000,"z":-1600000000000000000}},"30005220":{"solarSystemId":30005220,"solarSystemName":"G:3AAS","location":{"x":-210000000000000000,"y":1940000000000000000,"z":-711000000000000000}},"30005221":{"solarSystemId":30005221,"solarSystemName":"D:2LL8","location":{"x":-546000000000000000,"y":2730000000000000000,"z":-2320000000000000000}},"30005222":{"solarSystemId":30005222,"solarSystemName":"M:35A7","location":{"x":19800000000000000,"y":1170000000000000000,"z":-173000000000000000}},"30005223":{"solarSystemId":30005223,"solarSystemName":"M:3NSK","location":{"x":692000000000000000,"y":1640000000000000000,"z":-499000000000000000}},"30005224":{"solarSystemId":30005224,"solarSystemName":"J:3E7L","location":{"x":-80400000000000000,"y":1450000000000000000,"z":-701000000000000000}},"30005225":{"solarSystemId":30005225,"solarSystemName":"D:3IV4","location":{"x":-158000000000000000,"y":2080000000000000000,"z":-1460000000000000000}},"30005226":{"solarSystemId":30005226,"solarSystemName":"F:39AV","location":{"x":-695000000000000000,"y":5380000000000000000,"z":1310000000000000000}},"30005227":{"solarSystemId":30005227,"solarSystemName":"H:3IAO","location":{"x":-1290000000000000000,"y":4170000000000000000,"z":1500000000000000000}},"30005228":{"solarSystemId":30005228,"solarSystemName":"F:2TST","location":{"x":-776000000000000000,"y":3250000000000000000,"z":844000000000000000}},"30005229":{"solarSystemId":30005229,"solarSystemName":"Z:2K35","location":{"x":-402000000000000000,"y":4340000000000000000,"z":1170000000000000000}},"30005230":{"solarSystemId":30005230,"solarSystemName":"Q:3E9O","location":{"x":-510000000000000000,"y":4340000000000000000,"z":1800000000000000000}},"30005231":{"solarSystemId":30005231,"solarSystemName":"Y:3IO9","location":{"x":-1090000000000000000,"y":4380000000000000000,"z":1730000000000000000}},"30005232":{"solarSystemId":30005232,"solarSystemName":"J:2S75","location":{"x":-1030000000000000000,"y":3340000000000000000,"z":1250000000000000000}},"30005233":{"solarSystemId":30005233,"solarSystemName":"H:3254","location":{"x":-150000000000000000,"y":3470000000000000000,"z":1380000000000000000}},"30005234":{"solarSystemId":30005234,"solarSystemName":"Q:3RLR","location":{"x":-690000000000000000,"y":5740000000000000000,"z":-532000000000000000}},"30005235":{"solarSystemId":30005235,"solarSystemName":"Z:39O6","location":{"x":-1020000000000000000,"y":4530000000000000000,"z":561000000000000000}},"30005236":{"solarSystemId":30005236,"solarSystemName":"Y:354I","location":{"x":-933000000000000000,"y":5430000000000000000,"z":749000000000000000}},"30005237":{"solarSystemId":30005237,"solarSystemName":"D:35VK","location":{"x":205000000000000000,"y":4810000000000000000,"z":543000000000000000}},"30005238":{"solarSystemId":30005238,"solarSystemName":"H:3N1N","location":{"x":1360000000000000000,"y":3660000000000000000,"z":1190000000000000000}},"30005239":{"solarSystemId":30005239,"solarSystemName":"Q:38SO","location":{"x":-5400000000000000000,"y":-3280000000000000000,"z":574000000000000000}},"30005240":{"solarSystemId":30005240,"solarSystemName":"H:2OL0","location":{"x":-5950000000000000000,"y":-3730000000000000000,"z":486000000000000000}},"30005241":{"solarSystemId":30005241,"solarSystemName":"G:2KI3","location":{"x":-5430000000000000000,"y":-3810000000000000000,"z":1930000000000000000}},"30005242":{"solarSystemId":30005242,"solarSystemName":"F:3O0I","location":{"x":-6980000000000000000,"y":-3980000000000000000,"z":635000000000000000}},"30005243":{"solarSystemId":30005243,"solarSystemName":"P:3T73","location":{"x":-6290000000000000000,"y":-3520000000000000000,"z":2140000000000000000}},"30005244":{"solarSystemId":30005244,"solarSystemName":"F:39A6","location":{"x":-6030000000000000000,"y":-3740000000000000000,"z":982000000000000000}},"30005245":{"solarSystemId":30005245,"solarSystemName":"F:2S9K","location":{"x":-6720000000000000000,"y":-3620000000000000000,"z":476000000000000000}},"30005246":{"solarSystemId":30005246,"solarSystemName":"F:2A2V","location":{"x":-5270000000000000000,"y":-4200000000000000000,"z":639000000000000000}},"30005247":{"solarSystemId":30005247,"solarSystemName":"M:2R36","location":{"x":-5980000000000000000,"y":-2730000000000000000,"z":1070000000000000000}},"30005248":{"solarSystemId":30005248,"solarSystemName":"B:1E85","location":{"x":-6950000000000000000,"y":-3130000000000000000,"z":1180000000000000000}},"30005249":{"solarSystemId":30005249,"solarSystemName":"B:2V40","location":{"x":-11200000000000000000,"y":-7230000000000000000,"z":2220000000000000000}},"30005250":{"solarSystemId":30005250,"solarSystemName":"P:32RS","location":{"x":-5310000000000000000,"y":-4920000000000000000,"z":3460000000000000000}},"30005251":{"solarSystemId":30005251,"solarSystemName":"B:39N3","location":{"x":-5540000000000000000,"y":-3420000000000000000,"z":3020000000000000000}},"30005252":{"solarSystemId":30005252,"solarSystemName":"D:399R","location":{"x":-6770000000000000000,"y":-3360000000000000000,"z":2090000000000000000}},"30005253":{"solarSystemId":30005253,"solarSystemName":"Z:39SA","location":{"x":-6080000000000000000,"y":-3980000000000000000,"z":2940000000000000000}},"30005254":{"solarSystemId":30005254,"solarSystemName":"Z:3AIV","location":{"x":-6420000000000000000,"y":-3020000000000000000,"z":2100000000000000000}},"30005255":{"solarSystemId":30005255,"solarSystemName":"P:2VTT","location":{"x":-8040000000000000000,"y":-6690000000000000000,"z":2250000000000000000}},"30005256":{"solarSystemId":30005256,"solarSystemName":"F:3I2A","location":{"x":-3630000000000000000,"y":-2320000000000000000,"z":683000000000000000}},"30005257":{"solarSystemId":30005257,"solarSystemName":"D:3A5K","location":{"x":-3960000000000000000,"y":-2950000000000000000,"z":1090000000000000000}},"30005258":{"solarSystemId":30005258,"solarSystemName":"J:2V4K","location":{"x":-3800000000000000000,"y":-3000000000000000000,"z":-528000000000000000}},"30005259":{"solarSystemId":30005259,"solarSystemName":"G:3R24","location":{"x":-4260000000000000000,"y":-3920000000000000000,"z":-568000000000000000}},"30005260":{"solarSystemId":30005260,"solarSystemName":"D:3V31","location":{"x":-4090000000000000000,"y":-3020000000000000000,"z":1030000000000000000}},"30005261":{"solarSystemId":30005261,"solarSystemName":"Q:37I6","location":{"x":-4310000000000000000,"y":-2640000000000000000,"z":-428000000000000000}},"30005262":{"solarSystemId":30005262,"solarSystemName":"M:3V3A","location":{"x":-4380000000000000000,"y":-2360000000000000000,"z":924000000000000000}},"30005263":{"solarSystemId":30005263,"solarSystemName":"M:3NS0","location":{"x":-2840000000000000000,"y":-2870000000000000000,"z":682000000000000000}},"30005264":{"solarSystemId":30005264,"solarSystemName":"Y:2OSR","location":{"x":-3240000000000000000,"y":-2270000000000000000,"z":581000000000000000}},"30005265":{"solarSystemId":30005265,"solarSystemName":"D:2IA2","location":{"x":-3990000000000000000,"y":-2980000000000000000,"z":864000000000000000}},"30005266":{"solarSystemId":30005266,"solarSystemName":"U:3R25","location":{"x":-4280000000000000000,"y":-3650000000000000000,"z":185000000000000000}},"30005267":{"solarSystemId":30005267,"solarSystemName":"Y:3I4L","location":{"x":-4030000000000000000,"y":-2570000000000000000,"z":-259000000000000000}},"30005268":{"solarSystemId":30005268,"solarSystemName":"M:393O","location":{"x":-3720000000000000000,"y":-3080000000000000000,"z":451000000000000000}},"30005269":{"solarSystemId":30005269,"solarSystemName":"P:2REL","location":{"x":-2990000000000000000,"y":-3310000000000000000,"z":-16100000000000000}},"30005270":{"solarSystemId":30005270,"solarSystemName":"Y:3981","location":{"x":-3260000000000000000,"y":-4600000000000000000,"z":1490000000000000000}},"30005271":{"solarSystemId":30005271,"solarSystemName":"Z:35E9","location":{"x":-3740000000000000000,"y":-5050000000000000000,"z":693000000000000000}},"30005272":{"solarSystemId":30005272,"solarSystemName":"Z:36EV","location":{"x":-3900000000000000000,"y":-4710000000000000000,"z":1080000000000000000}},"30005273":{"solarSystemId":30005273,"solarSystemName":"P:33L8","location":{"x":-4200000000000000000,"y":-4230000000000000000,"z":589000000000000000}},"30005274":{"solarSystemId":30005274,"solarSystemName":"Y:35RT","location":{"x":-3560000000000000000,"y":-5130000000000000000,"z":553000000000000000}},"30005275":{"solarSystemId":30005275,"solarSystemName":"J:387N","location":{"x":-4660000000000000000,"y":-4800000000000000000,"z":1640000000000000000}},"30005276":{"solarSystemId":30005276,"solarSystemName":"Z:3VS2","location":{"x":-2930000000000000000,"y":-4820000000000000000,"z":1580000000000000000}},"30005277":{"solarSystemId":30005277,"solarSystemName":"F:318L","location":{"x":-4640000000000000000,"y":-3240000000000000000,"z":1610000000000000000}},"30005278":{"solarSystemId":30005278,"solarSystemName":"U:2KRE","location":{"x":-5300000000000000000,"y":-2420000000000000000,"z":1100000000000000000}},"30005279":{"solarSystemId":30005279,"solarSystemName":"U:318A","location":{"x":-4660000000000000000,"y":-3380000000000000000,"z":1390000000000000000}},"30005280":{"solarSystemId":30005280,"solarSystemName":"U:35K7","location":{"x":-4200000000000000000,"y":-2110000000000000000,"z":2260000000000000000}},"30005281":{"solarSystemId":30005281,"solarSystemName":"P:29IA","location":{"x":-4740000000000000000,"y":-2500000000000000000,"z":2760000000000000000}},"30005282":{"solarSystemId":30005282,"solarSystemName":"B:3OKO","location":{"x":-5350000000000000000,"y":-2240000000000000000,"z":1860000000000000000}},"30005283":{"solarSystemId":30005283,"solarSystemName":"P:2N3S","location":{"x":-4890000000000000000,"y":-2830000000000000000,"z":1560000000000000000}},"30005284":{"solarSystemId":30005284,"solarSystemName":"B:2K2K","location":{"x":-4990000000000000000,"y":-3020000000000000000,"z":2110000000000000000}},"30005285":{"solarSystemId":30005285,"solarSystemName":"B:33L1","location":{"x":-4660000000000000000,"y":-2270000000000000000,"z":1670000000000000000}},"30005286":{"solarSystemId":30005286,"solarSystemName":"U:3R7T","location":{"x":-5000000000000000000,"y":-3090000000000000000,"z":1740000000000000000}},"30005287":{"solarSystemId":30005287,"solarSystemName":"G:2S4E","location":{"x":-4820000000000000000,"y":-3470000000000000000,"z":787000000000000000}},"30005288":{"solarSystemId":30005288,"solarSystemName":"Z:3V05","location":{"x":-6330000000000000000,"y":-2570000000000000000,"z":936000000000000000}},"30005289":{"solarSystemId":30005289,"solarSystemName":"Y:2KO4","location":{"x":-7220000000000000000,"y":-2410000000000000000,"z":1400000000000000000}},"30005290":{"solarSystemId":30005290,"solarSystemName":"Q:3TKR","location":{"x":-5860000000000000000,"y":-2070000000000000000,"z":163000000000000000}},"30005291":{"solarSystemId":30005291,"solarSystemName":"G:29TA","location":{"x":-6600000000000000000,"y":-2020000000000000000,"z":1220000000000000000}},"30005292":{"solarSystemId":30005292,"solarSystemName":"H:31KK","location":{"x":-6370000000000000000,"y":-1860000000000000000,"z":1930000000000000000}},"30005293":{"solarSystemId":30005293,"solarSystemName":"B:2N84","location":{"x":-6000000000000000000,"y":-2140000000000000000,"z":58500000000000000}},"30005294":{"solarSystemId":30005294,"solarSystemName":"G:23AE","location":{"x":-6540000000000000000,"y":-2160000000000000000,"z":389000000000000000}},"30005295":{"solarSystemId":30005295,"solarSystemName":"B:3A78","location":{"x":-5870000000000000000,"y":-1950000000000000000,"z":1710000000000000000}},"30005296":{"solarSystemId":30005296,"solarSystemName":"J:2ITS","location":{"x":-6200000000000000000,"y":-1950000000000000000,"z":1200000000000000000}},"30005297":{"solarSystemId":30005297,"solarSystemName":"H:2ER6","location":{"x":-6130000000000000000,"y":-2030000000000000000,"z":1670000000000000000}},"30005298":{"solarSystemId":30005298,"solarSystemName":"Q:2IRS","location":{"x":-5790000000000000000,"y":-1870000000000000000,"z":594000000000000000}},"30005299":{"solarSystemId":30005299,"solarSystemName":"J:2ONV","location":{"x":-5300000000000000000,"y":-2570000000000000000,"z":788000000000000000}},"30005300":{"solarSystemId":30005300,"solarSystemName":"B:3AL0","location":{"x":-6990000000000000000,"y":-1870000000000000000,"z":614000000000000000}},"30005301":{"solarSystemId":30005301,"solarSystemName":"B:3I27","location":{"x":-6260000000000000000,"y":-2520000000000000000,"z":308000000000000000}},"30005302":{"solarSystemId":30005302,"solarSystemName":"B:3I41","location":{"x":-6560000000000000000,"y":-2590000000000000000,"z":307000000000000000}},"30005303":{"solarSystemId":30005303,"solarSystemName":"B:3028","location":{"x":-6630000000000000000,"y":-2530000000000000000,"z":1430000000000000000}},"30005304":{"solarSystemId":30005304,"solarSystemName":"F:39OE","location":{"x":-5990000000000000000,"y":-5100000000000000000,"z":-11500000000000000}},"30005305":{"solarSystemId":30005305,"solarSystemName":"Z:37E6","location":{"x":-5850000000000000000,"y":-5010000000000000000,"z":1490000000000000000}},"30005306":{"solarSystemId":30005306,"solarSystemName":"Y:3NIK","location":{"x":-5870000000000000000,"y":-5230000000000000000,"z":1260000000000000000}},"30005307":{"solarSystemId":30005307,"solarSystemName":"D:35IV","location":{"x":-4600000000000000000,"y":-5010000000000000000,"z":2350000000000000000}},"30005308":{"solarSystemId":30005308,"solarSystemName":"P:2T1I","location":{"x":-5380000000000000000,"y":-5760000000000000000,"z":929000000000000000}},"30005309":{"solarSystemId":30005309,"solarSystemName":"F:3NAI","location":{"x":-5320000000000000000,"y":-4560000000000000000,"z":2590000000000000000}},"30005310":{"solarSystemId":30005310,"solarSystemName":"D:3I76","location":{"x":-5950000000000000000,"y":-4250000000000000000,"z":2700000000000000000}},"30005311":{"solarSystemId":30005311,"solarSystemName":"M:31TV","location":{"x":-5960000000000000000,"y":-2430000000000000000,"z":3470000000000000000}},"30005312":{"solarSystemId":30005312,"solarSystemName":"H:31AL","location":{"x":-6630000000000000000,"y":-3830000000000000000,"z":3200000000000000000}},"30005313":{"solarSystemId":30005313,"solarSystemName":"J:272T","location":{"x":-6960000000000000000,"y":-2310000000000000000,"z":3770000000000000000}},"30005314":{"solarSystemId":30005314,"solarSystemName":"Q:RR9N","location":{"x":-6080000000000000000,"y":-2300000000000000000,"z":2910000000000000000}},"30005315":{"solarSystemId":30005315,"solarSystemName":"B:3ES8","location":{"x":-6510000000000000000,"y":-4090000000000000000,"z":3800000000000000000}},"30005316":{"solarSystemId":30005316,"solarSystemName":"G:35VA","location":{"x":-6920000000000000000,"y":-3470000000000000000,"z":3090000000000000000}},"30005317":{"solarSystemId":30005317,"solarSystemName":"F:299S","location":{"x":-6740000000000000000,"y":-1960000000000000000,"z":2980000000000000000}},"30005318":{"solarSystemId":30005318,"solarSystemName":"D:2N8T","location":{"x":-6020000000000000000,"y":-2050000000000000000,"z":4060000000000000000}},"30005319":{"solarSystemId":30005319,"solarSystemName":"M:2EI1","location":{"x":-7260000000000000000,"y":-2420000000000000000,"z":2950000000000000000}},"30005320":{"solarSystemId":30005320,"solarSystemName":"M:3905","location":{"x":-6620000000000000000,"y":-2940000000000000000,"z":3570000000000000000}},"30005321":{"solarSystemId":30005321,"solarSystemName":"D:2S1K","location":{"x":-6640000000000000000,"y":-3880000000000000000,"z":3420000000000000000}},"30005322":{"solarSystemId":30005322,"solarSystemName":"Y:10L7","location":{"x":-7000000000000000000,"y":-3300000000000000000,"z":3980000000000000000}},"30005323":{"solarSystemId":30005323,"solarSystemName":"Z:316T","location":{"x":-5890000000000000000,"y":-6440000000000000000,"z":2910000000000000000}},"30005324":{"solarSystemId":30005324,"solarSystemName":"M:3NTT","location":{"x":-5340000000000000000,"y":-6640000000000000000,"z":2860000000000000000}},"30005325":{"solarSystemId":30005325,"solarSystemName":"D:3RAK","location":{"x":-4650000000000000000,"y":-6880000000000000000,"z":1710000000000000000}},"30005326":{"solarSystemId":30005326,"solarSystemName":"B:2RV7","location":{"x":-5600000000000000000,"y":-6770000000000000000,"z":2100000000000000000}},"30005327":{"solarSystemId":30005327,"solarSystemName":"B:2TVO","location":{"x":-5870000000000000000,"y":-5690000000000000000,"z":2500000000000000000}},"30005328":{"solarSystemId":30005328,"solarSystemName":"H:1IRL","location":{"x":-25800000000000000000,"y":-1110000000000000000,"z":1030000000000000000}},"30005329":{"solarSystemId":30005329,"solarSystemName":"M:1R27","location":{"x":-25200000000000000000,"y":-990000000000000000,"z":729000000000000000}},"30005330":{"solarSystemId":30005330,"solarSystemName":"H:402K","location":{"x":-26100000000000000000,"y":-1170000000000000000,"z":747000000000000000}},"30005331":{"solarSystemId":30005331,"solarSystemName":"M:7LSK","location":{"x":-25300000000000000000,"y":-1410000000000000000,"z":1070000000000000000}},"30005332":{"solarSystemId":30005332,"solarSystemName":"G:2304","location":{"x":-24800000000000000000,"y":-679000000000000000,"z":102000000000000000}},"30005333":{"solarSystemId":30005333,"solarSystemName":"G:19V9","location":{"x":-25200000000000000000,"y":-1100000000000000000,"z":863000000000000000}},"30005334":{"solarSystemId":30005334,"solarSystemName":"D:L17K","location":{"x":-25500000000000000000,"y":-359000000000000000,"z":317000000000000000}},"30005335":{"solarSystemId":30005335,"solarSystemName":"B:1806","location":{"x":-26000000000000000000,"y":-859000000000000000,"z":1110000000000000000}},"30005336":{"solarSystemId":30005336,"solarSystemName":"F:2V45","location":{"x":-25100000000000000000,"y":-981000000000000000,"z":234000000000000000}},"30005337":{"solarSystemId":30005337,"solarSystemName":"J:2RLV","location":{"x":-25000000000000000000,"y":-817000000000000000,"z":-7920000000000000}},"30005338":{"solarSystemId":30005338,"solarSystemName":"M:4338","location":{"x":-25000000000000000000,"y":-349000000000000000,"z":635000000000000000}},"30005339":{"solarSystemId":30005339,"solarSystemName":"U:1A13","location":{"x":-25300000000000000000,"y":-923000000000000000,"z":143000000000000000}},"30005340":{"solarSystemId":30005340,"solarSystemName":"Y:19N5","location":{"x":-24700000000000000000,"y":-1520000000000000000,"z":-443000000000000000}},"30005341":{"solarSystemId":30005341,"solarSystemName":"Q:171E","location":{"x":-24400000000000000000,"y":-1060000000000000000,"z":-493000000000000000}},"30005342":{"solarSystemId":30005342,"solarSystemName":"Y:2KR9","location":{"x":-27200000000000000000,"y":-1390000000000000000,"z":-27700000000000000}},"30005343":{"solarSystemId":30005343,"solarSystemName":"U:SKKR","location":{"x":-25500000000000000000,"y":-2510000000000000000,"z":477000000000000000}},"30005344":{"solarSystemId":30005344,"solarSystemName":"G:1O27","location":{"x":-24500000000000000000,"y":-2810000000000000000,"z":663000000000000000}},"30005345":{"solarSystemId":30005345,"solarSystemName":"H:VKI0","location":{"x":-23600000000000000000,"y":-1810000000000000000,"z":291000000000000000}},"30005346":{"solarSystemId":30005346,"solarSystemName":"H:160O","location":{"x":-26800000000000000000,"y":-1140000000000000000,"z":-16300000000000000}},"30005347":{"solarSystemId":30005347,"solarSystemName":"H:IVKL","location":{"x":-24200000000000000000,"y":-1460000000000000000,"z":-273000000000000000}},"30005348":{"solarSystemId":30005348,"solarSystemName":"H:V412","location":{"x":-24800000000000000000,"y":-1440000000000000000,"z":-612000000000000000}},"30005349":{"solarSystemId":30005349,"solarSystemName":"Q:I20I","location":{"x":-26400000000000000000,"y":-1390000000000000000,"z":597000000000000000}},"30005350":{"solarSystemId":30005350,"solarSystemName":"J:39T7","location":{"x":-26400000000000000000,"y":-1130000000000000000,"z":-44800000000000000}},"30005351":{"solarSystemId":30005351,"solarSystemName":"G:T34K","location":{"x":-28000000000000000000,"y":83800000000000000,"z":-1190000000000000000}},"30005352":{"solarSystemId":30005352,"solarSystemName":"J:N6L1","location":{"x":-26400000000000000000,"y":-1100000000000000000,"z":-999000000000000000}},"30005353":{"solarSystemId":30005353,"solarSystemName":"J:3S9L","location":{"x":-26900000000000000000,"y":-703000000000000000,"z":-346000000000000000}},"30005354":{"solarSystemId":30005354,"solarSystemName":"D:25TI","location":{"x":-26600000000000000000,"y":-631000000000000000,"z":-426000000000000000}},"30005355":{"solarSystemId":30005355,"solarSystemName":"J:1A7O","location":{"x":-26500000000000000000,"y":-412000000000000000,"z":-322000000000000000}},"30005356":{"solarSystemId":30005356,"solarSystemName":"M:147E","location":{"x":-26200000000000000000,"y":-356000000000000000,"z":-1480000000000000000}},"30005357":{"solarSystemId":30005357,"solarSystemName":"P:2I8E","location":{"x":-26300000000000000000,"y":-122000000000000000,"z":-1340000000000000000}},"30005358":{"solarSystemId":30005358,"solarSystemName":"F:2S1N","location":{"x":-26800000000000000000,"y":-1030000000000000000,"z":-889000000000000000}},"30005359":{"solarSystemId":30005359,"solarSystemName":"Q:25I5","location":{"x":-26400000000000000000,"y":-629000000000000000,"z":-1050000000000000000}},"30005360":{"solarSystemId":30005360,"solarSystemName":"Y:TTSK","location":{"x":-27100000000000000000,"y":-578000000000000000,"z":-1160000000000000000}},"30005361":{"solarSystemId":30005361,"solarSystemName":"J:NLTE","location":{"x":-26600000000000000000,"y":-1030000000000000000,"z":-1450000000000000000}},"30005362":{"solarSystemId":30005362,"solarSystemName":"F:1TLR","location":{"x":-26700000000000000000,"y":-682000000000000000,"z":-328000000000000000}},"30005363":{"solarSystemId":30005363,"solarSystemName":"Q:3T6T","location":{"x":-27700000000000000000,"y":-2850000000000000000,"z":1150000000000000000}},"30005364":{"solarSystemId":30005364,"solarSystemName":"M:356A","location":{"x":-29000000000000000000,"y":-418000000000000000,"z":2690000000000000000}},"30005365":{"solarSystemId":30005365,"solarSystemName":"G:LAEE","location":{"x":-29200000000000000000,"y":-868000000000000000,"z":2410000000000000000}},"30005366":{"solarSystemId":30005366,"solarSystemName":"F:112N","location":{"x":-29100000000000000000,"y":-1220000000000000000,"z":1890000000000000000}},"30005367":{"solarSystemId":30005367,"solarSystemName":"P:SSNV","location":{"x":-27000000000000000000,"y":-2780000000000000000,"z":1910000000000000000}},"30005368":{"solarSystemId":30005368,"solarSystemName":"F:1I1V","location":{"x":-27600000000000000000,"y":-923000000000000000,"z":1350000000000000000}},"30005369":{"solarSystemId":30005369,"solarSystemName":"D:1286","location":{"x":-27300000000000000000,"y":-1580000000000000000,"z":3000000000000000000}},"30005370":{"solarSystemId":30005370,"solarSystemName":"Y:1240","location":{"x":-29200000000000000000,"y":-432000000000000000,"z":1830000000000000000}},"30005371":{"solarSystemId":30005371,"solarSystemName":"J:2L3L","location":{"x":-28400000000000000000,"y":-1440000000000000000,"z":2320000000000000000}},"30005372":{"solarSystemId":30005372,"solarSystemName":"H:S2EL","location":{"x":-29200000000000000000,"y":-1350000000000000000,"z":3110000000000000000}},"30005373":{"solarSystemId":30005373,"solarSystemName":"Z:S368","location":{"x":-28200000000000000000,"y":-228000000000000000,"z":2560000000000000000}},"30005374":{"solarSystemId":30005374,"solarSystemName":"U:2225","location":{"x":-28300000000000000000,"y":-59200000000000000,"z":2190000000000000000}},"30005375":{"solarSystemId":30005375,"solarSystemName":"H:3IL5","location":{"x":-26700000000000000000,"y":-321000000000000000,"z":1260000000000000000}},"30005376":{"solarSystemId":30005376,"solarSystemName":"H:3K9N","location":{"x":-27100000000000000000,"y":-515000000000000000,"z":2040000000000000000}},"30005377":{"solarSystemId":30005377,"solarSystemName":"M:340O","location":{"x":-27300000000000000000,"y":-277000000000000000,"z":2200000000000000000}},"30005378":{"solarSystemId":30005378,"solarSystemName":"J:1N31","location":{"x":-26400000000000000000,"y":-251000000000000000,"z":1420000000000000000}},"30005379":{"solarSystemId":30005379,"solarSystemName":"J:1158","location":{"x":-26800000000000000000,"y":-61100000000000000,"z":1710000000000000000}},"30005380":{"solarSystemId":30005380,"solarSystemName":"J:K4KO","location":{"x":-28000000000000000000,"y":-610000000000000000,"z":1280000000000000000}},"30005381":{"solarSystemId":30005381,"solarSystemName":"D:5288","location":{"x":-26800000000000000000,"y":-346000000000000000,"z":1320000000000000000}},"30005382":{"solarSystemId":30005382,"solarSystemName":"Z:139I","location":{"x":-26500000000000000000,"y":-856000000000000000,"z":2170000000000000000}},"30005383":{"solarSystemId":30005383,"solarSystemName":"Y:3R6N","location":{"x":-27500000000000000000,"y":-310000000000000000,"z":2330000000000000000}},"30005384":{"solarSystemId":30005384,"solarSystemName":"D:17NI","location":{"x":-26800000000000000000,"y":-735000000000000000,"z":986000000000000000}},"30005385":{"solarSystemId":30005385,"solarSystemName":"M:17IK","location":{"x":-27200000000000000000,"y":-519000000000000000,"z":1520000000000000000}},"30005386":{"solarSystemId":30005386,"solarSystemName":"J:1OKN","location":{"x":-27200000000000000000,"y":-228000000000000000,"z":164000000000000000}},"30005387":{"solarSystemId":30005387,"solarSystemName":"U:1NN8","location":{"x":-28400000000000000000,"y":-1390000000000000000,"z":-193000000000000000}},"30005388":{"solarSystemId":30005388,"solarSystemName":"P:19EL","location":{"x":-28300000000000000000,"y":-688000000000000000,"z":1040000000000000000}},"30005389":{"solarSystemId":30005389,"solarSystemName":"P:273A","location":{"x":-27500000000000000000,"y":-461000000000000000,"z":-995000000000000000}},"30005390":{"solarSystemId":30005390,"solarSystemName":"G:4O37","location":{"x":-28400000000000000000,"y":-161000000000000000,"z":-191000000000000000}},"30005391":{"solarSystemId":30005391,"solarSystemName":"D:23RL","location":{"x":-28600000000000000000,"y":-339000000000000000,"z":244000000000000000}},"30005392":{"solarSystemId":30005392,"solarSystemName":"Z:17E9","location":{"x":-27600000000000000000,"y":-619000000000000000,"z":-523000000000000000}},"30005393":{"solarSystemId":30005393,"solarSystemName":"Y:475N","location":{"x":-28000000000000000000,"y":-420000000000000000,"z":-62300000000000000}},"30005394":{"solarSystemId":30005394,"solarSystemName":"F:AKK2","location":{"x":-28800000000000000000,"y":48200000000000000,"z":-549000000000000000}},"30005395":{"solarSystemId":30005395,"solarSystemName":"M:ET1I","location":{"x":-28300000000000000000,"y":314000000000000000,"z":-893000000000000000}},"30005396":{"solarSystemId":30005396,"solarSystemName":"Z:43NS","location":{"x":-27900000000000000000,"y":-406000000000000000,"z":842000000000000000}},"30005397":{"solarSystemId":30005397,"solarSystemName":"B:3VO3","location":{"x":-27300000000000000000,"y":3320000000000000000,"z":173000000000000000}},"30005398":{"solarSystemId":30005398,"solarSystemName":"B:291A","location":{"x":-24900000000000000000,"y":2840000000000000000,"z":-481000000000000000}},"30005399":{"solarSystemId":30005399,"solarSystemName":"G:19NI","location":{"x":-28900000000000000000,"y":1570000000000000000,"z":-1100000000000000000}},"30005400":{"solarSystemId":30005400,"solarSystemName":"D:2AEA","location":{"x":-28400000000000000000,"y":2010000000000000000,"z":-141000000000000000}},"30005401":{"solarSystemId":30005401,"solarSystemName":"F:10AA","location":{"x":-27800000000000000000,"y":1650000000000000000,"z":-321000000000000000}},"30005402":{"solarSystemId":30005402,"solarSystemName":"Z:1467","location":{"x":-29600000000000000000,"y":1860000000000000000,"z":-1390000000000000000}},"30005403":{"solarSystemId":30005403,"solarSystemName":"H:14KL","location":{"x":-28200000000000000000,"y":683000000000000000,"z":-1320000000000000000}},"30005404":{"solarSystemId":30005404,"solarSystemName":"J:T9O4","location":{"x":-26100000000000000000,"y":88500000000000000,"z":226000000000000000}},"30005405":{"solarSystemId":30005405,"solarSystemName":"Y:10IL","location":{"x":-25200000000000000000,"y":-26500000000000000,"z":698000000000000000}},"30005406":{"solarSystemId":30005406,"solarSystemName":"F:7897","location":{"x":-26400000000000000000,"y":-815000000000000000,"z":-314000000000000000}},"30005407":{"solarSystemId":30005407,"solarSystemName":"B:2N9R","location":{"x":-26200000000000000000,"y":-477000000000000000,"z":380000000000000000}},"30005408":{"solarSystemId":30005408,"solarSystemName":"J:S408","location":{"x":-25900000000000000000,"y":942000000000000000,"z":1870000000000000000}},"30005409":{"solarSystemId":30005409,"solarSystemName":"Q:19VE","location":{"x":-26000000000000000000,"y":-400000000000000000,"z":1280000000000000000}},"30005410":{"solarSystemId":30005410,"solarSystemName":"B:O2KT","location":{"x":-25300000000000000000,"y":449000000000000000,"z":1350000000000000000}},"30005411":{"solarSystemId":30005411,"solarSystemName":"M:1V10","location":{"x":-26400000000000000000,"y":-460000000000000000,"z":124000000000000000}},"30005412":{"solarSystemId":30005412,"solarSystemName":"Y:O62E","location":{"x":-26100000000000000000,"y":-882000000000000000,"z":188000000000000000}},"30005413":{"solarSystemId":30005413,"solarSystemName":"H:1I62","location":{"x":-26300000000000000000,"y":-703000000000000000,"z":682000000000000000}},"30005414":{"solarSystemId":30005414,"solarSystemName":"U:EARN","location":{"x":-25200000000000000000,"y":3270000000000000,"z":971000000000000000}},"30005415":{"solarSystemId":30005415,"solarSystemName":"J:3N04","location":{"x":-25600000000000000000,"y":321000000000000000,"z":936000000000000000}},"30005416":{"solarSystemId":30005416,"solarSystemName":"D:TNV0","location":{"x":-20500000000000000000,"y":-186000000000000000,"z":-2960000000000000000}},"30005417":{"solarSystemId":30005417,"solarSystemName":"Q:LVSS","location":{"x":-20400000000000000000,"y":-239000000000000000,"z":-2930000000000000000}},"30005418":{"solarSystemId":30005418,"solarSystemName":"B:1INI","location":{"x":-20400000000000000000,"y":-44800000000000000,"z":-3260000000000000000}},"30005419":{"solarSystemId":30005419,"solarSystemName":"Q:NT85","location":{"x":-20200000000000000000,"y":-220000000000000000,"z":-3080000000000000000}},"30005420":{"solarSystemId":30005420,"solarSystemName":"Q:15SN","location":{"x":-20200000000000000000,"y":3540000000000000,"z":-3080000000000000000}},"30005421":{"solarSystemId":30005421,"solarSystemName":"Y:1ANK","location":{"x":-20300000000000000000,"y":-308000000000000000,"z":-3380000000000000000}},"30005422":{"solarSystemId":30005422,"solarSystemName":"H:1IT3","location":{"x":-20300000000000000000,"y":-97400000000000000,"z":-3140000000000000000}},"30005423":{"solarSystemId":30005423,"solarSystemName":"B:3IIV","location":{"x":-20300000000000000000,"y":-448000000000000000,"z":-2950000000000000000}},"30005424":{"solarSystemId":30005424,"solarSystemName":"P:VAOV","location":{"x":-20600000000000000000,"y":-89300000000000000,"z":-2770000000000000000}},"30005425":{"solarSystemId":30005425,"solarSystemName":"P:1K8L","location":{"x":-20000000000000000000,"y":-164000000000000000,"z":-3050000000000000000}},"30005426":{"solarSystemId":30005426,"solarSystemName":"Y:162T","location":{"x":-20300000000000000000,"y":-339000000000000000,"z":-3080000000000000000}},"30005427":{"solarSystemId":30005427,"solarSystemName":"Q:TE1O","location":{"x":-20300000000000000000,"y":-303000000000000000,"z":-3230000000000000000}},"30005428":{"solarSystemId":30005428,"solarSystemName":"J:1230","location":{"x":-20300000000000000000,"y":160000000000000000,"z":-2830000000000000000}},"30005429":{"solarSystemId":30005429,"solarSystemName":"Y:109R","location":{"x":-20500000000000000000,"y":-252000000000000000,"z":-2890000000000000000}},"30005430":{"solarSystemId":30005430,"solarSystemName":"M:175N","location":{"x":-20300000000000000000,"y":-176000000000000000,"z":-3070000000000000000}},"30005431":{"solarSystemId":30005431,"solarSystemName":"M:1511","location":{"x":-20600000000000000000,"y":-89400000000000000,"z":-3020000000000000000}},"30005432":{"solarSystemId":30005432,"solarSystemName":"B:19NO","location":{"x":-20100000000000000000,"y":-12600000000000000,"z":-2860000000000000000}},"30005433":{"solarSystemId":30005433,"solarSystemName":"G:1I1S","location":{"x":-20100000000000000000,"y":-219000000000000000,"z":-3220000000000000000}},"30005434":{"solarSystemId":30005434,"solarSystemName":"H:VA88","location":{"x":-20300000000000000000,"y":-16100000000000000,"z":-3220000000000000000}},"30005435":{"solarSystemId":30005435,"solarSystemName":"U:SNRA","location":{"x":-20600000000000000000,"y":-1460000000000000000,"z":-3850000000000000000}},"30005436":{"solarSystemId":30005436,"solarSystemName":"P:103V","location":{"x":-20600000000000000000,"y":-1950000000000000000,"z":-3310000000000000000}},"30005437":{"solarSystemId":30005437,"solarSystemName":"G:1AT4","location":{"x":-20300000000000000000,"y":-2150000000000000000,"z":-3640000000000000000}},"30005438":{"solarSystemId":30005438,"solarSystemName":"Y:1859","location":{"x":-21000000000000000000,"y":-1950000000000000000,"z":-3640000000000000000}},"30005439":{"solarSystemId":30005439,"solarSystemName":"P:15IN","location":{"x":-20700000000000000000,"y":-1930000000000000000,"z":-4240000000000000000}},"30005440":{"solarSystemId":30005440,"solarSystemName":"G:18OR","location":{"x":-20600000000000000000,"y":-1500000000000000000,"z":-3890000000000000000}},"30005441":{"solarSystemId":30005441,"solarSystemName":"J:1IL7","location":{"x":-20500000000000000000,"y":-1920000000000000000,"z":-3770000000000000000}},"30005442":{"solarSystemId":30005442,"solarSystemName":"U:1904","location":{"x":-20800000000000000000,"y":-1750000000000000000,"z":-3510000000000000000}},"30005443":{"solarSystemId":30005443,"solarSystemName":"G:17L6","location":{"x":-20300000000000000000,"y":-1520000000000000000,"z":-3840000000000000000}},"30005444":{"solarSystemId":30005444,"solarSystemName":"B:1A1R","location":{"x":-20600000000000000000,"y":-1560000000000000000,"z":-4000000000000000000}},"30005445":{"solarSystemId":30005445,"solarSystemName":"P:RR54","location":{"x":-20500000000000000000,"y":-1710000000000000000,"z":-3750000000000000000}},"30005446":{"solarSystemId":30005446,"solarSystemName":"Z:L5T6","location":{"x":-20900000000000000000,"y":-1700000000000000000,"z":-3620000000000000000}},"30005447":{"solarSystemId":30005447,"solarSystemName":"J:14N4","location":{"x":-20500000000000000000,"y":-1720000000000000000,"z":-3260000000000000000}},"30005448":{"solarSystemId":30005448,"solarSystemName":"P:NTVT","location":{"x":-20400000000000000000,"y":-2480000000000000000,"z":-3780000000000000000}},"30005449":{"solarSystemId":30005449,"solarSystemName":"Z:1O0E","location":{"x":-20600000000000000000,"y":-1230000000000000000,"z":-4730000000000000000}},"30005450":{"solarSystemId":30005450,"solarSystemName":"F:KT24","location":{"x":-20500000000000000000,"y":-1340000000000000000,"z":-4610000000000000000}},"30005451":{"solarSystemId":30005451,"solarSystemName":"M:16KS","location":{"x":-20100000000000000000,"y":-1170000000000000000,"z":-4490000000000000000}},"30005452":{"solarSystemId":30005452,"solarSystemName":"Y:19EV","location":{"x":-20200000000000000000,"y":-1220000000000000000,"z":-4760000000000000000}},"30005453":{"solarSystemId":30005453,"solarSystemName":"H:4K74","location":{"x":-20400000000000000000,"y":-1020000000000000000,"z":-4400000000000000000}},"30005454":{"solarSystemId":30005454,"solarSystemName":"D:2S28","location":{"x":-20100000000000000000,"y":-1630000000000000000,"z":-4830000000000000000}},"30005455":{"solarSystemId":30005455,"solarSystemName":"M:S6ER","location":{"x":-20800000000000000000,"y":-1020000000000000000,"z":-4570000000000000000}},"30005456":{"solarSystemId":30005456,"solarSystemName":"G:12I4","location":{"x":-20200000000000000000,"y":-1040000000000000000,"z":-4390000000000000000}},"30005457":{"solarSystemId":30005457,"solarSystemName":"F:19K6","location":{"x":-20700000000000000000,"y":-1290000000000000000,"z":-4570000000000000000}},"30005458":{"solarSystemId":30005458,"solarSystemName":"J:21NN","location":{"x":-20000000000000000000,"y":-1700000000000000000,"z":-4840000000000000000}},"30005459":{"solarSystemId":30005459,"solarSystemName":"Y:12NK","location":{"x":-20700000000000000000,"y":-1320000000000000000,"z":-4370000000000000000}},"30005460":{"solarSystemId":30005460,"solarSystemName":"B:NTTR","location":{"x":-20500000000000000000,"y":-1540000000000000000,"z":-4460000000000000000}},"30005461":{"solarSystemId":30005461,"solarSystemName":"J:1132","location":{"x":-20600000000000000000,"y":-913000000000000000,"z":-4710000000000000000}},"30005462":{"solarSystemId":30005462,"solarSystemName":"D:17LO","location":{"x":-20500000000000000000,"y":-1160000000000000000,"z":-4850000000000000000}},"30005463":{"solarSystemId":30005463,"solarSystemName":"Y:SS2L","location":{"x":-20600000000000000000,"y":-1440000000000000000,"z":-4700000000000000000}},"30005464":{"solarSystemId":30005464,"solarSystemName":"F:1411","location":{"x":-20500000000000000000,"y":-974000000000000000,"z":-4590000000000000000}},"30005465":{"solarSystemId":30005465,"solarSystemName":"P:17V1","location":{"x":-20600000000000000000,"y":-1220000000000000000,"z":-4430000000000000000}},"30005466":{"solarSystemId":30005466,"solarSystemName":"Q:L4V7","location":{"x":-20800000000000000000,"y":-1240000000000000000,"z":-4690000000000000000}},"30005467":{"solarSystemId":30005467,"solarSystemName":"Y:1K5V","location":{"x":-21200000000000000000,"y":-2930000000000000000,"z":-5140000000000000000}},"30005468":{"solarSystemId":30005468,"solarSystemName":"U:30K8","location":{"x":-20500000000000000000,"y":-3030000000000000000,"z":-3900000000000000000}},"30005469":{"solarSystemId":30005469,"solarSystemName":"D:TTSK","location":{"x":-20900000000000000000,"y":-1890000000000000000,"z":-3180000000000000000}},"30005470":{"solarSystemId":30005470,"solarSystemName":"J:148R","location":{"x":-21100000000000000000,"y":-1940000000000000000,"z":-3430000000000000000}},"30005471":{"solarSystemId":30005471,"solarSystemName":"M:162V","location":{"x":-21300000000000000000,"y":-2510000000000000000,"z":-3410000000000000000}},"30005472":{"solarSystemId":30005472,"solarSystemName":"H:1670","location":{"x":-21400000000000000000,"y":-3790000000000000000,"z":-3240000000000000000}},"30005473":{"solarSystemId":30005473,"solarSystemName":"F:1I5I","location":{"x":-21300000000000000000,"y":-3430000000000000000,"z":-4760000000000000000}},"30005474":{"solarSystemId":30005474,"solarSystemName":"H:12T5","location":{"x":-20800000000000000000,"y":-4100000000000000000,"z":-3790000000000000000}},"30005475":{"solarSystemId":30005475,"solarSystemName":"U:14RE","location":{"x":-21200000000000000000,"y":-3390000000000000000,"z":-3780000000000000000}},"30005476":{"solarSystemId":30005476,"solarSystemName":"U:1296","location":{"x":-21100000000000000000,"y":-3480000000000000000,"z":-3730000000000000000}},"30005477":{"solarSystemId":30005477,"solarSystemName":"G:LO01","location":{"x":-22000000000000000000,"y":-3500000000000000000,"z":-3420000000000000000}},"30005478":{"solarSystemId":30005478,"solarSystemName":"P:12E5","location":{"x":-20500000000000000000,"y":-1070000000000000000,"z":-3930000000000000000}},"30005479":{"solarSystemId":30005479,"solarSystemName":"G:10KE","location":{"x":-20700000000000000000,"y":-775000000000000000,"z":-3930000000000000000}},"30005480":{"solarSystemId":30005480,"solarSystemName":"J:1O1R","location":{"x":-20700000000000000000,"y":-1050000000000000000,"z":-3940000000000000000}},"30005481":{"solarSystemId":30005481,"solarSystemName":"M:1IE2","location":{"x":-20800000000000000000,"y":-955000000000000000,"z":-3870000000000000000}},"30005482":{"solarSystemId":30005482,"solarSystemName":"Q:148O","location":{"x":-20400000000000000000,"y":-1020000000000000000,"z":-3800000000000000000}},"30005483":{"solarSystemId":30005483,"solarSystemName":"D:KV81","location":{"x":-20700000000000000000,"y":-716000000000000000,"z":-4010000000000000000}},"30005484":{"solarSystemId":30005484,"solarSystemName":"B:R7II","location":{"x":-20600000000000000000,"y":-1120000000000000000,"z":-3760000000000000000}},"30005485":{"solarSystemId":30005485,"solarSystemName":"P:1I2T","location":{"x":-20700000000000000000,"y":-1080000000000000000,"z":-3690000000000000000}},"30005486":{"solarSystemId":30005486,"solarSystemName":"H:14OI","location":{"x":-20800000000000000000,"y":-983000000000000000,"z":-4070000000000000000}},"30005487":{"solarSystemId":30005487,"solarSystemName":"G:RNOR","location":{"x":-20400000000000000000,"y":-1070000000000000000,"z":-3830000000000000000}},"30005488":{"solarSystemId":30005488,"solarSystemName":"M:17S5","location":{"x":-20600000000000000000,"y":-940000000000000000,"z":-3810000000000000000}},"30005489":{"solarSystemId":30005489,"solarSystemName":"J:VLK1","location":{"x":-20700000000000000000,"y":-972000000000000000,"z":-3830000000000000000}},"30005490":{"solarSystemId":30005490,"solarSystemName":"J:19KT","location":{"x":-20500000000000000000,"y":-892000000000000000,"z":-3800000000000000000}},"30005491":{"solarSystemId":30005491,"solarSystemName":"J:16RK","location":{"x":-20600000000000000000,"y":-899000000000000000,"z":-3880000000000000000}},"30005492":{"solarSystemId":30005492,"solarSystemName":"U:1386","location":{"x":-20700000000000000000,"y":-1020000000000000000,"z":-3720000000000000000}},"30005493":{"solarSystemId":30005493,"solarSystemName":"H:11L3","location":{"x":-20500000000000000000,"y":-864000000000000000,"z":-3750000000000000000}},"30005494":{"solarSystemId":30005494,"solarSystemName":"H:11NS","location":{"x":-20800000000000000000,"y":-1110000000000000000,"z":-4030000000000000000}},"30005495":{"solarSystemId":30005495,"solarSystemName":"U:3682","location":{"x":-21500000000000000000,"y":-1430000000000000000,"z":-3330000000000000000}},"30005496":{"solarSystemId":30005496,"solarSystemName":"H:1091","location":{"x":-21200000000000000000,"y":-2030000000000000000,"z":-3530000000000000000}},"30005497":{"solarSystemId":30005497,"solarSystemName":"U:TA94","location":{"x":-21300000000000000000,"y":-1630000000000000000,"z":-3360000000000000000}},"30005498":{"solarSystemId":30005498,"solarSystemName":"F:1IVE","location":{"x":-22000000000000000000,"y":-1880000000000000000,"z":-3730000000000000000}},"30005499":{"solarSystemId":30005499,"solarSystemName":"Q:R68O","location":{"x":-21700000000000000000,"y":-1730000000000000000,"z":-3530000000000000000}},"30005500":{"solarSystemId":30005500,"solarSystemName":"Q:1A39","location":{"x":-21900000000000000000,"y":-1520000000000000000,"z":-3780000000000000000}},"30005501":{"solarSystemId":30005501,"solarSystemName":"J:1227","location":{"x":-21600000000000000000,"y":-1560000000000000000,"z":-3600000000000000000}},"30005502":{"solarSystemId":30005502,"solarSystemName":"P:10IO","location":{"x":-21400000000000000000,"y":-1720000000000000000,"z":-3770000000000000000}},"30005503":{"solarSystemId":30005503,"solarSystemName":"F:157T","location":{"x":-21400000000000000000,"y":-1500000000000000000,"z":-3380000000000000000}},"30005504":{"solarSystemId":30005504,"solarSystemName":"M:14L1","location":{"x":-21500000000000000000,"y":-1500000000000000000,"z":-3180000000000000000}},"30005505":{"solarSystemId":30005505,"solarSystemName":"Z:19R8","location":{"x":-21300000000000000000,"y":-1720000000000000000,"z":-3190000000000000000}},"30005506":{"solarSystemId":30005506,"solarSystemName":"J:R88A","location":{"x":-21700000000000000000,"y":-1760000000000000000,"z":-3460000000000000000}},"30005507":{"solarSystemId":30005507,"solarSystemName":"Y:1213","location":{"x":-21400000000000000000,"y":-1500000000000000000,"z":-3550000000000000000}},"30005508":{"solarSystemId":30005508,"solarSystemName":"M:157K","location":{"x":-21400000000000000000,"y":-2140000000000000000,"z":-3580000000000000000}},"30005509":{"solarSystemId":30005509,"solarSystemName":"D:39TI","location":{"x":-19400000000000000000,"y":-388000000000000000,"z":-1980000000000000000}},"30005510":{"solarSystemId":30005510,"solarSystemName":"B:1T9O","location":{"x":-19500000000000000000,"y":24100000000000000,"z":-2440000000000000000}},"30005511":{"solarSystemId":30005511,"solarSystemName":"Y:1715","location":{"x":-19800000000000000000,"y":-304000000000000000,"z":-2780000000000000000}},"30005512":{"solarSystemId":30005512,"solarSystemName":"M:V7R0","location":{"x":-19900000000000000000,"y":-289000000000000000,"z":-2480000000000000000}},"30005513":{"solarSystemId":30005513,"solarSystemName":"Z:KLK0","location":{"x":-19900000000000000000,"y":334000000000000000,"z":-2020000000000000000}},"30005514":{"solarSystemId":30005514,"solarSystemName":"B:T09I","location":{"x":-19700000000000000000,"y":278000000000000000,"z":-2680000000000000000}},"30005515":{"solarSystemId":30005515,"solarSystemName":"M:150K","location":{"x":-19600000000000000000,"y":-620000000000000000,"z":-2520000000000000000}},"30005516":{"solarSystemId":30005516,"solarSystemName":"Q:11S6","location":{"x":-19300000000000000000,"y":-279000000000000000,"z":-2900000000000000000}},"30005517":{"solarSystemId":30005517,"solarSystemName":"J:L9T3","location":{"x":-20100000000000000000,"y":-42100000000000000,"z":-2550000000000000000}},"30005518":{"solarSystemId":30005518,"solarSystemName":"Y:2VR7","location":{"x":-19000000000000000000,"y":-161000000000000000,"z":-2480000000000000000}},"30005519":{"solarSystemId":30005519,"solarSystemName":"B:10N7","location":{"x":-19300000000000000000,"y":-46500000000000000,"z":-2050000000000000000}},"30005520":{"solarSystemId":30005520,"solarSystemName":"Y:2R2V","location":{"x":-19600000000000000000,"y":-507000000000000000,"z":-2230000000000000000}},"30005521":{"solarSystemId":30005521,"solarSystemName":"F:2AV6","location":{"x":-19500000000000000000,"y":-41700000000000000,"z":-2390000000000000000}},"30005522":{"solarSystemId":30005522,"solarSystemName":"J:T3RL","location":{"x":-19600000000000000000,"y":386000000000000000,"z":-2380000000000000000}},"30005523":{"solarSystemId":30005523,"solarSystemName":"F:156O","location":{"x":-19300000000000000000,"y":-82000000000000000,"z":-2220000000000000000}},"30005524":{"solarSystemId":30005524,"solarSystemName":"F:R4KE","location":{"x":-19500000000000000000,"y":-563000000000000000,"z":-2260000000000000000}},"30005525":{"solarSystemId":30005525,"solarSystemName":"J:1ATK","location":{"x":-19500000000000000000,"y":-380000000000000000,"z":-2820000000000000000}},"30005526":{"solarSystemId":30005526,"solarSystemName":"B:SO7O","location":{"x":-19400000000000000000,"y":363000000000000000,"z":-2450000000000000000}},"30005527":{"solarSystemId":30005527,"solarSystemName":"Y:10V4","location":{"x":-20500000000000000000,"y":-3920000000000000000,"z":-6040000000000000000}},"30005528":{"solarSystemId":30005528,"solarSystemName":"M:18NK","location":{"x":-20800000000000000000,"y":-2420000000000000000,"z":-4900000000000000000}},"30005529":{"solarSystemId":30005529,"solarSystemName":"Z:44K4","location":{"x":-20900000000000000000,"y":-1400000000000000000,"z":-6040000000000000000}},"30005530":{"solarSystemId":30005530,"solarSystemName":"P:19A9","location":{"x":-21500000000000000000,"y":-2070000000000000000,"z":-5150000000000000000}},"30005531":{"solarSystemId":30005531,"solarSystemName":"P:16L5","location":{"x":-21000000000000000000,"y":-1700000000000000000,"z":-5670000000000000000}},"30005532":{"solarSystemId":30005532,"solarSystemName":"G:189O","location":{"x":-20100000000000000000,"y":-2240000000000000000,"z":-6150000000000000000}},"30005533":{"solarSystemId":30005533,"solarSystemName":"P:11R2","location":{"x":-21600000000000000000,"y":-1810000000000000000,"z":-5910000000000000000}},"30005534":{"solarSystemId":30005534,"solarSystemName":"Q:18AS","location":{"x":-21200000000000000000,"y":-2510000000000000000,"z":-6200000000000000000}},"30005535":{"solarSystemId":30005535,"solarSystemName":"P:TA7N","location":{"x":-20300000000000000000,"y":-2890000000000000000,"z":-6100000000000000000}},"30005536":{"solarSystemId":30005536,"solarSystemName":"U:12N2","location":{"x":-21100000000000000000,"y":-2810000000000000000,"z":-6020000000000000000}},"30005537":{"solarSystemId":30005537,"solarSystemName":"Q:1327","location":{"x":-21300000000000000000,"y":-2560000000000000000,"z":-5860000000000000000}},"30005538":{"solarSystemId":30005538,"solarSystemName":"Q:181O","location":{"x":-20900000000000000000,"y":-1640000000000000000,"z":-6170000000000000000}},"30005539":{"solarSystemId":30005539,"solarSystemName":"P:3SN8","location":{"x":-20900000000000000000,"y":-2180000000000000000,"z":-4300000000000000000}},"30005540":{"solarSystemId":30005540,"solarSystemName":"M:L5AS","location":{"x":-21100000000000000000,"y":-2180000000000000000,"z":-4500000000000000000}},"30005541":{"solarSystemId":30005541,"solarSystemName":"J:1560","location":{"x":-21700000000000000000,"y":-1820000000000000000,"z":-4010000000000000000}},"30005542":{"solarSystemId":30005542,"solarSystemName":"F:SERI","location":{"x":-21600000000000000000,"y":-2550000000000000000,"z":-4110000000000000000}},"30005543":{"solarSystemId":30005543,"solarSystemName":"J:195V","location":{"x":-21300000000000000000,"y":-2380000000000000000,"z":-4010000000000000000}},"30005544":{"solarSystemId":30005544,"solarSystemName":"F:S209","location":{"x":-20900000000000000000,"y":-1910000000000000000,"z":-4300000000000000000}},"30005545":{"solarSystemId":30005545,"solarSystemName":"B:18I7","location":{"x":-20900000000000000000,"y":-1270000000000000000,"z":-3890000000000000000}},"30005546":{"solarSystemId":30005546,"solarSystemName":"P:13A3","location":{"x":-21500000000000000000,"y":-1790000000000000000,"z":-4330000000000000000}},"30005547":{"solarSystemId":30005547,"solarSystemName":"Z:1603","location":{"x":-21800000000000000000,"y":-2230000000000000000,"z":-4320000000000000000}},"30005548":{"solarSystemId":30005548,"solarSystemName":"G:14SN","location":{"x":-20900000000000000000,"y":-2020000000000000000,"z":-4220000000000000000}},"30005549":{"solarSystemId":30005549,"solarSystemName":"M:1060","location":{"x":-20900000000000000000,"y":-1410000000000000000,"z":-3890000000000000000}},"30005550":{"solarSystemId":30005550,"solarSystemName":"U:12AT","location":{"x":-21300000000000000000,"y":-2130000000000000000,"z":-4050000000000000000}},"30005551":{"solarSystemId":30005551,"solarSystemName":"Y:15T3","location":{"x":-20900000000000000000,"y":-1590000000000000000,"z":-4010000000000000000}},"30005552":{"solarSystemId":30005552,"solarSystemName":"D:VVVO","location":{"x":-21000000000000000000,"y":-2090000000000000000,"z":-4290000000000000000}},"30005553":{"solarSystemId":30005553,"solarSystemName":"J:107T","location":{"x":-21100000000000000000,"y":-1610000000000000000,"z":-4300000000000000000}},"30005554":{"solarSystemId":30005554,"solarSystemName":"M:3E04","location":{"x":-23400000000000000000,"y":301000000000000000,"z":676000000000000000}},"30005555":{"solarSystemId":30005555,"solarSystemName":"G:18OS","location":{"x":-23500000000000000000,"y":-49700000000000000,"z":-264000000000000000}},"30005556":{"solarSystemId":30005556,"solarSystemName":"H:472S","location":{"x":-24300000000000000000,"y":103000000000000000,"z":549000000000000000}},"30005557":{"solarSystemId":30005557,"solarSystemName":"H:1RNA","location":{"x":-22800000000000000000,"y":46400000000000000,"z":494000000000000000}},"30005558":{"solarSystemId":30005558,"solarSystemName":"D:RS0N","location":{"x":-24200000000000000000,"y":278000000000000000,"z":471000000000000000}},"30005559":{"solarSystemId":30005559,"solarSystemName":"Q:1066","location":{"x":-23000000000000000000,"y":77000000000000000,"z":1100000000000000000}},"30005560":{"solarSystemId":30005560,"solarSystemName":"Z:18AK","location":{"x":-24000000000000000000,"y":817000000000000000,"z":1200000000000000000}},"30005561":{"solarSystemId":30005561,"solarSystemName":"G:10VR","location":{"x":-22900000000000000000,"y":389000000000000000,"z":-49900000000000000}},"30005562":{"solarSystemId":30005562,"solarSystemName":"Q:RIVV","location":{"x":-23000000000000000000,"y":334000000000000000,"z":59700000000000000}},"30005563":{"solarSystemId":30005563,"solarSystemName":"M:1ASS","location":{"x":-23300000000000000000,"y":159000000000000000,"z":1190000000000000000}},"30005564":{"solarSystemId":30005564,"solarSystemName":"Y:OS0T","location":{"x":-23000000000000000000,"y":431000000000000000,"z":807000000000000000}},"30005565":{"solarSystemId":30005565,"solarSystemName":"P:185R","location":{"x":-23600000000000000000,"y":-300000000000000000,"z":177000000000000000}},"30005566":{"solarSystemId":30005566,"solarSystemName":"U:IA05","location":{"x":-23300000000000000000,"y":786000000000000000,"z":596000000000000000}},"30005567":{"solarSystemId":30005567,"solarSystemName":"B:1T2V","location":{"x":-23100000000000000000,"y":-638000000000000000,"z":69300000000000000}},"30005568":{"solarSystemId":30005568,"solarSystemName":"Q:23LN","location":{"x":-24000000000000000000,"y":-845000000000000000,"z":577000000000000000}},"30005569":{"solarSystemId":30005569,"solarSystemName":"Q:I936","location":{"x":-23800000000000000000,"y":-1100000000000000000,"z":95700000000000000}},"30005570":{"solarSystemId":30005570,"solarSystemName":"Y:1I6K","location":{"x":-22300000000000000000,"y":-1380000000000000000,"z":23400000000000000}},"30005571":{"solarSystemId":30005571,"solarSystemName":"M:I97R","location":{"x":-23700000000000000000,"y":-394000000000000000,"z":-301000000000000000}},"30005572":{"solarSystemId":30005572,"solarSystemName":"G:2K5T","location":{"x":-22300000000000000000,"y":-710000000000000000,"z":-63400000000000000}},"30005573":{"solarSystemId":30005573,"solarSystemName":"G:14SK","location":{"x":-23200000000000000000,"y":-1540000000000000000,"z":446000000000000000}},"30005574":{"solarSystemId":30005574,"solarSystemName":"Z:19AO","location":{"x":-22600000000000000000,"y":-686000000000000000,"z":-730000000000000000}},"30005575":{"solarSystemId":30005575,"solarSystemName":"G:RTI5","location":{"x":-23500000000000000000,"y":-583000000000000000,"z":-464000000000000000}},"30005576":{"solarSystemId":30005576,"solarSystemName":"M:16L2","location":{"x":-23700000000000000000,"y":-381000000000000000,"z":-958000000000000000}},"30005577":{"solarSystemId":30005577,"solarSystemName":"F:12O1","location":{"x":-22700000000000000000,"y":-1600000000000000000,"z":578000000000000000}},"30005578":{"solarSystemId":30005578,"solarSystemName":"F:3L8O","location":{"x":-22100000000000000000,"y":-733000000000000000,"z":427000000000000000}},"30005579":{"solarSystemId":30005579,"solarSystemName":"H:1R9A","location":{"x":-22200000000000000000,"y":-640000000000000000,"z":-426000000000000000}},"30005580":{"solarSystemId":30005580,"solarSystemName":"Y:1A7V","location":{"x":-24000000000000000000,"y":-519000000000000000,"z":344000000000000000}},"30005581":{"solarSystemId":30005581,"solarSystemName":"G:1I8S","location":{"x":-22300000000000000000,"y":542000000000000000,"z":-2340000000000000000}},"30005582":{"solarSystemId":30005582,"solarSystemName":"B:105E","location":{"x":-22900000000000000000,"y":341000000000000000,"z":-2690000000000000000}},"30005583":{"solarSystemId":30005583,"solarSystemName":"U:146L","location":{"x":-22400000000000000000,"y":453000000000000000,"z":-2760000000000000000}},"30005584":{"solarSystemId":30005584,"solarSystemName":"Y:127O","location":{"x":-22200000000000000000,"y":-112000000000000000,"z":-1830000000000000000}},"30005585":{"solarSystemId":30005585,"solarSystemName":"P:95EL","location":{"x":-22700000000000000000,"y":-49800000000000000,"z":-2050000000000000000}},"30005586":{"solarSystemId":30005586,"solarSystemName":"B:T2AK","location":{"x":-22600000000000000000,"y":84400000000000000,"z":-2470000000000000000}},"30005587":{"solarSystemId":30005587,"solarSystemName":"F:1KI1","location":{"x":-22400000000000000000,"y":-818000000000000000,"z":-1990000000000000000}},"30005588":{"solarSystemId":30005588,"solarSystemName":"B:4TE1","location":{"x":-23500000000000000000,"y":-463000000000000000,"z":-2230000000000000000}},"30005589":{"solarSystemId":30005589,"solarSystemName":"M:1E2O","location":{"x":-23300000000000000000,"y":-660000000000000000,"z":-2230000000000000000}},"30005590":{"solarSystemId":30005590,"solarSystemName":"B:RRTN","location":{"x":-23300000000000000000,"y":-53200000000000000,"z":-2090000000000000000}},"30005591":{"solarSystemId":30005591,"solarSystemName":"D:10RN","location":{"x":-22700000000000000000,"y":447000000000000000,"z":-2690000000000000000}},"30005592":{"solarSystemId":30005592,"solarSystemName":"G:1IO9","location":{"x":-22500000000000000000,"y":32200000000000000,"z":-1920000000000000000}},"30005593":{"solarSystemId":30005593,"solarSystemName":"Z:11VN","location":{"x":-22700000000000000000,"y":361000000000000000,"z":-2960000000000000000}},"30005594":{"solarSystemId":30005594,"solarSystemName":"Y:37I0","location":{"x":-22600000000000000000,"y":-620000000000000000,"z":-2140000000000000000}},"30005595":{"solarSystemId":30005595,"solarSystemName":"J:18S8","location":{"x":-23200000000000000000,"y":-620000000000000000,"z":-2420000000000000000}},"30005596":{"solarSystemId":30005596,"solarSystemName":"J:OSI0","location":{"x":-22700000000000000000,"y":-606000000000000000,"z":-1890000000000000000}},"30005597":{"solarSystemId":30005597,"solarSystemName":"G:18EN","location":{"x":-22300000000000000000,"y":-321000000000000000,"z":-2430000000000000000}},"30005598":{"solarSystemId":30005598,"solarSystemName":"F:1I3K","location":{"x":-23500000000000000000,"y":491000000000000000,"z":-1910000000000000000}},"30005599":{"solarSystemId":30005599,"solarSystemName":"J:12I3","location":{"x":-23800000000000000000,"y":316000000000000000,"z":-1410000000000000000}},"30005600":{"solarSystemId":30005600,"solarSystemName":"Q:17O9","location":{"x":-23400000000000000000,"y":479000000000000000,"z":-1580000000000000000}},"30005601":{"solarSystemId":30005601,"solarSystemName":"D:IERE","location":{"x":-23800000000000000000,"y":32200000000000000,"z":-1510000000000000000}},"30005602":{"solarSystemId":30005602,"solarSystemName":"J:NL0E","location":{"x":-23800000000000000000,"y":620000000000000000,"z":-1130000000000000000}},"30005603":{"solarSystemId":30005603,"solarSystemName":"Y:2968","location":{"x":-25100000000000000000,"y":1240000000000000000,"z":-1340000000000000000}},"30005604":{"solarSystemId":30005604,"solarSystemName":"P:1A5T","location":{"x":-23800000000000000000,"y":-76900000000000000,"z":-1070000000000000000}},"30005605":{"solarSystemId":30005605,"solarSystemName":"U:10TS","location":{"x":-24000000000000000000,"y":1570000000000000,"z":-1320000000000000000}},"30005606":{"solarSystemId":30005606,"solarSystemName":"P:126T","location":{"x":-23900000000000000000,"y":-24600000000000000,"z":-917000000000000000}},"30005607":{"solarSystemId":30005607,"solarSystemName":"Y:2O1V","location":{"x":-23600000000000000000,"y":154000000000000000,"z":-1190000000000000000}},"30005608":{"solarSystemId":30005608,"solarSystemName":"F:5152","location":{"x":-24300000000000000000,"y":681000000000000000,"z":-1740000000000000000}},"30005609":{"solarSystemId":30005609,"solarSystemName":"B:1AEE","location":{"x":-24000000000000000000,"y":790000000000000000,"z":-2920000000000000000}},"30005610":{"solarSystemId":30005610,"solarSystemName":"D:19NO","location":{"x":-23700000000000000000,"y":320000000000000000,"z":-2260000000000000000}},"30005611":{"solarSystemId":30005611,"solarSystemName":"Z:2EA5","location":{"x":-24200000000000000000,"y":2340000000000000000,"z":-1430000000000000000}},"30005612":{"solarSystemId":30005612,"solarSystemName":"U:3V96","location":{"x":-23300000000000000000,"y":1900000000000000000,"z":-777000000000000000}},"30005613":{"solarSystemId":30005613,"solarSystemName":"P:ITT1","location":{"x":-22200000000000000000,"y":2010000000000000000,"z":80500000000000000}},"30005614":{"solarSystemId":30005614,"solarSystemName":"J:22T6","location":{"x":-22600000000000000000,"y":2270000000000000000,"z":-1770000000000000000}},"30005615":{"solarSystemId":30005615,"solarSystemName":"H:17R8","location":{"x":-23400000000000000000,"y":1650000000000000000,"z":-876000000000000000}},"30005616":{"solarSystemId":30005616,"solarSystemName":"Q:1595","location":{"x":-23000000000000000000,"y":2810000000000000000,"z":-995000000000000000}},"30005617":{"solarSystemId":30005617,"solarSystemName":"Q:R1E5","location":{"x":-23700000000000000000,"y":922000000000000000,"z":-936000000000000000}},"30005618":{"solarSystemId":30005618,"solarSystemName":"H:RA89","location":{"x":-23000000000000000000,"y":1680000000000000000,"z":42900000000000000}},"30005619":{"solarSystemId":30005619,"solarSystemName":"J:K4R1","location":{"x":-22700000000000000000,"y":1700000000000000000,"z":-1140000000000000000}},"30005620":{"solarSystemId":30005620,"solarSystemName":"Z:1667","location":{"x":-24000000000000000000,"y":1340000000000000000,"z":-1390000000000000000}},"30005621":{"solarSystemId":30005621,"solarSystemName":"Q:2R43","location":{"x":-22100000000000000000,"y":1730000000000000000,"z":265000000000000000}},"30005622":{"solarSystemId":30005622,"solarSystemName":"Q:1A33","location":{"x":-20900000000000000000,"y":1000000000000000000,"z":608000000000000000}},"30005623":{"solarSystemId":30005623,"solarSystemName":"D:18IE","location":{"x":-22300000000000000000,"y":739000000000000000,"z":85900000000000000}},"30005624":{"solarSystemId":30005624,"solarSystemName":"U:5KA9","location":{"x":-21100000000000000000,"y":787000000000000000,"z":751000000000000000}},"30005625":{"solarSystemId":30005625,"solarSystemName":"P:17E2","location":{"x":-21200000000000000000,"y":868000000000000000,"z":507000000000000000}},"30005626":{"solarSystemId":30005626,"solarSystemName":"M:12E8","location":{"x":-21100000000000000000,"y":333000000000000000,"z":532000000000000000}},"30005627":{"solarSystemId":30005627,"solarSystemName":"P:2K7V","location":{"x":-21900000000000000000,"y":718000000000000000,"z":27500000000000000}},"30005628":{"solarSystemId":30005628,"solarSystemName":"P:1023","location":{"x":-21400000000000000000,"y":448000000000000000,"z":-283000000000000000}},"30005629":{"solarSystemId":30005629,"solarSystemName":"Z:3908","location":{"x":-22600000000000000000,"y":357000000000000000,"z":32600000000000000}},"30005630":{"solarSystemId":30005630,"solarSystemName":"G:122V","location":{"x":-21900000000000000000,"y":1490000000000000000,"z":210000000000000000}},"30005631":{"solarSystemId":30005631,"solarSystemName":"D:2O40","location":{"x":-20600000000000000000,"y":595000000000000000,"z":616000000000000000}},"30005632":{"solarSystemId":30005632,"solarSystemName":"Y:1AA7","location":{"x":-21800000000000000000,"y":1590000000000000000,"z":767000000000000000}},"30005633":{"solarSystemId":30005633,"solarSystemName":"Z:RA59","location":{"x":-20800000000000000000,"y":443000000000000000,"z":992000000000000000}},"30005634":{"solarSystemId":30005634,"solarSystemName":"B:1V82","location":{"x":-21600000000000000000,"y":652000000000000000,"z":376000000000000000}},"30005635":{"solarSystemId":30005635,"solarSystemName":"H:2578","location":{"x":-21700000000000000000,"y":-521000000000000000,"z":332000000000000000}},"30005636":{"solarSystemId":30005636,"solarSystemName":"U:167V","location":{"x":-21700000000000000000,"y":-420000000000000000,"z":-270000000000000000}},"30005637":{"solarSystemId":30005637,"solarSystemName":"P:LTKL","location":{"x":-21600000000000000000,"y":-476000000000000000,"z":-569000000000000000}},"30005638":{"solarSystemId":30005638,"solarSystemName":"M:AL0N","location":{"x":-21800000000000000000,"y":20800000000000000,"z":-385000000000000000}},"30005639":{"solarSystemId":30005639,"solarSystemName":"Q:1IET","location":{"x":-21200000000000000000,"y":-523000000000000000,"z":-211000000000000000}},"30005640":{"solarSystemId":30005640,"solarSystemName":"B:1IVV","location":{"x":-21000000000000000000,"y":-357000000000000000,"z":-309000000000000000}},"30005641":{"solarSystemId":30005641,"solarSystemName":"D:119O","location":{"x":-21800000000000000000,"y":-566000000000000000,"z":-192000000000000000}},"30005642":{"solarSystemId":30005642,"solarSystemName":"U:2895","location":{"x":-21900000000000000000,"y":-542000000000000000,"z":501000000000000000}},"30005643":{"solarSystemId":30005643,"solarSystemName":"G:385K","location":{"x":-21700000000000000000,"y":-295000000000000000,"z":430000000000000000}},"30005644":{"solarSystemId":30005644,"solarSystemName":"M:KO3S","location":{"x":-21600000000000000000,"y":-453000000000000000,"z":3850000000000000}},"30005645":{"solarSystemId":30005645,"solarSystemName":"H:16SR","location":{"x":-21700000000000000000,"y":-766000000000000000,"z":-253000000000000000}},"30005646":{"solarSystemId":30005646,"solarSystemName":"Y:1A69","location":{"x":-21400000000000000000,"y":-272000000000000000,"z":-442000000000000000}},"30005647":{"solarSystemId":30005647,"solarSystemName":"F:1RE1","location":{"x":-21000000000000000000,"y":-549000000000000000,"z":-424000000000000000}},"30005648":{"solarSystemId":30005648,"solarSystemName":"D:131E","location":{"x":-21300000000000000000,"y":-30500000000000000,"z":-422000000000000000}},"30005649":{"solarSystemId":30005649,"solarSystemName":"Y:4589","location":{"x":-21900000000000000000,"y":-48300000000000000,"z":-401000000000000000}},"30005650":{"solarSystemId":30005650,"solarSystemName":"P:14SE","location":{"x":-23600000000000000000,"y":-1080000000000000000,"z":-1270000000000000000}},"30005651":{"solarSystemId":30005651,"solarSystemName":"M:1I6V","location":{"x":-22800000000000000000,"y":-593000000000000000,"z":-1340000000000000000}},"30005652":{"solarSystemId":30005652,"solarSystemName":"F:N5A2","location":{"x":-22600000000000000000,"y":-1150000000000000000,"z":-1530000000000000000}},"30005653":{"solarSystemId":30005653,"solarSystemName":"U:4K51","location":{"x":-23400000000000000000,"y":-986000000000000000,"z":-761000000000000000}},"30005654":{"solarSystemId":30005654,"solarSystemName":"M:18R5","location":{"x":-23200000000000000000,"y":-1080000000000000000,"z":-2070000000000000000}},"30005655":{"solarSystemId":30005655,"solarSystemName":"Z:1912","location":{"x":-23500000000000000000,"y":-974000000000000000,"z":-1740000000000000000}},"30005656":{"solarSystemId":30005656,"solarSystemName":"U:27EA","location":{"x":-23300000000000000000,"y":-943000000000000000,"z":-1730000000000000000}},"30005657":{"solarSystemId":30005657,"solarSystemName":"M:9TEO","location":{"x":-23000000000000000000,"y":-859000000000000000,"z":-862000000000000000}},"30005658":{"solarSystemId":30005658,"solarSystemName":"Q:TIO3","location":{"x":-22800000000000000000,"y":-1290000000000000000,"z":-1150000000000000000}},"30005659":{"solarSystemId":30005659,"solarSystemName":"B:1372","location":{"x":-22800000000000000000,"y":-1630000000000000000,"z":-1250000000000000000}},"30005660":{"solarSystemId":30005660,"solarSystemName":"B:19S7","location":{"x":-23000000000000000000,"y":-873000000000000000,"z":-1520000000000000000}},"30005661":{"solarSystemId":30005661,"solarSystemName":"G:110R","location":{"x":-23400000000000000000,"y":-800000000000000000,"z":-1630000000000000000}},"30005662":{"solarSystemId":30005662,"solarSystemName":"B:4RI7","location":{"x":-22800000000000000000,"y":-624000000000000000,"z":-1170000000000000000}},"30005663":{"solarSystemId":30005663,"solarSystemName":"B:176N","location":{"x":-23100000000000000000,"y":-1140000000000000000,"z":-2020000000000000000}},"30005664":{"solarSystemId":30005664,"solarSystemName":"B:2900","location":{"x":-23200000000000000000,"y":-918000000000000000,"z":-1090000000000000000}},"30005665":{"solarSystemId":30005665,"solarSystemName":"Y:1I12","location":{"x":-22600000000000000000,"y":-968000000000000000,"z":-1200000000000000000}},"30005666":{"solarSystemId":30005666,"solarSystemName":"D:50R3","location":{"x":-23100000000000000000,"y":-1300000000000000000,"z":-955000000000000000}},"30005667":{"solarSystemId":30005667,"solarSystemName":"J:1K11","location":{"x":-23300000000000000000,"y":-853000000000000000,"z":-1810000000000000000}},"30005668":{"solarSystemId":30005668,"solarSystemName":"Q:ER90","location":{"x":-22000000000000000000,"y":-75300000000000000,"z":-1370000000000000000}},"30005669":{"solarSystemId":30005669,"solarSystemName":"U:15N6","location":{"x":-23000000000000000000,"y":-102000000000000000,"z":-635000000000000000}},"30005670":{"solarSystemId":30005670,"solarSystemName":"Z:3IV6","location":{"x":-22600000000000000000,"y":507000000000000000,"z":-554000000000000000}},"30005671":{"solarSystemId":30005671,"solarSystemName":"Q:IK5V","location":{"x":-22800000000000000000,"y":334000000000000000,"z":-789000000000000000}},"30005672":{"solarSystemId":30005672,"solarSystemName":"G:2O09","location":{"x":-22000000000000000000,"y":-153000000000000000,"z":-874000000000000000}},"30005673":{"solarSystemId":30005673,"solarSystemName":"Z:1ET9","location":{"x":-22000000000000000000,"y":-162000000000000000,"z":-1270000000000000000}},"30005674":{"solarSystemId":30005674,"solarSystemName":"Z:11O5","location":{"x":-21600000000000000000,"y":536000000000000000,"z":-845000000000000000}},"30005675":{"solarSystemId":30005675,"solarSystemName":"B:24S6","location":{"x":-21900000000000000000,"y":1390000000000000000,"z":-676000000000000000}},"30005676":{"solarSystemId":30005676,"solarSystemName":"B:1147","location":{"x":-22900000000000000000,"y":533000000000000000,"z":-636000000000000000}},"30005677":{"solarSystemId":30005677,"solarSystemName":"P:15N5","location":{"x":-22500000000000000000,"y":-245000000000000000,"z":-1270000000000000000}},"30005678":{"solarSystemId":30005678,"solarSystemName":"G:2L61","location":{"x":-23100000000000000000,"y":359000000000000000,"z":-1280000000000000000}},"30005679":{"solarSystemId":30005679,"solarSystemName":"D:A077","location":{"x":-22600000000000000000,"y":-319000000000000000,"z":-1160000000000000000}},"30005680":{"solarSystemId":30005680,"solarSystemName":"P:E0S1","location":{"x":-22300000000000000000,"y":292000000000000000,"z":-944000000000000000}},"30005681":{"solarSystemId":30005681,"solarSystemName":"P:1RAK","location":{"x":-22500000000000000000,"y":-959000000000000000,"z":1190000000000000000}},"30005682":{"solarSystemId":30005682,"solarSystemName":"P:1226","location":{"x":-23700000000000000000,"y":-616000000000000000,"z":683000000000000000}},"30005683":{"solarSystemId":30005683,"solarSystemName":"J:1490","location":{"x":-23300000000000000000,"y":-825000000000000000,"z":1200000000000000000}},"30005684":{"solarSystemId":30005684,"solarSystemName":"M:1556","location":{"x":-23800000000000000000,"y":-895000000000000000,"z":743000000000000000}},"30005685":{"solarSystemId":30005685,"solarSystemName":"D:4TV1","location":{"x":-23100000000000000000,"y":-470000000000000000,"z":1690000000000000000}},"30005686":{"solarSystemId":30005686,"solarSystemName":"Y:1AV4","location":{"x":-23600000000000000000,"y":-869000000000000000,"z":919000000000000000}},"30005687":{"solarSystemId":30005687,"solarSystemName":"D:1N1R","location":{"x":-23800000000000000000,"y":-1310000000000000000,"z":1160000000000000000}},"30005688":{"solarSystemId":30005688,"solarSystemName":"G:R542","location":{"x":-24100000000000000000,"y":-855000000000000000,"z":1030000000000000000}},"30005689":{"solarSystemId":30005689,"solarSystemName":"F:RK21","location":{"x":-24000000000000000000,"y":-1240000000000000000,"z":1060000000000000000}},"30005690":{"solarSystemId":30005690,"solarSystemName":"U:RLI2","location":{"x":-23500000000000000000,"y":-948000000000000000,"z":773000000000000000}},"30005691":{"solarSystemId":30005691,"solarSystemName":"D:158T","location":{"x":-23600000000000000000,"y":-168000000000000000,"z":880000000000000000}},"30005692":{"solarSystemId":30005692,"solarSystemName":"J:2NN1","location":{"x":-23300000000000000000,"y":-168000000000000000,"z":1470000000000000000}},"30005693":{"solarSystemId":30005693,"solarSystemName":"Z:VI6V","location":{"x":-22700000000000000000,"y":-884000000000000000,"z":849000000000000000}},"30005694":{"solarSystemId":30005694,"solarSystemName":"Q:2R45","location":{"x":-29300000000000000000,"y":-248000000000000000,"z":1880000000000000000}},"30005695":{"solarSystemId":30005695,"solarSystemName":"P:LEO0","location":{"x":-29500000000000000000,"y":-369000000000000000,"z":800000000000000000}},"30005696":{"solarSystemId":30005696,"solarSystemName":"Z:18T7","location":{"x":-28500000000000000000,"y":-259000000000000000,"z":1210000000000000000}},"30005697":{"solarSystemId":30005697,"solarSystemName":"B:EL78","location":{"x":-29000000000000000000,"y":-286000000000000000,"z":831000000000000000}},"30005698":{"solarSystemId":30005698,"solarSystemName":"G:2426","location":{"x":-30000000000000000000,"y":70400000000000000,"z":1850000000000000000}},"30005699":{"solarSystemId":30005699,"solarSystemName":"Q:VLVI","location":{"x":-29400000000000000000,"y":-1140000000000000000,"z":1280000000000000000}},"30005700":{"solarSystemId":30005700,"solarSystemName":"Y:1IAO","location":{"x":-29000000000000000000,"y":-180000000000000000,"z":1500000000000000000}},"30005701":{"solarSystemId":30005701,"solarSystemName":"H:AS85","location":{"x":-29600000000000000000,"y":-1220000000000000000,"z":1400000000000000000}},"30005702":{"solarSystemId":30005702,"solarSystemName":"U:200R","location":{"x":-29700000000000000000,"y":-352000000000000000,"z":1770000000000000000}},"30005703":{"solarSystemId":30005703,"solarSystemName":"F:T498","location":{"x":-30200000000000000000,"y":-125000000000000000,"z":2470000000000000000}},"30005704":{"solarSystemId":30005704,"solarSystemName":"G:1I5T","location":{"x":-29600000000000000000,"y":-694000000000000000,"z":1610000000000000000}},"30005705":{"solarSystemId":30005705,"solarSystemName":"Z:3I0N","location":{"x":-26000000000000000000,"y":-200000000000000000,"z":3680000000000000000}},"30005706":{"solarSystemId":30005706,"solarSystemName":"G:16EI","location":{"x":-28100000000000000000,"y":-1460000000000000000,"z":4500000000000000000}},"30005707":{"solarSystemId":30005707,"solarSystemName":"P:3L00","location":{"x":-27100000000000000000,"y":-403000000000000000,"z":3140000000000000000}},"30005708":{"solarSystemId":30005708,"solarSystemName":"U:R9S9","location":{"x":-26100000000000000000,"y":-587000000000000000,"z":4350000000000000000}},"30005709":{"solarSystemId":30005709,"solarSystemName":"D:2140","location":{"x":-26200000000000000000,"y":-342000000000000000,"z":4010000000000000000}},"30005710":{"solarSystemId":30005710,"solarSystemName":"P:43NS","location":{"x":-25900000000000000000,"y":-1560000000000000000,"z":3340000000000000000}},"30005711":{"solarSystemId":30005711,"solarSystemName":"H:14N8","location":{"x":-27400000000000000000,"y":-573000000000000000,"z":2990000000000000000}},"30005712":{"solarSystemId":30005712,"solarSystemName":"H:12KE","location":{"x":-25900000000000000000,"y":-865000000000000000,"z":3490000000000000000}},"30005713":{"solarSystemId":30005713,"solarSystemName":"H:18TE","location":{"x":-25900000000000000000,"y":-450000000000000000,"z":4410000000000000000}},"30005714":{"solarSystemId":30005714,"solarSystemName":"P:19K6","location":{"x":-27700000000000000000,"y":-240000000000000000,"z":2570000000000000000}},"30005715":{"solarSystemId":30005715,"solarSystemName":"F:3O7K","location":{"x":-27900000000000000000,"y":2060000000000000000,"z":4770000000000000000}},"30005716":{"solarSystemId":30005716,"solarSystemName":"H:2A80","location":{"x":-27400000000000000000,"y":1080000000000000000,"z":2760000000000000000}},"30005717":{"solarSystemId":30005717,"solarSystemName":"J:3EV7","location":{"x":-29400000000000000000,"y":118000000000000000,"z":4870000000000000000}},"30005718":{"solarSystemId":30005718,"solarSystemName":"Z:1946","location":{"x":-28400000000000000000,"y":2700000000000000000,"z":5480000000000000000}},"30005719":{"solarSystemId":30005719,"solarSystemName":"D:2S3V","location":{"x":-28600000000000000000,"y":-439000000000000000,"z":4790000000000000000}},"30005720":{"solarSystemId":30005720,"solarSystemName":"B:O0A7","location":{"x":-29200000000000000000,"y":114000000000000000,"z":5870000000000000000}},"30005721":{"solarSystemId":30005721,"solarSystemName":"D:OV54","location":{"x":-28200000000000000000,"y":-218000000000000000,"z":4760000000000000000}},"30005722":{"solarSystemId":30005722,"solarSystemName":"J:2VT6","location":{"x":-28800000000000000000,"y":-127000000000000000,"z":2800000000000000000}},"30005723":{"solarSystemId":30005723,"solarSystemName":"P:2NTO","location":{"x":-29200000000000000000,"y":-298000000000000000,"z":3240000000000000000}},"30005724":{"solarSystemId":30005724,"solarSystemName":"H:E2RK","location":{"x":-29500000000000000000,"y":-377000000000000000,"z":2510000000000000000}},"30005725":{"solarSystemId":30005725,"solarSystemName":"H:129E","location":{"x":-29000000000000000000,"y":-182000000000000000,"z":2990000000000000000}},"30005726":{"solarSystemId":30005726,"solarSystemName":"G:1151","location":{"x":-29200000000000000000,"y":-4340000000000000,"z":3620000000000000000}},"30005727":{"solarSystemId":30005727,"solarSystemName":"U:LNKK","location":{"x":-29100000000000000000,"y":-120000000000000000,"z":2290000000000000000}},"30005728":{"solarSystemId":30005728,"solarSystemName":"M:5009","location":{"x":-29600000000000000000,"y":-816000000000000000,"z":3540000000000000000}},"30005729":{"solarSystemId":30005729,"solarSystemName":"J:1OK1","location":{"x":-29200000000000000000,"y":-270000000000000000,"z":2890000000000000000}},"30005730":{"solarSystemId":30005730,"solarSystemName":"D:1I08","location":{"x":-29900000000000000000,"y":-235000000000000000,"z":3060000000000000000}},"30005731":{"solarSystemId":30005731,"solarSystemName":"Q:34NT","location":{"x":-30000000000000000000,"y":-216000000000000000,"z":1670000000000000000}},"30005732":{"solarSystemId":30005732,"solarSystemName":"Q:1A11","location":{"x":-30600000000000000000,"y":393000000000000000,"z":1470000000000000000}},"30005733":{"solarSystemId":30005733,"solarSystemName":"F:R92A","location":{"x":-31100000000000000000,"y":-171000000000000000,"z":1140000000000000000}},"30005734":{"solarSystemId":30005734,"solarSystemName":"B:15S6","location":{"x":-30800000000000000000,"y":-551000000000000000,"z":2210000000000000000}},"30005735":{"solarSystemId":30005735,"solarSystemName":"P:E5RV","location":{"x":-30700000000000000000,"y":-499000000000000000,"z":1170000000000000000}},"30005736":{"solarSystemId":30005736,"solarSystemName":"P:3VS9","location":{"x":-30900000000000000000,"y":-73600000000000000,"z":203000000000000000}},"30005737":{"solarSystemId":30005737,"solarSystemName":"P:394E","location":{"x":-29800000000000000000,"y":-626000000000000000,"z":742000000000000000}},"30005738":{"solarSystemId":30005738,"solarSystemName":"B:1A67","location":{"x":-31400000000000000000,"y":-443000000000000000,"z":807000000000000000}},"30005739":{"solarSystemId":30005739,"solarSystemName":"Y:OIS9","location":{"x":-29800000000000000000,"y":-1420000000000000000,"z":198000000000000000}},"30005740":{"solarSystemId":30005740,"solarSystemName":"B:1RRE","location":{"x":-30400000000000000000,"y":-721000000000000000,"z":1310000000000000000}},"30005741":{"solarSystemId":30005741,"solarSystemName":"F:1870","location":{"x":-30600000000000000000,"y":-329000000000000000,"z":64500000000000000}},"30005742":{"solarSystemId":30005742,"solarSystemName":"H:4E03","location":{"x":-30900000000000000000,"y":-12800000000000000,"z":1150000000000000000}},"30005743":{"solarSystemId":30005743,"solarSystemName":"P:3ERK","location":{"x":-25900000000000000000,"y":63500000000000000,"z":2360000000000000000}},"30005744":{"solarSystemId":30005744,"solarSystemName":"H:N6L1","location":{"x":-24800000000000000000,"y":22200000000000000,"z":2600000000000000000}},"30005745":{"solarSystemId":30005745,"solarSystemName":"Q:5198","location":{"x":-25600000000000000000,"y":-668000000000000000,"z":3240000000000000000}},"30005746":{"solarSystemId":30005746,"solarSystemName":"Q:5RLO","location":{"x":-25600000000000000000,"y":-198000000000000000,"z":2340000000000000000}},"30005747":{"solarSystemId":30005747,"solarSystemName":"F:137V","location":{"x":-26500000000000000000,"y":148000000000000000,"z":2100000000000000000}},"30005748":{"solarSystemId":30005748,"solarSystemName":"Z:2NAA","location":{"x":-26400000000000000000,"y":-125000000000000000,"z":2240000000000000000}},"30005749":{"solarSystemId":30005749,"solarSystemName":"G:1OIA","location":{"x":-25300000000000000000,"y":48100000000000000,"z":2210000000000000000}},"30005750":{"solarSystemId":30005750,"solarSystemName":"U:1241","location":{"x":-26200000000000000000,"y":-680000000000000000,"z":3100000000000000000}},"30005751":{"solarSystemId":30005751,"solarSystemName":"J:I966","location":{"x":-24800000000000000000,"y":-228000000000000000,"z":2900000000000000000}},"30005752":{"solarSystemId":30005752,"solarSystemName":"D:90N2","location":{"x":-25500000000000000000,"y":-290000000000000000,"z":2410000000000000000}},"30005753":{"solarSystemId":30005753,"solarSystemName":"Z:1705","location":{"x":-25300000000000000000,"y":-172000000000000000,"z":2310000000000000000}},"30005754":{"solarSystemId":30005754,"solarSystemName":"F:3IIT","location":{"x":-28000000000000000000,"y":-454000000000000000,"z":2720000000000000000}},"30005755":{"solarSystemId":30005755,"solarSystemName":"Q:198N","location":{"x":-28400000000000000000,"y":-280000000000000000,"z":3780000000000000000}},"30005756":{"solarSystemId":30005756,"solarSystemName":"D:1A3O","location":{"x":-28100000000000000000,"y":-296000000000000000,"z":4320000000000000000}},"30005757":{"solarSystemId":30005757,"solarSystemName":"Z:N75O","location":{"x":-27600000000000000000,"y":-116000000000000000,"z":3540000000000000000}},"30005758":{"solarSystemId":30005758,"solarSystemName":"U:7L2K","location":{"x":-28200000000000000000,"y":-787000000000000000,"z":3560000000000000000}},"30005759":{"solarSystemId":30005759,"solarSystemName":"G:363A","location":{"x":-28400000000000000000,"y":-446000000000000000,"z":3060000000000000000}},"30005760":{"solarSystemId":30005760,"solarSystemName":"H:4I7K","location":{"x":-28500000000000000000,"y":-291000000000000000,"z":2670000000000000000}},"30005761":{"solarSystemId":30005761,"solarSystemName":"Y:LNIK","location":{"x":-27600000000000000000,"y":-1440000000000000000,"z":3150000000000000000}},"30005762":{"solarSystemId":30005762,"solarSystemName":"D:E7LS","location":{"x":-28200000000000000000,"y":-849000000000000000,"z":4120000000000000000}},"30005763":{"solarSystemId":30005763,"solarSystemName":"P:2S51","location":{"x":-31800000000000000000,"y":5650000000000000000,"z":1110000000000000000}},"30005764":{"solarSystemId":30005764,"solarSystemName":"Y:1A1V","location":{"x":-29000000000000000000,"y":6570000000000000000,"z":3660000000000000000}},"30005765":{"solarSystemId":30005765,"solarSystemName":"H:S9LN","location":{"x":-30600000000000000000,"y":2470000000000000000,"z":59700000000000000}},"30005766":{"solarSystemId":30005766,"solarSystemName":"Y:V2KN","location":{"x":-32000000000000000000,"y":6110000000000000000,"z":3040000000000000000}},"30005767":{"solarSystemId":30005767,"solarSystemName":"B:1013","location":{"x":-31900000000000000000,"y":2650000000000000000,"z":739000000000000000}},"30005768":{"solarSystemId":30005768,"solarSystemName":"Q:13SS","location":{"x":-25400000000000000000,"y":6850000000000000000,"z":3690000000000000000}},"30005769":{"solarSystemId":30005769,"solarSystemName":"Y:197I","location":{"x":-21800000000000000000,"y":-845000000000000000,"z":-4600000000000000000}},"30005770":{"solarSystemId":30005770,"solarSystemName":"M:EVIL","location":{"x":-21800000000000000000,"y":-759000000000000000,"z":-4870000000000000000}},"30005771":{"solarSystemId":30005771,"solarSystemName":"P:1I98","location":{"x":-22000000000000000000,"y":-1020000000000000000,"z":-4950000000000000000}},"30005772":{"solarSystemId":30005772,"solarSystemName":"G:587V","location":{"x":-21600000000000000000,"y":-941000000000000000,"z":-4820000000000000000}},"30005773":{"solarSystemId":30005773,"solarSystemName":"Q:10O3","location":{"x":-21600000000000000000,"y":-608000000000000000,"z":-4870000000000000000}},"30005774":{"solarSystemId":30005774,"solarSystemName":"Q:1I5K","location":{"x":-21600000000000000000,"y":-868000000000000000,"z":-4930000000000000000}},"30005775":{"solarSystemId":30005775,"solarSystemName":"F:1670","location":{"x":-21700000000000000000,"y":-773000000000000000,"z":-4850000000000000000}},"30005776":{"solarSystemId":30005776,"solarSystemName":"H:2SE2","location":{"x":-21700000000000000000,"y":-759000000000000000,"z":-4930000000000000000}},"30005777":{"solarSystemId":30005777,"solarSystemName":"D:L34V","location":{"x":-21700000000000000000,"y":-600000000000000000,"z":-4840000000000000000}},"30005778":{"solarSystemId":30005778,"solarSystemName":"M:1631","location":{"x":-21900000000000000000,"y":-1080000000000000000,"z":-4600000000000000000}},"30005779":{"solarSystemId":30005779,"solarSystemName":"G:18N2","location":{"x":-22100000000000000000,"y":-595000000000000000,"z":-5090000000000000000}},"30005780":{"solarSystemId":30005780,"solarSystemName":"D:11KA","location":{"x":-21900000000000000000,"y":-649000000000000000,"z":-4690000000000000000}},"30005781":{"solarSystemId":30005781,"solarSystemName":"H:2OSO","location":{"x":-21600000000000000000,"y":-906000000000000000,"z":-4920000000000000000}},"30005782":{"solarSystemId":30005782,"solarSystemName":"U:2E52","location":{"x":-21700000000000000000,"y":-835000000000000000,"z":-4640000000000000000}},"30005783":{"solarSystemId":30005783,"solarSystemName":"Y:290T","location":{"x":-22000000000000000000,"y":-785000000000000000,"z":-5100000000000000000}},"30005784":{"solarSystemId":30005784,"solarSystemName":"F:NLN2","location":{"x":-21700000000000000000,"y":-409000000000000000,"z":-4900000000000000000}},"30005785":{"solarSystemId":30005785,"solarSystemName":"Y:3SVL","location":{"x":-22200000000000000000,"y":-449000000000000000,"z":-3660000000000000000}},"30005786":{"solarSystemId":30005786,"solarSystemName":"M:3REV","location":{"x":-22400000000000000000,"y":-645000000000000000,"z":-4020000000000000000}},"30005787":{"solarSystemId":30005787,"solarSystemName":"B:1AOL","location":{"x":-22300000000000000000,"y":-292000000000000000,"z":-3830000000000000000}},"30005788":{"solarSystemId":30005788,"solarSystemName":"M:19SV","location":{"x":-22200000000000000000,"y":-188000000000000000,"z":-3390000000000000000}},"30005789":{"solarSystemId":30005789,"solarSystemName":"Q:1K4E","location":{"x":-22400000000000000000,"y":-507000000000000000,"z":-3680000000000000000}},"30005790":{"solarSystemId":30005790,"solarSystemName":"F:O742","location":{"x":-22200000000000000000,"y":-79900000000000000,"z":-3750000000000000000}},"30005791":{"solarSystemId":30005791,"solarSystemName":"F:OIN9","location":{"x":-22300000000000000000,"y":-759000000000000000,"z":-4040000000000000000}},"30005792":{"solarSystemId":30005792,"solarSystemName":"M:14O7","location":{"x":-22100000000000000000,"y":-221000000000000000,"z":-3610000000000000000}},"30005793":{"solarSystemId":30005793,"solarSystemName":"P:SO02","location":{"x":-22100000000000000000,"y":-608000000000000000,"z":-3790000000000000000}},"30005794":{"solarSystemId":30005794,"solarSystemName":"Y:1024","location":{"x":-22300000000000000000,"y":-168000000000000000,"z":-3920000000000000000}},"30005795":{"solarSystemId":30005795,"solarSystemName":"U:TA34","location":{"x":-22600000000000000000,"y":-207000000000000000,"z":-3820000000000000000}},"30005796":{"solarSystemId":30005796,"solarSystemName":"F:L2LL","location":{"x":-22200000000000000000,"y":-381000000000000000,"z":-4000000000000000000}},"30005797":{"solarSystemId":30005797,"solarSystemName":"U:1ASI","location":{"x":-22200000000000000000,"y":-423000000000000000,"z":-3750000000000000000}},"30005798":{"solarSystemId":30005798,"solarSystemName":"Y:NES7","location":{"x":-22200000000000000000,"y":-852000000000000000,"z":-3590000000000000000}},"30005799":{"solarSystemId":30005799,"solarSystemName":"B:1345","location":{"x":-22300000000000000000,"y":-236000000000000000,"z":-3460000000000000000}},"30005800":{"solarSystemId":30005800,"solarSystemName":"Y:KK50","location":{"x":-22100000000000000000,"y":-629000000000000000,"z":-4000000000000000000}},"30005801":{"solarSystemId":30005801,"solarSystemName":"Q:1531","location":{"x":-22300000000000000000,"y":-400000000000000000,"z":-3820000000000000000}},"30005802":{"solarSystemId":30005802,"solarSystemName":"F:362E","location":{"x":-21000000000000000000,"y":-419000000000000000,"z":-5210000000000000000}},"30005803":{"solarSystemId":30005803,"solarSystemName":"Y:RRN4","location":{"x":-21800000000000000000,"y":32300000000000000,"z":-5820000000000000000}},"30005804":{"solarSystemId":30005804,"solarSystemName":"F:153S","location":{"x":-21200000000000000000,"y":-435000000000000000,"z":-5240000000000000000}},"30005805":{"solarSystemId":30005805,"solarSystemName":"Q:K2A3","location":{"x":-21200000000000000000,"y":-378000000000000000,"z":-4930000000000000000}},"30005806":{"solarSystemId":30005806,"solarSystemName":"U:13E0","location":{"x":-21100000000000000000,"y":-80700000000000000,"z":-5030000000000000000}},"30005807":{"solarSystemId":30005807,"solarSystemName":"D:1TN2","location":{"x":-21000000000000000000,"y":-504000000000000000,"z":-5000000000000000000}},"30005808":{"solarSystemId":30005808,"solarSystemName":"Y:1431","location":{"x":-21700000000000000000,"y":-378000000000000000,"z":-5560000000000000000}},"30005809":{"solarSystemId":30005809,"solarSystemName":"J:13TS","location":{"x":-21300000000000000000,"y":-344000000000000000,"z":-4980000000000000000}},"30005810":{"solarSystemId":30005810,"solarSystemName":"U:2VI7","location":{"x":-21200000000000000000,"y":-486000000000000000,"z":-5110000000000000000}},"30005811":{"solarSystemId":30005811,"solarSystemName":"B:14V2","location":{"x":-21400000000000000000,"y":-695000000000000000,"z":-5020000000000000000}},"30005812":{"solarSystemId":30005812,"solarSystemName":"H:13K1","location":{"x":-21800000000000000000,"y":-118000000000000000,"z":-5650000000000000000}},"30005813":{"solarSystemId":30005813,"solarSystemName":"Q:14E8","location":{"x":-21500000000000000000,"y":-26200000000000000,"z":-5530000000000000000}},"30005814":{"solarSystemId":30005814,"solarSystemName":"J:181L","location":{"x":-21200000000000000000,"y":-324000000000000000,"z":-5160000000000000000}},"30005815":{"solarSystemId":30005815,"solarSystemName":"J:1629","location":{"x":-21100000000000000000,"y":-369000000000000000,"z":-5310000000000000000}},"30005816":{"solarSystemId":30005816,"solarSystemName":"F:KI6S","location":{"x":-20900000000000000000,"y":-58300000000000000,"z":-5010000000000000000}},"30005817":{"solarSystemId":30005817,"solarSystemName":"Z:11A8","location":{"x":-21600000000000000000,"y":-307000000000000000,"z":-5280000000000000000}},"30005818":{"solarSystemId":30005818,"solarSystemName":"Y:1A61","location":{"x":-21200000000000000000,"y":5600000000000000,"z":-5380000000000000000}},"30005819":{"solarSystemId":30005819,"solarSystemName":"P:2S78","location":{"x":-21600000000000000000,"y":-768000000000000000,"z":-3720000000000000000}},"30005820":{"solarSystemId":30005820,"solarSystemName":"J:18TA","location":{"x":-21500000000000000000,"y":-730000000000000000,"z":-3870000000000000000}},"30005821":{"solarSystemId":30005821,"solarSystemName":"Z:1AS7","location":{"x":-21500000000000000000,"y":-716000000000000000,"z":-3720000000000000000}},"30005822":{"solarSystemId":30005822,"solarSystemName":"F:1607","location":{"x":-21700000000000000000,"y":-797000000000000000,"z":-3870000000000000000}},"30005823":{"solarSystemId":30005823,"solarSystemName":"U:1N0V","location":{"x":-21300000000000000000,"y":-750000000000000000,"z":-4130000000000000000}},"30005824":{"solarSystemId":30005824,"solarSystemName":"P:TVNV","location":{"x":-21200000000000000000,"y":-712000000000000000,"z":-3990000000000000000}},"30005825":{"solarSystemId":30005825,"solarSystemName":"B:16VL","location":{"x":-21500000000000000000,"y":-634000000000000000,"z":-4080000000000000000}},"30005826":{"solarSystemId":30005826,"solarSystemName":"Q:E4T8","location":{"x":-21300000000000000000,"y":-700000000000000000,"z":-3950000000000000000}},"30005827":{"solarSystemId":30005827,"solarSystemName":"Y:T24K","location":{"x":-21600000000000000000,"y":-689000000000000000,"z":-3830000000000000000}},"30005828":{"solarSystemId":30005828,"solarSystemName":"Q:OO58","location":{"x":-21200000000000000000,"y":-774000000000000000,"z":-3970000000000000000}},"30005829":{"solarSystemId":30005829,"solarSystemName":"M:19N9","location":{"x":-21400000000000000000,"y":-691000000000000000,"z":-4070000000000000000}},"30005830":{"solarSystemId":30005830,"solarSystemName":"F:185T","location":{"x":-21300000000000000000,"y":-687000000000000000,"z":-3780000000000000000}},"30005831":{"solarSystemId":30005831,"solarSystemName":"H:K2SE","location":{"x":-21500000000000000000,"y":-624000000000000000,"z":-3670000000000000000}},"30005832":{"solarSystemId":30005832,"solarSystemName":"F:15TT","location":{"x":-21500000000000000000,"y":-932000000000000000,"z":-3740000000000000000}},"30005833":{"solarSystemId":30005833,"solarSystemName":"H:12K5","location":{"x":-21600000000000000000,"y":-753000000000000000,"z":-3730000000000000000}},"30005834":{"solarSystemId":30005834,"solarSystemName":"Z:KR53","location":{"x":-21400000000000000000,"y":-603000000000000000,"z":-3910000000000000000}},"30005835":{"solarSystemId":30005835,"solarSystemName":"P:15OV","location":{"x":-21600000000000000000,"y":-537000000000000000,"z":-4010000000000000000}},"30005836":{"solarSystemId":30005836,"solarSystemName":"D:169E","location":{"x":-21300000000000000000,"y":-703000000000000000,"z":-4040000000000000000}},"30005837":{"solarSystemId":30005837,"solarSystemName":"U:TI1N","location":{"x":-21300000000000000000,"y":-515000000000000000,"z":-3840000000000000000}},"30005838":{"solarSystemId":30005838,"solarSystemName":"F:15OO","location":{"x":-21400000000000000000,"y":-962000000000000000,"z":-4900000000000000000}},"30005839":{"solarSystemId":30005839,"solarSystemName":"D:1976","location":{"x":-20500000000000000000,"y":-1200000000000000000,"z":-5270000000000000000}},"30005840":{"solarSystemId":30005840,"solarSystemName":"U:11OV","location":{"x":-20900000000000000000,"y":-980000000000000000,"z":-4500000000000000000}},"30005841":{"solarSystemId":30005841,"solarSystemName":"U:111I","location":{"x":-21100000000000000000,"y":-771000000000000000,"z":-5490000000000000000}},"30005842":{"solarSystemId":30005842,"solarSystemName":"Y:13I8","location":{"x":-21100000000000000000,"y":-861000000000000000,"z":-5460000000000000000}},"30005843":{"solarSystemId":30005843,"solarSystemName":"J:878E","location":{"x":-20800000000000000000,"y":-1640000000000000000,"z":-5410000000000000000}},"30005844":{"solarSystemId":30005844,"solarSystemName":"F:359I","location":{"x":-20700000000000000000,"y":-572000000000000000,"z":-5150000000000000000}},"30005845":{"solarSystemId":30005845,"solarSystemName":"P:42EN","location":{"x":-20500000000000000000,"y":-864000000000000000,"z":-5450000000000000000}},"30005846":{"solarSystemId":30005846,"solarSystemName":"P:15VL","location":{"x":-20800000000000000000,"y":-861000000000000000,"z":-4970000000000000000}},"30005847":{"solarSystemId":30005847,"solarSystemName":"Q:10IV","location":{"x":-21000000000000000000,"y":-1240000000000000000,"z":-5230000000000000000}},"30005848":{"solarSystemId":30005848,"solarSystemName":"P:121L","location":{"x":-21000000000000000000,"y":-1370000000000000000,"z":-5160000000000000000}},"30005849":{"solarSystemId":30005849,"solarSystemName":"G:182A","location":{"x":-20900000000000000000,"y":-610000000000000000,"z":-5090000000000000000}},"30005850":{"solarSystemId":30005850,"solarSystemName":"F:18KE","location":{"x":-20400000000000000000,"y":-648000000000000000,"z":-5460000000000000000}},"30005851":{"solarSystemId":30005851,"solarSystemName":"B:1A8T","location":{"x":-20700000000000000000,"y":-1140000000000000000,"z":-5070000000000000000}},"30005852":{"solarSystemId":30005852,"solarSystemName":"Y:V35E","location":{"x":-20500000000000000000,"y":-1210000000000000000,"z":-5350000000000000000}},"30005853":{"solarSystemId":30005853,"solarSystemName":"U:1017","location":{"x":-20800000000000000000,"y":-845000000000000000,"z":-4520000000000000000}},"30005854":{"solarSystemId":30005854,"solarSystemName":"B:2L8L","location":{"x":-23200000000000000000,"y":-1120000000000000000,"z":-3850000000000000000}},"30005855":{"solarSystemId":30005855,"solarSystemName":"U:169L","location":{"x":-22100000000000000000,"y":-1420000000000000000,"z":-3860000000000000000}},"30005856":{"solarSystemId":30005856,"solarSystemName":"Q:46TK","location":{"x":-22700000000000000000,"y":-1000000000000000000,"z":-3940000000000000000}},"30005857":{"solarSystemId":30005857,"solarSystemName":"G:4KL6","location":{"x":-22200000000000000000,"y":-1430000000000000000,"z":-3870000000000000000}},"30005858":{"solarSystemId":30005858,"solarSystemName":"J:TA4N","location":{"x":-22300000000000000000,"y":-1160000000000000000,"z":-3730000000000000000}},"30005859":{"solarSystemId":30005859,"solarSystemName":"Z:1604","location":{"x":-23400000000000000000,"y":-2300000000000000000,"z":-3150000000000000000}},"30005860":{"solarSystemId":30005860,"solarSystemName":"F:VVK1","location":{"x":-23400000000000000000,"y":-3340000000000000000,"z":-3260000000000000000}},"30005861":{"solarSystemId":30005861,"solarSystemName":"B:1569","location":{"x":-22900000000000000000,"y":-3950000000000000000,"z":-2620000000000000000}},"30005862":{"solarSystemId":30005862,"solarSystemName":"M:KL3I","location":{"x":-23900000000000000000,"y":-3350000000000000000,"z":-3400000000000000000}},"30005863":{"solarSystemId":30005863,"solarSystemName":"G:10V5","location":{"x":-22600000000000000000,"y":-1050000000000000000,"z":-3900000000000000000}},"30005864":{"solarSystemId":30005864,"solarSystemName":"F:967L","location":{"x":-22500000000000000000,"y":-912000000000000000,"z":-3900000000000000000}},"30005865":{"solarSystemId":30005865,"solarSystemName":"G:1998","location":{"x":-22000000000000000000,"y":-1420000000000000000,"z":-4130000000000000000}},"30005866":{"solarSystemId":30005866,"solarSystemName":"H:239K","location":{"x":-22200000000000000000,"y":-760000000000000000,"z":-4990000000000000000}},"30005867":{"solarSystemId":30005867,"solarSystemName":"Y:1K1R","location":{"x":-22400000000000000000,"y":-639000000000000000,"z":-4210000000000000000}},"30005868":{"solarSystemId":30005868,"solarSystemName":"F:K640","location":{"x":-22600000000000000000,"y":-319000000000000000,"z":-4430000000000000000}},"30005869":{"solarSystemId":30005869,"solarSystemName":"U:TILE","location":{"x":-22300000000000000000,"y":-445000000000000000,"z":-4900000000000000000}},"30005870":{"solarSystemId":30005870,"solarSystemName":"P:94LK","location":{"x":-22200000000000000000,"y":-652000000000000000,"z":-4270000000000000000}},"30005871":{"solarSystemId":30005871,"solarSystemName":"F:12OO","location":{"x":-22100000000000000000,"y":-483000000000000000,"z":-4220000000000000000}},"30005872":{"solarSystemId":30005872,"solarSystemName":"J:1979","location":{"x":-22400000000000000000,"y":-475000000000000000,"z":-5110000000000000000}},"30005873":{"solarSystemId":30005873,"solarSystemName":"U:1950","location":{"x":-22500000000000000000,"y":-302000000000000000,"z":-4100000000000000000}},"30005874":{"solarSystemId":30005874,"solarSystemName":"M:2N87","location":{"x":-22100000000000000000,"y":-550000000000000000,"z":-4410000000000000000}},"30005875":{"solarSystemId":30005875,"solarSystemName":"B:23R4","location":{"x":-22100000000000000000,"y":-276000000000000000,"z":-4270000000000000000}},"30005876":{"solarSystemId":30005876,"solarSystemName":"B:1T88","location":{"x":-22600000000000000000,"y":-421000000000000000,"z":-4560000000000000000}},"30005877":{"solarSystemId":30005877,"solarSystemName":"G:KLS0","location":{"x":-22400000000000000000,"y":-530000000000000000,"z":-4920000000000000000}},"30005878":{"solarSystemId":30005878,"solarSystemName":"U:15A6","location":{"x":-22100000000000000000,"y":-469000000000000000,"z":-4620000000000000000}},"30005879":{"solarSystemId":30005879,"solarSystemName":"D:1O21","location":{"x":-22400000000000000000,"y":132000000000000000,"z":-4930000000000000000}},"30005880":{"solarSystemId":30005880,"solarSystemName":"H:1AI4","location":{"x":-22200000000000000000,"y":-557000000000000000,"z":-4380000000000000000}},"30005881":{"solarSystemId":30005881,"solarSystemName":"Q:TE32","location":{"x":-22100000000000000000,"y":-124000000000000000,"z":-4710000000000000000}},"30005882":{"solarSystemId":30005882,"solarSystemName":"M:1508","location":{"x":-21900000000000000000,"y":7630000000000000,"z":-5190000000000000000}},"30005883":{"solarSystemId":30005883,"solarSystemName":"H:1A23","location":{"x":-22400000000000000000,"y":466000000000000000,"z":-4620000000000000000}},"30005884":{"solarSystemId":30005884,"solarSystemName":"B:186A","location":{"x":-22600000000000000000,"y":-314000000000000000,"z":-4320000000000000000}},"30005885":{"solarSystemId":30005885,"solarSystemName":"Y:2VLL","location":{"x":-21100000000000000000,"y":-589000000000000000,"z":-4510000000000000000}},"30005886":{"solarSystemId":30005886,"solarSystemName":"M:3335","location":{"x":-21100000000000000000,"y":-844000000000000000,"z":-4400000000000000000}},"30005887":{"solarSystemId":30005887,"solarSystemName":"G:L1RK","location":{"x":-21200000000000000000,"y":-781000000000000000,"z":-4670000000000000000}},"30005888":{"solarSystemId":30005888,"solarSystemName":"B:1O3T","location":{"x":-21300000000000000000,"y":-654000000000000000,"z":-4440000000000000000}},"30005889":{"solarSystemId":30005889,"solarSystemName":"Y:1007","location":{"x":-21100000000000000000,"y":-594000000000000000,"z":-4430000000000000000}},"30005890":{"solarSystemId":30005890,"solarSystemName":"J:19V4","location":{"x":-21100000000000000000,"y":-998000000000000000,"z":-4260000000000000000}},"30005891":{"solarSystemId":30005891,"solarSystemName":"D:V4R2","location":{"x":-21100000000000000000,"y":-787000000000000000,"z":-4810000000000000000}},"30005892":{"solarSystemId":30005892,"solarSystemName":"G:2RST","location":{"x":-21400000000000000000,"y":-648000000000000000,"z":-4790000000000000000}},"30005893":{"solarSystemId":30005893,"solarSystemName":"D:KLK0","location":{"x":-20900000000000000000,"y":-732000000000000000,"z":-4350000000000000000}},"30005894":{"solarSystemId":30005894,"solarSystemName":"D:3OO5","location":{"x":-21400000000000000000,"y":-1050000000000000000,"z":-4520000000000000000}},"30005895":{"solarSystemId":30005895,"solarSystemName":"H:T1S0","location":{"x":-21300000000000000000,"y":-503000000000000000,"z":-4510000000000000000}},"30005896":{"solarSystemId":30005896,"solarSystemName":"H:14K7","location":{"x":-21000000000000000000,"y":-770000000000000000,"z":-4370000000000000000}},"30005897":{"solarSystemId":30005897,"solarSystemName":"Q:1IE6","location":{"x":-21200000000000000000,"y":-662000000000000000,"z":-4280000000000000000}},"30005898":{"solarSystemId":30005898,"solarSystemName":"Z:L2T8","location":{"x":-21400000000000000000,"y":-702000000000000000,"z":-4820000000000000000}},"30005899":{"solarSystemId":30005899,"solarSystemName":"F:SS78","location":{"x":-21100000000000000000,"y":-852000000000000000,"z":-4650000000000000000}},"30005900":{"solarSystemId":30005900,"solarSystemName":"U:10L1","location":{"x":-21200000000000000000,"y":-1060000000000000000,"z":-4470000000000000000}},"30005901":{"solarSystemId":30005901,"solarSystemName":"Z:18L4","location":{"x":-21400000000000000000,"y":-838000000000000000,"z":-4580000000000000000}},"30005902":{"solarSystemId":30005902,"solarSystemName":"Q:1094","location":{"x":-21100000000000000000,"y":-676000000000000000,"z":-4360000000000000000}},"30005903":{"solarSystemId":30005903,"solarSystemName":"J:14A9","location":{"x":-21200000000000000000,"y":-681000000000000000,"z":-4380000000000000000}},"30005904":{"solarSystemId":30005904,"solarSystemName":"F:V5A1","location":{"x":-22200000000000000000,"y":-834000000000000000,"z":-4100000000000000000}},"30005905":{"solarSystemId":30005905,"solarSystemName":"F:1IA8","location":{"x":-22100000000000000000,"y":-550000000000000000,"z":-4170000000000000000}},"30005906":{"solarSystemId":30005906,"solarSystemName":"M:RI59","location":{"x":-22000000000000000000,"y":-1140000000000000000,"z":-3990000000000000000}},"30005907":{"solarSystemId":30005907,"solarSystemName":"Z:277R","location":{"x":-21900000000000000000,"y":-774000000000000000,"z":-4130000000000000000}},"30005908":{"solarSystemId":30005908,"solarSystemName":"M:S280","location":{"x":-21900000000000000000,"y":-839000000000000000,"z":-4420000000000000000}},"30005909":{"solarSystemId":30005909,"solarSystemName":"H:4656","location":{"x":-21500000000000000000,"y":-673000000000000000,"z":-4130000000000000000}},"30005910":{"solarSystemId":30005910,"solarSystemName":"Z:1T4S","location":{"x":-21600000000000000000,"y":-488000000000000000,"z":-4090000000000000000}},"30005911":{"solarSystemId":30005911,"solarSystemName":"J:LTR9","location":{"x":-21700000000000000000,"y":-531000000000000000,"z":-4090000000000000000}},"30005912":{"solarSystemId":30005912,"solarSystemName":"B:R78I","location":{"x":-22000000000000000000,"y":-934000000000000000,"z":-4200000000000000000}},"30005913":{"solarSystemId":30005913,"solarSystemName":"U:1691","location":{"x":-22000000000000000000,"y":-797000000000000000,"z":-3810000000000000000}},"30005914":{"solarSystemId":30005914,"solarSystemName":"U:1I7K","location":{"x":-21700000000000000000,"y":-513000000000000000,"z":-3950000000000000000}},"30005915":{"solarSystemId":30005915,"solarSystemName":"D:110L","location":{"x":-21900000000000000000,"y":-828000000000000000,"z":-3610000000000000000}},"30005916":{"solarSystemId":30005916,"solarSystemName":"U:102L","location":{"x":-21800000000000000000,"y":-784000000000000000,"z":-4070000000000000000}},"30005917":{"solarSystemId":30005917,"solarSystemName":"Q:V1R4","location":{"x":-21600000000000000000,"y":-714000000000000000,"z":-4120000000000000000}},"30005918":{"solarSystemId":30005918,"solarSystemName":"G:1317","location":{"x":-21700000000000000000,"y":-509000000000000000,"z":-4190000000000000000}},"30005919":{"solarSystemId":30005919,"solarSystemName":"U:SS18","location":{"x":-21900000000000000000,"y":-707000000000000000,"z":-3710000000000000000}},"30005920":{"solarSystemId":30005920,"solarSystemName":"Y:3RNI","location":{"x":-22200000000000000000,"y":-960000000000000000,"z":-4070000000000000000}},"30005921":{"solarSystemId":30005921,"solarSystemName":"H:294R","location":{"x":-22600000000000000000,"y":-2100000000000000000,"z":-4600000000000000000}},"30005922":{"solarSystemId":30005922,"solarSystemName":"M:1421","location":{"x":-22900000000000000000,"y":-2140000000000000000,"z":-4310000000000000000}},"30005923":{"solarSystemId":30005923,"solarSystemName":"P:13A0","location":{"x":-22500000000000000000,"y":-1350000000000000000,"z":-4190000000000000000}},"30005924":{"solarSystemId":30005924,"solarSystemName":"U:IN7O","location":{"x":-22800000000000000000,"y":-2490000000000000000,"z":-4200000000000000000}},"30005925":{"solarSystemId":30005925,"solarSystemName":"U:I30A","location":{"x":-22900000000000000000,"y":-1200000000000000000,"z":-3870000000000000000}},"30005926":{"solarSystemId":30005926,"solarSystemName":"J:L1LL","location":{"x":-23300000000000000000,"y":-2670000000000000000,"z":-3860000000000000000}},"30005927":{"solarSystemId":30005927,"solarSystemName":"P:S4LV","location":{"x":-23000000000000000000,"y":-2550000000000000000,"z":-5250000000000000000}},"30005928":{"solarSystemId":30005928,"solarSystemName":"B:1A0T","location":{"x":-22800000000000000000,"y":-1970000000000000000,"z":-4460000000000000000}},"30005929":{"solarSystemId":30005929,"solarSystemName":"G:198V","location":{"x":-22000000000000000000,"y":-1810000000000000000,"z":-4600000000000000000}},"30005930":{"solarSystemId":30005930,"solarSystemName":"G:T5O7","location":{"x":-23000000000000000000,"y":-1340000000000000000,"z":-3900000000000000000}},"30005931":{"solarSystemId":30005931,"solarSystemName":"Y:L3O8","location":{"x":-22900000000000000000,"y":-2040000000000000000,"z":-4290000000000000000}},"30005932":{"solarSystemId":30005932,"solarSystemName":"G:RO6V","location":{"x":-22500000000000000000,"y":-1550000000000000000,"z":-3950000000000000000}},"30005933":{"solarSystemId":30005933,"solarSystemName":"H:K38E","location":{"x":-22800000000000000000,"y":-1870000000000000000,"z":-3950000000000000000}},"30005934":{"solarSystemId":30005934,"solarSystemName":"M:3706","location":{"x":-12200000000000000000,"y":-2590000000000000000,"z":-5920000000000000000}},"30005935":{"solarSystemId":30005935,"solarSystemName":"Z:2KE4","location":{"x":-13000000000000000000,"y":-3110000000000000000,"z":-4070000000000000000}},"30005936":{"solarSystemId":30005936,"solarSystemName":"F:2N53","location":{"x":-11600000000000000000,"y":-3650000000000000000,"z":-6040000000000000000}},"30005937":{"solarSystemId":30005937,"solarSystemName":"D:10KS","location":{"x":-12700000000000000000,"y":-3280000000000000000,"z":-5990000000000000000}},"30005938":{"solarSystemId":30005938,"solarSystemName":"P:1162","location":{"x":-12800000000000000000,"y":-3420000000000000000,"z":-5470000000000000000}},"30005939":{"solarSystemId":30005939,"solarSystemName":"M:2IEA","location":{"x":-12700000000000000000,"y":-3610000000000000000,"z":-5840000000000000000}},"30005940":{"solarSystemId":30005940,"solarSystemName":"H:22ER","location":{"x":-12500000000000000000,"y":-3120000000000000000,"z":-4580000000000000000}},"30005941":{"solarSystemId":30005941,"solarSystemName":"H:187V","location":{"x":-11400000000000000000,"y":-3390000000000000000,"z":-5570000000000000000}},"30005942":{"solarSystemId":30005942,"solarSystemName":"D:1AV2","location":{"x":-12200000000000000000,"y":-2700000000000000000,"z":-6300000000000000000}},"30005943":{"solarSystemId":30005943,"solarSystemName":"G:23OK","location":{"x":-12000000000000000000,"y":-2240000000000000000,"z":-6980000000000000000}},"30005944":{"solarSystemId":30005944,"solarSystemName":"F:V0IR","location":{"x":-12600000000000000000,"y":-1980000000000000000,"z":-5950000000000000000}},"30005945":{"solarSystemId":30005945,"solarSystemName":"H:1E4N","location":{"x":-13200000000000000000,"y":-2510000000000000000,"z":-6280000000000000000}},"30005946":{"solarSystemId":30005946,"solarSystemName":"H:2K9T","location":{"x":-12000000000000000000,"y":-2150000000000000000,"z":-7650000000000000000}},"30005947":{"solarSystemId":30005947,"solarSystemName":"H:19V1","location":{"x":-18200000000000000000,"y":-5760000000000000000,"z":-2400000000000000000}},"30005948":{"solarSystemId":30005948,"solarSystemName":"Y:14AV","location":{"x":-22300000000000000000,"y":-4280000000000000000,"z":-2530000000000000000}},"30005949":{"solarSystemId":30005949,"solarSystemName":"M:1O2R","location":{"x":-21100000000000000000,"y":-5390000000000000000,"z":-2640000000000000000}},"30005950":{"solarSystemId":30005950,"solarSystemName":"U:11A9","location":{"x":-21500000000000000000,"y":-5410000000000000000,"z":-1920000000000000000}},"30005951":{"solarSystemId":30005951,"solarSystemName":"F:KVI1","location":{"x":-19900000000000000000,"y":-4820000000000000000,"z":-2000000000000000000}},"30005952":{"solarSystemId":30005952,"solarSystemName":"H:15V9","location":{"x":-20600000000000000000,"y":-5390000000000000000,"z":-2950000000000000000}},"30005953":{"solarSystemId":30005953,"solarSystemName":"P:2OT1","location":{"x":-15800000000000000000,"y":-6910000000000000000,"z":-2320000000000000000}},"30005954":{"solarSystemId":30005954,"solarSystemName":"Q:3O2E","location":{"x":-16300000000000000000,"y":-4580000000000000000,"z":-6530000000000000000}},"30005955":{"solarSystemId":30005955,"solarSystemName":"G:2I5R","location":{"x":-13000000000000000000,"y":-5690000000000000000,"z":-12000000000000000}},"30005956":{"solarSystemId":30005956,"solarSystemName":"Q:15A9","location":{"x":-15100000000000000000,"y":-9840000000000000000,"z":-3670000000000000000}},"30005957":{"solarSystemId":30005957,"solarSystemName":"Y:14E4","location":{"x":-18000000000000000000,"y":-5620000000000000000,"z":-6840000000000000000}},"30005958":{"solarSystemId":30005958,"solarSystemName":"U:339A","location":{"x":-15400000000000000000,"y":-4200000000000000000,"z":-2680000000000000000}},"30005959":{"solarSystemId":30005959,"solarSystemName":"U:2L57","location":{"x":-15800000000000000000,"y":-3780000000000000000,"z":-470000000000000000}},"30005960":{"solarSystemId":30005960,"solarSystemName":"G:13LO","location":{"x":-15600000000000000000,"y":-2160000000000000000,"z":-2410000000000000000}},"30005961":{"solarSystemId":30005961,"solarSystemName":"Y:V22N","location":{"x":-17400000000000000000,"y":-2790000000000000000,"z":-2080000000000000000}},"30005962":{"solarSystemId":30005962,"solarSystemName":"D:T4LV","location":{"x":-15000000000000000000,"y":-4110000000000000000,"z":-2020000000000000000}},"30005963":{"solarSystemId":30005963,"solarSystemName":"D:178S","location":{"x":-16500000000000000000,"y":-4770000000000000000,"z":-2170000000000000000}},"30005964":{"solarSystemId":30005964,"solarSystemName":"Y:V9N9","location":{"x":-15700000000000000000,"y":-3960000000000000000,"z":-1310000000000000000}},"30005965":{"solarSystemId":30005965,"solarSystemName":"H:17SI","location":{"x":-17000000000000000000,"y":-3660000000000000000,"z":-1490000000000000000}},"30005966":{"solarSystemId":30005966,"solarSystemName":"G:RTN5","location":{"x":-17300000000000000000,"y":-2580000000000000000,"z":-2840000000000000000}},"30005967":{"solarSystemId":30005967,"solarSystemName":"D:33SK","location":{"x":-17700000000000000000,"y":-5010000000000000000,"z":36200000000000000}},"30005968":{"solarSystemId":30005968,"solarSystemName":"D:2VEL","location":{"x":-17300000000000000000,"y":-4740000000000000000,"z":1970000000000000000}},"30005969":{"solarSystemId":30005969,"solarSystemName":"G:L020","location":{"x":-18400000000000000000,"y":-3500000000000000000,"z":-131000000000000000}},"30005970":{"solarSystemId":30005970,"solarSystemName":"Y:1864","location":{"x":-17800000000000000000,"y":-3750000000000000000,"z":-945000000000000000}},"30005971":{"solarSystemId":30005971,"solarSystemName":"P:138I","location":{"x":-19400000000000000000,"y":-4710000000000000000,"z":-527000000000000000}},"30005972":{"solarSystemId":30005972,"solarSystemName":"U:STSK","location":{"x":-19400000000000000000,"y":-4420000000000000000,"z":-795000000000000000}},"30005973":{"solarSystemId":30005973,"solarSystemName":"F:29E1","location":{"x":-13800000000000000000,"y":-5480000000000000000,"z":-3300000000000000000}},"30005974":{"solarSystemId":30005974,"solarSystemName":"J:2LRN","location":{"x":-14800000000000000000,"y":-7850000000000000000,"z":-3310000000000000000}},"30005975":{"solarSystemId":30005975,"solarSystemName":"B:2TT5","location":{"x":-13600000000000000000,"y":-6010000000000000000,"z":-3220000000000000000}},"30005976":{"solarSystemId":30005976,"solarSystemName":"D:4629","location":{"x":-13200000000000000000,"y":-5280000000000000000,"z":-2540000000000000000}},"30005977":{"solarSystemId":30005977,"solarSystemName":"Y:SR79","location":{"x":-13400000000000000000,"y":-7390000000000000000,"z":-2580000000000000000}},"30005978":{"solarSystemId":30005978,"solarSystemName":"F:2R03","location":{"x":-13200000000000000000,"y":-5110000000000000000,"z":-6470000000000000000}},"30005979":{"solarSystemId":30005979,"solarSystemName":"D:3A3I","location":{"x":-14000000000000000000,"y":-6040000000000000000,"z":-5070000000000000000}},"30005980":{"solarSystemId":30005980,"solarSystemName":"F:2O48","location":{"x":-13200000000000000000,"y":-5290000000000000000,"z":-5410000000000000000}},"30005981":{"solarSystemId":30005981,"solarSystemName":"P:3SOI","location":{"x":-13300000000000000000,"y":-5380000000000000000,"z":-6020000000000000000}},"30005982":{"solarSystemId":30005982,"solarSystemName":"Y:1A70","location":{"x":-13000000000000000000,"y":-6130000000000000000,"z":-6290000000000000000}},"30005983":{"solarSystemId":30005983,"solarSystemName":"F:1596","location":{"x":-18200000000000000000,"y":-5240000000000000000,"z":-5720000000000000000}},"30005984":{"solarSystemId":30005984,"solarSystemName":"G:L1O9","location":{"x":-16700000000000000000,"y":-7020000000000000000,"z":-2320000000000000000}},"30005985":{"solarSystemId":30005985,"solarSystemName":"D:1AVK","location":{"x":-17700000000000000000,"y":-5710000000000000000,"z":-3790000000000000000}},"30005986":{"solarSystemId":30005986,"solarSystemName":"J:1169","location":{"x":-18500000000000000000,"y":-7190000000000000000,"z":-2390000000000000000}},"30005987":{"solarSystemId":30005987,"solarSystemName":"U:1I2I","location":{"x":-17400000000000000000,"y":-6630000000000000000,"z":-4180000000000000000}},"30005988":{"solarSystemId":30005988,"solarSystemName":"D:1SSA","location":{"x":-20300000000000000000,"y":-533000000000000000,"z":-3130000000000000000}},"30005989":{"solarSystemId":30005989,"solarSystemName":"Z:16LL","location":{"x":-19800000000000000000,"y":-861000000000000000,"z":-2930000000000000000}},"30005990":{"solarSystemId":30005990,"solarSystemName":"Y:2IIA","location":{"x":-20100000000000000000,"y":-459000000000000000,"z":-3210000000000000000}},"30005991":{"solarSystemId":30005991,"solarSystemName":"J:N8SA","location":{"x":-20200000000000000000,"y":-689000000000000000,"z":-3000000000000000000}},"30005992":{"solarSystemId":30005992,"solarSystemName":"F:16LS","location":{"x":-20500000000000000000,"y":-418000000000000000,"z":-2890000000000000000}},"30005993":{"solarSystemId":30005993,"solarSystemName":"D:T94T","location":{"x":-20000000000000000000,"y":-395000000000000000,"z":-3190000000000000000}},"30005994":{"solarSystemId":30005994,"solarSystemName":"U:517K","location":{"x":-20400000000000000000,"y":-524000000000000000,"z":-2740000000000000000}},"30005995":{"solarSystemId":30005995,"solarSystemName":"D:IS7A","location":{"x":-20200000000000000000,"y":-563000000000000000,"z":-2880000000000000000}},"30005996":{"solarSystemId":30005996,"solarSystemName":"B:1I0R","location":{"x":-20400000000000000000,"y":-513000000000000000,"z":-2990000000000000000}},"30005997":{"solarSystemId":30005997,"solarSystemName":"D:16V8","location":{"x":-19900000000000000000,"y":-566000000000000000,"z":-3300000000000000000}},"30005998":{"solarSystemId":30005998,"solarSystemName":"P:KROE","location":{"x":-20500000000000000000,"y":-553000000000000000,"z":-2680000000000000000}},"30005999":{"solarSystemId":30005999,"solarSystemName":"P:1O31","location":{"x":-20300000000000000000,"y":-619000000000000000,"z":-3120000000000000000}},"30006000":{"solarSystemId":30006000,"solarSystemName":"H:18V7","location":{"x":-20200000000000000000,"y":-989000000000000000,"z":-2680000000000000000}},"30006001":{"solarSystemId":30006001,"solarSystemName":"M:178T","location":{"x":-20100000000000000000,"y":-879000000000000000,"z":-2720000000000000000}},"30006002":{"solarSystemId":30006002,"solarSystemName":"G:1474","location":{"x":-20300000000000000000,"y":-762000000000000000,"z":-3060000000000000000}},"30006003":{"solarSystemId":30006003,"solarSystemName":"Q:13A5","location":{"x":-20100000000000000000,"y":-607000000000000000,"z":-3020000000000000000}},"30006004":{"solarSystemId":30006004,"solarSystemName":"Y:10OR","location":{"x":-19700000000000000000,"y":-829000000000000000,"z":-3590000000000000000}},"30006005":{"solarSystemId":30006005,"solarSystemName":"M:1R4A","location":{"x":-19800000000000000000,"y":-827000000000000000,"z":-3450000000000000000}},"30006006":{"solarSystemId":30006006,"solarSystemName":"Y:3S17","location":{"x":-19400000000000000000,"y":-1050000000000000000,"z":-3470000000000000000}},"30006007":{"solarSystemId":30006007,"solarSystemName":"M:2A1S","location":{"x":-19700000000000000000,"y":-940000000000000000,"z":-3670000000000000000}},"30006008":{"solarSystemId":30006008,"solarSystemName":"B:13EN","location":{"x":-19500000000000000000,"y":-800000000000000000,"z":-3370000000000000000}},"30006009":{"solarSystemId":30006009,"solarSystemName":"Z:150L","location":{"x":-19300000000000000000,"y":-854000000000000000,"z":-3060000000000000000}},"30006010":{"solarSystemId":30006010,"solarSystemName":"P:3SL4","location":{"x":-19500000000000000000,"y":-1040000000000000000,"z":-3230000000000000000}},"30006011":{"solarSystemId":30006011,"solarSystemName":"U:134K","location":{"x":-19500000000000000000,"y":-921000000000000000,"z":-3530000000000000000}},"30006012":{"solarSystemId":30006012,"solarSystemName":"Z:E806","location":{"x":-19600000000000000000,"y":-816000000000000000,"z":-3660000000000000000}},"30006013":{"solarSystemId":30006013,"solarSystemName":"D:17E2","location":{"x":-20100000000000000000,"y":-1100000000000000000,"z":-3950000000000000000}},"30006014":{"solarSystemId":30006014,"solarSystemName":"J:199K","location":{"x":-19800000000000000000,"y":-819000000000000000,"z":-3500000000000000000}},"30006015":{"solarSystemId":30006015,"solarSystemName":"Y:1175","location":{"x":-19400000000000000000,"y":-986000000000000000,"z":-3510000000000000000}},"30006016":{"solarSystemId":30006016,"solarSystemName":"Z:14OR","location":{"x":-19400000000000000000,"y":-946000000000000000,"z":-3220000000000000000}},"30006017":{"solarSystemId":30006017,"solarSystemName":"J:SV77","location":{"x":-19700000000000000000,"y":-912000000000000000,"z":-3190000000000000000}},"30006018":{"solarSystemId":30006018,"solarSystemName":"U:3VV3","location":{"x":-20100000000000000000,"y":-992000000000000000,"z":-3760000000000000000}},"30006019":{"solarSystemId":30006019,"solarSystemName":"D:286T","location":{"x":-19300000000000000000,"y":-589000000000000000,"z":-3290000000000000000}},"30006020":{"solarSystemId":30006020,"solarSystemName":"Y:V671","location":{"x":-20100000000000000000,"y":-1300000000000000000,"z":-3990000000000000000}},"30006021":{"solarSystemId":30006021,"solarSystemName":"Z:3O6E","location":{"x":-21600000000000000000,"y":151000000000000000,"z":-2120000000000000000}},"30006022":{"solarSystemId":30006022,"solarSystemName":"G:TSL8","location":{"x":-21100000000000000000,"y":303000000000000000,"z":-1360000000000000000}},"30006023":{"solarSystemId":30006023,"solarSystemName":"Z:K6SA","location":{"x":-21900000000000000000,"y":-353000000000000000,"z":-928000000000000000}},"30006024":{"solarSystemId":30006024,"solarSystemName":"J:1VRN","location":{"x":-20700000000000000000,"y":173000000000000000,"z":-1600000000000000000}},"30006025":{"solarSystemId":30006025,"solarSystemName":"G:27V9","location":{"x":-21500000000000000000,"y":490000000000000000,"z":-808000000000000000}},"30006026":{"solarSystemId":30006026,"solarSystemName":"G:EOLE","location":{"x":-20400000000000000000,"y":482000000000000000,"z":-2110000000000000000}},"30006027":{"solarSystemId":30006027,"solarSystemName":"U:VS9E","location":{"x":-20900000000000000000,"y":624000000000000000,"z":-1550000000000000000}},"30006028":{"solarSystemId":30006028,"solarSystemName":"J:1ALR","location":{"x":-21400000000000000000,"y":776000000000000000,"z":-1370000000000000000}},"30006029":{"solarSystemId":30006029,"solarSystemName":"D:RTS4","location":{"x":-21900000000000000000,"y":764000000000000000,"z":-1780000000000000000}},"30006030":{"solarSystemId":30006030,"solarSystemName":"H:NR3T","location":{"x":-20600000000000000000,"y":601000000000000000,"z":-1600000000000000000}},"30006031":{"solarSystemId":30006031,"solarSystemName":"D:LRR8","location":{"x":-22400000000000000000,"y":1500000000000000000,"z":-1900000000000000000}},"30006032":{"solarSystemId":30006032,"solarSystemName":"G:4VLK","location":{"x":-20800000000000000000,"y":177000000000000000,"z":-1840000000000000000}},"30006033":{"solarSystemId":30006033,"solarSystemName":"Y:LS8V","location":{"x":-22100000000000000000,"y":146000000000000000,"z":-2570000000000000000}},"30006034":{"solarSystemId":30006034,"solarSystemName":"H:I9AR","location":{"x":-20600000000000000000,"y":215000000000000000,"z":-2010000000000000000}},"30006035":{"solarSystemId":30006035,"solarSystemName":"Y:12SI","location":{"x":-19900000000000000000,"y":-523000000000000000,"z":-2720000000000000000}},"30006036":{"solarSystemId":30006036,"solarSystemName":"M:1945","location":{"x":-20700000000000000000,"y":-838000000000000000,"z":-2530000000000000000}},"30006037":{"solarSystemId":30006037,"solarSystemName":"P:1IAK","location":{"x":-19600000000000000000,"y":-812000000000000000,"z":-2800000000000000000}},"30006038":{"solarSystemId":30006038,"solarSystemName":"G:18E5","location":{"x":-20200000000000000000,"y":-341000000000000000,"z":-2530000000000000000}},"30006039":{"solarSystemId":30006039,"solarSystemName":"D:2453","location":{"x":-20500000000000000000,"y":-355000000000000000,"z":-2520000000000000000}},"30006040":{"solarSystemId":30006040,"solarSystemName":"F:205T","location":{"x":-20500000000000000000,"y":-959000000000000000,"z":-2210000000000000000}},"30006041":{"solarSystemId":30006041,"solarSystemName":"Z:1690","location":{"x":-20000000000000000000,"y":-323000000000000000,"z":-2680000000000000000}},"30006042":{"solarSystemId":30006042,"solarSystemName":"G:36O0","location":{"x":-20500000000000000000,"y":-1190000000000000000,"z":-2230000000000000000}},"30006043":{"solarSystemId":30006043,"solarSystemName":"P:TE61","location":{"x":-20000000000000000000,"y":-853000000000000000,"z":-2400000000000000000}},"30006044":{"solarSystemId":30006044,"solarSystemName":"U:138O","location":{"x":-19800000000000000000,"y":-741000000000000000,"z":-2170000000000000000}},"30006045":{"solarSystemId":30006045,"solarSystemName":"U:15IT","location":{"x":-20400000000000000000,"y":-913000000000000000,"z":-2350000000000000000}},"30006046":{"solarSystemId":30006046,"solarSystemName":"U:K442","location":{"x":-20100000000000000000,"y":-676000000000000000,"z":-2560000000000000000}},"30006047":{"solarSystemId":30006047,"solarSystemName":"Y:T27K","location":{"x":-20300000000000000000,"y":-673000000000000000,"z":-2400000000000000000}},"30006048":{"solarSystemId":30006048,"solarSystemName":"Z:1089","location":{"x":-19600000000000000000,"y":-625000000000000000,"z":-2740000000000000000}},"30006049":{"solarSystemId":30006049,"solarSystemName":"P:K76K","location":{"x":-20100000000000000000,"y":-833000000000000000,"z":-2550000000000000000}},"30006050":{"solarSystemId":30006050,"solarSystemName":"B:11LN","location":{"x":-20500000000000000000,"y":16300000000000000,"z":-2530000000000000000}},"30006051":{"solarSystemId":30006051,"solarSystemName":"P:KK20","location":{"x":-20000000000000000000,"y":-494000000000000000,"z":-2630000000000000000}},"30006052":{"solarSystemId":30006052,"solarSystemName":"H:20KV","location":{"x":-20700000000000000000,"y":-609000000000000000,"z":-3170000000000000000}},"30006053":{"solarSystemId":30006053,"solarSystemName":"F:34V5","location":{"x":-20500000000000000000,"y":-613000000000000000,"z":-3360000000000000000}},"30006054":{"solarSystemId":30006054,"solarSystemName":"G:L2O8","location":{"x":-20500000000000000000,"y":-883000000000000000,"z":-3180000000000000000}},"30006055":{"solarSystemId":30006055,"solarSystemName":"J:10O7","location":{"x":-20500000000000000000,"y":-943000000000000000,"z":-3240000000000000000}},"30006056":{"solarSystemId":30006056,"solarSystemName":"G:KTVN","location":{"x":-20700000000000000000,"y":-645000000000000000,"z":-3030000000000000000}},"30006057":{"solarSystemId":30006057,"solarSystemName":"Z:28O9","location":{"x":-20600000000000000000,"y":-615000000000000000,"z":-3320000000000000000}},"30006058":{"solarSystemId":30006058,"solarSystemName":"D:191R","location":{"x":-20500000000000000000,"y":-757000000000000000,"z":-3420000000000000000}},"30006059":{"solarSystemId":30006059,"solarSystemName":"D:S150","location":{"x":-20500000000000000000,"y":-570000000000000000,"z":-3220000000000000000}},"30006060":{"solarSystemId":30006060,"solarSystemName":"U:NN0S","location":{"x":-20700000000000000000,"y":-555000000000000000,"z":-3040000000000000000}},"30006061":{"solarSystemId":30006061,"solarSystemName":"G:15T5","location":{"x":-20600000000000000000,"y":-698000000000000000,"z":-3310000000000000000}},"30006062":{"solarSystemId":30006062,"solarSystemName":"D:V7VK","location":{"x":-20400000000000000000,"y":-955000000000000000,"z":-3210000000000000000}},"30006063":{"solarSystemId":30006063,"solarSystemName":"G:1009","location":{"x":-20500000000000000000,"y":-980000000000000000,"z":-3200000000000000000}},"30006064":{"solarSystemId":30006064,"solarSystemName":"Q:19K7","location":{"x":-20800000000000000000,"y":-560000000000000000,"z":-3190000000000000000}},"30006065":{"solarSystemId":30006065,"solarSystemName":"G:19SL","location":{"x":-20800000000000000000,"y":-923000000000000000,"z":-3220000000000000000}},"30006066":{"solarSystemId":30006066,"solarSystemName":"D:L467","location":{"x":-20600000000000000000,"y":-762000000000000000,"z":-3190000000000000000}},"30006067":{"solarSystemId":30006067,"solarSystemName":"J:16N8","location":{"x":-20500000000000000000,"y":-899000000000000000,"z":-3190000000000000000}},"30006068":{"solarSystemId":30006068,"solarSystemName":"G:1A71","location":{"x":-20800000000000000000,"y":-706000000000000000,"z":-2940000000000000000}},"30006069":{"solarSystemId":30006069,"solarSystemName":"B:TAT3","location":{"x":-20700000000000000000,"y":-491000000000000000,"z":-2880000000000000000}},"30006070":{"solarSystemId":30006070,"solarSystemName":"B:14R2","location":{"x":-21100000000000000000,"y":-299000000000000000,"z":-3150000000000000000}},"30006071":{"solarSystemId":30006071,"solarSystemName":"H:O82I","location":{"x":-20600000000000000000,"y":-370000000000000000,"z":-3150000000000000000}},"30006072":{"solarSystemId":30006072,"solarSystemName":"B:O3R4","location":{"x":-20600000000000000000,"y":-588000000000000000,"z":-2860000000000000000}},"30006073":{"solarSystemId":30006073,"solarSystemName":"Z:1879","location":{"x":-20900000000000000000,"y":-350000000000000000,"z":-3240000000000000000}},"30006074":{"solarSystemId":30006074,"solarSystemName":"G:46K5","location":{"x":-21000000000000000000,"y":-281000000000000000,"z":-2970000000000000000}},"30006075":{"solarSystemId":30006075,"solarSystemName":"D:1I89","location":{"x":-20700000000000000000,"y":-410000000000000000,"z":-2850000000000000000}},"30006076":{"solarSystemId":30006076,"solarSystemName":"Z:1704","location":{"x":-20800000000000000000,"y":-389000000000000000,"z":-3000000000000000000}},"30006077":{"solarSystemId":30006077,"solarSystemName":"Z:LV47","location":{"x":-21100000000000000000,"y":-544000000000000000,"z":-3050000000000000000}},"30006078":{"solarSystemId":30006078,"solarSystemName":"H:12NR","location":{"x":-20800000000000000000,"y":-343000000000000000,"z":-3160000000000000000}},"30006079":{"solarSystemId":30006079,"solarSystemName":"B:19LV","location":{"x":-20900000000000000000,"y":-273000000000000000,"z":-3120000000000000000}},"30006080":{"solarSystemId":30006080,"solarSystemName":"G:19RO","location":{"x":-20900000000000000000,"y":-327000000000000000,"z":-2790000000000000000}},"30006081":{"solarSystemId":30006081,"solarSystemName":"M:R840","location":{"x":-20700000000000000000,"y":-399000000000000000,"z":-3040000000000000000}},"30006082":{"solarSystemId":30006082,"solarSystemName":"J:1400","location":{"x":-20600000000000000000,"y":-450000000000000000,"z":-3070000000000000000}},"30006083":{"solarSystemId":30006083,"solarSystemName":"Z:10AT","location":{"x":-20900000000000000000,"y":-401000000000000000,"z":-3130000000000000000}},"30006084":{"solarSystemId":30006084,"solarSystemName":"F:2EKI","location":{"x":-20800000000000000000,"y":-439000000000000000,"z":-3860000000000000000}},"30006085":{"solarSystemId":30006085,"solarSystemName":"Z:10ES","location":{"x":-21300000000000000000,"y":-160000000000000000,"z":-3460000000000000000}},"30006086":{"solarSystemId":30006086,"solarSystemName":"Z:143T","location":{"x":-21000000000000000000,"y":-308000000000000000,"z":-3650000000000000000}},"30006087":{"solarSystemId":30006087,"solarSystemName":"M:S27K","location":{"x":-21200000000000000000,"y":-473000000000000000,"z":-3920000000000000000}},"30006088":{"solarSystemId":30006088,"solarSystemName":"U:1935","location":{"x":-21100000000000000000,"y":-301000000000000000,"z":-3850000000000000000}},"30006089":{"solarSystemId":30006089,"solarSystemName":"G:R8IA","location":{"x":-20900000000000000000,"y":-311000000000000000,"z":-3790000000000000000}},"30006090":{"solarSystemId":30006090,"solarSystemName":"B:12NS","location":{"x":-21300000000000000000,"y":-68000000000000000,"z":-3770000000000000000}},"30006091":{"solarSystemId":30006091,"solarSystemName":"Q:12E5","location":{"x":-21300000000000000000,"y":-134000000000000000,"z":-3710000000000000000}},"30006092":{"solarSystemId":30006092,"solarSystemName":"G:I2I0","location":{"x":-21200000000000000000,"y":-416000000000000000,"z":-3880000000000000000}},"30006093":{"solarSystemId":30006093,"solarSystemName":"B:1614","location":{"x":-20900000000000000000,"y":-383000000000000000,"z":-3870000000000000000}},"30006094":{"solarSystemId":30006094,"solarSystemName":"H:1KT7","location":{"x":-21300000000000000000,"y":-159000000000000000,"z":-3730000000000000000}},"30006095":{"solarSystemId":30006095,"solarSystemName":"H:14L2","location":{"x":-21000000000000000000,"y":-387000000000000000,"z":-3880000000000000000}},"30006096":{"solarSystemId":30006096,"solarSystemName":"D:NR0T","location":{"x":-20900000000000000000,"y":-437000000000000000,"z":-3880000000000000000}},"30006097":{"solarSystemId":30006097,"solarSystemName":"H:10AO","location":{"x":-21000000000000000000,"y":-301000000000000000,"z":-3870000000000000000}},"30006098":{"solarSystemId":30006098,"solarSystemName":"Q:169T","location":{"x":-21000000000000000000,"y":-369000000000000000,"z":-3810000000000000000}},"30006099":{"solarSystemId":30006099,"solarSystemName":"P:1O0L","location":{"x":-21000000000000000000,"y":-352000000000000000,"z":-3800000000000000000}},"30006100":{"solarSystemId":30006100,"solarSystemName":"U:L6T5","location":{"x":-21300000000000000000,"y":-188000000000000000,"z":-3800000000000000000}},"30006101":{"solarSystemId":30006101,"solarSystemName":"D:13KR","location":{"x":-21300000000000000000,"y":-29500000000000000,"z":-3770000000000000000}},"30006102":{"solarSystemId":30006102,"solarSystemName":"G:T120","location":{"x":-20700000000000000000,"y":-354000000000000000,"z":-3790000000000000000}},"30006103":{"solarSystemId":30006103,"solarSystemName":"M:195I","location":{"x":-20200000000000000000,"y":-1070000000000000000,"z":-3230000000000000000}},"30006104":{"solarSystemId":30006104,"solarSystemName":"U:150S","location":{"x":-20300000000000000000,"y":-772000000000000000,"z":-3240000000000000000}},"30006105":{"solarSystemId":30006105,"solarSystemName":"P:434S","location":{"x":-20300000000000000000,"y":-797000000000000000,"z":-3190000000000000000}},"30006106":{"solarSystemId":30006106,"solarSystemName":"H:1189","location":{"x":-20100000000000000000,"y":-961000000000000000,"z":-3090000000000000000}},"30006107":{"solarSystemId":30006107,"solarSystemName":"F:13AT","location":{"x":-19900000000000000000,"y":-751000000000000000,"z":-3380000000000000000}},"30006108":{"solarSystemId":30006108,"solarSystemName":"Q:157I","location":{"x":-20100000000000000000,"y":-927000000000000000,"z":-3270000000000000000}},"30006109":{"solarSystemId":30006109,"solarSystemName":"J:1666","location":{"x":-20300000000000000000,"y":-851000000000000000,"z":-3220000000000000000}},"30006110":{"solarSystemId":30006110,"solarSystemName":"B:2T6E","location":{"x":-19900000000000000000,"y":-1130000000000000000,"z":-3340000000000000000}},"30006111":{"solarSystemId":30006111,"solarSystemName":"F:T03I","location":{"x":-20100000000000000000,"y":-701000000000000000,"z":-3150000000000000000}},"30006112":{"solarSystemId":30006112,"solarSystemName":"G:10TL","location":{"x":-20200000000000000000,"y":-1150000000000000000,"z":-3310000000000000000}},"30006113":{"solarSystemId":30006113,"solarSystemName":"F:1980","location":{"x":-20000000000000000000,"y":-829000000000000000,"z":-3590000000000000000}},"30006114":{"solarSystemId":30006114,"solarSystemName":"G:1ASR","location":{"x":-20100000000000000000,"y":-923000000000000000,"z":-3330000000000000000}},"30006115":{"solarSystemId":30006115,"solarSystemName":"Z:17AN","location":{"x":-20200000000000000000,"y":-965000000000000000,"z":-3010000000000000000}},"30006116":{"solarSystemId":30006116,"solarSystemName":"D:173N","location":{"x":-20300000000000000000,"y":-939000000000000000,"z":-3440000000000000000}},"30006117":{"solarSystemId":30006117,"solarSystemName":"G:14RS","location":{"x":-20000000000000000000,"y":-1020000000000000000,"z":-3080000000000000000}},"30006118":{"solarSystemId":30006118,"solarSystemName":"G:13NI","location":{"x":-20200000000000000000,"y":-1090000000000000000,"z":-3550000000000000000}},"30006119":{"solarSystemId":30006119,"solarSystemName":"P:TRSK","location":{"x":-21200000000000000000,"y":-1080000000000000000,"z":-3140000000000000000}},"30006120":{"solarSystemId":30006120,"solarSystemName":"Q:1A2V","location":{"x":-20700000000000000000,"y":-852000000000000000,"z":-2890000000000000000}},"30006121":{"solarSystemId":30006121,"solarSystemName":"D:15R9","location":{"x":-21000000000000000000,"y":-985000000000000000,"z":-2950000000000000000}},"30006122":{"solarSystemId":30006122,"solarSystemName":"Q:12LS","location":{"x":-20900000000000000000,"y":-816000000000000000,"z":-3050000000000000000}},"30006123":{"solarSystemId":30006123,"solarSystemName":"Q:14NR","location":{"x":-21200000000000000000,"y":-880000000000000000,"z":-2950000000000000000}},"30006124":{"solarSystemId":30006124,"solarSystemName":"G:SOEO","location":{"x":-20800000000000000000,"y":-979000000000000000,"z":-3310000000000000000}},"30006125":{"solarSystemId":30006125,"solarSystemName":"G:10S7","location":{"x":-20800000000000000000,"y":-1070000000000000000,"z":-3340000000000000000}},"30006126":{"solarSystemId":30006126,"solarSystemName":"Q:1786","location":{"x":-21200000000000000000,"y":-1350000000000000000,"z":-3040000000000000000}},"30006127":{"solarSystemId":30006127,"solarSystemName":"Y:S080","location":{"x":-21100000000000000000,"y":-681000000000000000,"z":-3320000000000000000}},"30006128":{"solarSystemId":30006128,"solarSystemName":"D:2STK","location":{"x":-21100000000000000000,"y":-809000000000000000,"z":-2720000000000000000}},"30006129":{"solarSystemId":30006129,"solarSystemName":"Y:L4O7","location":{"x":-21300000000000000000,"y":-836000000000000000,"z":-2930000000000000000}},"30006130":{"solarSystemId":30006130,"solarSystemName":"Z:1134","location":{"x":-21000000000000000000,"y":-1140000000000000000,"z":-3050000000000000000}},"30006131":{"solarSystemId":30006131,"solarSystemName":"J:TLL7","location":{"x":-20900000000000000000,"y":-887000000000000000,"z":-2770000000000000000}},"30006132":{"solarSystemId":30006132,"solarSystemName":"D:1IE5","location":{"x":-21200000000000000000,"y":-945000000000000000,"z":-3100000000000000000}},"30006133":{"solarSystemId":30006133,"solarSystemName":"F:1A81","location":{"x":-20700000000000000000,"y":-721000000000000000,"z":-2840000000000000000}},"30006134":{"solarSystemId":30006134,"solarSystemName":"J:170I","location":{"x":-20600000000000000000,"y":-830000000000000000,"z":-2870000000000000000}},"30006135":{"solarSystemId":30006135,"solarSystemName":"P:10SS","location":{"x":-21100000000000000000,"y":-963000000000000000,"z":-3110000000000000000}},"30006136":{"solarSystemId":30006136,"solarSystemName":"D:L7T5","location":{"x":-21500000000000000000,"y":-924000000000000000,"z":-2920000000000000000}},"30006137":{"solarSystemId":30006137,"solarSystemName":"Z:18LI","location":{"x":-21100000000000000000,"y":-513000000000000000,"z":-3210000000000000000}},"30006138":{"solarSystemId":30006138,"solarSystemName":"P:11N2","location":{"x":-28200000000000000000,"y":-856000000000000000,"z":6930000000000000000}},"30006139":{"solarSystemId":30006139,"solarSystemName":"B:2S4I","location":{"x":-27100000000000000000,"y":-652000000000000000,"z":5670000000000000000}},"30006140":{"solarSystemId":30006140,"solarSystemName":"Y:TE02","location":{"x":-27700000000000000000,"y":-875000000000000000,"z":6290000000000000000}},"30006141":{"solarSystemId":30006141,"solarSystemName":"M:RLS1","location":{"x":-26200000000000000000,"y":-293000000000000000,"z":4960000000000000000}},"30006142":{"solarSystemId":30006142,"solarSystemName":"J:191N","location":{"x":-27000000000000000000,"y":-563000000000000000,"z":5790000000000000000}},"30006143":{"solarSystemId":30006143,"solarSystemName":"F:153R","location":{"x":-27600000000000000000,"y":-668000000000000000,"z":6090000000000000000}},"30006144":{"solarSystemId":30006144,"solarSystemName":"M:165E","location":{"x":-28200000000000000000,"y":-173000000000000000,"z":6100000000000000000}},"30006145":{"solarSystemId":30006145,"solarSystemName":"F:21R2","location":{"x":-25500000000000000000,"y":-306000000000000000,"z":4590000000000000000}},"30006146":{"solarSystemId":30006146,"solarSystemName":"Q:1057","location":{"x":-26000000000000000000,"y":-29800000000000000,"z":5000000000000000000}},"30006147":{"solarSystemId":30006147,"solarSystemName":"U:345E","location":{"x":-30000000000000000000,"y":-2170000000000000000,"z":4020000000000000000}},"30006148":{"solarSystemId":30006148,"solarSystemName":"J:2A7N","location":{"x":-30400000000000000000,"y":-116000000000000000,"z":5400000000000000000}},"30006149":{"solarSystemId":30006149,"solarSystemName":"F:OO88","location":{"x":-29900000000000000000,"y":-47400000000000000,"z":4760000000000000000}},"30006150":{"solarSystemId":30006150,"solarSystemName":"F:1AVL","location":{"x":-29800000000000000000,"y":-133000000000000000,"z":5300000000000000000}},"30006151":{"solarSystemId":30006151,"solarSystemName":"J:TVA8","location":{"x":-29100000000000000000,"y":-3680000000000000000,"z":5050000000000000000}},"30006152":{"solarSystemId":30006152,"solarSystemName":"Y:ISSK","location":{"x":-29500000000000000000,"y":-734000000000000000,"z":3800000000000000000}},"30006153":{"solarSystemId":30006153,"solarSystemName":"Q:S44V","location":{"x":-29600000000000000000,"y":229000000000000000,"z":5460000000000000000}},"30006154":{"solarSystemId":30006154,"solarSystemName":"Y:3S67","location":{"x":-29100000000000000000,"y":-215000000000000000,"z":5320000000000000000}},"30006155":{"solarSystemId":30006155,"solarSystemName":"D:10E4","location":{"x":-29600000000000000000,"y":-825000000000000000,"z":5400000000000000000}},"30006156":{"solarSystemId":30006156,"solarSystemName":"G:I77V","location":{"x":-26000000000000000000,"y":-970000000000000000,"z":7860000000000000000}},"30006157":{"solarSystemId":30006157,"solarSystemName":"Z:11A6","location":{"x":-28700000000000000000,"y":25000000000000000,"z":12700000000000000000}},"30006158":{"solarSystemId":30006158,"solarSystemName":"Z:1ASE","location":{"x":-31000000000000000000,"y":-1630000000000000000,"z":9660000000000000000}},"30006159":{"solarSystemId":30006159,"solarSystemName":"U:10K2","location":{"x":-30000000000000000000,"y":-1570000000000000000,"z":9200000000000000000}},"30006160":{"solarSystemId":30006160,"solarSystemName":"H:2810","location":{"x":-27100000000000000000,"y":-87100000000000000,"z":8750000000000000000}},"30006161":{"solarSystemId":30006161,"solarSystemName":"J:RI88","location":{"x":-26100000000000000000,"y":-705000000000000000,"z":8370000000000000000}},"30006162":{"solarSystemId":30006162,"solarSystemName":"Y:1L95","location":{"x":-26500000000000000000,"y":-401000000000000000,"z":10000000000000000000}},"30006163":{"solarSystemId":30006163,"solarSystemName":"P:1762","location":{"x":-27800000000000000000,"y":-497000000000000000,"z":9910000000000000000}},"30006164":{"solarSystemId":30006164,"solarSystemName":"Z:26IE","location":{"x":-24200000000000000000,"y":-864000000000000000,"z":8190000000000000000}},"30006165":{"solarSystemId":30006165,"solarSystemName":"J:IT1O","location":{"x":-24900000000000000000,"y":-569000000000000000,"z":7960000000000000000}},"30006166":{"solarSystemId":30006166,"solarSystemName":"U:153R","location":{"x":-23900000000000000000,"y":-523000000000000000,"z":7830000000000000000}},"30006167":{"solarSystemId":30006167,"solarSystemName":"H:17A5","location":{"x":-24000000000000000000,"y":-27800000000000000,"z":7350000000000000000}},"30006168":{"solarSystemId":30006168,"solarSystemName":"G:ARTR","location":{"x":-24800000000000000000,"y":-398000000000000000,"z":7720000000000000000}},"30006169":{"solarSystemId":30006169,"solarSystemName":"H:A9E0","location":{"x":-24500000000000000000,"y":-296000000000000000,"z":7050000000000000000}},"30006170":{"solarSystemId":30006170,"solarSystemName":"Q:S5LS","location":{"x":-24500000000000000000,"y":-383000000000000000,"z":8100000000000000000}},"30006171":{"solarSystemId":30006171,"solarSystemName":"G:1620","location":{"x":-24600000000000000000,"y":-502000000000000000,"z":7750000000000000000}},"30006172":{"solarSystemId":30006172,"solarSystemName":"B:RV82","location":{"x":-24400000000000000000,"y":-379000000000000000,"z":7130000000000000000}},"30006173":{"solarSystemId":30006173,"solarSystemName":"P:1TE8","location":{"x":-27100000000000000000,"y":-59400000000000000,"z":6890000000000000000}},"30006174":{"solarSystemId":30006174,"solarSystemName":"G:R99K","location":{"x":-26200000000000000000,"y":-454000000000000000,"z":7240000000000000000}},"30006175":{"solarSystemId":30006175,"solarSystemName":"D:5LRA","location":{"x":-27200000000000000000,"y":-166000000000000000,"z":7370000000000000000}},"30006176":{"solarSystemId":30006176,"solarSystemName":"Y:56LK","location":{"x":-27000000000000000000,"y":-286000000000000000,"z":6160000000000000000}},"30006177":{"solarSystemId":30006177,"solarSystemName":"H:1064","location":{"x":-26800000000000000000,"y":33500000000000000,"z":6930000000000000000}},"30006178":{"solarSystemId":30006178,"solarSystemName":"Z:T6AS","location":{"x":-26500000000000000000,"y":-498000000000000000,"z":7520000000000000000}},"30006179":{"solarSystemId":30006179,"solarSystemName":"F:SALE","location":{"x":-27100000000000000000,"y":-125000000000000000,"z":7110000000000000000}},"30006180":{"solarSystemId":30006180,"solarSystemName":"F:11S3","location":{"x":-27600000000000000000,"y":329000000000000000,"z":7010000000000000000}},"30006181":{"solarSystemId":30006181,"solarSystemName":"U:3153","location":{"x":-32500000000000000000,"y":123000000000000000,"z":4270000000000000000}},"30006182":{"solarSystemId":30006182,"solarSystemName":"B:2A6K","location":{"x":-30200000000000000000,"y":-142000000000000000,"z":3410000000000000000}},"30006183":{"solarSystemId":30006183,"solarSystemName":"M:1LV7","location":{"x":-30100000000000000000,"y":-247000000000000000,"z":3720000000000000000}},"30006184":{"solarSystemId":30006184,"solarSystemName":"Y:300L","location":{"x":-30300000000000000000,"y":-457000000000000000,"z":3710000000000000000}},"30006185":{"solarSystemId":30006185,"solarSystemName":"U:LVE7","location":{"x":-32100000000000000000,"y":-895000000000000000,"z":2430000000000000000}},"30006186":{"solarSystemId":30006186,"solarSystemName":"D:17I2","location":{"x":-31400000000000000000,"y":157000000000000000,"z":3210000000000000000}},"30006187":{"solarSystemId":30006187,"solarSystemName":"M:1446","location":{"x":-32400000000000000000,"y":-64700000000000000,"z":3740000000000000000}},"30006188":{"solarSystemId":30006188,"solarSystemName":"F:2T4A","location":{"x":-31400000000000000000,"y":-615000000000000000,"z":3120000000000000000}},"30006189":{"solarSystemId":30006189,"solarSystemName":"D:15O6","location":{"x":-31700000000000000000,"y":-563000000000000000,"z":3440000000000000000}},"30006190":{"solarSystemId":30006190,"solarSystemName":"M:12KL","location":{"x":-30100000000000000000,"y":-27200000000000000,"z":7120000000000000000}},"30006191":{"solarSystemId":30006191,"solarSystemName":"U:136V","location":{"x":-28600000000000000000,"y":-31500000000000000,"z":8460000000000000000}},"30006192":{"solarSystemId":30006192,"solarSystemName":"Y:V0L5","location":{"x":-30200000000000000000,"y":-295000000000000000,"z":7850000000000000000}},"30006193":{"solarSystemId":30006193,"solarSystemName":"H:4EAV","location":{"x":-29500000000000000000,"y":-79200000000000000,"z":8450000000000000000}},"30006194":{"solarSystemId":30006194,"solarSystemName":"Q:TK77","location":{"x":-29900000000000000000,"y":-217000000000000000,"z":7590000000000000000}},"30006195":{"solarSystemId":30006195,"solarSystemName":"B:R314","location":{"x":-28200000000000000000,"y":-291000000000000000,"z":7890000000000000000}},"30006196":{"solarSystemId":30006196,"solarSystemName":"G:1R3S","location":{"x":-29400000000000000000,"y":-127000000000000000,"z":7190000000000000000}},"30006197":{"solarSystemId":30006197,"solarSystemName":"H:3E9E","location":{"x":-16000000000000000000,"y":-129000000000000000,"z":-8450000000000000000}},"30006198":{"solarSystemId":30006198,"solarSystemName":"Z:2EK8","location":{"x":-16800000000000000000,"y":-136000000000000000,"z":-9330000000000000000}},"30006199":{"solarSystemId":30006199,"solarSystemName":"M:3O28","location":{"x":-16100000000000000000,"y":-575000000000000000,"z":-9230000000000000000}},"30006200":{"solarSystemId":30006200,"solarSystemName":"Q:IEO2","location":{"x":-15700000000000000000,"y":-828000000000000000,"z":-9590000000000000000}},"30006201":{"solarSystemId":30006201,"solarSystemName":"Z:LN00","location":{"x":-17100000000000000000,"y":-114000000000000000,"z":-9140000000000000000}},"30006202":{"solarSystemId":30006202,"solarSystemName":"Z:135K","location":{"x":-16300000000000000000,"y":-628000000000000000,"z":-9490000000000000000}},"30006203":{"solarSystemId":30006203,"solarSystemName":"J:11S3","location":{"x":-16100000000000000000,"y":-859000000000000000,"z":-8460000000000000000}},"30006204":{"solarSystemId":30006204,"solarSystemName":"D:1AR5","location":{"x":-15400000000000000000,"y":-728000000000000000,"z":-9540000000000000000}},"30006205":{"solarSystemId":30006205,"solarSystemName":"M:4S10","location":{"x":-15900000000000000000,"y":-1190000000000000000,"z":-8560000000000000000}},"30006206":{"solarSystemId":30006206,"solarSystemName":"B:23A5","location":{"x":-16900000000000000000,"y":-43200000000000000,"z":-8500000000000000000}},"30006207":{"solarSystemId":30006207,"solarSystemName":"Y:2650","location":{"x":-16300000000000000000,"y":-371000000000000000,"z":-8250000000000000000}},"30006208":{"solarSystemId":30006208,"solarSystemName":"U:LS18","location":{"x":-16000000000000000000,"y":15800000000000000,"z":-8830000000000000000}},"30006209":{"solarSystemId":30006209,"solarSystemName":"Q:39N0","location":{"x":-15800000000000000000,"y":-399000000000000000,"z":-8120000000000000000}},"30006210":{"solarSystemId":30006210,"solarSystemName":"U:2LO7","location":{"x":-15700000000000000000,"y":611000000000000000,"z":-9190000000000000000}},"30006211":{"solarSystemId":30006211,"solarSystemName":"P:3713","location":{"x":-16600000000000000000,"y":-511000000000000000,"z":-9380000000000000000}},"30006212":{"solarSystemId":30006212,"solarSystemName":"F:ALN3","location":{"x":-15300000000000000000,"y":-174000000000000000,"z":-9700000000000000000}},"30006213":{"solarSystemId":30006213,"solarSystemName":"B:33V7","location":{"x":-16000000000000000000,"y":-74600000000000000,"z":-8930000000000000000}},"30006214":{"solarSystemId":30006214,"solarSystemName":"U:3E30","location":{"x":-18400000000000000000,"y":1450000000000000000,"z":-13300000000000000000}},"30006215":{"solarSystemId":30006215,"solarSystemName":"Y:34I2","location":{"x":-16800000000000000000,"y":3000000000000000000,"z":-12100000000000000000}},"30006216":{"solarSystemId":30006216,"solarSystemName":"F:30I5","location":{"x":-17400000000000000000,"y":2830000000000000000,"z":-13500000000000000000}},"30006217":{"solarSystemId":30006217,"solarSystemName":"M:2T24","location":{"x":-16700000000000000000,"y":3080000000000000000,"z":-13200000000000000000}},"30006218":{"solarSystemId":30006218,"solarSystemName":"U:TKL6","location":{"x":-17700000000000000000,"y":1920000000000000000,"z":-13300000000000000000}},"30006219":{"solarSystemId":30006219,"solarSystemName":"H:2262","location":{"x":-18100000000000000000,"y":968000000000000000,"z":-13700000000000000000}},"30006220":{"solarSystemId":30006220,"solarSystemName":"F:K73K","location":{"x":-16900000000000000000,"y":1600000000000000000,"z":-15000000000000000000}},"30006221":{"solarSystemId":30006221,"solarSystemName":"M:1276","location":{"x":-16300000000000000000,"y":1770000000000000000,"z":-13800000000000000000}},"30006222":{"solarSystemId":30006222,"solarSystemName":"H:1K9E","location":{"x":-16700000000000000000,"y":1130000000000000000,"z":-13500000000000000000}},"30006223":{"solarSystemId":30006223,"solarSystemName":"Z:VK6I","location":{"x":-18000000000000000000,"y":1470000000000000000,"z":-12800000000000000000}},"30006224":{"solarSystemId":30006224,"solarSystemName":"M:2SI7","location":{"x":-15500000000000000000,"y":1640000000000000000,"z":-9530000000000000000}},"30006225":{"solarSystemId":30006225,"solarSystemName":"Z:2O7N","location":{"x":-15900000000000000000,"y":1970000000000000000,"z":-11800000000000000000}},"30006226":{"solarSystemId":30006226,"solarSystemName":"Q:12E1","location":{"x":-16100000000000000000,"y":1620000000000000000,"z":-10900000000000000000}},"30006227":{"solarSystemId":30006227,"solarSystemName":"D:203O","location":{"x":-17500000000000000000,"y":1780000000000000000,"z":-10400000000000000000}},"30006228":{"solarSystemId":30006228,"solarSystemName":"M:N910","location":{"x":-16300000000000000000,"y":1520000000000000000,"z":-9400000000000000000}},"30006229":{"solarSystemId":30006229,"solarSystemName":"J:3V86","location":{"x":-17000000000000000000,"y":1270000000000000000,"z":-10700000000000000000}},"30006230":{"solarSystemId":30006230,"solarSystemName":"M:14T4","location":{"x":-16100000000000000000,"y":2510000000000000000,"z":-10000000000000000000}},"30006231":{"solarSystemId":30006231,"solarSystemName":"P:3332","location":{"x":-16100000000000000000,"y":2260000000000000000,"z":-9050000000000000000}},"30006232":{"solarSystemId":30006232,"solarSystemName":"D:3I59","location":{"x":-16200000000000000000,"y":1500000000000000000,"z":-9850000000000000000}},"30006233":{"solarSystemId":30006233,"solarSystemName":"D:2E5S","location":{"x":-16300000000000000000,"y":2520000000000000000,"z":-10400000000000000000}},"30006234":{"solarSystemId":30006234,"solarSystemName":"Q:15V2","location":{"x":-15400000000000000000,"y":1610000000000000000,"z":-11200000000000000000}},"30006235":{"solarSystemId":30006235,"solarSystemName":"P:37A0","location":{"x":-18200000000000000000,"y":10500000000000000000,"z":-4420000000000000000}},"30006236":{"solarSystemId":30006236,"solarSystemName":"H:2VLE","location":{"x":-17100000000000000000,"y":8240000000000000000,"z":-9010000000000000000}},"30006237":{"solarSystemId":30006237,"solarSystemName":"H:2SVS","location":{"x":-17500000000000000000,"y":3080000000000000000,"z":-7530000000000000000}},"30006238":{"solarSystemId":30006238,"solarSystemName":"Y:27EA","location":{"x":-16700000000000000000,"y":5530000000000000000,"z":-12500000000000000000}},"30006239":{"solarSystemId":30006239,"solarSystemName":"U:16VS","location":{"x":-21200000000000000000,"y":6040000000000000000,"z":-8700000000000000000}},"30006240":{"solarSystemId":30006240,"solarSystemName":"Z:36RN","location":{"x":-15200000000000000000,"y":-2750000000000000000,"z":-7030000000000000000}},"30006241":{"solarSystemId":30006241,"solarSystemName":"Y:102T","location":{"x":-15500000000000000000,"y":-494000000000000000,"z":-7580000000000000000}},"30006242":{"solarSystemId":30006242,"solarSystemName":"D:120E","location":{"x":-15600000000000000000,"y":-2670000000000000000,"z":-7060000000000000000}},"30006243":{"solarSystemId":30006243,"solarSystemName":"P:O2O0","location":{"x":-15700000000000000000,"y":-1380000000000000000,"z":-7590000000000000000}},"30006244":{"solarSystemId":30006244,"solarSystemName":"U:351N","location":{"x":-16000000000000000000,"y":-577000000000000000,"z":-7200000000000000000}},"30006245":{"solarSystemId":30006245,"solarSystemName":"J:2L34","location":{"x":-16500000000000000000,"y":-600000000000000000,"z":-7090000000000000000}},"30006246":{"solarSystemId":30006246,"solarSystemName":"G:18R7","location":{"x":-15300000000000000000,"y":-635000000000000000,"z":-7780000000000000000}},"30006247":{"solarSystemId":30006247,"solarSystemName":"Y:24RO","location":{"x":-15300000000000000000,"y":-589000000000000000,"z":-6970000000000000000}},"30006248":{"solarSystemId":30006248,"solarSystemName":"F:O6IE","location":{"x":-15700000000000000000,"y":-1530000000000000000,"z":-7640000000000000000}},"30006249":{"solarSystemId":30006249,"solarSystemName":"F:V82A","location":{"x":-16400000000000000000,"y":-406000000000000000,"z":-7310000000000000000}},"30006250":{"solarSystemId":30006250,"solarSystemName":"Z:3E6L","location":{"x":-15500000000000000000,"y":-626000000000000000,"z":-6960000000000000000}},"30006251":{"solarSystemId":30006251,"solarSystemName":"J:1EOV","location":{"x":-14800000000000000000,"y":-1800000000000000000,"z":-6990000000000000000}},"30006252":{"solarSystemId":30006252,"solarSystemName":"F:1R0E","location":{"x":-16100000000000000000,"y":57400000000000000,"z":-6970000000000000000}},"30006253":{"solarSystemId":30006253,"solarSystemName":"D:1NTI","location":{"x":-15300000000000000000,"y":-1630000000000000000,"z":-8290000000000000000}},"30006254":{"solarSystemId":30006254,"solarSystemName":"Y:366S","location":{"x":-15200000000000000000,"y":688730000000000,"z":-6850000000000000000}},"30006255":{"solarSystemId":30006255,"solarSystemName":"G:335V","location":{"x":-15600000000000000000,"y":-2690000000000000000,"z":-8070000000000000000}},"30006256":{"solarSystemId":30006256,"solarSystemName":"Z:2860","location":{"x":-15800000000000000000,"y":-2370000000000000000,"z":-7050000000000000000}},"30006257":{"solarSystemId":30006257,"solarSystemName":"M:38AT","location":{"x":-15000000000000000000,"y":-205000000000000000,"z":-6540000000000000000}},"30006258":{"solarSystemId":30006258,"solarSystemName":"F:E598","location":{"x":-16000000000000000000,"y":-1510000000000000000,"z":-8290000000000000000}},"30006259":{"solarSystemId":30006259,"solarSystemName":"H.BMK.XLD","location":{"x":-35200000000000000000,"y":-557000000000000000,"z":-136000000000000000}},"30006260":{"solarSystemId":30006260,"solarSystemName":"U.ZCK.M0P","location":{"x":-35200000000000000000,"y":-649000000000000000,"z":-38800000000000000}},"30006261":{"solarSystemId":30006261,"solarSystemName":"D.TDE.DLF","location":{"x":-36300000000000000000,"y":-773000000000000000,"z":172000000000000000}},"30006262":{"solarSystemId":30006262,"solarSystemName":"A.G2K.J2M","location":{"x":-34700000000000000000,"y":-616000000000000000,"z":18300000000000000}},"30006263":{"solarSystemId":30006263,"solarSystemName":"B.FEW.9XH","location":{"x":-34600000000000000000,"y":-894000000000000000,"z":-397000000000000000}},"30006264":{"solarSystemId":30006264,"solarSystemName":"C.BSK.J81","location":{"x":-35000000000000000000,"y":-1470000000000000000,"z":-65900000000000000}},"30006265":{"solarSystemId":30006265,"solarSystemName":"O.VXK.JH2","location":{"x":-35500000000000000000,"y":-100000000000000000,"z":-221000000000000000}},"30006266":{"solarSystemId":30006266,"solarSystemName":"B.BRK.9C3","location":{"x":-35100000000000000000,"y":-126000000000000000,"z":880000000000000000}},"30006267":{"solarSystemId":30006267,"solarSystemName":"D.741.20N","location":{"x":-41800000000000000000,"y":-432000000000000000,"z":-932000000000000000}},"30006268":{"solarSystemId":30006268,"solarSystemName":"A.531.Z62","location":{"x":-40500000000000000000,"y":-2550000000000000000,"z":222000000000000000}},"30006269":{"solarSystemId":30006269,"solarSystemName":"I.941.Z82","location":{"x":-41800000000000000000,"y":-2630000000000000000,"z":-1660000000000000000}},"30006270":{"solarSystemId":30006270,"solarSystemName":"T.841.PJT","location":{"x":-41800000000000000000,"y":-425000000000000000,"z":-1040000000000000000}},"30006271":{"solarSystemId":30006271,"solarSystemName":"L.C11.DM3","location":{"x":-38600000000000000000,"y":-4090000000000000000,"z":1850000000000000000}},"30006272":{"solarSystemId":30006272,"solarSystemName":"C.H31.2L1","location":{"x":-41200000000000000000,"y":-1660000000000000000,"z":-2170000000000000000}},"30006273":{"solarSystemId":30006273,"solarSystemName":"M.E21.8BY","location":{"x":-40300000000000000000,"y":-998000000000000000,"z":-878000000000000000}},"30006274":{"solarSystemId":30006274,"solarSystemName":"C.S31.NNK","location":{"x":-40700000000000000000,"y":-1090000000000000000,"z":-1350000000000000000}},"30006275":{"solarSystemId":30006275,"solarSystemName":"I.08E.428","location":{"x":-36000000000000000000,"y":-291000000000000000,"z":2180000000000000000}},"30006276":{"solarSystemId":30006276,"solarSystemName":"H.501.LSS","location":{"x":-37100000000000000000,"y":-372000000000000000,"z":1540000000000000000}},"30006277":{"solarSystemId":30006277,"solarSystemName":"A.1WK.2D2","location":{"x":-35600000000000000000,"y":-89000000000000000,"z":2290000000000000000}},"30006278":{"solarSystemId":30006278,"solarSystemName":"C.QLK.8QB","location":{"x":-35100000000000000000,"y":-815000000000000000,"z":2280000000000000000}},"30006279":{"solarSystemId":30006279,"solarSystemName":"C.RTK.G5S","location":{"x":-35000000000000000000,"y":11500000000000000,"z":1760000000000000000}},"30006280":{"solarSystemId":30006280,"solarSystemName":"M.N9E.X6M","location":{"x":-36100000000000000000,"y":-620000000000000000,"z":957000000000000000}},"30006281":{"solarSystemId":30006281,"solarSystemName":"M.JNE.Q7V","location":{"x":-36200000000000000000,"y":-693000000000000000,"z":607000000000000000}},"30006282":{"solarSystemId":30006282,"solarSystemName":"Resurrection","location":{"x":-35600000000000000000,"y":-225000000000000000,"z":2340000000000000000}},"30006283":{"solarSystemId":30006283,"solarSystemName":"U.E21.TG7","location":{"x":-40300000000000000000,"y":-278000000000000000,"z":3340000000000000000}},"30006284":{"solarSystemId":30006284,"solarSystemName":"L.K31.4Z2","location":{"x":-41400000000000000000,"y":104000000000000000,"z":2080000000000000000}},"30006285":{"solarSystemId":30006285,"solarSystemName":"M.L41.309","location":{"x":-42000000000000000000,"y":-324000000000000000,"z":3960000000000000000}},"30006286":{"solarSystemId":30006286,"solarSystemName":"O.J11.23Q","location":{"x":-39000000000000000000,"y":-724000000000000000,"z":2310000000000000000}},"30006287":{"solarSystemId":30006287,"solarSystemName":"M.M11.TSF","location":{"x":-38700000000000000000,"y":-768000000000000000,"z":3920000000000000000}},"30006288":{"solarSystemId":30006288,"solarSystemName":"C.631.HFL","location":{"x":-40600000000000000000,"y":-529000000000000000,"z":4600000000000000000}},"30006289":{"solarSystemId":30006289,"solarSystemName":"I.H11.5DF","location":{"x":-38900000000000000000,"y":-774000000000000000,"z":938000000000000000}},"30006290":{"solarSystemId":30006290,"solarSystemName":"N.601.NFN","location":{"x":-37100000000000000000,"y":-456000000000000000,"z":1370000000000000000}},"30006291":{"solarSystemId":30006291,"solarSystemName":"C.F11.NMY","location":{"x":-38800000000000000000,"y":-992000000000000000,"z":472000000000000000}},"30006292":{"solarSystemId":30006292,"solarSystemName":"M.K11.VHB","location":{"x":-39200000000000000000,"y":-820000000000000000,"z":1590000000000000000}},"30006293":{"solarSystemId":30006293,"solarSystemName":"R.Q01.SJ6","location":{"x":-37600000000000000000,"y":-245000000000000000,"z":605000000000000000}},"30006294":{"solarSystemId":30006294,"solarSystemName":"N.S01.FC2","location":{"x":-37300000000000000000,"y":-90800000000000000,"z":709000000000000000}},"30006295":{"solarSystemId":30006295,"solarSystemName":"D.311.K3R","location":{"x":-38200000000000000000,"y":-473000000000000000,"z":1100000000000000000}},"30006296":{"solarSystemId":30006296,"solarSystemName":"T.111.JR1","location":{"x":-38100000000000000000,"y":-1650000000000000000,"z":604000000000000000}},"30006297":{"solarSystemId":30006297,"solarSystemName":"B.J01.ZZW","location":{"x":-37800000000000000000,"y":-1080000000000000000,"z":1500000000000000000}},"30006298":{"solarSystemId":30006298,"solarSystemName":"C.C01.F21","location":{"x":-37500000000000000000,"y":-1250000000000000000,"z":-356000000000000000}},"30006299":{"solarSystemId":30006299,"solarSystemName":"M.Y01.N0B","location":{"x":-37900000000000000000,"y":-793000000000000000,"z":1560000000000000000}},"30006300":{"solarSystemId":30006300,"solarSystemName":"M.D11.3NB","location":{"x":-38600000000000000000,"y":-806000000000000000,"z":1390000000000000000}},"30006301":{"solarSystemId":30006301,"solarSystemName":"I.V9Y.W5C","location":{"x":-31500000000000000000,"y":-583000000000000000,"z":-774000000000000000}},"30006302":{"solarSystemId":30006302,"solarSystemName":"O.87W.5G7","location":{"x":-33700000000000000000,"y":-278000000000000000,"z":282000000000000000}},"30006303":{"solarSystemId":30006303,"solarSystemName":"G.KRW.DJB","location":{"x":-33900000000000000000,"y":-821000000000000000,"z":680000000000000000}},"30006304":{"solarSystemId":30006304,"solarSystemName":"B.RKZ.HQQ","location":{"x":-33400000000000000000,"y":-744000000000000000,"z":849000000000000000}},"30006305":{"solarSystemId":30006305,"solarSystemName":"M.8TZ.NXJ","location":{"x":-32700000000000000000,"y":-930000000000000000,"z":398000000000000000}},"30006306":{"solarSystemId":30006306,"solarSystemName":"C.ZSY.B31","location":{"x":-31500000000000000000,"y":40200000000000000,"z":-435000000000000000}},"30006307":{"solarSystemId":30006307,"solarSystemName":"O.9VW.QWT","location":{"x":-34100000000000000000,"y":-430000000000000000,"z":1050000000000000000}},"30006308":{"solarSystemId":30006308,"solarSystemName":"M.Y8Y.BF7","location":{"x":-31400000000000000000,"y":277000000000000000,"z":-358000000000000000}},"30006309":{"solarSystemId":30006309,"solarSystemName":"C.M5Y.0D2","location":{"x":-31300000000000000000,"y":-89000000000000000,"z":-484000000000000000}},"30006310":{"solarSystemId":30006310,"solarSystemName":"M.H8W.4VK","location":{"x":-33800000000000000000,"y":-1100000000000000000,"z":735000000000000000}},"30006311":{"solarSystemId":30006311,"solarSystemName":"A.501.Y26","location":{"x":-37100000000000000000,"y":-219000000000000000,"z":4620000000000000000}},"30006312":{"solarSystemId":30006312,"solarSystemName":"U.S01.RRM","location":{"x":-37300000000000000000,"y":-628000000000000000,"z":2500000000000000000}},"30006313":{"solarSystemId":30006313,"solarSystemName":"T.Z01.F46","location":{"x":-37900000000000000000,"y":-221000000000000000,"z":3680000000000000000}},"30006314":{"solarSystemId":30006314,"solarSystemName":"N.WME.G54","location":{"x":-36400000000000000000,"y":151000000000000000,"z":3810000000000000000}},"30006315":{"solarSystemId":30006315,"solarSystemName":"C.TEE.NCG","location":{"x":-36900000000000000000,"y":-847000000000000000,"z":3300000000000000000}},"30006316":{"solarSystemId":30006316,"solarSystemName":"C.6KK.GER","location":{"x":-35700000000000000000,"y":-504000000000000000,"z":3520000000000000000}},"30006317":{"solarSystemId":30006317,"solarSystemName":"C.7NE.1DC","location":{"x":-36200000000000000000,"y":-593000000000000000,"z":4310000000000000000}},"30006318":{"solarSystemId":30006318,"solarSystemName":"U.8YZ.05L","location":{"x":-33300000000000000000,"y":-510000000000000000,"z":1080000000000000000}},"30006319":{"solarSystemId":30006319,"solarSystemName":"B.0BZ.2XR","location":{"x":-33100000000000000000,"y":-498000000000000000,"z":1140000000000000000}},"30006320":{"solarSystemId":30006320,"solarSystemName":"O.NFZ.76H","location":{"x":-33100000000000000000,"y":-872000000000000000,"z":997000000000000000}},"30006321":{"solarSystemId":30006321,"solarSystemName":"C.SZZ.N4G","location":{"x":-33300000000000000000,"y":-834000000000000000,"z":825000000000000000}},"30006322":{"solarSystemId":30006322,"solarSystemName":"C.PBZ.T5C","location":{"x":-33100000000000000000,"y":-582000000000000000,"z":749000000000000000}},"30006323":{"solarSystemId":30006323,"solarSystemName":"M.BGZ.QDB","location":{"x":-33100000000000000000,"y":-810000000000000000,"z":1120000000000000000}},"30006324":{"solarSystemId":30006324,"solarSystemName":"M.YFZ.61Z","location":{"x":-33100000000000000000,"y":-1010000000000000000,"z":956000000000000000}},"30006325":{"solarSystemId":30006325,"solarSystemName":"B.YMZ.P8G","location":{"x":-32900000000000000000,"y":-838000000000000000,"z":1040000000000000000}},"30006326":{"solarSystemId":30006326,"solarSystemName":"C.4QZ.QFB","location":{"x":-33000000000000000000,"y":-817000000000000000,"z":1170000000000000000}},"30006327":{"solarSystemId":30006327,"solarSystemName":"D:3A7N","location":{"x":-24200000000000000000,"y":-3170000000000000000,"z":-6320000000000000000}},"30006328":{"solarSystemId":30006328,"solarSystemName":"D:19KV","location":{"x":-24500000000000000000,"y":-3140000000000000000,"z":-5820000000000000000}},"30006329":{"solarSystemId":30006329,"solarSystemName":"D:1451","location":{"x":-24900000000000000000,"y":-5440000000000000000,"z":-6400000000000000000}},"30006330":{"solarSystemId":30006330,"solarSystemName":"Q:109O","location":{"x":-24700000000000000000,"y":-6300000000000000000,"z":-6910000000000000000}},"30006331":{"solarSystemId":30006331,"solarSystemName":"U:RV6E","location":{"x":-24500000000000000000,"y":-3420000000000000000,"z":-6860000000000000000}},"30006332":{"solarSystemId":30006332,"solarSystemName":"M:S94N","location":{"x":-20900000000000000000,"y":-7770000000000000000,"z":-8250000000000000000}},"30006333":{"solarSystemId":30006333,"solarSystemName":"P:10S2","location":{"x":-17800000000000000000,"y":-9830000000000000000,"z":-7540000000000000000}},"30006334":{"solarSystemId":30006334,"solarSystemName":"F:L1EK","location":{"x":-19700000000000000000,"y":-6550000000000000000,"z":-10100000000000000000}},"30006335":{"solarSystemId":30006335,"solarSystemName":"Q:1203","location":{"x":-19000000000000000000,"y":-5370000000000000000,"z":-6380000000000000000}},"30006336":{"solarSystemId":30006336,"solarSystemName":"Y:SO62","location":{"x":-24300000000000000000,"y":-6360000000000000000,"z":-7530000000000000000}},"30006337":{"solarSystemId":30006337,"solarSystemName":"Q:2RTV","location":{"x":-23900000000000000000,"y":-3300000000000000000,"z":-5000000000000000000}},"30006338":{"solarSystemId":30006338,"solarSystemName":"Q:1KS2","location":{"x":-23900000000000000000,"y":-1100000000000000000,"z":-6000000000000000000}},"30006339":{"solarSystemId":30006339,"solarSystemName":"J:K1L3","location":{"x":-23000000000000000000,"y":-3290000000000000000,"z":-5630000000000000000}},"30006340":{"solarSystemId":30006340,"solarSystemName":"J:R810","location":{"x":-24400000000000000000,"y":-3360000000000000000,"z":-4610000000000000000}},"30006341":{"solarSystemId":30006341,"solarSystemName":"H:R6SI","location":{"x":-22600000000000000000,"y":-2480000000000000000,"z":-6670000000000000000}},"30006342":{"solarSystemId":30006342,"solarSystemName":"F:L7O5","location":{"x":-22600000000000000000,"y":-2150000000000000000,"z":-6320000000000000000}},"30006343":{"solarSystemId":30006343,"solarSystemName":"G:S1TA","location":{"x":-22700000000000000000,"y":-1640000000000000000,"z":-5800000000000000000}},"30006344":{"solarSystemId":30006344,"solarSystemName":"P:SK16","location":{"x":-22700000000000000000,"y":-3390000000000000000,"z":-6400000000000000000}},"30006345":{"solarSystemId":30006345,"solarSystemName":"J:12ER","location":{"x":-24100000000000000000,"y":-3090000000000000000,"z":-5760000000000000000}},"30006346":{"solarSystemId":30006346,"solarSystemName":"F:R6KI","location":{"x":-24000000000000000000,"y":-1130000000000000000,"z":-5900000000000000000}},"30006347":{"solarSystemId":30006347,"solarSystemName":"J:237N","location":{"x":-21500000000000000000,"y":-1340000000000000000,"z":-5440000000000000000}},"30006348":{"solarSystemId":30006348,"solarSystemName":"P:169O","location":{"x":-21500000000000000000,"y":-1010000000000000000,"z":-5370000000000000000}},"30006349":{"solarSystemId":30006349,"solarSystemName":"H:3779","location":{"x":-21500000000000000000,"y":-969000000000000000,"z":-6030000000000000000}},"30006350":{"solarSystemId":30006350,"solarSystemName":"Kalite","location":{"x":-21700000000000000000,"y":-1150000000000000000,"z":-5530000000000000000}},"30006351":{"solarSystemId":30006351,"solarSystemName":"G:3035","location":{"x":-21700000000000000000,"y":-1350000000000000000,"z":-6070000000000000000}},"30006352":{"solarSystemId":30006352,"solarSystemName":"J:2E0V","location":{"x":-21600000000000000000,"y":-952000000000000000,"z":-5670000000000000000}},"30006353":{"solarSystemId":30006353,"solarSystemName":"M:2TE1","location":{"x":-21700000000000000000,"y":-1100000000000000000,"z":-5250000000000000000}},"30006354":{"solarSystemId":30006354,"solarSystemName":"F:S09I","location":{"x":-21700000000000000000,"y":-1440000000000000000,"z":-5690000000000000000}},"30006355":{"solarSystemId":30006355,"solarSystemName":"J:NVOE","location":{"x":-22400000000000000000,"y":-1520000000000000000,"z":-5690000000000000000}},"30006356":{"solarSystemId":30006356,"solarSystemName":"F:1IVL","location":{"x":-22200000000000000000,"y":-1410000000000000000,"z":-5640000000000000000}},"30006357":{"solarSystemId":30006357,"solarSystemName":"D:179T","location":{"x":-21900000000000000000,"y":-1430000000000000000,"z":-5540000000000000000}},"30006358":{"solarSystemId":30006358,"solarSystemName":"F:4LEL","location":{"x":-21900000000000000000,"y":-1160000000000000000,"z":-5800000000000000000}},"30006359":{"solarSystemId":30006359,"solarSystemName":"G:12OR","location":{"x":-21100000000000000000,"y":-995000000000000000,"z":-5600000000000000000}},"30006360":{"solarSystemId":30006360,"solarSystemName":"Z:KAS7","location":{"x":-21700000000000000000,"y":-988000000000000000,"z":-5110000000000000000}},"30006361":{"solarSystemId":30006361,"solarSystemName":"H:29VI","location":{"x":-21600000000000000000,"y":-1490000000000000000,"z":-5590000000000000000}},"30006362":{"solarSystemId":30006362,"solarSystemName":"H:24VT","location":{"x":-21700000000000000000,"y":-736000000000000000,"z":-5040000000000000000}},"30006363":{"solarSystemId":30006363,"solarSystemName":"D:2VK2","location":{"x":-23400000000000000000,"y":-4500000000000000000,"z":-7200000000000000000}},"30006364":{"solarSystemId":30006364,"solarSystemName":"Q:1IOK","location":{"x":-22800000000000000000,"y":-3020000000000000000,"z":-8690000000000000000}},"30006365":{"solarSystemId":30006365,"solarSystemName":"U:108E","location":{"x":-21300000000000000000,"y":-4030000000000000000,"z":-6650000000000000000}},"30006366":{"solarSystemId":30006366,"solarSystemName":"Y:1985","location":{"x":-23200000000000000000,"y":-2890000000000000000,"z":-8130000000000000000}},"30006367":{"solarSystemId":30006367,"solarSystemName":"Y:1291","location":{"x":-21600000000000000000,"y":-2440000000000000000,"z":-7670000000000000000}},"30006368":{"solarSystemId":30006368,"solarSystemName":"Y:13R3","location":{"x":-21800000000000000000,"y":-4460000000000000000,"z":-8040000000000000000}},"30006369":{"solarSystemId":30006369,"solarSystemName":"Q:16T8","location":{"x":-22900000000000000000,"y":-4370000000000000000,"z":-6860000000000000000}},"30006370":{"solarSystemId":30006370,"solarSystemName":"D:16AV","location":{"x":-26000000000000000000,"y":-5910000000000000000,"z":-8020000000000000000}},"30006371":{"solarSystemId":30006371,"solarSystemName":"D:V3NE","location":{"x":-26200000000000000000,"y":-7100000000000000000,"z":-10100000000000000000}},"30006372":{"solarSystemId":30006372,"solarSystemName":"P:TV78","location":{"x":-24400000000000000000,"y":-8390000000000000000,"z":-9450000000000000000}},"30006373":{"solarSystemId":30006373,"solarSystemName":"H:142R","location":{"x":-26100000000000000000,"y":-8560000000000000000,"z":-9730000000000000000}},"30006374":{"solarSystemId":30006374,"solarSystemName":"H:152I","location":{"x":-26200000000000000000,"y":-6540000000000000000,"z":-11500000000000000000}},"30006375":{"solarSystemId":30006375,"solarSystemName":"D:3O52","location":{"x":-26600000000000000000,"y":-6310000000000000000,"z":-3460000000000000000}},"30006376":{"solarSystemId":30006376,"solarSystemName":"F:18T8","location":{"x":-29100000000000000000,"y":-6810000000000000000,"z":-6170000000000000000}},"30006377":{"solarSystemId":30006377,"solarSystemName":"U:159O","location":{"x":-27200000000000000000,"y":-6030000000000000000,"z":-2150000000000000000}},"30006378":{"solarSystemId":30006378,"solarSystemName":"F:10N5","location":{"x":-27400000000000000000,"y":-11200000000000000000,"z":-6150000000000000000}},"30006379":{"solarSystemId":30006379,"solarSystemName":"H:15II","location":{"x":-30000000000000000000,"y":-10400000000000000000,"z":-5160000000000000000}},"30006380":{"solarSystemId":30006380,"solarSystemName":"Y:T4V8","location":{"x":-18300000000000000000,"y":-78300000000000000,"z":-1510000000000000000}},"30006381":{"solarSystemId":30006381,"solarSystemName":"F:122R","location":{"x":-18600000000000000000,"y":1550000000000000000,"z":-1230000000000000000}},"30006382":{"solarSystemId":30006382,"solarSystemName":"U:10S4","location":{"x":-18800000000000000000,"y":831000000000000000,"z":-1450000000000000000}},"30006383":{"solarSystemId":30006383,"solarSystemName":"Y:13O5","location":{"x":-17400000000000000000,"y":74500000000000000,"z":-1100000000000000000}},"30006384":{"solarSystemId":30006384,"solarSystemName":"H:1OSL","location":{"x":-18500000000000000000,"y":374000000000000000,"z":-1780000000000000000}},"30006385":{"solarSystemId":30006385,"solarSystemName":"Z:4OAA","location":{"x":-18100000000000000000,"y":1580000000000000000,"z":-1100000000000000000}},"30006386":{"solarSystemId":30006386,"solarSystemName":"U:2R70","location":{"x":-18000000000000000000,"y":217000000000000000,"z":-1510000000000000000}},"30006387":{"solarSystemId":30006387,"solarSystemName":"J:15K3","location":{"x":-17900000000000000000,"y":18200000000000000,"z":-1230000000000000000}},"30006388":{"solarSystemId":30006388,"solarSystemName":"D:1A9V","location":{"x":-18300000000000000000,"y":-356000000000000000,"z":-1020000000000000000}},"30006389":{"solarSystemId":30006389,"solarSystemName":"M:13I2","location":{"x":-18100000000000000000,"y":733000000000000000,"z":-1180000000000000000}},"30006390":{"solarSystemId":30006390,"solarSystemName":"B:196K","location":{"x":-18700000000000000000,"y":175000000000000000,"z":-686000000000000000}},"30006391":{"solarSystemId":30006391,"solarSystemName":"D:1290","location":{"x":-18900000000000000000,"y":149000000000000000,"z":-965000000000000000}},"30006392":{"solarSystemId":30006392,"solarSystemName":"J:1141","location":{"x":-19100000000000000000,"y":509000000000000000,"z":-1160000000000000000}},"30006393":{"solarSystemId":30006393,"solarSystemName":"J:170K","location":{"x":-17300000000000000000,"y":1520000000000000000,"z":-887000000000000000}},"30006394":{"solarSystemId":30006394,"solarSystemName":"Q:S3T8","location":{"x":-17900000000000000000,"y":1360000000000000000,"z":-412000000000000000}},"30006395":{"solarSystemId":30006395,"solarSystemName":"Y:3769","location":{"x":-19900000000000000000,"y":3560000000000000000,"z":508000000000000000}},"30006396":{"solarSystemId":30006396,"solarSystemName":"Q:S239","location":{"x":-18100000000000000000,"y":4710000000000000000,"z":1260000000000000000}},"30006397":{"solarSystemId":30006397,"solarSystemName":"H:1T50","location":{"x":-21000000000000000000,"y":1780000000000000000,"z":-75100000000000000}},"30006398":{"solarSystemId":30006398,"solarSystemName":"H:36T2","location":{"x":-19800000000000000000,"y":2840000000000000000,"z":-785000000000000000}},"30006399":{"solarSystemId":30006399,"solarSystemName":"G:SN00","location":{"x":-21300000000000000000,"y":2720000000000000000,"z":-496000000000000000}},"30006400":{"solarSystemId":30006400,"solarSystemName":"Z:T697","location":{"x":-19500000000000000000,"y":4190000000000000000,"z":-637000000000000000}},"30006401":{"solarSystemId":30006401,"solarSystemName":"D:14SR","location":{"x":-19900000000000000000,"y":1540000000000000000,"z":1250000000000000000}},"30006402":{"solarSystemId":30006402,"solarSystemName":"D:178O","location":{"x":-21700000000000000000,"y":2860000000000000000,"z":-183000000000000000}},"30006403":{"solarSystemId":30006403,"solarSystemName":"P:22AT","location":{"x":-22100000000000000000,"y":3500000000000000000,"z":-82700000000000000}},"30006404":{"solarSystemId":30006404,"solarSystemName":"J:3NEV","location":{"x":-21400000000000000000,"y":2870000000000000000,"z":-655000000000000000}},"30006405":{"solarSystemId":30006405,"solarSystemName":"B:12RS","location":{"x":-22700000000000000000,"y":2790000000000000000,"z":722000000000000000}},"30006406":{"solarSystemId":30006406,"solarSystemName":"M:12NI","location":{"x":-22000000000000000000,"y":3940000000000000000,"z":75100000000000000}},"30006407":{"solarSystemId":30006407,"solarSystemName":"Q:161O","location":{"x":-22200000000000000000,"y":3130000000000000000,"z":-880000000000000000}},"30006408":{"solarSystemId":30006408,"solarSystemName":"D:15KO","location":{"x":-22000000000000000000,"y":2560000000000000000,"z":-504000000000000000}},"30006409":{"solarSystemId":30006409,"solarSystemName":"Z:1A06","location":{"x":-22700000000000000000,"y":2520000000000000000,"z":406000000000000000}},"30006410":{"solarSystemId":30006410,"solarSystemName":"Q:R18T","location":{"x":-18800000000000000000,"y":1930000000000000000,"z":395000000000000000}},"30006411":{"solarSystemId":30006411,"solarSystemName":"M:17K3","location":{"x":-18600000000000000000,"y":2650000000000000000,"z":129000000000000000}},"30006412":{"solarSystemId":30006412,"solarSystemName":"Z:2298","location":{"x":-19300000000000000000,"y":1050000000000000000,"z":-17900000000000000}},"30006413":{"solarSystemId":30006413,"solarSystemName":"D:13LV","location":{"x":-18200000000000000000,"y":2860000000000000000,"z":319000000000000000}},"30006414":{"solarSystemId":30006414,"solarSystemName":"M:343E","location":{"x":-18600000000000000000,"y":1170000000000000000,"z":-87600000000000000}},"30006415":{"solarSystemId":30006415,"solarSystemName":"F:128L","location":{"x":-18600000000000000000,"y":605000000000000000,"z":609000000000000000}},"30006416":{"solarSystemId":30006416,"solarSystemName":"H:R076","location":{"x":-19400000000000000000,"y":2870000000000000000,"z":334000000000000000}},"30006417":{"solarSystemId":30006417,"solarSystemName":"P:R4L2","location":{"x":-18900000000000000000,"y":1260000000000000000,"z":-362000000000000000}},"30006418":{"solarSystemId":30006418,"solarSystemName":"B:R6A1","location":{"x":-17900000000000000000,"y":1760000000000000000,"z":-510000000000000000}},"30006419":{"solarSystemId":30006419,"solarSystemName":"P:22A2","location":{"x":-18400000000000000000,"y":1160000000000000000,"z":373000000000000000}},"30006420":{"solarSystemId":30006420,"solarSystemName":"P:5I4R","location":{"x":-19300000000000000000,"y":1070000000000000000,"z":-30900000000000000}},"30006421":{"solarSystemId":30006421,"solarSystemName":"Y:3A65","location":{"x":-20100000000000000000,"y":-705000000000000000,"z":-1470000000000000000}},"30006422":{"solarSystemId":30006422,"solarSystemName":"B:LTA9","location":{"x":-19400000000000000000,"y":-321000000000000000,"z":-1680000000000000000}},"30006423":{"solarSystemId":30006423,"solarSystemName":"U:4I3N","location":{"x":-19500000000000000000,"y":-552000000000000000,"z":-1570000000000000000}},"30006424":{"solarSystemId":30006424,"solarSystemName":"U:17E5","location":{"x":-19600000000000000000,"y":-770000000000000000,"z":-1520000000000000000}},"30006425":{"solarSystemId":30006425,"solarSystemName":"M:303K","location":{"x":-19800000000000000000,"y":-479000000000000000,"z":-1250000000000000000}},"30006426":{"solarSystemId":30006426,"solarSystemName":"J:VSOE","location":{"x":-19800000000000000000,"y":-533000000000000000,"z":-1570000000000000000}},"30006427":{"solarSystemId":30006427,"solarSystemName":"Z:21T8","location":{"x":-19800000000000000000,"y":-1140000000000000000,"z":-1720000000000000000}},"30006428":{"solarSystemId":30006428,"solarSystemName":"F:191L","location":{"x":-19400000000000000000,"y":-383000000000000000,"z":-1400000000000000000}},"30006429":{"solarSystemId":30006429,"solarSystemName":"Z:L299","location":{"x":-20000000000000000000,"y":-1210000000000000000,"z":-1820000000000000000}},"30006430":{"solarSystemId":30006430,"solarSystemName":"M:4OIL","location":{"x":-19400000000000000000,"y":-998000000000000000,"z":-1770000000000000000}},"30006431":{"solarSystemId":30006431,"solarSystemName":"F:2LV3","location":{"x":-19200000000000000000,"y":-722000000000000000,"z":-1880000000000000000}},"30006432":{"solarSystemId":30006432,"solarSystemName":"P:N046","location":{"x":-18900000000000000000,"y":-871000000000000000,"z":-1760000000000000000}},"30006433":{"solarSystemId":30006433,"solarSystemName":"F:1TNS","location":{"x":-19600000000000000000,"y":-321000000000000000,"z":-1820000000000000000}},"30006434":{"solarSystemId":30006434,"solarSystemName":"G:1972","location":{"x":-19500000000000000000,"y":-308000000000000000,"z":-1250000000000000000}},"30006435":{"solarSystemId":30006435,"solarSystemName":"Q:L1V9","location":{"x":-19900000000000000000,"y":-971000000000000000,"z":-1370000000000000000}},"30006436":{"solarSystemId":30006436,"solarSystemName":"U:1IEV","location":{"x":-19000000000000000000,"y":-713000000000000000,"z":-1870000000000000000}},"30006437":{"solarSystemId":30006437,"solarSystemName":"Y:142V","location":{"x":-19600000000000000000,"y":-89900000000000000,"z":-1790000000000000000}},"30006438":{"solarSystemId":30006438,"solarSystemName":"B:1A4R","location":{"x":-19500000000000000000,"y":-509000000000000000,"z":-1800000000000000000}},"30006439":{"solarSystemId":30006439,"solarSystemName":"Q:22II","location":{"x":-19900000000000000000,"y":-832000000000000000,"z":-1640000000000000000}},"30006440":{"solarSystemId":30006440,"solarSystemName":"D:2RAO","location":{"x":-19200000000000000000,"y":-866000000000000000,"z":-1850000000000000000}},"30006441":{"solarSystemId":30006441,"solarSystemName":"Q:317R","location":{"x":-19400000000000000000,"y":2060000000000000000,"z":-743000000000000000}},"30006442":{"solarSystemId":30006442,"solarSystemName":"F:2LA8","location":{"x":-19700000000000000000,"y":2350000000000000000,"z":-1580000000000000000}},"30006443":{"solarSystemId":30006443,"solarSystemName":"D:17SL","location":{"x":-19700000000000000000,"y":1330000000000000000,"z":-1330000000000000000}},"30006444":{"solarSystemId":30006444,"solarSystemName":"Z:11EO","location":{"x":-19800000000000000000,"y":1300000000000000000,"z":-1300000000000000000}},"30006445":{"solarSystemId":30006445,"solarSystemName":"H:3V2R","location":{"x":-21500000000000000000,"y":2180000000000000000,"z":-2050000000000000000}},"30006446":{"solarSystemId":30006446,"solarSystemName":"B:15AT","location":{"x":-21100000000000000000,"y":1590000000000000000,"z":-2300000000000000000}},"30006447":{"solarSystemId":30006447,"solarSystemName":"H:176S","location":{"x":-21400000000000000000,"y":1870000000000000000,"z":-826000000000000000}},"30006448":{"solarSystemId":30006448,"solarSystemName":"G:R4E2","location":{"x":-21200000000000000000,"y":3070000000000000000,"z":-2280000000000000000}},"30006449":{"solarSystemId":30006449,"solarSystemName":"J:1069","location":{"x":-20800000000000000000,"y":3080000000000000000,"z":-1170000000000000000}},"30006450":{"solarSystemId":30006450,"solarSystemName":"Q:TKIS","location":{"x":-19600000000000000000,"y":1860000000000000000,"z":-474000000000000000}},"30006451":{"solarSystemId":30006451,"solarSystemName":"J:LNEA","location":{"x":-20200000000000000000,"y":1710000000000000000,"z":-1660000000000000000}},"30006452":{"solarSystemId":30006452,"solarSystemName":"Y:15S3","location":{"x":-20500000000000000000,"y":1880000000000000000,"z":-1330000000000000000}},"30006453":{"solarSystemId":30006453,"solarSystemName":"G:2K2T","location":{"x":-15500000000000000000,"y":-1140000000000000000,"z":-1980000000000000000}},"30006454":{"solarSystemId":30006454,"solarSystemName":"U:3V4S","location":{"x":-15700000000000000000,"y":-631000000000000000,"z":-1040000000000000000}},"30006455":{"solarSystemId":30006455,"solarSystemName":"F:226I","location":{"x":-16500000000000000000,"y":-1780000000000000000,"z":-1010000000000000000}},"30006456":{"solarSystemId":30006456,"solarSystemName":"Q:EOEE","location":{"x":-15700000000000000000,"y":-506000000000000000,"z":-1630000000000000000}},"30006457":{"solarSystemId":30006457,"solarSystemName":"D:5OET","location":{"x":-15400000000000000000,"y":-1200000000000000000,"z":-2390000000000000000}},"30006458":{"solarSystemId":30006458,"solarSystemName":"Y:2R2T","location":{"x":-17000000000000000000,"y":-796000000000000000,"z":-1460000000000000000}},"30006459":{"solarSystemId":30006459,"solarSystemName":"D:24ET","location":{"x":-16900000000000000000,"y":-978000000000000000,"z":-1080000000000000000}},"30006460":{"solarSystemId":30006460,"solarSystemName":"D:423T","location":{"x":-16800000000000000000,"y":-1140000000000000000,"z":-987000000000000000}},"30006461":{"solarSystemId":30006461,"solarSystemName":"F:40A1","location":{"x":-16600000000000000000,"y":-845000000000000000,"z":-1600000000000000000}},"30006462":{"solarSystemId":30006462,"solarSystemName":"J:11TV","location":{"x":-16500000000000000000,"y":-709000000000000000,"z":-1930000000000000000}},"30006463":{"solarSystemId":30006463,"solarSystemName":"G:NK52","location":{"x":-16700000000000000000,"y":-1010000000000000000,"z":-777000000000000000}},"30006464":{"solarSystemId":30006464,"solarSystemName":"M:126O","location":{"x":-16900000000000000000,"y":-964000000000000000,"z":-1790000000000000000}},"30006465":{"solarSystemId":30006465,"solarSystemName":"F:R2E4","location":{"x":-16500000000000000000,"y":-2030000000000000000,"z":-1820000000000000000}},"30006466":{"solarSystemId":30006466,"solarSystemName":"Y:1IOS","location":{"x":-16900000000000000000,"y":-779000000000000000,"z":-1130000000000000000}},"30006467":{"solarSystemId":30006467,"solarSystemName":"H:23NR","location":{"x":-16700000000000000000,"y":-1160000000000000000,"z":-1630000000000000000}},"30006468":{"solarSystemId":30006468,"solarSystemName":"Q:265K","location":{"x":-16200000000000000000,"y":-1340000000000000000,"z":-1400000000000000000}},"30006469":{"solarSystemId":30006469,"solarSystemName":"B:1335","location":{"x":-16300000000000000000,"y":-1280000000000000000,"z":-1910000000000000000}},"30006470":{"solarSystemId":30006470,"solarSystemName":"J:12LN","location":{"x":-17100000000000000000,"y":-1000000000000000000,"z":-1090000000000000000}},"30006471":{"solarSystemId":30006471,"solarSystemName":"Z:20OL","location":{"x":-18300000000000000000,"y":5100000000000000000,"z":-1810000000000000000}},"30006472":{"solarSystemId":30006472,"solarSystemName":"H:181T","location":{"x":-18600000000000000000,"y":6370000000000000000,"z":-2780000000000000000}},"30006473":{"solarSystemId":30006473,"solarSystemName":"M:1537","location":{"x":-19100000000000000000,"y":5030000000000000000,"z":-2070000000000000000}},"30006474":{"solarSystemId":30006474,"solarSystemName":"G:32L0","location":{"x":-17900000000000000000,"y":5710000000000000000,"z":-2040000000000000000}},"30006475":{"solarSystemId":30006475,"solarSystemName":"B:KVOO","location":{"x":-18800000000000000000,"y":6370000000000000000,"z":-3230000000000000000}},"30006476":{"solarSystemId":30006476,"solarSystemName":"Q:3N2K","location":{"x":-20800000000000000000,"y":9500000000000000000,"z":-834000000000000000}},"30006477":{"solarSystemId":30006477,"solarSystemName":"D:ILA8","location":{"x":-18600000000000000000,"y":7640000000000000000,"z":-531000000000000000}},"30006478":{"solarSystemId":30006478,"solarSystemName":"J:19E8","location":{"x":-19900000000000000000,"y":6220000000000000000,"z":714000000000000000}},"30006479":{"solarSystemId":30006479,"solarSystemName":"Q:1302","location":{"x":-19900000000000000000,"y":7000000000000000000,"z":-4180000000000000000}},"30006480":{"solarSystemId":30006480,"solarSystemName":"B:16LR","location":{"x":-21000000000000000000,"y":7800000000000000000,"z":-2410000000000000000}},"30006481":{"solarSystemId":30006481,"solarSystemName":"F:34VO","location":{"x":-17100000000000000000,"y":4240000000000000000,"z":4670000000000000000}},"30006482":{"solarSystemId":30006482,"solarSystemName":"M:35LR","location":{"x":-19600000000000000000,"y":5550000000000000000,"z":2520000000000000000}},"30006483":{"solarSystemId":30006483,"solarSystemName":"G:V83K","location":{"x":-18700000000000000000,"y":5820000000000000000,"z":-18400000000000000}},"30006484":{"solarSystemId":30006484,"solarSystemName":"U:1L8T","location":{"x":-17900000000000000000,"y":5890000000000000000,"z":2790000000000000000}},"30006485":{"solarSystemId":30006485,"solarSystemName":"P:NN3S","location":{"x":-18100000000000000000,"y":4970000000000000000,"z":382000000000000000}},"30006486":{"solarSystemId":30006486,"solarSystemName":"F:1A90","location":{"x":-17900000000000000000,"y":4960000000000000000,"z":-497000000000000000}},"30006487":{"solarSystemId":30006487,"solarSystemName":"U:VNVT","location":{"x":-26600000000000000000,"y":-575000000000000000,"z":-2510000000000000000}},"30006488":{"solarSystemId":30006488,"solarSystemName":"Y:SEAI","location":{"x":-26400000000000000000,"y":-653000000000000000,"z":-2490000000000000000}},"30006489":{"solarSystemId":30006489,"solarSystemName":"Y:N0A6","location":{"x":-26900000000000000000,"y":-871000000000000000,"z":-2790000000000000000}},"30006490":{"solarSystemId":30006490,"solarSystemName":"J:299K","location":{"x":-26500000000000000000,"y":-731000000000000000,"z":-2460000000000000000}},"30006491":{"solarSystemId":30006491,"solarSystemName":"Q:1NS5","location":{"x":-27100000000000000000,"y":-844000000000000000,"z":-2860000000000000000}},"30006492":{"solarSystemId":30006492,"solarSystemName":"Z:2735","location":{"x":-26700000000000000000,"y":-517000000000000000,"z":-2810000000000000000}},"30006493":{"solarSystemId":30006493,"solarSystemName":"M:2669","location":{"x":-26800000000000000000,"y":-638000000000000000,"z":-2470000000000000000}},"30006494":{"solarSystemId":30006494,"solarSystemName":"J:2T9E","location":{"x":-26700000000000000000,"y":-510000000000000000,"z":-2940000000000000000}},"30006495":{"solarSystemId":30006495,"solarSystemName":"H:2LR6","location":{"x":-26400000000000000000,"y":-493000000000000000,"z":-2600000000000000000}},"30006496":{"solarSystemId":30006496,"solarSystemName":"U:1T6N","location":{"x":-26800000000000000000,"y":-494000000000000000,"z":-2800000000000000000}},"30006497":{"solarSystemId":30006497,"solarSystemName":"D:T81R","location":{"x":-26600000000000000000,"y":-845000000000000000,"z":-2840000000000000000}},"30006498":{"solarSystemId":30006498,"solarSystemName":"Q:1011","location":{"x":-26800000000000000000,"y":-817000000000000000,"z":-2080000000000000000}},"30006499":{"solarSystemId":30006499,"solarSystemName":"G:OO28","location":{"x":-26800000000000000000,"y":-607000000000000000,"z":-2110000000000000000}},"30006500":{"solarSystemId":30006500,"solarSystemName":"B:1R17","location":{"x":-28800000000000000000,"y":-810000000000000000,"z":-3940000000000000000}},"30006501":{"solarSystemId":30006501,"solarSystemName":"B:2K39","location":{"x":-29100000000000000000,"y":-879000000000000000,"z":-4060000000000000000}},"30006502":{"solarSystemId":30006502,"solarSystemName":"Q:17RV","location":{"x":-28300000000000000000,"y":-477000000000000000,"z":-3450000000000000000}},"30006503":{"solarSystemId":30006503,"solarSystemName":"F:220S","location":{"x":-28700000000000000000,"y":-954000000000000000,"z":-3170000000000000000}},"30006504":{"solarSystemId":30006504,"solarSystemName":"F:2TN9","location":{"x":-28300000000000000000,"y":-509000000000000000,"z":-3200000000000000000}},"30006505":{"solarSystemId":30006505,"solarSystemName":"P:2K77","location":{"x":-28600000000000000000,"y":250000000000000000,"z":-4650000000000000000}},"30006506":{"solarSystemId":30006506,"solarSystemName":"M:15O3","location":{"x":-27900000000000000000,"y":-704000000000000000,"z":-4410000000000000000}},"30006507":{"solarSystemId":30006507,"solarSystemName":"Y:23IL","location":{"x":-28600000000000000000,"y":-261000000000000000,"z":-4820000000000000000}},"30006508":{"solarSystemId":30006508,"solarSystemName":"Y:14K1","location":{"x":-29000000000000000000,"y":-960000000000000000,"z":-3920000000000000000}},"30006509":{"solarSystemId":30006509,"solarSystemName":"Z:KII7","location":{"x":-29100000000000000000,"y":-490000000000000000,"z":-3140000000000000000}},"30006510":{"solarSystemId":30006510,"solarSystemName":"B:85KN","location":{"x":-28400000000000000000,"y":-399000000000000000,"z":-4210000000000000000}},"30006511":{"solarSystemId":30006511,"solarSystemName":"Z:29S2","location":{"x":-29400000000000000000,"y":-284000000000000000,"z":-4460000000000000000}},"30006512":{"solarSystemId":30006512,"solarSystemName":"Z:15R8","location":{"x":-28200000000000000000,"y":-1040000000000000000,"z":-3800000000000000000}},"30006513":{"solarSystemId":30006513,"solarSystemName":"Z:1548","location":{"x":-28900000000000000000,"y":-477000000000000000,"z":-2460000000000000000}},"30006514":{"solarSystemId":30006514,"solarSystemName":"Z:IA95","location":{"x":-30800000000000000000,"y":-691000000000000000,"z":-2070000000000000000}},"30006515":{"solarSystemId":30006515,"solarSystemName":"U:2919","location":{"x":-29400000000000000000,"y":-699000000000000000,"z":-2880000000000000000}},"30006516":{"solarSystemId":30006516,"solarSystemName":"Y:O35T","location":{"x":-29200000000000000000,"y":-470000000000000000,"z":-2320000000000000000}},"30006517":{"solarSystemId":30006517,"solarSystemName":"Q:3N27","location":{"x":-30400000000000000000,"y":-465000000000000000,"z":-2190000000000000000}},"30006518":{"solarSystemId":30006518,"solarSystemName":"F:2LNN","location":{"x":-31200000000000000000,"y":-732000000000000000,"z":-1690000000000000000}},"30006519":{"solarSystemId":30006519,"solarSystemName":"Q:256E","location":{"x":-30600000000000000000,"y":-1750000000000000000,"z":-3160000000000000000}},"30006520":{"solarSystemId":30006520,"solarSystemName":"G:20IT","location":{"x":-30100000000000000000,"y":648000000000000000,"z":-528000000000000000}},"30006521":{"solarSystemId":30006521,"solarSystemName":"J:2I3A","location":{"x":-29700000000000000000,"y":-670000000000000000,"z":-3010000000000000000}},"30006522":{"solarSystemId":30006522,"solarSystemName":"H:4315","location":{"x":-29200000000000000000,"y":-184000000000000000,"z":-1890000000000000000}},"30006523":{"solarSystemId":30006523,"solarSystemName":"Z:21SA","location":{"x":-30800000000000000000,"y":262000000000000000,"z":-715000000000000000}},"30006524":{"solarSystemId":30006524,"solarSystemName":"B:141A","location":{"x":-30300000000000000000,"y":-2200000000000000000,"z":-2650000000000000000}},"30006525":{"solarSystemId":30006525,"solarSystemName":"Q:17VR","location":{"x":-29700000000000000000,"y":-1010000000000000000,"z":-2650000000000000000}},"30006526":{"solarSystemId":30006526,"solarSystemName":"D:2OS1","location":{"x":-33100000000000000000,"y":-480000000000000000,"z":-601000000000000000}},"30006527":{"solarSystemId":30006527,"solarSystemName":"P:3495","location":{"x":-33300000000000000000,"y":-602000000000000000,"z":-1030000000000000000}},"30006528":{"solarSystemId":30006528,"solarSystemName":"H:322K","location":{"x":-33000000000000000000,"y":-673000000000000000,"z":-1700000000000000000}},"30006529":{"solarSystemId":30006529,"solarSystemName":"U:33AO","location":{"x":-32900000000000000000,"y":-626000000000000000,"z":-1530000000000000000}},"30006530":{"solarSystemId":30006530,"solarSystemName":"M:11KO","location":{"x":-33100000000000000000,"y":-458000000000000000,"z":-459000000000000000}},"30006531":{"solarSystemId":30006531,"solarSystemName":"D:19IN","location":{"x":-33000000000000000000,"y":-376000000000000000,"z":-1000000000000000000}},"30006532":{"solarSystemId":30006532,"solarSystemName":"P:17VR","location":{"x":-31800000000000000000,"y":-342000000000000000,"z":-1070000000000000000}},"30006533":{"solarSystemId":30006533,"solarSystemName":"G:VEOR","location":{"x":-32400000000000000000,"y":-253000000000000000,"z":-616000000000000000}},"30006534":{"solarSystemId":30006534,"solarSystemName":"U:1SS0","location":{"x":-33300000000000000000,"y":-756000000000000000,"z":-383000000000000000}},"30006535":{"solarSystemId":30006535,"solarSystemName":"P:2SVS","location":{"x":-31900000000000000000,"y":145000000000000000,"z":-1400000000000000000}},"30006536":{"solarSystemId":30006536,"solarSystemName":"M:4NIK","location":{"x":-28000000000000000000,"y":-711000000000000000,"z":-2630000000000000000}},"30006537":{"solarSystemId":30006537,"solarSystemName":"F:3I1T","location":{"x":-29200000000000000000,"y":1130000000000000000,"z":-2520000000000000000}},"30006538":{"solarSystemId":30006538,"solarSystemName":"G:124T","location":{"x":-28100000000000000000,"y":-478000000000000000,"z":-3250000000000000000}},"30006539":{"solarSystemId":30006539,"solarSystemName":"Z:2806","location":{"x":-27800000000000000000,"y":1070000000000000000,"z":-3220000000000000000}},"30006540":{"solarSystemId":30006540,"solarSystemName":"Q:T2EK","location":{"x":-28400000000000000000,"y":-606000000000000000,"z":-2300000000000000000}},"30006541":{"solarSystemId":30006541,"solarSystemName":"Z:1993","location":{"x":-27700000000000000000,"y":-2810000000000000000,"z":-2240000000000000000}},"30006542":{"solarSystemId":30006542,"solarSystemName":"Y:VAI8","location":{"x":-29800000000000000000,"y":1740000000000000000,"z":-1910000000000000000}},"30006543":{"solarSystemId":30006543,"solarSystemName":"F:SIV2","location":{"x":-27700000000000000000,"y":1490000000000000000,"z":-2880000000000000000}},"30006544":{"solarSystemId":30006544,"solarSystemName":"P:1V6T","location":{"x":-27900000000000000000,"y":-130000000000000000,"z":-2570000000000000000}},"30006545":{"solarSystemId":30006545,"solarSystemName":"M:1T65","location":{"x":-28400000000000000000,"y":656000000000000000,"z":-3060000000000000000}},"30006546":{"solarSystemId":30006546,"solarSystemName":"Q:14VA","location":{"x":-28700000000000000000,"y":-1690000000000000000,"z":-2600000000000000000}},"30006547":{"solarSystemId":30006547,"solarSystemName":"M:1463","location":{"x":-28200000000000000000,"y":-633000000000000000,"z":-2320000000000000000}},"30006548":{"solarSystemId":30006548,"solarSystemName":"P:O8R0","location":{"x":-27700000000000000000,"y":-794000000000000000,"z":-3370000000000000000}},"30006549":{"solarSystemId":30006549,"solarSystemName":"Y:344N","location":{"x":-29000000000000000000,"y":-441000000000000000,"z":-1210000000000000000}},"30006550":{"solarSystemId":30006550,"solarSystemName":"P:1378","location":{"x":-29200000000000000000,"y":-279000000000000000,"z":-1690000000000000000}},"30006551":{"solarSystemId":30006551,"solarSystemName":"P:ASI5","location":{"x":-30500000000000000000,"y":-771000000000000000,"z":-847000000000000000}},"30006552":{"solarSystemId":30006552,"solarSystemName":"B:AKI3","location":{"x":-29300000000000000000,"y":-222000000000000000,"z":-532000000000000000}},"30006553":{"solarSystemId":30006553,"solarSystemName":"P:LLA6","location":{"x":-30400000000000000000,"y":-186000000000000000,"z":-312000000000000000}},"30006554":{"solarSystemId":30006554,"solarSystemName":"H:1RVR","location":{"x":-30800000000000000000,"y":-329000000000000000,"z":-390000000000000000}},"30006555":{"solarSystemId":30006555,"solarSystemName":"U:1ISA","location":{"x":-29300000000000000000,"y":-393000000000000000,"z":-451000000000000000}},"30006556":{"solarSystemId":30006556,"solarSystemName":"F:SS48","location":{"x":-29600000000000000000,"y":-391000000000000000,"z":-434000000000000000}},"30006557":{"solarSystemId":30006557,"solarSystemName":"Y:1I05","location":{"x":-28700000000000000000,"y":-321000000000000000,"z":-1570000000000000000}},"30006558":{"solarSystemId":30006558,"solarSystemName":"D:ESSL","location":{"x":-29300000000000000000,"y":-449000000000000000,"z":-1740000000000000000}},"30006559":{"solarSystemId":30006559,"solarSystemName":"F:KI87","location":{"x":-30400000000000000000,"y":-351000000000000000,"z":-761000000000000000}},"30006560":{"solarSystemId":30006560,"solarSystemName":"Y:198V","location":{"x":-29600000000000000000,"y":-156000000000000000,"z":93100000000000000}},"30006561":{"solarSystemId":30006561,"solarSystemName":"Q:1EKO","location":{"x":-24100000000000000000,"y":2410000000000000000,"z":-5350000000000000000}},"30006562":{"solarSystemId":30006562,"solarSystemName":"U:1V8E","location":{"x":-25600000000000000000,"y":1010000000000000000,"z":-4340000000000000000}},"30006563":{"solarSystemId":30006563,"solarSystemName":"P:LSIV","location":{"x":-24600000000000000000,"y":2130000000000000000,"z":-3190000000000000000}},"30006564":{"solarSystemId":30006564,"solarSystemName":"U:1261","location":{"x":-25500000000000000000,"y":2940000000000000000,"z":-4330000000000000000}},"30006565":{"solarSystemId":30006565,"solarSystemName":"D:RNK5","location":{"x":-25000000000000000000,"y":1350000000000000000,"z":-5070000000000000000}},"30006566":{"solarSystemId":30006566,"solarSystemName":"B:191A","location":{"x":-25700000000000000000,"y":1190000000000000000,"z":-5030000000000000000}},"30006567":{"solarSystemId":30006567,"solarSystemName":"B:106V","location":{"x":-25800000000000000000,"y":1410000000000000000,"z":-4050000000000000000}},"30006568":{"solarSystemId":30006568,"solarSystemName":"G:118I","location":{"x":-26700000000000000000,"y":3210000000000000000,"z":-3330000000000000000}},"30006569":{"solarSystemId":30006569,"solarSystemName":"J:VR83","location":{"x":-27100000000000000000,"y":3380000000000000000,"z":-4110000000000000000}},"30006570":{"solarSystemId":30006570,"solarSystemName":"P:L566","location":{"x":-32200000000000000000,"y":-782000000000000000,"z":408000000000000000}},"30006571":{"solarSystemId":30006571,"solarSystemName":"F:42KV","location":{"x":-32500000000000000000,"y":-488000000000000000,"z":898000000000000000}},"30006572":{"solarSystemId":30006572,"solarSystemName":"P:4O14","location":{"x":-31900000000000000000,"y":211000000000000000,"z":1220000000000000000}},"30006573":{"solarSystemId":30006573,"solarSystemName":"Y:V7IA","location":{"x":-33100000000000000000,"y":-141000000000000000,"z":1240000000000000000}},"30006574":{"solarSystemId":30006574,"solarSystemName":"H:10VE","location":{"x":-31700000000000000000,"y":-651000000000000000,"z":834000000000000000}},"30006575":{"solarSystemId":30006575,"solarSystemName":"B:234R","location":{"x":-32000000000000000000,"y":-602000000000000000,"z":2180000000000000000}},"30006576":{"solarSystemId":30006576,"solarSystemName":"G:6A41","location":{"x":-31800000000000000000,"y":-96600000000000000,"z":2730000000000000000}},"30006577":{"solarSystemId":30006577,"solarSystemName":"U:E250","location":{"x":-32000000000000000000,"y":-9110000000000000,"z":2310000000000000000}},"30006578":{"solarSystemId":30006578,"solarSystemName":"U:25KI","location":{"x":-32000000000000000000,"y":-104000000000000000,"z":389000000000000000}},"30006579":{"solarSystemId":30006579,"solarSystemName":"P:38ET","location":{"x":-29600000000000000000,"y":-835000000000000000,"z":-5110000000000000000}},"30006580":{"solarSystemId":30006580,"solarSystemName":"Y:31A0","location":{"x":-29700000000000000000,"y":455000000000000000,"z":-5020000000000000000}},"30006581":{"solarSystemId":30006581,"solarSystemName":"P:L6ER","location":{"x":-30000000000000000000,"y":275000000000000000,"z":-4170000000000000000}},"30006582":{"solarSystemId":30006582,"solarSystemName":"P:T64S","location":{"x":-29400000000000000000,"y":-331000000000000000,"z":-3170000000000000000}},"30006583":{"solarSystemId":30006583,"solarSystemName":"D:145A","location":{"x":-29600000000000000000,"y":-115000000000000000,"z":-3940000000000000000}},"30006584":{"solarSystemId":30006584,"solarSystemName":"H:24OR","location":{"x":-29800000000000000000,"y":-373000000000000000,"z":-5410000000000000000}},"30006585":{"solarSystemId":30006585,"solarSystemName":"J:2O36","location":{"x":-30300000000000000000,"y":683000000000000000,"z":-3810000000000000000}},"30006586":{"solarSystemId":30006586,"solarSystemName":"F:204T","location":{"x":-29800000000000000000,"y":280000000000000000,"z":-2970000000000000000}},"30006587":{"solarSystemId":30006587,"solarSystemName":"Q:24TV","location":{"x":-29400000000000000000,"y":118000000000000000,"z":-4800000000000000000}},"30006588":{"solarSystemId":30006588,"solarSystemName":"J:20O3","location":{"x":-30000000000000000000,"y":-600000000000000000,"z":-5020000000000000000}},"30006589":{"solarSystemId":30006589,"solarSystemName":"Q:20O6","location":{"x":-29700000000000000000,"y":-693000000000000000,"z":-4560000000000000000}},"30006590":{"solarSystemId":30006590,"solarSystemName":"P:1090","location":{"x":-28900000000000000000,"y":994000000000000000,"z":-5030000000000000000}},"30006591":{"solarSystemId":30006591,"solarSystemName":"M:1821","location":{"x":-30400000000000000000,"y":-666000000000000000,"z":-4440000000000000000}},"30006592":{"solarSystemId":30006592,"solarSystemName":"J:156S","location":{"x":-21200000000000000000,"y":-637000000000000000,"z":-3480000000000000000}},"30006593":{"solarSystemId":30006593,"solarSystemName":"H:1I38","location":{"x":-21500000000000000000,"y":-903000000000000000,"z":-3500000000000000000}},"30006594":{"solarSystemId":30006594,"solarSystemName":"Q:S8O4","location":{"x":-21200000000000000000,"y":-441000000000000000,"z":-3350000000000000000}},"30006595":{"solarSystemId":30006595,"solarSystemName":"P:100O","location":{"x":-21600000000000000000,"y":-1020000000000000000,"z":-3560000000000000000}},"30006596":{"solarSystemId":30006596,"solarSystemName":"P:13NT","location":{"x":-21400000000000000000,"y":-440000000000000000,"z":-3130000000000000000}},"30006597":{"solarSystemId":30006597,"solarSystemName":"F:1518","location":{"x":-21200000000000000000,"y":-988000000000000000,"z":-3320000000000000000}},"30006598":{"solarSystemId":30006598,"solarSystemName":"F:18V8","location":{"x":-21200000000000000000,"y":-787000000000000000,"z":-3590000000000000000}},"30006599":{"solarSystemId":30006599,"solarSystemName":"D:13N8","location":{"x":-21600000000000000000,"y":-1080000000000000000,"z":-3470000000000000000}},"30006600":{"solarSystemId":30006600,"solarSystemName":"Y:12A9","location":{"x":-21500000000000000000,"y":-524000000000000000,"z":-3230000000000000000}},"30006601":{"solarSystemId":30006601,"solarSystemName":"H:K72A","location":{"x":-21300000000000000000,"y":-878000000000000000,"z":-3460000000000000000}},"30006602":{"solarSystemId":30006602,"solarSystemName":"Q:18AR","location":{"x":-21200000000000000000,"y":-828000000000000000,"z":-3480000000000000000}},"30006603":{"solarSystemId":30006603,"solarSystemName":"Z:15E2","location":{"x":-21600000000000000000,"y":-1060000000000000000,"z":-3190000000000000000}},"30006604":{"solarSystemId":30006604,"solarSystemName":"F:KA87","location":{"x":-21600000000000000000,"y":-995000000000000000,"z":-3440000000000000000}},"30006605":{"solarSystemId":30006605,"solarSystemName":"M:16O7","location":{"x":-21500000000000000000,"y":-773000000000000000,"z":-3380000000000000000}},"30006606":{"solarSystemId":30006606,"solarSystemName":"F:R6NI","location":{"x":-21500000000000000000,"y":-671000000000000000,"z":-3330000000000000000}},"30006607":{"solarSystemId":30006607,"solarSystemName":"D:VI70","location":{"x":-21300000000000000000,"y":-883000000000000000,"z":-3320000000000000000}},"30006608":{"solarSystemId":30006608,"solarSystemName":"P:44A4","location":{"x":-21700000000000000000,"y":-978000000000000000,"z":-3480000000000000000}},"30006609":{"solarSystemId":30006609,"solarSystemName":"G:II7N","location":{"x":-21800000000000000000,"y":-119000000000000000,"z":-2930000000000000000}},"30006610":{"solarSystemId":30006610,"solarSystemName":"F:2280","location":{"x":-21600000000000000000,"y":-223000000000000000,"z":-3080000000000000000}},"30006611":{"solarSystemId":30006611,"solarSystemName":"H:11A0","location":{"x":-21600000000000000000,"y":160000000000000000,"z":-3690000000000000000}},"30006612":{"solarSystemId":30006612,"solarSystemName":"G:TL47","location":{"x":-21400000000000000000,"y":188000000000000000,"z":-2840000000000000000}},"30006613":{"solarSystemId":30006613,"solarSystemName":"U:4ALN","location":{"x":-21300000000000000000,"y":-72000000000000000,"z":-2990000000000000000}},"30006614":{"solarSystemId":30006614,"solarSystemName":"H:I51L","location":{"x":-21400000000000000000,"y":-82900000000000000,"z":-3180000000000000000}},"30006615":{"solarSystemId":30006615,"solarSystemName":"D:T3T9","location":{"x":-21600000000000000000,"y":-54600000000000000,"z":-3140000000000000000}},"30006616":{"solarSystemId":30006616,"solarSystemName":"Q:STNK","location":{"x":-22000000000000000000,"y":-104000000000000000,"z":-2970000000000000000}},"30006617":{"solarSystemId":30006617,"solarSystemName":"F:17IO","location":{"x":-21700000000000000000,"y":-230000000000000000,"z":-3060000000000000000}},"30006618":{"solarSystemId":30006618,"solarSystemName":"F:9L49","location":{"x":-21300000000000000000,"y":-87500000000000000,"z":-3600000000000000000}},"30006619":{"solarSystemId":30006619,"solarSystemName":"H:1AVE","location":{"x":-21200000000000000000,"y":38400000000000000,"z":-3470000000000000000}},"30006620":{"solarSystemId":30006620,"solarSystemName":"G:1995","location":{"x":-21400000000000000000,"y":-104000000000000000,"z":-3400000000000000000}},"30006621":{"solarSystemId":30006621,"solarSystemName":"Q:19N0","location":{"x":-21600000000000000000,"y":211000000000000000,"z":-3280000000000000000}},"30006622":{"solarSystemId":30006622,"solarSystemName":"Q:L77T","location":{"x":-21900000000000000000,"y":-228000000000000000,"z":-3490000000000000000}},"30006623":{"solarSystemId":30006623,"solarSystemName":"P:NAI9","location":{"x":-21900000000000000000,"y":-148000000000000000,"z":-3400000000000000000}},"30006624":{"solarSystemId":30006624,"solarSystemName":"H:S5V6","location":{"x":-21400000000000000000,"y":497000000000000000,"z":-3200000000000000000}},"30006625":{"solarSystemId":30006625,"solarSystemName":"M:V88A","location":{"x":-21100000000000000000,"y":220000000000000000,"z":-3390000000000000000}},"30006626":{"solarSystemId":30006626,"solarSystemName":"J:1722","location":{"x":-21400000000000000000,"y":-64100000000000000,"z":-3630000000000000000}},"30006627":{"solarSystemId":30006627,"solarSystemName":"H:392T","location":{"x":-21600000000000000000,"y":-437000000000000000,"z":-3420000000000000000}},"30006628":{"solarSystemId":30006628,"solarSystemName":"J:T3AL","location":{"x":-21400000000000000000,"y":-248000000000000000,"z":-3800000000000000000}},"30006629":{"solarSystemId":30006629,"solarSystemName":"Y:L0I0","location":{"x":-21300000000000000000,"y":-400000000000000000,"z":-3400000000000000000}},"30006630":{"solarSystemId":30006630,"solarSystemName":"Z:15AV","location":{"x":-21500000000000000000,"y":-379000000000000000,"z":-3570000000000000000}},"30006631":{"solarSystemId":30006631,"solarSystemName":"B:R8KA","location":{"x":-21700000000000000000,"y":-473000000000000000,"z":-3520000000000000000}},"30006632":{"solarSystemId":30006632,"solarSystemName":"F:1481","location":{"x":-21500000000000000000,"y":-480000000000000000,"z":-3610000000000000000}},"30006633":{"solarSystemId":30006633,"solarSystemName":"F:2OLT","location":{"x":-21600000000000000000,"y":-341000000000000000,"z":-3600000000000000000}},"30006634":{"solarSystemId":30006634,"solarSystemName":"D:152N","location":{"x":-21600000000000000000,"y":-557000000000000000,"z":-3560000000000000000}},"30006635":{"solarSystemId":30006635,"solarSystemName":"D:13AO","location":{"x":-21500000000000000000,"y":-426000000000000000,"z":-3460000000000000000}},"30006636":{"solarSystemId":30006636,"solarSystemName":"J:1037","location":{"x":-21400000000000000000,"y":-580000000000000000,"z":-3470000000000000000}},"30006637":{"solarSystemId":30006637,"solarSystemName":"Y:12OT","location":{"x":-21400000000000000000,"y":-681000000000000000,"z":-3570000000000000000}},"30006638":{"solarSystemId":30006638,"solarSystemName":"D:19A0","location":{"x":-21400000000000000000,"y":-448000000000000000,"z":-3530000000000000000}},"30006639":{"solarSystemId":30006639,"solarSystemName":"D:1ISE","location":{"x":-21400000000000000000,"y":-288000000000000000,"z":-3640000000000000000}},"30006640":{"solarSystemId":30006640,"solarSystemName":"G:13A9","location":{"x":-21200000000000000000,"y":-692000000000000000,"z":-3540000000000000000}},"30006641":{"solarSystemId":30006641,"solarSystemName":"B:1AKN","location":{"x":-21700000000000000000,"y":-506000000000000000,"z":-3650000000000000000}},"30006642":{"solarSystemId":30006642,"solarSystemName":"J:L7ET","location":{"x":-21300000000000000000,"y":-473000000000000000,"z":-3490000000000000000}},"30006643":{"solarSystemId":30006643,"solarSystemName":"F:214A","location":{"x":-20700000000000000000,"y":-930000000000000000,"z":-3440000000000000000}},"30006644":{"solarSystemId":30006644,"solarSystemName":"G:18N5","location":{"x":-20800000000000000000,"y":-1220000000000000000,"z":-3420000000000000000}},"30006645":{"solarSystemId":30006645,"solarSystemName":"F:14IL","location":{"x":-21000000000000000000,"y":-1550000000000000000,"z":-3680000000000000000}},"30006646":{"solarSystemId":30006646,"solarSystemName":"D:135A","location":{"x":-20800000000000000000,"y":-906000000000000000,"z":-3730000000000000000}},"30006647":{"solarSystemId":30006647,"solarSystemName":"P:142L","location":{"x":-20700000000000000000,"y":-1150000000000000000,"z":-3500000000000000000}},"30006648":{"solarSystemId":30006648,"solarSystemName":"G:S16A","location":{"x":-20900000000000000000,"y":-1190000000000000000,"z":-3320000000000000000}},"30006649":{"solarSystemId":30006649,"solarSystemName":"U:VOOS","location":{"x":-20600000000000000000,"y":-932000000000000000,"z":-3440000000000000000}},"30006650":{"solarSystemId":30006650,"solarSystemName":"B:1816","location":{"x":-20800000000000000000,"y":-826000000000000000,"z":-3580000000000000000}},"30006651":{"solarSystemId":30006651,"solarSystemName":"D:TL2V","location":{"x":-20800000000000000000,"y":-963000000000000000,"z":-3700000000000000000}},"30006652":{"solarSystemId":30006652,"solarSystemName":"F:1I85","location":{"x":-21000000000000000000,"y":-834000000000000000,"z":-3460000000000000000}},"30006653":{"solarSystemId":30006653,"solarSystemName":"Z:17V7","location":{"x":-20700000000000000000,"y":-914000000000000000,"z":-3570000000000000000}},"30006654":{"solarSystemId":30006654,"solarSystemName":"Q:18SA","location":{"x":-20600000000000000000,"y":-1010000000000000000,"z":-3460000000000000000}},"30006655":{"solarSystemId":30006655,"solarSystemName":"Y:110E","location":{"x":-21200000000000000000,"y":-1240000000000000000,"z":-3550000000000000000}},"30006656":{"solarSystemId":30006656,"solarSystemName":"H:16IR","location":{"x":-20700000000000000000,"y":-973000000000000000,"z":-3550000000000000000}},"30006657":{"solarSystemId":30006657,"solarSystemName":"M:187E","location":{"x":-20800000000000000000,"y":-922000000000000000,"z":-3560000000000000000}},"30006658":{"solarSystemId":30006658,"solarSystemName":"G:175I","location":{"x":-20800000000000000000,"y":-976000000000000000,"z":-3610000000000000000}},"30006659":{"solarSystemId":30006659,"solarSystemName":"Z:T7AR","location":{"x":-21000000000000000000,"y":-1380000000000000000,"z":-3810000000000000000}},"30006660":{"solarSystemId":30006660,"solarSystemName":"G:1N01","location":{"x":-21900000000000000000,"y":-1280000000000000000,"z":-1940000000000000000}},"30006661":{"solarSystemId":30006661,"solarSystemName":"Q:RT25","location":{"x":-22000000000000000000,"y":-928000000000000000,"z":-2190000000000000000}},"30006662":{"solarSystemId":30006662,"solarSystemName":"Y:24E0","location":{"x":-22900000000000000000,"y":-1590000000000000000,"z":-2800000000000000000}},"30006663":{"solarSystemId":30006663,"solarSystemName":"G:194O","location":{"x":-23200000000000000000,"y":-1310000000000000000,"z":-3190000000000000000}},"30006664":{"solarSystemId":30006664,"solarSystemName":"U:1O6A","location":{"x":-22500000000000000000,"y":-1010000000000000000,"z":-1900000000000000000}},"30006665":{"solarSystemId":30006665,"solarSystemName":"G:3IA9","location":{"x":-22500000000000000000,"y":-1280000000000000000,"z":-2720000000000000000}},"30006666":{"solarSystemId":30006666,"solarSystemName":"Y:IKNV","location":{"x":-22200000000000000000,"y":-1040000000000000000,"z":-2130000000000000000}},"30006667":{"solarSystemId":30006667,"solarSystemName":"M:32N0","location":{"x":-22700000000000000000,"y":-1060000000000000000,"z":-2360000000000000000}},"30006668":{"solarSystemId":30006668,"solarSystemName":"Y:51K2","location":{"x":-22100000000000000000,"y":-1110000000000000000,"z":-2870000000000000000}},"30006669":{"solarSystemId":30006669,"solarSystemName":"F:1A17","location":{"x":-22100000000000000000,"y":-1160000000000000000,"z":-2860000000000000000}},"30006670":{"solarSystemId":30006670,"solarSystemName":"G:S9EN","location":{"x":-21900000000000000000,"y":-1260000000000000000,"z":-3320000000000000000}},"30006671":{"solarSystemId":30006671,"solarSystemName":"Q:12VR","location":{"x":-22800000000000000000,"y":-904000000000000000,"z":-2510000000000000000}},"30006672":{"solarSystemId":30006672,"solarSystemName":"J:S895","location":{"x":-22700000000000000000,"y":-1150000000000000000,"z":-2040000000000000000}},"30006673":{"solarSystemId":30006673,"solarSystemName":"H:1AK8","location":{"x":-22200000000000000000,"y":-1380000000000000000,"z":-3580000000000000000}},"30006674":{"solarSystemId":30006674,"solarSystemName":"Y:320A","location":{"x":-21900000000000000000,"y":-1160000000000000000,"z":-3530000000000000000}},"30006675":{"solarSystemId":30006675,"solarSystemName":"Z:4KA1","location":{"x":-22000000000000000000,"y":-1230000000000000000,"z":-1860000000000000000}},"30006676":{"solarSystemId":30006676,"solarSystemName":"H:16LI","location":{"x":-22600000000000000000,"y":-1500000000000000000,"z":-3050000000000000000}},"30006677":{"solarSystemId":30006677,"solarSystemName":"F:V9S8","location":{"x":-21200000000000000000,"y":-1180000000000000000,"z":-4120000000000000000}},"30006678":{"solarSystemId":30006678,"solarSystemName":"B:17O6","location":{"x":-21500000000000000000,"y":-1260000000000000000,"z":-3950000000000000000}},"30006679":{"solarSystemId":30006679,"solarSystemName":"J:1800","location":{"x":-21400000000000000000,"y":-1360000000000000000,"z":-3610000000000000000}},"30006680":{"solarSystemId":30006680,"solarSystemName":"P:1324","location":{"x":-21200000000000000000,"y":-1200000000000000000,"z":-4190000000000000000}},"30006681":{"solarSystemId":30006681,"solarSystemName":"H:105R","location":{"x":-21500000000000000000,"y":-1560000000000000000,"z":-3660000000000000000}},"30006682":{"solarSystemId":30006682,"solarSystemName":"D:1IT9","location":{"x":-21400000000000000000,"y":-1040000000000000000,"z":-4250000000000000000}},"30006683":{"solarSystemId":30006683,"solarSystemName":"M:L81T","location":{"x":-21500000000000000000,"y":-1520000000000000000,"z":-3930000000000000000}},"30006684":{"solarSystemId":30006684,"solarSystemName":"H:1352","location":{"x":-21800000000000000000,"y":-1220000000000000000,"z":-4240000000000000000}},"30006685":{"solarSystemId":30006685,"solarSystemName":"F:V214","location":{"x":-21000000000000000000,"y":-1100000000000000000,"z":-4140000000000000000}},"30006686":{"solarSystemId":30006686,"solarSystemName":"H:1N03","location":{"x":-21300000000000000000,"y":-1410000000000000000,"z":-4240000000000000000}},"30006687":{"solarSystemId":30006687,"solarSystemName":"P:1OTR","location":{"x":-21900000000000000000,"y":-1230000000000000000,"z":-4230000000000000000}},"30006688":{"solarSystemId":30006688,"solarSystemName":"U:2SL0","location":{"x":-21600000000000000000,"y":-1220000000000000000,"z":-3560000000000000000}},"30006689":{"solarSystemId":30006689,"solarSystemName":"F:RLN1","location":{"x":-21100000000000000000,"y":-1280000000000000000,"z":-3890000000000000000}},"30006690":{"solarSystemId":30006690,"solarSystemName":"B:TS5L","location":{"x":-21600000000000000000,"y":-1090000000000000000,"z":-4420000000000000000}},"30006691":{"solarSystemId":30006691,"solarSystemName":"G:16NL","location":{"x":-21500000000000000000,"y":-1290000000000000000,"z":-3960000000000000000}},"30006692":{"solarSystemId":30006692,"solarSystemName":"Y:KL81","location":{"x":-21600000000000000000,"y":-1110000000000000000,"z":-3710000000000000000}},"30006693":{"solarSystemId":30006693,"solarSystemName":"H:VI27","location":{"x":-21100000000000000000,"y":-1160000000000000000,"z":-3950000000000000000}},"30006694":{"solarSystemId":30006694,"solarSystemName":"Z:LOAI","location":{"x":-21200000000000000000,"y":-1170000000000000000,"z":-4250000000000000000}},"30006695":{"solarSystemId":30006695,"solarSystemName":"D:SOV1","location":{"x":-21500000000000000000,"y":-1040000000000000000,"z":-4010000000000000000}},"30006696":{"solarSystemId":30006696,"solarSystemName":"Q:1A31","location":{"x":-21600000000000000000,"y":-1130000000000000000,"z":-4060000000000000000}},"30006697":{"solarSystemId":30006697,"solarSystemName":"Z:177K","location":{"x":-21600000000000000000,"y":-1100000000000000000,"z":-4420000000000000000}},"30006698":{"solarSystemId":30006698,"solarSystemName":"G:1A8O","location":{"x":-21100000000000000000,"y":-262000000000000000,"z":-3920000000000000000}},"30006699":{"solarSystemId":30006699,"solarSystemName":"J:1IR0","location":{"x":-21200000000000000000,"y":-22200000000000000,"z":-3830000000000000000}},"30006700":{"solarSystemId":30006700,"solarSystemName":"B:1A44","location":{"x":-21100000000000000000,"y":-155000000000000000,"z":-4140000000000000000}},"30006701":{"solarSystemId":30006701,"solarSystemName":"F:ROVS","location":{"x":-21100000000000000000,"y":37000000000000000,"z":-3910000000000000000}},"30006702":{"solarSystemId":30006702,"solarSystemName":"D:1086","location":{"x":-21100000000000000000,"y":56200000000000000,"z":-4200000000000000000}},"30006703":{"solarSystemId":30006703,"solarSystemName":"H:22L7","location":{"x":-21000000000000000000,"y":-99900000000000000,"z":-3800000000000000000}},"30006704":{"solarSystemId":30006704,"solarSystemName":"D:10E5","location":{"x":-21200000000000000000,"y":-57900000000000000,"z":-4460000000000000000}},"30006705":{"solarSystemId":30006705,"solarSystemName":"Z:1LVA","location":{"x":-21000000000000000000,"y":-248000000000000000,"z":-4470000000000000000}},"30006706":{"solarSystemId":30006706,"solarSystemName":"B:IT31","location":{"x":-21300000000000000000,"y":6050000000000000,"z":-3980000000000000000}},"30006707":{"solarSystemId":30006707,"solarSystemName":"B:K313","location":{"x":-21100000000000000000,"y":-197000000000000000,"z":-4070000000000000000}},"30006708":{"solarSystemId":30006708,"solarSystemName":"Q:182R","location":{"x":-20700000000000000000,"y":-68500000000000000,"z":-4120000000000000000}},"30006709":{"solarSystemId":30006709,"solarSystemName":"Y:NIS8","location":{"x":-21200000000000000000,"y":-391000000000000000,"z":-4260000000000000000}},"30006710":{"solarSystemId":30006710,"solarSystemName":"Q:V9K8","location":{"x":-21000000000000000000,"y":-174000000000000000,"z":-4160000000000000000}},"30006711":{"solarSystemId":30006711,"solarSystemName":"J:1I30","location":{"x":-21100000000000000000,"y":245000000000000000,"z":-3890000000000000000}},"30006712":{"solarSystemId":30006712,"solarSystemName":"U:1170","location":{"x":-21200000000000000000,"y":478000000000000000,"z":-3810000000000000000}},"30006713":{"solarSystemId":30006713,"solarSystemName":"H:TLA7","location":{"x":-21000000000000000000,"y":-402000000000000000,"z":-4210000000000000000}},"30006714":{"solarSystemId":30006714,"solarSystemName":"Q:12AO","location":{"x":-21100000000000000000,"y":-68400000000000000,"z":-3980000000000000000}},"30006715":{"solarSystemId":30006715,"solarSystemName":"Z:2KRV","location":{"x":-21800000000000000000,"y":-28500000000000000,"z":-5070000000000000000}},"30006716":{"solarSystemId":30006716,"solarSystemName":"D:13LT","location":{"x":-21600000000000000000,"y":-413000000000000000,"z":-4590000000000000000}},"30006717":{"solarSystemId":30006717,"solarSystemName":"B:34V8","location":{"x":-21900000000000000000,"y":-192000000000000000,"z":-4460000000000000000}},"30006718":{"solarSystemId":30006718,"solarSystemName":"U:L269","location":{"x":-21200000000000000000,"y":-371000000000000000,"z":-4550000000000000000}},"30006719":{"solarSystemId":30006719,"solarSystemName":"D:12V1","location":{"x":-21300000000000000000,"y":-373000000000000000,"z":-4950000000000000000}},"30006720":{"solarSystemId":30006720,"solarSystemName":"U:13RI","location":{"x":-21700000000000000000,"y":8650000000000000,"z":-5060000000000000000}},"30006721":{"solarSystemId":30006721,"solarSystemName":"J:18LS","location":{"x":-22000000000000000000,"y":19100000000000000,"z":-4900000000000000000}},"30006722":{"solarSystemId":30006722,"solarSystemName":"H:NE6S","location":{"x":-21500000000000000000,"y":-305000000000000000,"z":-4400000000000000000}},"30006723":{"solarSystemId":30006723,"solarSystemName":"Q:137K","location":{"x":-21300000000000000000,"y":-330000000000000000,"z":-4640000000000000000}},"30006724":{"solarSystemId":30006724,"solarSystemName":"U:1940","location":{"x":-22000000000000000000,"y":-359000000000000000,"z":-4730000000000000000}},"30006725":{"solarSystemId":30006725,"solarSystemName":"Y:KA6V","location":{"x":-21900000000000000000,"y":-209000000000000000,"z":-4960000000000000000}},"30006726":{"solarSystemId":30006726,"solarSystemName":"Z:T5EV","location":{"x":-21200000000000000000,"y":-174000000000000000,"z":-4900000000000000000}},"30006727":{"solarSystemId":30006727,"solarSystemName":"H:K1R4","location":{"x":-21600000000000000000,"y":-87100000000000000,"z":-4690000000000000000}},"30006728":{"solarSystemId":30006728,"solarSystemName":"U:SAO3","location":{"x":-21700000000000000000,"y":60600000000000000,"z":-4740000000000000000}},"30006729":{"solarSystemId":30006729,"solarSystemName":"J:1I75","location":{"x":-21600000000000000000,"y":-28600000000000000,"z":-4850000000000000000}},"30006730":{"solarSystemId":30006730,"solarSystemName":"F:STKK","location":{"x":-21600000000000000000,"y":12200000000000000,"z":-5030000000000000000}},"30006731":{"solarSystemId":30006731,"solarSystemName":"G:2561","location":{"x":-20800000000000000000,"y":79100000000000000,"z":-2810000000000000000}},"30006732":{"solarSystemId":30006732,"solarSystemName":"P:16NE","location":{"x":-20600000000000000000,"y":-95000000000000000,"z":-3440000000000000000}},"30006733":{"solarSystemId":30006733,"solarSystemName":"B:1856","location":{"x":-20400000000000000000,"y":328000000000000000,"z":-2820000000000000000}},"30006734":{"solarSystemId":30006734,"solarSystemName":"J:RATL","location":{"x":-21000000000000000000,"y":45500000000000000,"z":-3350000000000000000}},"30006735":{"solarSystemId":30006735,"solarSystemName":"G:19NN","location":{"x":-20700000000000000000,"y":-76100000000000000,"z":-3760000000000000000}},"30006736":{"solarSystemId":30006736,"solarSystemName":"H:KNN4","location":{"x":-20600000000000000000,"y":221000000000000000,"z":-3000000000000000000}},"30006737":{"solarSystemId":30006737,"solarSystemName":"M:NOS7","location":{"x":-20800000000000000000,"y":-154000000000000000,"z":-3640000000000000000}},"30006738":{"solarSystemId":30006738,"solarSystemName":"G:16SS","location":{"x":-21100000000000000000,"y":-146000000000000000,"z":-3430000000000000000}},"30006739":{"solarSystemId":30006739,"solarSystemName":"Q:16IE","location":{"x":-21100000000000000000,"y":119000000000000000,"z":-3660000000000000000}},"30006740":{"solarSystemId":30006740,"solarSystemName":"U:KEI5","location":{"x":-21000000000000000000,"y":-6560000000000000,"z":-3130000000000000000}},"30006741":{"solarSystemId":30006741,"solarSystemName":"H:1I2E","location":{"x":-20900000000000000000,"y":237000000000000000,"z":-2900000000000000000}},"30006742":{"solarSystemId":30006742,"solarSystemName":"F:199V","location":{"x":-20900000000000000000,"y":-63900000000000000,"z":-3670000000000000000}},"30006743":{"solarSystemId":30006743,"solarSystemName":"Y:12LA","location":{"x":-20800000000000000000,"y":-163000000000000000,"z":-3440000000000000000}},"30006744":{"solarSystemId":30006744,"solarSystemName":"D:14V7","location":{"x":-20800000000000000000,"y":-155000000000000000,"z":-3260000000000000000}},"30006745":{"solarSystemId":30006745,"solarSystemName":"U:11L5","location":{"x":-20900000000000000000,"y":-14000000000000000,"z":-2950000000000000000}},"30006746":{"solarSystemId":30006746,"solarSystemName":"Z:1743","location":{"x":-20700000000000000000,"y":-191000000000000000,"z":-3400000000000000000}},"30006747":{"solarSystemId":30006747,"solarSystemName":"Z:VA3L","location":{"x":-21000000000000000000,"y":-6300000000000000,"z":-3550000000000000000}},"30006748":{"solarSystemId":30006748,"solarSystemName":"J:190E","location":{"x":-20700000000000000000,"y":251000000000000000,"z":-3290000000000000000}},"30006749":{"solarSystemId":30006749,"solarSystemName":"H:38K9","location":{"x":-16200000000000000000,"y":-1160000000000000000,"z":-9570000000000000000}},"30006750":{"solarSystemId":30006750,"solarSystemName":"U:36O9","location":{"x":-15900000000000000000,"y":-2750000000000000000,"z":-9370000000000000000}},"30006751":{"solarSystemId":30006751,"solarSystemName":"Y:364L","location":{"x":-16300000000000000000,"y":-1290000000000000000,"z":-8720000000000000000}},"30006752":{"solarSystemId":30006752,"solarSystemName":"P:N2ST","location":{"x":-15700000000000000000,"y":-1560000000000000000,"z":-10100000000000000000}},"30006753":{"solarSystemId":30006753,"solarSystemName":"B:KS22","location":{"x":-16200000000000000000,"y":-1240000000000000000,"z":-9400000000000000000}},"30006754":{"solarSystemId":30006754,"solarSystemName":"Q:2O0O","location":{"x":-16300000000000000000,"y":-2140000000000000000,"z":-9640000000000000000}},"30006755":{"solarSystemId":30006755,"solarSystemName":"Z:1VVS","location":{"x":-16000000000000000000,"y":-1440000000000000000,"z":-9060000000000000000}},"30006756":{"solarSystemId":30006756,"solarSystemName":"P:51N8","location":{"x":-15500000000000000000,"y":-1880000000000000000,"z":-9510000000000000000}},"30006757":{"solarSystemId":30006757,"solarSystemName":"D:310T","location":{"x":-15800000000000000000,"y":-2950000000000000000,"z":-8820000000000000000}},"30006758":{"solarSystemId":30006758,"solarSystemName":"Z:S34L","location":{"x":-16300000000000000000,"y":-2400000000000000000,"z":-9460000000000000000}},"30006759":{"solarSystemId":30006759,"solarSystemName":"M:152A","location":{"x":-17100000000000000000,"y":-2420000000000000000,"z":-9740000000000000000}},"30006760":{"solarSystemId":30006760,"solarSystemName":"Q:1I78","location":{"x":-15900000000000000000,"y":-1420000000000000000,"z":-9330000000000000000}},"30006761":{"solarSystemId":30006761,"solarSystemName":"U:I3OA","location":{"x":-16500000000000000000,"y":-1110000000000000000,"z":-9330000000000000000}},"30006762":{"solarSystemId":30006762,"solarSystemName":"P:10R5","location":{"x":-22600000000000000000,"y":-10800000000000000000,"z":-4000000000000000000}},"30006763":{"solarSystemId":30006763,"solarSystemName":"H:1745","location":{"x":-23400000000000000000,"y":-6030000000000000000,"z":-5940000000000000000}},"30006764":{"solarSystemId":30006764,"solarSystemName":"H:TERO","location":{"x":-24500000000000000000,"y":-11100000000000000000,"z":-1980000000000000000}},"30006765":{"solarSystemId":30006765,"solarSystemName":"D:K273","location":{"x":-22200000000000000000,"y":-7090000000000000000,"z":-788000000000000000}},"30006766":{"solarSystemId":30006766,"solarSystemName":"P:TN7I","location":{"x":-22400000000000000000,"y":-7440000000000000000,"z":-5490000000000000000}},"30006767":{"solarSystemId":30006767,"solarSystemName":"J:O712","location":{"x":-19800000000000000000,"y":-808000000000000000,"z":-8110000000000000000}},"30006768":{"solarSystemId":30006768,"solarSystemName":"J:3R37","location":{"x":-20000000000000000000,"y":-855000000000000000,"z":-8130000000000000000}},"30006769":{"solarSystemId":30006769,"solarSystemName":"F:1RTL","location":{"x":-19800000000000000000,"y":-722000000000000000,"z":-8070000000000000000}},"30006770":{"solarSystemId":30006770,"solarSystemName":"P:V32N","location":{"x":-19900000000000000000,"y":-649000000000000000,"z":-8240000000000000000}},"30006771":{"solarSystemId":30006771,"solarSystemName":"D:EIRN","location":{"x":-20200000000000000000,"y":-1170000000000000000,"z":-8130000000000000000}},"30006772":{"solarSystemId":30006772,"solarSystemName":"G:7E94","location":{"x":-19600000000000000000,"y":-1140000000000000000,"z":-7860000000000000000}},"30006773":{"solarSystemId":30006773,"solarSystemName":"P:4K3E","location":{"x":-19800000000000000000,"y":-1130000000000000000,"z":-7880000000000000000}},"30006774":{"solarSystemId":30006774,"solarSystemName":"Y:N572","location":{"x":-20300000000000000000,"y":-1440000000000000000,"z":-8140000000000000000}},"30006775":{"solarSystemId":30006775,"solarSystemName":"G:L47V","location":{"x":-20300000000000000000,"y":-1060000000000000000,"z":-8270000000000000000}},"30006776":{"solarSystemId":30006776,"solarSystemName":"M:1T7N","location":{"x":-20100000000000000000,"y":-1270000000000000000,"z":-8590000000000000000}},"30006777":{"solarSystemId":30006777,"solarSystemName":"Z:13NS","location":{"x":-19900000000000000000,"y":-791000000000000000,"z":-7670000000000000000}},"30006778":{"solarSystemId":30006778,"solarSystemName":"M:L606","location":{"x":-19600000000000000000,"y":-1110000000000000000,"z":-8410000000000000000}},"30006779":{"solarSystemId":30006779,"solarSystemName":"M:7937","location":{"x":-19900000000000000000,"y":-1310000000000000000,"z":-8100000000000000000}},"30006780":{"solarSystemId":30006780,"solarSystemName":"U:EEEO","location":{"x":-20000000000000000000,"y":-948000000000000000,"z":-8540000000000000000}},"30006781":{"solarSystemId":30006781,"solarSystemName":"Y:E7LS","location":{"x":-19300000000000000000,"y":-1350000000000000000,"z":-8030000000000000000}},"30006782":{"solarSystemId":30006782,"solarSystemName":"B:3E51","location":{"x":-21000000000000000000,"y":-5760000000000000000,"z":-4820000000000000000}},"30006783":{"solarSystemId":30006783,"solarSystemName":"Q:1590","location":{"x":-22400000000000000000,"y":-5280000000000000000,"z":-4680000000000000000}},"30006784":{"solarSystemId":30006784,"solarSystemName":"J:126V","location":{"x":-20000000000000000000,"y":-4460000000000000000,"z":-5020000000000000000}},"30006785":{"solarSystemId":30006785,"solarSystemName":"P:19N8","location":{"x":-20100000000000000000,"y":-6230000000000000000,"z":-6440000000000000000}},"30006786":{"solarSystemId":30006786,"solarSystemName":"D:1115","location":{"x":-20700000000000000000,"y":-5160000000000000000,"z":-3030000000000000000}},"30006787":{"solarSystemId":30006787,"solarSystemName":"H:16N7","location":{"x":-21500000000000000000,"y":-5640000000000000000,"z":-4120000000000000000}},"30006788":{"solarSystemId":30006788,"solarSystemName":"B:14VL","location":{"x":-19600000000000000000,"y":-870000000000000000,"z":-10900000000000000000}},"30006789":{"solarSystemId":30006789,"solarSystemName":"M:135V","location":{"x":-20000000000000000000,"y":-350000000000000000,"z":-10100000000000000000}},"30006790":{"solarSystemId":30006790,"solarSystemName":"J:1N8N","location":{"x":-19900000000000000000,"y":-660000000000000000,"z":-10200000000000000000}},"30006791":{"solarSystemId":30006791,"solarSystemName":"Y:1117","location":{"x":-19700000000000000000,"y":-589000000000000000,"z":-10400000000000000000}},"30006792":{"solarSystemId":30006792,"solarSystemName":"P:SRE9","location":{"x":-19800000000000000000,"y":89100000000000000,"z":-10300000000000000000}},"30006793":{"solarSystemId":30006793,"solarSystemName":"H:1553","location":{"x":-20200000000000000000,"y":-1030000000000000000,"z":-10700000000000000000}},"30006794":{"solarSystemId":30006794,"solarSystemName":"B:101E","location":{"x":-20000000000000000000,"y":-377000000000000000,"z":-10700000000000000000}},"30006795":{"solarSystemId":30006795,"solarSystemName":"D:4RVA","location":{"x":-20000000000000000000,"y":-878000000000000000,"z":-9420000000000000000}},"30006796":{"solarSystemId":30006796,"solarSystemName":"G:3R63","location":{"x":-20100000000000000000,"y":-586000000000000000,"z":-9880000000000000000}},"30006797":{"solarSystemId":30006797,"solarSystemName":"H:1535","location":{"x":-19900000000000000000,"y":-1320000000000000000,"z":-9620000000000000000}},"30006798":{"solarSystemId":30006798,"solarSystemName":"U:13S8","location":{"x":-19900000000000000000,"y":-1260000000000000000,"z":-9620000000000000000}},"30006799":{"solarSystemId":30006799,"solarSystemName":"U:284O","location":{"x":-20200000000000000000,"y":-602000000000000000,"z":-10500000000000000000}},"30006800":{"solarSystemId":30006800,"solarSystemName":"U:2T8R","location":{"x":-20100000000000000000,"y":-963000000000000000,"z":-10300000000000000000}},"30006801":{"solarSystemId":30006801,"solarSystemName":"D:1291","location":{"x":-20200000000000000000,"y":-543000000000000000,"z":-11000000000000000000}},"30006802":{"solarSystemId":30006802,"solarSystemName":"G:1A87","location":{"x":-20400000000000000000,"y":-671000000000000000,"z":-10400000000000000000}},"30006803":{"solarSystemId":30006803,"solarSystemName":"G:OL9E","location":{"x":-20000000000000000000,"y":-1030000000000000000,"z":-10400000000000000000}},"30006804":{"solarSystemId":30006804,"solarSystemName":"P:3SN4","location":{"x":-20000000000000000000,"y":-3550000000000000000,"z":-7480000000000000000}},"30006805":{"solarSystemId":30006805,"solarSystemName":"Z:1NKR","location":{"x":-17500000000000000000,"y":-3810000000000000000,"z":-6800000000000000000}},"30006806":{"solarSystemId":30006806,"solarSystemName":"U:178N","location":{"x":-21100000000000000000,"y":-4080000000000000000,"z":-7500000000000000000}},"30006807":{"solarSystemId":30006807,"solarSystemName":"J:1I01","location":{"x":-19800000000000000000,"y":-2950000000000000000,"z":-8170000000000000000}},"30006808":{"solarSystemId":30006808,"solarSystemName":"Q:1AKS","location":{"x":-20000000000000000000,"y":-4130000000000000000,"z":-8820000000000000000}},"30006809":{"solarSystemId":30006809,"solarSystemName":"U:KI87","location":{"x":-20700000000000000000,"y":-2940000000000000000,"z":-6870000000000000000}},"30006810":{"solarSystemId":30006810,"solarSystemName":"D:1237","location":{"x":-19200000000000000000,"y":-3770000000000000000,"z":-7750000000000000000}},"30006811":{"solarSystemId":30006811,"solarSystemName":"U:K8N9","location":{"x":-20800000000000000000,"y":-2790000000000000000,"z":-7150000000000000000}},"30006812":{"solarSystemId":30006812,"solarSystemName":"J:4KOL","location":{"x":-18800000000000000000,"y":-325000000000000000,"z":-5650000000000000000}},"30006813":{"solarSystemId":30006813,"solarSystemName":"Z:1975","location":{"x":-18600000000000000000,"y":-474000000000000000,"z":-5520000000000000000}},"30006814":{"solarSystemId":30006814,"solarSystemName":"U:O9NA","location":{"x":-18400000000000000000,"y":-98500000000000000,"z":-6140000000000000000}},"30006815":{"solarSystemId":30006815,"solarSystemName":"Q:OEN7","location":{"x":-18700000000000000000,"y":-438000000000000000,"z":-5810000000000000000}},"30006816":{"solarSystemId":30006816,"solarSystemName":"U:L4ES","location":{"x":-18300000000000000000,"y":-757000000000000000,"z":-6030000000000000000}},"30006817":{"solarSystemId":30006817,"solarSystemName":"H:LVSS","location":{"x":-18700000000000000000,"y":-768000000000000000,"z":-5450000000000000000}},"30006818":{"solarSystemId":30006818,"solarSystemName":"G:31VE","location":{"x":-18700000000000000000,"y":-774000000000000000,"z":-5830000000000000000}},"30006819":{"solarSystemId":30006819,"solarSystemName":"M:1S39","location":{"x":-18200000000000000000,"y":-483000000000000000,"z":-6230000000000000000}},"30006820":{"solarSystemId":30006820,"solarSystemName":"G:1RS7","location":{"x":-18800000000000000000,"y":-811000000000000000,"z":-5640000000000000000}},"30006821":{"solarSystemId":30006821,"solarSystemName":"U:1AN2","location":{"x":-18500000000000000000,"y":-79000000000000000,"z":-5870000000000000000}},"30006822":{"solarSystemId":30006822,"solarSystemName":"G:EII0","location":{"x":-18100000000000000000,"y":-503000000000000000,"z":-5650000000000000000}},"30006823":{"solarSystemId":30006823,"solarSystemName":"Z:2A60","location":{"x":-18500000000000000000,"y":-488000000000000000,"z":-6350000000000000000}},"30006824":{"solarSystemId":30006824,"solarSystemName":"Z:2476","location":{"x":-18400000000000000000,"y":-302000000000000000,"z":-5990000000000000000}},"30006825":{"solarSystemId":30006825,"solarSystemName":"M:21AR","location":{"x":-18100000000000000000,"y":-565000000000000000,"z":-5950000000000000000}},"30006826":{"solarSystemId":30006826,"solarSystemName":"G:14NS","location":{"x":-18400000000000000000,"y":-519000000000000000,"z":-6390000000000000000}},"30006827":{"solarSystemId":30006827,"solarSystemName":"M:1IR2","location":{"x":-18500000000000000000,"y":-470000000000000000,"z":-5910000000000000000}},"30006828":{"solarSystemId":30006828,"solarSystemName":"F:1355","location":{"x":-18500000000000000000,"y":-607000000000000000,"z":-6320000000000000000}},"30006829":{"solarSystemId":30006829,"solarSystemName":"Y:4IOK","location":{"x":-18600000000000000000,"y":-385000000000000000,"z":-5770000000000000000}},"30006830":{"solarSystemId":30006830,"solarSystemName":"G:L9LE","location":{"x":-18100000000000000000,"y":-509000000000000000,"z":-6180000000000000000}},"30006831":{"solarSystemId":30006831,"solarSystemName":"F:TOT2","location":{"x":-19200000000000000000,"y":-2320000000000000000,"z":-4550000000000000000}},"30006832":{"solarSystemId":30006832,"solarSystemName":"Y:1ANI","location":{"x":-19700000000000000000,"y":-1950000000000000000,"z":-3930000000000000000}},"30006833":{"solarSystemId":30006833,"solarSystemName":"Y:2A8K","location":{"x":-19800000000000000000,"y":-1930000000000000000,"z":-4260000000000000000}},"30006834":{"solarSystemId":30006834,"solarSystemName":"B:11I9","location":{"x":-20100000000000000000,"y":-2130000000000000000,"z":-5150000000000000000}},"30006835":{"solarSystemId":30006835,"solarSystemName":"M:10AR","location":{"x":-20000000000000000000,"y":-3150000000000000000,"z":-3920000000000000000}},"30006836":{"solarSystemId":30006836,"solarSystemName":"B:LS8V","location":{"x":-20200000000000000000,"y":-2900000000000000000,"z":-5230000000000000000}},"30006837":{"solarSystemId":30006837,"solarSystemName":"U:16A3","location":{"x":-19700000000000000000,"y":-2730000000000000000,"z":-4120000000000000000}},"30006838":{"solarSystemId":30006838,"solarSystemName":"U:18O5","location":{"x":-19100000000000000000,"y":-1920000000000000000,"z":-4530000000000000000}},"30006839":{"solarSystemId":30006839,"solarSystemName":"P:14EK","location":{"x":-19400000000000000000,"y":-3140000000000000000,"z":-4960000000000000000}},"30006840":{"solarSystemId":30006840,"solarSystemName":"U:17RN","location":{"x":-19600000000000000000,"y":-2820000000000000000,"z":-4650000000000000000}},"30006841":{"solarSystemId":30006841,"solarSystemName":"Q:10OL","location":{"x":-19200000000000000000,"y":-3070000000000000000,"z":-4970000000000000000}},"30006842":{"solarSystemId":30006842,"solarSystemName":"H:AO9L","location":{"x":-18700000000000000000,"y":-1800000000000000000,"z":-4870000000000000000}},"30006843":{"solarSystemId":30006843,"solarSystemName":"P:3K35","location":{"x":-18000000000000000000,"y":-2380000000000000000,"z":-6440000000000000000}},"30006844":{"solarSystemId":30006844,"solarSystemName":"B:39VL","location":{"x":-18700000000000000000,"y":-1820000000000000000,"z":-6740000000000000000}},"30006845":{"solarSystemId":30006845,"solarSystemName":"Z:17OI","location":{"x":-18200000000000000000,"y":-1970000000000000000,"z":-5690000000000000000}},"30006846":{"solarSystemId":30006846,"solarSystemName":"H:13K2","location":{"x":-18100000000000000000,"y":-1460000000000000000,"z":-6340000000000000000}},"30006847":{"solarSystemId":30006847,"solarSystemName":"F:2N42","location":{"x":-18000000000000000000,"y":-1790000000000000000,"z":-5870000000000000000}},"30006848":{"solarSystemId":30006848,"solarSystemName":"P:1SE9","location":{"x":-18700000000000000000,"y":-2370000000000000000,"z":-6120000000000000000}},"30006849":{"solarSystemId":30006849,"solarSystemName":"M:112L","location":{"x":-17900000000000000000,"y":-2130000000000000000,"z":-5450000000000000000}},"30006850":{"solarSystemId":30006850,"solarSystemName":"D:K9TV","location":{"x":-18600000000000000000,"y":-2060000000000000000,"z":-7070000000000000000}},"30006851":{"solarSystemId":30006851,"solarSystemName":"U:T8RT","location":{"x":-18800000000000000000,"y":-1690000000000000000,"z":-6880000000000000000}},"30006852":{"solarSystemId":30006852,"solarSystemName":"H:12NA","location":{"x":-18100000000000000000,"y":-1700000000000000000,"z":-7040000000000000000}},"30006853":{"solarSystemId":30006853,"solarSystemName":"F:NIVV","location":{"x":-18600000000000000000,"y":-1710000000000000000,"z":-7100000000000000000}},"30006854":{"solarSystemId":30006854,"solarSystemName":"U:4884","location":{"x":-19000000000000000000,"y":-2260000000000000000,"z":-5560000000000000000}},"30006855":{"solarSystemId":30006855,"solarSystemName":"U:3O7K","location":{"x":-18100000000000000000,"y":-1600000000000000000,"z":-6610000000000000000}},"30006856":{"solarSystemId":30006856,"solarSystemName":"F:3T5O","location":{"x":-18400000000000000000,"y":-1390000000000000000,"z":-6120000000000000000}},"30006857":{"solarSystemId":30006857,"solarSystemName":"M:1414","location":{"x":-18500000000000000000,"y":-1290000000000000000,"z":-6330000000000000000}},"30006858":{"solarSystemId":30006858,"solarSystemName":"S.M2E.C13","location":{"x":-35800000000000000000,"y":-110000000000000000,"z":11400000000000000000}},"30006859":{"solarSystemId":30006859,"solarSystemName":"N.56W.ZRZ","location":{"x":-33700000000000000000,"y":-1020000000000000000,"z":16500000000000000000}},"30006860":{"solarSystemId":30006860,"solarSystemName":"R.KJX.9R1","location":{"x":-30900000000000000000,"y":-1630000000000000000,"z":17000000000000000000}},"30006861":{"solarSystemId":30006861,"solarSystemName":"M.HFW.02X","location":{"x":-34200000000000000000,"y":-939000000000000000,"z":15600000000000000000}},"30006862":{"solarSystemId":30006862,"solarSystemName":"C.KQH.513","location":{"x":-28400000000000000000,"y":109000000000000000,"z":13100000000000000000}},"30006863":{"solarSystemId":30006863,"solarSystemName":"C.BRK.QZ7","location":{"x":-35100000000000000000,"y":-284000000000000000,"z":8350000000000000000}},"30006864":{"solarSystemId":30006864,"solarSystemName":"M.VHW.3X8","location":{"x":-34300000000000000000,"y":-318000000000000000,"z":9140000000000000000}},"30006865":{"solarSystemId":30006865,"solarSystemName":"C.2TK.WG8","location":{"x":-35000000000000000000,"y":-315000000000000000,"z":10700000000000000000}},"30006866":{"solarSystemId":30006866,"solarSystemName":"M.BRW.TJD","location":{"x":-33900000000000000000,"y":-569000000000000000,"z":9970000000000000000}},"30006867":{"solarSystemId":30006867,"solarSystemName":"C.H9W.29B","location":{"x":-33800000000000000000,"y":-803000000000000000,"z":10300000000000000000}},"30006868":{"solarSystemId":30006868,"solarSystemName":"Order","location":{"x":-34700000000000000000,"y":-647000000000000000,"z":10800000000000000000}},"30006869":{"solarSystemId":30006869,"solarSystemName":"O.PEW.GGD","location":{"x":-34600000000000000000,"y":-567000000000000000,"z":10400000000000000000}},"30006870":{"solarSystemId":30006870,"solarSystemName":"C.1KW.ZZC","location":{"x":-34500000000000000000,"y":-609000000000000000,"z":11300000000000000000}},"30006871":{"solarSystemId":30006871,"solarSystemName":"N.C2E.MZ2","location":{"x":-35800000000000000000,"y":104000000000000000,"z":15100000000000000000}},"30006872":{"solarSystemId":30006872,"solarSystemName":"S.S01.5D4","location":{"x":-37300000000000000000,"y":-161000000000000000,"z":14500000000000000000}},"30006873":{"solarSystemId":30006873,"solarSystemName":"C.3HE.5FH","location":{"x":-36600000000000000000,"y":-889000000000000000,"z":12800000000000000000}},"30006874":{"solarSystemId":30006874,"solarSystemName":"C.ZDE.9Y4","location":{"x":-36300000000000000000,"y":-175000000000000000,"z":16000000000000000000}},"30006875":{"solarSystemId":30006875,"solarSystemName":"C.R01.PEB","location":{"x":-37400000000000000000,"y":-25900000000000000,"z":13800000000000000000}},"30006876":{"solarSystemId":30006876,"solarSystemName":"T.07Z.QBN","location":{"x":-32500000000000000000,"y":458000000000000000,"z":13100000000000000000}},"30006877":{"solarSystemId":30006877,"solarSystemName":"E.CKX.JB6","location":{"x":-31100000000000000000,"y":242000000000000000,"z":11700000000000000000}},"30006878":{"solarSystemId":30006878,"solarSystemName":"B.8MK.N35","location":{"x":-35200000000000000000,"y":-184000000000000000,"z":11500000000000000000}},"30006879":{"solarSystemId":30006879,"solarSystemName":"C.3NK.01D","location":{"x":-35000000000000000000,"y":-542000000000000000,"z":11700000000000000000}},"30006880":{"solarSystemId":30006880,"solarSystemName":"B.DDX.L0R","location":{"x":-30500000000000000000,"y":469000000000000000,"z":11200000000000000000}},"30006881":{"solarSystemId":30006881,"solarSystemName":"H.YCK.4F2","location":{"x":-35200000000000000000,"y":-95900000000000000,"z":20700000000000000000}},"30006882":{"solarSystemId":30006882,"solarSystemName":"U.X9K.EZ3","location":{"x":-34900000000000000000,"y":141000000000000000,"z":20500000000000000000}},"30006883":{"solarSystemId":30006883,"solarSystemName":"D.5JX.01N","location":{"x":-30900000000000000000,"y":434000000000000000,"z":21300000000000000000}},"30006884":{"solarSystemId":30006884,"solarSystemName":"R.62W.W31","location":{"x":-33500000000000000000,"y":40400000000000000,"z":16400000000000000000}},"30006885":{"solarSystemId":30006885,"solarSystemName":"O.PDZ.211","location":{"x":-32800000000000000000,"y":-1190000000000000000,"z":22200000000000000000}},"30006886":{"solarSystemId":30006886,"solarSystemName":"D.E01.Q68","location":{"x":-38000000000000000000,"y":-9240000000000000,"z":18400000000000000000}},"30006887":{"solarSystemId":30006887,"solarSystemName":"R.441.022","location":{"x":-41700000000000000000,"y":-74300000000000000,"z":20200000000000000000}},"30006888":{"solarSystemId":30006888,"solarSystemName":"E.L21.WQ9","location":{"x":-39700000000000000000,"y":348000000000000000,"z":19100000000000000000}},"30006889":{"solarSystemId":30006889,"solarSystemName":"H.R31.XQ2","location":{"x":-40800000000000000000,"y":95500000000000000,"z":15800000000000000000}},"30006890":{"solarSystemId":30006890,"solarSystemName":"E.C41.G87","location":{"x":-42100000000000000000,"y":262000000000000000,"z":15900000000000000000}},"30006891":{"solarSystemId":30006891,"solarSystemName":"O.9WE.8SP","location":{"x":-36800000000000000000,"y":-660000000000000000,"z":19700000000000000000}},"30006892":{"solarSystemId":30006892,"solarSystemName":"D.Q81.KMS","location":{"x":-46900000000000000000,"y":380000000000000000,"z":22400000000000000000}},"30006893":{"solarSystemId":30006893,"solarSystemName":"O.BN1.S51","location":{"x":-51500000000000000000,"y":-1340000000000000000,"z":16200000000000000000}},"30006894":{"solarSystemId":30006894,"solarSystemName":"C.H91.991","location":{"x":-48100000000000000000,"y":-1490000000000000000,"z":19000000000000000000}},"30006895":{"solarSystemId":30006895,"solarSystemName":"M.CN1.641","location":{"x":-51300000000000000000,"y":-1300000000000000000,"z":17900000000000000000}},"30006896":{"solarSystemId":30006896,"solarSystemName":"B.WT1.B65","location":{"x":-50600000000000000000,"y":188000000000000000,"z":16100000000000000000}},"30006897":{"solarSystemId":30006897,"solarSystemName":"U.F51.X3R","location":{"x":-43400000000000000000,"y":-473000000000000000,"z":12500000000000000000}},"30006898":{"solarSystemId":30006898,"solarSystemName":"E.F41.C31","location":{"x":-42300000000000000000,"y":-40000000000000000,"z":9980000000000000000}},"30006899":{"solarSystemId":30006899,"solarSystemName":"N.W31.LTQ","location":{"x":-41400000000000000000,"y":-22900000000000000,"z":13400000000000000000}},"30006900":{"solarSystemId":30006900,"solarSystemName":"S.M31.NX1","location":{"x":-41000000000000000000,"y":-65700000000000000,"z":12300000000000000000}},"30006901":{"solarSystemId":30006901,"solarSystemName":"E.G31.TZF","location":{"x":-41200000000000000000,"y":-24600000000000000,"z":13800000000000000000}},"30006902":{"solarSystemId":30006902,"solarSystemName":"D.K31.GR7","location":{"x":-41500000000000000000,"y":-268000000000000000,"z":10100000000000000000}},"30006903":{"solarSystemId":30006903,"solarSystemName":"R.421.SQ2","location":{"x":-39300000000000000000,"y":-95000000000000000,"z":22600000000000000000}},"30006904":{"solarSystemId":30006904,"solarSystemName":"U.F11.NNC","location":{"x":-38800000000000000000,"y":18500000000000000,"z":23700000000000000000}},"30006905":{"solarSystemId":30006905,"solarSystemName":"U.B51.JC3","location":{"x":-43500000000000000000,"y":127000000000000000,"z":22700000000000000000}},"30006906":{"solarSystemId":30006906,"solarSystemName":"B.061.HYY","location":{"x":-43800000000000000000,"y":-1000000000000000000,"z":21100000000000000000}},"30006907":{"solarSystemId":30006907,"solarSystemName":"C.Y41.9V8","location":{"x":-42500000000000000000,"y":-310000000000000000,"z":21600000000000000000}},"30006908":{"solarSystemId":30006908,"solarSystemName":"Q:2A5S","location":{"x":-15000000000000000000,"y":-2730000000000000000,"z":-5200000000000000000}},"30006909":{"solarSystemId":30006909,"solarSystemName":"Z:37I0","location":{"x":-16800000000000000000,"y":-3200000000000000000,"z":-7930000000000000000}},"30006910":{"solarSystemId":30006910,"solarSystemName":"M:29LN","location":{"x":-15800000000000000000,"y":-3130000000000000000,"z":-6170000000000000000}},"30006911":{"solarSystemId":30006911,"solarSystemName":"G:LR5L","location":{"x":-16500000000000000000,"y":-2400000000000000000,"z":-5430000000000000000}},"30006912":{"solarSystemId":30006912,"solarSystemName":"Z:3V58","location":{"x":-15700000000000000000,"y":-3600000000000000000,"z":-5890000000000000000}},"30006913":{"solarSystemId":30006913,"solarSystemName":"B:1883","location":{"x":-17900000000000000000,"y":-3260000000000000000,"z":-5540000000000000000}},"30006914":{"solarSystemId":30006914,"solarSystemName":"D:487A","location":{"x":-15100000000000000000,"y":-1570000000000000000,"z":-5430000000000000000}},"30006915":{"solarSystemId":30006915,"solarSystemName":"J:1869","location":{"x":-15000000000000000000,"y":-1260000000000000000,"z":-5930000000000000000}},"30006916":{"solarSystemId":30006916,"solarSystemName":"H:136I","location":{"x":-14700000000000000000,"y":-1670000000000000000,"z":-4990000000000000000}},"30006917":{"solarSystemId":30006917,"solarSystemName":"Z:25K5","location":{"x":-14500000000000000000,"y":-54000000000000000,"z":-4320000000000000000}},"30006918":{"solarSystemId":30006918,"solarSystemName":"U:35O1","location":{"x":-14600000000000000000,"y":-553000000000000000,"z":-4740000000000000000}},"30006919":{"solarSystemId":30006919,"solarSystemName":"Y:272R","location":{"x":-14400000000000000000,"y":-527000000000000000,"z":-4460000000000000000}},"30006920":{"solarSystemId":30006920,"solarSystemName":"U:2RT1","location":{"x":-14200000000000000000,"y":-291000000000000000,"z":-4260000000000000000}},"30006921":{"solarSystemId":30006921,"solarSystemName":"H:29T1","location":{"x":-14400000000000000000,"y":-235000000000000000,"z":-4720000000000000000}},"30006922":{"solarSystemId":30006922,"solarSystemName":"F:2NRA","location":{"x":-14600000000000000000,"y":-986000000000000000,"z":-4340000000000000000}},"30006923":{"solarSystemId":30006923,"solarSystemName":"D:34TI","location":{"x":-14100000000000000000,"y":-354000000000000000,"z":-5170000000000000000}},"30006924":{"solarSystemId":30006924,"solarSystemName":"Y:17A9","location":{"x":-14000000000000000000,"y":-551000000000000000,"z":-4410000000000000000}},"30006925":{"solarSystemId":30006925,"solarSystemName":"G:NL82","location":{"x":-14400000000000000000,"y":-519000000000000000,"z":-4590000000000000000}},"30006926":{"solarSystemId":30006926,"solarSystemName":"U:1T7N","location":{"x":-15000000000000000000,"y":-764000000000000000,"z":-5130000000000000000}},"30006927":{"solarSystemId":30006927,"solarSystemName":"J:1S9V","location":{"x":-14400000000000000000,"y":-100000000000000000,"z":-4630000000000000000}},"30006928":{"solarSystemId":30006928,"solarSystemName":"J:1I6S","location":{"x":-15100000000000000000,"y":-918000000000000000,"z":-4900000000000000000}},"30006929":{"solarSystemId":30006929,"solarSystemName":"F:T4O8","location":{"x":-14100000000000000000,"y":-868000000000000000,"z":-4430000000000000000}},"30006930":{"solarSystemId":30006930,"solarSystemName":"M:16T1","location":{"x":-14200000000000000000,"y":-438000000000000000,"z":-4030000000000000000}},"30006931":{"solarSystemId":30006931,"solarSystemName":"J:55I0","location":{"x":-14500000000000000000,"y":-800000000000000000,"z":-5000000000000000000}},"30006932":{"solarSystemId":30006932,"solarSystemName":"M:N9TK","location":{"x":-15100000000000000000,"y":-1200000000000000000,"z":-5150000000000000000}},"30006933":{"solarSystemId":30006933,"solarSystemName":"Y:1L3V","location":{"x":-13900000000000000000,"y":-371000000000000000,"z":-4640000000000000000}},"30006934":{"solarSystemId":30006934,"solarSystemName":"P:2STO","location":{"x":-14300000000000000000,"y":-289000000000000000,"z":-4240000000000000000}},"30006935":{"solarSystemId":30006935,"solarSystemName":"Y:2I1A","location":{"x":-14200000000000000000,"y":-409000000000000000,"z":-4630000000000000000}},"30006936":{"solarSystemId":30006936,"solarSystemName":"B:E7RS","location":{"x":-14300000000000000000,"y":-183000000000000000,"z":-4880000000000000000}},"30006937":{"solarSystemId":30006937,"solarSystemName":"P:26TA","location":{"x":-14100000000000000000,"y":-185000000000000000,"z":-4730000000000000000}},"30006938":{"solarSystemId":30006938,"solarSystemName":"F:4O91","location":{"x":-14600000000000000000,"y":-371000000000000000,"z":-4840000000000000000}},"30006939":{"solarSystemId":30006939,"solarSystemName":"U:1TNV","location":{"x":-14300000000000000000,"y":-149000000000000000,"z":-4060000000000000000}},"30006940":{"solarSystemId":30006940,"solarSystemName":"D:3TRA","location":{"x":-14000000000000000000,"y":-750000000000000000,"z":-6030000000000000000}},"30006941":{"solarSystemId":30006941,"solarSystemName":"D:241S","location":{"x":-14700000000000000000,"y":-452000000000000000,"z":-6370000000000000000}},"30006942":{"solarSystemId":30006942,"solarSystemName":"B:1ONN","location":{"x":-13600000000000000000,"y":101000000000000000,"z":-5740000000000000000}},"30006943":{"solarSystemId":30006943,"solarSystemName":"J:14TI","location":{"x":-13700000000000000000,"y":126000000000000000,"z":-6810000000000000000}},"30006944":{"solarSystemId":30006944,"solarSystemName":"P:1592","location":{"x":-14400000000000000000,"y":-808000000000000000,"z":-5270000000000000000}},"30006945":{"solarSystemId":30006945,"solarSystemName":"H:2R0O","location":{"x":-14400000000000000000,"y":-291000000000000000,"z":-6650000000000000000}},"30006946":{"solarSystemId":30006946,"solarSystemName":"U:VIN7","location":{"x":-14500000000000000000,"y":-325000000000000000,"z":-6330000000000000000}},"30006947":{"solarSystemId":30006947,"solarSystemName":"H:K22N","location":{"x":-13900000000000000000,"y":-474000000000000000,"z":-6430000000000000000}},"30006948":{"solarSystemId":30006948,"solarSystemName":"J:11AK","location":{"x":-13700000000000000000,"y":106000000000000000,"z":-6370000000000000000}},"30006949":{"solarSystemId":30006949,"solarSystemName":"U:V4IO","location":{"x":-14000000000000000000,"y":-847000000000000000,"z":-6270000000000000000}},"30006950":{"solarSystemId":30006950,"solarSystemName":"J:2RTO","location":{"x":-14600000000000000000,"y":-202000000000000000,"z":-6680000000000000000}},"30006951":{"solarSystemId":30006951,"solarSystemName":"F:16R7","location":{"x":-14700000000000000000,"y":-714000000000000000,"z":-6570000000000000000}},"30006952":{"solarSystemId":30006952,"solarSystemName":"Z:21LO","location":{"x":-14900000000000000000,"y":-508000000000000000,"z":-6010000000000000000}},"30006953":{"solarSystemId":30006953,"solarSystemName":"D:13KA","location":{"x":-13900000000000000000,"y":-207000000000000000,"z":-6080000000000000000}},"30006954":{"solarSystemId":30006954,"solarSystemName":"D:390O","location":{"x":-13800000000000000000,"y":-201000000000000000,"z":-6200000000000000000}},"30006955":{"solarSystemId":30006955,"solarSystemName":"H:3TOV","location":{"x":-14300000000000000000,"y":-828000000000000000,"z":-6770000000000000000}},"30006956":{"solarSystemId":30006956,"solarSystemName":"Z:32TS","location":{"x":-13800000000000000000,"y":-1490000000000000000,"z":-6300000000000000000}},"30006957":{"solarSystemId":30006957,"solarSystemName":"M:32V6","location":{"x":-14400000000000000000,"y":-765000000000000000,"z":-6930000000000000000}},"30006958":{"solarSystemId":30006958,"solarSystemName":"Y:145E","location":{"x":-13500000000000000000,"y":-8260000000000000,"z":-5650000000000000000}},"30006959":{"solarSystemId":30006959,"solarSystemName":"P:4A1V","location":{"x":-13700000000000000000,"y":-14800000000000000,"z":-6420000000000000000}},"30006960":{"solarSystemId":30006960,"solarSystemName":"M:28N0","location":{"x":-13500000000000000000,"y":-182000000000000000,"z":-5610000000000000000}},"30006961":{"solarSystemId":30006961,"solarSystemName":"J:35A9","location":{"x":-14400000000000000000,"y":217000000000000000,"z":-6030000000000000000}},"30006962":{"solarSystemId":30006962,"solarSystemName":"P:2AN3","location":{"x":-13800000000000000000,"y":583000000000000000,"z":-5850000000000000000}},"30006963":{"solarSystemId":30006963,"solarSystemName":"H:275S","location":{"x":-14400000000000000000,"y":385000000000000000,"z":-4630000000000000000}},"30006964":{"solarSystemId":30006964,"solarSystemName":"H:117N","location":{"x":-13900000000000000000,"y":115000000000000000,"z":-4850000000000000000}},"30006965":{"solarSystemId":30006965,"solarSystemName":"M:R8NA","location":{"x":-14800000000000000000,"y":-301000000000000000,"z":-4990000000000000000}},"30006966":{"solarSystemId":30006966,"solarSystemName":"Z:29AN","location":{"x":-13700000000000000000,"y":582000000000000000,"z":-5690000000000000000}},"30006967":{"solarSystemId":30006967,"solarSystemName":"M:358L","location":{"x":-13700000000000000000,"y":131000000000000000,"z":-5240000000000000000}},"30006968":{"solarSystemId":30006968,"solarSystemName":"H:OSS4","location":{"x":-14400000000000000000,"y":12000000000000000,"z":-5560000000000000000}},"30006969":{"solarSystemId":30006969,"solarSystemName":"G:1N13","location":{"x":-14400000000000000000,"y":284000000000000000,"z":-5700000000000000000}},"30006970":{"solarSystemId":30006970,"solarSystemName":"M:3OSK","location":{"x":-15300000000000000000,"y":164000000000000000,"z":-4410000000000000000}},"30006971":{"solarSystemId":30006971,"solarSystemName":"Q:1AS4","location":{"x":-14400000000000000000,"y":618000000000000000,"z":-4980000000000000000}},"30006972":{"solarSystemId":30006972,"solarSystemName":"M:1A9T","location":{"x":-14600000000000000000,"y":-120000000000000000,"z":-5260000000000000000}},"30006973":{"solarSystemId":30006973,"solarSystemName":"G:3EVS","location":{"x":-14500000000000000000,"y":972000000000000000,"z":-5770000000000000000}},"30006974":{"solarSystemId":30006974,"solarSystemName":"H:1437","location":{"x":-15000000000000000000,"y":628000000000000000,"z":-4500000000000000000}},"30006975":{"solarSystemId":30006975,"solarSystemName":"G:29SS","location":{"x":-15100000000000000000,"y":-341000000000000000,"z":-4710000000000000000}},"30006976":{"solarSystemId":30006976,"solarSystemName":"Y:2032","location":{"x":-14400000000000000000,"y":964000000000000000,"z":-5950000000000000000}},"30006977":{"solarSystemId":30006977,"solarSystemName":"P:21VS","location":{"x":-13800000000000000000,"y":1450000000000000000,"z":-4790000000000000000}},"30006978":{"solarSystemId":30006978,"solarSystemName":"B:1LEE","location":{"x":-14500000000000000000,"y":3610000000000000,"z":-4960000000000000000}},"30006979":{"solarSystemId":30006979,"solarSystemName":"F:1180","location":{"x":-14000000000000000000,"y":452000000000000000,"z":-6140000000000000000}},"30006980":{"solarSystemId":30006980,"solarSystemName":"P:35A3","location":{"x":-13900000000000000000,"y":-12200000000000000,"z":-5330000000000000000}},"30006981":{"solarSystemId":30006981,"solarSystemName":"U:33O9","location":{"x":-14200000000000000000,"y":-148000000000000000,"z":-5710000000000000000}},"30006982":{"solarSystemId":30006982,"solarSystemName":"H:354V","location":{"x":-15100000000000000000,"y":126000000000000000,"z":-4700000000000000000}},"30006983":{"solarSystemId":30006983,"solarSystemName":"B:218R","location":{"x":-12600000000000000000,"y":-61000000000000000,"z":-3720000000000000000}},"30006984":{"solarSystemId":30006984,"solarSystemName":"Y:3S21","location":{"x":-12900000000000000000,"y":-239000000000000000,"z":-4410000000000000000}},"30006985":{"solarSystemId":30006985,"solarSystemName":"Z:2LLO","location":{"x":-12200000000000000000,"y":-163000000000000000,"z":-3460000000000000000}},"30006986":{"solarSystemId":30006986,"solarSystemName":"P:3OEN","location":{"x":-13700000000000000000,"y":-238000000000000000,"z":-3920000000000000000}},"30006987":{"solarSystemId":30006987,"solarSystemName":"B:1ANK","location":{"x":-12500000000000000000,"y":263000000000000000,"z":-2960000000000000000}},"30006988":{"solarSystemId":30006988,"solarSystemName":"B:1085","location":{"x":-13200000000000000000,"y":-223000000000000000,"z":-4190000000000000000}},"30006989":{"solarSystemId":30006989,"solarSystemName":"P:1269","location":{"x":-13200000000000000000,"y":181000000000000000,"z":-3680000000000000000}},"30006990":{"solarSystemId":30006990,"solarSystemName":"M:144T","location":{"x":-13600000000000000000,"y":-699000000000000000,"z":-3190000000000000000}},"30006991":{"solarSystemId":30006991,"solarSystemName":"D:NR25","location":{"x":-13200000000000000000,"y":-812000000000000000,"z":-3630000000000000000}},"30006992":{"solarSystemId":30006992,"solarSystemName":"Q:2655","location":{"x":-13400000000000000000,"y":-256000000000000000,"z":-4090000000000000000}},"30006993":{"solarSystemId":30006993,"solarSystemName":"Q:N1KR","location":{"x":-13400000000000000000,"y":-598000000000000000,"z":-3210000000000000000}},"30006994":{"solarSystemId":30006994,"solarSystemName":"G:1I4O","location":{"x":-13700000000000000000,"y":-316000000000000000,"z":-3480000000000000000}},"30006995":{"solarSystemId":30006995,"solarSystemName":"H:230T","location":{"x":-13600000000000000000,"y":-559000000000000000,"z":-3670000000000000000}},"30006996":{"solarSystemId":30006996,"solarSystemName":"Z:1LTL","location":{"x":-12700000000000000000,"y":-406000000000000000,"z":-3270000000000000000}},"30006997":{"solarSystemId":30006997,"solarSystemName":"Z:1LR9","location":{"x":-13200000000000000000,"y":387000000000000000,"z":-3590000000000000000}},"30006998":{"solarSystemId":30006998,"solarSystemName":"Z:2I4E","location":{"x":-12600000000000000000,"y":-257000000000000000,"z":-2900000000000000000}},"30006999":{"solarSystemId":30006999,"solarSystemName":"Q:2IVI","location":{"x":-13000000000000000000,"y":164000000000000000,"z":-3990000000000000000}},"30007000":{"solarSystemId":30007000,"solarSystemName":"P:244T","location":{"x":-12600000000000000000,"y":-464000000000000000,"z":-4130000000000000000}},"30007001":{"solarSystemId":30007001,"solarSystemName":"Y:1T5T","location":{"x":-12900000000000000000,"y":-159000000000000000,"z":-3540000000000000000}},"30007002":{"solarSystemId":30007002,"solarSystemName":"Y:2KOL","location":{"x":-11400000000000000000,"y":-1510000000000000000,"z":-3690000000000000000}},"30007003":{"solarSystemId":30007003,"solarSystemName":"Z:3294","location":{"x":-11900000000000000000,"y":-2200000000000000000,"z":-2510000000000000000}},"30007004":{"solarSystemId":30007004,"solarSystemName":"U:24I3","location":{"x":-12100000000000000000,"y":-928000000000000000,"z":-3990000000000000000}},"30007005":{"solarSystemId":30007005,"solarSystemName":"H:1ER4","location":{"x":-12000000000000000000,"y":-2610000000000000000,"z":-4120000000000000000}},"30007006":{"solarSystemId":30007006,"solarSystemName":"P:11AI","location":{"x":-12900000000000000000,"y":-4350000000000000000,"z":-1730000000000000000}},"30007007":{"solarSystemId":30007007,"solarSystemName":"Q:13ON","location":{"x":-13200000000000000000,"y":-4900000000000000000,"z":-2430000000000000000}},"30007008":{"solarSystemId":30007008,"solarSystemName":"B:16RS","location":{"x":-11200000000000000000,"y":-4230000000000000000,"z":-822000000000000000}},"30007009":{"solarSystemId":30007009,"solarSystemName":"H:18SL","location":{"x":-12100000000000000000,"y":-1530000000000000000,"z":-3110000000000000000}},"30007010":{"solarSystemId":30007010,"solarSystemName":"B:3S63","location":{"x":-13700000000000000000,"y":-2980000000000000000,"z":-3500000000000000000}},"30007011":{"solarSystemId":30007011,"solarSystemName":"P:2L5K","location":{"x":-12000000000000000000,"y":-1620000000000000000,"z":-3520000000000000000}},"30007012":{"solarSystemId":30007012,"solarSystemName":"M:3RE0","location":{"x":-13900000000000000000,"y":-2590000000000000000,"z":-4460000000000000000}},"30007013":{"solarSystemId":30007013,"solarSystemName":"U:38NI","location":{"x":-12200000000000000000,"y":-4140000000000000000,"z":-4090000000000000000}},"30007014":{"solarSystemId":30007014,"solarSystemName":"B:2TAI","location":{"x":-13900000000000000000,"y":-3620000000000000000,"z":-3610000000000000000}},"30007015":{"solarSystemId":30007015,"solarSystemName":"G:329A","location":{"x":-13100000000000000000,"y":-1420000000000000000,"z":-3560000000000000000}},"30007016":{"solarSystemId":30007016,"solarSystemName":"P:3S30","location":{"x":-12000000000000000000,"y":-1350000000000000000,"z":-3900000000000000000}},"30007017":{"solarSystemId":30007017,"solarSystemName":"Y:32N9","location":{"x":-12500000000000000000,"y":-3070000000000000000,"z":-2320000000000000000}},"30007018":{"solarSystemId":30007018,"solarSystemName":"B:3034","location":{"x":-14700000000000000000,"y":583000000000000000,"z":-3970000000000000000}},"30007019":{"solarSystemId":30007019,"solarSystemName":"G:2439","location":{"x":-14800000000000000000,"y":540000000000000000,"z":-4330000000000000000}},"30007020":{"solarSystemId":30007020,"solarSystemName":"J:O910","location":{"x":-14000000000000000000,"y":1030000000000000000,"z":-3650000000000000000}},"30007021":{"solarSystemId":30007021,"solarSystemName":"M:1L0I","location":{"x":-13900000000000000000,"y":275000000000000000,"z":-3600000000000000000}},"30007022":{"solarSystemId":30007022,"solarSystemName":"M:29I8","location":{"x":-14700000000000000000,"y":473000000000000000,"z":-4030000000000000000}},"30007023":{"solarSystemId":30007023,"solarSystemName":"P:3N5L","location":{"x":-14200000000000000000,"y":172000000000000000,"z":-3220000000000000000}},"30007024":{"solarSystemId":30007024,"solarSystemName":"Z:1021","location":{"x":-14100000000000000000,"y":1240000000000000,"z":-3290000000000000000}},"30007025":{"solarSystemId":30007025,"solarSystemName":"M:130N","location":{"x":-13900000000000000000,"y":117000000000000000,"z":-3710000000000000000}},"30007026":{"solarSystemId":30007026,"solarSystemName":"G:1O0T","location":{"x":-14700000000000000000,"y":195000000000000000,"z":-4180000000000000000}},"30007027":{"solarSystemId":30007027,"solarSystemName":"M:1E3V","location":{"x":-13800000000000000000,"y":1340000000000000000,"z":-4030000000000000000}},"30007028":{"solarSystemId":30007028,"solarSystemName":"G:L6AR","location":{"x":-14100000000000000000,"y":630000000000000000,"z":-3410000000000000000}},"30007029":{"solarSystemId":30007029,"solarSystemName":"U:LA33","location":{"x":-14400000000000000000,"y":293000000000000000,"z":-3510000000000000000}},"30007030":{"solarSystemId":30007030,"solarSystemName":"M:18RE","location":{"x":-13800000000000000000,"y":31300000000000000,"z":-3830000000000000000}},"30007031":{"solarSystemId":30007031,"solarSystemName":"Z:VLOI","location":{"x":-14100000000000000000,"y":495000000000000000,"z":-3470000000000000000}},"30007032":{"solarSystemId":30007032,"solarSystemName":"Y:236L","location":{"x":-13300000000000000000,"y":1360000000000000000,"z":-3070000000000000000}},"30007033":{"solarSystemId":30007033,"solarSystemName":"B:1O97","location":{"x":-14600000000000000000,"y":129000000000000000,"z":-3620000000000000000}},"30007034":{"solarSystemId":30007034,"solarSystemName":"Z:2ORV","location":{"x":-14500000000000000000,"y":14400000000000000,"z":-3580000000000000000}},"30007035":{"solarSystemId":30007035,"solarSystemName":"U:22NE","location":{"x":-13800000000000000000,"y":124000000000000000,"z":-4960000000000000000}},"30007036":{"solarSystemId":30007036,"solarSystemName":"G:23R2","location":{"x":-13700000000000000000,"y":-1040000000000000000,"z":-5200000000000000000}},"30007037":{"solarSystemId":30007037,"solarSystemName":"P:EO4E","location":{"x":-13400000000000000000,"y":-573000000000000000,"z":-4720000000000000000}},"30007038":{"solarSystemId":30007038,"solarSystemName":"D:N4A3","location":{"x":-13800000000000000000,"y":-517000000000000000,"z":-4170000000000000000}},"30007039":{"solarSystemId":30007039,"solarSystemName":"H:15IO","location":{"x":-13200000000000000000,"y":-177000000000000000,"z":-5480000000000000000}},"30007040":{"solarSystemId":30007040,"solarSystemName":"Y:V3A3","location":{"x":-13100000000000000000,"y":-273000000000000000,"z":-5390000000000000000}},"30007041":{"solarSystemId":30007041,"solarSystemName":"J:2KLK","location":{"x":-13800000000000000000,"y":-837000000000000000,"z":-4150000000000000000}},"30007042":{"solarSystemId":30007042,"solarSystemName":"G:R22T","location":{"x":-13800000000000000000,"y":-561000000000000000,"z":-3950000000000000000}},"30007043":{"solarSystemId":30007043,"solarSystemName":"D:452R","location":{"x":-13400000000000000000,"y":-894000000000000000,"z":-4350000000000000000}},"30007044":{"solarSystemId":30007044,"solarSystemName":"Q:358R","location":{"x":-12700000000000000000,"y":-151000000000000000,"z":-4740000000000000000}},"30007045":{"solarSystemId":30007045,"solarSystemName":"B:IN32","location":{"x":-13700000000000000000,"y":-349000000000000000,"z":-5320000000000000000}},"30007046":{"solarSystemId":30007046,"solarSystemName":"Y:4S33","location":{"x":-13500000000000000000,"y":-71200000000000000,"z":-5000000000000000000}},"30007047":{"solarSystemId":30007047,"solarSystemName":"D:4ES6","location":{"x":-13400000000000000000,"y":-208000000000000000,"z":-4670000000000000000}},"30007048":{"solarSystemId":30007048,"solarSystemName":"Y:2L9E","location":{"x":-13700000000000000000,"y":-291000000000000000,"z":-4470000000000000000}},"30007049":{"solarSystemId":30007049,"solarSystemName":"U:1TRO","location":{"x":-13500000000000000000,"y":-254000000000000000,"z":-4540000000000000000}},"30007050":{"solarSystemId":30007050,"solarSystemName":"Q:334V","location":{"x":-13200000000000000000,"y":-644000000000000000,"z":-4770000000000000000}},"30007051":{"solarSystemId":30007051,"solarSystemName":"Y:52LR","location":{"x":-13600000000000000000,"y":-594000000000000000,"z":-5080000000000000000}},"30007052":{"solarSystemId":30007052,"solarSystemName":"U:E5RV","location":{"x":-12300000000000000000,"y":-385000000000000000,"z":-4390000000000000000}},"30007053":{"solarSystemId":30007053,"solarSystemName":"G:21OE","location":{"x":-13100000000000000000,"y":-241000000000000000,"z":-4990000000000000000}},"30007054":{"solarSystemId":30007054,"solarSystemName":"Z:2RR4","location":{"x":-14000000000000000000,"y":-51900000000000000,"z":-4980000000000000000}},"30007055":{"solarSystemId":30007055,"solarSystemName":"L.V31.QH3","location":{"x":-41100000000000000000,"y":-136000000000000000,"z":5910000000000000000}},"30007056":{"solarSystemId":30007056,"solarSystemName":"M.E41.VW5","location":{"x":-42600000000000000000,"y":-213000000000000000,"z":6140000000000000000}},"30007057":{"solarSystemId":30007057,"solarSystemName":"O.R41.BBG","location":{"x":-42000000000000000000,"y":-854000000000000000,"z":7170000000000000000}},"30007058":{"solarSystemId":30007058,"solarSystemName":"C.M31.DGB","location":{"x":-41000000000000000000,"y":-819000000000000000,"z":6260000000000000000}},"30007059":{"solarSystemId":30007059,"solarSystemName":"M.441.XSL","location":{"x":-41700000000000000000,"y":-517000000000000000,"z":6770000000000000000}},"30007060":{"solarSystemId":30007060,"solarSystemName":"I.931.HF7","location":{"x":-40700000000000000000,"y":-277000000000000000,"z":10800000000000000000}},"30007061":{"solarSystemId":30007061,"solarSystemName":"N.W01.JV6","location":{"x":-38000000000000000000,"y":-238000000000000000,"z":10900000000000000000}},"30007062":{"solarSystemId":30007062,"solarSystemName":"C.B11.P4F","location":{"x":-38900000000000000000,"y":-762000000000000000,"z":10500000000000000000}},"30007063":{"solarSystemId":30007063,"solarSystemName":"M.X11.9YY","location":{"x":-39000000000000000000,"y":-1000000000000000000,"z":8540000000000000000}},"30007064":{"solarSystemId":30007064,"solarSystemName":"O.601.VB6","location":{"x":-37100000000000000000,"y":242000000000000000,"z":10900000000000000000}},"30007065":{"solarSystemId":30007065,"solarSystemName":"A.031.12N","location":{"x":-40400000000000000000,"y":-435000000000000000,"z":8250000000000000000}},"30007066":{"solarSystemId":30007066,"solarSystemName":"T.V11.M8C","location":{"x":-38700000000000000000,"y":-586000000000000000,"z":7590000000000000000}},"30007067":{"solarSystemId":30007067,"solarSystemName":"S.C21.M68","location":{"x":-39800000000000000000,"y":-296000000000000000,"z":7170000000000000000}},"30007068":{"solarSystemId":30007068,"solarSystemName":"H.131.WL9","location":{"x":-40400000000000000000,"y":-341000000000000000,"z":8510000000000000000}},"30007069":{"solarSystemId":30007069,"solarSystemName":"C.T31.L5L","location":{"x":-40800000000000000000,"y":-511000000000000000,"z":6120000000000000000}},"30007070":{"solarSystemId":30007070,"solarSystemName":"C.L31.PGG","location":{"x":-40900000000000000000,"y":-855000000000000000,"z":7420000000000000000}},"30007071":{"solarSystemId":30007071,"solarSystemName":"T.9TE.FK5","location":{"x":-36100000000000000000,"y":215000000000000000,"z":4820000000000000000}},"30007072":{"solarSystemId":30007072,"solarSystemName":"M.VWW.ZRB","location":{"x":-34500000000000000000,"y":-808000000000000000,"z":6240000000000000000}},"30007073":{"solarSystemId":30007073,"solarSystemName":"O.H9K.J8L","location":{"x":-34900000000000000000,"y":-514000000000000000,"z":8180000000000000000}},"30007074":{"solarSystemId":30007074,"solarSystemName":"O.G3W.XDP","location":{"x":-33600000000000000000,"y":-666000000000000000,"z":5970000000000000000}},"30007075":{"solarSystemId":30007075,"solarSystemName":"M.ZQK.DGD","location":{"x":-35300000000000000000,"y":-567000000000000000,"z":4190000000000000000}},"30007076":{"solarSystemId":30007076,"solarSystemName":"O.ZPK.NLR","location":{"x":-35300000000000000000,"y":-485000000000000000,"z":4140000000000000000}},"30007077":{"solarSystemId":30007077,"solarSystemName":"B.P2K.V3Q","location":{"x":-34700000000000000000,"y":-725000000000000000,"z":5750000000000000000}},"30007078":{"solarSystemId":30007078,"solarSystemName":"C.6CW.Z6J","location":{"x":-34000000000000000000,"y":-908000000000000000,"z":4430000000000000000}},"30007079":{"solarSystemId":30007079,"solarSystemName":"L.301.0N4","location":{"x":-37000000000000000000,"y":-4930000000000000,"z":5590000000000000000}},"30007080":{"solarSystemId":30007080,"solarSystemName":"S.101.5R1","location":{"x":-37000000000000000000,"y":-50900000000000000,"z":6220000000000000000}},"30007081":{"solarSystemId":30007081,"solarSystemName":"U.611.SZ6","location":{"x":-38300000000000000000,"y":-248000000000000000,"z":6900000000000000000}},"30007082":{"solarSystemId":30007082,"solarSystemName":"I.9EE.753","location":{"x":-36900000000000000000,"y":114000000000000000,"z":4540000000000000000}},"30007083":{"solarSystemId":30007083,"solarSystemName":"M.B01.P7B","location":{"x":-37700000000000000000,"y":-801000000000000000,"z":7040000000000000000}},"30007084":{"solarSystemId":30007084,"solarSystemName":"M.R01.2TJ","location":{"x":-37400000000000000000,"y":-913000000000000000,"z":5690000000000000000}},"30007085":{"solarSystemId":30007085,"solarSystemName":"B.XCW.VXG","location":{"x":-34000000000000000000,"y":859000000000000000,"z":3910000000000000000}},"30007086":{"solarSystemId":30007086,"solarSystemName":"C.C7W.26Q","location":{"x":-33700000000000000000,"y":-727000000000000000,"z":2680000000000000000}},"30007087":{"solarSystemId":30007087,"solarSystemName":"C.8RW.9BG","location":{"x":-33900000000000000000,"y":-854000000000000000,"z":3600000000000000000}},"30007088":{"solarSystemId":30007088,"solarSystemName":"C.F0K.PJP","location":{"x":-34600000000000000000,"y":-677000000000000000,"z":2810000000000000000}},"30007089":{"solarSystemId":30007089,"solarSystemName":"C.73W.T5Q","location":{"x":-33600000000000000000,"y":-727000000000000000,"z":2890000000000000000}},"30007090":{"solarSystemId":30007090,"solarSystemName":"O.3TW.KQM","location":{"x":-33800000000000000000,"y":-636000000000000000,"z":2350000000000000000}},"30007091":{"solarSystemId":30007091,"solarSystemName":"C.1QZ.JXL","location":{"x":-33000000000000000000,"y":-535000000000000000,"z":3490000000000000000}},"30007092":{"solarSystemId":30007092,"solarSystemName":"Raunen","location":{"x":-34300000000000000000,"y":-917000000000000000,"z":3670000000000000000}},"30007093":{"solarSystemId":30007093,"solarSystemName":"C.HBZ.HC2","location":{"x":-33100000000000000000,"y":90900000000000000,"z":3550000000000000000}},"30007094":{"solarSystemId":30007094,"solarSystemName":"C.TFZ.DP8","location":{"x":-33100000000000000000,"y":-309000000000000000,"z":3570000000000000000}},"30007095":{"solarSystemId":30007095,"solarSystemName":"B.TTW.9NG","location":{"x":-33800000000000000000,"y":-843000000000000000,"z":2230000000000000000}},"30007096":{"solarSystemId":30007096,"solarSystemName":"M.F2W.84D","location":{"x":-33500000000000000000,"y":-545000000000000000,"z":3960000000000000000}},"30007097":{"solarSystemId":30007097,"solarSystemName":"C.H5W.YFX","location":{"x":-33600000000000000000,"y":-961000000000000000,"z":3950000000000000000}},"30007098":{"solarSystemId":30007098,"solarSystemName":"T.551.7WL","location":{"x":-42900000000000000000,"y":-537000000000000000,"z":11600000000000000000}},"30007099":{"solarSystemId":30007099,"solarSystemName":"D.J51.077","location":{"x":-43600000000000000000,"y":-260000000000000000,"z":10600000000000000000}},"30007100":{"solarSystemId":30007100,"solarSystemName":"A.H41.DQ1","location":{"x":-42400000000000000000,"y":-59100000000000000,"z":9950000000000000000}},"30007101":{"solarSystemId":30007101,"solarSystemName":"H.T51.C31","location":{"x":-43100000000000000000,"y":40000000000000000,"z":10300000000000000000}},"30007102":{"solarSystemId":30007102,"solarSystemName":"L.Z51.582","location":{"x":-43700000000000000000,"y":-81300000000000000,"z":10900000000000000000}},"30007103":{"solarSystemId":30007103,"solarSystemName":"H:3018","location":{"x":-12100000000000000000,"y":3400000000000000000,"z":-11000000000000000000}},"30007104":{"solarSystemId":30007104,"solarSystemName":"G:3550","location":{"x":-11900000000000000000,"y":5080000000000000000,"z":-11100000000000000000}},"30007105":{"solarSystemId":30007105,"solarSystemName":"Z:1K9K","location":{"x":-10400000000000000000,"y":4800000000000000000,"z":-10600000000000000000}},"30007106":{"solarSystemId":30007106,"solarSystemName":"M:218K","location":{"x":-10900000000000000000,"y":4930000000000000000,"z":-10600000000000000000}},"30007107":{"solarSystemId":30007107,"solarSystemName":"G:165A","location":{"x":-12300000000000000000,"y":3450000000000000000,"z":-9840000000000000000}},"30007108":{"solarSystemId":30007108,"solarSystemName":"B:307K","location":{"x":-11700000000000000000,"y":3630000000000000000,"z":-10500000000000000000}},"30007109":{"solarSystemId":30007109,"solarSystemName":"G:2K38","location":{"x":-13300000000000000000,"y":2580000000000000000,"z":-8550000000000000000}},"30007110":{"solarSystemId":30007110,"solarSystemName":"F:2O93","location":{"x":-14800000000000000000,"y":4040000000000000000,"z":-8720000000000000000}},"30007111":{"solarSystemId":30007111,"solarSystemName":"P:2R7V","location":{"x":-14300000000000000000,"y":3920000000000000000,"z":-8210000000000000000}},"30007112":{"solarSystemId":30007112,"solarSystemName":"B:2V93","location":{"x":-13200000000000000000,"y":3000000000000000000,"z":-11100000000000000000}},"30007113":{"solarSystemId":30007113,"solarSystemName":"B:3S00","location":{"x":-14800000000000000000,"y":2580000000000000000,"z":-8570000000000000000}},"30007114":{"solarSystemId":30007114,"solarSystemName":"G:129T","location":{"x":-14500000000000000000,"y":3470000000000000000,"z":-8670000000000000000}},"30007115":{"solarSystemId":30007115,"solarSystemName":"Q:28V6","location":{"x":-14100000000000000000,"y":3540000000000000000,"z":-9800000000000000000}},"30007116":{"solarSystemId":30007116,"solarSystemName":"D:10LK","location":{"x":-15500000000000000000,"y":3620000000000000000,"z":-9050000000000000000}},"30007117":{"solarSystemId":30007117,"solarSystemName":"B:31TE","location":{"x":-20400000000000000000,"y":3680000000000000000,"z":-5070000000000000000}},"30007118":{"solarSystemId":30007118,"solarSystemName":"J:32T9","location":{"x":-19000000000000000000,"y":4110000000000000000,"z":-6010000000000000000}},"30007119":{"solarSystemId":30007119,"solarSystemName":"U:17NS","location":{"x":-20500000000000000000,"y":2930000000000000000,"z":-7030000000000000000}},"30007120":{"solarSystemId":30007120,"solarSystemName":"D:S41V","location":{"x":-18600000000000000000,"y":2880000000000000000,"z":-7290000000000000000}},"30007121":{"solarSystemId":30007121,"solarSystemName":"M:34K0","location":{"x":-22000000000000000000,"y":3150000000000000000,"z":-6330000000000000000}},"30007122":{"solarSystemId":30007122,"solarSystemName":"M:L8LN","location":{"x":-20600000000000000000,"y":3620000000000000000,"z":-4680000000000000000}},"30007123":{"solarSystemId":30007123,"solarSystemName":"J:1O47","location":{"x":-19200000000000000000,"y":2420000000000000000,"z":-8410000000000000000}},"30007124":{"solarSystemId":30007124,"solarSystemName":"Z:14KS","location":{"x":-19800000000000000000,"y":2960000000000000000,"z":-9120000000000000000}},"30007125":{"solarSystemId":30007125,"solarSystemName":"D:1266","location":{"x":-21200000000000000000,"y":2680000000000000000,"z":-5460000000000000000}},"30007126":{"solarSystemId":30007126,"solarSystemName":"Z:2367","location":{"x":-21700000000000000000,"y":2890000000000000000,"z":-10700000000000000000}},"30007127":{"solarSystemId":30007127,"solarSystemName":"D:273S","location":{"x":-22200000000000000000,"y":4420000000000000000,"z":-11200000000000000000}},"30007128":{"solarSystemId":30007128,"solarSystemName":"Y:258L","location":{"x":-22200000000000000000,"y":2010000000000000000,"z":-8810000000000000000}},"30007129":{"solarSystemId":30007129,"solarSystemName":"M:32LV","location":{"x":-20900000000000000000,"y":1530000000000000000,"z":-9610000000000000000}},"30007130":{"solarSystemId":30007130,"solarSystemName":"H:2IKO","location":{"x":-21900000000000000000,"y":1740000000000000000,"z":-8960000000000000000}},"30007131":{"solarSystemId":30007131,"solarSystemName":"Y:26R0","location":{"x":-21900000000000000000,"y":3130000000000000000,"z":-8910000000000000000}},"30007132":{"solarSystemId":30007132,"solarSystemName":"J:135N","location":{"x":-20800000000000000000,"y":1180000000000000000,"z":-11000000000000000000}},"30007133":{"solarSystemId":30007133,"solarSystemName":"P:2A55","location":{"x":-20500000000000000000,"y":1190000000000000000,"z":-11300000000000000000}},"30007134":{"solarSystemId":30007134,"solarSystemName":"U:R770","location":{"x":-21600000000000000000,"y":3100000000000000000,"z":-9580000000000000000}},"30007135":{"solarSystemId":30007135,"solarSystemName":"P:LT79","location":{"x":-21200000000000000000,"y":1970000000000000000,"z":-11300000000000000000}},"30007136":{"solarSystemId":30007136,"solarSystemName":"U:2NKR","location":{"x":-16700000000000000000,"y":4800000000000000000,"z":-6860000000000000000}},"30007137":{"solarSystemId":30007137,"solarSystemName":"D:16A4","location":{"x":-18500000000000000000,"y":2970000000000000000,"z":-6070000000000000000}},"30007138":{"solarSystemId":30007138,"solarSystemName":"J:K829","location":{"x":-16200000000000000000,"y":3730000000000000000,"z":-5650000000000000000}},"30007139":{"solarSystemId":30007139,"solarSystemName":"J:LNRA","location":{"x":-16400000000000000000,"y":5890000000000000000,"z":-5250000000000000000}},"30007140":{"solarSystemId":30007140,"solarSystemName":"P:S8V4","location":{"x":-16800000000000000000,"y":5800000000000000000,"z":-6020000000000000000}},"30007141":{"solarSystemId":30007141,"solarSystemName":"M:16RN","location":{"x":-18400000000000000000,"y":4790000000000000000,"z":-4790000000000000000}},"30007142":{"solarSystemId":30007142,"solarSystemName":"J:SE61","location":{"x":-17000000000000000000,"y":3920000000000000000,"z":-5210000000000000000}},"30007143":{"solarSystemId":30007143,"solarSystemName":"Z:KKLK","location":{"x":-15400000000000000000,"y":3060000000000000000,"z":-5190000000000000000}},"30007144":{"solarSystemId":30007144,"solarSystemName":"J:3EV1","location":{"x":-17400000000000000000,"y":3110000000000000000,"z":-7570000000000000000}},"30007145":{"solarSystemId":30007145,"solarSystemName":"P:29TE","location":{"x":-16100000000000000000,"y":4600000000000000000,"z":-7010000000000000000}},"30007146":{"solarSystemId":30007146,"solarSystemName":"F:2T57","location":{"x":-16800000000000000000,"y":4290000000000000000,"z":-7310000000000000000}},"30007147":{"solarSystemId":30007147,"solarSystemName":"Y:278A","location":{"x":-15200000000000000000,"y":3420000000000000000,"z":-8090000000000000000}},"30007148":{"solarSystemId":30007148,"solarSystemName":"D:2889","location":{"x":-16000000000000000000,"y":2610000000000000000,"z":-7490000000000000000}},"30007149":{"solarSystemId":30007149,"solarSystemName":"F:2706","location":{"x":-15000000000000000000,"y":3290000000000000000,"z":-7940000000000000000}},"30007150":{"solarSystemId":30007150,"solarSystemName":"P:1I9T","location":{"x":-15700000000000000000,"y":3900000000000000000,"z":-7420000000000000000}},"30007151":{"solarSystemId":30007151,"solarSystemName":"J:125E","location":{"x":-19900000000000000000,"y":-928000000000000000,"z":-4950000000000000000}},"30007152":{"solarSystemId":30007152,"solarSystemName":"G:14VN","location":{"x":-19700000000000000000,"y":-812000000000000000,"z":-5450000000000000000}},"30007153":{"solarSystemId":30007153,"solarSystemName":"P:2744","location":{"x":-19200000000000000000,"y":-590000000000000000,"z":-5690000000000000000}},"30007154":{"solarSystemId":30007154,"solarSystemName":"G:S03I","location":{"x":-19300000000000000000,"y":-1600000000000000000,"z":-5110000000000000000}},"30007155":{"solarSystemId":30007155,"solarSystemName":"M:18OR","location":{"x":-19600000000000000000,"y":-1730000000000000000,"z":-6040000000000000000}},"30007156":{"solarSystemId":30007156,"solarSystemName":"M:1A8O","location":{"x":-19300000000000000000,"y":-1400000000000000000,"z":-5000000000000000000}},"30007157":{"solarSystemId":30007157,"solarSystemName":"Q:9VAA","location":{"x":-20400000000000000000,"y":-779000000000000000,"z":-5690000000000000000}},"30007158":{"solarSystemId":30007158,"solarSystemName":"H:178S","location":{"x":-19100000000000000000,"y":-1050000000000000000,"z":-5380000000000000000}},"30007159":{"solarSystemId":30007159,"solarSystemName":"H:SKL6","location":{"x":-19200000000000000000,"y":-992000000000000000,"z":-5110000000000000000}},"30007160":{"solarSystemId":30007160,"solarSystemName":"F:17K4","location":{"x":-19200000000000000000,"y":-1270000000000000000,"z":-5460000000000000000}},"30007161":{"solarSystemId":30007161,"solarSystemName":"F:K859","location":{"x":-19800000000000000000,"y":-853000000000000000,"z":-5650000000000000000}},"30007162":{"solarSystemId":30007162,"solarSystemName":"H:1AAS","location":{"x":-20000000000000000000,"y":-1160000000000000000,"z":-5390000000000000000}},"30007163":{"solarSystemId":30007163,"solarSystemName":"P:13L0","location":{"x":-19400000000000000000,"y":-703000000000000000,"z":-5600000000000000000}},"30007164":{"solarSystemId":30007164,"solarSystemName":"P:176I","location":{"x":-19700000000000000000,"y":-926000000000000000,"z":-4900000000000000000}},"30007165":{"solarSystemId":30007165,"solarSystemName":"F:T180","location":{"x":-19600000000000000000,"y":-1540000000000000000,"z":-5100000000000000000}},"30007166":{"solarSystemId":30007166,"solarSystemName":"Q:RSS3","location":{"x":-20400000000000000000,"y":-773000000000000000,"z":-5840000000000000000}},"30007167":{"solarSystemId":30007167,"solarSystemName":"H:1850","location":{"x":-19700000000000000000,"y":-1270000000000000000,"z":-5680000000000000000}},"30007168":{"solarSystemId":30007168,"solarSystemName":"J:14AA","location":{"x":-20400000000000000000,"y":-695000000000000000,"z":-5900000000000000000}},"30007169":{"solarSystemId":30007169,"solarSystemName":"B:2KSO","location":{"x":-20500000000000000000,"y":-403000000000000000,"z":-7340000000000000000}},"30007170":{"solarSystemId":30007170,"solarSystemName":"G:3V2A","location":{"x":-21300000000000000000,"y":-520000000000000000,"z":-7390000000000000000}},"30007171":{"solarSystemId":30007171,"solarSystemName":"M:1AK5","location":{"x":-20800000000000000000,"y":-556000000000000000,"z":-7500000000000000000}},"30007172":{"solarSystemId":30007172,"solarSystemName":"U:ASN5","location":{"x":-20800000000000000000,"y":-437000000000000000,"z":-8020000000000000000}},"30007173":{"solarSystemId":30007173,"solarSystemName":"M:12S8","location":{"x":-20800000000000000000,"y":-312000000000000000,"z":-7500000000000000000}},"30007174":{"solarSystemId":30007174,"solarSystemName":"U:18TN","location":{"x":-20300000000000000000,"y":-510000000000000000,"z":-7640000000000000000}},"30007175":{"solarSystemId":30007175,"solarSystemName":"Z:2023","location":{"x":-20900000000000000000,"y":-747000000000000000,"z":-7070000000000000000}},"30007176":{"solarSystemId":30007176,"solarSystemName":"F:EK17","location":{"x":-20500000000000000000,"y":-454000000000000000,"z":-7520000000000000000}},"30007177":{"solarSystemId":30007177,"solarSystemName":"U:K2KE","location":{"x":-21100000000000000000,"y":-734000000000000000,"z":-7620000000000000000}},"30007178":{"solarSystemId":30007178,"solarSystemName":"D:2E6I","location":{"x":-20500000000000000000,"y":-737000000000000000,"z":-7550000000000000000}},"30007179":{"solarSystemId":30007179,"solarSystemName":"H:115A","location":{"x":-20400000000000000000,"y":-580000000000000000,"z":-7460000000000000000}},"30007180":{"solarSystemId":30007180,"solarSystemName":"Z:1AN7","location":{"x":-20700000000000000000,"y":-939000000000000000,"z":-7700000000000000000}},"30007181":{"solarSystemId":30007181,"solarSystemName":"B:369V","location":{"x":-20300000000000000000,"y":-487000000000000000,"z":-7550000000000000000}},"30007182":{"solarSystemId":30007182,"solarSystemName":"M:SN4I","location":{"x":-21100000000000000000,"y":-734000000000000000,"z":-7180000000000000000}},"30007183":{"solarSystemId":30007183,"solarSystemName":"G:1375","location":{"x":-20600000000000000000,"y":-959000000000000000,"z":-7700000000000000000}},"30007184":{"solarSystemId":30007184,"solarSystemName":"B:V5L1","location":{"x":-21000000000000000000,"y":-390000000000000000,"z":-7180000000000000000}},"30007185":{"solarSystemId":30007185,"solarSystemName":"U:1K5E","location":{"x":-20500000000000000000,"y":-297000000000000000,"z":-5670000000000000000}},"30007186":{"solarSystemId":30007186,"solarSystemName":"G:1A27","location":{"x":-20200000000000000000,"y":127000000000000000,"z":-4870000000000000000}},"30007187":{"solarSystemId":30007187,"solarSystemName":"U:1ELT","location":{"x":-20300000000000000000,"y":-284000000000000000,"z":-5890000000000000000}},"30007188":{"solarSystemId":30007188,"solarSystemName":"F:10V2","location":{"x":-19800000000000000000,"y":-234000000000000000,"z":-5790000000000000000}},"30007189":{"solarSystemId":30007189,"solarSystemName":"Q:1582","location":{"x":-19800000000000000000,"y":-167000000000000000,"z":-5590000000000000000}},"30007190":{"solarSystemId":30007190,"solarSystemName":"F:R989","location":{"x":-20000000000000000000,"y":-257000000000000000,"z":-5260000000000000000}},"30007191":{"solarSystemId":30007191,"solarSystemName":"U:2E98","location":{"x":-19700000000000000000,"y":187000000000000000,"z":-5680000000000000000}},"30007192":{"solarSystemId":30007192,"solarSystemName":"G:1281","location":{"x":-20300000000000000000,"y":-132000000000000000,"z":-5200000000000000000}},"30007193":{"solarSystemId":30007193,"solarSystemName":"Z:18VE","location":{"x":-20500000000000000000,"y":29900000000000000,"z":-5350000000000000000}},"30007194":{"solarSystemId":30007194,"solarSystemName":"P:VV0E","location":{"x":-20300000000000000000,"y":209000000000000000,"z":-5570000000000000000}},"30007195":{"solarSystemId":30007195,"solarSystemName":"Q:1ARR","location":{"x":-20300000000000000000,"y":448000000000000000,"z":-4970000000000000000}},"30007196":{"solarSystemId":30007196,"solarSystemName":"H:128A","location":{"x":-19900000000000000000,"y":129000000000000000,"z":-5340000000000000000}},"30007197":{"solarSystemId":30007197,"solarSystemName":"M:15TV","location":{"x":-20100000000000000000,"y":54100000000000000,"z":-6190000000000000000}},"30007198":{"solarSystemId":30007198,"solarSystemName":"M:3RES","location":{"x":-20600000000000000000,"y":-242000000000000000,"z":-6090000000000000000}},"30007199":{"solarSystemId":30007199,"solarSystemName":"M:NKTO","location":{"x":-20700000000000000000,"y":304000000000000000,"z":-5970000000000000000}},"30007200":{"solarSystemId":30007200,"solarSystemName":"Z:14R4","location":{"x":-20600000000000000000,"y":-21500000000000000,"z":-5330000000000000000}},"30007201":{"solarSystemId":30007201,"solarSystemName":"D:1T4I","location":{"x":-20600000000000000000,"y":391000000000000000,"z":-8450000000000000000}},"30007202":{"solarSystemId":30007202,"solarSystemName":"Z:3K8K","location":{"x":-21400000000000000000,"y":148000000000000000,"z":-8490000000000000000}},"30007203":{"solarSystemId":30007203,"solarSystemName":"F:K58I","location":{"x":-20100000000000000000,"y":461000000000000000,"z":-6920000000000000000}},"30007204":{"solarSystemId":30007204,"solarSystemName":"J:AV3T","location":{"x":-20600000000000000000,"y":-56500000000000000,"z":-7370000000000000000}},"30007205":{"solarSystemId":30007205,"solarSystemName":"B:T10I","location":{"x":-21400000000000000000,"y":190000000000000000,"z":-8820000000000000000}},"30007206":{"solarSystemId":30007206,"solarSystemName":"Y:1L18","location":{"x":-21400000000000000000,"y":761000000000000000,"z":-7540000000000000000}},"30007207":{"solarSystemId":30007207,"solarSystemName":"J:1VK5","location":{"x":-20900000000000000000,"y":456000000000000000,"z":-8040000000000000000}},"30007208":{"solarSystemId":30007208,"solarSystemName":"Y:1A8A","location":{"x":-21800000000000000000,"y":2000000000000000000,"z":-8190000000000000000}},"30007209":{"solarSystemId":30007209,"solarSystemName":"H:165R","location":{"x":-20600000000000000000,"y":841000000000000000,"z":-8310000000000000000}},"30007210":{"solarSystemId":30007210,"solarSystemName":"Z:11A5","location":{"x":-20700000000000000000,"y":1330000000000000000,"z":-8510000000000000000}},"30007211":{"solarSystemId":30007211,"solarSystemName":"U:16S0","location":{"x":-20300000000000000000,"y":686000000000000000,"z":-8010000000000000000}},"30007212":{"solarSystemId":30007212,"solarSystemName":"U:2IS3","location":{"x":-20900000000000000000,"y":374000000000000000,"z":-7150000000000000000}},"30007213":{"solarSystemId":30007213,"solarSystemName":"M:E87R","location":{"x":-20200000000000000000,"y":478000000000000000,"z":-6660000000000000000}},"30007214":{"solarSystemId":30007214,"solarSystemName":"B:SK46","location":{"x":-21300000000000000000,"y":648000000000000000,"z":-7140000000000000000}},"30007215":{"solarSystemId":30007215,"solarSystemName":"F:294K","location":{"x":-21600000000000000000,"y":157000000000000000,"z":-7260000000000000000}},"30007216":{"solarSystemId":30007216,"solarSystemName":"Q:VT24","location":{"x":-20800000000000000000,"y":1350000000000000000,"z":-7820000000000000000}},"30007217":{"solarSystemId":30007217,"solarSystemName":"F:25O4","location":{"x":-18900000000000000000,"y":-428000000000000000,"z":-6420000000000000000}},"30007218":{"solarSystemId":30007218,"solarSystemName":"Z:3O5L","location":{"x":-19600000000000000000,"y":-216000000000000000,"z":-6890000000000000000}},"30007219":{"solarSystemId":30007219,"solarSystemName":"B:1169","location":{"x":-19500000000000000000,"y":-1050000000000000000,"z":-6110000000000000000}},"30007220":{"solarSystemId":30007220,"solarSystemName":"B:12AL","location":{"x":-19800000000000000000,"y":-841000000000000000,"z":-5850000000000000000}},"30007221":{"solarSystemId":30007221,"solarSystemName":"M:14OA","location":{"x":-19100000000000000000,"y":-706000000000000000,"z":-6830000000000000000}},"30007222":{"solarSystemId":30007222,"solarSystemName":"U:2AR1","location":{"x":-18900000000000000000,"y":-816000000000000000,"z":-6230000000000000000}},"30007223":{"solarSystemId":30007223,"solarSystemName":"B:14R8","location":{"x":-19500000000000000000,"y":-185000000000000000,"z":-6440000000000000000}},"30007224":{"solarSystemId":30007224,"solarSystemName":"Q:208O","location":{"x":-19400000000000000000,"y":-470000000000000000,"z":-5700000000000000000}},"30007225":{"solarSystemId":30007225,"solarSystemName":"G:N7E1","location":{"x":-19500000000000000000,"y":-558000000000000000,"z":-6250000000000000000}},"30007226":{"solarSystemId":30007226,"solarSystemName":"D:15TS","location":{"x":-19800000000000000000,"y":-447000000000000000,"z":-6740000000000000000}},"30007227":{"solarSystemId":30007227,"solarSystemName":"M:4R9L","location":{"x":-19600000000000000000,"y":-320000000000000000,"z":-6640000000000000000}},"30007228":{"solarSystemId":30007228,"solarSystemName":"D:1011","location":{"x":-19600000000000000000,"y":-591000000000000000,"z":-5700000000000000000}},"30007229":{"solarSystemId":30007229,"solarSystemName":"D:VI0V","location":{"x":-20000000000000000000,"y":-623000000000000000,"z":-6130000000000000000}},"30007230":{"solarSystemId":30007230,"solarSystemName":"P:L904","location":{"x":-19200000000000000000,"y":-412000000000000000,"z":-6840000000000000000}},"30007231":{"solarSystemId":30007231,"solarSystemName":"Z:2EA2","location":{"x":-19400000000000000000,"y":-575000000000000000,"z":-6370000000000000000}},"30007232":{"solarSystemId":30007232,"solarSystemName":"Z:147T","location":{"x":-18800000000000000000,"y":-478000000000000000,"z":-6700000000000000000}},"30007233":{"solarSystemId":30007233,"solarSystemName":"J:1OKR","location":{"x":-18900000000000000000,"y":-807000000000000000,"z":-6210000000000000000}},"30007234":{"solarSystemId":30007234,"solarSystemName":"Y:24I7","location":{"x":-21800000000000000000,"y":-843000000000000000,"z":-7270000000000000000}},"30007235":{"solarSystemId":30007235,"solarSystemName":"M:NOI7","location":{"x":-22200000000000000000,"y":-1180000000000000000,"z":-7840000000000000000}},"30007236":{"solarSystemId":30007236,"solarSystemName":"M:4EL9","location":{"x":-21000000000000000000,"y":-1150000000000000000,"z":-7660000000000000000}},"30007237":{"solarSystemId":30007237,"solarSystemName":"F:1AE4","location":{"x":-21200000000000000000,"y":-1260000000000000000,"z":-6890000000000000000}},"30007238":{"solarSystemId":30007238,"solarSystemName":"G:14IL","location":{"x":-20900000000000000000,"y":-1200000000000000000,"z":-7340000000000000000}},"30007239":{"solarSystemId":30007239,"solarSystemName":"F:4TKL","location":{"x":-21300000000000000000,"y":-1480000000000000000,"z":-7430000000000000000}},"30007240":{"solarSystemId":30007240,"solarSystemName":"Y:T6V6","location":{"x":-21500000000000000000,"y":-1610000000000000000,"z":-7140000000000000000}},"30007241":{"solarSystemId":30007241,"solarSystemName":"P:10EI","location":{"x":-21300000000000000000,"y":-1060000000000000000,"z":-6960000000000000000}},"30007242":{"solarSystemId":30007242,"solarSystemName":"G:S31L","location":{"x":-21600000000000000000,"y":-1610000000000000000,"z":-6210000000000000000}},"30007243":{"solarSystemId":30007243,"solarSystemName":"Q:L6LR","location":{"x":-21300000000000000000,"y":-1240000000000000000,"z":-6920000000000000000}},"30007244":{"solarSystemId":30007244,"solarSystemName":"B:1I36","location":{"x":-21300000000000000000,"y":-1900000000000000000,"z":-7520000000000000000}},"30007245":{"solarSystemId":30007245,"solarSystemName":"Z:T805","location":{"x":-22200000000000000000,"y":-1230000000000000000,"z":-6430000000000000000}},"30007246":{"solarSystemId":30007246,"solarSystemName":"J:N146","location":{"x":-22200000000000000000,"y":-1220000000000000000,"z":-7780000000000000000}},"30007247":{"solarSystemId":30007247,"solarSystemName":"M:1756","location":{"x":-21600000000000000000,"y":-928000000000000000,"z":-6760000000000000000}},"30007248":{"solarSystemId":30007248,"solarSystemName":"U:2EKV","location":{"x":-20300000000000000000,"y":-397000000000000000,"z":-7300000000000000000}},"30007249":{"solarSystemId":30007249,"solarSystemName":"F:382A","location":{"x":-19900000000000000000,"y":-372000000000000000,"z":-6870000000000000000}},"30007250":{"solarSystemId":30007250,"solarSystemName":"G:1ELT","location":{"x":-20100000000000000000,"y":-774000000000000000,"z":-6830000000000000000}},"30007251":{"solarSystemId":30007251,"solarSystemName":"J:29L5","location":{"x":-20700000000000000000,"y":-142000000000000000,"z":-6450000000000000000}},"30007252":{"solarSystemId":30007252,"solarSystemName":"Q:1NT2","location":{"x":-20300000000000000000,"y":-575000000000000000,"z":-6720000000000000000}},"30007253":{"solarSystemId":30007253,"solarSystemName":"H:E3LK","location":{"x":-20100000000000000000,"y":99900000000000000,"z":-7170000000000000000}},"30007254":{"solarSystemId":30007254,"solarSystemName":"U:1O03","location":{"x":-20500000000000000000,"y":-587000000000000000,"z":-6520000000000000000}},"30007255":{"solarSystemId":30007255,"solarSystemName":"Z:LEV0","location":{"x":-20000000000000000000,"y":-752000000000000000,"z":-6940000000000000000}},"30007256":{"solarSystemId":30007256,"solarSystemName":"Y:1223","location":{"x":-19600000000000000000,"y":-151000000000000000,"z":-7160000000000000000}},"30007257":{"solarSystemId":30007257,"solarSystemName":"F:I1VI","location":{"x":-20100000000000000000,"y":-434000000000000000,"z":-6430000000000000000}},"30007258":{"solarSystemId":30007258,"solarSystemName":"M:3V56","location":{"x":-19900000000000000000,"y":-550000000000000000,"z":-7210000000000000000}},"30007259":{"solarSystemId":30007259,"solarSystemName":"H:EAAT","location":{"x":-20500000000000000000,"y":-187000000000000000,"z":-6660000000000000000}},"30007260":{"solarSystemId":30007260,"solarSystemName":"P:RV53","location":{"x":-20500000000000000000,"y":-333000000000000000,"z":-6640000000000000000}},"30007261":{"solarSystemId":30007261,"solarSystemName":"Z:VNK5","location":{"x":-20600000000000000000,"y":-44900000000000000,"z":-6760000000000000000}},"30007262":{"solarSystemId":30007262,"solarSystemName":"Q:151A","location":{"x":-20300000000000000000,"y":-1240000000000000000,"z":-7030000000000000000}},"30007263":{"solarSystemId":30007263,"solarSystemName":"M:1559","location":{"x":-20200000000000000000,"y":-1070000000000000000,"z":-7030000000000000000}},"30007264":{"solarSystemId":30007264,"solarSystemName":"H:111E","location":{"x":-19600000000000000000,"y":-1130000000000000000,"z":-7110000000000000000}},"30007265":{"solarSystemId":30007265,"solarSystemName":"Z:10EL","location":{"x":-19900000000000000000,"y":-628000000000000000,"z":-7340000000000000000}},"30007266":{"solarSystemId":30007266,"solarSystemName":"P:N02S","location":{"x":-20500000000000000000,"y":-158000000000000000,"z":-7150000000000000000}},"30007267":{"solarSystemId":30007267,"solarSystemName":"H:24KV","location":{"x":-19500000000000000000,"y":-1090000000000000000,"z":-7140000000000000000}},"30007268":{"solarSystemId":30007268,"solarSystemName":"P:1VAK","location":{"x":-20800000000000000000,"y":-591000000000000000,"z":-6290000000000000000}},"30007269":{"solarSystemId":30007269,"solarSystemName":"H:1R37","location":{"x":-20900000000000000000,"y":-452000000000000000,"z":-6330000000000000000}},"30007270":{"solarSystemId":30007270,"solarSystemName":"U:19ST","location":{"x":-21200000000000000000,"y":-602000000000000000,"z":-6130000000000000000}},"30007271":{"solarSystemId":30007271,"solarSystemName":"Z:IK18","location":{"x":-20900000000000000000,"y":-1040000000000000000,"z":-6020000000000000000}},"30007272":{"solarSystemId":30007272,"solarSystemName":"H:RL6O","location":{"x":-20700000000000000000,"y":-485000000000000000,"z":-6010000000000000000}},"30007273":{"solarSystemId":30007273,"solarSystemName":"U:13T5","location":{"x":-20700000000000000000,"y":-642000000000000000,"z":-6270000000000000000}},"30007274":{"solarSystemId":30007274,"solarSystemName":"U:LO91","location":{"x":-21300000000000000000,"y":-406000000000000000,"z":-6590000000000000000}},"30007275":{"solarSystemId":30007275,"solarSystemName":"P:1KV4","location":{"x":-21200000000000000000,"y":-90200000000000000,"z":-6370000000000000000}},"30007276":{"solarSystemId":30007276,"solarSystemName":"U:7ST0","location":{"x":-21100000000000000000,"y":-566000000000000000,"z":-6460000000000000000}},"30007277":{"solarSystemId":30007277,"solarSystemName":"H:1K5A","location":{"x":-20700000000000000000,"y":-721000000000000000,"z":-6380000000000000000}},"30007278":{"solarSystemId":30007278,"solarSystemName":"B:22K3","location":{"x":-20600000000000000000,"y":-594000000000000000,"z":-6010000000000000000}},"30007279":{"solarSystemId":30007279,"solarSystemName":"P:K18N","location":{"x":-21000000000000000000,"y":-604000000000000000,"z":-5840000000000000000}},"30007280":{"solarSystemId":30007280,"solarSystemName":"G:1S5O","location":{"x":-20900000000000000000,"y":-662000000000000000,"z":-6770000000000000000}},"30007281":{"solarSystemId":30007281,"solarSystemName":"Y:1I4I","location":{"x":-21200000000000000000,"y":-707000000000000000,"z":-6030000000000000000}},"30007282":{"solarSystemId":30007282,"solarSystemName":"F:1RLA","location":{"x":-21000000000000000000,"y":-762000000000000000,"z":-6500000000000000000}},"30007283":{"solarSystemId":30007283,"solarSystemName":"Z:SV2V","location":{"x":-21200000000000000000,"y":-628000000000000000,"z":-5700000000000000000}},"30007284":{"solarSystemId":30007284,"solarSystemName":"J:21V5","location":{"x":-21300000000000000000,"y":-599000000000000000,"z":-6590000000000000000}},"30007285":{"solarSystemId":30007285,"solarSystemName":"U:11VT","location":{"x":-20800000000000000000,"y":-1140000000000000000,"z":-6240000000000000000}},"30007286":{"solarSystemId":30007286,"solarSystemName":"Y:VL51","location":{"x":-20100000000000000000,"y":-791000000000000000,"z":-6210000000000000000}},"30007287":{"solarSystemId":30007287,"solarSystemName":"B:OSVN","location":{"x":-20200000000000000000,"y":-1700000000000000000,"z":-6230000000000000000}},"30007288":{"solarSystemId":30007288,"solarSystemName":"G:2NIL","location":{"x":-20900000000000000000,"y":-1020000000000000000,"z":-6450000000000000000}},"30007289":{"solarSystemId":30007289,"solarSystemName":"M:15N9","location":{"x":-20200000000000000000,"y":-611000000000000000,"z":-6510000000000000000}},"30007290":{"solarSystemId":30007290,"solarSystemName":"F:142T","location":{"x":-20300000000000000000,"y":-1360000000000000000,"z":-6480000000000000000}},"30007291":{"solarSystemId":30007291,"solarSystemName":"U:12L8","location":{"x":-19500000000000000000,"y":-1810000000000000000,"z":-6850000000000000000}},"30007292":{"solarSystemId":30007292,"solarSystemName":"H:E022","location":{"x":-20100000000000000000,"y":-890000000000000000,"z":-5920000000000000000}},"30007293":{"solarSystemId":30007293,"solarSystemName":"D:18VA","location":{"x":-20100000000000000000,"y":-1140000000000000000,"z":-5900000000000000000}},"30007294":{"solarSystemId":30007294,"solarSystemName":"P:1LSR","location":{"x":-20200000000000000000,"y":-1150000000000000000,"z":-6370000000000000000}},"30007295":{"solarSystemId":30007295,"solarSystemName":"U:1434","location":{"x":-20100000000000000000,"y":-1470000000000000000,"z":-5990000000000000000}},"30007296":{"solarSystemId":30007296,"solarSystemName":"J:I698","location":{"x":-20700000000000000000,"y":-1220000000000000000,"z":-6390000000000000000}},"30007297":{"solarSystemId":30007297,"solarSystemName":"F:K5NI","location":{"x":-19800000000000000000,"y":-2150000000000000000,"z":-6580000000000000000}},"30007298":{"solarSystemId":30007298,"solarSystemName":"G:19AT","location":{"x":-20400000000000000000,"y":-803000000000000000,"z":-6800000000000000000}},"30007299":{"solarSystemId":30007299,"solarSystemName":"H:RLVO","location":{"x":-20600000000000000000,"y":-1380000000000000000,"z":-6120000000000000000}},"30007300":{"solarSystemId":30007300,"solarSystemName":"D:1L3I","location":{"x":-20400000000000000000,"y":-731000000000000000,"z":-6210000000000000000}},"30007301":{"solarSystemId":30007301,"solarSystemName":"D:1K61","location":{"x":-20000000000000000000,"y":-1720000000000000000,"z":-6350000000000000000}},"30007302":{"solarSystemId":30007302,"solarSystemName":"Z:2N1K","location":{"x":-20700000000000000000,"y":-1250000000000000000,"z":-6020000000000000000}},"30007303":{"solarSystemId":30007303,"solarSystemName":"H:18S1","location":{"x":-20700000000000000000,"y":-835000000000000000,"z":-6090000000000000000}},"30007304":{"solarSystemId":30007304,"solarSystemName":"P:3S2L","location":{"x":-17200000000000000000,"y":-3330000000000000000,"z":-4020000000000000000}},"30007305":{"solarSystemId":30007305,"solarSystemName":"G:15NT","location":{"x":-18900000000000000000,"y":-3630000000000000000,"z":-3460000000000000000}},"30007306":{"solarSystemId":30007306,"solarSystemName":"B:1322","location":{"x":-17700000000000000000,"y":-2740000000000000000,"z":-5030000000000000000}},"30007307":{"solarSystemId":30007307,"solarSystemName":"M:1871","location":{"x":-18600000000000000000,"y":-4070000000000000000,"z":-4390000000000000000}},"30007308":{"solarSystemId":30007308,"solarSystemName":"B:1O41","location":{"x":-19400000000000000000,"y":-3100000000000000000,"z":-3780000000000000000}},"30007309":{"solarSystemId":30007309,"solarSystemName":"Q:195N","location":{"x":-18100000000000000000,"y":-3160000000000000000,"z":-3970000000000000000}},"30007310":{"solarSystemId":30007310,"solarSystemName":"Q:14OL","location":{"x":-17700000000000000000,"y":-2440000000000000000,"z":-5070000000000000000}},"30007311":{"solarSystemId":30007311,"solarSystemName":"F:14RL","location":{"x":-18700000000000000000,"y":-2470000000000000000,"z":-3520000000000000000}},"30007312":{"solarSystemId":30007312,"solarSystemName":"D:17AV","location":{"x":-19000000000000000000,"y":-2710000000000000000,"z":-3860000000000000000}},"30007313":{"solarSystemId":30007313,"solarSystemName":"G:1AVI","location":{"x":-18600000000000000000,"y":-2040000000000000000,"z":-3820000000000000000}},"30007314":{"solarSystemId":30007314,"solarSystemName":"P:L3T8","location":{"x":-17400000000000000000,"y":-3070000000000000000,"z":-4430000000000000000}},"30007315":{"solarSystemId":30007315,"solarSystemName":"Q:3N5A","location":{"x":-18600000000000000000,"y":-1990000000000000000,"z":-3040000000000000000}},"30007316":{"solarSystemId":30007316,"solarSystemName":"D:1742","location":{"x":-17900000000000000000,"y":-1270000000000000000,"z":-3300000000000000000}},"30007317":{"solarSystemId":30007317,"solarSystemName":"D:RS83","location":{"x":-18300000000000000000,"y":-1570000000000000000,"z":-2970000000000000000}},"30007318":{"solarSystemId":30007318,"solarSystemName":"Z:O55N","location":{"x":-18300000000000000000,"y":-1420000000000000000,"z":-3080000000000000000}},"30007319":{"solarSystemId":30007319,"solarSystemName":"P:14IT","location":{"x":-18800000000000000000,"y":-1190000000000000000,"z":-3170000000000000000}},"30007320":{"solarSystemId":30007320,"solarSystemName":"M:1IV3","location":{"x":-17700000000000000000,"y":-1210000000000000000,"z":-3590000000000000000}},"30007321":{"solarSystemId":30007321,"solarSystemName":"Z:10EK","location":{"x":-17500000000000000000,"y":-1810000000000000000,"z":-3630000000000000000}},"30007322":{"solarSystemId":30007322,"solarSystemName":"Y:LE00","location":{"x":-17800000000000000000,"y":-1940000000000000000,"z":-3030000000000000000}},"30007323":{"solarSystemId":30007323,"solarSystemName":"Y:L8T4","location":{"x":-18200000000000000000,"y":-953000000000000000,"z":-3220000000000000000}},"30007324":{"solarSystemId":30007324,"solarSystemName":"F:1I2A","location":{"x":-17900000000000000000,"y":-2370000000000000000,"z":-2250000000000000000}},"30007325":{"solarSystemId":30007325,"solarSystemName":"B:N5KE","location":{"x":-18500000000000000000,"y":-1440000000000000000,"z":-3210000000000000000}},"30007326":{"solarSystemId":30007326,"solarSystemName":"M:6ETL","location":{"x":-18700000000000000000,"y":-1900000000000000000,"z":-4210000000000000000}},"30007327":{"solarSystemId":30007327,"solarSystemName":"D:173S","location":{"x":-17700000000000000000,"y":-1540000000000000000,"z":-3640000000000000000}},"30007328":{"solarSystemId":30007328,"solarSystemName":"P:138N","location":{"x":-18100000000000000000,"y":-809000000000000000,"z":-3150000000000000000}},"30007329":{"solarSystemId":30007329,"solarSystemName":"Q:KO56","location":{"x":-18300000000000000000,"y":-1230000000000000000,"z":-3280000000000000000}},"30007330":{"solarSystemId":30007330,"solarSystemName":"D:1938","location":{"x":-19100000000000000000,"y":-746000000000000000,"z":-5030000000000000000}},"30007331":{"solarSystemId":30007331,"solarSystemName":"P:RV9E","location":{"x":-18500000000000000000,"y":-330000000000000000,"z":-4540000000000000000}},"30007332":{"solarSystemId":30007332,"solarSystemName":"B:1440","location":{"x":-18500000000000000000,"y":-399000000000000000,"z":-4410000000000000000}},"30007333":{"solarSystemId":30007333,"solarSystemName":"G:ANE0","location":{"x":-18800000000000000000,"y":-1040000000000000000,"z":-5060000000000000000}},"30007334":{"solarSystemId":30007334,"solarSystemName":"G:12OK","location":{"x":-18800000000000000000,"y":-913000000000000000,"z":-4730000000000000000}},"30007335":{"solarSystemId":30007335,"solarSystemName":"B:16NK","location":{"x":-18600000000000000000,"y":-721000000000000000,"z":-4980000000000000000}},"30007336":{"solarSystemId":30007336,"solarSystemName":"G:2VS1","location":{"x":-18200000000000000000,"y":-470000000000000000,"z":-5000000000000000000}},"30007337":{"solarSystemId":30007337,"solarSystemName":"P:1059","location":{"x":-18300000000000000000,"y":-94200000000000000,"z":-4790000000000000000}},"30007338":{"solarSystemId":30007338,"solarSystemName":"M:AITK","location":{"x":-18700000000000000000,"y":-624000000000000000,"z":-4410000000000000000}},"30007339":{"solarSystemId":30007339,"solarSystemName":"Q:LVKS","location":{"x":-19200000000000000000,"y":-432000000000000000,"z":-4050000000000000000}},"30007340":{"solarSystemId":30007340,"solarSystemName":"J:O68E","location":{"x":-18600000000000000000,"y":-711000000000000000,"z":-4590000000000000000}},"30007341":{"solarSystemId":30007341,"solarSystemName":"J:2ASA","location":{"x":-18500000000000000000,"y":-673000000000000000,"z":-4500000000000000000}},"30007342":{"solarSystemId":30007342,"solarSystemName":"Y:1I7V","location":{"x":-18700000000000000000,"y":-619000000000000000,"z":-5040000000000000000}},"30007343":{"solarSystemId":30007343,"solarSystemName":"G:1050","location":{"x":-18500000000000000000,"y":-1080000000000000000,"z":-5410000000000000000}},"30007344":{"solarSystemId":30007344,"solarSystemName":"D:1565","location":{"x":-18200000000000000000,"y":11700000000000000,"z":-4510000000000000000}},"30007345":{"solarSystemId":30007345,"solarSystemName":"M:1L22","location":{"x":-18900000000000000000,"y":-1070000000000000000,"z":-4840000000000000000}},"30007346":{"solarSystemId":30007346,"solarSystemName":"J:49VO","location":{"x":-18300000000000000000,"y":-442000000000000000,"z":-4340000000000000000}},"30007347":{"solarSystemId":30007347,"solarSystemName":"J:12O7","location":{"x":-18500000000000000000,"y":-1260000000000000000,"z":-5460000000000000000}},"30007348":{"solarSystemId":30007348,"solarSystemName":"M:69A2","location":{"x":-18300000000000000000,"y":-494000000000000000,"z":-3960000000000000000}},"30007349":{"solarSystemId":30007349,"solarSystemName":"Z:NN0S","location":{"x":-19100000000000000000,"y":-537000000000000000,"z":-5110000000000000000}},"30007350":{"solarSystemId":30007350,"solarSystemName":"M:2RE3","location":{"x":-19500000000000000000,"y":-1770000000000000000,"z":-2140000000000000000}},"30007351":{"solarSystemId":30007351,"solarSystemName":"F:18E4","location":{"x":-18700000000000000000,"y":-3830000000000000000,"z":-2250000000000000000}},"30007352":{"solarSystemId":30007352,"solarSystemName":"J:12LT","location":{"x":-20800000000000000000,"y":-3140000000000000000,"z":-2050000000000000000}},"30007353":{"solarSystemId":30007353,"solarSystemName":"M:1101","location":{"x":-19700000000000000000,"y":-1840000000000000000,"z":-1980000000000000000}},"30007354":{"solarSystemId":30007354,"solarSystemName":"F:187A","location":{"x":-18900000000000000000,"y":-3320000000000000000,"z":-1770000000000000000}},"30007355":{"solarSystemId":30007355,"solarSystemName":"H:16A9","location":{"x":-20000000000000000000,"y":-3050000000000000000,"z":-1770000000000000000}},"30007356":{"solarSystemId":30007356,"solarSystemName":"Z:RSVE","location":{"x":-18400000000000000000,"y":-3360000000000000000,"z":-2350000000000000000}},"30007357":{"solarSystemId":30007357,"solarSystemName":"Z:1A53","location":{"x":-19600000000000000000,"y":-1590000000000000000,"z":-1980000000000000000}},"30007358":{"solarSystemId":30007358,"solarSystemName":"U:VVN2","location":{"x":-20000000000000000000,"y":-2090000000000000000,"z":-1770000000000000000}},"30007359":{"solarSystemId":30007359,"solarSystemName":"B:12V7","location":{"x":-19600000000000000000,"y":-3130000000000000000,"z":-2910000000000000000}},"30007360":{"solarSystemId":30007360,"solarSystemName":"D:182L","location":{"x":-19600000000000000000,"y":-3120000000000000000,"z":-2460000000000000000}},"30007361":{"solarSystemId":30007361,"solarSystemName":"P:186L","location":{"x":-19600000000000000000,"y":-2440000000000000000,"z":-1230000000000000000}},"30007362":{"solarSystemId":30007362,"solarSystemName":"U:156T","location":{"x":-20000000000000000000,"y":-1150000000000000000,"z":-3600000000000000000}},"30007363":{"solarSystemId":30007363,"solarSystemName":"M:KN6T","location":{"x":-20300000000000000000,"y":-1150000000000000000,"z":-3600000000000000000}},"30007364":{"solarSystemId":30007364,"solarSystemName":"P:125T","location":{"x":-20400000000000000000,"y":-1190000000000000000,"z":-3280000000000000000}},"30007365":{"solarSystemId":30007365,"solarSystemName":"P:1IA2","location":{"x":-20200000000000000000,"y":-1580000000000000000,"z":-3410000000000000000}},"30007366":{"solarSystemId":30007366,"solarSystemName":"Z:1671","location":{"x":-19900000000000000000,"y":-1260000000000000000,"z":-3830000000000000000}},"30007367":{"solarSystemId":30007367,"solarSystemName":"J:117V","location":{"x":-20100000000000000000,"y":-1160000000000000000,"z":-3590000000000000000}},"30007368":{"solarSystemId":30007368,"solarSystemName":"F:16NR","location":{"x":-19500000000000000000,"y":-1210000000000000000,"z":-3440000000000000000}},"30007369":{"solarSystemId":30007369,"solarSystemName":"Y:16LN","location":{"x":-20000000000000000000,"y":-1190000000000000000,"z":-3160000000000000000}},"30007370":{"solarSystemId":30007370,"solarSystemName":"U:183L","location":{"x":-19900000000000000000,"y":-2140000000000000000,"z":-3500000000000000000}},"30007371":{"solarSystemId":30007371,"solarSystemName":"B:150N","location":{"x":-20300000000000000000,"y":-1220000000000000000,"z":-3540000000000000000}},"30007372":{"solarSystemId":30007372,"solarSystemName":"F:RI28","location":{"x":-20000000000000000000,"y":-1840000000000000000,"z":-3170000000000000000}},"30007373":{"solarSystemId":30007373,"solarSystemName":"D:14TN","location":{"x":-20300000000000000000,"y":-1340000000000000000,"z":-3750000000000000000}},"30007374":{"solarSystemId":30007374,"solarSystemName":"B:1O1V","location":{"x":-20100000000000000000,"y":-1500000000000000000,"z":-3140000000000000000}},"30007375":{"solarSystemId":30007375,"solarSystemName":"U:NT9R","location":{"x":-19500000000000000000,"y":-1140000000000000000,"z":-3410000000000000000}},"30007376":{"solarSystemId":30007376,"solarSystemName":"D:2KV0","location":{"x":-19500000000000000000,"y":-1430000000000000000,"z":-2710000000000000000}},"30007377":{"solarSystemId":30007377,"solarSystemName":"G:3I26","location":{"x":-19300000000000000000,"y":-968000000000000000,"z":-2740000000000000000}},"30007378":{"solarSystemId":30007378,"solarSystemName":"Z:1A73","location":{"x":-19200000000000000000,"y":-1870000000000000000,"z":-3020000000000000000}},"30007379":{"solarSystemId":30007379,"solarSystemName":"Z:11RI","location":{"x":-19300000000000000000,"y":-1650000000000000000,"z":-2360000000000000000}},"30007380":{"solarSystemId":30007380,"solarSystemName":"D:EL8V","location":{"x":-19400000000000000000,"y":-1160000000000000000,"z":-2930000000000000000}},"30007381":{"solarSystemId":30007381,"solarSystemName":"B:L7LT","location":{"x":-19000000000000000000,"y":-1210000000000000000,"z":-2650000000000000000}},"30007382":{"solarSystemId":30007382,"solarSystemName":"D:E707","location":{"x":-19100000000000000000,"y":-1100000000000000000,"z":-2720000000000000000}},"30007383":{"solarSystemId":30007383,"solarSystemName":"F:RVVE","location":{"x":-19400000000000000000,"y":-862000000000000000,"z":-2830000000000000000}},"30007384":{"solarSystemId":30007384,"solarSystemName":"J:1I52","location":{"x":-19800000000000000000,"y":-1020000000000000000,"z":-3010000000000000000}},"30007385":{"solarSystemId":30007385,"solarSystemName":"H:T6LS","location":{"x":-19800000000000000000,"y":-1200000000000000000,"z":-3110000000000000000}},"30007386":{"solarSystemId":30007386,"solarSystemName":"H:NR9T","location":{"x":-19300000000000000000,"y":-1510000000000000000,"z":-3310000000000000000}},"30007387":{"solarSystemId":30007387,"solarSystemName":"G:V3R3","location":{"x":-19900000000000000000,"y":-1080000000000000000,"z":-2890000000000000000}},"30007388":{"solarSystemId":30007388,"solarSystemName":"D:S597","location":{"x":-19600000000000000000,"y":-1050000000000000000,"z":-2990000000000000000}},"30007389":{"solarSystemId":30007389,"solarSystemName":"J:SO1O","location":{"x":-19600000000000000000,"y":-910000000000000000,"z":-2870000000000000000}},"30007390":{"solarSystemId":30007390,"solarSystemName":"U:1AES","location":{"x":-19700000000000000000,"y":-1220000000000000000,"z":-2920000000000000000}},"30007391":{"solarSystemId":30007391,"solarSystemName":"H:1250","location":{"x":-19600000000000000000,"y":-952000000000000000,"z":-2610000000000000000}},"30007392":{"solarSystemId":30007392,"solarSystemName":"H:113S","location":{"x":-18300000000000000000,"y":-1250000000000000000,"z":-3580000000000000000}},"30007393":{"solarSystemId":30007393,"solarSystemName":"U:2VTE","location":{"x":-18400000000000000000,"y":-796000000000000000,"z":-4220000000000000000}},"30007394":{"solarSystemId":30007394,"solarSystemName":"D:4NNS","location":{"x":-18900000000000000000,"y":-436000000000000000,"z":-3880000000000000000}},"30007395":{"solarSystemId":30007395,"solarSystemName":"Z:N7II","location":{"x":-19100000000000000000,"y":-661000000000000000,"z":-3980000000000000000}},"30007396":{"solarSystemId":30007396,"solarSystemName":"Z:1I27","location":{"x":-18400000000000000000,"y":-629000000000000000,"z":-3810000000000000000}},"30007397":{"solarSystemId":30007397,"solarSystemName":"J:1INO","location":{"x":-18700000000000000000,"y":-785000000000000000,"z":-4110000000000000000}},"30007398":{"solarSystemId":30007398,"solarSystemName":"P:17S9","location":{"x":-18800000000000000000,"y":-1060000000000000000,"z":-4400000000000000000}},"30007399":{"solarSystemId":30007399,"solarSystemName":"H:11LT","location":{"x":-18400000000000000000,"y":-725000000000000000,"z":-3850000000000000000}},"30007400":{"solarSystemId":30007400,"solarSystemName":"D:9N4E","location":{"x":-19100000000000000000,"y":-660000000000000000,"z":-4180000000000000000}},"30007401":{"solarSystemId":30007401,"solarSystemName":"Q:1I9V","location":{"x":-19000000000000000000,"y":-751000000000000000,"z":-4220000000000000000}},"30007402":{"solarSystemId":30007402,"solarSystemName":"G:1679","location":{"x":-18100000000000000000,"y":-971000000000000000,"z":-3950000000000000000}},"30007403":{"solarSystemId":30007403,"solarSystemName":"F:NKI1","location":{"x":-18800000000000000000,"y":-1100000000000000000,"z":-3920000000000000000}},"30007404":{"solarSystemId":30007404,"solarSystemName":"B:N3E4","location":{"x":-18800000000000000000,"y":-1100000000000000000,"z":-3880000000000000000}},"30007405":{"solarSystemId":30007405,"solarSystemName":"M:KNK4","location":{"x":-18600000000000000000,"y":-696000000000000000,"z":-3900000000000000000}},"30007406":{"solarSystemId":30007406,"solarSystemName":"F:1VNI","location":{"x":-18700000000000000000,"y":-1380000000000000000,"z":-4050000000000000000}},"30007407":{"solarSystemId":30007407,"solarSystemName":"Y:LT49","location":{"x":-18800000000000000000,"y":-704000000000000000,"z":-4110000000000000000}},"30007408":{"solarSystemId":30007408,"solarSystemName":"M:3908","location":{"x":-18900000000000000000,"y":-906000000000000000,"z":-4240000000000000000}},"30007409":{"solarSystemId":30007409,"solarSystemName":"F:1ASL","location":{"x":-19700000000000000000,"y":-1660000000000000000,"z":-4320000000000000000}},"30007410":{"solarSystemId":30007410,"solarSystemName":"P:S696","location":{"x":-19600000000000000000,"y":-1460000000000000000,"z":-4350000000000000000}},"30007411":{"solarSystemId":30007411,"solarSystemName":"J:TN90","location":{"x":-19400000000000000000,"y":-1490000000000000000,"z":-4140000000000000000}},"30007412":{"solarSystemId":30007412,"solarSystemName":"G:16I8","location":{"x":-19200000000000000000,"y":-1380000000000000000,"z":-3730000000000000000}},"30007413":{"solarSystemId":30007413,"solarSystemName":"M:11T8","location":{"x":-19300000000000000000,"y":-2060000000000000000,"z":-4290000000000000000}},"30007414":{"solarSystemId":30007414,"solarSystemName":"U:11E3","location":{"x":-19500000000000000000,"y":-1620000000000000000,"z":-4320000000000000000}},"30007415":{"solarSystemId":30007415,"solarSystemName":"D:KN25","location":{"x":-19300000000000000000,"y":-1090000000000000000,"z":-4070000000000000000}},"30007416":{"solarSystemId":30007416,"solarSystemName":"F:OSOT","location":{"x":-19700000000000000000,"y":-1140000000000000000,"z":-4150000000000000000}},"30007417":{"solarSystemId":30007417,"solarSystemName":"D:2S32","location":{"x":-19300000000000000000,"y":-1170000000000000000,"z":-3840000000000000000}},"30007418":{"solarSystemId":30007418,"solarSystemName":"Q:1206","location":{"x":-19700000000000000000,"y":-1590000000000000000,"z":-4140000000000000000}},"30007419":{"solarSystemId":30007419,"solarSystemName":"F:1AE8","location":{"x":-20000000000000000000,"y":-1530000000000000000,"z":-4500000000000000000}},"30007420":{"solarSystemId":30007420,"solarSystemName":"J:10VK","location":{"x":-20100000000000000000,"y":-1670000000000000000,"z":-4490000000000000000}},"30007421":{"solarSystemId":30007421,"solarSystemName":"Z:125V","location":{"x":-19800000000000000000,"y":-1360000000000000000,"z":-3980000000000000000}},"30007422":{"solarSystemId":30007422,"solarSystemName":"J:SOLO","location":{"x":-19600000000000000000,"y":-1220000000000000000,"z":-3840000000000000000}},"30007423":{"solarSystemId":30007423,"solarSystemName":"Y:18EA","location":{"x":-19400000000000000000,"y":-1360000000000000000,"z":-3680000000000000000}},"30007424":{"solarSystemId":30007424,"solarSystemName":"U:36S0","location":{"x":-19500000000000000000,"y":-1700000000000000000,"z":-4310000000000000000}},"30007425":{"solarSystemId":30007425,"solarSystemName":"H:17SO","location":{"x":-19500000000000000000,"y":-934000000000000000,"z":-3950000000000000000}},"30007426":{"solarSystemId":30007426,"solarSystemName":"G:527N","location":{"x":-19200000000000000000,"y":-1280000000000000000,"z":-4670000000000000000}},"30007427":{"solarSystemId":30007427,"solarSystemName":"H:1A77","location":{"x":-23300000000000000000,"y":-658000000000000000,"z":-3370000000000000000}},"30007428":{"solarSystemId":30007428,"solarSystemName":"P:2AA3","location":{"x":-23600000000000000000,"y":-739000000000000000,"z":-3520000000000000000}},"30007429":{"solarSystemId":30007429,"solarSystemName":"B:169V","location":{"x":-23300000000000000000,"y":-534000000000000000,"z":-2900000000000000000}},"30007430":{"solarSystemId":30007430,"solarSystemName":"H:1118","location":{"x":-23200000000000000000,"y":-341000000000000000,"z":-3450000000000000000}},"30007431":{"solarSystemId":30007431,"solarSystemName":"F:13VN","location":{"x":-22600000000000000000,"y":-656000000000000000,"z":-3100000000000000000}},"30007432":{"solarSystemId":30007432,"solarSystemName":"B:1KNE","location":{"x":-22200000000000000000,"y":-740000000000000000,"z":-2980000000000000000}},"30007433":{"solarSystemId":30007433,"solarSystemName":"F:1881","location":{"x":-22500000000000000000,"y":-909000000000000000,"z":-3370000000000000000}},"30007434":{"solarSystemId":30007434,"solarSystemName":"Q:1ANL","location":{"x":-22800000000000000000,"y":-673000000000000000,"z":-3310000000000000000}},"30007435":{"solarSystemId":30007435,"solarSystemName":"D:1AS8","location":{"x":-22600000000000000000,"y":-1020000000000000000,"z":-3350000000000000000}},"30007436":{"solarSystemId":30007436,"solarSystemName":"H:1IN3","location":{"x":-22500000000000000000,"y":-368000000000000000,"z":-2880000000000000000}},"30007437":{"solarSystemId":30007437,"solarSystemName":"M:121E","location":{"x":-22800000000000000000,"y":-384000000000000000,"z":-2950000000000000000}},"30007438":{"solarSystemId":30007438,"solarSystemName":"D:19R5","location":{"x":-22900000000000000000,"y":-1170000000000000000,"z":-3420000000000000000}},"30007439":{"solarSystemId":30007439,"solarSystemName":"F:255I","location":{"x":-22400000000000000000,"y":-406000000000000000,"z":-3130000000000000000}},"30007440":{"solarSystemId":30007440,"solarSystemName":"D:KNVT","location":{"x":-22900000000000000000,"y":-864000000000000000,"z":-2820000000000000000}},"30007441":{"solarSystemId":30007441,"solarSystemName":"M:2AEL","location":{"x":-22500000000000000000,"y":-985000000000000000,"z":-3450000000000000000}},"30007442":{"solarSystemId":30007442,"solarSystemName":"Z:1A0T","location":{"x":-22400000000000000000,"y":-672000000000000000,"z":-3230000000000000000}},"30007443":{"solarSystemId":30007443,"solarSystemName":"D:2L3I","location":{"x":-25200000000000000000,"y":-615000000000000000,"z":-4520000000000000000}},"30007444":{"solarSystemId":30007444,"solarSystemName":"H:2692","location":{"x":-25000000000000000000,"y":-786000000000000000,"z":-4050000000000000000}},"30007445":{"solarSystemId":30007445,"solarSystemName":"P:40S4","location":{"x":-25400000000000000000,"y":51300000000000000,"z":-4630000000000000000}},"30007446":{"solarSystemId":30007446,"solarSystemName":"B:23SE","location":{"x":-24300000000000000000,"y":-273000000000000000,"z":-4650000000000000000}},"30007447":{"solarSystemId":30007447,"solarSystemName":"M:AKOE","location":{"x":-24600000000000000000,"y":-625000000000000000,"z":-3960000000000000000}},"30007448":{"solarSystemId":30007448,"solarSystemName":"H:189R","location":{"x":-24500000000000000000,"y":-230000000000000000,"z":-3730000000000000000}},"30007449":{"solarSystemId":30007449,"solarSystemName":"F:1ON7","location":{"x":-24400000000000000000,"y":-32600000000000000,"z":-4050000000000000000}},"30007450":{"solarSystemId":30007450,"solarSystemName":"U:1V4O","location":{"x":-24100000000000000000,"y":-635000000000000000,"z":-4220000000000000000}},"30007451":{"solarSystemId":30007451,"solarSystemName":"H:11S5","location":{"x":-25100000000000000000,"y":24400000000000000,"z":-4760000000000000000}},"30007452":{"solarSystemId":30007452,"solarSystemName":"J:AT6S","location":{"x":-24300000000000000000,"y":-533000000000000000,"z":-4530000000000000000}},"30007453":{"solarSystemId":30007453,"solarSystemName":"Q:II94","location":{"x":-24400000000000000000,"y":-629000000000000000,"z":-4690000000000000000}},"30007454":{"solarSystemId":30007454,"solarSystemName":"Y:1N76","location":{"x":-24600000000000000000,"y":-133000000000000000,"z":-4660000000000000000}},"30007455":{"solarSystemId":30007455,"solarSystemName":"U:2V94","location":{"x":-24400000000000000000,"y":-362000000000000000,"z":-3770000000000000000}},"30007456":{"solarSystemId":30007456,"solarSystemName":"F:2I7L","location":{"x":-24800000000000000000,"y":-283000000000000000,"z":-4300000000000000000}},"30007457":{"solarSystemId":30007457,"solarSystemName":"Y:1578","location":{"x":-24600000000000000000,"y":91600000000000000,"z":-3940000000000000000}},"30007458":{"solarSystemId":30007458,"solarSystemName":"H:1V33","location":{"x":-24900000000000000000,"y":-108000000000000000,"z":-4010000000000000000}},"30007459":{"solarSystemId":30007459,"solarSystemName":"H:17L7","location":{"x":-23400000000000000000,"y":115000000000000000,"z":-3770000000000000000}},"30007460":{"solarSystemId":30007460,"solarSystemName":"D:TO1E","location":{"x":-23300000000000000000,"y":159000000000000000,"z":-3530000000000000000}},"30007461":{"solarSystemId":30007461,"solarSystemName":"F:1E0A","location":{"x":-24100000000000000000,"y":517000000000000000,"z":-3940000000000000000}},"30007462":{"solarSystemId":30007462,"solarSystemName":"D:11V3","location":{"x":-23600000000000000000,"y":-413000000000000000,"z":-3910000000000000000}},"30007463":{"solarSystemId":30007463,"solarSystemName":"H:1S7T","location":{"x":-24200000000000000000,"y":93200000000000000,"z":-3900000000000000000}},"30007464":{"solarSystemId":30007464,"solarSystemName":"D:2EVN","location":{"x":-23600000000000000000,"y":-443000000000000000,"z":-4330000000000000000}},"30007465":{"solarSystemId":30007465,"solarSystemName":"G:51A2","location":{"x":-23900000000000000000,"y":-93200000000000000,"z":-3660000000000000000}},"30007466":{"solarSystemId":30007466,"solarSystemName":"Z:19LO","location":{"x":-23600000000000000000,"y":-498000000000000000,"z":-4090000000000000000}},"30007467":{"solarSystemId":30007467,"solarSystemName":"M:19N3","location":{"x":-23700000000000000000,"y":68400000000000000,"z":-4010000000000000000}},"30007468":{"solarSystemId":30007468,"solarSystemName":"Y:257N","location":{"x":-24000000000000000000,"y":291000000000000000,"z":-3680000000000000000}},"30007469":{"solarSystemId":30007469,"solarSystemName":"B:36I6","location":{"x":-23700000000000000000,"y":244000000000000000,"z":-3450000000000000000}},"30007470":{"solarSystemId":30007470,"solarSystemName":"P:41NT","location":{"x":-23600000000000000000,"y":-69700000000000000,"z":-3960000000000000000}},"30007471":{"solarSystemId":30007471,"solarSystemName":"P:3AEO","location":{"x":-23800000000000000000,"y":326000000000000000,"z":-4610000000000000000}},"30007472":{"solarSystemId":30007472,"solarSystemName":"G:193N","location":{"x":-23900000000000000000,"y":-338000000000000000,"z":-3730000000000000000}},"30007473":{"solarSystemId":30007473,"solarSystemName":"M:NN26","location":{"x":-23600000000000000000,"y":-498000000000000000,"z":-3880000000000000000}},"30007474":{"solarSystemId":30007474,"solarSystemName":"G:L5O6","location":{"x":-23500000000000000000,"y":-938000000000000000,"z":-5360000000000000000}},"30007475":{"solarSystemId":30007475,"solarSystemName":"J:1I4N","location":{"x":-23600000000000000000,"y":-1370000000000000000,"z":-4680000000000000000}},"30007476":{"solarSystemId":30007476,"solarSystemName":"B:2162","location":{"x":-23800000000000000000,"y":-575000000000000000,"z":-4560000000000000000}},"30007477":{"solarSystemId":30007477,"solarSystemName":"P:10T7","location":{"x":-23100000000000000000,"y":-1290000000000000000,"z":-4080000000000000000}},"30007478":{"solarSystemId":30007478,"solarSystemName":"B:11SV","location":{"x":-23500000000000000000,"y":-1120000000000000000,"z":-3890000000000000000}},"30007479":{"solarSystemId":30007479,"solarSystemName":"B:1043","location":{"x":-23400000000000000000,"y":-834000000000000000,"z":-4530000000000000000}},"30007480":{"solarSystemId":30007480,"solarSystemName":"G:122T","location":{"x":-23600000000000000000,"y":-1340000000000000000,"z":-4040000000000000000}},"30007481":{"solarSystemId":30007481,"solarSystemName":"D:10LE","location":{"x":-23700000000000000000,"y":-1650000000000000000,"z":-4220000000000000000}},"30007482":{"solarSystemId":30007482,"solarSystemName":"Y:172A","location":{"x":-23600000000000000000,"y":-2050000000000000000,"z":-4340000000000000000}},"30007483":{"solarSystemId":30007483,"solarSystemName":"H:13II","location":{"x":-23800000000000000000,"y":-1220000000000000000,"z":-5220000000000000000}},"30007484":{"solarSystemId":30007484,"solarSystemName":"U:1A29","location":{"x":-23800000000000000000,"y":-1390000000000000000,"z":-4770000000000000000}},"30007485":{"solarSystemId":30007485,"solarSystemName":"Q:9S1I","location":{"x":-24200000000000000000,"y":-1000000000000000000,"z":-4860000000000000000}},"30007486":{"solarSystemId":30007486,"solarSystemName":"H:2VL4","location":{"x":-24200000000000000000,"y":-1250000000000000000,"z":-4510000000000000000}},"30007487":{"solarSystemId":30007487,"solarSystemName":"Q:18I1","location":{"x":-23500000000000000000,"y":-874000000000000000,"z":-4380000000000000000}},"30007488":{"solarSystemId":30007488,"solarSystemName":"U:21K8","location":{"x":-24600000000000000000,"y":-616000000000000000,"z":-2920000000000000000}},"30007489":{"solarSystemId":30007489,"solarSystemName":"Y:18A4","location":{"x":-24300000000000000000,"y":-452000000000000000,"z":-2590000000000000000}},"30007490":{"solarSystemId":30007490,"solarSystemName":"H:2OR3","location":{"x":-24800000000000000000,"y":-476000000000000000,"z":-2570000000000000000}},"30007491":{"solarSystemId":30007491,"solarSystemName":"Z:7ST0","location":{"x":-25000000000000000000,"y":-280000000000000000,"z":-2810000000000000000}},"30007492":{"solarSystemId":30007492,"solarSystemName":"D:E538","location":{"x":-24100000000000000000,"y":-486000000000000000,"z":-2530000000000000000}},"30007493":{"solarSystemId":30007493,"solarSystemName":"Q:1I4N","location":{"x":-23600000000000000000,"y":-358000000000000000,"z":-3150000000000000000}},"30007494":{"solarSystemId":30007494,"solarSystemName":"B:4RAE","location":{"x":-23400000000000000000,"y":-795000000000000000,"z":-2990000000000000000}},"30007495":{"solarSystemId":30007495,"solarSystemName":"Y:12V5","location":{"x":-23400000000000000000,"y":-591000000000000000,"z":-2270000000000000000}},"30007496":{"solarSystemId":30007496,"solarSystemName":"G:ET1I","location":{"x":-23500000000000000000,"y":-201000000000000000,"z":-2960000000000000000}},"30007497":{"solarSystemId":30007497,"solarSystemName":"P:SE4I","location":{"x":-24000000000000000000,"y":-244000000000000000,"z":-3320000000000000000}},"30007498":{"solarSystemId":30007498,"solarSystemName":"M:R572","location":{"x":-24600000000000000000,"y":-337000000000000000,"z":-3320000000000000000}},"30007499":{"solarSystemId":30007499,"solarSystemName":"Q:1AN4","location":{"x":-23800000000000000000,"y":105000000000000000,"z":-3310000000000000000}},"30007500":{"solarSystemId":30007500,"solarSystemName":"Z:3R05","location":{"x":-23200000000000000000,"y":-492000000000000000,"z":-2680000000000000000}},"30007501":{"solarSystemId":30007501,"solarSystemName":"M:51TS","location":{"x":-23200000000000000000,"y":-192000000000000000,"z":-3100000000000000000}},"30007502":{"solarSystemId":30007502,"solarSystemName":"U:19I5","location":{"x":-23900000000000000000,"y":-252000000000000000,"z":-3020000000000000000}},"30007503":{"solarSystemId":30007503,"solarSystemName":"P:196T","location":{"x":-23200000000000000000,"y":-606000000000000000,"z":-4190000000000000000}},"30007504":{"solarSystemId":30007504,"solarSystemName":"M:2N0T","location":{"x":-23400000000000000000,"y":-532000000000000000,"z":-4730000000000000000}},"30007505":{"solarSystemId":30007505,"solarSystemName":"B:13RS","location":{"x":-22900000000000000000,"y":-527000000000000000,"z":-4550000000000000000}},"30007506":{"solarSystemId":30007506,"solarSystemName":"Y:1A20","location":{"x":-24000000000000000000,"y":-623000000000000000,"z":-5660000000000000000}},"30007507":{"solarSystemId":30007507,"solarSystemName":"Q:1473","location":{"x":-23800000000000000000,"y":-462000000000000000,"z":-6020000000000000000}},"30007508":{"solarSystemId":30007508,"solarSystemName":"P:S7ER","location":{"x":-23500000000000000000,"y":-470000000000000000,"z":-5000000000000000000}},"30007509":{"solarSystemId":30007509,"solarSystemName":"H:R0SR","location":{"x":-23900000000000000000,"y":-234000000000000000,"z":-4860000000000000000}},"30007510":{"solarSystemId":30007510,"solarSystemName":"Q:1502","location":{"x":-23800000000000000000,"y":-753000000000000000,"z":-5910000000000000000}},"30007511":{"solarSystemId":30007511,"solarSystemName":"F:221I","location":{"x":-22900000000000000000,"y":-753000000000000000,"z":-4580000000000000000}},"30007512":{"solarSystemId":30007512,"solarSystemName":"J:LLSR","location":{"x":-23100000000000000000,"y":-617000000000000000,"z":-4210000000000000000}},"30007513":{"solarSystemId":30007513,"solarSystemName":"F:1NAS","location":{"x":-23800000000000000000,"y":-738000000000000000,"z":-5630000000000000000}},"30007514":{"solarSystemId":30007514,"solarSystemName":"D:RV82","location":{"x":-23300000000000000000,"y":-777000000000000000,"z":-4040000000000000000}},"30007515":{"solarSystemId":30007515,"solarSystemName":"G:1T55","location":{"x":-24000000000000000000,"y":-312000000000000000,"z":-4700000000000000000}},"30007516":{"solarSystemId":30007516,"solarSystemName":"J:3KSI","location":{"x":-23200000000000000000,"y":-507000000000000000,"z":-5210000000000000000}},"30007517":{"solarSystemId":30007517,"solarSystemName":"P:2O63","location":{"x":-23700000000000000000,"y":-606000000000000000,"z":-5050000000000000000}},"30007518":{"solarSystemId":30007518,"solarSystemName":"P:IOV3","location":{"x":-23000000000000000000,"y":-882000000000000000,"z":-4210000000000000000}},"30007519":{"solarSystemId":30007519,"solarSystemName":"J:151R","location":{"x":-24100000000000000000,"y":-601000000000000000,"z":-5360000000000000000}},"30007520":{"solarSystemId":30007520,"solarSystemName":"J:2OR7","location":{"x":-23600000000000000000,"y":-76000000000000000,"z":-5160000000000000000}},"30007521":{"solarSystemId":30007521,"solarSystemName":"U:L5V6","location":{"x":-23100000000000000000,"y":-249000000000000000,"z":-5070000000000000000}},"30007522":{"solarSystemId":30007522,"solarSystemName":"H:TTT0","location":{"x":-23500000000000000000,"y":-529000000000000000,"z":-4460000000000000000}},"30007523":{"solarSystemId":30007523,"solarSystemName":"Y:3R4I","location":{"x":-24100000000000000000,"y":-589000000000000000,"z":-5050000000000000000}},"30007524":{"solarSystemId":30007524,"solarSystemName":"M:22EE","location":{"x":-24200000000000000000,"y":-771000000000000000,"z":-5090000000000000000}},"30007525":{"solarSystemId":30007525,"solarSystemName":"J:1E86","location":{"x":-23200000000000000000,"y":-320000000000000000,"z":-5200000000000000000}},"30007526":{"solarSystemId":30007526,"solarSystemName":"G:272A","location":{"x":-24000000000000000000,"y":-1140000000000000000,"z":-3630000000000000000}},"30007527":{"solarSystemId":30007527,"solarSystemName":"U:NVI3","location":{"x":-24600000000000000000,"y":-1810000000000000000,"z":-4430000000000000000}},"30007528":{"solarSystemId":30007528,"solarSystemName":"J:1E7O","location":{"x":-25200000000000000000,"y":-1530000000000000000,"z":-3410000000000000000}},"30007529":{"solarSystemId":30007529,"solarSystemName":"J:1AI8","location":{"x":-25700000000000000000,"y":-1370000000000000000,"z":-3300000000000000000}},"30007530":{"solarSystemId":30007530,"solarSystemName":"Y:12AR","location":{"x":-24700000000000000000,"y":-933000000000000000,"z":-2670000000000000000}},"30007531":{"solarSystemId":30007531,"solarSystemName":"P:139V","location":{"x":-25300000000000000000,"y":-1580000000000000000,"z":-4130000000000000000}},"30007532":{"solarSystemId":30007532,"solarSystemName":"U:SL2S","location":{"x":-24300000000000000000,"y":-1740000000000000000,"z":-4370000000000000000}},"30007533":{"solarSystemId":30007533,"solarSystemName":"M:R0NR","location":{"x":-25000000000000000000,"y":-2420000000000000000,"z":-3080000000000000000}},"30007534":{"solarSystemId":30007534,"solarSystemName":"Y:VSK2","location":{"x":-24700000000000000000,"y":-1930000000000000000,"z":-3320000000000000000}},"30007535":{"solarSystemId":30007535,"solarSystemName":"U:E8ER","location":{"x":-23900000000000000000,"y":-724000000000000000,"z":-3570000000000000000}},"30007536":{"solarSystemId":30007536,"solarSystemName":"Q:7AO6","location":{"x":-23900000000000000000,"y":-1110000000000000000,"z":-3570000000000000000}},"30007537":{"solarSystemId":30007537,"solarSystemName":"U:LSE7","location":{"x":-24900000000000000000,"y":-795000000000000000,"z":-3680000000000000000}},"30007538":{"solarSystemId":30007538,"solarSystemName":"G:OV54","location":{"x":-24200000000000000000,"y":-792000000000000000,"z":-3590000000000000000}},"30007539":{"solarSystemId":30007539,"solarSystemName":"Z:O0NS","location":{"x":-25700000000000000000,"y":-1410000000000000000,"z":-3500000000000000000}},"30007540":{"solarSystemId":30007540,"solarSystemName":"U:21SN","location":{"x":-24200000000000000000,"y":-974000000000000000,"z":-5750000000000000000}},"30007541":{"solarSystemId":30007541,"solarSystemName":"D:2225","location":{"x":-24300000000000000000,"y":-1110000000000000000,"z":-4190000000000000000}},"30007542":{"solarSystemId":30007542,"solarSystemName":"D:S050","location":{"x":-24100000000000000000,"y":-1070000000000000000,"z":-5620000000000000000}},"30007543":{"solarSystemId":30007543,"solarSystemName":"P:IS5K","location":{"x":-24400000000000000000,"y":-1430000000000000000,"z":-5210000000000000000}},"30007544":{"solarSystemId":30007544,"solarSystemName":"Z:57EL","location":{"x":-24400000000000000000,"y":-866000000000000000,"z":-5260000000000000000}},"30007545":{"solarSystemId":30007545,"solarSystemName":"M:KSS2","location":{"x":-24400000000000000000,"y":-1800000000000000000,"z":-5010000000000000000}},"30007546":{"solarSystemId":30007546,"solarSystemName":"U:16S8","location":{"x":-23900000000000000000,"y":-1150000000000000000,"z":-5520000000000000000}},"30007547":{"solarSystemId":30007547,"solarSystemName":"U:1NER","location":{"x":-24400000000000000000,"y":-1060000000000000000,"z":-5610000000000000000}},"30007548":{"solarSystemId":30007548,"solarSystemName":"Y:2323","location":{"x":-24300000000000000000,"y":-1950000000000000000,"z":-5900000000000000000}},"30007549":{"solarSystemId":30007549,"solarSystemName":"D:2KEL","location":{"x":-24300000000000000000,"y":-1070000000000000000,"z":-5200000000000000000}},"30007550":{"solarSystemId":30007550,"solarSystemName":"Q:1956","location":{"x":-24300000000000000000,"y":-1360000000000000000,"z":-5870000000000000000}},"30007551":{"solarSystemId":30007551,"solarSystemName":"F:L6RR","location":{"x":-24600000000000000000,"y":-1300000000000000000,"z":-4500000000000000000}},"30007552":{"solarSystemId":30007552,"solarSystemName":"Z:16A1","location":{"x":-25300000000000000000,"y":-1500000000000000000,"z":-4680000000000000000}},"30007553":{"solarSystemId":30007553,"solarSystemName":"U:149V","location":{"x":-25100000000000000000,"y":-1850000000000000000,"z":-4500000000000000000}},"30007554":{"solarSystemId":30007554,"solarSystemName":"D:2KV4","location":{"x":-25400000000000000000,"y":529000000000000000,"z":-3620000000000000000}},"30007555":{"solarSystemId":30007555,"solarSystemName":"U:16AE","location":{"x":-26500000000000000000,"y":740000000000000000,"z":-2000000000000000000}},"30007556":{"solarSystemId":30007556,"solarSystemName":"Y:1OEN","location":{"x":-26400000000000000000,"y":-84600000000000000,"z":-2760000000000000000}},"30007557":{"solarSystemId":30007557,"solarSystemName":"M:192A","location":{"x":-27300000000000000000,"y":-197000000000000000,"z":-2510000000000000000}},"30007558":{"solarSystemId":30007558,"solarSystemName":"D:13L6","location":{"x":-27000000000000000000,"y":958000000000000000,"z":-3000000000000000000}},"30007559":{"solarSystemId":30007559,"solarSystemName":"B:17AO","location":{"x":-24800000000000000000,"y":433000000000000000,"z":-3900000000000000000}},"30007560":{"solarSystemId":30007560,"solarSystemName":"M:KE3R","location":{"x":-25600000000000000000,"y":801000000000000000,"z":-2390000000000000000}},"30007561":{"solarSystemId":30007561,"solarSystemName":"J:KSS2","location":{"x":-24600000000000000000,"y":135000000000000000,"z":-3650000000000000000}},"30007562":{"solarSystemId":30007562,"solarSystemName":"Y:2O41","location":{"x":-25100000000000000000,"y":-227000000000000000,"z":-3540000000000000000}},"30007563":{"solarSystemId":30007563,"solarSystemName":"U:4SNO","location":{"x":-24800000000000000000,"y":306000000000000000,"z":-3000000000000000000}},"30007564":{"solarSystemId":30007564,"solarSystemName":"H:28A6","location":{"x":-26300000000000000000,"y":612000000000000000,"z":-3100000000000000000}},"30007565":{"solarSystemId":30007565,"solarSystemName":"U:LI4O","location":{"x":-24300000000000000000,"y":381000000000000000,"z":-3730000000000000000}},"30007566":{"solarSystemId":30007566,"solarSystemName":"Y:398O","location":{"x":-27500000000000000000,"y":110000000000000000,"z":-6270000000000000000}},"30007567":{"solarSystemId":30007567,"solarSystemName":"J:2LNV","location":{"x":-28200000000000000000,"y":2280000000000000000,"z":-5540000000000000000}},"30007568":{"solarSystemId":30007568,"solarSystemName":"Z:16N2","location":{"x":-26700000000000000000,"y":-135000000000000000,"z":-6720000000000000000}},"30007569":{"solarSystemId":30007569,"solarSystemName":"H:V373","location":{"x":-27400000000000000000,"y":-13500000000000000,"z":-6660000000000000000}},"30007570":{"solarSystemId":30007570,"solarSystemName":"Y:1K77","location":{"x":-26500000000000000000,"y":-183000000000000000,"z":-6650000000000000000}},"30007571":{"solarSystemId":30007571,"solarSystemName":"P:TO4E","location":{"x":-26900000000000000000,"y":2040000000000000000,"z":-7170000000000000000}},"30007572":{"solarSystemId":30007572,"solarSystemName":"Q:1A6A","location":{"x":-27800000000000000000,"y":3070000000000000000,"z":-6430000000000000000}},"30007573":{"solarSystemId":30007573,"solarSystemName":"U:1093","location":{"x":-25800000000000000000,"y":3230000000000000000,"z":-7470000000000000000}},"30007574":{"solarSystemId":30007574,"solarSystemName":"U:1AIK","location":{"x":-28100000000000000000,"y":603000000000000000,"z":-7670000000000000000}},"30007575":{"solarSystemId":30007575,"solarSystemName":"B:194K","location":{"x":-25200000000000000000,"y":2780000000000000000,"z":-7460000000000000000}},"30007576":{"solarSystemId":30007576,"solarSystemName":"H:41I3","location":{"x":-25900000000000000000,"y":-1600000000000000000,"z":-6530000000000000000}},"30007577":{"solarSystemId":30007577,"solarSystemName":"P:28T1","location":{"x":-25600000000000000000,"y":-922000000000000000,"z":-6060000000000000000}},"30007578":{"solarSystemId":30007578,"solarSystemName":"Z:25N2","location":{"x":-25400000000000000000,"y":-1830000000000000000,"z":-5710000000000000000}},"30007579":{"solarSystemId":30007579,"solarSystemName":"H:ELNV","location":{"x":-25700000000000000000,"y":-1030000000000000000,"z":-6240000000000000000}},"30007580":{"solarSystemId":30007580,"solarSystemName":"D:3TV8","location":{"x":-24800000000000000000,"y":-2110000000000000000,"z":-5380000000000000000}},"30007581":{"solarSystemId":30007581,"solarSystemName":"U:38LN","location":{"x":-25200000000000000000,"y":-849000000000000000,"z":-5490000000000000000}},"30007582":{"solarSystemId":30007582,"solarSystemName":"P:KOS6","location":{"x":-25300000000000000000,"y":-1350000000000000000,"z":-6280000000000000000}},"30007583":{"solarSystemId":30007583,"solarSystemName":"Z:23SK","location":{"x":-24800000000000000000,"y":-1120000000000000000,"z":-6080000000000000000}},"30007584":{"solarSystemId":30007584,"solarSystemName":"P:133N","location":{"x":-25200000000000000000,"y":-1930000000000000000,"z":-4700000000000000000}},"30007585":{"solarSystemId":30007585,"solarSystemName":"F:TKSS","location":{"x":-25500000000000000000,"y":-1340000000000000000,"z":-5350000000000000000}},"30007586":{"solarSystemId":30007586,"solarSystemName":"Z:L834","location":{"x":-26100000000000000000,"y":-1370000000000000000,"z":-5480000000000000000}},"30007587":{"solarSystemId":30007587,"solarSystemName":"U:OKN2","location":{"x":-24900000000000000000,"y":-1380000000000000000,"z":-5970000000000000000}},"30007588":{"solarSystemId":30007588,"solarSystemName":"G:N85I","location":{"x":-25400000000000000000,"y":-1110000000000000000,"z":-5970000000000000000}},"30007589":{"solarSystemId":30007589,"solarSystemName":"M:407L","location":{"x":-25100000000000000000,"y":-453000000000000000,"z":-7560000000000000000}},"30007590":{"solarSystemId":30007590,"solarSystemName":"U:T5LV","location":{"x":-24800000000000000000,"y":-555000000000000000,"z":-7550000000000000000}},"30007591":{"solarSystemId":30007591,"solarSystemName":"Z:102R","location":{"x":-24600000000000000000,"y":-612000000000000000,"z":-7470000000000000000}},"30007592":{"solarSystemId":30007592,"solarSystemName":"G:3T9V","location":{"x":-25000000000000000000,"y":-345000000000000000,"z":-7120000000000000000}},"30007593":{"solarSystemId":30007593,"solarSystemName":"Q:L6V5","location":{"x":-25200000000000000000,"y":-711000000000000000,"z":-7810000000000000000}},"30007594":{"solarSystemId":30007594,"solarSystemName":"M:17O8","location":{"x":-25100000000000000000,"y":-1010000000000000000,"z":-7530000000000000000}},"30007595":{"solarSystemId":30007595,"solarSystemName":"J:3K85","location":{"x":-25500000000000000000,"y":-803000000000000000,"z":-7310000000000000000}},"30007596":{"solarSystemId":30007596,"solarSystemName":"B:1R54","location":{"x":-25000000000000000000,"y":-791000000000000000,"z":-7330000000000000000}},"30007597":{"solarSystemId":30007597,"solarSystemName":"Q:EKKS","location":{"x":-25500000000000000000,"y":-607000000000000000,"z":-7760000000000000000}},"30007598":{"solarSystemId":30007598,"solarSystemName":"F:3421","location":{"x":-25100000000000000000,"y":-508000000000000000,"z":-8200000000000000000}},"30007599":{"solarSystemId":30007599,"solarSystemName":"J:3EE7","location":{"x":-25000000000000000000,"y":-407000000000000000,"z":-6940000000000000000}},"30007600":{"solarSystemId":30007600,"solarSystemName":"G:13S9","location":{"x":-25400000000000000000,"y":-109000000000000000,"z":-7160000000000000000}},"30007601":{"solarSystemId":30007601,"solarSystemName":"U:18O1","location":{"x":-24600000000000000000,"y":-721000000000000000,"z":-7590000000000000000}},"30007602":{"solarSystemId":30007602,"solarSystemName":"F:O7IO","location":{"x":-24500000000000000000,"y":-823000000000000000,"z":-7440000000000000000}},"30007603":{"solarSystemId":30007603,"solarSystemName":"U:29N8","location":{"x":-25500000000000000000,"y":-710000000000000000,"z":-6770000000000000000}},"30007604":{"solarSystemId":30007604,"solarSystemName":"Z:29R9","location":{"x":-25700000000000000000,"y":-947000000000000000,"z":-6880000000000000000}},"30007605":{"solarSystemId":30007605,"solarSystemName":"G:LIV1","location":{"x":-26000000000000000000,"y":-633000000000000000,"z":-6610000000000000000}},"30007606":{"solarSystemId":30007606,"solarSystemName":"J:22N7","location":{"x":-25500000000000000000,"y":-753000000000000000,"z":-7090000000000000000}},"30007607":{"solarSystemId":30007607,"solarSystemName":"Z:14O1","location":{"x":-25600000000000000000,"y":-666000000000000000,"z":-6820000000000000000}},"30007608":{"solarSystemId":30007608,"solarSystemName":"J:O4NN","location":{"x":-25400000000000000000,"y":-913000000000000000,"z":-7080000000000000000}},"30007609":{"solarSystemId":30007609,"solarSystemName":"Z:3373","location":{"x":-25500000000000000000,"y":-940000000000000000,"z":-6570000000000000000}},"30007610":{"solarSystemId":30007610,"solarSystemName":"U:1N3E","location":{"x":-25800000000000000000,"y":-929000000000000000,"z":-6750000000000000000}},"30007611":{"solarSystemId":30007611,"solarSystemName":"U:S805","location":{"x":-25900000000000000000,"y":-989000000000000000,"z":-7090000000000000000}},"30007612":{"solarSystemId":30007612,"solarSystemName":"D:282S","location":{"x":-26200000000000000000,"y":-727000000000000000,"z":-6900000000000000000}},"30007613":{"solarSystemId":30007613,"solarSystemName":"J:1IRO","location":{"x":-26100000000000000000,"y":-528000000000000000,"z":-6860000000000000000}},"30007614":{"solarSystemId":30007614,"solarSystemName":"H:29R8","location":{"x":-25700000000000000000,"y":-913000000000000000,"z":-7480000000000000000}},"30007615":{"solarSystemId":30007615,"solarSystemName":"F:K48O","location":{"x":-25700000000000000000,"y":-880000000000000000,"z":-6940000000000000000}},"30007616":{"solarSystemId":30007616,"solarSystemName":"U:TLNS","location":{"x":-25800000000000000000,"y":-818000000000000000,"z":-6790000000000000000}},"30007617":{"solarSystemId":30007617,"solarSystemName":"U:3SR8","location":{"x":-25100000000000000000,"y":-855000000000000000,"z":-6180000000000000000}},"30007618":{"solarSystemId":30007618,"solarSystemName":"F:23EI","location":{"x":-25100000000000000000,"y":-941000000000000000,"z":-6850000000000000000}},"30007619":{"solarSystemId":30007619,"solarSystemName":"Z:1AI5","location":{"x":-25300000000000000000,"y":-722000000000000000,"z":-6320000000000000000}},"30007620":{"solarSystemId":30007620,"solarSystemName":"G:86NN","location":{"x":-24800000000000000000,"y":-530000000000000000,"z":-6470000000000000000}},"30007621":{"solarSystemId":30007621,"solarSystemName":"M:12EK","location":{"x":-25000000000000000000,"y":-901000000000000000,"z":-6380000000000000000}},"30007622":{"solarSystemId":30007622,"solarSystemName":"U:1247","location":{"x":-24700000000000000000,"y":-882000000000000000,"z":-6730000000000000000}},"30007623":{"solarSystemId":30007623,"solarSystemName":"P:VEI6","location":{"x":-24400000000000000000,"y":-1290000000000000000,"z":-6370000000000000000}},"30007624":{"solarSystemId":30007624,"solarSystemName":"Y:14R1","location":{"x":-24900000000000000000,"y":-831000000000000000,"z":-5680000000000000000}},"30007625":{"solarSystemId":30007625,"solarSystemName":"J:2856","location":{"x":-24700000000000000000,"y":-927000000000000000,"z":-6260000000000000000}},"30007626":{"solarSystemId":30007626,"solarSystemName":"D:29V2","location":{"x":-24800000000000000000,"y":-900000000000000000,"z":-6830000000000000000}},"30007627":{"solarSystemId":30007627,"solarSystemName":"J:2A7O","location":{"x":-24400000000000000000,"y":-789000000000000000,"z":-6410000000000000000}},"30007628":{"solarSystemId":30007628,"solarSystemName":"G:278E","location":{"x":-24800000000000000000,"y":-985000000000000000,"z":-6040000000000000000}},"30007629":{"solarSystemId":30007629,"solarSystemName":"P:2T6R","location":{"x":-24900000000000000000,"y":-925000000000000000,"z":-6100000000000000000}},"30007630":{"solarSystemId":30007630,"solarSystemName":"Y:13TT","location":{"x":-24300000000000000000,"y":-468000000000000000,"z":-5980000000000000000}},"30007631":{"solarSystemId":30007631,"solarSystemName":"B:13V8","location":{"x":-24600000000000000000,"y":-650000000000000000,"z":-6420000000000000000}},"30007632":{"solarSystemId":30007632,"solarSystemName":"Q:1T33","location":{"x":-24200000000000000000,"y":-1250000000000000000,"z":-7090000000000000000}},"30007633":{"solarSystemId":30007633,"solarSystemName":"Q:13A6","location":{"x":-24200000000000000000,"y":-971000000000000000,"z":-6950000000000000000}},"30007634":{"solarSystemId":30007634,"solarSystemName":"J:21LN","location":{"x":-24800000000000000000,"y":-1160000000000000000,"z":-7090000000000000000}},"30007635":{"solarSystemId":30007635,"solarSystemName":"B:10AV","location":{"x":-24500000000000000000,"y":-1010000000000000000,"z":-6920000000000000000}},"30007636":{"solarSystemId":30007636,"solarSystemName":"H:1399","location":{"x":-24600000000000000000,"y":-1290000000000000000,"z":-7250000000000000000}},"30007637":{"solarSystemId":30007637,"solarSystemName":"Q:2RN1","location":{"x":-24500000000000000000,"y":-1040000000000000000,"z":-6900000000000000000}},"30007638":{"solarSystemId":30007638,"solarSystemName":"Q:L735","location":{"x":-24600000000000000000,"y":-1160000000000000000,"z":-7060000000000000000}},"30007639":{"solarSystemId":30007639,"solarSystemName":"D:1239","location":{"x":-24400000000000000000,"y":-1510000000000000000,"z":-7170000000000000000}},"30007640":{"solarSystemId":30007640,"solarSystemName":"M:V6NI","location":{"x":-24800000000000000000,"y":-1230000000000000000,"z":-6630000000000000000}},"30007641":{"solarSystemId":30007641,"solarSystemName":"Z:1953","location":{"x":-24600000000000000000,"y":-1430000000000000000,"z":-6930000000000000000}},"30007642":{"solarSystemId":30007642,"solarSystemName":"Y:NK3O","location":{"x":-24600000000000000000,"y":-1150000000000000000,"z":-6760000000000000000}},"30007643":{"solarSystemId":30007643,"solarSystemName":"Q:5R4O","location":{"x":-24500000000000000000,"y":-1610000000000000000,"z":-7040000000000000000}},"30007644":{"solarSystemId":30007644,"solarSystemName":"G:1A96","location":{"x":-24800000000000000000,"y":-1190000000000000000,"z":-7430000000000000000}},"30007645":{"solarSystemId":30007645,"solarSystemName":"B:1R6A","location":{"x":-24400000000000000000,"y":-557000000000000000,"z":-6930000000000000000}},"30007646":{"solarSystemId":30007646,"solarSystemName":"M:104T","location":{"x":-23700000000000000000,"y":-1140000000000000000,"z":-7070000000000000000}},"30007647":{"solarSystemId":30007647,"solarSystemName":"Y:4T28","location":{"x":-24100000000000000000,"y":185000000000000000,"z":-6850000000000000000}},"30007648":{"solarSystemId":30007648,"solarSystemName":"D:17K7","location":{"x":-23600000000000000000,"y":-986000000000000000,"z":-7410000000000000000}},"30007649":{"solarSystemId":30007649,"solarSystemName":"P:80KV","location":{"x":-23300000000000000000,"y":-748000000000000000,"z":-7140000000000000000}},"30007650":{"solarSystemId":30007650,"solarSystemName":"D:IIAN","location":{"x":-23800000000000000000,"y":-181000000000000000,"z":-6510000000000000000}},"30007651":{"solarSystemId":30007651,"solarSystemName":"D:1NKS","location":{"x":-23400000000000000000,"y":-498000000000000000,"z":-6810000000000000000}},"30007652":{"solarSystemId":30007652,"solarSystemName":"B:1676","location":{"x":-23300000000000000000,"y":-1380000000000000000,"z":-7480000000000000000}},"30007653":{"solarSystemId":30007653,"solarSystemName":"Y:N0R6","location":{"x":-24300000000000000000,"y":-182000000000000000,"z":-6530000000000000000}},"30007654":{"solarSystemId":30007654,"solarSystemName":"D:19KE","location":{"x":-24500000000000000000,"y":-50900000000000000,"z":-7170000000000000000}},"30007655":{"solarSystemId":30007655,"solarSystemName":"Q:1O8E","location":{"x":-23400000000000000000,"y":-1010000000000000000,"z":-6500000000000000000}},"30007656":{"solarSystemId":30007656,"solarSystemName":"J:E1S0","location":{"x":-23400000000000000000,"y":-1070000000000000000,"z":-6540000000000000000}},"30007657":{"solarSystemId":30007657,"solarSystemName":"D:1S23","location":{"x":-23800000000000000000,"y":-1020000000000000000,"z":-7560000000000000000}},"30007658":{"solarSystemId":30007658,"solarSystemName":"Y:TK2S","location":{"x":-23400000000000000000,"y":-1080000000000000000,"z":-6490000000000000000}},"30007659":{"solarSystemId":30007659,"solarSystemName":"J:231L","location":{"x":-23700000000000000000,"y":-719000000000000000,"z":-6500000000000000000}},"30007660":{"solarSystemId":30007660,"solarSystemName":"Z:20N6","location":{"x":-23500000000000000000,"y":-282000000000000000,"z":-6550000000000000000}},"30007661":{"solarSystemId":30007661,"solarSystemName":"M:1573","location":{"x":-23400000000000000000,"y":-1010000000000000000,"z":-7560000000000000000}},"30007662":{"solarSystemId":30007662,"solarSystemName":"F:1466","location":{"x":-23200000000000000000,"y":-414000000000000000,"z":-6650000000000000000}},"30007663":{"solarSystemId":30007663,"solarSystemName":"G:12OS","location":{"x":-24300000000000000000,"y":-708000000000000000,"z":-7370000000000000000}},"30007664":{"solarSystemId":30007664,"solarSystemName":"F:17EN","location":{"x":-23600000000000000000,"y":-808000000000000000,"z":-7020000000000000000}},"30007665":{"solarSystemId":30007665,"solarSystemName":"D:K4IO","location":{"x":-24600000000000000000,"y":511000000000000000,"z":-7000000000000000000}},"30007666":{"solarSystemId":30007666,"solarSystemName":"P:1454","location":{"x":-24200000000000000000,"y":464000000000000000,"z":-7130000000000000000}},"30007667":{"solarSystemId":30007667,"solarSystemName":"H:175K","location":{"x":-24100000000000000000,"y":-471000000000000000,"z":-7270000000000000000}},"30007668":{"solarSystemId":30007668,"solarSystemName":"Q:28S7","location":{"x":-25000000000000000000,"y":-748000000000000000,"z":-5120000000000000000}},"30007669":{"solarSystemId":30007669,"solarSystemName":"B:2TS3","location":{"x":-25400000000000000000,"y":-552000000000000000,"z":-5010000000000000000}},"30007670":{"solarSystemId":30007670,"solarSystemName":"Z:1ORA","location":{"x":-25800000000000000000,"y":-830000000000000000,"z":-5930000000000000000}},"30007671":{"solarSystemId":30007671,"solarSystemName":"J:1KRR","location":{"x":-25000000000000000000,"y":7820000000000000,"z":-5180000000000000000}},"30007672":{"solarSystemId":30007672,"solarSystemName":"G:170A","location":{"x":-24800000000000000000,"y":-47500000000000000,"z":-5150000000000000000}},"30007673":{"solarSystemId":30007673,"solarSystemName":"Y:LRE8","location":{"x":-25000000000000000000,"y":-602000000000000000,"z":-5780000000000000000}},"30007674":{"solarSystemId":30007674,"solarSystemName":"M:A7A2","location":{"x":-25200000000000000000,"y":-831000000000000000,"z":-4750000000000000000}},"30007675":{"solarSystemId":30007675,"solarSystemName":"G:OOOL","location":{"x":-24400000000000000000,"y":-104000000000000000,"z":-5240000000000000000}},"30007676":{"solarSystemId":30007676,"solarSystemName":"Y:14S7","location":{"x":-25400000000000000000,"y":-1080000000000000000,"z":-4980000000000000000}},"30007677":{"solarSystemId":30007677,"solarSystemName":"Z:129T","location":{"x":-24300000000000000000,"y":169000000000000000,"z":-4690000000000000000}},"30007678":{"solarSystemId":30007678,"solarSystemName":"H:1IE3","location":{"x":-25600000000000000000,"y":-503000000000000000,"z":-4900000000000000000}},"30007679":{"solarSystemId":30007679,"solarSystemName":"G:N2NT","location":{"x":-25200000000000000000,"y":-627000000000000000,"z":-4950000000000000000}},"30007680":{"solarSystemId":30007680,"solarSystemName":"J:2269","location":{"x":-25700000000000000000,"y":-690000000000000000,"z":-5780000000000000000}},"30007681":{"solarSystemId":30007681,"solarSystemName":"D:RSI3","location":{"x":-24800000000000000000,"y":-364000000000000000,"z":-5960000000000000000}},"30007682":{"solarSystemId":30007682,"solarSystemName":"J:LEEI","location":{"x":-25600000000000000000,"y":-561000000000000000,"z":-6060000000000000000}},"30007683":{"solarSystemId":30007683,"solarSystemName":"B:129L","location":{"x":-24600000000000000000,"y":390000000000000000,"z":-4890000000000000000}},"30007684":{"solarSystemId":30007684,"solarSystemName":"D:V78A","location":{"x":-24300000000000000000,"y":-709000000000000000,"z":-4800000000000000000}},"30007685":{"solarSystemId":30007685,"solarSystemName":"Z:1613","location":{"x":-25100000000000000000,"y":-350000000000000000,"z":-5910000000000000000}},"30007686":{"solarSystemId":30007686,"solarSystemName":"G:33TL","location":{"x":-26600000000000000000,"y":-956000000000000000,"z":-6910000000000000000}},"30007687":{"solarSystemId":30007687,"solarSystemName":"Y:3N9I","location":{"x":-26700000000000000000,"y":-908000000000000000,"z":-6840000000000000000}},"30007688":{"solarSystemId":30007688,"solarSystemName":"J:I5O8","location":{"x":-26200000000000000000,"y":-688000000000000000,"z":-7260000000000000000}},"30007689":{"solarSystemId":30007689,"solarSystemName":"F:VV3E","location":{"x":-26500000000000000000,"y":-777000000000000000,"z":-6670000000000000000}},"30007690":{"solarSystemId":30007690,"solarSystemName":"M:OOVV","location":{"x":-26100000000000000000,"y":-750000000000000000,"z":-7900000000000000000}},"30007691":{"solarSystemId":30007691,"solarSystemName":"M:T9ET","location":{"x":-25800000000000000000,"y":-96200000000000000,"z":-6470000000000000000}},"30007692":{"solarSystemId":30007692,"solarSystemName":"H:2NKE","location":{"x":-26400000000000000000,"y":-934000000000000000,"z":-6860000000000000000}},"30007693":{"solarSystemId":30007693,"solarSystemName":"Q:10O1","location":{"x":-26700000000000000000,"y":-839000000000000000,"z":-7050000000000000000}},"30007694":{"solarSystemId":30007694,"solarSystemName":"U:1EN3","location":{"x":-26100000000000000000,"y":-201000000000000000,"z":-7710000000000000000}},"30007695":{"solarSystemId":30007695,"solarSystemName":"Q:2V15","location":{"x":-26000000000000000000,"y":-152000000000000000,"z":-7570000000000000000}},"30007696":{"solarSystemId":30007696,"solarSystemName":"B:1KE4","location":{"x":-26300000000000000000,"y":-374000000000000000,"z":-6600000000000000000}},"30007697":{"solarSystemId":30007697,"solarSystemName":"F:2OL0","location":{"x":-26000000000000000000,"y":-306000000000000000,"z":-7470000000000000000}},"30007698":{"solarSystemId":30007698,"solarSystemName":"G:4IKR","location":{"x":-26200000000000000000,"y":-223000000000000000,"z":-7500000000000000000}},"30007699":{"solarSystemId":30007699,"solarSystemName":"Q:OLN3","location":{"x":-26500000000000000000,"y":-641000000000000000,"z":-6980000000000000000}},"30007700":{"solarSystemId":30007700,"solarSystemName":"D:27V6","location":{"x":-17300000000000000000,"y":-482000000000000000,"z":-24800000000000000}},"30007701":{"solarSystemId":30007701,"solarSystemName":"Y:SOO1","location":{"x":-17300000000000000000,"y":-417000000000000000,"z":-882000000000000000}},"30007702":{"solarSystemId":30007702,"solarSystemName":"Q:1RV1","location":{"x":-16400000000000000000,"y":-505000000000000000,"z":-714000000000000000}},"30007703":{"solarSystemId":30007703,"solarSystemName":"M:15L9","location":{"x":-17300000000000000000,"y":-989000000000000000,"z":-1220000000000000000}},"30007704":{"solarSystemId":30007704,"solarSystemName":"F:1576","location":{"x":-17500000000000000000,"y":-363000000000000000,"z":-1300000000000000000}},"30007705":{"solarSystemId":30007705,"solarSystemName":"M:46KK","location":{"x":-17300000000000000000,"y":-1260000000000000000,"z":-827000000000000000}},"30007706":{"solarSystemId":30007706,"solarSystemName":"H:O7KO","location":{"x":-17700000000000000000,"y":-642000000000000000,"z":-152000000000000000}},"30007707":{"solarSystemId":30007707,"solarSystemName":"B:2SV2","location":{"x":-16600000000000000000,"y":-432000000000000000,"z":-498000000000000000}},"30007708":{"solarSystemId":30007708,"solarSystemName":"H:1KNI","location":{"x":-17700000000000000000,"y":-541000000000000000,"z":-205000000000000000}},"30007709":{"solarSystemId":30007709,"solarSystemName":"G:15RN","location":{"x":-17500000000000000000,"y":-1440000000000000000,"z":-955000000000000000}},"30007710":{"solarSystemId":30007710,"solarSystemName":"H:16I6","location":{"x":-17600000000000000000,"y":-987000000000000000,"z":-1180000000000000000}},"30007711":{"solarSystemId":30007711,"solarSystemName":"M:17V1","location":{"x":-17600000000000000000,"y":-413000000000000000,"z":-1120000000000000000}},"30007712":{"solarSystemId":30007712,"solarSystemName":"B:2O36","location":{"x":-16500000000000000000,"y":-1150000000000000000,"z":-101000000000000000}},"30007713":{"solarSystemId":30007713,"solarSystemName":"M:3T2T","location":{"x":-17700000000000000000,"y":-1810000000000000000,"z":-1210000000000000000}},"30007714":{"solarSystemId":30007714,"solarSystemName":"Y:2RN3","location":{"x":-17700000000000000000,"y":-1260000000000000000,"z":-470000000000000000}},"30007715":{"solarSystemId":30007715,"solarSystemName":"F:V2E3","location":{"x":-17500000000000000000,"y":-525000000000000000,"z":-492000000000000000}},"30007716":{"solarSystemId":30007716,"solarSystemName":"Z:39SR","location":{"x":-19000000000000000000,"y":-2580000000000000000,"z":3790000000000000000}},"30007717":{"solarSystemId":30007717,"solarSystemName":"Y:1IV9","location":{"x":-21000000000000000000,"y":-157000000000000000,"z":2520000000000000000}},"30007718":{"solarSystemId":30007718,"solarSystemName":"F:1NVN","location":{"x":-20600000000000000000,"y":-228000000000000000,"z":2440000000000000000}},"30007719":{"solarSystemId":30007719,"solarSystemName":"Z:1SN2","location":{"x":-18500000000000000000,"y":-1850000000000000000,"z":1930000000000000000}},"30007720":{"solarSystemId":30007720,"solarSystemName":"J:1589","location":{"x":-18900000000000000000,"y":-1940000000000000000,"z":1960000000000000000}},"30007721":{"solarSystemId":30007721,"solarSystemName":"Y:10TN","location":{"x":-20600000000000000000,"y":-2890000000000000000,"z":2730000000000000000}},"30007722":{"solarSystemId":30007722,"solarSystemName":"Q:1IN5","location":{"x":-21300000000000000000,"y":-1290000000000000000,"z":2080000000000000000}},"30007723":{"solarSystemId":30007723,"solarSystemName":"Q:11IK","location":{"x":-19600000000000000000,"y":-1870000000000000000,"z":577000000000000000}},"30007724":{"solarSystemId":30007724,"solarSystemName":"P:19RT","location":{"x":-20000000000000000000,"y":-388000000000000000,"z":2210000000000000000}},"30007725":{"solarSystemId":30007725,"solarSystemName":"F:3L50","location":{"x":-19200000000000000000,"y":-1760000000000000000,"z":1010000000000000000}},"30007726":{"solarSystemId":30007726,"solarSystemName":"Z:12A3","location":{"x":-20700000000000000000,"y":-1820000000000000000,"z":869000000000000000}},"30007727":{"solarSystemId":30007727,"solarSystemName":"H:2N68","location":{"x":-17900000000000000000,"y":-1040000000000000000,"z":714000000000000000}},"30007728":{"solarSystemId":30007728,"solarSystemName":"F:225N","location":{"x":-18100000000000000000,"y":-699000000000000000,"z":1180000000000000000}},"30007729":{"solarSystemId":30007729,"solarSystemName":"B:19EV","location":{"x":-18900000000000000000,"y":-1020000000000000000,"z":1300000000000000000}},"30007730":{"solarSystemId":30007730,"solarSystemName":"P:11A2","location":{"x":-17500000000000000000,"y":147000000000000000,"z":1780000000000000000}},"30007731":{"solarSystemId":30007731,"solarSystemName":"Y:15EO","location":{"x":-18200000000000000000,"y":-365000000000000000,"z":2250000000000000000}},"30007732":{"solarSystemId":30007732,"solarSystemName":"Q:I7RS","location":{"x":-18900000000000000000,"y":-490000000000000000,"z":1220000000000000000}},"30007733":{"solarSystemId":30007733,"solarSystemName":"U:40K1","location":{"x":-17400000000000000000,"y":-630000000000000000,"z":1790000000000000000}},"30007734":{"solarSystemId":30007734,"solarSystemName":"P:16EA","location":{"x":-18600000000000000000,"y":-731000000000000000,"z":1710000000000000000}},"30007735":{"solarSystemId":30007735,"solarSystemName":"D:13IN","location":{"x":-18700000000000000000,"y":-1240000000000000000,"z":839000000000000000}},"30007736":{"solarSystemId":30007736,"solarSystemName":"Z:TLR7","location":{"x":-18100000000000000000,"y":-213000000000000000,"z":757000000000000000}},"30007737":{"solarSystemId":30007737,"solarSystemName":"B:3KIS","location":{"x":-17800000000000000000,"y":-182000000000000000,"z":1010000000000000000}},"30007738":{"solarSystemId":30007738,"solarSystemName":"P:3TVN","location":{"x":-18400000000000000000,"y":138000000000000000,"z":755000000000000000}},"30007739":{"solarSystemId":30007739,"solarSystemName":"Y:39L5","location":{"x":-17600000000000000000,"y":-337000000000000000,"z":1660000000000000000}},"30007740":{"solarSystemId":30007740,"solarSystemName":"P:1I9S","location":{"x":-18600000000000000000,"y":-102000000000000000,"z":1700000000000000000}},"30007741":{"solarSystemId":30007741,"solarSystemName":"M:45TO","location":{"x":-18500000000000000000,"y":-211000000000000000,"z":563000000000000000}},"30007742":{"solarSystemId":30007742,"solarSystemName":"Z:318O","location":{"x":-17500000000000000000,"y":379000000000000000,"z":1590000000000000000}},"30007743":{"solarSystemId":30007743,"solarSystemName":"Z:3N04","location":{"x":-18200000000000000000,"y":-1580000000000000000,"z":1200000000000000000}},"30007744":{"solarSystemId":30007744,"solarSystemName":"Z:L27L","location":{"x":-17700000000000000000,"y":-415000000000000000,"z":1760000000000000000}},"30007745":{"solarSystemId":30007745,"solarSystemName":"D:114L","location":{"x":-17700000000000000000,"y":39800000000000000,"z":1410000000000000000}},"30007746":{"solarSystemId":30007746,"solarSystemName":"P:39NV","location":{"x":-16800000000000000000,"y":-975000000000000000,"z":449000000000000000}},"30007747":{"solarSystemId":30007747,"solarSystemName":"P:2R1I","location":{"x":-17700000000000000000,"y":-341000000000000000,"z":1330000000000000000}},"30007748":{"solarSystemId":30007748,"solarSystemName":"Q:3I6V","location":{"x":-17300000000000000000,"y":-109000000000000000,"z":541000000000000000}},"30007749":{"solarSystemId":30007749,"solarSystemName":"M:1894","location":{"x":-17500000000000000000,"y":-503000000000000000,"z":478000000000000000}},"30007750":{"solarSystemId":30007750,"solarSystemName":"U:7I65","location":{"x":-17500000000000000000,"y":-907000000000000000,"z":502000000000000000}},"30007751":{"solarSystemId":30007751,"solarSystemName":"Z:971V","location":{"x":-17300000000000000000,"y":75000000000000000,"z":1280000000000000000}},"30007752":{"solarSystemId":30007752,"solarSystemName":"G:20I9","location":{"x":-17600000000000000000,"y":-619000000000000000,"z":1540000000000000000}},"30007753":{"solarSystemId":30007753,"solarSystemName":"P:SKNR","location":{"x":-17100000000000000000,"y":-684000000000000000,"z":35400000000000000}},"30007754":{"solarSystemId":30007754,"solarSystemName":"Y:I608","location":{"x":-17000000000000000000,"y":-712000000000000000,"z":1250000000000000000}},"30007755":{"solarSystemId":30007755,"solarSystemName":"U:23SL","location":{"x":-16800000000000000000,"y":-539000000000000000,"z":1800000000000000000}},"30007756":{"solarSystemId":30007756,"solarSystemName":"H:2934","location":{"x":-16800000000000000000,"y":-216000000000000000,"z":1320000000000000000}},"30007757":{"solarSystemId":30007757,"solarSystemName":"B:LE7I","location":{"x":-17700000000000000000,"y":-864000000000000000,"z":413000000000000000}},"30007758":{"solarSystemId":30007758,"solarSystemName":"Q:45OT","location":{"x":-16000000000000000000,"y":-1240000000000000000,"z":1450000000000000000}},"30007759":{"solarSystemId":30007759,"solarSystemName":"G:1789","location":{"x":-16000000000000000000,"y":-944000000000000000,"z":1420000000000000000}},"30007760":{"solarSystemId":30007760,"solarSystemName":"U:27O1","location":{"x":-17000000000000000000,"y":-905000000000000000,"z":1300000000000000000}},"30007761":{"solarSystemId":30007761,"solarSystemName":"Z:1K34","location":{"x":-16700000000000000000,"y":-750000000000000000,"z":955000000000000000}},"30007762":{"solarSystemId":30007762,"solarSystemName":"Z:11O6","location":{"x":-18500000000000000000,"y":3950000000000000,"z":-279000000000000000}},"30007763":{"solarSystemId":30007763,"solarSystemName":"Y:34K2","location":{"x":-15900000000000000000,"y":133000000000000000,"z":-984000000000000000}},"30007764":{"solarSystemId":30007764,"solarSystemName":"Y:1AEI","location":{"x":-18200000000000000000,"y":-447000000000000000,"z":-1430000000000000000}},"30007765":{"solarSystemId":30007765,"solarSystemName":"P:NK6O","location":{"x":-18200000000000000000,"y":-422000000000000000,"z":-280000000000000000}},"30007766":{"solarSystemId":30007766,"solarSystemName":"M:A841","location":{"x":-17900000000000000000,"y":-344000000000000000,"z":-408000000000000000}},"30007767":{"solarSystemId":30007767,"solarSystemName":"G:1931","location":{"x":-16000000000000000000,"y":258000000000000000,"z":-458000000000000000}},"30007768":{"solarSystemId":30007768,"solarSystemName":"M:141O","location":{"x":-17800000000000000000,"y":-488000000000000000,"z":-1470000000000000000}},"30007769":{"solarSystemId":30007769,"solarSystemName":"Y:II94","location":{"x":-17100000000000000000,"y":-62300000000000000,"z":58900000000000000}},"30007770":{"solarSystemId":30007770,"solarSystemName":"M:3IVK","location":{"x":-18300000000000000000,"y":-752000000000000000,"z":-477000000000000000}},"30007771":{"solarSystemId":30007771,"solarSystemName":"M:2N91","location":{"x":-18200000000000000000,"y":-306000000000000000,"z":-608000000000000000}},"30007772":{"solarSystemId":30007772,"solarSystemName":"M:T8O5","location":{"x":-17800000000000000000,"y":-64500000000000000,"z":254000000000000000}},"30007773":{"solarSystemId":30007773,"solarSystemName":"Y:V0KT","location":{"x":-17400000000000000000,"y":-68200000000000000,"z":-635000000000000000}},"30007774":{"solarSystemId":30007774,"solarSystemName":"Z:1S88","location":{"x":-18200000000000000000,"y":201000000000000000,"z":269000000000000000}},"30007775":{"solarSystemId":30007775,"solarSystemName":"U:1OVE","location":{"x":-17700000000000000000,"y":217000000000000000,"z":-135000000000000000}},"30007776":{"solarSystemId":30007776,"solarSystemName":"U:LRA8","location":{"x":-17200000000000000000,"y":-349000000000000000,"z":-128000000000000000}},"30007777":{"solarSystemId":30007777,"solarSystemName":"B:182V","location":{"x":-17600000000000000000,"y":-305000000000000000,"z":-1610000000000000000}},"30007778":{"solarSystemId":30007778,"solarSystemName":"Y:15I9","location":{"x":-18400000000000000000,"y":-197000000000000000,"z":28500000000000000}},"30007779":{"solarSystemId":30007779,"solarSystemName":"J:15L7","location":{"x":-15600000000000000000,"y":488000000000000000,"z":-518000000000000000}},"30007780":{"solarSystemId":30007780,"solarSystemName":"P:IO93","location":{"x":-18200000000000000000,"y":-524000000000000000,"z":-258704000000000}},"30007781":{"solarSystemId":30007781,"solarSystemName":"G:I94R","location":{"x":-18300000000000000000,"y":-464000000000000000,"z":-1020000000000000000}},"30007782":{"solarSystemId":30007782,"solarSystemName":"F:148T","location":{"x":-19500000000000000000,"y":-2680000000000000000,"z":-889000000000000000}},"30007783":{"solarSystemId":30007783,"solarSystemName":"M:V1ST","location":{"x":-20000000000000000000,"y":-2150000000000000000,"z":-1200000000000000000}},"30007784":{"solarSystemId":30007784,"solarSystemName":"Q:214T","location":{"x":-18400000000000000000,"y":-2300000000000000000,"z":695000000000000000}},"30007785":{"solarSystemId":30007785,"solarSystemName":"J:17R5","location":{"x":-19700000000000000000,"y":-1870000000000000000,"z":-1060000000000000000}},"30007786":{"solarSystemId":30007786,"solarSystemName":"F:2VAE","location":{"x":-16500000000000000000,"y":-2060000000000000000,"z":269000000000000000}},"30007787":{"solarSystemId":30007787,"solarSystemName":"B:1348","location":{"x":-19300000000000000000,"y":-1540000000000000000,"z":-1300000000000000000}},"30007788":{"solarSystemId":30007788,"solarSystemName":"Z:12TN","location":{"x":-18300000000000000000,"y":-2600000000000000000,"z":-1930000000000000000}},"30007789":{"solarSystemId":30007789,"solarSystemName":"Y:18ON","location":{"x":-19700000000000000000,"y":-2050000000000000000,"z":-1170000000000000000}},"30007790":{"solarSystemId":30007790,"solarSystemName":"M:13V5","location":{"x":-18100000000000000000,"y":-2430000000000000000,"z":96300000000000000}},"30007791":{"solarSystemId":30007791,"solarSystemName":"F:18S2","location":{"x":-18900000000000000000,"y":-1950000000000000000,"z":49700000000000000}},"30007792":{"solarSystemId":30007792,"solarSystemName":"F:1AS5","location":{"x":-19100000000000000000,"y":-2730000000000000000,"z":265000000000000000}},"30007793":{"solarSystemId":30007793,"solarSystemName":"M:1AVA","location":{"x":-18500000000000000000,"y":-2880000000000000000,"z":-1540000000000000000}},"30007794":{"solarSystemId":30007794,"solarSystemName":"Z:11LV","location":{"x":-18800000000000000000,"y":-2880000000000000000,"z":-936000000000000000}},"30007795":{"solarSystemId":30007795,"solarSystemName":"J:1932","location":{"x":-17000000000000000000,"y":-2480000000000000000,"z":3170000000000000}},"30007796":{"solarSystemId":30007796,"solarSystemName":"H:1S0V","location":{"x":-18700000000000000000,"y":-1780000000000000000,"z":-344000000000000000}},"30007797":{"solarSystemId":30007797,"solarSystemName":"U:12AV","location":{"x":-18400000000000000000,"y":-1530000000000000000,"z":-704000000000000000}},"30007798":{"solarSystemId":30007798,"solarSystemName":"B:591V","location":{"x":-19000000000000000000,"y":-1450000000000000000,"z":-1140000000000000000}},"30007799":{"solarSystemId":30007799,"solarSystemName":"Z:SI32","location":{"x":-19100000000000000000,"y":-1530000000000000000,"z":-581000000000000000}},"30007800":{"solarSystemId":30007800,"solarSystemName":"M:144R","location":{"x":-18500000000000000000,"y":-2180000000000000000,"z":-1050000000000000000}},"30007801":{"solarSystemId":30007801,"solarSystemName":"Q:VTOT","location":{"x":-18600000000000000000,"y":-793000000000000000,"z":-909000000000000000}},"30007802":{"solarSystemId":30007802,"solarSystemName":"J:1396","location":{"x":-18700000000000000000,"y":-857000000000000000,"z":-1020000000000000000}},"30007803":{"solarSystemId":30007803,"solarSystemName":"D:9EAE","location":{"x":-18900000000000000000,"y":-922000000000000000,"z":-614000000000000000}},"30007804":{"solarSystemId":30007804,"solarSystemName":"M:7S01","location":{"x":-19000000000000000000,"y":-1030000000000000000,"z":-1360000000000000000}},"30007805":{"solarSystemId":30007805,"solarSystemName":"Q:444A","location":{"x":-18300000000000000000,"y":-1080000000000000000,"z":-729000000000000000}},"30007806":{"solarSystemId":30007806,"solarSystemName":"G:153N","location":{"x":-18000000000000000000,"y":-1300000000000000000,"z":-1410000000000000000}},"30007807":{"solarSystemId":30007807,"solarSystemName":"D:V2NN","location":{"x":-19000000000000000000,"y":-984000000000000000,"z":-737000000000000000}},"30007808":{"solarSystemId":30007808,"solarSystemName":"D:1497","location":{"x":-17900000000000000000,"y":-1240000000000000000,"z":-932000000000000000}},"30007809":{"solarSystemId":30007809,"solarSystemName":"J:10OO","location":{"x":-17900000000000000000,"y":-1250000000000000000,"z":-1130000000000000000}},"30007810":{"solarSystemId":30007810,"solarSystemName":"M:KLN0","location":{"x":-18500000000000000000,"y":-1640000000000000000,"z":-759000000000000000}},"30007811":{"solarSystemId":30007811,"solarSystemName":"P:98AS","location":{"x":-18900000000000000000,"y":-710000000000000000,"z":-1270000000000000000}},"30007812":{"solarSystemId":30007812,"solarSystemName":"Q:1EE6","location":{"x":-18700000000000000000,"y":-1110000000000000000,"z":-635000000000000000}},"30007813":{"solarSystemId":30007813,"solarSystemName":"P:N5A0","location":{"x":-18500000000000000000,"y":-1050000000000000000,"z":-972000000000000000}},"30007814":{"solarSystemId":30007814,"solarSystemName":"M:2LOT","location":{"x":-18800000000000000000,"y":-287000000000000000,"z":-113000000000000000}},"30007815":{"solarSystemId":30007815,"solarSystemName":"Z:2LK2","location":{"x":-19700000000000000000,"y":-389000000000000000,"z":36000000000000000}},"30007816":{"solarSystemId":30007816,"solarSystemName":"U:147E","location":{"x":-19800000000000000000,"y":-1340000000000000000,"z":260000000000000000}},"30007817":{"solarSystemId":30007817,"solarSystemName":"M:16L4","location":{"x":-19700000000000000000,"y":-1600000000000000000,"z":154000000000000000}},"30007818":{"solarSystemId":30007818,"solarSystemName":"Y:47AN","location":{"x":-19400000000000000000,"y":-786000000000000000,"z":580000000000000000}},"30007819":{"solarSystemId":30007819,"solarSystemName":"B:VOTS","location":{"x":-19100000000000000000,"y":-1110000000000000000,"z":633000000000000000}},"30007820":{"solarSystemId":30007820,"solarSystemName":"U:13OI","location":{"x":-18500000000000000000,"y":-704000000000000000,"z":-11300000000000000}},"30007821":{"solarSystemId":30007821,"solarSystemName":"J:18LK","location":{"x":-18600000000000000000,"y":-520000000000000000,"z":-232000000000000000}},"30007822":{"solarSystemId":30007822,"solarSystemName":"F:VSI3","location":{"x":-19400000000000000000,"y":-1490000000000000000,"z":209000000000000000}},"30007823":{"solarSystemId":30007823,"solarSystemName":"M:3KK7","location":{"x":-19800000000000000000,"y":-554000000000000000,"z":89600000000000000}},"30007824":{"solarSystemId":30007824,"solarSystemName":"Y:2R39","location":{"x":-20100000000000000000,"y":-1080000000000000000,"z":412000000000000000}},"30007825":{"solarSystemId":30007825,"solarSystemName":"H:121R","location":{"x":-19100000000000000000,"y":-1140000000000000000,"z":254000000000000000}},"30007826":{"solarSystemId":30007826,"solarSystemName":"Q:20V3","location":{"x":-19100000000000000000,"y":-475000000000000000,"z":202000000000000000}},"30007827":{"solarSystemId":30007827,"solarSystemName":"Z:29KN","location":{"x":-18900000000000000000,"y":-1020000000000000000,"z":115000000000000000}},"30007828":{"solarSystemId":30007828,"solarSystemName":"F:15A3","location":{"x":-18400000000000000000,"y":-806000000000000000,"z":-444000000000000000}},"30007829":{"solarSystemId":30007829,"solarSystemName":"H:136K","location":{"x":-19200000000000000000,"y":-1680000000000000000,"z":-18900000000000000}},"30007830":{"solarSystemId":30007830,"solarSystemName":"Z:TLSS","location":{"x":-18900000000000000000,"y":-1220000000000000000,"z":118000000000000000}},"30007831":{"solarSystemId":30007831,"solarSystemName":"F:201A","location":{"x":-19000000000000000000,"y":-1160000000000000000,"z":213000000000000000}},"30007832":{"solarSystemId":30007832,"solarSystemName":"D:AE3L","location":{"x":-18700000000000000000,"y":-666000000000000000,"z":-211000000000000000}},"30007833":{"solarSystemId":30007833,"solarSystemName":"Y:855T","location":{"x":-19600000000000000000,"y":-646000000000000000,"z":-45400000000000000}},"30007834":{"solarSystemId":30007834,"solarSystemName":"F:366K","location":{"x":-17400000000000000000,"y":344000000000000000,"z":78000000000000000}},"30007835":{"solarSystemId":30007835,"solarSystemName":"D:16IN","location":{"x":-15500000000000000000,"y":2060000000000000000,"z":230000000000000000}},"30007836":{"solarSystemId":30007836,"solarSystemName":"U:2EO5","location":{"x":-17500000000000000000,"y":691000000000000000,"z":-51000000000000000}},"30007837":{"solarSystemId":30007837,"solarSystemName":"U:V2R3","location":{"x":-17800000000000000000,"y":475000000000000000,"z":47300000000000000}},"30007838":{"solarSystemId":30007838,"solarSystemName":"H:374E","location":{"x":-17400000000000000000,"y":2070000000000000000,"z":102000000000000000}},"30007839":{"solarSystemId":30007839,"solarSystemName":"M:266T","location":{"x":-15100000000000000000,"y":2480000000000000000,"z":224000000000000000}},"30007840":{"solarSystemId":30007840,"solarSystemName":"D:336O","location":{"x":-15600000000000000000,"y":2190000000000000000,"z":430000000000000000}},"30007841":{"solarSystemId":30007841,"solarSystemName":"Z:2VKR","location":{"x":-16800000000000000000,"y":1950000000000000000,"z":-95800000000000000}},"30007842":{"solarSystemId":30007842,"solarSystemName":"J:1E0E","location":{"x":-16700000000000000000,"y":1620000000000000000,"z":201000000000000000}},"30007843":{"solarSystemId":30007843,"solarSystemName":"U:1649","location":{"x":-16600000000000000000,"y":1740000000000000000,"z":947000000000000000}},"30007844":{"solarSystemId":30007844,"solarSystemName":"Q:R02R","location":{"x":-16100000000000000000,"y":2520000000000000000,"z":-1300000000000000000}},"30007845":{"solarSystemId":30007845,"solarSystemName":"P:1I1N","location":{"x":-17300000000000000000,"y":1180000000000000000,"z":-299000000000000000}},"30007846":{"solarSystemId":30007846,"solarSystemName":"F:2KT3","location":{"x":-19300000000000000000,"y":2840000000000000000,"z":-5300000000000000000}},"30007847":{"solarSystemId":30007847,"solarSystemName":"Y:2K16","location":{"x":-19900000000000000000,"y":1920000000000000000,"z":-7100000000000000000}},"30007848":{"solarSystemId":30007848,"solarSystemName":"B:1144","location":{"x":-20200000000000000000,"y":1440000000000000000,"z":-4850000000000000000}},"30007849":{"solarSystemId":30007849,"solarSystemName":"P:11E0","location":{"x":-19300000000000000000,"y":748000000000000000,"z":-5330000000000000000}},"30007850":{"solarSystemId":30007850,"solarSystemName":"B:1646","location":{"x":-20500000000000000000,"y":947000000000000000,"z":-5760000000000000000}},"30007851":{"solarSystemId":30007851,"solarSystemName":"G:37IL","location":{"x":-19600000000000000000,"y":3050000000000000000,"z":-4930000000000000000}},"30007852":{"solarSystemId":30007852,"solarSystemName":"M:20KA","location":{"x":-20000000000000000000,"y":786000000000000000,"z":-6430000000000000000}},"30007853":{"solarSystemId":30007853,"solarSystemName":"B:1401","location":{"x":-18600000000000000000,"y":1410000000000000000,"z":-5050000000000000000}},"30007854":{"solarSystemId":30007854,"solarSystemName":"F:19ET","location":{"x":-19800000000000000000,"y":1200000000000000000,"z":-5840000000000000000}},"30007855":{"solarSystemId":30007855,"solarSystemName":"Y:VTTN","location":{"x":-21000000000000000000,"y":2580000000000000000,"z":-6030000000000000000}},"30007856":{"solarSystemId":30007856,"solarSystemName":"Z:11OT","location":{"x":-19400000000000000000,"y":2460000000000000000,"z":-5480000000000000000}},"30007857":{"solarSystemId":30007857,"solarSystemName":"Q:TNT0","location":{"x":-19800000000000000000,"y":1330000000000000000,"z":-4440000000000000000}},"30007858":{"solarSystemId":30007858,"solarSystemName":"B:124V","location":{"x":-19700000000000000000,"y":1920000000000000000,"z":-5890000000000000000}},"30007859":{"solarSystemId":30007859,"solarSystemName":"F:TOV2","location":{"x":-18700000000000000000,"y":238000000000000000,"z":-6830000000000000000}},"30007860":{"solarSystemId":30007860,"solarSystemName":"M:1S8I","location":{"x":-18200000000000000000,"y":-426000000000000000,"z":-6620000000000000000}},"30007861":{"solarSystemId":30007861,"solarSystemName":"F:2S0K","location":{"x":-18500000000000000000,"y":109000000000000000,"z":-5960000000000000000}},"30007862":{"solarSystemId":30007862,"solarSystemName":"U:18A6","location":{"x":-19200000000000000000,"y":85100000000000000,"z":-5600000000000000000}},"30007863":{"solarSystemId":30007863,"solarSystemName":"M:I33A","location":{"x":-19400000000000000000,"y":145000000000000000,"z":-6830000000000000000}},"30007864":{"solarSystemId":30007864,"solarSystemName":"J:177N","location":{"x":-17900000000000000000,"y":-33300000000000000,"z":-6440000000000000000}},"30007865":{"solarSystemId":30007865,"solarSystemName":"Z:20AT","location":{"x":-18300000000000000000,"y":-403000000000000000,"z":-6760000000000000000}},"30007866":{"solarSystemId":30007866,"solarSystemName":"G:S5RS","location":{"x":-18700000000000000000,"y":135000000000000000,"z":-6410000000000000000}},"30007867":{"solarSystemId":30007867,"solarSystemName":"M:1T6K","location":{"x":-19600000000000000000,"y":266000000000000000,"z":-6420000000000000000}},"30007868":{"solarSystemId":30007868,"solarSystemName":"Y:1E6V","location":{"x":-18900000000000000000,"y":-52000000000000000,"z":-5820000000000000000}},"30007869":{"solarSystemId":30007869,"solarSystemName":"F:27SO","location":{"x":-19300000000000000000,"y":217000000000000000,"z":-6670000000000000000}},"30007870":{"solarSystemId":30007870,"solarSystemName":"M:3ETR","location":{"x":-18900000000000000000,"y":-411000000000000000,"z":-6760000000000000000}},"30007871":{"solarSystemId":30007871,"solarSystemName":"Y:16SL","location":{"x":-18400000000000000000,"y":890000000000000000,"z":-6610000000000000000}},"30007872":{"solarSystemId":30007872,"solarSystemName":"D:21A2","location":{"x":-18500000000000000000,"y":73800000000000000,"z":-6050000000000000000}},"30007873":{"solarSystemId":30007873,"solarSystemName":"P:R4A3","location":{"x":-18500000000000000000,"y":215000000000000000,"z":-6390000000000000000}},"30007874":{"solarSystemId":30007874,"solarSystemName":"U:14TR","location":{"x":-17800000000000000000,"y":-221000000000000000,"z":-6800000000000000000}},"30007875":{"solarSystemId":30007875,"solarSystemName":"J:EK77","location":{"x":-19600000000000000000,"y":191000000000000000,"z":-6200000000000000000}},"30007876":{"solarSystemId":30007876,"solarSystemName":"Q:10LL","location":{"x":-18300000000000000000,"y":-625000000000000000,"z":-6600000000000000000}},"30007877":{"solarSystemId":30007877,"solarSystemName":"U:39KR","location":{"x":-18000000000000000000,"y":1710000000000000000,"z":-3450000000000000000}},"30007878":{"solarSystemId":30007878,"solarSystemName":"P:1E5N","location":{"x":-17700000000000000000,"y":2230000000000000000,"z":-2150000000000000000}},"30007879":{"solarSystemId":30007879,"solarSystemName":"P:182E","location":{"x":-17900000000000000000,"y":664000000000000000,"z":-2380000000000000000}},"30007880":{"solarSystemId":30007880,"solarSystemName":"B:1AR7","location":{"x":-18800000000000000000,"y":1140000000000000000,"z":-2760000000000000000}},"30007881":{"solarSystemId":30007881,"solarSystemName":"Q:108R","location":{"x":-18500000000000000000,"y":2230000000000000000,"z":-4430000000000000000}},"30007882":{"solarSystemId":30007882,"solarSystemName":"G:19N6","location":{"x":-17600000000000000000,"y":2520000000000000000,"z":-3470000000000000000}},"30007883":{"solarSystemId":30007883,"solarSystemName":"G:1IV1","location":{"x":-19300000000000000000,"y":1050000000000000000,"z":-3630000000000000000}},"30007884":{"solarSystemId":30007884,"solarSystemName":"P:1423","location":{"x":-17800000000000000000,"y":1490000000000000000,"z":-2480000000000000000}},"30007885":{"solarSystemId":30007885,"solarSystemName":"P:R3SN","location":{"x":-17200000000000000000,"y":774000000000000000,"z":-4230000000000000000}},"30007886":{"solarSystemId":30007886,"solarSystemName":"P:K4SO","location":{"x":-17200000000000000000,"y":1950000000000000000,"z":-3950000000000000000}},"30007887":{"solarSystemId":30007887,"solarSystemName":"Q:14AO","location":{"x":-18900000000000000000,"y":1960000000000000000,"z":-2940000000000000000}},"30007888":{"solarSystemId":30007888,"solarSystemName":"F:SIO2","location":{"x":-17900000000000000000,"y":482000000000000000,"z":-2700000000000000000}},"30007889":{"solarSystemId":30007889,"solarSystemName":"H:VLS1","location":{"x":-18700000000000000000,"y":1140000000000000000,"z":-2980000000000000000}},"30007890":{"solarSystemId":30007890,"solarSystemName":"P:2N48","location":{"x":-17800000000000000000,"y":398000000000000000,"z":-5760000000000000000}},"30007891":{"solarSystemId":30007891,"solarSystemName":"U:32VS","location":{"x":-16600000000000000000,"y":2430000000000000000,"z":-7880000000000000000}},"30007892":{"solarSystemId":30007892,"solarSystemName":"M:101A","location":{"x":-17000000000000000000,"y":2350000000000000000,"z":-8060000000000000000}},"30007893":{"solarSystemId":30007893,"solarSystemName":"F:SIAE","location":{"x":-17900000000000000000,"y":229000000000000000,"z":-7280000000000000000}},"30007894":{"solarSystemId":30007894,"solarSystemName":"M:S4V7","location":{"x":-18300000000000000000,"y":1670000000000000000,"z":-6680000000000000000}},"30007895":{"solarSystemId":30007895,"solarSystemName":"B:T5V7","location":{"x":-17600000000000000000,"y":701000000000000000,"z":-5950000000000000000}},"30007896":{"solarSystemId":30007896,"solarSystemName":"M:18NS","location":{"x":-17000000000000000000,"y":14500000000000000,"z":-6870000000000000000}},"30007897":{"solarSystemId":30007897,"solarSystemName":"F:308K","location":{"x":-17700000000000000000,"y":227000000000000000,"z":-6020000000000000000}},"30007898":{"solarSystemId":30007898,"solarSystemName":"Z:I9V5","location":{"x":-16800000000000000000,"y":-331000000000000000,"z":-6970000000000000000}},"30007899":{"solarSystemId":30007899,"solarSystemName":"Y:NA9K","location":{"x":-16300000000000000000,"y":652000000000000000,"z":-6840000000000000000}},"30007900":{"solarSystemId":30007900,"solarSystemName":"U:39A8","location":{"x":-16900000000000000000,"y":-210000000000000000,"z":-6820000000000000000}},"30007901":{"solarSystemId":30007901,"solarSystemName":"G:122A","location":{"x":-17400000000000000000,"y":-61500000000000000,"z":-6620000000000000000}},"30007902":{"solarSystemId":30007902,"solarSystemName":"Z:109V","location":{"x":-17300000000000000000,"y":1170000000000000000,"z":-7290000000000000000}},"30007903":{"solarSystemId":30007903,"solarSystemName":"Q:2SR3","location":{"x":-17700000000000000000,"y":947000000000000000,"z":-6920000000000000000}},"30007904":{"solarSystemId":30007904,"solarSystemName":"U:355E","location":{"x":-16300000000000000000,"y":1610000000000000000,"z":-6360000000000000000}},"30007905":{"solarSystemId":30007905,"solarSystemName":"J:3E41","location":{"x":-16700000000000000000,"y":324000000000000000,"z":-6680000000000000000}},"30007906":{"solarSystemId":30007906,"solarSystemName":"D:VSTE","location":{"x":-17200000000000000000,"y":400000000000000000,"z":-7560000000000000000}},"30007907":{"solarSystemId":30007907,"solarSystemName":"Q:SKA6","location":{"x":-17200000000000000000,"y":1490000000000000000,"z":-6770000000000000000}},"30007908":{"solarSystemId":30007908,"solarSystemName":"P:VR9N","location":{"x":-17800000000000000000,"y":1120000000000000000,"z":-6290000000000000000}},"30007909":{"solarSystemId":30007909,"solarSystemName":"Y:LAV2","location":{"x":-18200000000000000000,"y":933000000000000000,"z":-6370000000000000000}},"30007910":{"solarSystemId":30007910,"solarSystemName":"G:2IAL","location":{"x":-16400000000000000000,"y":2340000000000000000,"z":-6330000000000000000}},"30007911":{"solarSystemId":30007911,"solarSystemName":"G:3T3O","location":{"x":-16600000000000000000,"y":3240000000000000000,"z":-4320000000000000000}},"30007912":{"solarSystemId":30007912,"solarSystemName":"B:S2LL","location":{"x":-18500000000000000000,"y":2450000000000000000,"z":-5040000000000000000}},"30007913":{"solarSystemId":30007913,"solarSystemName":"G:15TN","location":{"x":-18100000000000000000,"y":2280000000000000000,"z":-6090000000000000000}},"30007914":{"solarSystemId":30007914,"solarSystemName":"Q:L7AT","location":{"x":-17200000000000000000,"y":2500000000000000000,"z":-5220000000000000000}},"30007915":{"solarSystemId":30007915,"solarSystemName":"F:2LRV","location":{"x":-16400000000000000000,"y":1430000000000000000,"z":-5380000000000000000}},"30007916":{"solarSystemId":30007916,"solarSystemName":"M:3RN8","location":{"x":-17400000000000000000,"y":1370000000000000000,"z":-5490000000000000000}},"30007917":{"solarSystemId":30007917,"solarSystemName":"P:15SO","location":{"x":-17100000000000000000,"y":2000000000000000000,"z":-5010000000000000000}},"30007918":{"solarSystemId":30007918,"solarSystemName":"B:1OO7","location":{"x":-18100000000000000000,"y":1460000000000000000,"z":-5750000000000000000}},"30007919":{"solarSystemId":30007919,"solarSystemName":"Z:1I9K","location":{"x":-18400000000000000000,"y":1390000000000000000,"z":-4980000000000000000}},"30007920":{"solarSystemId":30007920,"solarSystemName":"Z:171I","location":{"x":-18100000000000000000,"y":1820000000000000000,"z":-5690000000000000000}},"30007921":{"solarSystemId":30007921,"solarSystemName":"H:SA7N","location":{"x":-16500000000000000000,"y":2370000000000000000,"z":-3910000000000000000}},"30007922":{"solarSystemId":30007922,"solarSystemName":"J:TARN","location":{"x":-17100000000000000000,"y":941000000000000000,"z":-4680000000000000000}},"30007923":{"solarSystemId":30007923,"solarSystemName":"Z:3737","location":{"x":-17000000000000000000,"y":-506000000000000000,"z":-6440000000000000000}},"30007924":{"solarSystemId":30007924,"solarSystemName":"D:18SS","location":{"x":-17500000000000000000,"y":-1200000000000000000,"z":-6270000000000000000}},"30007925":{"solarSystemId":30007925,"solarSystemName":"M:2O13","location":{"x":-18300000000000000000,"y":-89800000000000000,"z":-5480000000000000000}},"30007926":{"solarSystemId":30007926,"solarSystemName":"F:20O3","location":{"x":-17900000000000000000,"y":-769000000000000000,"z":-5720000000000000000}},"30007927":{"solarSystemId":30007927,"solarSystemName":"M:293I","location":{"x":-17500000000000000000,"y":-525000000000000000,"z":-5130000000000000000}},"30007928":{"solarSystemId":30007928,"solarSystemName":"P:63R6","location":{"x":-17300000000000000000,"y":-1080000000000000000,"z":-5570000000000000000}},"30007929":{"solarSystemId":30007929,"solarSystemName":"Q:2AVL","location":{"x":-17900000000000000000,"y":-254000000000000000,"z":-5250000000000000000}},"30007930":{"solarSystemId":30007930,"solarSystemName":"F:V1NT","location":{"x":-17600000000000000000,"y":-753000000000000000,"z":-6420000000000000000}},"30007931":{"solarSystemId":30007931,"solarSystemName":"Y:3A47","location":{"x":-17300000000000000000,"y":-762000000000000000,"z":-5940000000000000000}},"30007932":{"solarSystemId":30007932,"solarSystemName":"M:18K0","location":{"x":-17700000000000000000,"y":-281000000000000000,"z":-6170000000000000000}},"30007933":{"solarSystemId":30007933,"solarSystemName":"M:1RAL","location":{"x":-17000000000000000000,"y":-511000000000000000,"z":-5440000000000000000}},"30007934":{"solarSystemId":30007934,"solarSystemName":"M:1867","location":{"x":-17100000000000000000,"y":-1120000000000000000,"z":-5810000000000000000}},"30007935":{"solarSystemId":30007935,"solarSystemName":"B:1K7E","location":{"x":-18000000000000000000,"y":-118000000000000000,"z":-5590000000000000000}},"30007936":{"solarSystemId":30007936,"solarSystemName":"U:9O1T","location":{"x":-17000000000000000000,"y":-515000000000000000,"z":-5490000000000000000}},"30007937":{"solarSystemId":30007937,"solarSystemName":"U:14I4","location":{"x":-18300000000000000000,"y":138000000000000000,"z":-5150000000000000000}},"30007938":{"solarSystemId":30007938,"solarSystemName":"J:TL17","location":{"x":-17700000000000000000,"y":-559000000000000000,"z":-5540000000000000000}},"30007939":{"solarSystemId":30007939,"solarSystemName":"J:L9O3","location":{"x":-17600000000000000000,"y":-710000000000000000,"z":-5990000000000000000}},"30007940":{"solarSystemId":30007940,"solarSystemName":"Y:STIK","location":{"x":-17800000000000000000,"y":-724000000000000000,"z":-6200000000000000000}},"30007941":{"solarSystemId":30007941,"solarSystemName":"F:1TAI","location":{"x":-17400000000000000000,"y":-253000000000000000,"z":-6420000000000000000}},"30007942":{"solarSystemId":30007942,"solarSystemName":"U:28KT","location":{"x":-17500000000000000000,"y":-913000000000000000,"z":-5900000000000000000}},"30007943":{"solarSystemId":30007943,"solarSystemName":"Z:T77R","location":{"x":-17600000000000000000,"y":-429000000000000000,"z":-5080000000000000000}},"30007944":{"solarSystemId":30007944,"solarSystemName":"F:19K1","location":{"x":-16900000000000000000,"y":-716000000000000000,"z":-5560000000000000000}},"30007945":{"solarSystemId":30007945,"solarSystemName":"G:L09A","location":{"x":-16700000000000000000,"y":-640000000000000000,"z":-5280000000000000000}},"30007946":{"solarSystemId":30007946,"solarSystemName":"Z:28RT","location":{"x":-17700000000000000000,"y":-543000000000000000,"z":-5840000000000000000}},"30007947":{"solarSystemId":30007947,"solarSystemName":"G:S1AK","location":{"x":-17100000000000000000,"y":-1050000000000000000,"z":-6060000000000000000}},"30007948":{"solarSystemId":30007948,"solarSystemName":"B:22SL","location":{"x":-18000000000000000000,"y":-168000000000000000,"z":-5470000000000000000}},"30007949":{"solarSystemId":30007949,"solarSystemName":"M:2S1A","location":{"x":-18200000000000000000,"y":393000000000000000,"z":-4160000000000000000}},"30007950":{"solarSystemId":30007950,"solarSystemName":"B:2KLL","location":{"x":-18600000000000000000,"y":-133000000000000000,"z":-4480000000000000000}},"30007951":{"solarSystemId":30007951,"solarSystemName":"M:R4IE","location":{"x":-19800000000000000000,"y":228000000000000000,"z":-4260000000000000000}},"30007952":{"solarSystemId":30007952,"solarSystemName":"U:14I5","location":{"x":-19100000000000000000,"y":117000000000000000,"z":-3710000000000000000}},"30007953":{"solarSystemId":30007953,"solarSystemName":"G:TT90","location":{"x":-19400000000000000000,"y":516000000000000000,"z":-4620000000000000000}},"30007954":{"solarSystemId":30007954,"solarSystemName":"P:KO6R","location":{"x":-19800000000000000000,"y":378000000000000000,"z":-4030000000000000000}},"30007955":{"solarSystemId":30007955,"solarSystemName":"H:1395","location":{"x":-19100000000000000000,"y":-106000000000000000,"z":-4870000000000000000}},"30007956":{"solarSystemId":30007956,"solarSystemName":"M:LN4A","location":{"x":-19600000000000000000,"y":25500000000000000,"z":-3830000000000000000}},"30007957":{"solarSystemId":30007957,"solarSystemName":"Y:R4NE","location":{"x":-19500000000000000000,"y":-59600000000000000,"z":-4600000000000000000}},"30007958":{"solarSystemId":30007958,"solarSystemName":"Q:3OT2","location":{"x":-19000000000000000000,"y":185000000000000000,"z":-5000000000000000000}},"30007959":{"solarSystemId":30007959,"solarSystemName":"Y:I836","location":{"x":-19400000000000000000,"y":-16400000000000000,"z":-3870000000000000000}},"30007960":{"solarSystemId":30007960,"solarSystemName":"H:1VE8","location":{"x":-19000000000000000000,"y":303000000000000000,"z":-4360000000000000000}},"30007961":{"solarSystemId":30007961,"solarSystemName":"P:4L8K","location":{"x":-19700000000000000000,"y":-193000000000000000,"z":-4350000000000000000}},"30007962":{"solarSystemId":30007962,"solarSystemName":"J:1380","location":{"x":-19600000000000000000,"y":3210000000000000,"z":-4570000000000000000}},"30007963":{"solarSystemId":30007963,"solarSystemName":"D:TL5V","location":{"x":-19100000000000000000,"y":396000000000000000,"z":-4390000000000000000}},"30007964":{"solarSystemId":30007964,"solarSystemName":"P:K3A2","location":{"x":-18600000000000000000,"y":-116000000000000000,"z":-3950000000000000000}},"30007965":{"solarSystemId":30007965,"solarSystemName":"J:1102","location":{"x":-19800000000000000000,"y":242000000000000000,"z":-4180000000000000000}},"30007966":{"solarSystemId":30007966,"solarSystemName":"M:L596","location":{"x":-18600000000000000000,"y":391000000000000000,"z":-4330000000000000000}},"30007967":{"solarSystemId":30007967,"solarSystemName":"Z:12O0","location":{"x":-19900000000000000000,"y":781000000000000000,"z":-2730000000000000000}},"30007968":{"solarSystemId":30007968,"solarSystemName":"G:28T9","location":{"x":-20300000000000000000,"y":2040000000000000000,"z":-3700000000000000000}},"30007969":{"solarSystemId":30007969,"solarSystemName":"H:13TS","location":{"x":-19600000000000000000,"y":687000000000000000,"z":-3150000000000000000}},"30007970":{"solarSystemId":30007970,"solarSystemName":"D:179S","location":{"x":-21600000000000000000,"y":2880000000000000000,"z":-3280000000000000000}},"30007971":{"solarSystemId":30007971,"solarSystemName":"M:KLVI","location":{"x":-21200000000000000000,"y":1020000000000000000,"z":-2910000000000000000}},"30007972":{"solarSystemId":30007972,"solarSystemName":"M:LL46","location":{"x":-20500000000000000000,"y":2070000000000000000,"z":-3100000000000000000}},"30007973":{"solarSystemId":30007973,"solarSystemName":"D:S54S","location":{"x":-19100000000000000000,"y":3100000000000000000,"z":-4280000000000000000}},"30007974":{"solarSystemId":30007974,"solarSystemName":"D:27S3","location":{"x":-18900000000000000000,"y":3640000000000000000,"z":-3670000000000000000}},"30007975":{"solarSystemId":30007975,"solarSystemName":"J:187O","location":{"x":-19200000000000000000,"y":2590000000000000000,"z":-2980000000000000000}},"30007976":{"solarSystemId":30007976,"solarSystemName":"F:194T","location":{"x":-21000000000000000000,"y":1380000000000000000,"z":-2450000000000000000}},"30007977":{"solarSystemId":30007977,"solarSystemName":"B:14K4","location":{"x":-20000000000000000000,"y":585000000000000000,"z":-2700000000000000000}},"30007978":{"solarSystemId":30007978,"solarSystemName":"U:169R","location":{"x":-20400000000000000000,"y":1170000000000000000,"z":-2830000000000000000}},"30007979":{"solarSystemId":30007979,"solarSystemName":"P:KSI2","location":{"x":-19800000000000000000,"y":1900000000000000000,"z":-3490000000000000000}},"30007980":{"solarSystemId":30007980,"solarSystemName":"Q:1IK1","location":{"x":-21100000000000000000,"y":586000000000000000,"z":-3120000000000000000}},"30007981":{"solarSystemId":30007981,"solarSystemName":"Y:N9NA","location":{"x":-21100000000000000000,"y":-854000000000000000,"z":-9670000000000000000}},"30007982":{"solarSystemId":30007982,"solarSystemName":"Z:NLK2","location":{"x":-21500000000000000000,"y":-917000000000000000,"z":-9870000000000000000}},"30007983":{"solarSystemId":30007983,"solarSystemName":"Z:17IT","location":{"x":-21700000000000000000,"y":-1280000000000000000,"z":-9610000000000000000}},"30007984":{"solarSystemId":30007984,"solarSystemName":"H:I539","location":{"x":-21500000000000000000,"y":-563000000000000000,"z":-9120000000000000000}},"30007985":{"solarSystemId":30007985,"solarSystemName":"J:14L1","location":{"x":-21500000000000000000,"y":-1290000000000000000,"z":-9630000000000000000}},"30007986":{"solarSystemId":30007986,"solarSystemName":"H:1419","location":{"x":-20600000000000000000,"y":-777000000000000000,"z":-9460000000000000000}},"30007987":{"solarSystemId":30007987,"solarSystemName":"H:2R7T","location":{"x":-21500000000000000000,"y":-1030000000000000000,"z":-9160000000000000000}},"30007988":{"solarSystemId":30007988,"solarSystemName":"D:327E","location":{"x":-20600000000000000000,"y":-1170000000000000000,"z":-9930000000000000000}},"30007989":{"solarSystemId":30007989,"solarSystemName":"B:VI87","location":{"x":-20600000000000000000,"y":-501000000000000000,"z":-9400000000000000000}},"30007990":{"solarSystemId":30007990,"solarSystemName":"H:16AO","location":{"x":-20700000000000000000,"y":239000000000000000,"z":-9820000000000000000}},"30007991":{"solarSystemId":30007991,"solarSystemName":"Q:1N7E","location":{"x":-21600000000000000000,"y":-669000000000000000,"z":-9970000000000000000}},"30007992":{"solarSystemId":30007992,"solarSystemName":"G:2TLK","location":{"x":-21300000000000000000,"y":-754000000000000000,"z":-9010000000000000000}},"30007993":{"solarSystemId":30007993,"solarSystemName":"Y:22R3","location":{"x":-21600000000000000000,"y":-830000000000000000,"z":-10200000000000000000}},"30007994":{"solarSystemId":30007994,"solarSystemName":"F:135I","location":{"x":-21100000000000000000,"y":-719000000000000000,"z":-9950000000000000000}},"30007995":{"solarSystemId":30007995,"solarSystemName":"B:28E4","location":{"x":-20500000000000000000,"y":-705000000000000000,"z":-9620000000000000000}},"30007996":{"solarSystemId":30007996,"solarSystemName":"J:11R9","location":{"x":-20400000000000000000,"y":-1100000000000000000,"z":-9270000000000000000}},"30007997":{"solarSystemId":30007997,"solarSystemName":"B:3V2A","location":{"x":-21600000000000000000,"y":-955000000000000000,"z":-10200000000000000000}},"30007998":{"solarSystemId":30007998,"solarSystemName":"F:9NLO","location":{"x":-21200000000000000000,"y":-783000000000000000,"z":-10400000000000000000}},"30007999":{"solarSystemId":30007999,"solarSystemName":"Q:ON87","location":{"x":-22100000000000000000,"y":-578000000000000000,"z":-10400000000000000000}},"30008000":{"solarSystemId":30008000,"solarSystemName":"G:24TO","location":{"x":-21600000000000000000,"y":774000000000000000,"z":-11200000000000000000}},"30008001":{"solarSystemId":30008001,"solarSystemName":"P:219N","location":{"x":-21700000000000000000,"y":-448000000000000000,"z":-10300000000000000000}},"30008002":{"solarSystemId":30008002,"solarSystemName":"D:S27K","location":{"x":-21600000000000000000,"y":-615000000000000000,"z":-10100000000000000000}},"30008003":{"solarSystemId":30008003,"solarSystemName":"G:37O9","location":{"x":-21800000000000000000,"y":-16300000000000000,"z":-9550000000000000000}},"30008004":{"solarSystemId":30008004,"solarSystemName":"Z:1441","location":{"x":-21600000000000000000,"y":-281000000000000000,"z":-11000000000000000000}},"30008005":{"solarSystemId":30008005,"solarSystemName":"Q:12VS","location":{"x":-22200000000000000000,"y":-467000000000000000,"z":-9630000000000000000}},"30008006":{"solarSystemId":30008006,"solarSystemName":"P:26A5","location":{"x":-21800000000000000000,"y":574000000000000000,"z":-10100000000000000000}},"30008007":{"solarSystemId":30008007,"solarSystemName":"B:25R5","location":{"x":-21500000000000000000,"y":100000000000000000,"z":-10200000000000000000}},"30008008":{"solarSystemId":30008008,"solarSystemName":"H:2ETO","location":{"x":-20900000000000000000,"y":930000000000000000,"z":-10800000000000000000}},"30008009":{"solarSystemId":30008009,"solarSystemName":"Z:26SL","location":{"x":-21200000000000000000,"y":821000000000000000,"z":-11200000000000000000}},"30008010":{"solarSystemId":30008010,"solarSystemName":"F:17IS","location":{"x":-20900000000000000000,"y":680000000000000000,"z":-11000000000000000000}},"30008011":{"solarSystemId":30008011,"solarSystemName":"M:S2AK","location":{"x":-21300000000000000000,"y":963000000000000000,"z":-10700000000000000000}},"30008012":{"solarSystemId":30008012,"solarSystemName":"H:25V9","location":{"x":-21700000000000000000,"y":1250000000000000000,"z":-10300000000000000000}},"30008013":{"solarSystemId":30008013,"solarSystemName":"Z:2AIE","location":{"x":-21900000000000000000,"y":-203000000000000000,"z":-11500000000000000000}},"30008014":{"solarSystemId":30008014,"solarSystemName":"U:1SN0","location":{"x":-22500000000000000000,"y":-918000000000000000,"z":-11300000000000000000}},"30008015":{"solarSystemId":30008015,"solarSystemName":"Y:L080","location":{"x":-22400000000000000000,"y":-746000000000000000,"z":-10300000000000000000}},"30008016":{"solarSystemId":30008016,"solarSystemName":"D:135S","location":{"x":-22800000000000000000,"y":-1210000000000000000,"z":-10100000000000000000}},"30008017":{"solarSystemId":30008017,"solarSystemName":"Q:1L4K","location":{"x":-22900000000000000000,"y":-1020000000000000000,"z":-10100000000000000000}},"30008018":{"solarSystemId":30008018,"solarSystemName":"H:2ESK","location":{"x":-22300000000000000000,"y":-1430000000000000000,"z":-11000000000000000000}},"30008019":{"solarSystemId":30008019,"solarSystemName":"M:K3SO","location":{"x":-22400000000000000000,"y":-1120000000000000000,"z":-9860000000000000000}},"30008020":{"solarSystemId":30008020,"solarSystemName":"Q:34R0","location":{"x":-22400000000000000000,"y":-961000000000000000,"z":-10800000000000000000}},"30008021":{"solarSystemId":30008021,"solarSystemName":"Q:22E0","location":{"x":-22800000000000000000,"y":-383000000000000000,"z":-10800000000000000000}},"30008022":{"solarSystemId":30008022,"solarSystemName":"U:15R6","location":{"x":-22400000000000000000,"y":-1230000000000000000,"z":-11300000000000000000}},"30008023":{"solarSystemId":30008023,"solarSystemName":"D:OA8A","location":{"x":-21800000000000000000,"y":-1370000000000000000,"z":-10700000000000000000}},"30008024":{"solarSystemId":30008024,"solarSystemName":"Z:2L2A","location":{"x":-22000000000000000000,"y":-1310000000000000000,"z":-10600000000000000000}},"30008025":{"solarSystemId":30008025,"solarSystemName":"J:OI29","location":{"x":-22200000000000000000,"y":-1120000000000000000,"z":-10300000000000000000}},"30008026":{"solarSystemId":30008026,"solarSystemName":"P:RR55","location":{"x":-21900000000000000000,"y":-831000000000000000,"z":-10100000000000000000}},"30008027":{"solarSystemId":30008027,"solarSystemName":"G:2VN4","location":{"x":-22300000000000000000,"y":-600000000000000000,"z":-10000000000000000000}},"30008028":{"solarSystemId":30008028,"solarSystemName":"M:27EK","location":{"x":-20600000000000000000,"y":-1010000000000000000,"z":-10900000000000000000}},"30008029":{"solarSystemId":30008029,"solarSystemName":"Q:3196","location":{"x":-20700000000000000000,"y":-838000000000000000,"z":-10600000000000000000}},"30008030":{"solarSystemId":30008030,"solarSystemName":"Y:2V0N","location":{"x":-20900000000000000000,"y":-1540000000000000000,"z":-11000000000000000000}},"30008031":{"solarSystemId":30008031,"solarSystemName":"J:92S1","location":{"x":-21000000000000000000,"y":-1790000000000000000,"z":-10800000000000000000}},"30008032":{"solarSystemId":30008032,"solarSystemName":"Z:2RLE","location":{"x":-20600000000000000000,"y":-905000000000000000,"z":-10700000000000000000}},"30008033":{"solarSystemId":30008033,"solarSystemName":"M:39OR","location":{"x":-21000000000000000000,"y":-937000000000000000,"z":-10500000000000000000}},"30008034":{"solarSystemId":30008034,"solarSystemName":"G:288I","location":{"x":-20500000000000000000,"y":-1610000000000000000,"z":-9720000000000000000}},"30008035":{"solarSystemId":30008035,"solarSystemName":"B:1193","location":{"x":-20300000000000000000,"y":-1980000000000000000,"z":-11600000000000000000}},"30008036":{"solarSystemId":30008036,"solarSystemName":"B:E9ET","location":{"x":-19100000000000000000,"y":-1470000000000000000,"z":-10700000000000000000}},"30008037":{"solarSystemId":30008037,"solarSystemName":"U:RK0O","location":{"x":-18700000000000000000,"y":-1910000000000000000,"z":-10700000000000000000}},"30008038":{"solarSystemId":30008038,"solarSystemName":"H:28S9","location":{"x":-21000000000000000000,"y":-724000000000000000,"z":-11100000000000000000}},"30008039":{"solarSystemId":30008039,"solarSystemName":"G:ER60","location":{"x":-20500000000000000000,"y":-1360000000000000000,"z":-10200000000000000000}},"30008040":{"solarSystemId":30008040,"solarSystemName":"Y:37E1","location":{"x":-22800000000000000000,"y":-971000000000000000,"z":-9320000000000000000}},"30008041":{"solarSystemId":30008041,"solarSystemName":"J:1K3L","location":{"x":-22600000000000000000,"y":-788000000000000000,"z":-9390000000000000000}},"30008042":{"solarSystemId":30008042,"solarSystemName":"Y:187R","location":{"x":-22100000000000000000,"y":-1080000000000000000,"z":-9540000000000000000}},"30008043":{"solarSystemId":30008043,"solarSystemName":"G:VO0S","location":{"x":-22500000000000000000,"y":-1080000000000000000,"z":-9010000000000000000}},"30008044":{"solarSystemId":30008044,"solarSystemName":"B:42OK","location":{"x":-22800000000000000000,"y":-819000000000000000,"z":-9440000000000000000}},"30008045":{"solarSystemId":30008045,"solarSystemName":"P:277N","location":{"x":-22500000000000000000,"y":-711000000000000000,"z":-9370000000000000000}},"30008046":{"solarSystemId":30008046,"solarSystemName":"Q:3NV5","location":{"x":-22300000000000000000,"y":-955000000000000000,"z":-9060000000000000000}},"30008047":{"solarSystemId":30008047,"solarSystemName":"F:2N6O","location":{"x":-23000000000000000000,"y":-588000000000000000,"z":-9660000000000000000}},"30008048":{"solarSystemId":30008048,"solarSystemName":"H:2R20","location":{"x":-23200000000000000000,"y":-1300000000000000000,"z":-10200000000000000000}},"30008049":{"solarSystemId":30008049,"solarSystemName":"M:4517","location":{"x":-23200000000000000000,"y":-1210000000000000000,"z":-10200000000000000000}},"30008050":{"solarSystemId":30008050,"solarSystemName":"Q:SE1I","location":{"x":-22700000000000000000,"y":-899000000000000000,"z":-8920000000000000000}},"30008051":{"solarSystemId":30008051,"solarSystemName":"F:1E63","location":{"x":-22700000000000000000,"y":-1360000000000000000,"z":-9650000000000000000}},"30008052":{"solarSystemId":30008052,"solarSystemName":"Q:52NR","location":{"x":-23300000000000000000,"y":-1400000000000000000,"z":-9410000000000000000}},"30008053":{"solarSystemId":30008053,"solarSystemName":"Q:2S45","location":{"x":-21600000000000000000,"y":-1510000000000000000,"z":-8440000000000000000}},"30008054":{"solarSystemId":30008054,"solarSystemName":"M:1IIV","location":{"x":-21700000000000000000,"y":-467000000000000000,"z":-7930000000000000000}},"30008055":{"solarSystemId":30008055,"solarSystemName":"M:1R1N","location":{"x":-21600000000000000000,"y":-1100000000000000000,"z":-8650000000000000000}},"30008056":{"solarSystemId":30008056,"solarSystemName":"Q:1TRL","location":{"x":-21500000000000000000,"y":-483000000000000000,"z":-8750000000000000000}},"30008057":{"solarSystemId":30008057,"solarSystemName":"F:ET7I","location":{"x":-21400000000000000000,"y":-416000000000000000,"z":-8690000000000000000}},"30008058":{"solarSystemId":30008058,"solarSystemName":"H:S81T","location":{"x":-21100000000000000000,"y":-240000000000000000,"z":-8270000000000000000}},"30008059":{"solarSystemId":30008059,"solarSystemName":"G:2403","location":{"x":-21500000000000000000,"y":-803000000000000000,"z":-8180000000000000000}},"30008060":{"solarSystemId":30008060,"solarSystemName":"Q:SNAA","location":{"x":-21500000000000000000,"y":-854000000000000000,"z":-8700000000000000000}},"30008061":{"solarSystemId":30008061,"solarSystemName":"Q:T0VI","location":{"x":-21400000000000000000,"y":-843000000000000000,"z":-8020000000000000000}},"30008062":{"solarSystemId":30008062,"solarSystemName":"Z:S7O5","location":{"x":-21500000000000000000,"y":-692000000000000000,"z":-8620000000000000000}},"30008063":{"solarSystemId":30008063,"solarSystemName":"P:23VV","location":{"x":-21700000000000000000,"y":-537000000000000000,"z":-7490000000000000000}},"30008064":{"solarSystemId":30008064,"solarSystemName":"Q:19A5","location":{"x":-21500000000000000000,"y":-490000000000000000,"z":-7630000000000000000}},"30008065":{"solarSystemId":30008065,"solarSystemName":"U:371T","location":{"x":-22000000000000000000,"y":-654000000000000000,"z":-8460000000000000000}},"30008066":{"solarSystemId":30008066,"solarSystemName":"B:NIN8","location":{"x":-22000000000000000000,"y":-1170000000000000000,"z":-8190000000000000000}},"30008067":{"solarSystemId":30008067,"solarSystemName":"G:1949","location":{"x":-21200000000000000000,"y":-953000000000000000,"z":-7590000000000000000}},"30008068":{"solarSystemId":30008068,"solarSystemName":"G:1A3T","location":{"x":-21400000000000000000,"y":-1130000000000000000,"z":-8250000000000000000}},"30008069":{"solarSystemId":30008069,"solarSystemName":"U:E1TI","location":{"x":-21400000000000000000,"y":-454000000000000000,"z":-8100000000000000000}},"30008070":{"solarSystemId":30008070,"solarSystemName":"Q:14IR","location":{"x":-21200000000000000000,"y":-880000000000000000,"z":-7630000000000000000}},"30008071":{"solarSystemId":30008071,"solarSystemName":"B:34T8","location":{"x":-22400000000000000000,"y":-794000000000000000,"z":-8970000000000000000}},"30008072":{"solarSystemId":30008072,"solarSystemName":"Y:3NVO","location":{"x":-22400000000000000000,"y":-808000000000000000,"z":-8820000000000000000}},"30008073":{"solarSystemId":30008073,"solarSystemName":"Z:120T","location":{"x":-22300000000000000000,"y":-836000000000000000,"z":-8620000000000000000}},"30008074":{"solarSystemId":30008074,"solarSystemName":"H:11V0","location":{"x":-23000000000000000000,"y":-845000000000000000,"z":-8800000000000000000}},"30008075":{"solarSystemId":30008075,"solarSystemName":"F:68R0","location":{"x":-21900000000000000000,"y":98900000000000000,"z":-8330000000000000000}},"30008076":{"solarSystemId":30008076,"solarSystemName":"D:1I50","location":{"x":-22500000000000000000,"y":-461000000000000000,"z":-9300000000000000000}},"30008077":{"solarSystemId":30008077,"solarSystemName":"H:368A","location":{"x":-21600000000000000000,"y":-666000000000000000,"z":-8950000000000000000}},"30008078":{"solarSystemId":30008078,"solarSystemName":"Q:303I","location":{"x":-21800000000000000000,"y":-740000000000000000,"z":-9800000000000000000}},"30008079":{"solarSystemId":30008079,"solarSystemName":"Q:3338","location":{"x":-22600000000000000000,"y":-894000000000000000,"z":-8620000000000000000}},"30008080":{"solarSystemId":30008080,"solarSystemName":"Q:SRNL","location":{"x":-22000000000000000000,"y":-567000000000000000,"z":-8970000000000000000}},"30008081":{"solarSystemId":30008081,"solarSystemName":"Z:1LS1","location":{"x":-21700000000000000000,"y":-1000000000000000000,"z":-8860000000000000000}},"30008082":{"solarSystemId":30008082,"solarSystemName":"U:3O75","location":{"x":-21800000000000000000,"y":124000000000000000,"z":-8960000000000000000}},"30008083":{"solarSystemId":30008083,"solarSystemName":"G:LRNL","location":{"x":-22400000000000000000,"y":-451000000000000000,"z":-8860000000000000000}},"30008084":{"solarSystemId":30008084,"solarSystemName":"H:274L","location":{"x":-21900000000000000000,"y":-878000000000000000,"z":-9230000000000000000}},"30008085":{"solarSystemId":30008085,"solarSystemName":"B:LI02","location":{"x":-22200000000000000000,"y":-338000000000000000,"z":-8330000000000000000}},"30008086":{"solarSystemId":30008086,"solarSystemName":"Y:2O6I","location":{"x":-20900000000000000000,"y":-619000000000000000,"z":-8040000000000000000}},"30008087":{"solarSystemId":30008087,"solarSystemName":"Z:21I8","location":{"x":-20900000000000000000,"y":-498000000000000000,"z":-9160000000000000000}},"30008088":{"solarSystemId":30008088,"solarSystemName":"Q:VE9R","location":{"x":-20800000000000000000,"y":-491000000000000000,"z":-8140000000000000000}},"30008089":{"solarSystemId":30008089,"solarSystemName":"J:RE86","location":{"x":-21100000000000000000,"y":-638000000000000000,"z":-9130000000000000000}},"30008090":{"solarSystemId":30008090,"solarSystemName":"H:O444","location":{"x":-20700000000000000000,"y":-1350000000000000000,"z":-9200000000000000000}},"30008091":{"solarSystemId":30008091,"solarSystemName":"Z:189V","location":{"x":-20500000000000000000,"y":-495000000000000000,"z":-8080000000000000000}},"30008092":{"solarSystemId":30008092,"solarSystemName":"B:1K84","location":{"x":-20700000000000000000,"y":-398000000000000000,"z":-8330000000000000000}},"30008093":{"solarSystemId":30008093,"solarSystemName":"Y:R38N","location":{"x":-20400000000000000000,"y":-544000000000000000,"z":-8520000000000000000}},"30008094":{"solarSystemId":30008094,"solarSystemName":"J:104L","location":{"x":-20500000000000000000,"y":-601000000000000000,"z":-8140000000000000000}},"30008095":{"solarSystemId":30008095,"solarSystemName":"H:30RS","location":{"x":-20800000000000000000,"y":-913000000000000000,"z":-8970000000000000000}},"30008096":{"solarSystemId":30008096,"solarSystemName":"J:1O1A","location":{"x":-20900000000000000000,"y":-281000000000000000,"z":-9020000000000000000}},"30008097":{"solarSystemId":30008097,"solarSystemName":"P:1A4O","location":{"x":-21100000000000000000,"y":-710000000000000000,"z":-8230000000000000000}},"30008098":{"solarSystemId":30008098,"solarSystemName":"M:3151","location":{"x":-21100000000000000000,"y":-626000000000000000,"z":-8070000000000000000}},"30008099":{"solarSystemId":30008099,"solarSystemName":"P:1207","location":{"x":-21200000000000000000,"y":-568000000000000000,"z":-8540000000000000000}},"30008100":{"solarSystemId":30008100,"solarSystemName":"P:3RL9","location":{"x":-20600000000000000000,"y":-531000000000000000,"z":-8940000000000000000}},"30008101":{"solarSystemId":30008101,"solarSystemName":"G:ISNK","location":{"x":-20900000000000000000,"y":-614000000000000000,"z":-9030000000000000000}},"30008102":{"solarSystemId":30008102,"solarSystemName":"J:1080","location":{"x":-21100000000000000000,"y":-918000000000000000,"z":-8130000000000000000}},"30008103":{"solarSystemId":30008103,"solarSystemName":"M:2A85","location":{"x":-20800000000000000000,"y":-808000000000000000,"z":-8610000000000000000}},"30008104":{"solarSystemId":30008104,"solarSystemName":"G:1489","location":{"x":-20300000000000000000,"y":-1200000000000000000,"z":-9080000000000000000}},"30008105":{"solarSystemId":30008105,"solarSystemName":"F:2625","location":{"x":-23300000000000000000,"y":1330000000000000000,"z":-10800000000000000000}},"30008106":{"solarSystemId":30008106,"solarSystemName":"H:1SA9","location":{"x":-22500000000000000000,"y":1750000000000000000,"z":-10000000000000000000}},"30008107":{"solarSystemId":30008107,"solarSystemName":"D:L696","location":{"x":-23000000000000000000,"y":1920000000000000000,"z":-11400000000000000000}},"30008108":{"solarSystemId":30008108,"solarSystemName":"Y:2K55","location":{"x":-25200000000000000000,"y":1190000000000000000,"z":-10500000000000000000}},"30008109":{"solarSystemId":30008109,"solarSystemName":"D:RKTI","location":{"x":-25000000000000000000,"y":830000000000000000,"z":-11700000000000000000}},"30008110":{"solarSystemId":30008110,"solarSystemName":"Y:2539","location":{"x":-24400000000000000000,"y":-176000000000000000,"z":-10300000000000000000}},"30008111":{"solarSystemId":30008111,"solarSystemName":"H:1N80","location":{"x":-21900000000000000000,"y":324000000000000000,"z":-11700000000000000000}},"30008112":{"solarSystemId":30008112,"solarSystemName":"U:V710","location":{"x":-22500000000000000000,"y":-164000000000000000,"z":-11700000000000000000}},"30008113":{"solarSystemId":30008113,"solarSystemName":"H:I9LR","location":{"x":-24500000000000000000,"y":1190000000000000000,"z":-11300000000000000000}},"30008114":{"solarSystemId":30008114,"solarSystemName":"P:1S7O","location":{"x":-23900000000000000000,"y":1140000000000000000,"z":-12100000000000000000}},"30008115":{"solarSystemId":30008115,"solarSystemName":"M:1N7L","location":{"x":-24400000000000000000,"y":160000000000000000,"z":-10100000000000000000}},"30008116":{"solarSystemId":30008116,"solarSystemName":"Y:R175","location":{"x":-24600000000000000000,"y":143000000000000000,"z":-10500000000000000000}},"30008117":{"solarSystemId":30008117,"solarSystemName":"J:SNO0","location":{"x":-21900000000000000000,"y":534000000000000000,"z":-11900000000000000000}},"30008118":{"solarSystemId":30008118,"solarSystemName":"F:18R4","location":{"x":-24900000000000000000,"y":493000000000000000,"z":-12200000000000000000}},"30008119":{"solarSystemId":30008119,"solarSystemName":"P:25L0","location":{"x":-23400000000000000000,"y":1180000000000000000,"z":-12500000000000000000}},"30008120":{"solarSystemId":30008120,"solarSystemName":"J:3062","location":{"x":-25200000000000000000,"y":989000000000000000,"z":-10400000000000000000}},"30008121":{"solarSystemId":30008121,"solarSystemName":"P:152L","location":{"x":-20800000000000000000,"y":-252000000000000000,"z":-4760000000000000000}},"30008122":{"solarSystemId":30008122,"solarSystemName":"B:VO6S","location":{"x":-21000000000000000000,"y":-577000000000000000,"z":-4450000000000000000}},"30008123":{"solarSystemId":30008123,"solarSystemName":"Y:111S","location":{"x":-20800000000000000000,"y":-457000000000000000,"z":-4600000000000000000}},"30008124":{"solarSystemId":30008124,"solarSystemName":"Y:V99L","location":{"x":-21000000000000000000,"y":-156000000000000000,"z":-4710000000000000000}},"30008125":{"solarSystemId":30008125,"solarSystemName":"U:4V19","location":{"x":-20900000000000000000,"y":-609000000000000000,"z":-4400000000000000000}},"30008126":{"solarSystemId":30008126,"solarSystemName":"F:4A8K","location":{"x":-20800000000000000000,"y":-554000000000000000,"z":-4490000000000000000}},"30008127":{"solarSystemId":30008127,"solarSystemName":"Y:739I","location":{"x":-20600000000000000000,"y":-646000000000000000,"z":-4360000000000000000}},"30008128":{"solarSystemId":30008128,"solarSystemName":"M:18SR","location":{"x":-20600000000000000000,"y":-396000000000000000,"z":-4870000000000000000}},"30008129":{"solarSystemId":30008129,"solarSystemName":"U:32E6","location":{"x":-20600000000000000000,"y":-527000000000000000,"z":-4570000000000000000}},"30008130":{"solarSystemId":30008130,"solarSystemName":"F:19S2","location":{"x":-20700000000000000000,"y":-81100000000000000,"z":-4490000000000000000}},"30008131":{"solarSystemId":30008131,"solarSystemName":"Z:REI6","location":{"x":-21000000000000000000,"y":-409000000000000000,"z":-4280000000000000000}},"30008132":{"solarSystemId":30008132,"solarSystemName":"U:V313","location":{"x":-20900000000000000000,"y":-554000000000000000,"z":-4840000000000000000}},"30008133":{"solarSystemId":30008133,"solarSystemName":"U:1453","location":{"x":-20700000000000000000,"y":-205000000000000000,"z":-4530000000000000000}},"30008134":{"solarSystemId":30008134,"solarSystemName":"H:10K5","location":{"x":-21100000000000000000,"y":-457000000000000000,"z":-4360000000000000000}},"30008135":{"solarSystemId":30008135,"solarSystemName":"D:183A","location":{"x":-20600000000000000000,"y":-245000000000000000,"z":-4590000000000000000}},"30008136":{"solarSystemId":30008136,"solarSystemName":"U:1087","location":{"x":-20900000000000000000,"y":4930000000000000,"z":-4710000000000000000}},"30008137":{"solarSystemId":30008137,"solarSystemName":"D:14N1","location":{"x":-21100000000000000000,"y":-97500000000000000,"z":-4810000000000000000}},"30008138":{"solarSystemId":30008138,"solarSystemName":"F:15OK","location":{"x":-21100000000000000000,"y":-619000000000000000,"z":-3920000000000000000}},"30008139":{"solarSystemId":30008139,"solarSystemName":"Q:1624","location":{"x":-21000000000000000000,"y":-670000000000000000,"z":-4190000000000000000}},"30008140":{"solarSystemId":30008140,"solarSystemName":"H:1II6","location":{"x":-20900000000000000000,"y":-605000000000000000,"z":-3830000000000000000}},"30008141":{"solarSystemId":30008141,"solarSystemName":"P:VKS0","location":{"x":-21000000000000000000,"y":-451000000000000000,"z":-4040000000000000000}},"30008142":{"solarSystemId":30008142,"solarSystemName":"G:153L","location":{"x":-21100000000000000000,"y":-892000000000000000,"z":-3920000000000000000}},"30008143":{"solarSystemId":30008143,"solarSystemName":"Q:S8AT","location":{"x":-21200000000000000000,"y":-925000000000000000,"z":-4040000000000000000}},"30008144":{"solarSystemId":30008144,"solarSystemName":"J:1337","location":{"x":-21200000000000000000,"y":-900000000000000000,"z":-4000000000000000000}},"30008145":{"solarSystemId":30008145,"solarSystemName":"F:V0ST","location":{"x":-20900000000000000000,"y":-619000000000000000,"z":-3780000000000000000}},"30008146":{"solarSystemId":30008146,"solarSystemName":"Y:KA3V","location":{"x":-20900000000000000000,"y":-795000000000000000,"z":-3980000000000000000}},"30008147":{"solarSystemId":30008147,"solarSystemName":"H:1AO8","location":{"x":-20800000000000000000,"y":-835000000000000000,"z":-4100000000000000000}},"30008148":{"solarSystemId":30008148,"solarSystemName":"F:V28N","location":{"x":-20800000000000000000,"y":-653000000000000000,"z":-4020000000000000000}},"30008149":{"solarSystemId":30008149,"solarSystemName":"G:131I","location":{"x":-20800000000000000000,"y":-546000000000000000,"z":-3980000000000000000}},"30008150":{"solarSystemId":30008150,"solarSystemName":"Z:NL3E","location":{"x":-21000000000000000000,"y":-835000000000000000,"z":-4070000000000000000}},"30008151":{"solarSystemId":30008151,"solarSystemName":"U:R0IR","location":{"x":-21000000000000000000,"y":-478000000000000000,"z":-3910000000000000000}},"30008152":{"solarSystemId":30008152,"solarSystemName":"J:22TR","location":{"x":-20800000000000000000,"y":-529000000000000000,"z":-3890000000000000000}},"30008153":{"solarSystemId":30008153,"solarSystemName":"Y:120V","location":{"x":-21000000000000000000,"y":-828000000000000000,"z":-4110000000000000000}},"30008154":{"solarSystemId":30008154,"solarSystemName":"Z:K42O","location":{"x":-21000000000000000000,"y":-568000000000000000,"z":-3790000000000000000}},"30008155":{"solarSystemId":30008155,"solarSystemName":"M:LELA","location":{"x":-20900000000000000000,"y":-762000000000000000,"z":-3920000000000000000}},"30008156":{"solarSystemId":30008156,"solarSystemName":"H:1ASA","location":{"x":-21000000000000000000,"y":-672000000000000000,"z":-4030000000000000000}},"30008157":{"solarSystemId":30008157,"solarSystemName":"F:188L","location":{"x":-20800000000000000000,"y":-616000000000000000,"z":-3990000000000000000}},"30008158":{"solarSystemId":30008158,"solarSystemName":"B:R8SA","location":{"x":-21000000000000000000,"y":-817000000000000000,"z":-4010000000000000000}},"30008159":{"solarSystemId":30008159,"solarSystemName":"J:VAVV","location":{"x":-20900000000000000000,"y":-708000000000000000,"z":-3830000000000000000}},"30008160":{"solarSystemId":30008160,"solarSystemName":"H:1427","location":{"x":-21000000000000000000,"y":-501000000000000000,"z":-3980000000000000000}},"30008161":{"solarSystemId":30008161,"solarSystemName":"G:14NN","location":{"x":-20300000000000000000,"y":-750000000000000000,"z":-4370000000000000000}},"30008162":{"solarSystemId":30008162,"solarSystemName":"G:38IT","location":{"x":-20700000000000000000,"y":-711000000000000000,"z":-4790000000000000000}},"30008163":{"solarSystemId":30008163,"solarSystemName":"Y:12R8","location":{"x":-20300000000000000000,"y":-531000000000000000,"z":-4560000000000000000}},"30008164":{"solarSystemId":30008164,"solarSystemName":"Y:1I90","location":{"x":-20400000000000000000,"y":-688000000000000000,"z":-4600000000000000000}},"30008165":{"solarSystemId":30008165,"solarSystemName":"J:11TT","location":{"x":-20700000000000000000,"y":-755000000000000000,"z":-4230000000000000000}},"30008166":{"solarSystemId":30008166,"solarSystemName":"Q:1ARI","location":{"x":-20400000000000000000,"y":-811000000000000000,"z":-4120000000000000000}},"30008167":{"solarSystemId":30008167,"solarSystemName":"F:20TT","location":{"x":-20100000000000000000,"y":-783000000000000000,"z":-4840000000000000000}},"30008168":{"solarSystemId":30008168,"solarSystemName":"M:133N","location":{"x":-20100000000000000000,"y":-1010000000000000000,"z":-4580000000000000000}},"30008169":{"solarSystemId":30008169,"solarSystemName":"Q:1A7L","location":{"x":-20500000000000000000,"y":-801000000000000000,"z":-4490000000000000000}},"30008170":{"solarSystemId":30008170,"solarSystemName":"Q:24V0","location":{"x":-20200000000000000000,"y":-746000000000000000,"z":-4480000000000000000}},"30008171":{"solarSystemId":30008171,"solarSystemName":"H:10RS","location":{"x":-19800000000000000000,"y":-934000000000000000,"z":-4810000000000000000}},"30008172":{"solarSystemId":30008172,"solarSystemName":"U:119T","location":{"x":-20300000000000000000,"y":-732000000000000000,"z":-4690000000000000000}},"30008173":{"solarSystemId":30008173,"solarSystemName":"J:LKNR","location":{"x":-20500000000000000000,"y":-778000000000000000,"z":-4590000000000000000}},"30008174":{"solarSystemId":30008174,"solarSystemName":"H:105A","location":{"x":-19900000000000000000,"y":-941000000000000000,"z":-4000000000000000000}},"30008175":{"solarSystemId":30008175,"solarSystemName":"D:19NS","location":{"x":-20300000000000000000,"y":-790000000000000000,"z":-4270000000000000000}},"30008176":{"solarSystemId":30008176,"solarSystemName":"M:S1VA","location":{"x":-20700000000000000000,"y":-852000000000000000,"z":-4290000000000000000}},"30008177":{"solarSystemId":30008177,"solarSystemName":"P:10NA","location":{"x":-20300000000000000000,"y":-594000000000000000,"z":-4530000000000000000}},"30008178":{"solarSystemId":30008178,"solarSystemName":"Q:2NR4","location":{"x":-20000000000000000000,"y":-464000000000000000,"z":-3390000000000000000}},"30008179":{"solarSystemId":30008179,"solarSystemName":"P:1006","location":{"x":-20200000000000000000,"y":-501000000000000000,"z":-3590000000000000000}},"30008180":{"solarSystemId":30008180,"solarSystemName":"Y:12O3","location":{"x":-20300000000000000000,"y":-363000000000000000,"z":-3820000000000000000}},"30008181":{"solarSystemId":30008181,"solarSystemName":"Y:1911","location":{"x":-20100000000000000000,"y":-491000000000000000,"z":-3330000000000000000}},"30008182":{"solarSystemId":30008182,"solarSystemName":"U:L3V7","location":{"x":-20400000000000000000,"y":-554000000000000000,"z":-3550000000000000000}},"30008183":{"solarSystemId":30008183,"solarSystemName":"Q:7NV2","location":{"x":-20000000000000000000,"y":-327000000000000000,"z":-3600000000000000000}},"30008184":{"solarSystemId":30008184,"solarSystemName":"Y:2OIV","location":{"x":-20400000000000000000,"y":-322000000000000000,"z":-3660000000000000000}},"30008185":{"solarSystemId":30008185,"solarSystemName":"U:O3KT","location":{"x":-20200000000000000000,"y":-515000000000000000,"z":-3600000000000000000}},"30008186":{"solarSystemId":30008186,"solarSystemName":"Y:O9KA","location":{"x":-20100000000000000000,"y":-624000000000000000,"z":-3400000000000000000}},"30008187":{"solarSystemId":30008187,"solarSystemName":"U:4253","location":{"x":-20000000000000000000,"y":-441000000000000000,"z":-3640000000000000000}},"30008188":{"solarSystemId":30008188,"solarSystemName":"Q:141V","location":{"x":-20200000000000000000,"y":-466000000000000000,"z":-3300000000000000000}},"30008189":{"solarSystemId":30008189,"solarSystemName":"Z:1982","location":{"x":-20400000000000000000,"y":-468000000000000000,"z":-3460000000000000000}},"30008190":{"solarSystemId":30008190,"solarSystemName":"B:L209","location":{"x":-20300000000000000000,"y":-319000000000000000,"z":-3730000000000000000}},"30008191":{"solarSystemId":30008191,"solarSystemName":"B:155N","location":{"x":-20300000000000000000,"y":-593000000000000000,"z":-3640000000000000000}},"30008192":{"solarSystemId":30008192,"solarSystemName":"M:19KO","location":{"x":-20200000000000000000,"y":-489000000000000000,"z":-3290000000000000000}},"30008193":{"solarSystemId":30008193,"solarSystemName":"H:14O5","location":{"x":-20300000000000000000,"y":-185000000000000000,"z":-3620000000000000000}},"30008194":{"solarSystemId":30008194,"solarSystemName":"Z:11RN","location":{"x":-20400000000000000000,"y":-618000000000000000,"z":-3450000000000000000}},"30008195":{"solarSystemId":30008195,"solarSystemName":"B:17V9","location":{"x":-20400000000000000000,"y":-412000000000000000,"z":-3550000000000000000}},"30008196":{"solarSystemId":30008196,"solarSystemName":"M:39IR","location":{"x":-19500000000000000000,"y":-477000000000000000,"z":-3240000000000000000}},"30008197":{"solarSystemId":30008197,"solarSystemName":"F:3V0N","location":{"x":-19500000000000000000,"y":-538000000000000000,"z":-3550000000000000000}},"30008198":{"solarSystemId":30008198,"solarSystemName":"M:5421","location":{"x":-19300000000000000000,"y":-323000000000000000,"z":-3530000000000000000}},"30008199":{"solarSystemId":30008199,"solarSystemName":"Z:1VAK","location":{"x":-19500000000000000000,"y":-155000000000000000,"z":-3650000000000000000}},"30008200":{"solarSystemId":30008200,"solarSystemName":"Y:2R4V","location":{"x":-19500000000000000000,"y":-373000000000000000,"z":-3890000000000000000}},"30008201":{"solarSystemId":30008201,"solarSystemName":"Q:21OI","location":{"x":-19700000000000000000,"y":-606000000000000000,"z":-3640000000000000000}},"30008202":{"solarSystemId":30008202,"solarSystemName":"P:19NK","location":{"x":-19700000000000000000,"y":-582000000000000000,"z":-3560000000000000000}},"30008203":{"solarSystemId":30008203,"solarSystemName":"U:4A2O","location":{"x":-19600000000000000000,"y":-518000000000000000,"z":-3700000000000000000}},"30008204":{"solarSystemId":30008204,"solarSystemName":"Z:10R2","location":{"x":-19700000000000000000,"y":-658000000000000000,"z":-3540000000000000000}},"30008205":{"solarSystemId":30008205,"solarSystemName":"Y:12VK","location":{"x":-19500000000000000000,"y":-668000000000000000,"z":-3450000000000000000}},"30008206":{"solarSystemId":30008206,"solarSystemName":"H:19VR","location":{"x":-19900000000000000000,"y":-437000000000000000,"z":-3310000000000000000}},"30008207":{"solarSystemId":30008207,"solarSystemName":"U:NK0O","location":{"x":-19600000000000000000,"y":-250000000000000000,"z":-3520000000000000000}},"30008208":{"solarSystemId":30008208,"solarSystemName":"D:18RI","location":{"x":-19300000000000000000,"y":-531000000000000000,"z":-3390000000000000000}},"30008209":{"solarSystemId":30008209,"solarSystemName":"Y:LLL6","location":{"x":-19300000000000000000,"y":-194000000000000000,"z":-3480000000000000000}},"30008210":{"solarSystemId":30008210,"solarSystemName":"Q:VE26","location":{"x":-19600000000000000000,"y":-578000000000000000,"z":-3530000000000000000}},"30008211":{"solarSystemId":30008211,"solarSystemName":"Z:10N2","location":{"x":-19300000000000000000,"y":-467000000000000000,"z":-3880000000000000000}},"30008212":{"solarSystemId":30008212,"solarSystemName":"M:19VV","location":{"x":-19400000000000000000,"y":-669000000000000000,"z":-3610000000000000000}},"30008213":{"solarSystemId":30008213,"solarSystemName":"P:257L","location":{"x":-19100000000000000000,"y":-748000000000000000,"z":-5210000000000000000}},"30008214":{"solarSystemId":30008214,"solarSystemName":"B:219E","location":{"x":-19500000000000000000,"y":-224000000000000000,"z":-4810000000000000000}},"30008215":{"solarSystemId":30008215,"solarSystemName":"Y:1775","location":{"x":-20000000000000000000,"y":-531000000000000000,"z":-4670000000000000000}},"30008216":{"solarSystemId":30008216,"solarSystemName":"P:1AS2","location":{"x":-19500000000000000000,"y":-341000000000000000,"z":-5500000000000000000}},"30008217":{"solarSystemId":30008217,"solarSystemName":"H:11N8","location":{"x":-19600000000000000000,"y":240000000000000000,"z":-5100000000000000000}},"30008218":{"solarSystemId":30008218,"solarSystemName":"U:ANOV","location":{"x":-19900000000000000000,"y":-264000000000000000,"z":-5160000000000000000}},"30008219":{"solarSystemId":30008219,"solarSystemName":"B:1051","location":{"x":-19600000000000000000,"y":-82500000000000000,"z":-5780000000000000000}},"30008220":{"solarSystemId":30008220,"solarSystemName":"B:60L8","location":{"x":-20000000000000000000,"y":-437000000000000000,"z":-4580000000000000000}},"30008221":{"solarSystemId":30008221,"solarSystemName":"Q:27NK","location":{"x":-19100000000000000000,"y":-660000000000000000,"z":-5330000000000000000}},"30008222":{"solarSystemId":30008222,"solarSystemName":"H:S5AS","location":{"x":-18900000000000000000,"y":-767000000000000000,"z":-5330000000000000000}},"30008223":{"solarSystemId":30008223,"solarSystemName":"P:12IL","location":{"x":-20000000000000000000,"y":-582000000000000000,"z":-4800000000000000000}},"30008224":{"solarSystemId":30008224,"solarSystemName":"Z:KK6A","location":{"x":-19500000000000000000,"y":235000000000000000,"z":-5250000000000000000}},"30008225":{"solarSystemId":30008225,"solarSystemName":"M:10OT","location":{"x":-19800000000000000000,"y":-265000000000000000,"z":-4650000000000000000}},"30008226":{"solarSystemId":30008226,"solarSystemName":"M:10LS","location":{"x":-18800000000000000000,"y":-320000000000000000,"z":-5370000000000000000}},"30008227":{"solarSystemId":30008227,"solarSystemName":"F:1I22","location":{"x":-19500000000000000000,"y":-472000000000000000,"z":-4800000000000000000}},"30008228":{"solarSystemId":30008228,"solarSystemName":"H:16EE","location":{"x":-19700000000000000000,"y":182000000000000000,"z":-5080000000000000000}},"30008229":{"solarSystemId":30008229,"solarSystemName":"Q:R52E","location":{"x":-20000000000000000000,"y":763000000000000000,"z":-4850000000000000000}},"30008230":{"solarSystemId":30008230,"solarSystemName":"D:1I7I","location":{"x":-19200000000000000000,"y":-53100000000000000,"z":-5400000000000000000}},"30008231":{"solarSystemId":30008231,"solarSystemName":"G:1793","location":{"x":-21900000000000000000,"y":-1950000000000000000,"z":-5670000000000000000}},"30008232":{"solarSystemId":30008232,"solarSystemName":"F:11R8","location":{"x":-22200000000000000000,"y":-1380000000000000000,"z":-5210000000000000000}},"30008233":{"solarSystemId":30008233,"solarSystemName":"H:T9RT","location":{"x":-20900000000000000000,"y":-1470000000000000000,"z":-4240000000000000000}},"30008234":{"solarSystemId":30008234,"solarSystemName":"Z:O35T","location":{"x":-22000000000000000000,"y":-1380000000000000000,"z":-4810000000000000000}},"30008235":{"solarSystemId":30008235,"solarSystemName":"Z:309T","location":{"x":-20700000000000000000,"y":-1520000000000000000,"z":-5740000000000000000}},"30008236":{"solarSystemId":30008236,"solarSystemName":"H:KN9T","location":{"x":-21800000000000000000,"y":-1240000000000000000,"z":-4740000000000000000}},"30008237":{"solarSystemId":30008237,"solarSystemName":"G:15EV","location":{"x":-21700000000000000000,"y":-1390000000000000000,"z":-4330000000000000000}},"30008238":{"solarSystemId":30008238,"solarSystemName":"Q:3532","location":{"x":-21800000000000000000,"y":-1590000000000000000,"z":-4840000000000000000}},"30008239":{"solarSystemId":30008239,"solarSystemName":"U:L9V3","location":{"x":-21500000000000000000,"y":-1530000000000000000,"z":-4450000000000000000}},"30008240":{"solarSystemId":30008240,"solarSystemName":"G:1ILV","location":{"x":-20700000000000000000,"y":-1450000000000000000,"z":-4150000000000000000}},"30008241":{"solarSystemId":30008241,"solarSystemName":"G:TI33","location":{"x":-21600000000000000000,"y":-1250000000000000000,"z":-4800000000000000000}},"30008242":{"solarSystemId":30008242,"solarSystemName":"F:K9OL","location":{"x":-20900000000000000000,"y":-1680000000000000000,"z":-4390000000000000000}},"30008243":{"solarSystemId":30008243,"solarSystemName":"P:SOAO","location":{"x":-20700000000000000000,"y":-1400000000000000000,"z":-4100000000000000000}},"30008244":{"solarSystemId":30008244,"solarSystemName":"D:11K1","location":{"x":-22100000000000000000,"y":-1560000000000000000,"z":-4950000000000000000}},"30008245":{"solarSystemId":30008245,"solarSystemName":"P:137N","location":{"x":-21700000000000000000,"y":-1600000000000000000,"z":-4350000000000000000}},"30008246":{"solarSystemId":30008246,"solarSystemName":"P:16N2","location":{"x":-21300000000000000000,"y":-1810000000000000000,"z":-5110000000000000000}},"30008247":{"solarSystemId":30008247,"solarSystemName":"P:1263","location":{"x":-19600000000000000000,"y":-900000000000000000,"z":-4470000000000000000}},"30008248":{"solarSystemId":30008248,"solarSystemName":"U:14K5","location":{"x":-19500000000000000000,"y":-510000000000000000,"z":-4750000000000000000}},"30008249":{"solarSystemId":30008249,"solarSystemName":"P:2TER","location":{"x":-19800000000000000000,"y":-823000000000000000,"z":-4340000000000000000}},"30008250":{"solarSystemId":30008250,"solarSystemName":"H:102V","location":{"x":-19900000000000000000,"y":-792000000000000000,"z":-4300000000000000000}},"30008251":{"solarSystemId":30008251,"solarSystemName":"H:V4L2","location":{"x":-19500000000000000000,"y":-694000000000000000,"z":-4860000000000000000}},"30008252":{"solarSystemId":30008252,"solarSystemName":"F:185E","location":{"x":-19900000000000000000,"y":-1070000000000000000,"z":-4640000000000000000}},"30008253":{"solarSystemId":30008253,"solarSystemName":"Y:1209","location":{"x":-19900000000000000000,"y":-732000000000000000,"z":-4160000000000000000}},"30008254":{"solarSystemId":30008254,"solarSystemName":"U:109L","location":{"x":-19900000000000000000,"y":-879000000000000000,"z":-4110000000000000000}},"30008255":{"solarSystemId":30008255,"solarSystemName":"U:4EV0","location":{"x":-19500000000000000000,"y":-772000000000000000,"z":-4390000000000000000}},"30008256":{"solarSystemId":30008256,"solarSystemName":"B:1N3T","location":{"x":-19700000000000000000,"y":-366000000000000000,"z":-4270000000000000000}},"30008257":{"solarSystemId":30008257,"solarSystemName":"D:19S6","location":{"x":-19600000000000000000,"y":-417000000000000000,"z":-4270000000000000000}},"30008258":{"solarSystemId":30008258,"solarSystemName":"H:LKA5","location":{"x":-19300000000000000000,"y":-720000000000000000,"z":-4700000000000000000}},"30008259":{"solarSystemId":30008259,"solarSystemName":"U:191I","location":{"x":-19600000000000000000,"y":-1160000000000000000,"z":-4730000000000000000}},"30008260":{"solarSystemId":30008260,"solarSystemName":"F:LL5S","location":{"x":-20000000000000000000,"y":-773000000000000000,"z":-4530000000000000000}},"30008261":{"solarSystemId":30008261,"solarSystemName":"F:12R2","location":{"x":-19900000000000000000,"y":-579000000000000000,"z":-4450000000000000000}},"30008262":{"solarSystemId":30008262,"solarSystemName":"Q:52V7","location":{"x":-19800000000000000000,"y":-454000000000000000,"z":-4280000000000000000}},"30008263":{"solarSystemId":30008263,"solarSystemName":"Q:13I3","location":{"x":-19700000000000000000,"y":-852000000000000000,"z":-4140000000000000000}},"30008264":{"solarSystemId":30008264,"solarSystemName":"U:130S","location":{"x":-19400000000000000000,"y":-803000000000000000,"z":-4490000000000000000}},"30008265":{"solarSystemId":30008265,"solarSystemName":"Q:16IL","location":{"x":-20300000000000000000,"y":-564000000000000000,"z":-4050000000000000000}},"30008266":{"solarSystemId":30008266,"solarSystemName":"M:2078","location":{"x":-20400000000000000000,"y":-372000000000000000,"z":-3790000000000000000}},"30008267":{"solarSystemId":30008267,"solarSystemName":"F:R473","location":{"x":-20300000000000000000,"y":-585000000000000000,"z":-3940000000000000000}},"30008268":{"solarSystemId":30008268,"solarSystemName":"M:TIRE","location":{"x":-20500000000000000000,"y":-580000000000000000,"z":-3920000000000000000}},"30008269":{"solarSystemId":30008269,"solarSystemName":"J:1854","location":{"x":-20200000000000000000,"y":-718000000000000000,"z":-4160000000000000000}},"30008270":{"solarSystemId":30008270,"solarSystemName":"H:165L","location":{"x":-19700000000000000000,"y":-607000000000000000,"z":-3930000000000000000}},"30008271":{"solarSystemId":30008271,"solarSystemName":"D:NVTE","location":{"x":-20000000000000000000,"y":-548000000000000000,"z":-4020000000000000000}},"30008272":{"solarSystemId":30008272,"solarSystemName":"P:O08S","location":{"x":-20000000000000000000,"y":-414000000000000000,"z":-3990000000000000000}},"30008273":{"solarSystemId":30008273,"solarSystemName":"J:15AV","location":{"x":-20000000000000000000,"y":-617000000000000000,"z":-4030000000000000000}},"30008274":{"solarSystemId":30008274,"solarSystemName":"J:3IOV","location":{"x":-20000000000000000000,"y":-532000000000000000,"z":-4200000000000000000}},"30008275":{"solarSystemId":30008275,"solarSystemName":"Z:15E3","location":{"x":-20200000000000000000,"y":-821000000000000000,"z":-3810000000000000000}},"30008276":{"solarSystemId":30008276,"solarSystemName":"B:16TA","location":{"x":-20300000000000000000,"y":-515000000000000000,"z":-4420000000000000000}},"30008277":{"solarSystemId":30008277,"solarSystemName":"Y:1I8K","location":{"x":-20400000000000000000,"y":-568000000000000000,"z":-4310000000000000000}},"30008278":{"solarSystemId":30008278,"solarSystemName":"P:150L","location":{"x":-20100000000000000000,"y":-395000000000000000,"z":-4000000000000000000}},"30008279":{"solarSystemId":30008279,"solarSystemName":"D:13AI","location":{"x":-20200000000000000000,"y":-730000000000000000,"z":-4090000000000000000}},"30008280":{"solarSystemId":30008280,"solarSystemName":"U:13ES","location":{"x":-20200000000000000000,"y":-847000000000000000,"z":-4040000000000000000}},"30008281":{"solarSystemId":30008281,"solarSystemName":"Z:15T9","location":{"x":-20400000000000000000,"y":-516000000000000000,"z":-3810000000000000000}},"30008282":{"solarSystemId":30008282,"solarSystemName":"J:2729","location":{"x":-22000000000000000000,"y":-375000000000000000,"z":-2820000000000000000}},"30008283":{"solarSystemId":30008283,"solarSystemName":"Z:1TI8","location":{"x":-21500000000000000000,"y":-623000000000000000,"z":-2980000000000000000}},"30008284":{"solarSystemId":30008284,"solarSystemName":"D:1499","location":{"x":-21900000000000000000,"y":-773000000000000000,"z":-3140000000000000000}},"30008285":{"solarSystemId":30008285,"solarSystemName":"G:N0NS","location":{"x":-21900000000000000000,"y":-424000000000000000,"z":-3180000000000000000}},"30008286":{"solarSystemId":30008286,"solarSystemName":"F:KL51","location":{"x":-21700000000000000000,"y":-329000000000000000,"z":-3220000000000000000}},"30008287":{"solarSystemId":30008287,"solarSystemName":"Y:1A00","location":{"x":-21900000000000000000,"y":-916000000000000000,"z":-2720000000000000000}},"30008288":{"solarSystemId":30008288,"solarSystemName":"M:ITV1","location":{"x":-21600000000000000000,"y":-651000000000000000,"z":-3150000000000000000}},"30008289":{"solarSystemId":30008289,"solarSystemName":"D:19E3","location":{"x":-21900000000000000000,"y":-656000000000000000,"z":-2480000000000000000}},"30008290":{"solarSystemId":30008290,"solarSystemName":"F:6049","location":{"x":-21700000000000000000,"y":-258000000000000000,"z":-3070000000000000000}},"30008291":{"solarSystemId":30008291,"solarSystemName":"U:68R2","location":{"x":-22200000000000000000,"y":-662000000000000000,"z":-2580000000000000000}},"30008292":{"solarSystemId":30008292,"solarSystemName":"Y:156I","location":{"x":-22000000000000000000,"y":-641000000000000000,"z":-3180000000000000000}},"30008293":{"solarSystemId":30008293,"solarSystemName":"P:12OL","location":{"x":-22200000000000000000,"y":-485000000000000000,"z":-2590000000000000000}},"30008294":{"solarSystemId":30008294,"solarSystemName":"Y:19O5","location":{"x":-22300000000000000000,"y":-365000000000000000,"z":-2690000000000000000}},"30008295":{"solarSystemId":30008295,"solarSystemName":"M:SVR7","location":{"x":-22000000000000000000,"y":-494000000000000000,"z":-2760000000000000000}},"30008296":{"solarSystemId":30008296,"solarSystemName":"G:14O8","location":{"x":-21700000000000000000,"y":-290000000000000000,"z":-2850000000000000000}},"30008297":{"solarSystemId":30008297,"solarSystemName":"H:1647","location":{"x":-21700000000000000000,"y":-459000000000000000,"z":-3260000000000000000}},"30008298":{"solarSystemId":30008298,"solarSystemName":"U:143E","location":{"x":-21500000000000000000,"y":-620000000000000000,"z":-2950000000000000000}},"30008299":{"solarSystemId":30008299,"solarSystemName":"Q:72R0","location":{"x":-22000000000000000000,"y":-608000000000000000,"z":-2930000000000000000}},"30008300":{"solarSystemId":30008300,"solarSystemName":"J:20N6","location":{"x":-21200000000000000000,"y":-392000000000000000,"z":-1130000000000000000}},"30008301":{"solarSystemId":30008301,"solarSystemName":"D:36LN","location":{"x":-21400000000000000000,"y":-395000000000000000,"z":-2120000000000000000}},"30008302":{"solarSystemId":30008302,"solarSystemName":"G:1R5L","location":{"x":-21200000000000000000,"y":-578000000000000000,"z":-1590000000000000000}},"30008303":{"solarSystemId":30008303,"solarSystemName":"G:79V6","location":{"x":-20900000000000000000,"y":-500000000000000000,"z":-1770000000000000000}},"30008304":{"solarSystemId":30008304,"solarSystemName":"P:12EA","location":{"x":-21000000000000000000,"y":-837000000000000000,"z":-1900000000000000000}},"30008305":{"solarSystemId":30008305,"solarSystemName":"Y:2T54","location":{"x":-20900000000000000000,"y":-1070000000000000000,"z":-1570000000000000000}},"30008306":{"solarSystemId":30008306,"solarSystemName":"P:11S4","location":{"x":-21200000000000000000,"y":-783000000000000000,"z":-2090000000000000000}},"30008307":{"solarSystemId":30008307,"solarSystemName":"D:VR6N","location":{"x":-20900000000000000000,"y":-507000000000000000,"z":-2040000000000000000}},"30008308":{"solarSystemId":30008308,"solarSystemName":"D:15LA","location":{"x":-21000000000000000000,"y":-344000000000000000,"z":-1660000000000000000}},"30008309":{"solarSystemId":30008309,"solarSystemName":"B:VT6T","location":{"x":-21300000000000000000,"y":-638000000000000000,"z":-1680000000000000000}},"30008310":{"solarSystemId":30008310,"solarSystemName":"J:L705","location":{"x":-20700000000000000000,"y":-737000000000000000,"z":-1710000000000000000}},"30008311":{"solarSystemId":30008311,"solarSystemName":"U:235A","location":{"x":-21000000000000000000,"y":-623000000000000000,"z":-1930000000000000000}},"30008312":{"solarSystemId":30008312,"solarSystemName":"M:6AL0","location":{"x":-21300000000000000000,"y":-438000000000000000,"z":-2100000000000000000}},"30008313":{"solarSystemId":30008313,"solarSystemName":"Z:8A5I","location":{"x":-20900000000000000000,"y":-711000000000000000,"z":-1120000000000000000}},"30008314":{"solarSystemId":30008314,"solarSystemName":"Z:KA0V","location":{"x":-21300000000000000000,"y":-136000000000000000,"z":-1540000000000000000}},"30008315":{"solarSystemId":30008315,"solarSystemName":"D:1884","location":{"x":-20900000000000000000,"y":-847000000000000000,"z":-1850000000000000000}},"30008316":{"solarSystemId":30008316,"solarSystemName":"F:126E","location":{"x":-20700000000000000000,"y":-1160000000000000000,"z":-2830000000000000000}},"30008317":{"solarSystemId":30008317,"solarSystemName":"J:1165","location":{"x":-20900000000000000000,"y":-1140000000000000000,"z":-2460000000000000000}},"30008318":{"solarSystemId":30008318,"solarSystemName":"H:LLR6","location":{"x":-20300000000000000000,"y":-1460000000000000000,"z":-2950000000000000000}},"30008319":{"solarSystemId":30008319,"solarSystemName":"Z:1813","location":{"x":-20800000000000000000,"y":-1290000000000000000,"z":-2280000000000000000}},"30008320":{"solarSystemId":30008320,"solarSystemName":"G:K6NA","location":{"x":-20700000000000000000,"y":-885000000000000000,"z":-2670000000000000000}},"30008321":{"solarSystemId":30008321,"solarSystemName":"Y:ORVT","location":{"x":-20500000000000000000,"y":-1040000000000000000,"z":-2650000000000000000}},"30008322":{"solarSystemId":30008322,"solarSystemName":"D:I23I","location":{"x":-20500000000000000000,"y":-1110000000000000000,"z":-2370000000000000000}},"30008323":{"solarSystemId":30008323,"solarSystemName":"M:1127","location":{"x":-21000000000000000000,"y":-1470000000000000000,"z":-2690000000000000000}},"30008324":{"solarSystemId":30008324,"solarSystemName":"B:KRTE","location":{"x":-20500000000000000000,"y":-1290000000000000000,"z":-2970000000000000000}},"30008325":{"solarSystemId":30008325,"solarSystemName":"Q:T29A","location":{"x":-20600000000000000000,"y":-1090000000000000000,"z":-2750000000000000000}},"30008326":{"solarSystemId":30008326,"solarSystemName":"Y:LO1O","location":{"x":-20700000000000000000,"y":-1300000000000000000,"z":-2840000000000000000}},"30008327":{"solarSystemId":30008327,"solarSystemName":"Q:RK6O","location":{"x":-20600000000000000000,"y":-1310000000000000000,"z":-2710000000000000000}},"30008328":{"solarSystemId":30008328,"solarSystemName":"U:154A","location":{"x":-20600000000000000000,"y":-987000000000000000,"z":-2740000000000000000}},"30008329":{"solarSystemId":30008329,"solarSystemName":"M:TOO2","location":{"x":-20800000000000000000,"y":-1330000000000000000,"z":-2660000000000000000}},"30008330":{"solarSystemId":30008330,"solarSystemName":"U:10T5","location":{"x":-21000000000000000000,"y":-1380000000000000000,"z":-2650000000000000000}},"30008331":{"solarSystemId":30008331,"solarSystemName":"D:2ES0","location":{"x":-20700000000000000000,"y":-1670000000000000000,"z":-2400000000000000000}},"30008332":{"solarSystemId":30008332,"solarSystemName":"U:1385","location":{"x":-20300000000000000000,"y":-1970000000000000000,"z":-2460000000000000000}},"30008333":{"solarSystemId":30008333,"solarSystemName":"J:VV82","location":{"x":-20200000000000000000,"y":-1420000000000000000,"z":-2650000000000000000}},"30008334":{"solarSystemId":30008334,"solarSystemName":"Z:1033","location":{"x":-20300000000000000000,"y":-2290000000000000000,"z":-2100000000000000000}},"30008335":{"solarSystemId":30008335,"solarSystemName":"F:20L6","location":{"x":-20200000000000000000,"y":-1640000000000000000,"z":-2830000000000000000}},"30008336":{"solarSystemId":30008336,"solarSystemName":"Y:13OV","location":{"x":-20600000000000000000,"y":-1700000000000000000,"z":-2820000000000000000}},"30008337":{"solarSystemId":30008337,"solarSystemName":"P:187R","location":{"x":-20200000000000000000,"y":-1440000000000000000,"z":-2330000000000000000}},"30008338":{"solarSystemId":30008338,"solarSystemName":"G:1598","location":{"x":-20400000000000000000,"y":-1760000000000000000,"z":-2590000000000000000}},"30008339":{"solarSystemId":30008339,"solarSystemName":"Q:19O0","location":{"x":-20200000000000000000,"y":-2150000000000000000,"z":-1800000000000000000}},"30008340":{"solarSystemId":30008340,"solarSystemName":"Q:12I6","location":{"x":-20600000000000000000,"y":-1310000000000000000,"z":-2220000000000000000}},"30008341":{"solarSystemId":30008341,"solarSystemName":"M:14AL","location":{"x":-20700000000000000000,"y":-1580000000000000000,"z":-2110000000000000000}},"30008342":{"solarSystemId":30008342,"solarSystemName":"Q:133E","location":{"x":-20300000000000000000,"y":-1900000000000000000,"z":-1800000000000000000}},"30008343":{"solarSystemId":30008343,"solarSystemName":"B:V6A1","location":{"x":-20400000000000000000,"y":-2260000000000000000,"z":-2940000000000000000}},"30008344":{"solarSystemId":30008344,"solarSystemName":"Z:1366","location":{"x":-20600000000000000000,"y":-1400000000000000000,"z":-2210000000000000000}},"30008345":{"solarSystemId":30008345,"solarSystemName":"D:18IA","location":{"x":-20400000000000000000,"y":-1300000000000000000,"z":-2570000000000000000}},"30008346":{"solarSystemId":30008346,"solarSystemName":"Z:3T09","location":{"x":-20500000000000000000,"y":-445000000000000000,"z":-1700000000000000000}},"30008347":{"solarSystemId":30008347,"solarSystemName":"D:12E2","location":{"x":-20500000000000000000,"y":-520000000000000000,"z":-1780000000000000000}},"30008348":{"solarSystemId":30008348,"solarSystemName":"Z:2AIR","location":{"x":-20300000000000000000,"y":-492000000000000000,"z":-1750000000000000000}},"30008349":{"solarSystemId":30008349,"solarSystemName":"H:1VLO","location":{"x":-20500000000000000000,"y":-538000000000000000,"z":-1970000000000000000}},"30008350":{"solarSystemId":30008350,"solarSystemName":"U:1ALS","location":{"x":-20500000000000000000,"y":-831000000000000000,"z":-1420000000000000000}},"30008351":{"solarSystemId":30008351,"solarSystemName":"U:K6R0","location":{"x":-20500000000000000000,"y":-164000000000000000,"z":-1790000000000000000}},"30008352":{"solarSystemId":30008352,"solarSystemName":"P:2185","location":{"x":-19900000000000000000,"y":-278000000000000000,"z":-1330000000000000000}},"30008353":{"solarSystemId":30008353,"solarSystemName":"Q:1RER","location":{"x":-20000000000000000000,"y":-906000000000000000,"z":-1930000000000000000}},"30008354":{"solarSystemId":30008354,"solarSystemName":"B:LEAI","location":{"x":-20300000000000000000,"y":-976000000000000000,"z":-1870000000000000000}},"30008355":{"solarSystemId":30008355,"solarSystemName":"H:1477","location":{"x":-20500000000000000000,"y":-1020000000000000000,"z":-1410000000000000000}},"30008356":{"solarSystemId":30008356,"solarSystemName":"G:IL2L","location":{"x":-19800000000000000000,"y":-532000000000000000,"z":-2030000000000000000}},"30008357":{"solarSystemId":30008357,"solarSystemName":"G:2565","location":{"x":-20400000000000000000,"y":-520000000000000000,"z":-2060000000000000000}},"30008358":{"solarSystemId":30008358,"solarSystemName":"Y:1RO7","location":{"x":-20600000000000000000,"y":-925000000000000000,"z":-1490000000000000000}},"30008359":{"solarSystemId":30008359,"solarSystemName":"P:5381","location":{"x":-20500000000000000000,"y":-781000000000000000,"z":-1970000000000000000}},"30008360":{"solarSystemId":30008360,"solarSystemName":"Y:12V6","location":{"x":-19800000000000000000,"y":-504000000000000000,"z":-2140000000000000000}},"30008361":{"solarSystemId":30008361,"solarSystemName":"B:112K","location":{"x":-20300000000000000000,"y":-786000000000000000,"z":-2130000000000000000}},"30008362":{"solarSystemId":30008362,"solarSystemName":"Y:38II","location":{"x":-21400000000000000000,"y":-1010000000000000000,"z":-2070000000000000000}},"30008363":{"solarSystemId":30008363,"solarSystemName":"M:27A7","location":{"x":-20800000000000000000,"y":-222000000000000000,"z":-2390000000000000000}},"30008364":{"solarSystemId":30008364,"solarSystemName":"M:NR3T","location":{"x":-20900000000000000000,"y":-337000000000000000,"z":-2620000000000000000}},"30008365":{"solarSystemId":30008365,"solarSystemName":"P:4O64","location":{"x":-21800000000000000000,"y":-567000000000000000,"z":-2250000000000000000}},"30008366":{"solarSystemId":30008366,"solarSystemName":"B:41IL","location":{"x":-21300000000000000000,"y":-260000000000000000,"z":-2760000000000000000}},"30008367":{"solarSystemId":30008367,"solarSystemName":"Z:I509","location":{"x":-20800000000000000000,"y":-702000000000000000,"z":-2570000000000000000}},"30008368":{"solarSystemId":30008368,"solarSystemName":"P:L795","location":{"x":-20900000000000000000,"y":-732000000000000000,"z":-2630000000000000000}},"30008369":{"solarSystemId":30008369,"solarSystemName":"Z:13IV","location":{"x":-20900000000000000000,"y":-235000000000000000,"z":-2680000000000000000}},"30008370":{"solarSystemId":30008370,"solarSystemName":"F:2LOA","location":{"x":-21500000000000000000,"y":-902000000000000000,"z":-2140000000000000000}},"30008371":{"solarSystemId":30008371,"solarSystemName":"B:1O47","location":{"x":-21800000000000000000,"y":-536000000000000000,"z":-2310000000000000000}},"30008372":{"solarSystemId":30008372,"solarSystemName":"F:ER4A","location":{"x":-21000000000000000000,"y":-661000000000000000,"z":-2300000000000000000}},"30008373":{"solarSystemId":30008373,"solarSystemName":"M:2430","location":{"x":-21400000000000000000,"y":-542000000000000000,"z":-2560000000000000000}},"30008374":{"solarSystemId":30008374,"solarSystemName":"M:AV0T","location":{"x":-21600000000000000000,"y":-621000000000000000,"z":-2380000000000000000}},"30008375":{"solarSystemId":30008375,"solarSystemName":"J:110N","location":{"x":-20900000000000000000,"y":-567000000000000000,"z":-2200000000000000000}},"30008376":{"solarSystemId":30008376,"solarSystemName":"M:15O0","location":{"x":-21300000000000000000,"y":-455000000000000000,"z":-2260000000000000000}},"30008377":{"solarSystemId":30008377,"solarSystemName":"Q:19NT","location":{"x":-20700000000000000000,"y":-354000000000000000,"z":-2480000000000000000}},"30008378":{"solarSystemId":30008378,"solarSystemName":"Z:17NT","location":{"x":-21500000000000000000,"y":-896000000000000000,"z":-2320000000000000000}},"30008379":{"solarSystemId":30008379,"solarSystemName":"D:188T","location":{"x":-21600000000000000000,"y":-761000000000000000,"z":-2230000000000000000}},"30008380":{"solarSystemId":30008380,"solarSystemName":"M:13TK","location":{"x":-21600000000000000000,"y":-559000000000000000,"z":-2610000000000000000}},"30008381":{"solarSystemId":30008381,"solarSystemName":"U:1VV2","location":{"x":-21100000000000000000,"y":-858000000000000000,"z":-2460000000000000000}},"30008382":{"solarSystemId":30008382,"solarSystemName":"B:164A","location":{"x":-21100000000000000000,"y":-2000000000000000000,"z":-1200000000000000000}},"30008383":{"solarSystemId":30008383,"solarSystemName":"F:R38N","location":{"x":-21000000000000000000,"y":-2740000000000000000,"z":-2060000000000000000}},"30008384":{"solarSystemId":30008384,"solarSystemName":"F:V0E5","location":{"x":-20100000000000000000,"y":-1840000000000000000,"z":-1590000000000000000}},"30008385":{"solarSystemId":30008385,"solarSystemName":"P:13A2","location":{"x":-21300000000000000000,"y":-1890000000000000000,"z":-1820000000000000000}},"30008386":{"solarSystemId":30008386,"solarSystemName":"U:18KR","location":{"x":-20500000000000000000,"y":-2400000000000000000,"z":-1680000000000000000}},"30008387":{"solarSystemId":30008387,"solarSystemName":"F:S6AS","location":{"x":-19900000000000000000,"y":-1880000000000000000,"z":-1740000000000000000}},"30008388":{"solarSystemId":30008388,"solarSystemName":"D:179K","location":{"x":-20300000000000000000,"y":-1490000000000000000,"z":-1690000000000000000}},"30008389":{"solarSystemId":30008389,"solarSystemName":"H:356E","location":{"x":-20800000000000000000,"y":-2200000000000000000,"z":-1600000000000000000}},"30008390":{"solarSystemId":30008390,"solarSystemName":"M:E5T8","location":{"x":-20900000000000000000,"y":-1800000000000000000,"z":-1340000000000000000}},"30008391":{"solarSystemId":30008391,"solarSystemName":"M:OAOK","location":{"x":-20500000000000000000,"y":-1300000000000000000,"z":-1590000000000000000}},"30008392":{"solarSystemId":30008392,"solarSystemName":"P:EE32","location":{"x":-20100000000000000000,"y":-1500000000000000000,"z":-1410000000000000000}},"30008393":{"solarSystemId":30008393,"solarSystemName":"U:TV48","location":{"x":-20700000000000000000,"y":-1330000000000000000,"z":-1390000000000000000}},"30008394":{"solarSystemId":30008394,"solarSystemName":"G:SIT2","location":{"x":-22600000000000000000,"y":-1810000000000000000,"z":-2650000000000000000}},"30008395":{"solarSystemId":30008395,"solarSystemName":"M:19RT","location":{"x":-21200000000000000000,"y":-2280000000000000000,"z":-2570000000000000000}},"30008396":{"solarSystemId":30008396,"solarSystemName":"D:2IOL","location":{"x":-22500000000000000000,"y":-1540000000000000000,"z":-1850000000000000000}},"30008397":{"solarSystemId":30008397,"solarSystemName":"D:SK5S","location":{"x":-22000000000000000000,"y":-1950000000000000000,"z":-1460000000000000000}},"30008398":{"solarSystemId":30008398,"solarSystemName":"G:2NRL","location":{"x":-22500000000000000000,"y":-1720000000000000000,"z":-1020000000000000000}},"30008399":{"solarSystemId":30008399,"solarSystemName":"Q:A345","location":{"x":-21800000000000000000,"y":-1450000000000000000,"z":-2100000000000000000}},"30008400":{"solarSystemId":30008400,"solarSystemName":"G:14RA","location":{"x":-21600000000000000000,"y":-3010000000000000000,"z":-1600000000000000000}},"30008401":{"solarSystemId":30008401,"solarSystemName":"Z:1817","location":{"x":-22100000000000000000,"y":-2400000000000000000,"z":-2420000000000000000}},"30008402":{"solarSystemId":30008402,"solarSystemName":"P:19II","location":{"x":-22500000000000000000,"y":-2500000000000000000,"z":-2620000000000000000}},"30008403":{"solarSystemId":30008403,"solarSystemName":"B:S61S","location":{"x":-21800000000000000000,"y":-2030000000000000000,"z":-2170000000000000000}},"30008404":{"solarSystemId":30008404,"solarSystemName":"Y:LERA","location":{"x":-22300000000000000000,"y":-1800000000000000000,"z":-1430000000000000000}},"30008405":{"solarSystemId":30008405,"solarSystemName":"D:10VN","location":{"x":-21400000000000000000,"y":-2030000000000000000,"z":-2670000000000000000}},"30008406":{"solarSystemId":30008406,"solarSystemName":"G:NSVN","location":{"x":-22100000000000000000,"y":-1950000000000000000,"z":-2640000000000000000}},"30008407":{"solarSystemId":30008407,"solarSystemName":"Z:V4SO","location":{"x":-22600000000000000000,"y":-1760000000000000000,"z":-3100000000000000000}},"30008408":{"solarSystemId":30008408,"solarSystemName":"P:K79K","location":{"x":-22000000000000000000,"y":-1480000000000000000,"z":-958000000000000000}},"30008409":{"solarSystemId":30008409,"solarSystemName":"M:AS9T","location":{"x":-22000000000000000000,"y":-1060000000000000000,"z":-1320000000000000000}},"30008410":{"solarSystemId":30008410,"solarSystemName":"J:46ES","location":{"x":-21800000000000000000,"y":-1470000000000000000,"z":-1510000000000000000}},"30008411":{"solarSystemId":30008411,"solarSystemName":"Y:3A2L","location":{"x":-21700000000000000000,"y":-1040000000000000000,"z":-1270000000000000000}},"30008412":{"solarSystemId":30008412,"solarSystemName":"G:16L1","location":{"x":-22200000000000000000,"y":-618000000000000000,"z":-1220000000000000000}},"30008413":{"solarSystemId":30008413,"solarSystemName":"Y:27LL","location":{"x":-22100000000000000000,"y":-1100000000000000000,"z":-638000000000000000}},"30008414":{"solarSystemId":30008414,"solarSystemName":"U:1429","location":{"x":-21600000000000000000,"y":-946000000000000000,"z":-1340000000000000000}},"30008415":{"solarSystemId":30008415,"solarSystemName":"U:O2NR","location":{"x":-21900000000000000000,"y":-749000000000000000,"z":-806000000000000000}},"30008416":{"solarSystemId":30008416,"solarSystemName":"P:116S","location":{"x":-22100000000000000000,"y":-1290000000000000000,"z":-1490000000000000000}},"30008417":{"solarSystemId":30008417,"solarSystemName":"Z:I7V7","location":{"x":-22300000000000000000,"y":-824000000000000000,"z":-991000000000000000}},"30008418":{"solarSystemId":30008418,"solarSystemName":"B:4I2K","location":{"x":-21700000000000000000,"y":-1360000000000000000,"z":-1560000000000000000}},"30008419":{"solarSystemId":30008419,"solarSystemName":"M:248T","location":{"x":-22600000000000000000,"y":-992000000000000000,"z":-1180000000000000000}},"30008420":{"solarSystemId":30008420,"solarSystemName":"Y:O6SO","location":{"x":-21900000000000000000,"y":-1080000000000000000,"z":-1150000000000000000}},"30008421":{"solarSystemId":30008421,"solarSystemName":"Y:1RK4","location":{"x":-22100000000000000000,"y":-865000000000000000,"z":-1040000000000000000}},"30008422":{"solarSystemId":30008422,"solarSystemName":"Q:TN91","location":{"x":-21900000000000000000,"y":-857000000000000000,"z":-859000000000000000}},"30008423":{"solarSystemId":30008423,"solarSystemName":"Q:3TOT","location":{"x":-22100000000000000000,"y":-1210000000000000000,"z":-1650000000000000000}},"30008424":{"solarSystemId":30008424,"solarSystemName":"Y:2LRT","location":{"x":-21300000000000000000,"y":-1280000000000000000,"z":-1570000000000000000}},"30008425":{"solarSystemId":30008425,"solarSystemName":"D:7708","location":{"x":-21700000000000000000,"y":-1220000000000000000,"z":-1420000000000000000}},"30008426":{"solarSystemId":30008426,"solarSystemName":"B:1183","location":{"x":-22100000000000000000,"y":-950000000000000000,"z":-1290000000000000000}},"30008427":{"solarSystemId":30008427,"solarSystemName":"P:25O5","location":{"x":-20100000000000000000,"y":-356000000000000000,"z":-469000000000000000}},"30008428":{"solarSystemId":30008428,"solarSystemName":"P:1L7O","location":{"x":-21000000000000000000,"y":-194000000000000000,"z":-785000000000000000}},"30008429":{"solarSystemId":30008429,"solarSystemName":"Y:185V","location":{"x":-20800000000000000000,"y":-206000000000000000,"z":-538000000000000000}},"30008430":{"solarSystemId":30008430,"solarSystemName":"P:1II2","location":{"x":-20100000000000000000,"y":-302000000000000000,"z":-1010000000000000000}},"30008431":{"solarSystemId":30008431,"solarSystemName":"Y:OROT","location":{"x":-20900000000000000000,"y":-698000000000000000,"z":-596000000000000000}},"30008432":{"solarSystemId":30008432,"solarSystemName":"P:166L","location":{"x":-20400000000000000000,"y":-401000000000000000,"z":-487000000000000000}},"30008433":{"solarSystemId":30008433,"solarSystemName":"B:1NA2","location":{"x":-21500000000000000000,"y":-796000000000000000,"z":-686000000000000000}},"30008434":{"solarSystemId":30008434,"solarSystemName":"Q:1L45","location":{"x":-21300000000000000000,"y":-733000000000000000,"z":-918000000000000000}},"30008435":{"solarSystemId":30008435,"solarSystemName":"B:LV8S","location":{"x":-20600000000000000000,"y":-551000000000000000,"z":-261000000000000000}},"30008436":{"solarSystemId":30008436,"solarSystemName":"B:SE91","location":{"x":-20600000000000000000,"y":-1010000000000000000,"z":-1320000000000000000}},"30008437":{"solarSystemId":30008437,"solarSystemName":"F:L8V4","location":{"x":-20700000000000000000,"y":-486000000000000000,"z":-665000000000000000}},"30008438":{"solarSystemId":30008438,"solarSystemName":"Z:1IEK","location":{"x":-21600000000000000000,"y":-801000000000000000,"z":-713000000000000000}},"30008439":{"solarSystemId":30008439,"solarSystemName":"B:2IK0","location":{"x":-20100000000000000000,"y":-260000000000000000,"z":-515000000000000000}},"30008440":{"solarSystemId":30008440,"solarSystemName":"D:1SAE","location":{"x":-20200000000000000000,"y":-484000000000000000,"z":-15100000000000000}},"30008441":{"solarSystemId":30008441,"solarSystemName":"H:19S9","location":{"x":-21000000000000000000,"y":-114000000000000000,"z":-815000000000000000}},"30008442":{"solarSystemId":30008442,"solarSystemName":"P:IE4E","location":{"x":-20900000000000000000,"y":-252000000000000000,"z":-666000000000000000}},"30008443":{"solarSystemId":30008443,"solarSystemName":"G:11VS","location":{"x":-21600000000000000000,"y":-2370000000000000000,"z":-157000000000000000}},"30008444":{"solarSystemId":30008444,"solarSystemName":"B:13EK","location":{"x":-21200000000000000000,"y":-1570000000000000000,"z":-538000000000000000}},"30008445":{"solarSystemId":30008445,"solarSystemName":"G:NSK3","location":{"x":-21200000000000000000,"y":-1350000000000000000,"z":-38600000000000000}},"30008446":{"solarSystemId":30008446,"solarSystemName":"Z:1007","location":{"x":-20700000000000000000,"y":-1100000000000000000,"z":-906000000000000000}},"30008447":{"solarSystemId":30008447,"solarSystemName":"U:12RE","location":{"x":-21700000000000000000,"y":-1740000000000000000,"z":-677000000000000000}},"30008448":{"solarSystemId":30008448,"solarSystemName":"Z:1O24","location":{"x":-21500000000000000000,"y":-1610000000000000000,"z":-274000000000000000}},"30008449":{"solarSystemId":30008449,"solarSystemName":"Q:N5SE","location":{"x":-21200000000000000000,"y":-1040000000000000000,"z":-449000000000000000}},"30008450":{"solarSystemId":30008450,"solarSystemName":"H:1271","location":{"x":-21600000000000000000,"y":-1260000000000000000,"z":-265000000000000000}},"30008451":{"solarSystemId":30008451,"solarSystemName":"H:N5IE","location":{"x":-20800000000000000000,"y":-872000000000000000,"z":-536000000000000000}},"30008452":{"solarSystemId":30008452,"solarSystemName":"J:NEN7","location":{"x":-20800000000000000000,"y":-1370000000000000000,"z":-971000000000000000}},"30008453":{"solarSystemId":30008453,"solarSystemName":"Y:192K","location":{"x":-20700000000000000000,"y":-1740000000000000000,"z":174000000000000000}},"30008454":{"solarSystemId":30008454,"solarSystemName":"H:18OA","location":{"x":-20800000000000000000,"y":-1600000000000000000,"z":-130000000000000000}},"30008455":{"solarSystemId":30008455,"solarSystemName":"J:4AIS","location":{"x":-21100000000000000000,"y":-1330000000000000000,"z":-886000000000000000}},"30008456":{"solarSystemId":30008456,"solarSystemName":"D:341K","location":{"x":-20900000000000000000,"y":-2110000000000000000,"z":-672000000000000000}},"30008457":{"solarSystemId":30008457,"solarSystemName":"D:1I72","location":{"x":-20200000000000000000,"y":-1940000000000000000,"z":-16800000000000000}},"30008458":{"solarSystemId":30008458,"solarSystemName":"D:4R3A","location":{"x":-21100000000000000000,"y":-1180000000000000000,"z":-465000000000000000}},"30008459":{"solarSystemId":30008459,"solarSystemName":"G:1R4A","location":{"x":-20500000000000000000,"y":-1510000000000000000,"z":-691000000000000000}},"30008460":{"solarSystemId":30008460,"solarSystemName":"Q:O98A","location":{"x":-20600000000000000000,"y":-194000000000000000,"z":1790000000000000000}},"30008461":{"solarSystemId":30008461,"solarSystemName":"F:2T6S","location":{"x":-20600000000000000000,"y":-125000000000000000,"z":1480000000000000000}},"30008462":{"solarSystemId":30008462,"solarSystemName":"U:ERNK","location":{"x":-21200000000000000000,"y":-593000000000000000,"z":140000000000000000}},"30008463":{"solarSystemId":30008463,"solarSystemName":"F:26A5","location":{"x":-21000000000000000000,"y":366000000000000000,"z":870000000000000000}},"30008464":{"solarSystemId":30008464,"solarSystemName":"B:20OV","location":{"x":-21300000000000000000,"y":-1220000000000000000,"z":820000000000000000}},"30008465":{"solarSystemId":30008465,"solarSystemName":"P:21EK","location":{"x":-21400000000000000000,"y":-794000000000000000,"z":1190000000000000000}},"30008466":{"solarSystemId":30008466,"solarSystemName":"G:3SSI","location":{"x":-21200000000000000000,"y":-355000000000000000,"z":1430000000000000000}},"30008467":{"solarSystemId":30008467,"solarSystemName":"J:124L","location":{"x":-21100000000000000000,"y":-1150000000000000000,"z":1340000000000000000}},"30008468":{"solarSystemId":30008468,"solarSystemName":"G:11AT","location":{"x":-21400000000000000000,"y":-276000000000000000,"z":1640000000000000000}},"30008469":{"solarSystemId":30008469,"solarSystemName":"Y:179N","location":{"x":-20800000000000000000,"y":-864000000000000000,"z":1620000000000000000}},"30008470":{"solarSystemId":30008470,"solarSystemName":"J:1SLV","location":{"x":-21700000000000000000,"y":-649000000000000000,"z":647000000000000000}},"30008471":{"solarSystemId":30008471,"solarSystemName":"F:1I93","location":{"x":-21200000000000000000,"y":-364000000000000000,"z":215000000000000000}},"30008472":{"solarSystemId":30008472,"solarSystemName":"Z:2ORL","location":{"x":-20800000000000000000,"y":-639000000000000000,"z":973000000000000000}},"30008473":{"solarSystemId":30008473,"solarSystemName":"P:1861","location":{"x":-21000000000000000000,"y":-707000000000000000,"z":272000000000000000}},"30008474":{"solarSystemId":30008474,"solarSystemName":"M:25RN","location":{"x":-19800000000000000000,"y":-476000000000000000,"z":-407000000000000000}},"30008475":{"solarSystemId":30008475,"solarSystemName":"D:1AON","location":{"x":-20100000000000000000,"y":-606000000000000000,"z":-916000000000000000}},"30008476":{"solarSystemId":30008476,"solarSystemName":"G:E7V6","location":{"x":-19900000000000000000,"y":-533000000000000000,"z":-30700000000000000}},"30008477":{"solarSystemId":30008477,"solarSystemName":"P:25E8","location":{"x":-19700000000000000000,"y":-806000000000000000,"z":-917000000000000000}},"30008478":{"solarSystemId":30008478,"solarSystemName":"U:IO33","location":{"x":-20000000000000000000,"y":-1330000000000000000,"z":-1030000000000000000}},"30008479":{"solarSystemId":30008479,"solarSystemName":"Q:E47L","location":{"x":-19600000000000000000,"y":-989000000000000000,"z":-59300000000000000}},"30008480":{"solarSystemId":30008480,"solarSystemName":"Y:48NE","location":{"x":-19700000000000000000,"y":-1040000000000000000,"z":-203000000000000000}},"30008481":{"solarSystemId":30008481,"solarSystemName":"J:R2NN","location":{"x":-19900000000000000000,"y":-664000000000000000,"z":-192000000000000000}},"30008482":{"solarSystemId":30008482,"solarSystemName":"Y:158V","location":{"x":-20100000000000000000,"y":-1170000000000000000,"z":-704000000000000000}},"30008483":{"solarSystemId":30008483,"solarSystemName":"D:12RN","location":{"x":-20000000000000000000,"y":-917000000000000000,"z":-758000000000000000}},"30008484":{"solarSystemId":30008484,"solarSystemName":"F:189A","location":{"x":-19900000000000000000,"y":-1300000000000000000,"z":-1030000000000000000}},"30008485":{"solarSystemId":30008485,"solarSystemName":"P:10RL","location":{"x":-19600000000000000000,"y":-931000000000000000,"z":-777000000000000000}},"30008486":{"solarSystemId":30008486,"solarSystemName":"D:106T","location":{"x":-19900000000000000000,"y":-1180000000000000000,"z":-916000000000000000}},"30008487":{"solarSystemId":30008487,"solarSystemName":"J:OOK8","location":{"x":-20400000000000000000,"y":-895000000000000000,"z":-775000000000000000}},"30008488":{"solarSystemId":30008488,"solarSystemName":"J:463V","location":{"x":-20400000000000000000,"y":-918000000000000000,"z":-987000000000000000}},"30008489":{"solarSystemId":30008489,"solarSystemName":"H:2476","location":{"x":-20100000000000000000,"y":-1180000000000000000,"z":-597000000000000000}},"30008490":{"solarSystemId":30008490,"solarSystemName":"F:1R3T","location":{"x":-20500000000000000000,"y":-349000000000000000,"z":1400000000000000000}},"30008491":{"solarSystemId":30008491,"solarSystemName":"Z:33AT","location":{"x":-19800000000000000000,"y":-9650000000000000,"z":427000000000000000}},"30008492":{"solarSystemId":30008492,"solarSystemName":"H:40SL","location":{"x":-20000000000000000000,"y":-984000000000000000,"z":895000000000000000}},"30008493":{"solarSystemId":30008493,"solarSystemName":"Z:SV18","location":{"x":-19900000000000000000,"y":-604000000000000000,"z":701000000000000000}},"30008494":{"solarSystemId":30008494,"solarSystemName":"D:15TK","location":{"x":-20000000000000000000,"y":-660000000000000000,"z":326000000000000000}},"30008495":{"solarSystemId":30008495,"solarSystemName":"Y:3R5K","location":{"x":-20300000000000000000,"y":-417000000000000000,"z":1090000000000000000}},"30008496":{"solarSystemId":30008496,"solarSystemName":"J:1LEI","location":{"x":-20200000000000000000,"y":-675000000000000000,"z":692000000000000000}},"30008497":{"solarSystemId":30008497,"solarSystemName":"B:2500","location":{"x":-20400000000000000000,"y":-634000000000000000,"z":403000000000000000}},"30008498":{"solarSystemId":30008498,"solarSystemName":"M:3123","location":{"x":-20800000000000000000,"y":-124000000000000000,"z":850000000000000000}},"30008499":{"solarSystemId":30008499,"solarSystemName":"P:200K","location":{"x":-20300000000000000000,"y":-66400000000000000,"z":1340000000000000000}},"30008500":{"solarSystemId":30008500,"solarSystemName":"Q:RKOI","location":{"x":-20200000000000000000,"y":-81100000000000000,"z":958000000000000000}},"30008501":{"solarSystemId":30008501,"solarSystemName":"J:1LN1","location":{"x":-20100000000000000000,"y":-291000000000000000,"z":865000000000000000}},"30008502":{"solarSystemId":30008502,"solarSystemName":"P:1ET3","location":{"x":-20100000000000000000,"y":-121000000000000000,"z":140000000000000000}},"30008503":{"solarSystemId":30008503,"solarSystemName":"Z:228K","location":{"x":-20500000000000000000,"y":-215000000000000000,"z":339000000000000000}},"30008504":{"solarSystemId":30008504,"solarSystemName":"J:51T2","location":{"x":-20700000000000000000,"y":-438000000000000000,"z":671000000000000000}},"30008505":{"solarSystemId":30008505,"solarSystemName":"U:VIS7","location":{"x":-19400000000000000000,"y":-200000000000000000,"z":-930000000000000000}},"30008506":{"solarSystemId":30008506,"solarSystemName":"Z:2T42","location":{"x":-19600000000000000000,"y":52400000000000000,"z":-539000000000000000}},"30008507":{"solarSystemId":30008507,"solarSystemName":"F:TOAO","location":{"x":-19300000000000000000,"y":86500000000000000,"z":-141000000000000000}},"30008508":{"solarSystemId":30008508,"solarSystemName":"U:113N","location":{"x":-19800000000000000000,"y":-203000000000000000,"z":-776000000000000000}},"30008509":{"solarSystemId":30008509,"solarSystemName":"J:146V","location":{"x":-19600000000000000000,"y":254000000000000000,"z":-569000000000000000}},"30008510":{"solarSystemId":30008510,"solarSystemName":"Y:4I8N","location":{"x":-19800000000000000000,"y":-203000000000000000,"z":-576000000000000000}},"30008511":{"solarSystemId":30008511,"solarSystemName":"M:65L4","location":{"x":-19200000000000000000,"y":-380000000000000000,"z":-252000000000000000}},"30008512":{"solarSystemId":30008512,"solarSystemName":"U:IVIL","location":{"x":-19500000000000000000,"y":-585000000000000000,"z":-843000000000000000}},"30008513":{"solarSystemId":30008513,"solarSystemName":"F:3T16","location":{"x":-19800000000000000000,"y":-313000000000000000,"z":-432000000000000000}},"30008514":{"solarSystemId":30008514,"solarSystemName":"G:3S3L","location":{"x":-19900000000000000000,"y":-160000000000000000,"z":-630000000000000000}},"30008515":{"solarSystemId":30008515,"solarSystemName":"J:3A14","location":{"x":-19200000000000000000,"y":166000000000000000,"z":-1400000000000000000}},"30008516":{"solarSystemId":30008516,"solarSystemName":"D:4KTR","location":{"x":-19400000000000000000,"y":-519000000000000000,"z":-359000000000000000}},"30008517":{"solarSystemId":30008517,"solarSystemName":"H:1669","location":{"x":-19700000000000000000,"y":7470000000000000,"z":-931000000000000000}},"30008518":{"solarSystemId":30008518,"solarSystemName":"D:1NE1","location":{"x":-19400000000000000000,"y":-222000000000000000,"z":-826000000000000000}},"30008519":{"solarSystemId":30008519,"solarSystemName":"P:37VS","location":{"x":-19500000000000000000,"y":-234000000000000000,"z":-1170000000000000000}},"30008520":{"solarSystemId":30008520,"solarSystemName":"Z:1I35","location":{"x":-19400000000000000000,"y":-59500000000000000,"z":-259000000000000000}},"30008521":{"solarSystemId":30008521,"solarSystemName":"F:R0KR","location":{"x":-19300000000000000000,"y":-34400000000000000,"z":-1340000000000000000}},"30008522":{"solarSystemId":30008522,"solarSystemName":"P:3NNT","location":{"x":-19600000000000000000,"y":506000000000000000,"z":-403000000000000000}},"30008523":{"solarSystemId":30008523,"solarSystemName":"F:O0E7","location":{"x":-20100000000000000000,"y":-51800000000000000,"z":-311000000000000000}},"30008524":{"solarSystemId":30008524,"solarSystemName":"Y:14LN","location":{"x":-21100000000000000000,"y":294000000000000000,"z":-129000000000000000}},"30008525":{"solarSystemId":30008525,"solarSystemName":"H:113E","location":{"x":-20100000000000000000,"y":-132000000000000000,"z":-608000000000000000}},"30008526":{"solarSystemId":30008526,"solarSystemName":"U:1071","location":{"x":-20100000000000000000,"y":143000000000000000,"z":-1220000000000000000}},"30008527":{"solarSystemId":30008527,"solarSystemName":"J:4VN5","location":{"x":-20300000000000000000,"y":-203000000000000000,"z":-743000000000000000}},"30008528":{"solarSystemId":30008528,"solarSystemName":"B:17O2","location":{"x":-20900000000000000000,"y":105000000000000000,"z":-853000000000000000}},"30008529":{"solarSystemId":30008529,"solarSystemName":"P:TTKK","location":{"x":-20400000000000000000,"y":783000000000000000,"z":-575000000000000000}},"30008530":{"solarSystemId":30008530,"solarSystemName":"J:108L","location":{"x":-19900000000000000000,"y":965000000000000000,"z":-1220000000000000000}},"30008531":{"solarSystemId":30008531,"solarSystemName":"J:161V","location":{"x":-20700000000000000000,"y":293000000000000000,"z":-89600000000000000}},"30008532":{"solarSystemId":30008532,"solarSystemName":"J:138K","location":{"x":-19800000000000000000,"y":393000000000000000,"z":-80701100000000}},"30008533":{"solarSystemId":30008533,"solarSystemName":"G:K93L","location":{"x":-20800000000000000000,"y":974000000000000000,"z":378000000000000000}},"30008534":{"solarSystemId":30008534,"solarSystemName":"Q:6IE0","location":{"x":-20600000000000000000,"y":519000000000000000,"z":-1120000000000000000}},"30008535":{"solarSystemId":30008535,"solarSystemName":"U:18NL","location":{"x":-20600000000000000000,"y":677000000000000000,"z":-249000000000000000}},"30008536":{"solarSystemId":30008536,"solarSystemName":"P:16V7","location":{"x":-20900000000000000000,"y":-15300000000000000,"z":1960000000000000000}},"30008537":{"solarSystemId":30008537,"solarSystemName":"Z:2VE7","location":{"x":-21300000000000000000,"y":-59100000000000000,"z":1730000000000000000}},"30008538":{"solarSystemId":30008538,"solarSystemName":"P:1A74","location":{"x":-19300000000000000000,"y":377000000000000000,"z":2020000000000000000}},"30008539":{"solarSystemId":30008539,"solarSystemName":"H:ERRA","location":{"x":-20500000000000000000,"y":-44300000000000000,"z":134000000000000000}},"30008540":{"solarSystemId":30008540,"solarSystemName":"P:21I2","location":{"x":-19900000000000000000,"y":531000000000000000,"z":1460000000000000000}},"30008541":{"solarSystemId":30008541,"solarSystemName":"D:L1T9","location":{"x":-20500000000000000000,"y":815000000000000000,"z":1040000000000000000}},"30008542":{"solarSystemId":30008542,"solarSystemName":"M:20S6","location":{"x":-21100000000000000000,"y":-162000000000000000,"z":2340000000000000000}},"30008543":{"solarSystemId":30008543,"solarSystemName":"H:K928","location":{"x":-20000000000000000000,"y":1290000000000000000,"z":852000000000000000}},"30008544":{"solarSystemId":30008544,"solarSystemName":"P:1I7I","location":{"x":-19500000000000000000,"y":1650000000000000000,"z":1730000000000000000}},"30008545":{"solarSystemId":30008545,"solarSystemName":"Q:R7SI","location":{"x":-19900000000000000000,"y":1170000000000000000,"z":1230000000000000000}},"30008546":{"solarSystemId":30008546,"solarSystemName":"D:1TIK","location":{"x":-19800000000000000000,"y":568000000000000000,"z":1480000000000000000}},"30008547":{"solarSystemId":30008547,"solarSystemName":"U:3V61","location":{"x":-20600000000000000000,"y":574000000000000000,"z":1460000000000000000}},"30008548":{"solarSystemId":30008548,"solarSystemName":"J:ESL9","location":{"x":-20200000000000000000,"y":737000000000000000,"z":906000000000000000}},"30008549":{"solarSystemId":30008549,"solarSystemName":"U:12SE","location":{"x":-20300000000000000000,"y":545000000000000000,"z":1070000000000000000}},"30008550":{"solarSystemId":30008550,"solarSystemName":"Y:1EL9","location":{"x":-19500000000000000000,"y":-408000000000000000,"z":746000000000000000}},"30008551":{"solarSystemId":30008551,"solarSystemName":"Q:15L6","location":{"x":-19300000000000000000,"y":121000000000000000,"z":1190000000000000000}},"30008552":{"solarSystemId":30008552,"solarSystemName":"H:R2NN","location":{"x":-19600000000000000000,"y":-345000000000000000,"z":723000000000000000}},"30008553":{"solarSystemId":30008553,"solarSystemName":"U:163L","location":{"x":-19300000000000000000,"y":-7320000000000000,"z":2030000000000000000}},"30008554":{"solarSystemId":30008554,"solarSystemName":"H:4T6N","location":{"x":-18900000000000000000,"y":70300000000000000,"z":1400000000000000000}},"30008555":{"solarSystemId":30008555,"solarSystemName":"J:11SN","location":{"x":-19300000000000000000,"y":-442000000000000000,"z":1420000000000000000}},"30008556":{"solarSystemId":30008556,"solarSystemName":"G:1020","location":{"x":-19100000000000000000,"y":-429000000000000000,"z":2140000000000000000}},"30008557":{"solarSystemId":30008557,"solarSystemName":"M:4E49","location":{"x":-19800000000000000000,"y":-257000000000000000,"z":1690000000000000000}},"30008558":{"solarSystemId":30008558,"solarSystemName":"Z:493O","location":{"x":-19800000000000000000,"y":-276000000000000000,"z":865000000000000000}},"30008559":{"solarSystemId":30008559,"solarSystemName":"D:2RAV","location":{"x":-19100000000000000000,"y":130000000000000000,"z":1270000000000000000}},"30008560":{"solarSystemId":30008560,"solarSystemName":"H:16SE","location":{"x":-19800000000000000000,"y":6860000000000000,"z":965000000000000000}},"30008561":{"solarSystemId":30008561,"solarSystemName":"B:3N24","location":{"x":-19700000000000000000,"y":-49100000000000000,"z":992000000000000000}},"30008562":{"solarSystemId":30008562,"solarSystemName":"P:2RVR","location":{"x":-19500000000000000000,"y":-87600000000000000,"z":1350000000000000000}},"30008563":{"solarSystemId":30008563,"solarSystemName":"D:3ANI","location":{"x":-19500000000000000000,"y":-19300000000000000,"z":1240000000000000000}},"30008564":{"solarSystemId":30008564,"solarSystemName":"H:1V72","location":{"x":-19300000000000000000,"y":329000000000000000,"z":1590000000000000000}},"30008565":{"solarSystemId":30008565,"solarSystemName":"F:1T5V","location":{"x":-19800000000000000000,"y":-592000000000000000,"z":1370000000000000000}},"30008566":{"solarSystemId":30008566,"solarSystemName":"F:SKE6","location":{"x":-23000000000000000000,"y":-4220000000000000000,"z":4390000000000000000}},"30008567":{"solarSystemId":30008567,"solarSystemName":"H:17RS","location":{"x":-24900000000000000000,"y":-4000000000000000000,"z":7420000000000000000}},"30008568":{"solarSystemId":30008568,"solarSystemName":"J:1811","location":{"x":-25200000000000000000,"y":-4320000000000000000,"z":7150000000000000000}},"30008569":{"solarSystemId":30008569,"solarSystemName":"J:10T8","location":{"x":-24200000000000000000,"y":-3890000000000000000,"z":7570000000000000000}},"30008570":{"solarSystemId":30008570,"solarSystemName":"Y:19E6","location":{"x":-21000000000000000000,"y":-5200000000000000000,"z":5140000000000000000}},"30008571":{"solarSystemId":30008571,"solarSystemName":"U:217I","location":{"x":-24800000000000000000,"y":-1400000000000000000,"z":3200000000000000000}},"30008572":{"solarSystemId":30008572,"solarSystemName":"G:TN1I","location":{"x":-25300000000000000000,"y":-1540000000000000000,"z":4880000000000000000}},"30008573":{"solarSystemId":30008573,"solarSystemName":"G:3AOO","location":{"x":-22600000000000000000,"y":213000000000000000,"z":1970000000000000000}},"30008574":{"solarSystemId":30008574,"solarSystemName":"Z:IK78","location":{"x":-24300000000000000000,"y":455000000000000000,"z":2310000000000000000}},"30008575":{"solarSystemId":30008575,"solarSystemName":"Q:19S4","location":{"x":-21700000000000000000,"y":-297000000000000000,"z":2140000000000000000}},"30008576":{"solarSystemId":30008576,"solarSystemName":"U:TVSV","location":{"x":-23500000000000000000,"y":-70400000000000000,"z":2370000000000000000}},"30008577":{"solarSystemId":30008577,"solarSystemName":"H:SO7O","location":{"x":-22900000000000000000,"y":-571000000000000000,"z":2480000000000000000}},"30008578":{"solarSystemId":30008578,"solarSystemName":"M:VR6N","location":{"x":-21600000000000000000,"y":146000000000000000,"z":2600000000000000000}},"30008579":{"solarSystemId":30008579,"solarSystemName":"Q:1251","location":{"x":-21300000000000000000,"y":35000000000000000,"z":1680000000000000000}},"30008580":{"solarSystemId":30008580,"solarSystemName":"Nod","location":{"x":-22300000000000000000,"y":-435000000000000000,"z":2670000000000000000}},"30008581":{"solarSystemId":30008581,"solarSystemName":"J:28R6","location":{"x":-21500000000000000000,"y":-282000000000000000,"z":2280000000000000000}},"30008582":{"solarSystemId":30008582,"solarSystemName":"B:12VI","location":{"x":-22700000000000000000,"y":226000000000000000,"z":1970000000000000000}},"30008583":{"solarSystemId":30008583,"solarSystemName":"F:19IK","location":{"x":-22800000000000000000,"y":898000000000000000,"z":1730000000000000000}},"30008584":{"solarSystemId":30008584,"solarSystemName":"F:1IKT","location":{"x":-22600000000000000000,"y":-717000000000000000,"z":2410000000000000000}},"30008585":{"solarSystemId":30008585,"solarSystemName":"J:1263","location":{"x":-22300000000000000000,"y":-145000000000000000,"z":2100000000000000000}},"30008586":{"solarSystemId":30008586,"solarSystemName":"Y:1S2T","location":{"x":-23100000000000000000,"y":-327000000000000000,"z":2540000000000000000}},"30008587":{"solarSystemId":30008587,"solarSystemName":"M:22S0","location":{"x":-20200000000000000000,"y":-43500000000000000,"z":2500000000000000000}},"30008588":{"solarSystemId":30008588,"solarSystemName":"J:1RS1","location":{"x":-20200000000000000000,"y":263000000000000000,"z":4050000000000000000}},"30008589":{"solarSystemId":30008589,"solarSystemName":"M:1I2N","location":{"x":-21300000000000000000,"y":483000000000000000,"z":2410000000000000000}},"30008590":{"solarSystemId":30008590,"solarSystemName":"Z:12RR","location":{"x":-22100000000000000000,"y":500000000000000000,"z":3290000000000000000}},"30008591":{"solarSystemId":30008591,"solarSystemName":"Y:E469","location":{"x":-20500000000000000000,"y":-222000000000000000,"z":4600000000000000000}},"30008592":{"solarSystemId":30008592,"solarSystemName":"M:10NE","location":{"x":-20900000000000000000,"y":-584000000000000000,"z":2970000000000000000}},"30008593":{"solarSystemId":30008593,"solarSystemName":"Z:I6AV","location":{"x":-21400000000000000000,"y":394000000000000000,"z":2640000000000000000}},"30008594":{"solarSystemId":30008594,"solarSystemName":"H:1LKE","location":{"x":-21400000000000000000,"y":90600000000000000,"z":3480000000000000000}},"30008595":{"solarSystemId":30008595,"solarSystemName":"Z:EL48","location":{"x":-21000000000000000000,"y":-91200000000000000,"z":3610000000000000000}},"30008596":{"solarSystemId":30008596,"solarSystemName":"Q:11AT","location":{"x":-20100000000000000000,"y":97300000000000000,"z":2720000000000000000}},"30008597":{"solarSystemId":30008597,"solarSystemName":"F:1406","location":{"x":-20600000000000000000,"y":152000000000000000,"z":4340000000000000000}},"30008598":{"solarSystemId":30008598,"solarSystemName":"H:1003","location":{"x":-20400000000000000000,"y":1240000000000000000,"z":3010000000000000000}},"30008599":{"solarSystemId":30008599,"solarSystemName":"Y:1AR8","location":{"x":-20600000000000000000,"y":403000000000000000,"z":3150000000000000000}},"30008600":{"solarSystemId":30008600,"solarSystemName":"J:1LL4","location":{"x":-21400000000000000000,"y":-34100000000000000,"z":2940000000000000000}},"30008601":{"solarSystemId":30008601,"solarSystemName":"Z:19KR","location":{"x":-20800000000000000000,"y":137000000000000000,"z":3600000000000000000}},"30008602":{"solarSystemId":30008602,"solarSystemName":"D:T00O","location":{"x":-20700000000000000000,"y":-151000000000000000,"z":4450000000000000000}},"30008603":{"solarSystemId":30008603,"solarSystemName":"U:11OL","location":{"x":-20100000000000000000,"y":-161000000000000000,"z":2480000000000000000}},"30008604":{"solarSystemId":30008604,"solarSystemName":"U:2682","location":{"x":-20900000000000000000,"y":-1450000000000000000,"z":3350000000000000000}},"30008605":{"solarSystemId":30008605,"solarSystemName":"U:15EK","location":{"x":-21900000000000000000,"y":-2110000000000000000,"z":3980000000000000000}},"30008606":{"solarSystemId":30008606,"solarSystemName":"F:KE0R","location":{"x":-20800000000000000000,"y":-823000000000000000,"z":4220000000000000000}},"30008607":{"solarSystemId":30008607,"solarSystemName":"B:304N","location":{"x":-22000000000000000000,"y":-1380000000000000000,"z":3170000000000000000}},"30008608":{"solarSystemId":30008608,"solarSystemName":"P:26KL","location":{"x":-22100000000000000000,"y":-963000000000000000,"z":3170000000000000000}},"30008609":{"solarSystemId":30008609,"solarSystemName":"Z:EO63","location":{"x":-21800000000000000000,"y":-1430000000000000000,"z":3760000000000000000}},"30008610":{"solarSystemId":30008610,"solarSystemName":"B:14LL","location":{"x":-20900000000000000000,"y":-754000000000000000,"z":3410000000000000000}},"30008611":{"solarSystemId":30008611,"solarSystemName":"B:47LL","location":{"x":-21200000000000000000,"y":-407000000000000000,"z":3670000000000000000}},"30008612":{"solarSystemId":30008612,"solarSystemName":"H:L3V7","location":{"x":-23000000000000000000,"y":-1200000000000000000,"z":3230000000000000000}},"30008613":{"solarSystemId":30008613,"solarSystemName":"Y:743I","location":{"x":-23000000000000000000,"y":-1090000000000000000,"z":3740000000000000000}},"30008614":{"solarSystemId":30008614,"solarSystemName":"B:1L95","location":{"x":-24000000000000000000,"y":-2150000000000000000,"z":2140000000000000000}},"30008615":{"solarSystemId":30008615,"solarSystemName":"M:SLE6","location":{"x":-23200000000000000000,"y":-1820000000000000000,"z":1040000000000000000}},"30008616":{"solarSystemId":30008616,"solarSystemName":"B:140V","location":{"x":-23700000000000000000,"y":-1440000000000000000,"z":3250000000000000000}},"30008617":{"solarSystemId":30008617,"solarSystemName":"P:1673","location":{"x":-23700000000000000000,"y":-716000000000000000,"z":2110000000000000000}},"30008618":{"solarSystemId":30008618,"solarSystemName":"P:ILL8","location":{"x":-24300000000000000000,"y":-716000000000000000,"z":1820000000000000000}},"30008619":{"solarSystemId":30008619,"solarSystemName":"Y:4S57","location":{"x":-25100000000000000000,"y":-1730000000000000000,"z":2540000000000000000}},"30008620":{"solarSystemId":30008620,"solarSystemName":"Q:V7R0","location":{"x":-24500000000000000000,"y":-1100000000000000000,"z":2620000000000000000}},"30008621":{"solarSystemId":30008621,"solarSystemName":"B:1A56","location":{"x":-24700000000000000000,"y":-902000000000000000,"z":1700000000000000000}},"30008622":{"solarSystemId":30008622,"solarSystemName":"U:O017","location":{"x":-23900000000000000000,"y":-1250000000000000000,"z":2520000000000000000}},"30008623":{"solarSystemId":30008623,"solarSystemName":"M:8KK3","location":{"x":-25200000000000000000,"y":-1630000000000000000,"z":2710000000000000000}},"30008624":{"solarSystemId":30008624,"solarSystemName":"Y:1I7O","location":{"x":-23400000000000000000,"y":-3810000000000000000,"z":1300000000000000000}},"30008625":{"solarSystemId":30008625,"solarSystemName":"U:VV22","location":{"x":-22400000000000000000,"y":-6330000000000000000,"z":2990000000000000000}},"30008626":{"solarSystemId":30008626,"solarSystemName":"H:1657","location":{"x":-20000000000000000000,"y":-5210000000000000000,"z":862000000000000000}},"30008627":{"solarSystemId":30008627,"solarSystemName":"F:1765","location":{"x":-23400000000000000000,"y":-4650000000000000000,"z":-1180000000000000000}},"30008628":{"solarSystemId":30008628,"solarSystemName":"P:10NL","location":{"x":-23100000000000000000,"y":-2950000000000000000,"z":950000000000000000}},"30008629":{"solarSystemId":30008629,"solarSystemName":"P:VI3V","location":{"x":-21100000000000000000,"y":-5480000000000000000,"z":868000000000000000}},"30008630":{"solarSystemId":30008630,"solarSystemName":"G:TR1A","location":{"x":-21000000000000000000,"y":1320000000000000000,"z":-4100000000000000000}},"30008631":{"solarSystemId":30008631,"solarSystemName":"F:VL3O","location":{"x":-22000000000000000000,"y":764000000000000000,"z":-3950000000000000000}},"30008632":{"solarSystemId":30008632,"solarSystemName":"B:169A","location":{"x":-22200000000000000000,"y":132000000000000000,"z":-3880000000000000000}},"30008633":{"solarSystemId":30008633,"solarSystemName":"D:10RA","location":{"x":-21600000000000000000,"y":846000000000000000,"z":-3980000000000000000}},"30008634":{"solarSystemId":30008634,"solarSystemName":"J:176T","location":{"x":-22800000000000000000,"y":1690000000000000000,"z":-3910000000000000000}},"30008635":{"solarSystemId":30008635,"solarSystemName":"Y:185O","location":{"x":-22000000000000000000,"y":349000000000000000,"z":-4030000000000000000}},"30008636":{"solarSystemId":30008636,"solarSystemName":"P:V541","location":{"x":-21800000000000000000,"y":1390000000000000000,"z":-4090000000000000000}},"30008637":{"solarSystemId":30008637,"solarSystemName":"D:101V","location":{"x":-22000000000000000000,"y":485000000000000000,"z":-4370000000000000000}},"30008638":{"solarSystemId":30008638,"solarSystemName":"U:1699","location":{"x":-21400000000000000000,"y":1140000000000000000,"z":-4260000000000000000}},"30008639":{"solarSystemId":30008639,"solarSystemName":"F:1729","location":{"x":-21900000000000000000,"y":710000000000000000,"z":-4140000000000000000}},"30008640":{"solarSystemId":30008640,"solarSystemName":"B:14T5","location":{"x":-21300000000000000000,"y":798000000000000000,"z":-4510000000000000000}},"30008641":{"solarSystemId":30008641,"solarSystemName":"M:10K8","location":{"x":-21900000000000000000,"y":567000000000000000,"z":-4390000000000000000}},"30008642":{"solarSystemId":30008642,"solarSystemName":"F:T3V9","location":{"x":-22000000000000000000,"y":403000000000000000,"z":-3890000000000000000}},"30008643":{"solarSystemId":30008643,"solarSystemName":"D:1II2","location":{"x":-21900000000000000000,"y":1260000000000000000,"z":-3590000000000000000}},"30008644":{"solarSystemId":30008644,"solarSystemName":"B:1908","location":{"x":-21600000000000000000,"y":526000000000000000,"z":-4160000000000000000}},"30008645":{"solarSystemId":30008645,"solarSystemName":"Y:1AK4","location":{"x":-21500000000000000000,"y":845000000000000000,"z":-3970000000000000000}},"30008646":{"solarSystemId":30008646,"solarSystemName":"Q:16NS","location":{"x":-21600000000000000000,"y":612000000000000000,"z":-4450000000000000000}},"30008647":{"solarSystemId":30008647,"solarSystemName":"Q:1054","location":{"x":-21900000000000000000,"y":930000000000000000,"z":-3000000000000000000}},"30008648":{"solarSystemId":30008648,"solarSystemName":"H:1105","location":{"x":-20300000000000000000,"y":8540000000000000,"z":-3750000000000000000}},"30008649":{"solarSystemId":30008649,"solarSystemName":"Y:18LE","location":{"x":-20700000000000000000,"y":1410000000000000000,"z":-4080000000000000000}},"30008650":{"solarSystemId":30008650,"solarSystemName":"P:K988","location":{"x":-20400000000000000000,"y":318000000000000000,"z":-3250000000000000000}},"30008651":{"solarSystemId":30008651,"solarSystemName":"J:KRVE","location":{"x":-20300000000000000000,"y":304000000000000000,"z":-3360000000000000000}},"30008652":{"solarSystemId":30008652,"solarSystemName":"F:1827","location":{"x":-20200000000000000000,"y":149000000000000000,"z":-4430000000000000000}},"30008653":{"solarSystemId":30008653,"solarSystemName":"J:V571","location":{"x":-19600000000000000000,"y":645000000000000000,"z":-3620000000000000000}},"30008654":{"solarSystemId":30008654,"solarSystemName":"G:1I1I","location":{"x":-20300000000000000000,"y":-37800000000000000,"z":-3980000000000000000}},"30008655":{"solarSystemId":30008655,"solarSystemName":"F:14O0","location":{"x":-19800000000000000000,"y":311000000000000000,"z":-3740000000000000000}},"30008656":{"solarSystemId":30008656,"solarSystemName":"F:1627","location":{"x":-20800000000000000000,"y":1340000000000000000,"z":-3660000000000000000}},"30008657":{"solarSystemId":30008657,"solarSystemName":"G:1721","location":{"x":-20500000000000000000,"y":579000000000000000,"z":-3590000000000000000}},"30008658":{"solarSystemId":30008658,"solarSystemName":"H:1047","location":{"x":-20200000000000000000,"y":501000000000000000,"z":-4300000000000000000}},"30008659":{"solarSystemId":30008659,"solarSystemName":"U:10RI","location":{"x":-20700000000000000000,"y":88200000000000000,"z":-3980000000000000000}},"30008660":{"solarSystemId":30008660,"solarSystemName":"D:1382","location":{"x":-20500000000000000000,"y":1220000000000000000,"z":-3540000000000000000}},"30008661":{"solarSystemId":30008661,"solarSystemName":"Z:V9TL","location":{"x":-20300000000000000000,"y":827000000000000000,"z":-3940000000000000000}},"30008662":{"solarSystemId":30008662,"solarSystemName":"P:15O6","location":{"x":-20000000000000000000,"y":255000000000000000,"z":-4380000000000000000}},"30008663":{"solarSystemId":30008663,"solarSystemName":"Q:103L","location":{"x":-21300000000000000000,"y":422000000000000000,"z":-4990000000000000000}},"30008664":{"solarSystemId":30008664,"solarSystemName":"F:118K","location":{"x":-21000000000000000000,"y":945000000000000000,"z":-5180000000000000000}},"30008665":{"solarSystemId":30008665,"solarSystemName":"G:113K","location":{"x":-22000000000000000000,"y":190000000000000000,"z":-5740000000000000000}},"30008666":{"solarSystemId":30008666,"solarSystemName":"B:18IR","location":{"x":-21100000000000000000,"y":663000000000000000,"z":-5980000000000000000}},"30008667":{"solarSystemId":30008667,"solarSystemName":"H:1E4R","location":{"x":-22100000000000000000,"y":645000000000000000,"z":-5240000000000000000}},"30008668":{"solarSystemId":30008668,"solarSystemName":"M:40KR","location":{"x":-21600000000000000000,"y":804000000000000000,"z":-6010000000000000000}},"30008669":{"solarSystemId":30008669,"solarSystemName":"D:LVA7","location":{"x":-20700000000000000000,"y":468000000000000000,"z":-6400000000000000000}},"30008670":{"solarSystemId":30008670,"solarSystemName":"F:RV0E","location":{"x":-22200000000000000000,"y":186000000000000000,"z":-5940000000000000000}},"30008671":{"solarSystemId":30008671,"solarSystemName":"G:NV23","location":{"x":-21800000000000000000,"y":493000000000000000,"z":-5600000000000000000}},"30008672":{"solarSystemId":30008672,"solarSystemName":"Z:KRN3","location":{"x":-22100000000000000000,"y":1490000000000000000,"z":-5570000000000000000}},"30008673":{"solarSystemId":30008673,"solarSystemName":"Y:K6KA","location":{"x":-21600000000000000000,"y":318000000000000000,"z":-5440000000000000000}},"30008674":{"solarSystemId":30008674,"solarSystemName":"Z:18NR","location":{"x":-21500000000000000000,"y":1290000000000000000,"z":-5990000000000000000}},"30008675":{"solarSystemId":30008675,"solarSystemName":"D:11TK","location":{"x":-21600000000000000000,"y":872000000000000000,"z":-5210000000000000000}},"30008676":{"solarSystemId":30008676,"solarSystemName":"F:1A80","location":{"x":-21300000000000000000,"y":649000000000000000,"z":-6280000000000000000}},"30008677":{"solarSystemId":30008677,"solarSystemName":"U:V8K9","location":{"x":-21600000000000000000,"y":277000000000000000,"z":-5240000000000000000}},"30008678":{"solarSystemId":30008678,"solarSystemName":"P:1IKO","location":{"x":-21200000000000000000,"y":203000000000000000,"z":-5360000000000000000}},"30008679":{"solarSystemId":30008679,"solarSystemName":"U:RVK2","location":{"x":-23900000000000000000,"y":1850000000000000000,"z":-5280000000000000000}},"30008680":{"solarSystemId":30008680,"solarSystemName":"Y:NV53","location":{"x":-22900000000000000000,"y":2870000000000000000,"z":-5400000000000000000}},"30008681":{"solarSystemId":30008681,"solarSystemName":"D:192R","location":{"x":-22500000000000000000,"y":4060000000000000000,"z":-5010000000000000000}},"30008682":{"solarSystemId":30008682,"solarSystemName":"G:VT3T","location":{"x":-24400000000000000000,"y":2000000000000000000,"z":-6040000000000000000}},"30008683":{"solarSystemId":30008683,"solarSystemName":"B:1758","location":{"x":-21700000000000000000,"y":4280000000000000000,"z":-3290000000000000000}},"30008684":{"solarSystemId":30008684,"solarSystemName":"Y:LVIS","location":{"x":-21400000000000000000,"y":3570000000000000000,"z":-3900000000000000000}},"30008685":{"solarSystemId":30008685,"solarSystemName":"M:16R8","location":{"x":-23000000000000000000,"y":2160000000000000000,"z":-4150000000000000000}},"30008686":{"solarSystemId":30008686,"solarSystemName":"U:3AN8","location":{"x":-21300000000000000000,"y":5300000000000000000,"z":-235000000000000000}},"30008687":{"solarSystemId":30008687,"solarSystemName":"J:VRN3","location":{"x":-23800000000000000000,"y":1540000000000000000,"z":-3920000000000000000}},"30008688":{"solarSystemId":30008688,"solarSystemName":"U:R9N9","location":{"x":-25400000000000000000,"y":4860000000000000000,"z":-2220000000000000000}},"30008689":{"solarSystemId":30008689,"solarSystemName":"G:SV5V","location":{"x":-25100000000000000000,"y":6610000000000000000,"z":-480000000000000000}},"30008690":{"solarSystemId":30008690,"solarSystemName":"Z:SKIR","location":{"x":-20800000000000000000,"y":4800000000000000000,"z":-1400000000000000000}},"30008691":{"solarSystemId":30008691,"solarSystemName":"P:1901","location":{"x":-22600000000000000000,"y":1730000000000000000,"z":-2220000000000000000}},"30008692":{"solarSystemId":30008692,"solarSystemName":"G:151I","location":{"x":-21800000000000000000,"y":5140000000000000000,"z":-1320000000000000000}},"30008693":{"solarSystemId":30008693,"solarSystemName":"D:2VS6","location":{"x":-22900000000000000000,"y":1430000000000000000,"z":-4930000000000000000}},"30008694":{"solarSystemId":30008694,"solarSystemName":"F:NRTT","location":{"x":-22600000000000000000,"y":72000000000000000,"z":-5340000000000000000}},"30008695":{"solarSystemId":30008695,"solarSystemName":"F:1ESO","location":{"x":-23200000000000000000,"y":-99100000000000000,"z":-5310000000000000000}},"30008696":{"solarSystemId":30008696,"solarSystemName":"B:1A99","location":{"x":-23700000000000000000,"y":634000000000000000,"z":-5030000000000000000}},"30008697":{"solarSystemId":30008697,"solarSystemName":"P:5ILR","location":{"x":-23100000000000000000,"y":706000000000000000,"z":-5330000000000000000}},"30008698":{"solarSystemId":30008698,"solarSystemName":"Q:1A21","location":{"x":-23600000000000000000,"y":569000000000000000,"z":-5390000000000000000}},"30008699":{"solarSystemId":30008699,"solarSystemName":"F:8S85","location":{"x":-23400000000000000000,"y":303000000000000000,"z":-5100000000000000000}},"30008700":{"solarSystemId":30008700,"solarSystemName":"F:1ILE","location":{"x":-22800000000000000000,"y":746000000000000000,"z":-5410000000000000000}},"30008701":{"solarSystemId":30008701,"solarSystemName":"M:V7A0","location":{"x":-23300000000000000000,"y":1220000000000000000,"z":-4810000000000000000}},"30008702":{"solarSystemId":30008702,"solarSystemName":"H:18AE","location":{"x":-22300000000000000000,"y":1090000000000000000,"z":-4660000000000000000}},"30008703":{"solarSystemId":30008703,"solarSystemName":"U:VATV","location":{"x":-22700000000000000000,"y":572000000000000000,"z":-4940000000000000000}},"30008704":{"solarSystemId":30008704,"solarSystemName":"B:V8VK","location":{"x":-22600000000000000000,"y":682000000000000000,"z":-5630000000000000000}},"30008705":{"solarSystemId":30008705,"solarSystemName":"J:L8EN","location":{"x":-23000000000000000000,"y":1180000000000000000,"z":-4840000000000000000}},"30008706":{"solarSystemId":30008706,"solarSystemName":"Q:T835","location":{"x":-22300000000000000000,"y":884000000000000000,"z":-5230000000000000000}},"30008707":{"solarSystemId":30008707,"solarSystemName":"H:2VO2","location":{"x":-23100000000000000000,"y":299000000000000000,"z":-4580000000000000000}},"30008708":{"solarSystemId":30008708,"solarSystemName":"P:3T21","location":{"x":-24000000000000000000,"y":363000000000000000,"z":-5310000000000000000}},"30008709":{"solarSystemId":30008709,"solarSystemName":"B:2S28","location":{"x":-23000000000000000000,"y":911000000000000000,"z":-2410000000000000000}},"30008710":{"solarSystemId":30008710,"solarSystemName":"J:3I00","location":{"x":-23400000000000000000,"y":780000000000000000,"z":-4240000000000000000}},"30008711":{"solarSystemId":30008711,"solarSystemName":"G:TT60","location":{"x":-23100000000000000000,"y":737000000000000000,"z":-3900000000000000000}},"30008712":{"solarSystemId":30008712,"solarSystemName":"U:1I83","location":{"x":-23000000000000000000,"y":-3710000000000000,"z":-3450000000000000000}},"30008713":{"solarSystemId":30008713,"solarSystemName":"G:3N6E","location":{"x":-23000000000000000000,"y":947000000000000000,"z":-2930000000000000000}},"30008714":{"solarSystemId":30008714,"solarSystemName":"F:1O74","location":{"x":-23600000000000000000,"y":759000000000000000,"z":-4520000000000000000}},"30008715":{"solarSystemId":30008715,"solarSystemName":"F:18NE","location":{"x":-22700000000000000000,"y":20100000000000000,"z":-4500000000000000000}},"30008716":{"solarSystemId":30008716,"solarSystemName":"G:10I1","location":{"x":-23300000000000000000,"y":325000000000000000,"z":-3360000000000000000}},"30008717":{"solarSystemId":30008717,"solarSystemName":"D:12N7","location":{"x":-23100000000000000000,"y":958000000000000000,"z":-4370000000000000000}},"30008718":{"solarSystemId":30008718,"solarSystemName":"J:SLA7","location":{"x":-22900000000000000000,"y":184000000000000000,"z":-4650000000000000000}},"30008719":{"solarSystemId":30008719,"solarSystemName":"F:17V0","location":{"x":-22600000000000000000,"y":22000000000000000,"z":-3570000000000000000}},"30008720":{"solarSystemId":30008720,"solarSystemName":"Q:KOOR","location":{"x":-22600000000000000000,"y":-51500000000000000,"z":-4250000000000000000}},"30008721":{"solarSystemId":30008721,"solarSystemName":"B:1837","location":{"x":-22500000000000000000,"y":89200000000000000,"z":-4400000000000000000}},"30008722":{"solarSystemId":30008722,"solarSystemName":"P:17NI","location":{"x":-23300000000000000000,"y":1390000000000000000,"z":-3300000000000000000}},"30008723":{"solarSystemId":30008723,"solarSystemName":"Y:1867","location":{"x":-23200000000000000000,"y":623000000000000000,"z":-4200000000000000000}},"30008724":{"solarSystemId":30008724,"solarSystemName":"F:129O","location":{"x":-22600000000000000000,"y":479000000000000000,"z":-3500000000000000000}},"30008725":{"solarSystemId":30008725,"solarSystemName":"Z:1E9K","location":{"x":-23800000000000000000,"y":2600000000000000000,"z":-5310000000000000000}},"30008726":{"solarSystemId":30008726,"solarSystemName":"Z:2S0L","location":{"x":-25400000000000000000,"y":5410000000000000000,"z":-6630000000000000000}},"30008727":{"solarSystemId":30008727,"solarSystemName":"H:15I8","location":{"x":-26000000000000000000,"y":5860000000000000000,"z":-5140000000000000000}},"30008728":{"solarSystemId":30008728,"solarSystemName":"J:1441","location":{"x":-25400000000000000000,"y":5170000000000000000,"z":-4120000000000000000}},"30008729":{"solarSystemId":30008729,"solarSystemName":"D:120O","location":{"x":-24100000000000000000,"y":6550000000000000000,"z":-4500000000000000000}},"30008730":{"solarSystemId":30008730,"solarSystemName":"F:372E","location":{"x":-17800000000000000000,"y":-2150000000000000000,"z":-8550000000000000000}},"30008731":{"solarSystemId":30008731,"solarSystemName":"J:189T","location":{"x":-18800000000000000000,"y":-2230000000000000000,"z":-9300000000000000000}},"30008732":{"solarSystemId":30008732,"solarSystemName":"M:4AK8","location":{"x":-19000000000000000000,"y":-1510000000000000000,"z":-7200000000000000000}},"30008733":{"solarSystemId":30008733,"solarSystemName":"Z:1034","location":{"x":-18300000000000000000,"y":-1750000000000000000,"z":-7480000000000000000}},"30008734":{"solarSystemId":30008734,"solarSystemName":"F:122O","location":{"x":-18800000000000000000,"y":-1760000000000000000,"z":-8520000000000000000}},"30008735":{"solarSystemId":30008735,"solarSystemName":"F:LL76","location":{"x":-18600000000000000000,"y":-2630000000000000000,"z":-7700000000000000000}},"30008736":{"solarSystemId":30008736,"solarSystemName":"U:1II8","location":{"x":-18800000000000000000,"y":-1910000000000000000,"z":-8610000000000000000}},"30008737":{"solarSystemId":30008737,"solarSystemName":"D:188O","location":{"x":-18700000000000000000,"y":-2510000000000000000,"z":-8200000000000000000}},"30008738":{"solarSystemId":30008738,"solarSystemName":"D:1RAL","location":{"x":-18000000000000000000,"y":-1780000000000000000,"z":-7460000000000000000}},"30008739":{"solarSystemId":30008739,"solarSystemName":"U:25RE","location":{"x":-18600000000000000000,"y":-2590000000000000000,"z":-7760000000000000000}},"30008740":{"solarSystemId":30008740,"solarSystemName":"U:1A54","location":{"x":-18700000000000000000,"y":-2390000000000000000,"z":-7630000000000000000}},"30008741":{"solarSystemId":30008741,"solarSystemName":"G:19AK","location":{"x":-19200000000000000000,"y":-2450000000000000000,"z":-6930000000000000000}},"30008742":{"solarSystemId":30008742,"solarSystemName":"B:17KV","location":{"x":-19000000000000000000,"y":-2820000000000000000,"z":-7100000000000000000}},"30008743":{"solarSystemId":30008743,"solarSystemName":"Y:1IOI","location":{"x":-20100000000000000000,"y":-295000000000000000,"z":-7830000000000000000}},"30008744":{"solarSystemId":30008744,"solarSystemName":"D:3RK1","location":{"x":-19900000000000000000,"y":-567000000000000000,"z":-9230000000000000000}},"30008745":{"solarSystemId":30008745,"solarSystemName":"B:2EII","location":{"x":-19800000000000000000,"y":-843000000000000000,"z":-9150000000000000000}},"30008746":{"solarSystemId":30008746,"solarSystemName":"Z:1E1L","location":{"x":-20000000000000000000,"y":-593000000000000000,"z":-8560000000000000000}},"30008747":{"solarSystemId":30008747,"solarSystemName":"H:1956","location":{"x":-18200000000000000000,"y":-1030000000000000000,"z":-8790000000000000000}},"30008748":{"solarSystemId":30008748,"solarSystemName":"M:OVK3","location":{"x":-19200000000000000000,"y":-386000000000000000,"z":-8460000000000000000}},"30008749":{"solarSystemId":30008749,"solarSystemName":"F:16E8","location":{"x":-18800000000000000000,"y":-890000000000000000,"z":-8310000000000000000}},"30008750":{"solarSystemId":30008750,"solarSystemName":"B:4IRA","location":{"x":-19200000000000000000,"y":-1370000000000000000,"z":-8500000000000000000}},"30008751":{"solarSystemId":30008751,"solarSystemName":"Q:1E9T","location":{"x":-19500000000000000000,"y":-905000000000000000,"z":-7720000000000000000}},"30008752":{"solarSystemId":30008752,"solarSystemName":"D:3RK4","location":{"x":-20100000000000000000,"y":-132000000000000000,"z":-7830000000000000000}},"30008753":{"solarSystemId":30008753,"solarSystemName":"M:20EO","location":{"x":-20100000000000000000,"y":-592000000000000000,"z":-8740000000000000000}},"30008754":{"solarSystemId":30008754,"solarSystemName":"H:156K","location":{"x":-19100000000000000000,"y":-607000000000000000,"z":-8240000000000000000}},"30008755":{"solarSystemId":30008755,"solarSystemName":"M:2784","location":{"x":-19800000000000000000,"y":-434000000000000000,"z":-7920000000000000000}},"30008756":{"solarSystemId":30008756,"solarSystemName":"U:1N5L","location":{"x":-18300000000000000000,"y":-670000000000000000,"z":-8590000000000000000}},"30008757":{"solarSystemId":30008757,"solarSystemName":"Y:37EL","location":{"x":-19600000000000000000,"y":-489000000000000000,"z":-7800000000000000000}},"30008758":{"solarSystemId":30008758,"solarSystemName":"U:2NE7","location":{"x":-19300000000000000000,"y":-375000000000000000,"z":-8230000000000000000}},"30008759":{"solarSystemId":30008759,"solarSystemName":"U:1K0O","location":{"x":-19900000000000000000,"y":-91300000000000000,"z":-8630000000000000000}},"30008760":{"solarSystemId":30008760,"solarSystemName":"B:1I3O","location":{"x":-19200000000000000000,"y":-343000000000000000,"z":-8680000000000000000}},"30008761":{"solarSystemId":30008761,"solarSystemName":"H:2R9L","location":{"x":-18800000000000000000,"y":-588000000000000000,"z":-8210000000000000000}},"30008762":{"solarSystemId":30008762,"solarSystemName":"F:11VO","location":{"x":-19500000000000000000,"y":-1700000000000000000,"z":-8750000000000000000}},"30008763":{"solarSystemId":30008763,"solarSystemName":"Y:3OI3","location":{"x":-18400000000000000000,"y":-554000000000000000,"z":-9110000000000000000}},"30008764":{"solarSystemId":30008764,"solarSystemName":"Q:K8TL","location":{"x":-17500000000000000000,"y":458000000000000000,"z":-8990000000000000000}},"30008765":{"solarSystemId":30008765,"solarSystemName":"F:1R8R","location":{"x":-18500000000000000000,"y":-413000000000000000,"z":-8360000000000000000}},"30008766":{"solarSystemId":30008766,"solarSystemName":"J:E5O8","location":{"x":-19200000000000000000,"y":-380000000000000000,"z":-9340000000000000000}},"30008767":{"solarSystemId":30008767,"solarSystemName":"B:AK6E","location":{"x":-18700000000000000000,"y":-513000000000000000,"z":-8920000000000000000}},"30008768":{"solarSystemId":30008768,"solarSystemName":"B:18RA","location":{"x":-18800000000000000000,"y":-258000000000000000,"z":-9650000000000000000}},"30008769":{"solarSystemId":30008769,"solarSystemName":"Y:1OL7","location":{"x":-19400000000000000000,"y":-206240000000000,"z":-9520000000000000000}},"30008770":{"solarSystemId":30008770,"solarSystemName":"P:2O1T","location":{"x":-18300000000000000000,"y":1080000000000000000,"z":-9130000000000000000}},"30008771":{"solarSystemId":30008771,"solarSystemName":"G:2O8L","location":{"x":-17000000000000000000,"y":270000000000000000,"z":-9010000000000000000}},"30008772":{"solarSystemId":30008772,"solarSystemName":"B:2AKE","location":{"x":-19000000000000000000,"y":1490000000000000000,"z":-9270000000000000000}},"30008773":{"solarSystemId":30008773,"solarSystemName":"Q:1LRR","location":{"x":-18300000000000000000,"y":-452000000000000000,"z":-9120000000000000000}},"30008774":{"solarSystemId":30008774,"solarSystemName":"F:276E","location":{"x":-19300000000000000000,"y":1350000000000000000,"z":-10400000000000000000}},"30008775":{"solarSystemId":30008775,"solarSystemName":"B:12SS","location":{"x":-18900000000000000000,"y":1990000000000000000,"z":-10200000000000000000}},"30008776":{"solarSystemId":30008776,"solarSystemName":"G:T41L","location":{"x":-18300000000000000000,"y":-324000000000000000,"z":-9540000000000000000}},"30008777":{"solarSystemId":30008777,"solarSystemName":"B:14TA","location":{"x":-18000000000000000000,"y":-430000000000000000,"z":-8550000000000000000}},"30008778":{"solarSystemId":30008778,"solarSystemName":"J:3IIA","location":{"x":-17600000000000000000,"y":-805000000000000000,"z":-7320000000000000000}},"30008779":{"solarSystemId":30008779,"solarSystemName":"P:34V8","location":{"x":-18200000000000000000,"y":-378000000000000000,"z":-7180000000000000000}},"30008780":{"solarSystemId":30008780,"solarSystemName":"G:2T04","location":{"x":-18100000000000000000,"y":-1120000000000000000,"z":-7180000000000000000}},"30008781":{"solarSystemId":30008781,"solarSystemName":"J:4VN6","location":{"x":-18100000000000000000,"y":-1070000000000000000,"z":-7050000000000000000}},"30008782":{"solarSystemId":30008782,"solarSystemName":"M:130K","location":{"x":-17200000000000000000,"y":-801000000000000000,"z":-6740000000000000000}},"30008783":{"solarSystemId":30008783,"solarSystemName":"M:2391","location":{"x":-18200000000000000000,"y":-1230000000000000000,"z":-7620000000000000000}},"30008784":{"solarSystemId":30008784,"solarSystemName":"F:O1L6","location":{"x":-17200000000000000000,"y":-1530000000000000000,"z":-7700000000000000000}},"30008785":{"solarSystemId":30008785,"solarSystemName":"Z:T995","location":{"x":-18000000000000000000,"y":-1190000000000000000,"z":-8490000000000000000}},"30008786":{"solarSystemId":30008786,"solarSystemName":"Z:2L57","location":{"x":-17600000000000000000,"y":-837000000000000000,"z":-6700000000000000000}},"30008787":{"solarSystemId":30008787,"solarSystemName":"H:OA9K","location":{"x":-17900000000000000000,"y":-482000000000000000,"z":-7130000000000000000}},"30008788":{"solarSystemId":30008788,"solarSystemName":"U:I1I1","location":{"x":-17700000000000000000,"y":-540000000000000000,"z":-7350000000000000000}},"30008789":{"solarSystemId":30008789,"solarSystemName":"H:10VS","location":{"x":-17200000000000000000,"y":-1020000000000000000,"z":-7170000000000000000}},"30008790":{"solarSystemId":30008790,"solarSystemName":"J:176K","location":{"x":-18200000000000000000,"y":-1100000000000000000,"z":-7990000000000000000}},"30008791":{"solarSystemId":30008791,"solarSystemName":"G:1SOT","location":{"x":-17600000000000000000,"y":-1010000000000000000,"z":-6830000000000000000}},"30008792":{"solarSystemId":30008792,"solarSystemName":"D:26O0","location":{"x":-17900000000000000000,"y":-442000000000000000,"z":-7420000000000000000}},"30008793":{"solarSystemId":30008793,"solarSystemName":"G:3V17","location":{"x":-17800000000000000000,"y":-375000000000000000,"z":-7500000000000000000}},"30008794":{"solarSystemId":30008794,"solarSystemName":"B:3005","location":{"x":-17900000000000000000,"y":-919000000000000000,"z":-7110000000000000000}},"30008795":{"solarSystemId":30008795,"solarSystemName":"G:L31L","location":{"x":-17900000000000000000,"y":-811000000000000000,"z":-7380000000000000000}},"30008796":{"solarSystemId":30008796,"solarSystemName":"M:ROTS","location":{"x":-17400000000000000000,"y":-575000000000000000,"z":-6740000000000000000}},"30008797":{"solarSystemId":30008797,"solarSystemName":"D:1S93","location":{"x":-18200000000000000000,"y":-541000000000000000,"z":-7010000000000000000}},"30008798":{"solarSystemId":30008798,"solarSystemName":"D:8E29","location":{"x":-18300000000000000000,"y":-711000000000000000,"z":-6840000000000000000}},"30008799":{"solarSystemId":30008799,"solarSystemName":"Z:35RO","location":{"x":-17100000000000000000,"y":-392000000000000000,"z":-7560000000000000000}},"30008800":{"solarSystemId":30008800,"solarSystemName":"B:139S","location":{"x":-17300000000000000000,"y":-371000000000000000,"z":-7320000000000000000}},"30008801":{"solarSystemId":30008801,"solarSystemName":"F:1256","location":{"x":-17500000000000000000,"y":-224000000000000000,"z":-7660000000000000000}},"30008802":{"solarSystemId":30008802,"solarSystemName":"Y:1K3L","location":{"x":-16700000000000000000,"y":-769000000000000000,"z":-7210000000000000000}},"30008803":{"solarSystemId":30008803,"solarSystemName":"D:N6IO","location":{"x":-16300000000000000000,"y":-833000000000000000,"z":-7740000000000000000}},"30008804":{"solarSystemId":30008804,"solarSystemName":"H:1182","location":{"x":-18100000000000000000,"y":-648000000000000000,"z":-8090000000000000000}},"30008805":{"solarSystemId":30008805,"solarSystemName":"M:21RS","location":{"x":-17000000000000000000,"y":-483000000000000000,"z":-7950000000000000000}},"30008806":{"solarSystemId":30008806,"solarSystemName":"J:N940","location":{"x":-18200000000000000000,"y":-782000000000000000,"z":-8250000000000000000}},"30008807":{"solarSystemId":30008807,"solarSystemName":"M:363A","location":{"x":-17100000000000000000,"y":-950000000000000000,"z":-8280000000000000000}},"30008808":{"solarSystemId":30008808,"solarSystemName":"F:NAVL","location":{"x":-17200000000000000000,"y":-554000000000000000,"z":-7970000000000000000}},"30008809":{"solarSystemId":30008809,"solarSystemName":"U:1061","location":{"x":-17500000000000000000,"y":-357000000000000000,"z":-7450000000000000000}},"30008810":{"solarSystemId":30008810,"solarSystemName":"U:1T5I","location":{"x":-18000000000000000000,"y":-90400000000000000,"z":-7680000000000000000}},"30008811":{"solarSystemId":30008811,"solarSystemName":"Y:3S3E","location":{"x":-16900000000000000000,"y":-891000000000000000,"z":-8160000000000000000}},"30008812":{"solarSystemId":30008812,"solarSystemName":"Q:1LN3","location":{"x":-16800000000000000000,"y":-925000000000000000,"z":-7260000000000000000}},"30008813":{"solarSystemId":30008813,"solarSystemName":"Y:37N9","location":{"x":-17100000000000000000,"y":-247000000000000000,"z":-7780000000000000000}},"30008814":{"solarSystemId":30008814,"solarSystemName":"F:2575","location":{"x":-17600000000000000000,"y":-261000000000000000,"z":-7900000000000000000}},"30008815":{"solarSystemId":30008815,"solarSystemName":"P:152R","location":{"x":-17500000000000000000,"y":-434000000000000000,"z":-7740000000000000000}},"30008816":{"solarSystemId":30008816,"solarSystemName":"F:2V69","location":{"x":-17500000000000000000,"y":-37200000000000000,"z":-7350000000000000000}},"30008817":{"solarSystemId":30008817,"solarSystemName":"Y:72TO","location":{"x":-17900000000000000000,"y":-489000000000000000,"z":-7710000000000000000}},"30008818":{"solarSystemId":30008818,"solarSystemName":"M:14RI","location":{"x":-18100000000000000000,"y":-316000000000000000,"z":-7610000000000000000}},"30008819":{"solarSystemId":30008819,"solarSystemName":"Y:1A9K","location":{"x":-18600000000000000000,"y":-655000000000000000,"z":-7010000000000000000}},"30008820":{"solarSystemId":30008820,"solarSystemName":"F:209N","location":{"x":-18900000000000000000,"y":-332000000000000000,"z":-7060000000000000000}},"30008821":{"solarSystemId":30008821,"solarSystemName":"U:1A5T","location":{"x":-18400000000000000000,"y":-354000000000000000,"z":-7050000000000000000}},"30008822":{"solarSystemId":30008822,"solarSystemName":"D:LKR5","location":{"x":-19300000000000000000,"y":-325000000000000000,"z":-7480000000000000000}},"30008823":{"solarSystemId":30008823,"solarSystemName":"D:AEVV","location":{"x":-18500000000000000000,"y":-540000000000000000,"z":-7000000000000000000}},"30008824":{"solarSystemId":30008824,"solarSystemName":"M:19L9","location":{"x":-18600000000000000000,"y":-785000000000000000,"z":-7340000000000000000}},"30008825":{"solarSystemId":30008825,"solarSystemName":"G:4EO6","location":{"x":-18600000000000000000,"y":-765000000000000000,"z":-7290000000000000000}},"30008826":{"solarSystemId":30008826,"solarSystemName":"B:1379","location":{"x":-19000000000000000000,"y":-630000000000000000,"z":-7600000000000000000}},"30008827":{"solarSystemId":30008827,"solarSystemName":"J:2V5N","location":{"x":-18500000000000000000,"y":-702000000000000000,"z":-6830000000000000000}},"30008828":{"solarSystemId":30008828,"solarSystemName":"Z:1L7S","location":{"x":-18400000000000000000,"y":69500000000000000,"z":-7260000000000000000}},"30008829":{"solarSystemId":30008829,"solarSystemName":"Y:17LR","location":{"x":-18700000000000000000,"y":-892000000000000000,"z":-6930000000000000000}},"30008830":{"solarSystemId":30008830,"solarSystemName":"H:A3L5","location":{"x":-19400000000000000000,"y":-487000000000000000,"z":-7320000000000000000}},"30008831":{"solarSystemId":30008831,"solarSystemName":"J:3IVN","location":{"x":-18700000000000000000,"y":-347000000000000000,"z":-7870000000000000000}},"30008832":{"solarSystemId":30008832,"solarSystemName":"Z:52N1","location":{"x":-19000000000000000000,"y":-187000000000000000,"z":-6940000000000000000}},"30008833":{"solarSystemId":30008833,"solarSystemName":"H:2SRI","location":{"x":-19200000000000000000,"y":-281000000000000000,"z":-7160000000000000000}},"30008834":{"solarSystemId":30008834,"solarSystemName":"M:143A","location":{"x":-19300000000000000000,"y":-199000000000000000,"z":-7190000000000000000}},"30008835":{"solarSystemId":30008835,"solarSystemName":"P:12S4","location":{"x":-18500000000000000000,"y":-1040000000000000000,"z":-7740000000000000000}},"30008836":{"solarSystemId":30008836,"solarSystemName":"H:17KO","location":{"x":-19500000000000000000,"y":-350000000000000000,"z":-7540000000000000000}},"30008837":{"solarSystemId":30008837,"solarSystemName":"H:110R","location":{"x":-18800000000000000000,"y":-374000000000000000,"z":-7510000000000000000}},"30008838":{"solarSystemId":30008838,"solarSystemName":"D:44S7","location":{"x":-18400000000000000000,"y":-716000000000000000,"z":-7890000000000000000}},"30008839":{"solarSystemId":30008839,"solarSystemName":"Q:1KA4","location":{"x":-17300000000000000000,"y":-664000000000000000,"z":-10200000000000000000}},"30008840":{"solarSystemId":30008840,"solarSystemName":"H:240K","location":{"x":-17500000000000000000,"y":-1000000000000000000,"z":-9900000000000000000}},"30008841":{"solarSystemId":30008841,"solarSystemName":"Z:1R77","location":{"x":-17100000000000000000,"y":-1050000000000000000,"z":-9580000000000000000}},"30008842":{"solarSystemId":30008842,"solarSystemName":"B:360E","location":{"x":-17800000000000000000,"y":-593000000000000000,"z":-8940000000000000000}},"30008843":{"solarSystemId":30008843,"solarSystemName":"D:1701","location":{"x":-17000000000000000000,"y":-1180000000000000000,"z":-9060000000000000000}},"30008844":{"solarSystemId":30008844,"solarSystemName":"Z:28K6","location":{"x":-18000000000000000000,"y":-664000000000000000,"z":-9240000000000000000}},"30008845":{"solarSystemId":30008845,"solarSystemName":"G:1L9K","location":{"x":-17500000000000000000,"y":-1620000000000000000,"z":-9970000000000000000}},"30008846":{"solarSystemId":30008846,"solarSystemName":"D:O1NR","location":{"x":-18400000000000000000,"y":-1710000000000000000,"z":-9970000000000000000}},"30008847":{"solarSystemId":30008847,"solarSystemName":"P:OI3K","location":{"x":-17900000000000000000,"y":-1010000000000000000,"z":-9960000000000000000}},"30008848":{"solarSystemId":30008848,"solarSystemName":"J:2R1O","location":{"x":-18100000000000000000,"y":-1160000000000000000,"z":-10200000000000000000}},"30008849":{"solarSystemId":30008849,"solarSystemName":"D:3TR5","location":{"x":-17500000000000000000,"y":-529000000000000000,"z":-9560000000000000000}},"30008850":{"solarSystemId":30008850,"solarSystemName":"Z:14S2","location":{"x":-18000000000000000000,"y":-666000000000000000,"z":-9130000000000000000}},"30008851":{"solarSystemId":30008851,"solarSystemName":"M:1V29","location":{"x":-17200000000000000000,"y":-1450000000000000000,"z":-10600000000000000000}},"30008852":{"solarSystemId":30008852,"solarSystemName":"Y:18R7","location":{"x":-17400000000000000000,"y":-871000000000000000,"z":-8850000000000000000}},"30008853":{"solarSystemId":30008853,"solarSystemName":"H:16S5","location":{"x":-17900000000000000000,"y":-1620000000000000000,"z":-9370000000000000000}},"30008854":{"solarSystemId":30008854,"solarSystemName":"F:2TAL","location":{"x":-17300000000000000000,"y":-336000000000000000,"z":-9540000000000000000}},"30008855":{"solarSystemId":30008855,"solarSystemName":"P:6VTR","location":{"x":-17900000000000000000,"y":-1540000000000000000,"z":-9540000000000000000}},"30008856":{"solarSystemId":30008856,"solarSystemName":"H:T0OI","location":{"x":-19100000000000000000,"y":-589000000000000000,"z":-9650000000000000000}},"30008857":{"solarSystemId":30008857,"solarSystemName":"D:20S4","location":{"x":-18900000000000000000,"y":-1120000000000000000,"z":-10200000000000000000}},"30008858":{"solarSystemId":30008858,"solarSystemName":"P:18N4","location":{"x":-19200000000000000000,"y":-1320000000000000000,"z":-10200000000000000000}},"30008859":{"solarSystemId":30008859,"solarSystemName":"H:10L4","location":{"x":-18600000000000000000,"y":-1110000000000000000,"z":-9100000000000000000}},"30008860":{"solarSystemId":30008860,"solarSystemName":"J:IAT4","location":{"x":-19000000000000000000,"y":-935000000000000000,"z":-9010000000000000000}},"30008861":{"solarSystemId":30008861,"solarSystemName":"M:486R","location":{"x":-19200000000000000000,"y":-910000000000000000,"z":-10600000000000000000}},"30008862":{"solarSystemId":30008862,"solarSystemName":"F:SS70","location":{"x":-19000000000000000000,"y":-891000000000000000,"z":-9720000000000000000}},"30008863":{"solarSystemId":30008863,"solarSystemName":"Z:3RVV","location":{"x":-19600000000000000000,"y":-1370000000000000000,"z":-9500000000000000000}},"30008864":{"solarSystemId":30008864,"solarSystemName":"H:1VIA","location":{"x":-18600000000000000000,"y":-572000000000000000,"z":-9980000000000000000}},"30008865":{"solarSystemId":30008865,"solarSystemName":"U:3TVL","location":{"x":-19000000000000000000,"y":-778000000000000000,"z":-9710000000000000000}},"30008866":{"solarSystemId":30008866,"solarSystemName":"Z:2N3V","location":{"x":-19000000000000000000,"y":-387000000000000000,"z":-9810000000000000000}},"30008867":{"solarSystemId":30008867,"solarSystemName":"J:17AK","location":{"x":-18900000000000000000,"y":-680000000000000000,"z":-8850000000000000000}},"30008868":{"solarSystemId":30008868,"solarSystemName":"P:ILE8","location":{"x":-18200000000000000000,"y":-1120000000000000000,"z":-8790000000000000000}},"30008869":{"solarSystemId":30008869,"solarSystemName":"G:3IE6","location":{"x":-18700000000000000000,"y":-521000000000000000,"z":-10100000000000000000}},"30008870":{"solarSystemId":30008870,"solarSystemName":"Q:LIRO","location":{"x":-18800000000000000000,"y":-1180000000000000000,"z":-10300000000000000000}},"30008871":{"solarSystemId":30008871,"solarSystemName":"Y:176N","location":{"x":-18500000000000000000,"y":-740000000000000000,"z":-9990000000000000000}},"30008872":{"solarSystemId":30008872,"solarSystemName":"Z:2R68","location":{"x":-17800000000000000000,"y":838000000000000000,"z":-7860000000000000000}},"30008873":{"solarSystemId":30008873,"solarSystemName":"P:18N8","location":{"x":-19700000000000000000,"y":-175000000000000000,"z":-8090000000000000000}},"30008874":{"solarSystemId":30008874,"solarSystemName":"U:5AAS","location":{"x":-19100000000000000000,"y":973000000000000000,"z":-7940000000000000000}},"30008875":{"solarSystemId":30008875,"solarSystemName":"P:T0S0","location":{"x":-19200000000000000000,"y":-131000000000000000,"z":-7800000000000000000}},"30008876":{"solarSystemId":30008876,"solarSystemName":"U:1844","location":{"x":-18300000000000000000,"y":-147000000000000000,"z":-7910000000000000000}},"30008877":{"solarSystemId":30008877,"solarSystemName":"J:40L7","location":{"x":-19500000000000000000,"y":399000000000000000,"z":-7180000000000000000}},"30008878":{"solarSystemId":30008878,"solarSystemName":"D:222K","location":{"x":-18900000000000000000,"y":549000000000000000,"z":-7510000000000000000}},"30008879":{"solarSystemId":30008879,"solarSystemName":"F:1S70","location":{"x":-18600000000000000000,"y":-239000000000000000,"z":-7840000000000000000}},"30008880":{"solarSystemId":30008880,"solarSystemName":"B:20S9","location":{"x":-19300000000000000000,"y":315000000000000000,"z":-7430000000000000000}},"30008881":{"solarSystemId":30008881,"solarSystemName":"J:3821","location":{"x":-18700000000000000000,"y":424000000000000000,"z":-8270000000000000000}},"30008882":{"solarSystemId":30008882,"solarSystemName":"P:1A30","location":{"x":-19100000000000000000,"y":-243000000000000000,"z":-7720000000000000000}},"30008883":{"solarSystemId":30008883,"solarSystemName":"Z:23S4","location":{"x":-19000000000000000000,"y":145000000000000000,"z":-7450000000000000000}},"30008884":{"solarSystemId":30008884,"solarSystemName":"J:17A5","location":{"x":-19700000000000000000,"y":670000000000000000,"z":-7160000000000000000}},"30008885":{"solarSystemId":30008885,"solarSystemName":"Y:11RT","location":{"x":-19300000000000000000,"y":1650000000000000000,"z":-8100000000000000000}},"30008886":{"solarSystemId":30008886,"solarSystemName":"G:RT3T","location":{"x":-19800000000000000000,"y":246000000000000000,"z":-7370000000000000000}},"30008887":{"solarSystemId":30008887,"solarSystemName":"Y:1A3L","location":{"x":-19100000000000000000,"y":2160000000000000000,"z":-7970000000000000000}},"30008888":{"solarSystemId":30008888,"solarSystemName":"U:15O2","location":{"x":-17100000000000000000,"y":-685000000000000000,"z":-4490000000000000000}},"30008889":{"solarSystemId":30008889,"solarSystemName":"U:3LI9","location":{"x":-17300000000000000000,"y":-790000000000000000,"z":-4440000000000000000}},"30008890":{"solarSystemId":30008890,"solarSystemName":"Y:15ES","location":{"x":-16600000000000000000,"y":-1300000000000000000,"z":-4020000000000000000}},"30008891":{"solarSystemId":30008891,"solarSystemName":"Z:KR83","location":{"x":-16300000000000000000,"y":-595000000000000000,"z":-3730000000000000000}},"30008892":{"solarSystemId":30008892,"solarSystemName":"F:26AL","location":{"x":-17200000000000000000,"y":-702000000000000000,"z":-4320000000000000000}},"30008893":{"solarSystemId":30008893,"solarSystemName":"D:1T2T","location":{"x":-16100000000000000000,"y":-982000000000000000,"z":-3170000000000000000}},"30008894":{"solarSystemId":30008894,"solarSystemName":"D:19K0","location":{"x":-16200000000000000000,"y":-1000000000000000000,"z":-3440000000000000000}},"30008895":{"solarSystemId":30008895,"solarSystemName":"D:3K1S","location":{"x":-17100000000000000000,"y":-1460000000000000000,"z":-3280000000000000000}},"30008896":{"solarSystemId":30008896,"solarSystemName":"Y:TS5L","location":{"x":-16500000000000000000,"y":-840000000000000000,"z":-3680000000000000000}},"30008897":{"solarSystemId":30008897,"solarSystemName":"P:15V3","location":{"x":-17300000000000000000,"y":-1080000000000000000,"z":-4060000000000000000}},"30008898":{"solarSystemId":30008898,"solarSystemName":"G:17K0","location":{"x":-17200000000000000000,"y":-1250000000000000000,"z":-4280000000000000000}},"30008899":{"solarSystemId":30008899,"solarSystemName":"F:R046","location":{"x":-17300000000000000000,"y":-1360000000000000000,"z":-3220000000000000000}},"30008900":{"solarSystemId":30008900,"solarSystemName":"D:VK9I","location":{"x":-17300000000000000000,"y":-635000000000000000,"z":-4190000000000000000}},"30008901":{"solarSystemId":30008901,"solarSystemName":"F:2L07","location":{"x":-16200000000000000000,"y":-568000000000000000,"z":-3400000000000000000}},"30008902":{"solarSystemId":30008902,"solarSystemName":"F:2V9L","location":{"x":-17000000000000000000,"y":-800000000000000000,"z":-4670000000000000000}},"30008903":{"solarSystemId":30008903,"solarSystemName":"F:1030","location":{"x":-17000000000000000000,"y":-501000000000000000,"z":-3820000000000000000}},"30008904":{"solarSystemId":30008904,"solarSystemName":"F:1783","location":{"x":-17300000000000000000,"y":-886000000000000000,"z":-4020000000000000000}},"30008905":{"solarSystemId":30008905,"solarSystemName":"F:3T39","location":{"x":-16400000000000000000,"y":-1570000000000000000,"z":-3730000000000000000}},"30008906":{"solarSystemId":30008906,"solarSystemName":"U:327S","location":{"x":-16000000000000000000,"y":-225000000000000000,"z":-5750000000000000000}},"30008907":{"solarSystemId":30008907,"solarSystemName":"B:1K0V","location":{"x":-15400000000000000000,"y":7570000000000000,"z":-5410000000000000000}},"30008908":{"solarSystemId":30008908,"solarSystemName":"Z:4OSE","location":{"x":-16600000000000000000,"y":-56600000000000000,"z":-4980000000000000000}},"30008909":{"solarSystemId":30008909,"solarSystemName":"Q:1AVI","location":{"x":-15400000000000000000,"y":-78200000000000000,"z":-4910000000000000000}},"30008910":{"solarSystemId":30008910,"solarSystemName":"D:V7E0","location":{"x":-16600000000000000000,"y":-530000000000000000,"z":-4820000000000000000}},"30008911":{"solarSystemId":30008911,"solarSystemName":"Z:14KA","location":{"x":-15800000000000000000,"y":-224000000000000000,"z":-5090000000000000000}},"30008912":{"solarSystemId":30008912,"solarSystemName":"F:18K5","location":{"x":-15700000000000000000,"y":-167000000000000000,"z":-4470000000000000000}},"30008913":{"solarSystemId":30008913,"solarSystemName":"J:3241","location":{"x":-16400000000000000000,"y":-261000000000000000,"z":-4840000000000000000}},"30008914":{"solarSystemId":30008914,"solarSystemName":"Q:2159","location":{"x":-16900000000000000000,"y":420000000000000000,"z":-5610000000000000000}},"30008915":{"solarSystemId":30008915,"solarSystemName":"F:O8E1","location":{"x":-16700000000000000000,"y":-197000000000000000,"z":-5620000000000000000}},"30008916":{"solarSystemId":30008916,"solarSystemName":"F:30N9","location":{"x":-16900000000000000000,"y":-32500000000000000,"z":-5530000000000000000}},"30008917":{"solarSystemId":30008917,"solarSystemName":"B:26L9","location":{"x":-16200000000000000000,"y":390000000000000000,"z":-5220000000000000000}},"30008918":{"solarSystemId":30008918,"solarSystemName":"D:1VI5","location":{"x":-15800000000000000000,"y":-24400000000000000,"z":-4910000000000000000}},"30008919":{"solarSystemId":30008919,"solarSystemName":"Z:3T0O","location":{"x":-15800000000000000000,"y":-11900000000000000,"z":-5490000000000000000}},"30008920":{"solarSystemId":30008920,"solarSystemName":"F:NE57","location":{"x":-16000000000000000000,"y":1070000000000000000,"z":-4560000000000000000}},"30008921":{"solarSystemId":30008921,"solarSystemName":"M:T667","location":{"x":-16100000000000000000,"y":-272000000000000000,"z":-5100000000000000000}},"30008922":{"solarSystemId":30008922,"solarSystemName":"Z:1AA2","location":{"x":-15700000000000000000,"y":196000000000000000,"z":-5550000000000000000}},"30008923":{"solarSystemId":30008923,"solarSystemName":"H:R96K","location":{"x":-15600000000000000000,"y":-183000000000000000,"z":-5530000000000000000}},"30008924":{"solarSystemId":30008924,"solarSystemName":"D:2S94","location":{"x":-15700000000000000000,"y":562000000000000000,"z":-3930000000000000000}},"30008925":{"solarSystemId":30008925,"solarSystemName":"Q:E20I","location":{"x":-16900000000000000000,"y":4420000000000000000,"z":-2530000000000000000}},"30008926":{"solarSystemId":30008926,"solarSystemName":"Z:T3EL","location":{"x":-16100000000000000000,"y":2040000000000000000,"z":-2800000000000000000}},"30008927":{"solarSystemId":30008927,"solarSystemName":"M:156O","location":{"x":-15200000000000000000,"y":148000000000000000,"z":-2420000000000000000}},"30008928":{"solarSystemId":30008928,"solarSystemName":"P:I082","location":{"x":-15000000000000000000,"y":-57500000000000000,"z":-3490000000000000000}},"30008929":{"solarSystemId":30008929,"solarSystemName":"G:KTK3","location":{"x":-15200000000000000000,"y":-221000000000000000,"z":-2090000000000000000}},"30008930":{"solarSystemId":30008930,"solarSystemName":"H:6T3V","location":{"x":-14800000000000000000,"y":233000000000000000,"z":-2100000000000000000}},"30008931":{"solarSystemId":30008931,"solarSystemName":"H:KK0I","location":{"x":-15200000000000000000,"y":332000000000000000,"z":-3090000000000000000}},"30008932":{"solarSystemId":30008932,"solarSystemName":"U:K7VK","location":{"x":-15300000000000000000,"y":-128000000000000000,"z":-3730000000000000000}},"30008933":{"solarSystemId":30008933,"solarSystemName":"U:209V","location":{"x":-16300000000000000000,"y":2340000000000000000,"z":-2050000000000000000}},"30008934":{"solarSystemId":30008934,"solarSystemName":"Y:1T93","location":{"x":-14600000000000000000,"y":1630000000000000000,"z":-2060000000000000000}},"30008935":{"solarSystemId":30008935,"solarSystemName":"J:1STL","location":{"x":-15100000000000000000,"y":-296000000000000000,"z":-3110000000000000000}},"30008936":{"solarSystemId":30008936,"solarSystemName":"U:38IK","location":{"x":-15300000000000000000,"y":1060000000000000000,"z":-1090000000000000000}},"30008937":{"solarSystemId":30008937,"solarSystemName":"G:1V0L","location":{"x":-16400000000000000000,"y":3780000000000000000,"z":-2870000000000000000}},"30008938":{"solarSystemId":30008938,"solarSystemName":"Q:1041","location":{"x":-15500000000000000000,"y":2400000000000000000,"z":-2500000000000000000}},"30008939":{"solarSystemId":30008939,"solarSystemName":"Y:1579","location":{"x":-15400000000000000000,"y":983000000000000000,"z":-2120000000000000000}},"30008940":{"solarSystemId":30008940,"solarSystemName":"H:2E2S","location":{"x":-17200000000000000000,"y":-501000000000000000,"z":-3060000000000000000}},"30008941":{"solarSystemId":30008941,"solarSystemName":"G:3RR5","location":{"x":-16600000000000000000,"y":-576000000000000000,"z":-2460000000000000000}},"30008942":{"solarSystemId":30008942,"solarSystemName":"U:1531","location":{"x":-16100000000000000000,"y":-1180000000000000000,"z":-2410000000000000000}},"30008943":{"solarSystemId":30008943,"solarSystemName":"F:4VEI","location":{"x":-17200000000000000000,"y":-588000000000000000,"z":-3250000000000000000}},"30008944":{"solarSystemId":30008944,"solarSystemName":"B:11L6","location":{"x":-16400000000000000000,"y":-911000000000000000,"z":-2140000000000000000}},"30008945":{"solarSystemId":30008945,"solarSystemName":"U:L804","location":{"x":-16800000000000000000,"y":-817000000000000000,"z":-2730000000000000000}},"30008946":{"solarSystemId":30008946,"solarSystemName":"B:L050","location":{"x":-17200000000000000000,"y":-525000000000000000,"z":-2560000000000000000}},"30008947":{"solarSystemId":30008947,"solarSystemName":"G:SI62","location":{"x":-17300000000000000000,"y":-633000000000000000,"z":-2230000000000000000}},"30008948":{"solarSystemId":30008948,"solarSystemName":"Q:VOVS","location":{"x":-17000000000000000000,"y":-779000000000000000,"z":-3150000000000000000}},"30008949":{"solarSystemId":30008949,"solarSystemName":"Q:2LE3","location":{"x":-16600000000000000000,"y":-431000000000000000,"z":-2710000000000000000}},"30008950":{"solarSystemId":30008950,"solarSystemName":"M:8K53","location":{"x":-16700000000000000000,"y":-1000000000000000000,"z":-3200000000000000000}},"30008951":{"solarSystemId":30008951,"solarSystemName":"U:1O01","location":{"x":-16400000000000000000,"y":-1120000000000000000,"z":-3170000000000000000}},"30008952":{"solarSystemId":30008952,"solarSystemName":"Q:16KR","location":{"x":-16800000000000000000,"y":-652000000000000000,"z":-3510000000000000000}},"30008953":{"solarSystemId":30008953,"solarSystemName":"D:145I","location":{"x":-16100000000000000000,"y":-1490000000000000000,"z":-2600000000000000000}},"30008954":{"solarSystemId":30008954,"solarSystemName":"G:1I69","location":{"x":-17100000000000000000,"y":-1440000000000000000,"z":-3020000000000000000}},"30008955":{"solarSystemId":30008955,"solarSystemName":"Z:K213","location":{"x":-16700000000000000000,"y":-1570000000000000000,"z":-3000000000000000000}},"30008956":{"solarSystemId":30008956,"solarSystemName":"F:1AK2","location":{"x":-16900000000000000000,"y":-539000000000000000,"z":-3220000000000000000}},"30008957":{"solarSystemId":30008957,"solarSystemName":"D:K8I9","location":{"x":-16500000000000000000,"y":-749000000000000000,"z":-2430000000000000000}},"30008958":{"solarSystemId":30008958,"solarSystemName":"M:TRIK","location":{"x":-17200000000000000000,"y":-903000000000000000,"z":-2020000000000000000}},"30008959":{"solarSystemId":30008959,"solarSystemName":"G:84IT","location":{"x":-16500000000000000000,"y":-1130000000000000000,"z":-2980000000000000000}},"30008960":{"solarSystemId":30008960,"solarSystemName":"P:2V73","location":{"x":-15200000000000000000,"y":2270000000000000000,"z":-6050000000000000000}},"30008961":{"solarSystemId":30008961,"solarSystemName":"Z:3TV5","location":{"x":-15400000000000000000,"y":1630000000000000000,"z":-5420000000000000000}},"30008962":{"solarSystemId":30008962,"solarSystemName":"D:39AL","location":{"x":-13100000000000000000,"y":1510000000000000000,"z":-8440000000000000000}},"30008963":{"solarSystemId":30008963,"solarSystemName":"J:1V47","location":{"x":-14200000000000000000,"y":1610000000000000000,"z":-8250000000000000000}},"30008964":{"solarSystemId":30008964,"solarSystemName":"Y:3A62","location":{"x":-14800000000000000000,"y":1920000000000000000,"z":-7380000000000000000}},"30008965":{"solarSystemId":30008965,"solarSystemName":"B:248N","location":{"x":-13300000000000000000,"y":717000000000000000,"z":-7670000000000000000}},"30008966":{"solarSystemId":30008966,"solarSystemName":"B:5090","location":{"x":-14300000000000000000,"y":419000000000000000,"z":-7280000000000000000}},"30008967":{"solarSystemId":30008967,"solarSystemName":"Y:20K3","location":{"x":-13600000000000000000,"y":1560000000000000000,"z":-6330000000000000000}},"30008968":{"solarSystemId":30008968,"solarSystemName":"J:3E2O","location":{"x":-13300000000000000000,"y":1040000000000000000,"z":-8110000000000000000}},"30008969":{"solarSystemId":30008969,"solarSystemName":"H:3OTI","location":{"x":-13400000000000000000,"y":1370000000000000000,"z":-8340000000000000000}},"30008970":{"solarSystemId":30008970,"solarSystemName":"U:4KN7","location":{"x":-14500000000000000000,"y":1610000000000000000,"z":-8260000000000000000}},"30008971":{"solarSystemId":30008971,"solarSystemName":"P:1N6L","location":{"x":-15500000000000000000,"y":2080000000000000000,"z":-8320000000000000000}},"30008972":{"solarSystemId":30008972,"solarSystemName":"Y:O8SI","location":{"x":-14500000000000000000,"y":325000000000000000,"z":-7050000000000000000}},"30008973":{"solarSystemId":30008973,"solarSystemName":"Y:1EO5","location":{"x":-15000000000000000000,"y":533000000000000000,"z":-7720000000000000000}},"30008974":{"solarSystemId":30008974,"solarSystemName":"U:2I28","location":{"x":-14100000000000000000,"y":376000000000000000,"z":-7800000000000000000}},"30008975":{"solarSystemId":30008975,"solarSystemName":"P:3AK3","location":{"x":-15500000000000000000,"y":388000000000000000,"z":-7440000000000000000}},"30008976":{"solarSystemId":30008976,"solarSystemName":"Y:10LA","location":{"x":-17700000000000000000,"y":-951000000000000000,"z":-4250000000000000000}},"30008977":{"solarSystemId":30008977,"solarSystemName":"D:12KA","location":{"x":-17900000000000000000,"y":-1010000000000000000,"z":-5020000000000000000}},"30008978":{"solarSystemId":30008978,"solarSystemName":"F:1661","location":{"x":-18200000000000000000,"y":-806000000000000000,"z":-5180000000000000000}},"30008979":{"solarSystemId":30008979,"solarSystemName":"M:28EV","location":{"x":-18400000000000000000,"y":-768000000000000000,"z":-4710000000000000000}},"30008980":{"solarSystemId":30008980,"solarSystemName":"P:7TO2","location":{"x":-17600000000000000000,"y":-950000000000000000,"z":-5130000000000000000}},"30008981":{"solarSystemId":30008981,"solarSystemName":"Y:13L7","location":{"x":-17800000000000000000,"y":-739000000000000000,"z":-4530000000000000000}},"30008982":{"solarSystemId":30008982,"solarSystemName":"J:4III","location":{"x":-18200000000000000000,"y":-843000000000000000,"z":-5220000000000000000}},"30008983":{"solarSystemId":30008983,"solarSystemName":"B:LN1A","location":{"x":-17800000000000000000,"y":-525000000000000000,"z":-4480000000000000000}},"30008984":{"solarSystemId":30008984,"solarSystemName":"G:2V3I","location":{"x":-17700000000000000000,"y":-1090000000000000000,"z":-4970000000000000000}},"30008985":{"solarSystemId":30008985,"solarSystemName":"P:109A","location":{"x":-17600000000000000000,"y":-1310000000000000000,"z":-4660000000000000000}},"30008986":{"solarSystemId":30008986,"solarSystemName":"J:2ETS","location":{"x":-18100000000000000000,"y":-512000000000000000,"z":-4680000000000000000}},"30008987":{"solarSystemId":30008987,"solarSystemName":"Y:1287","location":{"x":-18000000000000000000,"y":-1050000000000000000,"z":-4660000000000000000}},"30008988":{"solarSystemId":30008988,"solarSystemName":"B:1542","location":{"x":-18200000000000000000,"y":-804000000000000000,"z":-5200000000000000000}},"30008989":{"solarSystemId":30008989,"solarSystemName":"J:V0A5","location":{"x":-18500000000000000000,"y":-824000000000000000,"z":-4530000000000000000}},"30008990":{"solarSystemId":30008990,"solarSystemName":"G:2A3K","location":{"x":-18300000000000000000,"y":-870000000000000000,"z":-4850000000000000000}},"30008991":{"solarSystemId":30008991,"solarSystemName":"J:S3RL","location":{"x":-17700000000000000000,"y":-667000000000000000,"z":-4720000000000000000}},"30008992":{"solarSystemId":30008992,"solarSystemName":"P:4E76","location":{"x":-17800000000000000000,"y":-514000000000000000,"z":-4280000000000000000}},"30008993":{"solarSystemId":30008993,"solarSystemName":"D:1000","location":{"x":-18100000000000000000,"y":-1030000000000000000,"z":-4580000000000000000}},"30008994":{"solarSystemId":30008994,"solarSystemName":"J:24IO","location":{"x":-17900000000000000000,"y":-836000000000000000,"z":-5090000000000000000}},"30008995":{"solarSystemId":30008995,"solarSystemName":"B:3RIN","location":{"x":-15300000000000000000,"y":-270000000000000000,"z":-3990000000000000000}},"30008996":{"solarSystemId":30008996,"solarSystemName":"J:2EKT","location":{"x":-15300000000000000000,"y":-284000000000000000,"z":-3920000000000000000}},"30008997":{"solarSystemId":30008997,"solarSystemName":"G:2I97","location":{"x":-16400000000000000000,"y":-862000000000000000,"z":-3870000000000000000}},"30008998":{"solarSystemId":30008998,"solarSystemName":"B:521K","location":{"x":-15400000000000000000,"y":-853000000000000000,"z":-3570000000000000000}},"30008999":{"solarSystemId":30008999,"solarSystemName":"F:12I0","location":{"x":-16400000000000000000,"y":-1190000000000000000,"z":-4270000000000000000}},"30009000":{"solarSystemId":30009000,"solarSystemName":"J:17LA","location":{"x":-16300000000000000000,"y":-419000000000000000,"z":-4230000000000000000}},"30009001":{"solarSystemId":30009001,"solarSystemName":"D:17VE","location":{"x":-16400000000000000000,"y":-1110000000000000000,"z":-4390000000000000000}},"30009002":{"solarSystemId":30009002,"solarSystemName":"G:9221","location":{"x":-15200000000000000000,"y":-224000000000000000,"z":-4270000000000000000}},"30009003":{"solarSystemId":30009003,"solarSystemName":"Y:17N0","location":{"x":-15000000000000000000,"y":-1100000000000000000,"z":-4130000000000000000}},"30009004":{"solarSystemId":30009004,"solarSystemName":"P:SNV0","location":{"x":-15700000000000000000,"y":-1030000000000000000,"z":-4220000000000000000}},"30009005":{"solarSystemId":30009005,"solarSystemName":"Q:SS78","location":{"x":-15100000000000000000,"y":-241000000000000000,"z":-4150000000000000000}},"30009006":{"solarSystemId":30009006,"solarSystemName":"U:1I6I","location":{"x":-15700000000000000000,"y":-1220000000000000000,"z":-3940000000000000000}},"30009007":{"solarSystemId":30009007,"solarSystemName":"D:1TLT","location":{"x":-15500000000000000000,"y":-374000000000000000,"z":-3900000000000000000}},"30009008":{"solarSystemId":30009008,"solarSystemName":"M:2109","location":{"x":-16100000000000000000,"y":-362000000000000000,"z":-4200000000000000000}},"30009009":{"solarSystemId":30009009,"solarSystemName":"M:102A","location":{"x":-15700000000000000000,"y":-1660000000000000000,"z":-3990000000000000000}},"30009010":{"solarSystemId":30009010,"solarSystemName":"Z:1EE0","location":{"x":-15100000000000000000,"y":-710000000000000000,"z":-3680000000000000000}},"30009011":{"solarSystemId":30009011,"solarSystemName":"J:12TS","location":{"x":-15400000000000000000,"y":-1160000000000000000,"z":-4500000000000000000}},"30009012":{"solarSystemId":30009012,"solarSystemName":"B:1R31","location":{"x":-15800000000000000000,"y":-1610000000000000000,"z":-4070000000000000000}},"30009013":{"solarSystemId":30009013,"solarSystemName":"Y:S9T4","location":{"x":-15900000000000000000,"y":-701000000000000000,"z":-4080000000000000000}},"30009014":{"solarSystemId":30009014,"solarSystemName":"M:33A3","location":{"x":-16100000000000000000,"y":-1320000000000000000,"z":-4160000000000000000}},"30009015":{"solarSystemId":30009015,"solarSystemName":"P:KN50","location":{"x":-16000000000000000000,"y":-738000000000000000,"z":-3870000000000000000}},"30009016":{"solarSystemId":30009016,"solarSystemName":"Z:19E3","location":{"x":-15900000000000000000,"y":-641000000000000000,"z":-4560000000000000000}},"30009017":{"solarSystemId":30009017,"solarSystemName":"B:2RV9","location":{"x":-14300000000000000000,"y":-774000000000000000,"z":-3000000000000000000}},"30009018":{"solarSystemId":30009018,"solarSystemName":"G:2I0L","location":{"x":-14600000000000000000,"y":-479000000000000000,"z":-2930000000000000000}},"30009019":{"solarSystemId":30009019,"solarSystemName":"B:K7S9","location":{"x":-14300000000000000000,"y":-113000000000000000,"z":-3430000000000000000}},"30009020":{"solarSystemId":30009020,"solarSystemName":"Z:2OA9","location":{"x":-14100000000000000000,"y":-1200000000000000000,"z":-2880000000000000000}},"30009021":{"solarSystemId":30009021,"solarSystemName":"P:1302","location":{"x":-14500000000000000000,"y":-904000000000000000,"z":-3350000000000000000}},"30009022":{"solarSystemId":30009022,"solarSystemName":"M:13EO","location":{"x":-15000000000000000000,"y":-1060000000000000000,"z":-2890000000000000000}},"30009023":{"solarSystemId":30009023,"solarSystemName":"Q:301S","location":{"x":-14000000000000000000,"y":-562000000000000000,"z":-3250000000000000000}},"30009024":{"solarSystemId":30009024,"solarSystemName":"P:T935","location":{"x":-14500000000000000000,"y":-1030000000000000000,"z":-3140000000000000000}},"30009025":{"solarSystemId":30009025,"solarSystemName":"M:NRVT","location":{"x":-14000000000000000000,"y":-71200000000000000,"z":-3230000000000000000}},"30009026":{"solarSystemId":30009026,"solarSystemName":"D:13I9","location":{"x":-14400000000000000000,"y":-1480000000000000000,"z":-2810000000000000000}},"30009027":{"solarSystemId":30009027,"solarSystemName":"M:T766","location":{"x":-14100000000000000000,"y":-251000000000000000,"z":-3450000000000000000}},"30009028":{"solarSystemId":30009028,"solarSystemName":"H:2499","location":{"x":-15100000000000000000,"y":-1120000000000000000,"z":-2800000000000000000}},"30009029":{"solarSystemId":30009029,"solarSystemName":"F:1NO5","location":{"x":-15000000000000000000,"y":-320000000000000000,"z":-2690000000000000000}},"30009030":{"solarSystemId":30009030,"solarSystemName":"Y:IS30","location":{"x":-15000000000000000000,"y":-264000000000000000,"z":-2440000000000000000}},"30009031":{"solarSystemId":30009031,"solarSystemName":"M:2ALV","location":{"x":-14100000000000000000,"y":-99100000000000000,"z":-3340000000000000000}},"30009032":{"solarSystemId":30009032,"solarSystemName":"M:2RR6","location":{"x":-14700000000000000000,"y":-461000000000000000,"z":-3720000000000000000}},"30009033":{"solarSystemId":30009033,"solarSystemName":"J:ST7A","location":{"x":-14300000000000000000,"y":-1690000000000000000,"z":-3270000000000000000}},"30009034":{"solarSystemId":30009034,"solarSystemName":"F:1151","location":{"x":-14400000000000000000,"y":-999000000000000000,"z":-3830000000000000000}},"30009035":{"solarSystemId":30009035,"solarSystemName":"H:2VNL","location":{"x":-14900000000000000000,"y":-590000000000000000,"z":-2730000000000000000}},"30009036":{"solarSystemId":30009036,"solarSystemName":"Z:3OO5","location":{"x":-14000000000000000000,"y":-1340000000000000000,"z":-2960000000000000000}},"30009037":{"solarSystemId":30009037,"solarSystemName":"G:16I1","location":{"x":-14900000000000000000,"y":-793000000000000000,"z":-3520000000000000000}},"30009038":{"solarSystemId":30009038,"solarSystemName":"U:3SLA","location":{"x":-15900000000000000000,"y":-723000000000000000,"z":-6700000000000000000}},"30009039":{"solarSystemId":30009039,"solarSystemName":"U:1OE1","location":{"x":-16100000000000000000,"y":-116000000000000000,"z":-6260000000000000000}},"30009040":{"solarSystemId":30009040,"solarSystemName":"F:SI1E","location":{"x":-15600000000000000000,"y":-1650000000000000000,"z":-5790000000000000000}},"30009041":{"solarSystemId":30009041,"solarSystemName":"P:1696","location":{"x":-15800000000000000000,"y":-187000000000000000,"z":-6000000000000000000}},"30009042":{"solarSystemId":30009042,"solarSystemName":"J:V472","location":{"x":-16600000000000000000,"y":-333000000000000000,"z":-5930000000000000000}},"30009043":{"solarSystemId":30009043,"solarSystemName":"F:2SES","location":{"x":-16400000000000000000,"y":-715000000000000000,"z":-6840000000000000000}},"30009044":{"solarSystemId":30009044,"solarSystemName":"B:3LA0","location":{"x":-16900000000000000000,"y":-931000000000000000,"z":-5900000000000000000}},"30009045":{"solarSystemId":30009045,"solarSystemName":"U:23V7","location":{"x":-15000000000000000000,"y":-797000000000000000,"z":-5390000000000000000}},"30009046":{"solarSystemId":30009046,"solarSystemName":"P:1KLE","location":{"x":-15700000000000000000,"y":-569000000000000000,"z":-5590000000000000000}},"30009047":{"solarSystemId":30009047,"solarSystemName":"D:O8KI","location":{"x":-15600000000000000000,"y":-572000000000000000,"z":-5330000000000000000}},"30009048":{"solarSystemId":30009048,"solarSystemName":"U:191S","location":{"x":-16400000000000000000,"y":-1210000000000000000,"z":-6940000000000000000}},"30009049":{"solarSystemId":30009049,"solarSystemName":"Y:13IO","location":{"x":-16500000000000000000,"y":-1150000000000000000,"z":-5680000000000000000}},"30009050":{"solarSystemId":30009050,"solarSystemName":"Q:2911","location":{"x":-16900000000000000000,"y":-1020000000000000000,"z":-6680000000000000000}},"30009051":{"solarSystemId":30009051,"solarSystemName":"Q:18RS","location":{"x":-16000000000000000000,"y":-107000000000000000,"z":-6200000000000000000}},"30009052":{"solarSystemId":30009052,"solarSystemName":"F:AL24","location":{"x":-16200000000000000000,"y":-1120000000000000000,"z":-5880000000000000000}},"30009053":{"solarSystemId":30009053,"solarSystemName":"D:1VKK","location":{"x":-15700000000000000000,"y":-194000000000000000,"z":-6940000000000000000}},"30009054":{"solarSystemId":30009054,"solarSystemName":"D:1084","location":{"x":-15800000000000000000,"y":-933000000000000000,"z":-5950000000000000000}},"30009055":{"solarSystemId":30009055,"solarSystemName":"B:N1IR","location":{"x":-16500000000000000000,"y":-626000000000000000,"z":-5950000000000000000}},"30009056":{"solarSystemId":30009056,"solarSystemName":"D:4TO8","location":{"x":-15100000000000000000,"y":-944000000000000000,"z":-5250000000000000000}},"30009057":{"solarSystemId":30009057,"solarSystemName":"U:1580","location":{"x":-15100000000000000000,"y":-496000000000000000,"z":-5570000000000000000}},"30009058":{"solarSystemId":30009058,"solarSystemName":"B:11N3","location":{"x":-16000000000000000000,"y":-1090000000000000000,"z":-6250000000000000000}},"30009059":{"solarSystemId":30009059,"solarSystemName":"P:2480","location":{"x":-15400000000000000000,"y":-957000000000000000,"z":-6110000000000000000}},"30009060":{"solarSystemId":30009060,"solarSystemName":"Y:I439","location":{"x":-15900000000000000000,"y":-131000000000000000,"z":-6360000000000000000}},"30009061":{"solarSystemId":30009061,"solarSystemName":"Q:1LI9","location":{"x":-15600000000000000000,"y":115000000000000000,"z":-6360000000000000000}},"30009062":{"solarSystemId":30009062,"solarSystemName":"H:1S7R","location":{"x":-15400000000000000000,"y":-410000000000000000,"z":-5750000000000000000}},"30009063":{"solarSystemId":30009063,"solarSystemName":"Y:1S62","location":{"x":-16000000000000000000,"y":-912000000000000000,"z":-6360000000000000000}},"30009064":{"solarSystemId":30009064,"solarSystemName":"F:133S","location":{"x":-16500000000000000000,"y":-871000000000000000,"z":-6880000000000000000}},"30009065":{"solarSystemId":30009065,"solarSystemName":"G:LR78","location":{"x":-15700000000000000000,"y":-68900000000000000,"z":-6680000000000000000}},"30009066":{"solarSystemId":30009066,"solarSystemName":"J:3ELR","location":{"x":-16100000000000000000,"y":-1620000000000000000,"z":-5940000000000000000}},"30009067":{"solarSystemId":30009067,"solarSystemName":"F:SKSR","location":{"x":-17900000000000000000,"y":-1390000000000000000,"z":-1530000000000000000}},"30009068":{"solarSystemId":30009068,"solarSystemName":"P:1019","location":{"x":-17800000000000000000,"y":-1960000000000000000,"z":-1770000000000000000}},"30009069":{"solarSystemId":30009069,"solarSystemName":"P:K6E0","location":{"x":-18300000000000000000,"y":-709000000000000000,"z":-1670000000000000000}},"30009070":{"solarSystemId":30009070,"solarSystemName":"P:166T","location":{"x":-17700000000000000000,"y":-809000000000000000,"z":-2090000000000000000}},"30009071":{"solarSystemId":30009071,"solarSystemName":"G:R42E","location":{"x":-18000000000000000000,"y":-1810000000000000000,"z":-2460000000000000000}},"30009072":{"solarSystemId":30009072,"solarSystemName":"G:4901","location":{"x":-17500000000000000000,"y":-1030000000000000000,"z":-1960000000000000000}},"30009073":{"solarSystemId":30009073,"solarSystemName":"Q:45V0","location":{"x":-18000000000000000000,"y":-1800000000000000000,"z":-1810000000000000000}},"30009074":{"solarSystemId":30009074,"solarSystemName":"Z:122L","location":{"x":-18000000000000000000,"y":-1200000000000000000,"z":-1370000000000000000}},"30009075":{"solarSystemId":30009075,"solarSystemName":"Y:474K","location":{"x":-17400000000000000000,"y":-1040000000000000000,"z":-1600000000000000000}},"30009076":{"solarSystemId":30009076,"solarSystemName":"U:1457","location":{"x":-18300000000000000000,"y":-1020000000000000000,"z":-1510000000000000000}},"30009077":{"solarSystemId":30009077,"solarSystemName":"Y:1999","location":{"x":-17200000000000000000,"y":-1270000000000000000,"z":-1620000000000000000}},"30009078":{"solarSystemId":30009078,"solarSystemName":"P:12RL","location":{"x":-17800000000000000000,"y":-1300000000000000000,"z":-2000000000000000000}},"30009079":{"solarSystemId":30009079,"solarSystemName":"U:L44V","location":{"x":-18000000000000000000,"y":-891000000000000000,"z":-2040000000000000000}},"30009080":{"solarSystemId":30009080,"solarSystemName":"B:1I86","location":{"x":-18200000000000000000,"y":-1390000000000000000,"z":-1660000000000000000}},"30009081":{"solarSystemId":30009081,"solarSystemName":"Z:2000","location":{"x":-17500000000000000000,"y":-655000000000000000,"z":-2170000000000000000}},"30009082":{"solarSystemId":30009082,"solarSystemName":"Z:4I25","location":{"x":-18300000000000000000,"y":-1780000000000000000,"z":-1670000000000000000}},"30009083":{"solarSystemId":30009083,"solarSystemName":"F:2S3S","location":{"x":-18100000000000000000,"y":-1770000000000000000,"z":-1900000000000000000}},"30009084":{"solarSystemId":30009084,"solarSystemName":"Y:2EK0","location":{"x":-19300000000000000000,"y":-425000000000000000,"z":-3240000000000000000}},"30009085":{"solarSystemId":30009085,"solarSystemName":"Y:3109","location":{"x":-19200000000000000000,"y":-557000000000000000,"z":-3460000000000000000}},"30009086":{"solarSystemId":30009086,"solarSystemName":"P:1IE5","location":{"x":-19200000000000000000,"y":-538000000000000000,"z":-3280000000000000000}},"30009087":{"solarSystemId":30009087,"solarSystemName":"P:N4R4","location":{"x":-19100000000000000000,"y":-863000000000000000,"z":-3540000000000000000}},"30009088":{"solarSystemId":30009088,"solarSystemName":"Q:22K1","location":{"x":-19000000000000000000,"y":-743000000000000000,"z":-3530000000000000000}},"30009089":{"solarSystemId":30009089,"solarSystemName":"Z:II04","location":{"x":-18600000000000000000,"y":-928000000000000000,"z":-3210000000000000000}},"30009090":{"solarSystemId":30009090,"solarSystemName":"F:1RT4","location":{"x":-18800000000000000000,"y":-621000000000000000,"z":-3380000000000000000}},"30009091":{"solarSystemId":30009091,"solarSystemName":"P:E4V8","location":{"x":-18400000000000000000,"y":-711000000000000000,"z":-3090000000000000000}},"30009092":{"solarSystemId":30009092,"solarSystemName":"Z:LI92","location":{"x":-18400000000000000000,"y":-427000000000000000,"z":-3370000000000000000}},"30009093":{"solarSystemId":30009093,"solarSystemName":"F:410A","location":{"x":-19000000000000000000,"y":-429000000000000000,"z":-2990000000000000000}},"30009094":{"solarSystemId":30009094,"solarSystemName":"Q:2I4S","location":{"x":-18400000000000000000,"y":-779000000000000000,"z":-3510000000000000000}},"30009095":{"solarSystemId":30009095,"solarSystemName":"Q:1A46","location":{"x":-18600000000000000000,"y":-337000000000000000,"z":-3290000000000000000}},"30009096":{"solarSystemId":30009096,"solarSystemName":"M:18SE","location":{"x":-19000000000000000000,"y":-958000000000000000,"z":-3730000000000000000}},"30009097":{"solarSystemId":30009097,"solarSystemName":"J:1135","location":{"x":-18800000000000000000,"y":-686000000000000000,"z":-3230000000000000000}},"30009098":{"solarSystemId":30009098,"solarSystemName":"B:4RL3","location":{"x":-18700000000000000000,"y":-828000000000000000,"z":-3150000000000000000}},"30009099":{"solarSystemId":30009099,"solarSystemName":"Z:15K7","location":{"x":-19000000000000000000,"y":-797000000000000000,"z":-3800000000000000000}},"30009100":{"solarSystemId":30009100,"solarSystemName":"G:3AVO","location":{"x":-18800000000000000000,"y":-163000000000000000,"z":-3600000000000000000}},"30009101":{"solarSystemId":30009101,"solarSystemName":"G:2A90","location":{"x":-19300000000000000000,"y":-1240000000000000000,"z":-1870000000000000000}},"30009102":{"solarSystemId":30009102,"solarSystemName":"H:224O","location":{"x":-18400000000000000000,"y":-1770000000000000000,"z":-2400000000000000000}},"30009103":{"solarSystemId":30009103,"solarSystemName":"Z:2EEN","location":{"x":-18900000000000000000,"y":-977000000000000000,"z":-2280000000000000000}},"30009104":{"solarSystemId":30009104,"solarSystemName":"Z:14RL","location":{"x":-19200000000000000000,"y":-991000000000000000,"z":-2190000000000000000}},"30009105":{"solarSystemId":30009105,"solarSystemName":"Y:264I","location":{"x":-18500000000000000000,"y":-1060000000000000000,"z":-2660000000000000000}},"30009106":{"solarSystemId":30009106,"solarSystemName":"D:RO9S","location":{"x":-18900000000000000000,"y":-1420000000000000000,"z":-2380000000000000000}},"30009107":{"solarSystemId":30009107,"solarSystemName":"P:135S","location":{"x":-18800000000000000000,"y":-1580000000000000000,"z":-2730000000000000000}},"30009108":{"solarSystemId":30009108,"solarSystemName":"B:1O49","location":{"x":-19300000000000000000,"y":-1230000000000000000,"z":-1820000000000000000}},"30009109":{"solarSystemId":30009109,"solarSystemName":"Y:272S","location":{"x":-18800000000000000000,"y":-1600000000000000000,"z":-2840000000000000000}},"30009110":{"solarSystemId":30009110,"solarSystemName":"F:NS84","location":{"x":-18600000000000000000,"y":-1260000000000000000,"z":-2300000000000000000}},"30009111":{"solarSystemId":30009111,"solarSystemName":"H:S1EK","location":{"x":-18800000000000000000,"y":-1530000000000000000,"z":-2250000000000000000}},"30009112":{"solarSystemId":30009112,"solarSystemName":"G:107V","location":{"x":-18800000000000000000,"y":-992000000000000000,"z":-2280000000000000000}},"30009113":{"solarSystemId":30009113,"solarSystemName":"M:113R","location":{"x":-19000000000000000000,"y":-1350000000000000000,"z":-1680000000000000000}},"30009114":{"solarSystemId":30009114,"solarSystemName":"H:167L","location":{"x":-18700000000000000000,"y":-1720000000000000000,"z":-2630000000000000000}},"30009115":{"solarSystemId":30009115,"solarSystemName":"U:15SI","location":{"x":-18600000000000000000,"y":-1700000000000000000,"z":-1700000000000000000}},"30009116":{"solarSystemId":30009116,"solarSystemName":"Z:1O3E","location":{"x":-18700000000000000000,"y":-1630000000000000000,"z":-2150000000000000000}},"30009117":{"solarSystemId":30009117,"solarSystemName":"G:38SS","location":{"x":-18000000000000000000,"y":-932000000000000000,"z":-2320000000000000000}},"30009118":{"solarSystemId":30009118,"solarSystemName":"B:2703","location":{"x":-19000000000000000000,"y":-417000000000000000,"z":-2420000000000000000}},"30009119":{"solarSystemId":30009119,"solarSystemName":"U:243T","location":{"x":-18600000000000000000,"y":-526000000000000000,"z":-2780000000000000000}},"30009120":{"solarSystemId":30009120,"solarSystemName":"J:1AKN","location":{"x":-19200000000000000000,"y":-894000000000000000,"z":-2850000000000000000}},"30009121":{"solarSystemId":30009121,"solarSystemName":"Y:15N9","location":{"x":-19000000000000000000,"y":-846000000000000000,"z":-2290000000000000000}},"30009122":{"solarSystemId":30009122,"solarSystemName":"P:1493","location":{"x":-18300000000000000000,"y":-441000000000000000,"z":-2490000000000000000}},"30009123":{"solarSystemId":30009123,"solarSystemName":"H:3008","location":{"x":-18500000000000000000,"y":-160000000000000000,"z":-3030000000000000000}},"30009124":{"solarSystemId":30009124,"solarSystemName":"G:15LO","location":{"x":-18800000000000000000,"y":-620000000000000000,"z":-2740000000000000000}},"30009125":{"solarSystemId":30009125,"solarSystemName":"Y:1I5S","location":{"x":-18100000000000000000,"y":-740000000000000000,"z":-2920000000000000000}},"30009126":{"solarSystemId":30009126,"solarSystemName":"Y:3989","location":{"x":-18500000000000000000,"y":-442000000000000000,"z":-2900000000000000000}},"30009127":{"solarSystemId":30009127,"solarSystemName":"Z:18EA","location":{"x":-18300000000000000000,"y":-484000000000000000,"z":-2620000000000000000}},"30009128":{"solarSystemId":30009128,"solarSystemName":"H:1TRT","location":{"x":-18600000000000000000,"y":-672000000000000000,"z":-2850000000000000000}},"30009129":{"solarSystemId":30009129,"solarSystemName":"Z:20OV","location":{"x":-18500000000000000000,"y":-480000000000000000,"z":-2860000000000000000}},"30009130":{"solarSystemId":30009130,"solarSystemName":"J:1AV7","location":{"x":-18700000000000000000,"y":-288000000000000000,"z":-2800000000000000000}},"30009131":{"solarSystemId":30009131,"solarSystemName":"Z:LA1E","location":{"x":-18900000000000000000,"y":-431000000000000000,"z":-2850000000000000000}},"30009132":{"solarSystemId":30009132,"solarSystemName":"G:VL21","location":{"x":-19100000000000000000,"y":-714000000000000000,"z":-2740000000000000000}},"30009133":{"solarSystemId":30009133,"solarSystemName":"Y:2KS3","location":{"x":-18600000000000000000,"y":-611000000000000000,"z":-2520000000000000000}},"30009134":{"solarSystemId":30009134,"solarSystemName":"M:3AL3","location":{"x":-17500000000000000000,"y":-296000000000000000,"z":-2310000000000000000}},"30009135":{"solarSystemId":30009135,"solarSystemName":"G:2OA4","location":{"x":-16700000000000000000,"y":200000000000000000,"z":-2060000000000000000}},"30009136":{"solarSystemId":30009136,"solarSystemName":"Q:RA29","location":{"x":-15800000000000000000,"y":-357000000000000000,"z":-2450000000000000000}},"30009137":{"solarSystemId":30009137,"solarSystemName":"H:8IN0","location":{"x":-16700000000000000000,"y":-356000000000000000,"z":-1960000000000000000}},"30009138":{"solarSystemId":30009138,"solarSystemName":"J:1SKO","location":{"x":-15800000000000000000,"y":-90700000000000000,"z":-1740000000000000000}},"30009139":{"solarSystemId":30009139,"solarSystemName":"P:45R6","location":{"x":-15500000000000000000,"y":-558000000000000000,"z":-2850000000000000000}},"30009140":{"solarSystemId":30009140,"solarSystemName":"D:46VS","location":{"x":-15700000000000000000,"y":12500000000000000,"z":-1960000000000000000}},"30009141":{"solarSystemId":30009141,"solarSystemName":"Y:N374","location":{"x":-16000000000000000000,"y":96600000000000000,"z":-2070000000000000000}},"30009142":{"solarSystemId":30009142,"solarSystemName":"M:1A7V","location":{"x":-16700000000000000000,"y":-455000000000000000,"z":-1460000000000000000}},"30009143":{"solarSystemId":30009143,"solarSystemName":"Y:49A0","location":{"x":-15900000000000000000,"y":-428000000000000000,"z":-2260000000000000000}},"30009144":{"solarSystemId":30009144,"solarSystemName":"F:70OE","location":{"x":-15300000000000000000,"y":-590000000000000000,"z":-2690000000000000000}},"30009145":{"solarSystemId":30009145,"solarSystemName":"Q:1IA3","location":{"x":-17000000000000000000,"y":156000000000000000,"z":-1760000000000000000}},"30009146":{"solarSystemId":30009146,"solarSystemName":"Z:20AR","location":{"x":-16300000000000000000,"y":-243000000000000000,"z":-1710000000000000000}},"30009147":{"solarSystemId":30009147,"solarSystemName":"B:R0A6","location":{"x":-15600000000000000000,"y":-774000000000000000,"z":-3220000000000000000}},"30009148":{"solarSystemId":30009148,"solarSystemName":"P:3ON2","location":{"x":-17100000000000000000,"y":399000000000000000,"z":-2000000000000000000}},"30009149":{"solarSystemId":30009149,"solarSystemName":"F:S3V8","location":{"x":-17500000000000000000,"y":-119000000000000000,"z":-1850000000000000000}},"30009150":{"solarSystemId":30009150,"solarSystemName":"Z:15LL","location":{"x":-15600000000000000000,"y":-907000000000000000,"z":-3130000000000000000}},"30009151":{"solarSystemId":30009151,"solarSystemName":"Q:1010","location":{"x":-16800000000000000000,"y":887000000000000000,"z":-1730000000000000000}},"30009152":{"solarSystemId":30009152,"solarSystemName":"F:1IAV","location":{"x":-16400000000000000000,"y":17200000000000000,"z":-2210000000000000000}},"30009153":{"solarSystemId":30009153,"solarSystemName":"F:135T","location":{"x":-15700000000000000000,"y":-109000000000000000,"z":-2360000000000000000}},"30009154":{"solarSystemId":30009154,"solarSystemName":"Q:T1OA","location":{"x":-16500000000000000000,"y":-23500000000000000,"z":-2880000000000000000}},"30009155":{"solarSystemId":30009155,"solarSystemName":"J:1K33","location":{"x":-19200000000000000000,"y":-190000000000000000,"z":-3120000000000000000}},"30009156":{"solarSystemId":30009156,"solarSystemName":"Z:12SN","location":{"x":-18700000000000000000,"y":-60400000000000000,"z":-3810000000000000000}},"30009157":{"solarSystemId":30009157,"solarSystemName":"F:132S","location":{"x":-20100000000000000000,"y":18500000000000000,"z":-3400000000000000000}},"30009158":{"solarSystemId":30009158,"solarSystemName":"G:1234","location":{"x":-19400000000000000000,"y":-324000000000000000,"z":-2970000000000000000}},"30009159":{"solarSystemId":30009159,"solarSystemName":"P:161A","location":{"x":-19400000000000000000,"y":491000000000000000,"z":-3330000000000000000}},"30009160":{"solarSystemId":30009160,"solarSystemName":"F:SSL8","location":{"x":-19900000000000000000,"y":-226000000000000000,"z":-3210000000000000000}},"30009161":{"solarSystemId":30009161,"solarSystemName":"Y:14R7","location":{"x":-19100000000000000000,"y":648000000000000000,"z":-3270000000000000000}},"30009162":{"solarSystemId":30009162,"solarSystemName":"B:1A0R","location":{"x":-18400000000000000000,"y":33800000000000000,"z":-3430000000000000000}},"30009163":{"solarSystemId":30009163,"solarSystemName":"M:OL53","location":{"x":-19600000000000000000,"y":-453000000000000000,"z":-2880000000000000000}},"30009164":{"solarSystemId":30009164,"solarSystemName":"B:2NL1","location":{"x":-18200000000000000000,"y":-41500000000000000,"z":-3490000000000000000}},"30009165":{"solarSystemId":30009165,"solarSystemName":"Z:1398","location":{"x":-18400000000000000000,"y":-95800000000000000,"z":-3720000000000000000}},"30009166":{"solarSystemId":30009166,"solarSystemName":"D:16ER","location":{"x":-19100000000000000000,"y":-208000000000000000,"z":-2990000000000000000}},"30009167":{"solarSystemId":30009167,"solarSystemName":"H:R2IT","location":{"x":-19000000000000000000,"y":615000000000000000,"z":-2900000000000000000}},"30009168":{"solarSystemId":30009168,"solarSystemName":"D:19OS","location":{"x":-19200000000000000000,"y":372000000000000000,"z":-3470000000000000000}},"30009169":{"solarSystemId":30009169,"solarSystemName":"Q:NT55","location":{"x":-20000000000000000000,"y":232000000000000000,"z":-3290000000000000000}},"30009170":{"solarSystemId":30009170,"solarSystemName":"J:1147","location":{"x":-18200000000000000000,"y":116000000000000000,"z":-3180000000000000000}},"30009171":{"solarSystemId":30009171,"solarSystemName":"B:14OS","location":{"x":-18800000000000000000,"y":-22000000000000000,"z":-3150000000000000000}},"30009172":{"solarSystemId":30009172,"solarSystemName":"H:10LI","location":{"x":-19500000000000000000,"y":595000000000000000,"z":-3080000000000000000}},"30009173":{"solarSystemId":30009173,"solarSystemName":"F:1782","location":{"x":-18200000000000000000,"y":-329000000000000000,"z":-3510000000000000000}},"30009174":{"solarSystemId":30009174,"solarSystemName":"J:VA58","location":{"x":-19900000000000000000,"y":43500000000000000,"z":-3040000000000000000}},"30009175":{"solarSystemId":30009175,"solarSystemName":"G:3R0I","location":{"x":-16300000000000000000,"y":638000000000000000,"z":-4000000000000000000}},"30009176":{"solarSystemId":30009176,"solarSystemName":"G:330N","location":{"x":-17200000000000000000,"y":-138000000000000000,"z":-4840000000000000000}},"30009177":{"solarSystemId":30009177,"solarSystemName":"Q:19LL","location":{"x":-16800000000000000000,"y":315000000000000000,"z":-3950000000000000000}},"30009178":{"solarSystemId":30009178,"solarSystemName":"Z:1A9A","location":{"x":-17500000000000000000,"y":-216000000000000000,"z":-4010000000000000000}},"30009179":{"solarSystemId":30009179,"solarSystemName":"D:15A5","location":{"x":-17400000000000000000,"y":-154000000000000000,"z":-3640000000000000000}},"30009180":{"solarSystemId":30009180,"solarSystemName":"P:136O","location":{"x":-15600000000000000000,"y":-191000000000000000,"z":-3470000000000000000}},"30009181":{"solarSystemId":30009181,"solarSystemName":"F:K4A1","location":{"x":-17700000000000000000,"y":52500000000000000,"z":-4670000000000000000}},"30009182":{"solarSystemId":30009182,"solarSystemName":"Y:S498","location":{"x":-17100000000000000000,"y":-284000000000000000,"z":-4450000000000000000}},"30009183":{"solarSystemId":30009183,"solarSystemName":"D:2N38","location":{"x":-17300000000000000000,"y":-240000000000000000,"z":-5080000000000000000}},"30009184":{"solarSystemId":30009184,"solarSystemName":"U:3RO9","location":{"x":-17000000000000000000,"y":-403000000000000000,"z":-5050000000000000000}},"30009185":{"solarSystemId":30009185,"solarSystemName":"F:1ISA","location":{"x":-16800000000000000000,"y":-348000000000000000,"z":-4530000000000000000}},"30009186":{"solarSystemId":30009186,"solarSystemName":"Q:E4AL","location":{"x":-16800000000000000000,"y":-160000000000000000,"z":-3430000000000000000}},"30009187":{"solarSystemId":30009187,"solarSystemName":"B:OETV","location":{"x":-17300000000000000000,"y":-211000000000000000,"z":-3800000000000000000}},"30009188":{"solarSystemId":30009188,"solarSystemName":"Y:NO88","location":{"x":-17300000000000000000,"y":-373000000000000000,"z":-3960000000000000000}},"30009189":{"solarSystemId":30009189,"solarSystemName":"U:1L2S","location":{"x":-17400000000000000000,"y":-550000000000000000,"z":-3750000000000000000}},"30009190":{"solarSystemId":30009190,"solarSystemName":"F:1280","location":{"x":-16000000000000000000,"y":-121000000000000000,"z":-4270000000000000000}},"30009191":{"solarSystemId":30009191,"solarSystemName":"H:1I0A","location":{"x":-17600000000000000000,"y":-547000000000000000,"z":-3020000000000000000}},"30009192":{"solarSystemId":30009192,"solarSystemName":"P:2273","location":{"x":-18000000000000000000,"y":-237000000000000000,"z":-2750000000000000000}},"30009193":{"solarSystemId":30009193,"solarSystemName":"Q:S398","location":{"x":-18000000000000000000,"y":-864000000000000000,"z":-3150000000000000000}},"30009194":{"solarSystemId":30009194,"solarSystemName":"P:1A60","location":{"x":-17200000000000000000,"y":252000000000000000,"z":-4630000000000000000}},"30009195":{"solarSystemId":30009195,"solarSystemName":"Q:25NN","location":{"x":-18000000000000000000,"y":-618000000000000000,"z":-3190000000000000000}},"30009196":{"solarSystemId":30009196,"solarSystemName":"Y:NEK6","location":{"x":-17500000000000000000,"y":318000000000000000,"z":-2600000000000000000}},"30009197":{"solarSystemId":30009197,"solarSystemName":"H:12OA","location":{"x":-17800000000000000000,"y":-145000000000000000,"z":-2720000000000000000}},"30009198":{"solarSystemId":30009198,"solarSystemName":"Y:134N","location":{"x":-17200000000000000000,"y":213000000000000000,"z":-4250000000000000000}},"30009199":{"solarSystemId":30009199,"solarSystemName":"F:1E9V","location":{"x":-18400000000000000000,"y":3120000000000000000,"z":-1700000000000000000}},"30009200":{"solarSystemId":30009200,"solarSystemName":"J:1N3A","location":{"x":-19400000000000000000,"y":2620000000000000000,"z":-1520000000000000000}},"30009201":{"solarSystemId":30009201,"solarSystemName":"P:VL6O","location":{"x":-18500000000000000000,"y":1930000000000000000,"z":-1320000000000000000}},"30009202":{"solarSystemId":30009202,"solarSystemName":"Q:11TN","location":{"x":-18900000000000000000,"y":598000000000000000,"z":-2060000000000000000}},"30009203":{"solarSystemId":30009203,"solarSystemName":"P:1IOT","location":{"x":-18800000000000000000,"y":-85100000000000000,"z":-1930000000000000000}},"30009204":{"solarSystemId":30009204,"solarSystemName":"F:3I87","location":{"x":-19100000000000000000,"y":2380000000000000000,"z":-1360000000000000000}},"30009205":{"solarSystemId":30009205,"solarSystemName":"B:1RR2","location":{"x":-19000000000000000000,"y":14500000000000000,"z":-1980000000000000000}},"30009206":{"solarSystemId":30009206,"solarSystemName":"J:13OS","location":{"x":-20600000000000000000,"y":3480000000000000000,"z":-2270000000000000000}},"30009207":{"solarSystemId":30009207,"solarSystemName":"J:12T2","location":{"x":-17800000000000000000,"y":3420000000000000000,"z":-1970000000000000000}},"30009208":{"solarSystemId":30009208,"solarSystemName":"U:SRE9","location":{"x":-19000000000000000000,"y":1790000000000000000,"z":-1800000000000000000}},"30009209":{"solarSystemId":30009209,"solarSystemName":"P:119I","location":{"x":-17200000000000000000,"y":3250000000000000000,"z":-1600000000000000000}},"30009210":{"solarSystemId":30009210,"solarSystemName":"P:KVS1","location":{"x":-19500000000000000000,"y":3140000000000000000,"z":-2060000000000000000}},"30009211":{"solarSystemId":30009211,"solarSystemName":"J:17TI","location":{"x":-19300000000000000000,"y":769000000000000000,"z":-2580000000000000000}},"30009212":{"solarSystemId":30009212,"solarSystemName":"B:1R3O","location":{"x":-22800000000000000000,"y":-522000000000000000,"z":-6590000000000000000}},"30009213":{"solarSystemId":30009213,"solarSystemName":"P:1VS5","location":{"x":-22800000000000000000,"y":-838000000000000000,"z":-6560000000000000000}},"30009214":{"solarSystemId":30009214,"solarSystemName":"J:IL78","location":{"x":-23400000000000000000,"y":186000000000000000,"z":-6080000000000000000}},"30009215":{"solarSystemId":30009215,"solarSystemName":"H:6K3N","location":{"x":-22700000000000000000,"y":-398000000000000000,"z":-6760000000000000000}},"30009216":{"solarSystemId":30009216,"solarSystemName":"P:34R5","location":{"x":-22400000000000000000,"y":-774000000000000000,"z":-6700000000000000000}},"30009217":{"solarSystemId":30009217,"solarSystemName":"Z:KTN3","location":{"x":-22800000000000000000,"y":-305000000000000000,"z":-6540000000000000000}},"30009218":{"solarSystemId":30009218,"solarSystemName":"G:250O","location":{"x":-22200000000000000000,"y":-610000000000000000,"z":-6400000000000000000}},"30009219":{"solarSystemId":30009219,"solarSystemName":"P:4R2R","location":{"x":-22900000000000000000,"y":-337000000000000000,"z":-6100000000000000000}},"30009220":{"solarSystemId":30009220,"solarSystemName":"D:10N8","location":{"x":-22600000000000000000,"y":-1120000000000000000,"z":-6640000000000000000}},"30009221":{"solarSystemId":30009221,"solarSystemName":"D:28NT","location":{"x":-22400000000000000000,"y":-769000000000000000,"z":-6570000000000000000}},"30009222":{"solarSystemId":30009222,"solarSystemName":"Q:22SE","location":{"x":-22700000000000000000,"y":-610000000000000000,"z":-6480000000000000000}},"30009223":{"solarSystemId":30009223,"solarSystemName":"Z:3733","location":{"x":-22400000000000000000,"y":-541000000000000000,"z":-6840000000000000000}},"30009224":{"solarSystemId":30009224,"solarSystemName":"J:17O0","location":{"x":-22300000000000000000,"y":-129000000000000000,"z":-6120000000000000000}},"30009225":{"solarSystemId":30009225,"solarSystemName":"J:1ALN","location":{"x":-22600000000000000000,"y":-165000000000000000,"z":-6590000000000000000}},"30009226":{"solarSystemId":30009226,"solarSystemName":"Y:SILO","location":{"x":-22900000000000000000,"y":-822000000000000000,"z":-6670000000000000000}},"30009227":{"solarSystemId":30009227,"solarSystemName":"H:NT26","location":{"x":-22200000000000000000,"y":-382000000000000000,"z":-6310000000000000000}},"30009228":{"solarSystemId":30009228,"solarSystemName":"F:EO4E","location":{"x":-22400000000000000000,"y":-315000000000000000,"z":-6510000000000000000}},"30009229":{"solarSystemId":30009229,"solarSystemName":"U:21T2","location":{"x":-22100000000000000000,"y":-844000000000000000,"z":-6680000000000000000}},"30009230":{"solarSystemId":30009230,"solarSystemName":"F:3171","location":{"x":-22400000000000000000,"y":-879000000000000000,"z":-7340000000000000000}},"30009231":{"solarSystemId":30009231,"solarSystemName":"H:3I2O","location":{"x":-22900000000000000000,"y":-706000000000000000,"z":-7700000000000000000}},"30009232":{"solarSystemId":30009232,"solarSystemName":"B:E2LK","location":{"x":-23000000000000000000,"y":-373000000000000000,"z":-6940000000000000000}},"30009233":{"solarSystemId":30009233,"solarSystemName":"F:2248","location":{"x":-22100000000000000000,"y":-664000000000000000,"z":-7630000000000000000}},"30009234":{"solarSystemId":30009234,"solarSystemName":"Y:313N","location":{"x":-23000000000000000000,"y":-399000000000000000,"z":-7420000000000000000}},"30009235":{"solarSystemId":30009235,"solarSystemName":"Q:1AE7","location":{"x":-22100000000000000000,"y":-717000000000000000,"z":-7500000000000000000}},"30009236":{"solarSystemId":30009236,"solarSystemName":"U:4I48","location":{"x":-22800000000000000000,"y":-373000000000000000,"z":-7030000000000000000}},"30009237":{"solarSystemId":30009237,"solarSystemName":"F:S1LK","location":{"x":-22000000000000000000,"y":-975000000000000000,"z":-6890000000000000000}},"30009238":{"solarSystemId":30009238,"solarSystemName":"Z:II64","location":{"x":-22400000000000000000,"y":-840000000000000000,"z":-7090000000000000000}},"30009239":{"solarSystemId":30009239,"solarSystemName":"Y:R15R","location":{"x":-22900000000000000000,"y":-1050000000000000000,"z":-6940000000000000000}},"30009240":{"solarSystemId":30009240,"solarSystemName":"Z:K18N","location":{"x":-22800000000000000000,"y":-643000000000000000,"z":-7690000000000000000}},"30009241":{"solarSystemId":30009241,"solarSystemName":"H:4R71","location":{"x":-22600000000000000000,"y":-736000000000000000,"z":-7170000000000000000}},"30009242":{"solarSystemId":30009242,"solarSystemName":"P:IIEN","location":{"x":-23200000000000000000,"y":-344000000000000000,"z":-6930000000000000000}},"30009243":{"solarSystemId":30009243,"solarSystemName":"Z:L338","location":{"x":-22400000000000000000,"y":-1140000000000000000,"z":-6700000000000000000}},"30009244":{"solarSystemId":30009244,"solarSystemName":"U:RNVR","location":{"x":-23000000000000000000,"y":-749000000000000000,"z":-6980000000000000000}},"30009245":{"solarSystemId":30009245,"solarSystemName":"M:L566","location":{"x":-21700000000000000000,"y":-682000000000000000,"z":-6530000000000000000}},"30009246":{"solarSystemId":30009246,"solarSystemName":"G:3AKI","location":{"x":-21700000000000000000,"y":-769000000000000000,"z":-6670000000000000000}},"30009247":{"solarSystemId":30009247,"solarSystemName":"F:EET2","location":{"x":-21600000000000000000,"y":-401000000000000000,"z":-7130000000000000000}},"30009248":{"solarSystemId":30009248,"solarSystemName":"G:R1KT","location":{"x":-21500000000000000000,"y":-501000000000000000,"z":-7050000000000000000}},"30009249":{"solarSystemId":30009249,"solarSystemName":"D:149L","location":{"x":-22300000000000000000,"y":-106000000000000000,"z":-6960000000000000000}},"30009250":{"solarSystemId":30009250,"solarSystemName":"P:3V9E","location":{"x":-22000000000000000000,"y":-736000000000000000,"z":-6730000000000000000}},"30009251":{"solarSystemId":30009251,"solarSystemName":"G:1643","location":{"x":-21300000000000000000,"y":-66100000000000000,"z":-6790000000000000000}},"30009252":{"solarSystemId":30009252,"solarSystemName":"Q:1851","location":{"x":-21800000000000000000,"y":-314000000000000000,"z":-6860000000000000000}},"30009253":{"solarSystemId":30009253,"solarSystemName":"H:1ISO","location":{"x":-21900000000000000000,"y":-764000000000000000,"z":-6790000000000000000}},"30009254":{"solarSystemId":30009254,"solarSystemName":"F:1986","location":{"x":-21500000000000000000,"y":14200000000000000,"z":-6540000000000000000}},"30009255":{"solarSystemId":30009255,"solarSystemName":"G:1NEN","location":{"x":-21500000000000000000,"y":-565000000000000000,"z":-6860000000000000000}},"30009256":{"solarSystemId":30009256,"solarSystemName":"Z:1K7A","location":{"x":-21800000000000000000,"y":-662000000000000000,"z":-6610000000000000000}},"30009257":{"solarSystemId":30009257,"solarSystemName":"P:19V0","location":{"x":-21900000000000000000,"y":-616000000000000000,"z":-6700000000000000000}},"30009258":{"solarSystemId":30009258,"solarSystemName":"J:2L11","location":{"x":-21600000000000000000,"y":-279000000000000000,"z":-6740000000000000000}},"30009259":{"solarSystemId":30009259,"solarSystemName":"P:522N","location":{"x":-22100000000000000000,"y":-131000000000000000,"z":-6920000000000000000}},"30009260":{"solarSystemId":30009260,"solarSystemName":"B:K0NT","location":{"x":-21800000000000000000,"y":26800000000000000,"z":-6850000000000000000}},"30009261":{"solarSystemId":30009261,"solarSystemName":"B:4919","location":{"x":-22900000000000000000,"y":-717000000000000000,"z":-8510000000000000000}},"30009262":{"solarSystemId":30009262,"solarSystemName":"Y:1N69","location":{"x":-22900000000000000000,"y":-682000000000000000,"z":-8650000000000000000}},"30009263":{"solarSystemId":30009263,"solarSystemName":"H:1907","location":{"x":-22900000000000000000,"y":-954000000000000000,"z":-8390000000000000000}},"30009264":{"solarSystemId":30009264,"solarSystemName":"U:15S0","location":{"x":-23400000000000000000,"y":-130000000000000000,"z":-7340000000000000000}},"30009265":{"solarSystemId":30009265,"solarSystemName":"F:18V5","location":{"x":-22800000000000000000,"y":101000000000000000,"z":-7500000000000000000}},"30009266":{"solarSystemId":30009266,"solarSystemName":"Q:3NKV","location":{"x":-23100000000000000000,"y":-7630000000000000,"z":-7930000000000000000}},"30009267":{"solarSystemId":30009267,"solarSystemName":"D:4O2E","location":{"x":-22300000000000000000,"y":-8380000000000000,"z":-8290000000000000000}},"30009268":{"solarSystemId":30009268,"solarSystemName":"B:N3KN","location":{"x":-23400000000000000000,"y":-649000000000000000,"z":-7520000000000000000}},"30009269":{"solarSystemId":30009269,"solarSystemName":"P:K144","location":{"x":-23400000000000000000,"y":-471000000000000000,"z":-8010000000000000000}},"30009270":{"solarSystemId":30009270,"solarSystemName":"Q:23I4","location":{"x":-23100000000000000000,"y":-842000000000000000,"z":-8590000000000000000}},"30009271":{"solarSystemId":30009271,"solarSystemName":"B:19TI","location":{"x":-22500000000000000000,"y":-196000000000000000,"z":-7700000000000000000}},"30009272":{"solarSystemId":30009272,"solarSystemName":"M:S5ES","location":{"x":-23400000000000000000,"y":-573000000000000000,"z":-8240000000000000000}},"30009273":{"solarSystemId":30009273,"solarSystemName":"B:1SO0","location":{"x":-22600000000000000000,"y":-40200000000000000,"z":-7720000000000000000}},"30009274":{"solarSystemId":30009274,"solarSystemName":"M:45E9","location":{"x":-23100000000000000000,"y":-19600000000000000,"z":-8060000000000000000}},"30009275":{"solarSystemId":30009275,"solarSystemName":"Z:1853","location":{"x":-22500000000000000000,"y":576000000000000000,"z":-8120000000000000000}},"30009276":{"solarSystemId":30009276,"solarSystemName":"Q:1L50","location":{"x":-23300000000000000000,"y":437000000000000000,"z":-8810000000000000000}},"30009277":{"solarSystemId":30009277,"solarSystemName":"Q:2LIR","location":{"x":-24700000000000000000,"y":632000000000000000,"z":-8600000000000000000}},"30009278":{"solarSystemId":30009278,"solarSystemName":"J:1820","location":{"x":-25200000000000000000,"y":637000000000000000,"z":-9500000000000000000}},"30009279":{"solarSystemId":30009279,"solarSystemName":"M:1RT4","location":{"x":-24300000000000000000,"y":819000000000000000,"z":-8650000000000000000}},"30009280":{"solarSystemId":30009280,"solarSystemName":"J:2TEL","location":{"x":-26000000000000000000,"y":354000000000000000,"z":-9640000000000000000}},"30009281":{"solarSystemId":30009281,"solarSystemName":"B:15VO","location":{"x":-23500000000000000000,"y":2040000000000000000,"z":-8350000000000000000}},"30009282":{"solarSystemId":30009282,"solarSystemName":"U:15EI","location":{"x":-23600000000000000000,"y":384000000000000000,"z":-8100000000000000000}},"30009283":{"solarSystemId":30009283,"solarSystemName":"Z:4AR2","location":{"x":-23500000000000000000,"y":-259000000000000000,"z":-9750000000000000000}},"30009284":{"solarSystemId":30009284,"solarSystemName":"Z:2SIT","location":{"x":-24400000000000000000,"y":1160000000000000000,"z":-8610000000000000000}},"30009285":{"solarSystemId":30009285,"solarSystemName":"Q:K0R4","location":{"x":-23400000000000000000,"y":-115000000000000000,"z":-9530000000000000000}},"30009286":{"solarSystemId":30009286,"solarSystemName":"F:4857","location":{"x":-24100000000000000000,"y":-32800000000000000,"z":-8090000000000000000}},"30009287":{"solarSystemId":30009287,"solarSystemName":"G:247N","location":{"x":-25300000000000000000,"y":202000000000000000,"z":-9200000000000000000}},"30009288":{"solarSystemId":30009288,"solarSystemName":"D:1VLL","location":{"x":-25500000000000000000,"y":112000000000000000,"z":-9020000000000000000}},"30009289":{"solarSystemId":30009289,"solarSystemName":"G:1TRA","location":{"x":-24100000000000000000,"y":964000000000000000,"z":-10000000000000000000}},"30009290":{"solarSystemId":30009290,"solarSystemName":"Q:2S7S","location":{"x":-25200000000000000000,"y":179000000000000000,"z":-9860000000000000000}},"30009291":{"solarSystemId":30009291,"solarSystemName":"M:EN31","location":{"x":-24500000000000000000,"y":359000000000000000,"z":-9490000000000000000}},"30009292":{"solarSystemId":30009292,"solarSystemName":"G:1VO7","location":{"x":-23900000000000000000,"y":1260000000000000000,"z":-9290000000000000000}},"30009293":{"solarSystemId":30009293,"solarSystemName":"J:2LN9","location":{"x":-24300000000000000000,"y":488000000000000000,"z":-8860000000000000000}},"30009294":{"solarSystemId":30009294,"solarSystemName":"J:33OR","location":{"x":-23500000000000000000,"y":146000000000000000,"z":-9410000000000000000}},"30009295":{"solarSystemId":30009295,"solarSystemName":"P:3N4A","location":{"x":-23200000000000000000,"y":-911000000000000000,"z":-5920000000000000000}},"30009296":{"solarSystemId":30009296,"solarSystemName":"Z:VS53","location":{"x":-22700000000000000000,"y":-890000000000000000,"z":-6250000000000000000}},"30009297":{"solarSystemId":30009297,"solarSystemName":"Z:KEVT","location":{"x":-23200000000000000000,"y":-1200000000000000000,"z":-5870000000000000000}},"30009298":{"solarSystemId":30009298,"solarSystemName":"J:1ITK","location":{"x":-22700000000000000000,"y":-1170000000000000000,"z":-5070000000000000000}},"30009299":{"solarSystemId":30009299,"solarSystemName":"H:I8ES","location":{"x":-22800000000000000000,"y":-667000000000000000,"z":-5070000000000000000}},"30009300":{"solarSystemId":30009300,"solarSystemName":"J:4404","location":{"x":-22800000000000000000,"y":-290000000000000000,"z":-5390000000000000000}},"30009301":{"solarSystemId":30009301,"solarSystemName":"U:1216","location":{"x":-23000000000000000000,"y":-338000000000000000,"z":-5710000000000000000}},"30009302":{"solarSystemId":30009302,"solarSystemName":"Z:22RA","location":{"x":-23000000000000000000,"y":-1070000000000000000,"z":-5760000000000000000}},"30009303":{"solarSystemId":30009303,"solarSystemName":"P:154A","location":{"x":-23000000000000000000,"y":-1410000000000000000,"z":-5390000000000000000}},"30009304":{"solarSystemId":30009304,"solarSystemName":"U:138N","location":{"x":-22600000000000000000,"y":-947000000000000000,"z":-5480000000000000000}},"30009305":{"solarSystemId":30009305,"solarSystemName":"J:1T11","location":{"x":-22400000000000000000,"y":-988000000000000000,"z":-5140000000000000000}},"30009306":{"solarSystemId":30009306,"solarSystemName":"D:1294","location":{"x":-22800000000000000000,"y":-966000000000000000,"z":-6170000000000000000}},"30009307":{"solarSystemId":30009307,"solarSystemName":"B:2I6E","location":{"x":-22800000000000000000,"y":-1060000000000000000,"z":-5420000000000000000}},"30009308":{"solarSystemId":30009308,"solarSystemName":"D:1NL1","location":{"x":-22700000000000000000,"y":-957000000000000000,"z":-5640000000000000000}},"30009309":{"solarSystemId":30009309,"solarSystemName":"H:2KKN","location":{"x":-22800000000000000000,"y":-878000000000000000,"z":-5700000000000000000}},"30009310":{"solarSystemId":30009310,"solarSystemName":"Y:265K","location":{"x":-23100000000000000000,"y":-773000000000000000,"z":-5310000000000000000}},"30009311":{"solarSystemId":30009311,"solarSystemName":"M:18VS","location":{"x":-22800000000000000000,"y":-1220000000000000000,"z":-6380000000000000000}},"30009312":{"solarSystemId":30009312,"solarSystemName":"H:2EO7","location":{"x":-24700000000000000000,"y":-1930000000000000000,"z":-9560000000000000000}},"30009313":{"solarSystemId":30009313,"solarSystemName":"U:3I09","location":{"x":-24700000000000000000,"y":-2280000000000000000,"z":-8670000000000000000}},"30009314":{"solarSystemId":30009314,"solarSystemName":"Q:19I2","location":{"x":-24500000000000000000,"y":-1770000000000000000,"z":-10100000000000000000}},"30009315":{"solarSystemId":30009315,"solarSystemName":"B:IO33","location":{"x":-23900000000000000000,"y":-1150000000000000000,"z":-10200000000000000000}},"30009316":{"solarSystemId":30009316,"solarSystemName":"M:O38T","location":{"x":-25100000000000000000,"y":-895000000000000000,"z":-9790000000000000000}},"30009317":{"solarSystemId":30009317,"solarSystemName":"G:3I13","location":{"x":-24400000000000000000,"y":-1870000000000000000,"z":-8580000000000000000}},"30009318":{"solarSystemId":30009318,"solarSystemName":"H:2N43","location":{"x":-24900000000000000000,"y":-1130000000000000000,"z":-9930000000000000000}},"30009319":{"solarSystemId":30009319,"solarSystemName":"H:3AVV","location":{"x":-24300000000000000000,"y":-2110000000000000000,"z":-7750000000000000000}},"30009320":{"solarSystemId":30009320,"solarSystemName":"U:32TK","location":{"x":-24200000000000000000,"y":-1810000000000000000,"z":-8360000000000000000}},"30009321":{"solarSystemId":30009321,"solarSystemName":"F:4772","location":{"x":-24700000000000000000,"y":-1630000000000000000,"z":-8070000000000000000}},"30009322":{"solarSystemId":30009322,"solarSystemName":"H:12SR","location":{"x":-25600000000000000000,"y":-2220000000000000000,"z":-8300000000000000000}},"30009323":{"solarSystemId":30009323,"solarSystemName":"P:SSR8","location":{"x":-25100000000000000000,"y":-3160000000000000000,"z":-9540000000000000000}},"30009324":{"solarSystemId":30009324,"solarSystemName":"P:2IA1","location":{"x":-23500000000000000000,"y":-1400000000000000000,"z":-8490000000000000000}},"30009325":{"solarSystemId":30009325,"solarSystemName":"H:1SS3","location":{"x":-24400000000000000000,"y":-1500000000000000000,"z":-8240000000000000000}},"30009326":{"solarSystemId":30009326,"solarSystemName":"Q:S21K","location":{"x":-24300000000000000000,"y":-871000000000000000,"z":-8400000000000000000}},"30009327":{"solarSystemId":30009327,"solarSystemName":"D:4LV4","location":{"x":-24500000000000000000,"y":-1030000000000000000,"z":-8600000000000000000}},"30009328":{"solarSystemId":30009328,"solarSystemName":"H:STL9","location":{"x":-24200000000000000000,"y":-176000000000000000,"z":-8370000000000000000}},"30009329":{"solarSystemId":30009329,"solarSystemName":"Z:24O6","location":{"x":-23700000000000000000,"y":-1540000000000000000,"z":-8320000000000000000}},"30009330":{"solarSystemId":30009330,"solarSystemName":"G:29OS","location":{"x":-24000000000000000000,"y":-640000000000000000,"z":-8130000000000000000}},"30009331":{"solarSystemId":30009331,"solarSystemName":"F:3577","location":{"x":-24500000000000000000,"y":-773000000000000000,"z":-8330000000000000000}},"30009332":{"solarSystemId":30009332,"solarSystemName":"Y:1T3V","location":{"x":-23600000000000000000,"y":-868000000000000000,"z":-8850000000000000000}},"30009333":{"solarSystemId":30009333,"solarSystemName":"U:KN3T","location":{"x":-24300000000000000000,"y":-563000000000000000,"z":-7620000000000000000}},"30009334":{"solarSystemId":30009334,"solarSystemName":"F:19T5","location":{"x":-23700000000000000000,"y":-610000000000000000,"z":-7780000000000000000}},"30009335":{"solarSystemId":30009335,"solarSystemName":"U:42S5","location":{"x":-24000000000000000000,"y":-958000000000000000,"z":-8030000000000000000}},"30009336":{"solarSystemId":30009336,"solarSystemName":"M:RE27","location":{"x":-23600000000000000000,"y":-742000000000000000,"z":-8260000000000000000}},"30009337":{"solarSystemId":30009337,"solarSystemName":"Y:118O","location":{"x":-24400000000000000000,"y":-781000000000000000,"z":-7920000000000000000}},"30009338":{"solarSystemId":30009338,"solarSystemName":"Z:3ASV","location":{"x":-24300000000000000000,"y":-654000000000000000,"z":-8110000000000000000}},"30009339":{"solarSystemId":30009339,"solarSystemName":"J:2470","location":{"x":-22600000000000000000,"y":1770000000000000000,"z":-7050000000000000000}},"30009340":{"solarSystemId":30009340,"solarSystemName":"M:1O3A","location":{"x":-23100000000000000000,"y":1360000000000000000,"z":-6390000000000000000}},"30009341":{"solarSystemId":30009341,"solarSystemName":"B:194S","location":{"x":-21600000000000000000,"y":881000000000000000,"z":-6450000000000000000}},"30009342":{"solarSystemId":30009342,"solarSystemName":"Z:13OK","location":{"x":-22700000000000000000,"y":1380000000000000000,"z":-6900000000000000000}},"30009343":{"solarSystemId":30009343,"solarSystemName":"Y:AKTE","location":{"x":-22700000000000000000,"y":813000000000000000,"z":-7740000000000000000}},"30009344":{"solarSystemId":30009344,"solarSystemName":"M:190K","location":{"x":-21900000000000000000,"y":1290000000000000000,"z":-6200000000000000000}},"30009345":{"solarSystemId":30009345,"solarSystemName":"Z:1ION","location":{"x":-21500000000000000000,"y":1020000000000000000,"z":-6760000000000000000}},"30009346":{"solarSystemId":30009346,"solarSystemName":"B:1443","location":{"x":-22600000000000000000,"y":1760000000000000000,"z":-6440000000000000000}},"30009347":{"solarSystemId":30009347,"solarSystemName":"H:VE86","location":{"x":-22900000000000000000,"y":211000000000000000,"z":-7670000000000000000}},"30009348":{"solarSystemId":30009348,"solarSystemName":"F:3KR2","location":{"x":-22500000000000000000,"y":102000000000000000,"z":-7220000000000000000}},"30009349":{"solarSystemId":30009349,"solarSystemName":"H:S77R","location":{"x":-22500000000000000000,"y":468000000000000000,"z":-7270000000000000000}},"30009350":{"solarSystemId":30009350,"solarSystemName":"Q:L8O4","location":{"x":-21700000000000000000,"y":813000000000000000,"z":-6610000000000000000}},"30009351":{"solarSystemId":30009351,"solarSystemName":"Z:S7LT","location":{"x":-23400000000000000000,"y":897000000000000000,"z":-6670000000000000000}},"30009352":{"solarSystemId":30009352,"solarSystemName":"U:1922","location":{"x":-24500000000000000000,"y":-2310000000000000000,"z":-2680000000000000000}},"30009353":{"solarSystemId":30009353,"solarSystemName":"J:8ES8","location":{"x":-24500000000000000000,"y":-1190000000000000000,"z":-3020000000000000000}},"30009354":{"solarSystemId":30009354,"solarSystemName":"F:OK0E","location":{"x":-23500000000000000000,"y":-1210000000000000000,"z":-2540000000000000000}},"30009355":{"solarSystemId":30009355,"solarSystemName":"Q:1817","location":{"x":-23600000000000000000,"y":-1260000000000000000,"z":-2070000000000000000}},"30009356":{"solarSystemId":30009356,"solarSystemName":"H:O0L6","location":{"x":-24000000000000000000,"y":-843000000000000000,"z":-2460000000000000000}},"30009357":{"solarSystemId":30009357,"solarSystemName":"G:11V6","location":{"x":-24100000000000000000,"y":-1260000000000000000,"z":-2380000000000000000}},"30009358":{"solarSystemId":30009358,"solarSystemName":"U:45KO","location":{"x":-24300000000000000000,"y":-1150000000000000000,"z":-1850000000000000000}},"30009359":{"solarSystemId":30009359,"solarSystemName":"G:1114","location":{"x":-24500000000000000000,"y":-869000000000000000,"z":-2310000000000000000}},"30009360":{"solarSystemId":30009360,"solarSystemName":"U:SIEE","location":{"x":-24100000000000000000,"y":-1600000000000000000,"z":-2560000000000000000}},"30009361":{"solarSystemId":30009361,"solarSystemName":"Z:130L","location":{"x":-24200000000000000000,"y":-872000000000000000,"z":-2020000000000000000}},"30009362":{"solarSystemId":30009362,"solarSystemName":"U:10IR","location":{"x":-23400000000000000000,"y":-1080000000000000000,"z":-2590000000000000000}},"30009363":{"solarSystemId":30009363,"solarSystemName":"M:21A8","location":{"x":-24600000000000000000,"y":-902000000000000000,"z":-2680000000000000000}},"30009364":{"solarSystemId":30009364,"solarSystemName":"M:1N6O","location":{"x":-23900000000000000000,"y":-1130000000000000000,"z":-1840000000000000000}},"30009365":{"solarSystemId":30009365,"solarSystemName":"G:12TR","location":{"x":-26300000000000000000,"y":-1580000000000000000,"z":-1650000000000000000}},"30009366":{"solarSystemId":30009366,"solarSystemName":"H:1TTA","location":{"x":-26400000000000000000,"y":-1820000000000000000,"z":-3450000000000000000}},"30009367":{"solarSystemId":30009367,"solarSystemName":"G:1651","location":{"x":-26500000000000000000,"y":-1420000000000000000,"z":-2800000000000000000}},"30009368":{"solarSystemId":30009368,"solarSystemName":"Q:1E14","location":{"x":-26300000000000000000,"y":-1530000000000000000,"z":-2310000000000000000}},"30009369":{"solarSystemId":30009369,"solarSystemName":"M:13O5","location":{"x":-25300000000000000000,"y":-1160000000000000000,"z":-2050000000000000000}},"30009370":{"solarSystemId":30009370,"solarSystemName":"M:2069","location":{"x":-25200000000000000000,"y":-1140000000000000000,"z":-2450000000000000000}},"30009371":{"solarSystemId":30009371,"solarSystemName":"B:ARK5","location":{"x":-26000000000000000000,"y":-670000000000000000,"z":-2800000000000000000}},"30009372":{"solarSystemId":30009372,"solarSystemName":"Q:1I2I","location":{"x":-26100000000000000000,"y":-469000000000000000,"z":-2540000000000000000}},"30009373":{"solarSystemId":30009373,"solarSystemName":"M:1304","location":{"x":-25500000000000000000,"y":-1380000000000000000,"z":-1740000000000000000}},"30009374":{"solarSystemId":30009374,"solarSystemName":"F:1K07","location":{"x":-25500000000000000000,"y":-1050000000000000000,"z":-2830000000000000000}},"30009375":{"solarSystemId":30009375,"solarSystemName":"J:1404","location":{"x":-26200000000000000000,"y":-1490000000000000000,"z":-2640000000000000000}},"30009376":{"solarSystemId":30009376,"solarSystemName":"B:6E0K","location":{"x":-26600000000000000000,"y":-1320000000000000000,"z":-3500000000000000000}},"30009377":{"solarSystemId":30009377,"solarSystemName":"F:NNK6","location":{"x":-26800000000000000000,"y":-1310000000000000000,"z":-3400000000000000000}},"30009378":{"solarSystemId":30009378,"solarSystemName":"J:2O69","location":{"x":-28100000000000000000,"y":-3830000000000000000,"z":-1380000000000000000}},"30009379":{"solarSystemId":30009379,"solarSystemName":"B:K015","location":{"x":-26800000000000000000,"y":-2850000000000000000,"z":-3200000000000000000}},"30009380":{"solarSystemId":30009380,"solarSystemName":"D:RK81","location":{"x":-28700000000000000000,"y":-5010000000000000000,"z":-1560000000000000000}},"30009381":{"solarSystemId":30009381,"solarSystemName":"F:19O2","location":{"x":-29300000000000000000,"y":-3560000000000000000,"z":-1870000000000000000}},"30009382":{"solarSystemId":30009382,"solarSystemName":"M:136S","location":{"x":-25400000000000000000,"y":-4320000000000000000,"z":-1770000000000000000}},"30009383":{"solarSystemId":30009383,"solarSystemName":"Q:1AN8","location":{"x":-29000000000000000000,"y":-3920000000000000000,"z":-1890000000000000000}},"30009384":{"solarSystemId":30009384,"solarSystemName":"P:R72I","location":{"x":-26900000000000000000,"y":-1540000000000000000,"z":-600000000000000000}},"30009385":{"solarSystemId":30009385,"solarSystemName":"Y:1S9I","location":{"x":-24300000000000000000,"y":-342000000000000000,"z":-1060000000000000000}},"30009386":{"solarSystemId":30009386,"solarSystemName":"M:36R6","location":{"x":-24200000000000000000,"y":-478000000000000000,"z":-1610000000000000000}},"30009387":{"solarSystemId":30009387,"solarSystemName":"Y:716E","location":{"x":-24100000000000000000,"y":-9430000000000000,"z":-1520000000000000000}},"30009388":{"solarSystemId":30009388,"solarSystemName":"P:241O","location":{"x":-23900000000000000000,"y":-613000000000000000,"z":-1840000000000000000}},"30009389":{"solarSystemId":30009389,"solarSystemName":"U:2KN6","location":{"x":-24400000000000000000,"y":-181000000000000000,"z":-1190000000000000000}},"30009390":{"solarSystemId":30009390,"solarSystemName":"P:1KEL","location":{"x":-24300000000000000000,"y":-1370000000000000000,"z":-1440000000000000000}},"30009391":{"solarSystemId":30009391,"solarSystemName":"M:41OO","location":{"x":-24400000000000000000,"y":-343000000000000000,"z":-2190000000000000000}},"30009392":{"solarSystemId":30009392,"solarSystemName":"M:19S0","location":{"x":-24100000000000000000,"y":-309000000000000000,"z":-1280000000000000000}},"30009393":{"solarSystemId":30009393,"solarSystemName":"P:2EKS","location":{"x":-24200000000000000000,"y":-763000000000000000,"z":-1560000000000000000}},"30009394":{"solarSystemId":30009394,"solarSystemName":"M:13IS","location":{"x":-23700000000000000000,"y":-1190000000000000000,"z":-1620000000000000000}},"30009395":{"solarSystemId":30009395,"solarSystemName":"Y:1871","location":{"x":-24300000000000000000,"y":-1230000000000000000,"z":-1110000000000000000}},"30009396":{"solarSystemId":30009396,"solarSystemName":"Z:3KV5","location":{"x":-24600000000000000000,"y":-961000000000000000,"z":-1160000000000000000}},"30009397":{"solarSystemId":30009397,"solarSystemName":"P:110I","location":{"x":-24200000000000000000,"y":-820000000000000000,"z":-1960000000000000000}},"30009398":{"solarSystemId":30009398,"solarSystemName":"F:EA34","location":{"x":-23600000000000000000,"y":-620000000000000000,"z":-1630000000000000000}},"30009399":{"solarSystemId":30009399,"solarSystemName":"G:2NTA","location":{"x":-24100000000000000000,"y":-3040000000000000000,"z":-1210000000000000000}},"30009400":{"solarSystemId":30009400,"solarSystemName":"P:11KR","location":{"x":-23400000000000000000,"y":-3330000000000000000,"z":-827000000000000000}},"30009401":{"solarSystemId":30009401,"solarSystemName":"P:1ANE","location":{"x":-23800000000000000000,"y":-2090000000000000000,"z":-773000000000000000}},"30009402":{"solarSystemId":30009402,"solarSystemName":"P:188R","location":{"x":-25000000000000000000,"y":-3200000000000000000,"z":-4680000000000000}},"30009403":{"solarSystemId":30009403,"solarSystemName":"Q:NN56","location":{"x":-23700000000000000000,"y":-3140000000000000000,"z":-2520000000000000000}},"30009404":{"solarSystemId":30009404,"solarSystemName":"J:12A4","location":{"x":-23000000000000000000,"y":-3860000000000000000,"z":-1210000000000000000}},"30009405":{"solarSystemId":30009405,"solarSystemName":"Y:153K","location":{"x":-23400000000000000000,"y":-4160000000000000000,"z":-1210000000000000000}},"30009406":{"solarSystemId":30009406,"solarSystemName":"G:OLTE","location":{"x":-24000000000000000000,"y":-1390000000000000000,"z":-874000000000000000}},"30009407":{"solarSystemId":30009407,"solarSystemName":"P:38O2","location":{"x":-23600000000000000000,"y":-1640000000000000000,"z":-1660000000000000000}},"30009408":{"solarSystemId":30009408,"solarSystemName":"Z:SVR7","location":{"x":-23200000000000000000,"y":-1810000000000000000,"z":-993000000000000000}},"30009409":{"solarSystemId":30009409,"solarSystemName":"G:2S92","location":{"x":-25300000000000000000,"y":-81100000000000000,"z":-473000000000000000}},"30009410":{"solarSystemId":30009410,"solarSystemName":"J:4LVL","location":{"x":-24800000000000000000,"y":-552000000000000000,"z":-226000000000000000}},"30009411":{"solarSystemId":30009411,"solarSystemName":"J:N840","location":{"x":-25000000000000000000,"y":-488000000000000000,"z":-489000000000000000}},"30009412":{"solarSystemId":30009412,"solarSystemName":"F:50LT","location":{"x":-25000000000000000000,"y":-793000000000000000,"z":-980000000000000000}},"30009413":{"solarSystemId":30009413,"solarSystemName":"F:8V25","location":{"x":-24900000000000000000,"y":-901000000000000000,"z":-153000000000000000}},"30009414":{"solarSystemId":30009414,"solarSystemName":"D:VN0R","location":{"x":-25500000000000000000,"y":125000000000000000,"z":258000000000000000}},"30009415":{"solarSystemId":30009415,"solarSystemName":"P:LSNV","location":{"x":-25300000000000000000,"y":-4450000000000000,"z":-96100000000000000}},"30009416":{"solarSystemId":30009416,"solarSystemName":"J:1OS4","location":{"x":-25500000000000000000,"y":-665000000000000000,"z":-635000000000000000}},"30009417":{"solarSystemId":30009417,"solarSystemName":"Z:18AE","location":{"x":-25200000000000000000,"y":-597000000000000000,"z":-218000000000000000}},"30009418":{"solarSystemId":30009418,"solarSystemName":"M:1K6S","location":{"x":-25400000000000000000,"y":-599000000000000000,"z":-809000000000000000}},"30009419":{"solarSystemId":30009419,"solarSystemName":"F:6S6S","location":{"x":-25800000000000000000,"y":-548000000000000000,"z":-245000000000000000}},"30009420":{"solarSystemId":30009420,"solarSystemName":"P:43I5","location":{"x":-26000000000000000000,"y":-681000000000000000,"z":-154000000000000000}},"30009421":{"solarSystemId":30009421,"solarSystemName":"D:3869","location":{"x":-25200000000000000000,"y":-149000000000000000,"z":-399000000000000000}},"30009422":{"solarSystemId":30009422,"solarSystemName":"B:RAI8","location":{"x":-26400000000000000000,"y":-53300000000000000,"z":-2080000000000000000}},"30009423":{"solarSystemId":30009423,"solarSystemName":"P:172L","location":{"x":-25000000000000000000,"y":-826000000000000000,"z":-2550000000000000000}},"30009424":{"solarSystemId":30009424,"solarSystemName":"M:N6A2","location":{"x":-25700000000000000000,"y":-1020000000000000000,"z":-1270000000000000000}},"30009425":{"solarSystemId":30009425,"solarSystemName":"B:1SI6","location":{"x":-25800000000000000000,"y":-1060000000000000000,"z":-1450000000000000000}},"30009426":{"solarSystemId":30009426,"solarSystemName":"G:2EL8","location":{"x":-25900000000000000000,"y":-720000000000000000,"z":-1750000000000000000}},"30009427":{"solarSystemId":30009427,"solarSystemName":"H:RE3S","location":{"x":-25400000000000000000,"y":-332000000000000000,"z":-1320000000000000000}},"30009428":{"solarSystemId":30009428,"solarSystemName":"Z:S57S","location":{"x":-25700000000000000000,"y":-23600000000000000,"z":-1710000000000000000}},"30009429":{"solarSystemId":30009429,"solarSystemName":"U:AVS4","location":{"x":-25600000000000000000,"y":-929000000000000000,"z":-1350000000000000000}},"30009430":{"solarSystemId":30009430,"solarSystemName":"G:1T38","location":{"x":-25000000000000000000,"y":-343000000000000000,"z":-2570000000000000000}},"30009431":{"solarSystemId":30009431,"solarSystemName":"B:TTO0","location":{"x":-25500000000000000000,"y":-619000000000000000,"z":-2380000000000000000}},"30009432":{"solarSystemId":30009432,"solarSystemName":"P:1EOO","location":{"x":-24800000000000000000,"y":-1140000000000000000,"z":-1150000000000000000}},"30009433":{"solarSystemId":30009433,"solarSystemName":"G:2OE6","location":{"x":-25000000000000000000,"y":-1340000000000000000,"z":-2250000000000000000}},"30009434":{"solarSystemId":30009434,"solarSystemName":"D:1O30","location":{"x":-25600000000000000000,"y":-554000000000000000,"z":-1200000000000000000}},"30009435":{"solarSystemId":30009435,"solarSystemName":"M:11O9","location":{"x":-20600000000000000000,"y":-684000000000000000,"z":-3800000000000000000}},"30009436":{"solarSystemId":30009436,"solarSystemName":"P:RR3T","location":{"x":-20500000000000000000,"y":-792000000000000000,"z":-3640000000000000000}},"30009437":{"solarSystemId":30009437,"solarSystemName":"P:TK8S","location":{"x":-20700000000000000000,"y":-809000000000000000,"z":-3650000000000000000}},"30009438":{"solarSystemId":30009438,"solarSystemName":"P:11T9","location":{"x":-20600000000000000000,"y":-744000000000000000,"z":-3560000000000000000}},"30009439":{"solarSystemId":30009439,"solarSystemName":"D:13L2","location":{"x":-20600000000000000000,"y":-878000000000000000,"z":-3530000000000000000}},"30009440":{"solarSystemId":30009440,"solarSystemName":"H:LAAE","location":{"x":-20600000000000000000,"y":-652000000000000000,"z":-3780000000000000000}},"30009441":{"solarSystemId":30009441,"solarSystemName":"B:131A","location":{"x":-20600000000000000000,"y":-741000000000000000,"z":-3500000000000000000}},"30009442":{"solarSystemId":30009442,"solarSystemName":"D:112I","location":{"x":-20600000000000000000,"y":-680000000000000000,"z":-3490000000000000000}},"30009443":{"solarSystemId":30009443,"solarSystemName":"H:124R","location":{"x":-20500000000000000000,"y":-665000000000000000,"z":-3750000000000000000}},"30009444":{"solarSystemId":30009444,"solarSystemName":"M:11NK","location":{"x":-20400000000000000000,"y":-851000000000000000,"z":-3600000000000000000}},"30009445":{"solarSystemId":30009445,"solarSystemName":"D:E220","location":{"x":-20600000000000000000,"y":-803000000000000000,"z":-3720000000000000000}},"30009446":{"solarSystemId":30009446,"solarSystemName":"F:4A59","location":{"x":-20700000000000000000,"y":-686000000000000000,"z":-3580000000000000000}},"30009447":{"solarSystemId":30009447,"solarSystemName":"Q:18S1","location":{"x":-20700000000000000000,"y":-730000000000000000,"z":-3660000000000000000}},"30009448":{"solarSystemId":30009448,"solarSystemName":"B:NSON","location":{"x":-20700000000000000000,"y":-850000000000000000,"z":-3640000000000000000}},"30009449":{"solarSystemId":30009449,"solarSystemName":"F:T2OA","location":{"x":-20700000000000000000,"y":-762000000000000000,"z":-3550000000000000000}},"30009450":{"solarSystemId":30009450,"solarSystemName":"J:14KE","location":{"x":-20700000000000000000,"y":-689000000000000000,"z":-3700000000000000000}},"30009451":{"solarSystemId":30009451,"solarSystemName":"P:16NN","location":{"x":-20600000000000000000,"y":-762000000000000000,"z":-3590000000000000000}},"30009452":{"solarSystemId":30009452,"solarSystemName":"P:LR8L","location":{"x":-20500000000000000000,"y":-829000000000000000,"z":-3610000000000000000}},"30009453":{"solarSystemId":30009453,"solarSystemName":"Z:199S","location":{"x":-20600000000000000000,"y":-651000000000000000,"z":-3690000000000000000}},"30009454":{"solarSystemId":30009454,"solarSystemName":"M:NKVO","location":{"x":-20500000000000000000,"y":-664000000000000000,"z":-3630000000000000000}},"30009455":{"solarSystemId":30009455,"solarSystemName":"Q:1A01","location":{"x":-20600000000000000000,"y":-795000000000000000,"z":-3610000000000000000}},"30009456":{"solarSystemId":30009456,"solarSystemName":"Q:138T","location":{"x":-20500000000000000000,"y":-441000000000000000,"z":-4070000000000000000}},"30009457":{"solarSystemId":30009457,"solarSystemName":"Y:159V","location":{"x":-20300000000000000000,"y":-375000000000000000,"z":-3990000000000000000}},"30009458":{"solarSystemId":30009458,"solarSystemName":"G:1737","location":{"x":-20200000000000000000,"y":-211000000000000000,"z":-4290000000000000000}},"30009459":{"solarSystemId":30009459,"solarSystemName":"Y:115L","location":{"x":-20000000000000000000,"y":-257000000000000000,"z":-4210000000000000000}},"30009460":{"solarSystemId":30009460,"solarSystemName":"Y:137O","location":{"x":-20500000000000000000,"y":-223000000000000000,"z":-3800000000000000000}},"30009461":{"solarSystemId":30009461,"solarSystemName":"J:1OA1","location":{"x":-20400000000000000000,"y":58300000000000000,"z":-4340000000000000000}},"30009462":{"solarSystemId":30009462,"solarSystemName":"B:S13A","location":{"x":-20700000000000000000,"y":-263000000000000000,"z":-4270000000000000000}},"30009463":{"solarSystemId":30009463,"solarSystemName":"U:2NSE","location":{"x":-20600000000000000000,"y":-439000000000000000,"z":-4070000000000000000}},"30009464":{"solarSystemId":30009464,"solarSystemName":"B:7O05","location":{"x":-20400000000000000000,"y":-447000000000000000,"z":-4190000000000000000}},"30009465":{"solarSystemId":30009465,"solarSystemName":"U:OK6E","location":{"x":-20700000000000000000,"y":-314000000000000000,"z":-3900000000000000000}},"30009466":{"solarSystemId":30009466,"solarSystemName":"F:164V","location":{"x":-20400000000000000000,"y":-93200000000000000,"z":-4040000000000000000}},"30009467":{"solarSystemId":30009467,"solarSystemName":"J:13SI","location":{"x":-20600000000000000000,"y":-418000000000000000,"z":-4310000000000000000}},"30009468":{"solarSystemId":30009468,"solarSystemName":"D:SVNV","location":{"x":-20300000000000000000,"y":-165000000000000000,"z":-4200000000000000000}},"30009469":{"solarSystemId":30009469,"solarSystemName":"D:12R5","location":{"x":-20500000000000000000,"y":-301000000000000000,"z":-3960000000000000000}},"30009470":{"solarSystemId":30009470,"solarSystemName":"M:R274","location":{"x":-20500000000000000000,"y":-321000000000000000,"z":-4040000000000000000}},"30009471":{"solarSystemId":30009471,"solarSystemName":"Q:1O06","location":{"x":-20500000000000000000,"y":-483000000000000000,"z":-4230000000000000000}},"30009472":{"solarSystemId":30009472,"solarSystemName":"F:12T7","location":{"x":-20400000000000000000,"y":-395000000000000000,"z":-4280000000000000000}},"30009473":{"solarSystemId":30009473,"solarSystemName":"G:TV8V","location":{"x":-20600000000000000000,"y":13000000000000000,"z":-4330000000000000000}},"30009474":{"solarSystemId":30009474,"solarSystemName":"B:1AS1","location":{"x":-20500000000000000000,"y":-153000000000000000,"z":-4060000000000000000}},"30009475":{"solarSystemId":30009475,"solarSystemName":"Z:10VA","location":{"x":-20500000000000000000,"y":-441000000000000000,"z":-4280000000000000000}},"30009476":{"solarSystemId":30009476,"solarSystemName":"M:273K","location":{"x":-21400000000000000000,"y":-724000000000000000,"z":-4240000000000000000}},"30009477":{"solarSystemId":30009477,"solarSystemName":"Z:2RLO","location":{"x":-21300000000000000000,"y":-477000000000000000,"z":-3990000000000000000}},"30009478":{"solarSystemId":30009478,"solarSystemName":"F:3K62","location":{"x":-21500000000000000000,"y":-562000000000000000,"z":-4190000000000000000}},"30009479":{"solarSystemId":30009479,"solarSystemName":"Y:21VK","location":{"x":-21800000000000000000,"y":-337000000000000000,"z":-3970000000000000000}},"30009480":{"solarSystemId":30009480,"solarSystemName":"Q:2LEV","location":{"x":-21400000000000000000,"y":-760000000000000000,"z":-4300000000000000000}},"30009481":{"solarSystemId":30009481,"solarSystemName":"H:10SA","location":{"x":-21200000000000000000,"y":-596000000000000000,"z":-4320000000000000000}},"30009482":{"solarSystemId":30009482,"solarSystemName":"Y:11N6","location":{"x":-21400000000000000000,"y":-487000000000000000,"z":-4350000000000000000}},"30009483":{"solarSystemId":30009483,"solarSystemName":"H:2T9A","location":{"x":-21800000000000000000,"y":-367000000000000000,"z":-3940000000000000000}},"30009484":{"solarSystemId":30009484,"solarSystemName":"D:6L9T","location":{"x":-21400000000000000000,"y":-598000000000000000,"z":-4390000000000000000}},"30009485":{"solarSystemId":30009485,"solarSystemName":"M:15E0","location":{"x":-21400000000000000000,"y":-602000000000000000,"z":-4240000000000000000}},"30009486":{"solarSystemId":30009486,"solarSystemName":"Q:1A2L","location":{"x":-21200000000000000000,"y":-563000000000000000,"z":-4290000000000000000}},"30009487":{"solarSystemId":30009487,"solarSystemName":"D:ST5K","location":{"x":-21300000000000000000,"y":-443000000000000000,"z":-4080000000000000000}},"30009488":{"solarSystemId":30009488,"solarSystemName":"U:TO02","location":{"x":-21600000000000000000,"y":-201000000000000000,"z":-3810000000000000000}},"30009489":{"solarSystemId":30009489,"solarSystemName":"Q:141T","location":{"x":-21500000000000000000,"y":-542000000000000000,"z":-4090000000000000000}},"30009490":{"solarSystemId":30009490,"solarSystemName":"U:RN6R","location":{"x":-21100000000000000000,"y":-550000000000000000,"z":-4260000000000000000}},"30009491":{"solarSystemId":30009491,"solarSystemName":"Y:L4AS","location":{"x":-21200000000000000000,"y":-488000000000000000,"z":-4380000000000000000}},"30009492":{"solarSystemId":30009492,"solarSystemName":"G:L8AN","location":{"x":-21600000000000000000,"y":-281000000000000000,"z":-4140000000000000000}},"30009493":{"solarSystemId":30009493,"solarSystemName":"Q:15RO","location":{"x":-21600000000000000000,"y":-171000000000000000,"z":-4230000000000000000}},"30009494":{"solarSystemId":30009494,"solarSystemName":"B:197O","location":{"x":-21600000000000000000,"y":-415000000000000000,"z":-4130000000000000000}},"30009495":{"solarSystemId":30009495,"solarSystemName":"H:15IS","location":{"x":-21600000000000000000,"y":-383000000000000000,"z":-3970000000000000000}},"30009496":{"solarSystemId":30009496,"solarSystemName":"J:29TK","location":{"x":-20800000000000000000,"y":-544000000000000000,"z":-3460000000000000000}},"30009497":{"solarSystemId":30009497,"solarSystemName":"Y:1A6L","location":{"x":-20900000000000000000,"y":-617000000000000000,"z":-3380000000000000000}},"30009498":{"solarSystemId":30009498,"solarSystemName":"D:18SN","location":{"x":-20800000000000000000,"y":-732000000000000000,"z":-3450000000000000000}},"30009499":{"solarSystemId":30009499,"solarSystemName":"B:NV83","location":{"x":-20900000000000000000,"y":-665000000000000000,"z":-3510000000000000000}},"30009500":{"solarSystemId":30009500,"solarSystemName":"Y:13N9","location":{"x":-20800000000000000000,"y":-721000000000000000,"z":-3470000000000000000}},"30009501":{"solarSystemId":30009501,"solarSystemName":"Q:141L","location":{"x":-20800000000000000000,"y":-750000000000000000,"z":-3530000000000000000}},"30009502":{"solarSystemId":30009502,"solarSystemName":"Q:1N1O","location":{"x":-20800000000000000000,"y":-511000000000000000,"z":-3470000000000000000}},"30009503":{"solarSystemId":30009503,"solarSystemName":"G:1NII","location":{"x":-20700000000000000000,"y":-828000000000000000,"z":-3410000000000000000}},"30009504":{"solarSystemId":30009504,"solarSystemName":"Q:15SS","location":{"x":-20700000000000000000,"y":-543000000000000000,"z":-3340000000000000000}},"30009505":{"solarSystemId":30009505,"solarSystemName":"G:LORI","location":{"x":-20600000000000000000,"y":-758000000000000000,"z":-3410000000000000000}},"30009506":{"solarSystemId":30009506,"solarSystemName":"U:17RO","location":{"x":-20800000000000000000,"y":-729000000000000000,"z":-3550000000000000000}},"30009507":{"solarSystemId":30009507,"solarSystemName":"U:S64S","location":{"x":-20900000000000000000,"y":-615000000000000000,"z":-3540000000000000000}},"30009508":{"solarSystemId":30009508,"solarSystemName":"J:1464","location":{"x":-20800000000000000000,"y":-706000000000000000,"z":-3380000000000000000}},"30009509":{"solarSystemId":30009509,"solarSystemName":"G:V5IO","location":{"x":-20900000000000000000,"y":-773000000000000000,"z":-3390000000000000000}},"30009510":{"solarSystemId":30009510,"solarSystemName":"J:13RN","location":{"x":-20900000000000000000,"y":-649000000000000000,"z":-3380000000000000000}},"30009511":{"solarSystemId":30009511,"solarSystemName":"Y:S706","location":{"x":-20800000000000000000,"y":-750000000000000000,"z":-3580000000000000000}},"30009512":{"solarSystemId":30009512,"solarSystemName":"B:1AOI","location":{"x":-20900000000000000000,"y":-612000000000000000,"z":-3410000000000000000}},"30009513":{"solarSystemId":30009513,"solarSystemName":"J:1714","location":{"x":-20600000000000000000,"y":-693000000000000000,"z":-3320000000000000000}},"30009514":{"solarSystemId":30009514,"solarSystemName":"M:15ON","location":{"x":-20800000000000000000,"y":-777000000000000000,"z":-3750000000000000000}},"30009515":{"solarSystemId":30009515,"solarSystemName":"F:K0KT","location":{"x":-20800000000000000000,"y":-782000000000000000,"z":-3750000000000000000}},"30009516":{"solarSystemId":30009516,"solarSystemName":"Q:LNSK","location":{"x":-20700000000000000000,"y":-702000000000000000,"z":-3750000000000000000}},"30009517":{"solarSystemId":30009517,"solarSystemName":"Y:16RL","location":{"x":-20800000000000000000,"y":-775000000000000000,"z":-3800000000000000000}},"30009518":{"solarSystemId":30009518,"solarSystemName":"P:TVKV","location":{"x":-20800000000000000000,"y":-667000000000000000,"z":-3860000000000000000}},"30009519":{"solarSystemId":30009519,"solarSystemName":"Z:14V1","location":{"x":-20900000000000000000,"y":-774000000000000000,"z":-3700000000000000000}},"30009520":{"solarSystemId":30009520,"solarSystemName":"P:1178","location":{"x":-20900000000000000000,"y":-891000000000000000,"z":-3820000000000000000}},"30009521":{"solarSystemId":30009521,"solarSystemName":"H:107O","location":{"x":-20700000000000000000,"y":-825000000000000000,"z":-3750000000000000000}},"30009522":{"solarSystemId":30009522,"solarSystemName":"H:171R","location":{"x":-20800000000000000000,"y":-764000000000000000,"z":-3800000000000000000}},"30009523":{"solarSystemId":30009523,"solarSystemName":"D:1424","location":{"x":-20800000000000000000,"y":-803000000000000000,"z":-3650000000000000000}},"30009524":{"solarSystemId":30009524,"solarSystemName":"U:2S5K","location":{"x":-20900000000000000000,"y":-726000000000000000,"z":-3800000000000000000}},"30009525":{"solarSystemId":30009525,"solarSystemName":"U:LA92","location":{"x":-20800000000000000000,"y":-755000000000000000,"z":-3790000000000000000}},"30009526":{"solarSystemId":30009526,"solarSystemName":"F:112L","location":{"x":-20900000000000000000,"y":-753000000000000000,"z":-3740000000000000000}},"30009527":{"solarSystemId":30009527,"solarSystemName":"U:NS3N","location":{"x":-20700000000000000000,"y":-708000000000000000,"z":-3810000000000000000}},"30009528":{"solarSystemId":30009528,"solarSystemName":"Y:168A","location":{"x":-20900000000000000000,"y":-816000000000000000,"z":-3670000000000000000}},"30009529":{"solarSystemId":30009529,"solarSystemName":"U:158N","location":{"x":-20800000000000000000,"y":-758000000000000000,"z":-3670000000000000000}},"30009530":{"solarSystemId":30009530,"solarSystemName":"B:VE3R","location":{"x":-20900000000000000000,"y":-771000000000000000,"z":-3630000000000000000}},"30009531":{"solarSystemId":30009531,"solarSystemName":"J:1I92","location":{"x":-20800000000000000000,"y":-758000000000000000,"z":-3820000000000000000}},"30009532":{"solarSystemId":30009532,"solarSystemName":"D:15O5","location":{"x":-20900000000000000000,"y":-832000000000000000,"z":-3710000000000000000}},"30009533":{"solarSystemId":30009533,"solarSystemName":"M:1666","location":{"x":-20900000000000000000,"y":-707000000000000000,"z":-3780000000000000000}},"30009534":{"solarSystemId":30009534,"solarSystemName":"G:S4O7","location":{"x":-20700000000000000000,"y":-639000000000000000,"z":-3700000000000000000}},"30009535":{"solarSystemId":30009535,"solarSystemName":"Q:1ATS","location":{"x":-20900000000000000000,"y":-715000000000000000,"z":-3620000000000000000}},"30009536":{"solarSystemId":30009536,"solarSystemName":"Y:19IT","location":{"x":-20800000000000000000,"y":-614000000000000000,"z":-3730000000000000000}},"30009537":{"solarSystemId":30009537,"solarSystemName":"M:RETS","location":{"x":-20900000000000000000,"y":-747000000000000000,"z":-3590000000000000000}},"30009538":{"solarSystemId":30009538,"solarSystemName":"M:10O6","location":{"x":-20800000000000000000,"y":-613000000000000000,"z":-3740000000000000000}},"30009539":{"solarSystemId":30009539,"solarSystemName":"Y:L0EK","location":{"x":-20700000000000000000,"y":-489000000000000000,"z":-3580000000000000000}},"30009540":{"solarSystemId":30009540,"solarSystemName":"H:STEA","location":{"x":-20800000000000000000,"y":-596000000000000000,"z":-3580000000000000000}},"30009541":{"solarSystemId":30009541,"solarSystemName":"Q:171L","location":{"x":-20800000000000000000,"y":-613000000000000000,"z":-3690000000000000000}},"30009542":{"solarSystemId":30009542,"solarSystemName":"Z:12SL","location":{"x":-20800000000000000000,"y":-605000000000000000,"z":-3700000000000000000}},"30009543":{"solarSystemId":30009543,"solarSystemName":"B:1444","location":{"x":-20800000000000000000,"y":-588000000000000000,"z":-3650000000000000000}},"30009544":{"solarSystemId":30009544,"solarSystemName":"H:161T","location":{"x":-20800000000000000000,"y":-671000000000000000,"z":-3630000000000000000}},"30009545":{"solarSystemId":30009545,"solarSystemName":"D:12RI","location":{"x":-20700000000000000000,"y":-647000000000000000,"z":-3730000000000000000}},"30009546":{"solarSystemId":30009546,"solarSystemName":"Q:LV5S","location":{"x":-20700000000000000000,"y":-604000000000000000,"z":-3640000000000000000}},"30009547":{"solarSystemId":30009547,"solarSystemName":"M:1102","location":{"x":-20700000000000000000,"y":-594000000000000000,"z":-3690000000000000000}},"30009548":{"solarSystemId":30009548,"solarSystemName":"F:3NT4","location":{"x":-20900000000000000000,"y":-574000000000000000,"z":-3720000000000000000}},"30009549":{"solarSystemId":30009549,"solarSystemName":"Z:2883","location":{"x":-20700000000000000000,"y":-664000000000000000,"z":-3610000000000000000}},"30009550":{"solarSystemId":30009550,"solarSystemName":"J:R65O","location":{"x":-20900000000000000000,"y":-657000000000000000,"z":-3590000000000000000}},"30009551":{"solarSystemId":30009551,"solarSystemName":"M:1IK7","location":{"x":-20600000000000000000,"y":-538000000000000000,"z":-3810000000000000000}},"30009552":{"solarSystemId":30009552,"solarSystemName":"F:12NL","location":{"x":-20800000000000000000,"y":-687000000000000000,"z":-3600000000000000000}},"30009553":{"solarSystemId":30009553,"solarSystemName":"G:LNLA","location":{"x":-20700000000000000000,"y":-576000000000000000,"z":-3690000000000000000}},"30009554":{"solarSystemId":30009554,"solarSystemName":"Q:1I1L","location":{"x":-20700000000000000000,"y":-569000000000000000,"z":-3660000000000000000}},"30009555":{"solarSystemId":30009555,"solarSystemName":"P:16I7","location":{"x":-20800000000000000000,"y":-599000000000000000,"z":-3720000000000000000}},"30009556":{"solarSystemId":30009556,"solarSystemName":"H:NKOO","location":{"x":-20700000000000000000,"y":-539000000000000000,"z":-3810000000000000000}},"30009557":{"solarSystemId":30009557,"solarSystemName":"Y:1142","location":{"x":-20900000000000000000,"y":-606000000000000000,"z":-3590000000000000000}},"30009558":{"solarSystemId":30009558,"solarSystemName":"F:1IS6","location":{"x":-20800000000000000000,"y":-410000000000000000,"z":-3660000000000000000}},"30009559":{"solarSystemId":30009559,"solarSystemName":"Y:24K4","location":{"x":-20500000000000000000,"y":-417000000000000000,"z":-3750000000000000000}},"30009560":{"solarSystemId":30009560,"solarSystemName":"P:13O0","location":{"x":-20600000000000000000,"y":-371000000000000000,"z":-3520000000000000000}},"30009561":{"solarSystemId":30009561,"solarSystemName":"H:KL9I","location":{"x":-20400000000000000000,"y":-341000000000000000,"z":-3490000000000000000}},"30009562":{"solarSystemId":30009562,"solarSystemName":"H:194I","location":{"x":-20600000000000000000,"y":-387000000000000000,"z":-3590000000000000000}},"30009563":{"solarSystemId":30009563,"solarSystemName":"Z:1383","location":{"x":-20600000000000000000,"y":-466000000000000000,"z":-3590000000000000000}},"30009564":{"solarSystemId":30009564,"solarSystemName":"Z:13S3","location":{"x":-20700000000000000000,"y":-509000000000000000,"z":-3680000000000000000}},"30009565":{"solarSystemId":30009565,"solarSystemName":"D:1236","location":{"x":-20500000000000000000,"y":-331000000000000000,"z":-3370000000000000000}},"30009566":{"solarSystemId":30009566,"solarSystemName":"M:19RK","location":{"x":-20500000000000000000,"y":-381000000000000000,"z":-3590000000000000000}},"30009567":{"solarSystemId":30009567,"solarSystemName":"G:E74S","location":{"x":-20600000000000000000,"y":-550000000000000000,"z":-3660000000000000000}},"30009568":{"solarSystemId":30009568,"solarSystemName":"G:143R","location":{"x":-20700000000000000000,"y":-286000000000000000,"z":-3620000000000000000}},"30009569":{"solarSystemId":30009569,"solarSystemName":"P:38L5","location":{"x":-20600000000000000000,"y":-476000000000000000,"z":-3660000000000000000}},"30009570":{"solarSystemId":30009570,"solarSystemName":"B:TRNK","location":{"x":-20600000000000000000,"y":-382000000000000000,"z":-3430000000000000000}},"30009571":{"solarSystemId":30009571,"solarSystemName":"Y:158I","location":{"x":-20700000000000000000,"y":-236000000000000000,"z":-3650000000000000000}},"30009572":{"solarSystemId":30009572,"solarSystemName":"M:1351","location":{"x":-20700000000000000000,"y":-260000000000000000,"z":-3480000000000000000}},"30009573":{"solarSystemId":30009573,"solarSystemName":"P:1096","location":{"x":-20500000000000000000,"y":-398000000000000000,"z":-3720000000000000000}},"30009574":{"solarSystemId":30009574,"solarSystemName":"H:1606","location":{"x":-20800000000000000000,"y":-408000000000000000,"z":-3420000000000000000}},"30009575":{"solarSystemId":30009575,"solarSystemName":"H:13T3","location":{"x":-20700000000000000000,"y":-344000000000000000,"z":-3450000000000000000}},"30009576":{"solarSystemId":30009576,"solarSystemName":"P:1O29","location":{"x":-20500000000000000000,"y":-601000000000000000,"z":-3670000000000000000}},"30009577":{"solarSystemId":30009577,"solarSystemName":"Y:181R","location":{"x":-20600000000000000000,"y":-507000000000000000,"z":-3450000000000000000}},"30009578":{"solarSystemId":30009578,"solarSystemName":"Z:1S9S","location":{"x":-21100000000000000000,"y":-519000000000000000,"z":-3420000000000000000}},"30009579":{"solarSystemId":30009579,"solarSystemName":"D:117I","location":{"x":-20900000000000000000,"y":-524000000000000000,"z":-3650000000000000000}},"30009580":{"solarSystemId":30009580,"solarSystemName":"Q:16S1","location":{"x":-21000000000000000000,"y":-809000000000000000,"z":-3630000000000000000}},"30009581":{"solarSystemId":30009581,"solarSystemName":"M:K86K","location":{"x":-21000000000000000000,"y":-600000000000000000,"z":-3430000000000000000}},"30009582":{"solarSystemId":30009582,"solarSystemName":"Z:1AKR","location":{"x":-21200000000000000000,"y":-552000000000000000,"z":-3510000000000000000}},"30009583":{"solarSystemId":30009583,"solarSystemName":"F:T47L","location":{"x":-21000000000000000000,"y":-584000000000000000,"z":-3660000000000000000}},"30009584":{"solarSystemId":30009584,"solarSystemName":"H:VV9O","location":{"x":-21000000000000000000,"y":-746000000000000000,"z":-3730000000000000000}},"30009585":{"solarSystemId":30009585,"solarSystemName":"U:129R","location":{"x":-21000000000000000000,"y":-802000000000000000,"z":-3640000000000000000}},"30009586":{"solarSystemId":30009586,"solarSystemName":"M:1O3E","location":{"x":-21000000000000000000,"y":-629000000000000000,"z":-3600000000000000000}},"30009587":{"solarSystemId":30009587,"solarSystemName":"U:12A6","location":{"x":-21000000000000000000,"y":-712000000000000000,"z":-3540000000000000000}},"30009588":{"solarSystemId":30009588,"solarSystemName":"G:11K4","location":{"x":-21000000000000000000,"y":-707000000000000000,"z":-3780000000000000000}},"30009589":{"solarSystemId":30009589,"solarSystemName":"D:29O2","location":{"x":-21000000000000000000,"y":-661000000000000000,"z":-3540000000000000000}},"30009590":{"solarSystemId":30009590,"solarSystemName":"F:19LO","location":{"x":-20900000000000000000,"y":-747000000000000000,"z":-3580000000000000000}},"30009591":{"solarSystemId":30009591,"solarSystemName":"P:11NV","location":{"x":-21000000000000000000,"y":-687000000000000000,"z":-3670000000000000000}},"30009592":{"solarSystemId":30009592,"solarSystemName":"Y:1948","location":{"x":-21000000000000000000,"y":-795000000000000000,"z":-3640000000000000000}},"30009593":{"solarSystemId":30009593,"solarSystemName":"Y:13E9","location":{"x":-21000000000000000000,"y":-704000000000000000,"z":-3480000000000000000}},"30009594":{"solarSystemId":30009594,"solarSystemName":"D:1989","location":{"x":-21000000000000000000,"y":-678000000000000000,"z":-3550000000000000000}},"30009595":{"solarSystemId":30009595,"solarSystemName":"J:14O2","location":{"x":-20900000000000000000,"y":-667000000000000000,"z":-3720000000000000000}},"30009596":{"solarSystemId":30009596,"solarSystemName":"Z:TRE9","location":{"x":-20900000000000000000,"y":-474000000000000000,"z":-3700000000000000000}},"30009597":{"solarSystemId":30009597,"solarSystemName":"B:11LO","location":{"x":-21000000000000000000,"y":-750000000000000000,"z":-3560000000000000000}},"30009598":{"solarSystemId":30009598,"solarSystemName":"P:T438","location":{"x":-21000000000000000000,"y":-1480000000000000000,"z":-2530000000000000000}},"30009599":{"solarSystemId":30009599,"solarSystemName":"G:VRTN","location":{"x":-21400000000000000000,"y":-1870000000000000000,"z":-2620000000000000000}},"30009600":{"solarSystemId":30009600,"solarSystemName":"P:3N4I","location":{"x":-21800000000000000000,"y":-1150000000000000000,"z":-2770000000000000000}},"30009601":{"solarSystemId":30009601,"solarSystemName":"M:K68A","location":{"x":-21900000000000000000,"y":-1200000000000000000,"z":-2500000000000000000}},"30009602":{"solarSystemId":30009602,"solarSystemName":"H:S31L","location":{"x":-21600000000000000000,"y":-968000000000000000,"z":-2540000000000000000}},"30009603":{"solarSystemId":30009603,"solarSystemName":"Z:T538","location":{"x":-21200000000000000000,"y":-1060000000000000000,"z":-2400000000000000000}},"30009604":{"solarSystemId":30009604,"solarSystemName":"J:2T1E","location":{"x":-20900000000000000000,"y":-1300000000000000000,"z":-1910000000000000000}},"30009605":{"solarSystemId":30009605,"solarSystemName":"Z:1N26","location":{"x":-21700000000000000000,"y":-1210000000000000000,"z":-2480000000000000000}},"30009606":{"solarSystemId":30009606,"solarSystemName":"Q:14LS","location":{"x":-21200000000000000000,"y":-1060000000000000000,"z":-2280000000000000000}},"30009607":{"solarSystemId":30009607,"solarSystemName":"Y:4TS8","location":{"x":-21200000000000000000,"y":-1010000000000000000,"z":-2670000000000000000}},"30009608":{"solarSystemId":30009608,"solarSystemName":"U:L4LS","location":{"x":-22000000000000000000,"y":-1450000000000000000,"z":-2810000000000000000}},"30009609":{"solarSystemId":30009609,"solarSystemName":"Q:16TN","location":{"x":-21500000000000000000,"y":-1830000000000000000,"z":-2830000000000000000}},"30009610":{"solarSystemId":30009610,"solarSystemName":"P:1988","location":{"x":-21800000000000000000,"y":-1390000000000000000,"z":-3010000000000000000}},"30009611":{"solarSystemId":30009611,"solarSystemName":"Z:10KA","location":{"x":-21800000000000000000,"y":-1260000000000000000,"z":-2660000000000000000}},"30009612":{"solarSystemId":30009612,"solarSystemName":"Y:115R","location":{"x":-21500000000000000000,"y":-1380000000000000000,"z":-2600000000000000000}},"30009613":{"solarSystemId":30009613,"solarSystemName":"Y:1O24","location":{"x":-21100000000000000000,"y":-1360000000000000000,"z":-2090000000000000000}},"30009614":{"solarSystemId":30009614,"solarSystemName":"Y:193V","location":{"x":-21300000000000000000,"y":-1480000000000000000,"z":-2180000000000000000}},"30009615":{"solarSystemId":30009615,"solarSystemName":"B:N2E5","location":{"x":-21600000000000000000,"y":-1020000000000000000,"z":-2700000000000000000}},"30009616":{"solarSystemId":30009616,"solarSystemName":"J:1LOO","location":{"x":-11500000000000000000,"y":263000000000000000,"z":-6950000000000000000}},"30009617":{"solarSystemId":30009617,"solarSystemName":"H:28SE","location":{"x":-11400000000000000000,"y":213000000000000000,"z":-6730000000000000000}},"30009618":{"solarSystemId":30009618,"solarSystemName":"Q:2OL6","location":{"x":-11500000000000000000,"y":525000000000000000,"z":-6580000000000000000}},"30009619":{"solarSystemId":30009619,"solarSystemName":"D:17VA","location":{"x":-11300000000000000000,"y":481000000000000000,"z":-6410000000000000000}},"30009620":{"solarSystemId":30009620,"solarSystemName":"M:27E2","location":{"x":-11300000000000000000,"y":346000000000000000,"z":-6560000000000000000}},"30009621":{"solarSystemId":30009621,"solarSystemName":"B:206O","location":{"x":-11500000000000000000,"y":191000000000000000,"z":-6740000000000000000}},"30009622":{"solarSystemId":30009622,"solarSystemName":"Z:3205","location":{"x":-11100000000000000000,"y":328000000000000000,"z":-6530000000000000000}},"30009623":{"solarSystemId":30009623,"solarSystemName":"Q:1VEN","location":{"x":-11300000000000000000,"y":259000000000000000,"z":-6620000000000000000}},"30009624":{"solarSystemId":30009624,"solarSystemName":"M:1O63","location":{"x":-11400000000000000000,"y":209000000000000000,"z":-6990000000000000000}},"30009625":{"solarSystemId":30009625,"solarSystemName":"B:20I5","location":{"x":-11700000000000000000,"y":248000000000000000,"z":-7080000000000000000}},"30009626":{"solarSystemId":30009626,"solarSystemName":"F:2S24","location":{"x":-11300000000000000000,"y":366000000000000000,"z":-6640000000000000000}},"30009627":{"solarSystemId":30009627,"solarSystemName":"Y:23VT","location":{"x":-11400000000000000000,"y":199000000000000000,"z":-6740000000000000000}},"30009628":{"solarSystemId":30009628,"solarSystemName":"H:2A3K","location":{"x":-11600000000000000000,"y":213000000000000000,"z":-6720000000000000000}},"30009629":{"solarSystemId":30009629,"solarSystemName":"H:1K1L","location":{"x":-11400000000000000000,"y":461000000000000000,"z":-6520000000000000000}},"30009630":{"solarSystemId":30009630,"solarSystemName":"Y:2628","location":{"x":-11200000000000000000,"y":350000000000000000,"z":-6580000000000000000}},"30009631":{"solarSystemId":30009631,"solarSystemName":"P:1AIN","location":{"x":-11400000000000000000,"y":428000000000000000,"z":-6970000000000000000}},"30009632":{"solarSystemId":30009632,"solarSystemName":"G:322R","location":{"x":-11400000000000000000,"y":310000000000000000,"z":-6980000000000000000}},"30009633":{"solarSystemId":30009633,"solarSystemName":"Y:30AA","location":{"x":-11700000000000000000,"y":203000000000000000,"z":-7060000000000000000}},"30009634":{"solarSystemId":30009634,"solarSystemName":"J:241N","location":{"x":-11400000000000000000,"y":356000000000000000,"z":-6990000000000000000}},"30009635":{"solarSystemId":30009635,"solarSystemName":"Z:2IO7","location":{"x":-11600000000000000000,"y":319000000000000000,"z":-6810000000000000000}},"30009636":{"solarSystemId":30009636,"solarSystemName":"Q:2A6S","location":{"x":-11400000000000000000,"y":337000000000000000,"z":-6750000000000000000}},"30009637":{"solarSystemId":30009637,"solarSystemName":"Q:30K3","location":{"x":-11200000000000000000,"y":289000000000000000,"z":-6550000000000000000}},"30009638":{"solarSystemId":30009638,"solarSystemName":"Q:20E0","location":{"x":-11400000000000000000,"y":334000000000000000,"z":-6710000000000000000}},"30009639":{"solarSystemId":30009639,"solarSystemName":"P:33TV","location":{"x":-10900000000000000000,"y":-37200000000000000,"z":-6960000000000000000}},"30009640":{"solarSystemId":30009640,"solarSystemName":"D:2479","location":{"x":-10900000000000000000,"y":-62200000000000000,"z":-7130000000000000000}},"30009641":{"solarSystemId":30009641,"solarSystemName":"Z:3522","location":{"x":-11400000000000000000,"y":120000000000000000,"z":-7000000000000000000}},"30009642":{"solarSystemId":30009642,"solarSystemName":"M:2R3N","location":{"x":-10900000000000000000,"y":330000000000000000,"z":-7060000000000000000}},"30009643":{"solarSystemId":30009643,"solarSystemName":"F:1IRV","location":{"x":-11100000000000000000,"y":53200000000000000,"z":-7040000000000000000}},"30009644":{"solarSystemId":30009644,"solarSystemName":"Z:2TO2","location":{"x":-10900000000000000000,"y":312000000000000000,"z":-7110000000000000000}},"30009645":{"solarSystemId":30009645,"solarSystemName":"P:16KE","location":{"x":-11000000000000000000,"y":349000000000000000,"z":-7040000000000000000}},"30009646":{"solarSystemId":30009646,"solarSystemName":"D:2N65","location":{"x":-11000000000000000000,"y":147000000000000000,"z":-6730000000000000000}},"30009647":{"solarSystemId":30009647,"solarSystemName":"B:22V0","location":{"x":-11000000000000000000,"y":363000000000000000,"z":-7070000000000000000}},"30009648":{"solarSystemId":30009648,"solarSystemName":"G:24V1","location":{"x":-10900000000000000000,"y":334000000000000000,"z":-7040000000000000000}},"30009649":{"solarSystemId":30009649,"solarSystemName":"F:N1L5","location":{"x":-10800000000000000000,"y":278000000000000000,"z":-7050000000000000000}},"30009650":{"solarSystemId":30009650,"solarSystemName":"F:1S32","location":{"x":-11000000000000000000,"y":371000000000000000,"z":-6990000000000000000}},"30009651":{"solarSystemId":30009651,"solarSystemName":"Q:2II8","location":{"x":-11000000000000000000,"y":93000000000000000,"z":-6910000000000000000}},"30009652":{"solarSystemId":30009652,"solarSystemName":"H:2NR9","location":{"x":-11000000000000000000,"y":305000000000000000,"z":-6970000000000000000}},"30009653":{"solarSystemId":30009653,"solarSystemName":"G:22K1","location":{"x":-10900000000000000000,"y":249000000000000000,"z":-7100000000000000000}},"30009654":{"solarSystemId":30009654,"solarSystemName":"J:2365","location":{"x":-10900000000000000000,"y":386000000000000000,"z":-6950000000000000000}},"30009655":{"solarSystemId":30009655,"solarSystemName":"F:26L1","location":{"x":-11000000000000000000,"y":250000000000000000,"z":-7130000000000000000}},"30009656":{"solarSystemId":30009656,"solarSystemName":"P:2K8A","location":{"x":-11300000000000000000,"y":-212000000000000000,"z":-7080000000000000000}},"30009657":{"solarSystemId":30009657,"solarSystemName":"F:27OR","location":{"x":-11000000000000000000,"y":276000000000000000,"z":-7170000000000000000}},"30009658":{"solarSystemId":30009658,"solarSystemName":"M:28V9","location":{"x":-11000000000000000000,"y":166000000000000000,"z":-6990000000000000000}},"30009659":{"solarSystemId":30009659,"solarSystemName":"Y:2E6K","location":{"x":-11200000000000000000,"y":95100000000000000,"z":-7190000000000000000}},"30009660":{"solarSystemId":30009660,"solarSystemName":"Q:3384","location":{"x":-11300000000000000000,"y":284000000000000000,"z":-7160000000000000000}},"30009661":{"solarSystemId":30009661,"solarSystemName":"P:23L5","location":{"x":-11300000000000000000,"y":450000000000000000,"z":-7110000000000000000}},"30009662":{"solarSystemId":30009662,"solarSystemName":"U:1KTN","location":{"x":-11400000000000000000,"y":345000000000000000,"z":-7190000000000000000}},"30009663":{"solarSystemId":30009663,"solarSystemName":"Z:1N5V","location":{"x":-11300000000000000000,"y":312000000000000000,"z":-7200000000000000000}},"30009664":{"solarSystemId":30009664,"solarSystemName":"Z:2TA4","location":{"x":-11200000000000000000,"y":343000000000000000,"z":-7130000000000000000}},"30009665":{"solarSystemId":30009665,"solarSystemName":"D:1SA5","location":{"x":-11400000000000000000,"y":337000000000000000,"z":-7130000000000000000}},"30009666":{"solarSystemId":30009666,"solarSystemName":"F:2K5V","location":{"x":-11200000000000000000,"y":523000000000000000,"z":-7180000000000000000}},"30009667":{"solarSystemId":30009667,"solarSystemName":"D:31NR","location":{"x":-11200000000000000000,"y":494000000000000000,"z":-7250000000000000000}},"30009668":{"solarSystemId":30009668,"solarSystemName":"Z:2574","location":{"x":-11500000000000000000,"y":395000000000000000,"z":-7110000000000000000}},"30009669":{"solarSystemId":30009669,"solarSystemName":"B:NN9S","location":{"x":-11400000000000000000,"y":320000000000000000,"z":-7080000000000000000}},"30009670":{"solarSystemId":30009670,"solarSystemName":"D:23EK","location":{"x":-11300000000000000000,"y":356000000000000000,"z":-7240000000000000000}},"30009671":{"solarSystemId":30009671,"solarSystemName":"J:2ITI","location":{"x":-11300000000000000000,"y":436000000000000000,"z":-7250000000000000000}},"30009672":{"solarSystemId":30009672,"solarSystemName":"Q:29RV","location":{"x":-11300000000000000000,"y":362000000000000000,"z":-7030000000000000000}},"30009673":{"solarSystemId":30009673,"solarSystemName":"D:2SRS","location":{"x":-11200000000000000000,"y":315000000000000000,"z":-7190000000000000000}},"30009674":{"solarSystemId":30009674,"solarSystemName":"U:2KV6","location":{"x":-11300000000000000000,"y":397000000000000000,"z":-7250000000000000000}},"30009675":{"solarSystemId":30009675,"solarSystemName":"P:2OA6","location":{"x":-11300000000000000000,"y":365000000000000000,"z":-7070000000000000000}},"30009676":{"solarSystemId":30009676,"solarSystemName":"F:2V2V","location":{"x":-11500000000000000000,"y":316000000000000000,"z":-7040000000000000000}},"30009677":{"solarSystemId":30009677,"solarSystemName":"M:2EIA","location":{"x":-11300000000000000000,"y":517000000000000000,"z":-7270000000000000000}},"30009678":{"solarSystemId":30009678,"solarSystemName":"J:26LO","location":{"x":-10700000000000000000,"y":444000000000000000,"z":-7010000000000000000}},"30009679":{"solarSystemId":30009679,"solarSystemName":"Z:26K1","location":{"x":-10600000000000000000,"y":279000000000000000,"z":-6860000000000000000}},"30009680":{"solarSystemId":30009680,"solarSystemName":"Y:1K09","location":{"x":-10800000000000000000,"y":388000000000000000,"z":-6930000000000000000}},"30009681":{"solarSystemId":30009681,"solarSystemName":"Q:3411","location":{"x":-10700000000000000000,"y":200000000000000000,"z":-6810000000000000000}},"30009682":{"solarSystemId":30009682,"solarSystemName":"M:24TE","location":{"x":-10700000000000000000,"y":313000000000000000,"z":-6990000000000000000}},"30009683":{"solarSystemId":30009683,"solarSystemName":"U:INV1","location":{"x":-10600000000000000000,"y":486000000000000000,"z":-7010000000000000000}},"30009684":{"solarSystemId":30009684,"solarSystemName":"P:TEAO","location":{"x":-10700000000000000000,"y":514000000000000000,"z":-7040000000000000000}},"30009685":{"solarSystemId":30009685,"solarSystemName":"J:2KR3","location":{"x":-10900000000000000000,"y":322000000000000000,"z":-6950000000000000000}},"30009686":{"solarSystemId":30009686,"solarSystemName":"H:2I48","location":{"x":-10600000000000000000,"y":323000000000000000,"z":-6890000000000000000}},"30009687":{"solarSystemId":30009687,"solarSystemName":"D:1LRO","location":{"x":-10600000000000000000,"y":248000000000000000,"z":-7030000000000000000}},"30009688":{"solarSystemId":30009688,"solarSystemName":"P:34AS","location":{"x":-10700000000000000000,"y":257000000000000000,"z":-6950000000000000000}},"30009689":{"solarSystemId":30009689,"solarSystemName":"H:18SK","location":{"x":-10700000000000000000,"y":367000000000000000,"z":-6970000000000000000}},"30009690":{"solarSystemId":30009690,"solarSystemName":"H:295S","location":{"x":-10700000000000000000,"y":227000000000000000,"z":-6870000000000000000}},"30009691":{"solarSystemId":30009691,"solarSystemName":"H:N1SR","location":{"x":-10700000000000000000,"y":295000000000000000,"z":-6840000000000000000}},"30009692":{"solarSystemId":30009692,"solarSystemName":"D:1L4S","location":{"x":-10700000000000000000,"y":183000000000000000,"z":-6870000000000000000}},"30009693":{"solarSystemId":30009693,"solarSystemName":"B:3VT6","location":{"x":-10600000000000000000,"y":272000000000000000,"z":-6990000000000000000}},"30009694":{"solarSystemId":30009694,"solarSystemName":"M:1OT4","location":{"x":-10700000000000000000,"y":329000000000000000,"z":-7070000000000000000}},"30009695":{"solarSystemId":30009695,"solarSystemName":"Y:20OI","location":{"x":-10700000000000000000,"y":220000000000000000,"z":-6970000000000000000}},"30009696":{"solarSystemId":30009696,"solarSystemName":"Y:252T","location":{"x":-10800000000000000000,"y":270000000000000000,"z":-6920000000000000000}},"30009697":{"solarSystemId":30009697,"solarSystemName":"G:243O","location":{"x":-10700000000000000000,"y":409000000000000000,"z":-6970000000000000000}},"30009698":{"solarSystemId":30009698,"solarSystemName":"Y:25TL","location":{"x":-10700000000000000000,"y":259000000000000000,"z":-6810000000000000000}},"30009699":{"solarSystemId":30009699,"solarSystemName":"B:2T2R","location":{"x":-10800000000000000000,"y":395000000000000000,"z":-6980000000000000000}},"30009700":{"solarSystemId":30009700,"solarSystemName":"U:VA6L","location":{"x":-10700000000000000000,"y":172000000000000000,"z":-7070000000000000000}},"30009701":{"solarSystemId":30009701,"solarSystemName":"F:1VTK","location":{"x":-10700000000000000000,"y":253000000000000000,"z":-6890000000000000000}},"30009702":{"solarSystemId":30009702,"solarSystemName":"Y:295K","location":{"x":-10600000000000000000,"y":331000000000000000,"z":-7120000000000000000}},"30009703":{"solarSystemId":30009703,"solarSystemName":"Q:AL9N","location":{"x":-10700000000000000000,"y":300000000000000000,"z":-7150000000000000000}},"30009704":{"solarSystemId":30009704,"solarSystemName":"B:R3NN","location":{"x":-10600000000000000000,"y":382000000000000000,"z":-7200000000000000000}},"30009705":{"solarSystemId":30009705,"solarSystemName":"Z:1V1L","location":{"x":-10600000000000000000,"y":347000000000000000,"z":-7140000000000000000}},"30009706":{"solarSystemId":30009706,"solarSystemName":"G:V3KE","location":{"x":-10700000000000000000,"y":405000000000000000,"z":-7150000000000000000}},"30009707":{"solarSystemId":30009707,"solarSystemName":"H:21L9","location":{"x":-10600000000000000000,"y":272000000000000000,"z":-7080000000000000000}},"30009708":{"solarSystemId":30009708,"solarSystemName":"D:1T9I","location":{"x":-10600000000000000000,"y":162000000000000000,"z":-7090000000000000000}},"30009709":{"solarSystemId":30009709,"solarSystemName":"G:O9A0","location":{"x":-10700000000000000000,"y":378000000000000000,"z":-7150000000000000000}},"30009710":{"solarSystemId":30009710,"solarSystemName":"Y:1686","location":{"x":-10500000000000000000,"y":293000000000000000,"z":-7300000000000000000}},"30009711":{"solarSystemId":30009711,"solarSystemName":"U:2LIN","location":{"x":-10500000000000000000,"y":293000000000000000,"z":-7220000000000000000}},"30009712":{"solarSystemId":30009712,"solarSystemName":"H:1TR1","location":{"x":-10700000000000000000,"y":346000000000000000,"z":-7200000000000000000}},"30009713":{"solarSystemId":30009713,"solarSystemName":"Q:339E","location":{"x":-10500000000000000000,"y":156000000000000000,"z":-7270000000000000000}},"30009714":{"solarSystemId":30009714,"solarSystemName":"G:1677","location":{"x":-10700000000000000000,"y":271000000000000000,"z":-7420000000000000000}},"30009715":{"solarSystemId":30009715,"solarSystemName":"Q:249I","location":{"x":-10600000000000000000,"y":287000000000000000,"z":-7200000000000000000}},"30009716":{"solarSystemId":30009716,"solarSystemName":"F:1LI2","location":{"x":-10600000000000000000,"y":433000000000000000,"z":-7200000000000000000}},"30009717":{"solarSystemId":30009717,"solarSystemName":"H:S9AN","location":{"x":-10700000000000000000,"y":522000000000000000,"z":-7100000000000000000}},"30009718":{"solarSystemId":30009718,"solarSystemName":"U:1T99","location":{"x":-10700000000000000000,"y":251000000000000000,"z":-7250000000000000000}},"30009719":{"solarSystemId":30009719,"solarSystemName":"Z:12NE","location":{"x":-10800000000000000000,"y":401000000000000000,"z":-7290000000000000000}},"30009720":{"solarSystemId":30009720,"solarSystemName":"D:1AVS","location":{"x":-10700000000000000000,"y":284000000000000000,"z":-7140000000000000000}},"30009721":{"solarSystemId":30009721,"solarSystemName":"P:25I7","location":{"x":-10500000000000000000,"y":621000000000000000,"z":-6710000000000000000}},"30009722":{"solarSystemId":30009722,"solarSystemName":"D:30S3","location":{"x":-10300000000000000000,"y":701000000000000000,"z":-6780000000000000000}},"30009723":{"solarSystemId":30009723,"solarSystemName":"P:21R1","location":{"x":-10300000000000000000,"y":305000000000000000,"z":-6610000000000000000}},"30009724":{"solarSystemId":30009724,"solarSystemName":"D:27TE","location":{"x":-10200000000000000000,"y":445000000000000000,"z":-6750000000000000000}},"30009725":{"solarSystemId":30009725,"solarSystemName":"H:21KT","location":{"x":-9950000000000000000,"y":182000000000000000,"z":-6620000000000000000}},"30009726":{"solarSystemId":30009726,"solarSystemName":"H:21E7","location":{"x":-10200000000000000000,"y":425000000000000000,"z":-6760000000000000000}},"30009727":{"solarSystemId":30009727,"solarSystemName":"U:31AR","location":{"x":-10500000000000000000,"y":518000000000000000,"z":-6630000000000000000}},"30009728":{"solarSystemId":30009728,"solarSystemName":"H:1249","location":{"x":-10100000000000000000,"y":127000000000000000,"z":-6690000000000000000}},"30009729":{"solarSystemId":30009729,"solarSystemName":"G:1R4R","location":{"x":-10200000000000000000,"y":291000000000000000,"z":-6690000000000000000}},"30009730":{"solarSystemId":30009730,"solarSystemName":"F:28TL","location":{"x":-10200000000000000000,"y":245000000000000000,"z":-6940000000000000000}},"30009731":{"solarSystemId":30009731,"solarSystemName":"J:351O","location":{"x":-10400000000000000000,"y":523000000000000000,"z":-6660000000000000000}},"30009732":{"solarSystemId":30009732,"solarSystemName":"P:2805","location":{"x":-10200000000000000000,"y":380000000000000000,"z":-6840000000000000000}},"30009733":{"solarSystemId":30009733,"solarSystemName":"P:259K","location":{"x":-10100000000000000000,"y":341000000000000000,"z":-7080000000000000000}},"30009734":{"solarSystemId":30009734,"solarSystemName":"J:32EN","location":{"x":-10300000000000000000,"y":229000000000000000,"z":-6870000000000000000}},"30009735":{"solarSystemId":30009735,"solarSystemName":"B:3513","location":{"x":-10300000000000000000,"y":256000000000000000,"z":-6760000000000000000}},"30009736":{"solarSystemId":30009736,"solarSystemName":"D:14A3","location":{"x":-10200000000000000000,"y":232000000000000000,"z":-6920000000000000000}},"30009737":{"solarSystemId":30009737,"solarSystemName":"Z:2344","location":{"x":-10200000000000000000,"y":148000000000000000,"z":-6780000000000000000}},"30009738":{"solarSystemId":30009738,"solarSystemName":"B:43L1","location":{"x":-10000000000000000000,"y":100000000000000000,"z":-6670000000000000000}},"30009739":{"solarSystemId":30009739,"solarSystemName":"J:2875","location":{"x":-10500000000000000000,"y":250000000000000000,"z":-7130000000000000000}},"30009740":{"solarSystemId":30009740,"solarSystemName":"Z:34L5","location":{"x":-10500000000000000000,"y":292000000000000000,"z":-6950000000000000000}},"30009741":{"solarSystemId":30009741,"solarSystemName":"P:2415","location":{"x":-10400000000000000000,"y":274000000000000000,"z":-6920000000000000000}},"30009742":{"solarSystemId":30009742,"solarSystemName":"G:VS83","location":{"x":-10300000000000000000,"y":278000000000000000,"z":-6980000000000000000}},"30009743":{"solarSystemId":30009743,"solarSystemName":"M:2K2V","location":{"x":-10400000000000000000,"y":385000000000000000,"z":-7040000000000000000}},"30009744":{"solarSystemId":30009744,"solarSystemName":"J:2TRK","location":{"x":-10300000000000000000,"y":291000000000000000,"z":-7190000000000000000}},"30009745":{"solarSystemId":30009745,"solarSystemName":"G:29NS","location":{"x":-10300000000000000000,"y":391000000000000000,"z":-7040000000000000000}},"30009746":{"solarSystemId":30009746,"solarSystemName":"G:1N19","location":{"x":-10500000000000000000,"y":356000000000000000,"z":-7020000000000000000}},"30009747":{"solarSystemId":30009747,"solarSystemName":"Q:2449","location":{"x":-10300000000000000000,"y":308000000000000000,"z":-6950000000000000000}},"30009748":{"solarSystemId":30009748,"solarSystemName":"F:29E7","location":{"x":-10400000000000000000,"y":310000000000000000,"z":-7090000000000000000}},"30009749":{"solarSystemId":30009749,"solarSystemName":"F:SL8S","location":{"x":-10400000000000000000,"y":223000000000000000,"z":-7030000000000000000}},"30009750":{"solarSystemId":30009750,"solarSystemName":"F:25E7","location":{"x":-10300000000000000000,"y":274000000000000000,"z":-6940000000000000000}},"30009751":{"solarSystemId":30009751,"solarSystemName":"B:24A2","location":{"x":-10400000000000000000,"y":271000000000000000,"z":-7140000000000000000}},"30009752":{"solarSystemId":30009752,"solarSystemName":"U:NV9E","location":{"x":-10300000000000000000,"y":322000000000000000,"z":-7130000000000000000}},"30009753":{"solarSystemId":30009753,"solarSystemName":"P:T0N1","location":{"x":-10400000000000000000,"y":384000000000000000,"z":-7030000000000000000}},"30009754":{"solarSystemId":30009754,"solarSystemName":"F:3156","location":{"x":-10500000000000000000,"y":313000000000000000,"z":-7070000000000000000}},"30009755":{"solarSystemId":30009755,"solarSystemName":"Y:3S22","location":{"x":-10400000000000000000,"y":306000000000000000,"z":-7030000000000000000}},"30009756":{"solarSystemId":30009756,"solarSystemName":"D:224N","location":{"x":-10300000000000000000,"y":349000000000000000,"z":-7140000000000000000}},"30009757":{"solarSystemId":30009757,"solarSystemName":"F:1VV5","location":{"x":-10500000000000000000,"y":347000000000000000,"z":-6970000000000000000}},"30009758":{"solarSystemId":30009758,"solarSystemName":"Y:2SVN","location":{"x":-12000000000000000000,"y":2710000000000000000,"z":-8000000000000000000}},"30009759":{"solarSystemId":30009759,"solarSystemName":"M:SV48","location":{"x":-11900000000000000000,"y":2270000000000000000,"z":-10500000000000000000}},"30009760":{"solarSystemId":30009760,"solarSystemName":"Q:26K0","location":{"x":-12200000000000000000,"y":2620000000000000000,"z":-9930000000000000000}},"30009761":{"solarSystemId":30009761,"solarSystemName":"Y:3267","location":{"x":-11000000000000000000,"y":2300000000000000000,"z":-10200000000000000000}},"30009762":{"solarSystemId":30009762,"solarSystemName":"M:2KSV","location":{"x":-10600000000000000000,"y":2080000000000000000,"z":-11300000000000000000}},"30009763":{"solarSystemId":30009763,"solarSystemName":"F:2E51","location":{"x":-11200000000000000000,"y":1840000000000000000,"z":-12200000000000000000}},"30009764":{"solarSystemId":30009764,"solarSystemName":"D:4VAN","location":{"x":-12200000000000000000,"y":3000000000000000000,"z":-9650000000000000000}},"30009765":{"solarSystemId":30009765,"solarSystemName":"F:T61S","location":{"x":-10700000000000000000,"y":1390000000000000000,"z":-11300000000000000000}},"30009766":{"solarSystemId":30009766,"solarSystemName":"Q:3NI5","location":{"x":-11000000000000000000,"y":1000000000000000000,"z":-10700000000000000000}},"30009767":{"solarSystemId":30009767,"solarSystemName":"J:3743","location":{"x":-11100000000000000000,"y":1140000000000000000,"z":-10900000000000000000}},"30009768":{"solarSystemId":30009768,"solarSystemName":"Q:2SRV","location":{"x":-12300000000000000000,"y":2890000000000000000,"z":-8590000000000000000}},"30009769":{"solarSystemId":30009769,"solarSystemName":"D:16T2","location":{"x":-11100000000000000000,"y":1340000000000000000,"z":-12600000000000000000}},"30009770":{"solarSystemId":30009770,"solarSystemName":"Y:AKN2","location":{"x":-11000000000000000000,"y":1250000000000000000,"z":-9500000000000000000}},"30009771":{"solarSystemId":30009771,"solarSystemName":"H:1V92","location":{"x":-11100000000000000000,"y":783000000000000000,"z":-9730000000000000000}},"30009772":{"solarSystemId":30009772,"solarSystemName":"M:288O","location":{"x":-10800000000000000000,"y":330000000000000000,"z":-7180000000000000000}},"30009773":{"solarSystemId":30009773,"solarSystemName":"Q:2L32","location":{"x":-10900000000000000000,"y":303000000000000000,"z":-7150000000000000000}},"30009774":{"solarSystemId":30009774,"solarSystemName":"M:1681","location":{"x":-10800000000000000000,"y":347000000000000000,"z":-7150000000000000000}},"30009775":{"solarSystemId":30009775,"solarSystemName":"P:1809","location":{"x":-10800000000000000000,"y":305000000000000000,"z":-7090000000000000000}},"30009776":{"solarSystemId":30009776,"solarSystemName":"J:164L","location":{"x":-10800000000000000000,"y":353000000000000000,"z":-7040000000000000000}},"30009777":{"solarSystemId":30009777,"solarSystemName":"J:19V6","location":{"x":-10800000000000000000,"y":341000000000000000,"z":-7130000000000000000}},"30009778":{"solarSystemId":30009778,"solarSystemName":"Y:2RT9","location":{"x":-10800000000000000000,"y":268000000000000000,"z":-7130000000000000000}},"30009779":{"solarSystemId":30009779,"solarSystemName":"J:3381","location":{"x":-10800000000000000000,"y":351000000000000000,"z":-7080000000000000000}},"30009780":{"solarSystemId":30009780,"solarSystemName":"U:226S","location":{"x":-10800000000000000000,"y":386000000000000000,"z":-7160000000000000000}},"30009781":{"solarSystemId":30009781,"solarSystemName":"D:22S4","location":{"x":-10800000000000000000,"y":336000000000000000,"z":-7110000000000000000}},"30009782":{"solarSystemId":30009782,"solarSystemName":"F:2029","location":{"x":-10900000000000000000,"y":369000000000000000,"z":-7160000000000000000}},"30009783":{"solarSystemId":30009783,"solarSystemName":"Q:1O4V","location":{"x":-10800000000000000000,"y":321000000000000000,"z":-7130000000000000000}},"30009784":{"solarSystemId":30009784,"solarSystemName":"B:283S","location":{"x":-10800000000000000000,"y":343000000000000000,"z":-7140000000000000000}},"30009785":{"solarSystemId":30009785,"solarSystemName":"Z:2SRO","location":{"x":-10800000000000000000,"y":375000000000000000,"z":-7130000000000000000}},"30009786":{"solarSystemId":30009786,"solarSystemName":"D:2T38","location":{"x":-10800000000000000000,"y":378000000000000000,"z":-7070000000000000000}},"30009787":{"solarSystemId":30009787,"solarSystemName":"P:2K1V","location":{"x":-10800000000000000000,"y":486000000000000000,"z":-7070000000000000000}},"30009788":{"solarSystemId":30009788,"solarSystemName":"D:1AAE","location":{"x":-10800000000000000000,"y":349000000000000000,"z":-7160000000000000000}},"30009789":{"solarSystemId":30009789,"solarSystemName":"U:44E1","location":{"x":-10800000000000000000,"y":400000000000000000,"z":-7080000000000000000}},"30009790":{"solarSystemId":30009790,"solarSystemName":"Y:4S3V","location":{"x":-10800000000000000000,"y":346000000000000000,"z":-7140000000000000000}},"30009791":{"solarSystemId":30009791,"solarSystemName":"B:2VEO","location":{"x":-10800000000000000000,"y":351000000000000000,"z":-7110000000000000000}},"30009792":{"solarSystemId":30009792,"solarSystemName":"Y:2OV1","location":{"x":-10800000000000000000,"y":351000000000000000,"z":-7150000000000000000}},"30009793":{"solarSystemId":30009793,"solarSystemName":"U:2LTN","location":{"x":-11500000000000000000,"y":43500000000000000,"z":-6750000000000000000}},"30009794":{"solarSystemId":30009794,"solarSystemName":"P:23RA","location":{"x":-11200000000000000000,"y":-78400000000000000,"z":-6280000000000000000}},"30009795":{"solarSystemId":30009795,"solarSystemName":"F:S7V5","location":{"x":-11500000000000000000,"y":128000000000000000,"z":-6460000000000000000}},"30009796":{"solarSystemId":30009796,"solarSystemName":"U:1KT2","location":{"x":-11200000000000000000,"y":110000000000000000,"z":-6630000000000000000}},"30009797":{"solarSystemId":30009797,"solarSystemName":"J:2TT3","location":{"x":-11500000000000000000,"y":165000000000000000,"z":-6520000000000000000}},"30009798":{"solarSystemId":30009798,"solarSystemName":"Z:1I25","location":{"x":-11100000000000000000,"y":-11700000000000000,"z":-6480000000000000000}},"30009799":{"solarSystemId":30009799,"solarSystemName":"Y:LE30","location":{"x":-11400000000000000000,"y":146000000000000000,"z":-6620000000000000000}},"30009800":{"solarSystemId":30009800,"solarSystemName":"H:2298","location":{"x":-11300000000000000000,"y":-11200000000000000,"z":-6180000000000000000}},"30009801":{"solarSystemId":30009801,"solarSystemName":"Z:2KNE","location":{"x":-11300000000000000000,"y":128000000000000000,"z":-6350000000000000000}},"30009802":{"solarSystemId":30009802,"solarSystemName":"Z:1V8I","location":{"x":-11300000000000000000,"y":214000000000000000,"z":-6550000000000000000}},"30009803":{"solarSystemId":30009803,"solarSystemName":"Q:2V4K","location":{"x":-11600000000000000000,"y":215000000000000000,"z":-6250000000000000000}},"30009804":{"solarSystemId":30009804,"solarSystemName":"M:1SLV","location":{"x":-11200000000000000000,"y":-118000000000000000,"z":-6290000000000000000}},"30009805":{"solarSystemId":30009805,"solarSystemName":"D:2TSN","location":{"x":-11200000000000000000,"y":-193000000000000000,"z":-6160000000000000000}},"30009806":{"solarSystemId":30009806,"solarSystemName":"H:1VL1","location":{"x":-11500000000000000000,"y":119000000000000000,"z":-6710000000000000000}},"30009807":{"solarSystemId":30009807,"solarSystemName":"Y:1081","location":{"x":-11400000000000000000,"y":-157000000000000000,"z":-6430000000000000000}},"30009808":{"solarSystemId":30009808,"solarSystemName":"U:2L1A","location":{"x":-11100000000000000000,"y":-41200000000000000,"z":-6320000000000000000}},"30009809":{"solarSystemId":30009809,"solarSystemName":"U:1749","location":{"x":-11500000000000000000,"y":125000000000000000,"z":-6590000000000000000}},"30009810":{"solarSystemId":30009810,"solarSystemName":"P:1E2T","location":{"x":-11200000000000000000,"y":147000000000000000,"z":-6640000000000000000}},"30009811":{"solarSystemId":30009811,"solarSystemName":"D:32LO","location":{"x":-11600000000000000000,"y":130000000000000000,"z":-6610000000000000000}},"30009812":{"solarSystemId":30009812,"solarSystemName":"B:275A","location":{"x":-11400000000000000000,"y":139000000000000000,"z":-6490000000000000000}},"30009813":{"solarSystemId":30009813,"solarSystemName":"P:3AI8","location":{"x":-11400000000000000000,"y":2530000000000000000,"z":-7200000000000000000}},"30009814":{"solarSystemId":30009814,"solarSystemName":"P:3ON6","location":{"x":-12400000000000000000,"y":1280000000000000000,"z":-6960000000000000000}},"30009815":{"solarSystemId":30009815,"solarSystemName":"B:316R","location":{"x":-11300000000000000000,"y":2080000000000000000,"z":-7670000000000000000}},"30009816":{"solarSystemId":30009816,"solarSystemName":"U:22TT","location":{"x":-11200000000000000000,"y":965000000000000000,"z":-7520000000000000000}},"30009817":{"solarSystemId":30009817,"solarSystemName":"Y:241I","location":{"x":-11400000000000000000,"y":1680000000000000000,"z":-7090000000000000000}},"30009818":{"solarSystemId":30009818,"solarSystemName":"D:255I","location":{"x":-11300000000000000000,"y":1040000000000000000,"z":-7540000000000000000}},"30009819":{"solarSystemId":30009819,"solarSystemName":"U:1AAA","location":{"x":-11300000000000000000,"y":1050000000000000000,"z":-7580000000000000000}},"30009820":{"solarSystemId":30009820,"solarSystemName":"Q:L5ES","location":{"x":-11500000000000000000,"y":876000000000000000,"z":-7250000000000000000}},"30009821":{"solarSystemId":30009821,"solarSystemName":"G:E47L","location":{"x":-11400000000000000000,"y":1120000000000000000,"z":-7530000000000000000}},"30009822":{"solarSystemId":30009822,"solarSystemName":"G:1N3T","location":{"x":-11300000000000000000,"y":1380000000000000000,"z":-7730000000000000000}},"30009823":{"solarSystemId":30009823,"solarSystemName":"G:2T4S","location":{"x":-12000000000000000000,"y":1070000000000000000,"z":-6860000000000000000}},"30009824":{"solarSystemId":30009824,"solarSystemName":"U:2762","location":{"x":-10900000000000000000,"y":1800000000000000000,"z":-7630000000000000000}},"30009825":{"solarSystemId":30009825,"solarSystemName":"Y:22O9","location":{"x":-11100000000000000000,"y":1210000000000000000,"z":-7650000000000000000}},"30009826":{"solarSystemId":30009826,"solarSystemName":"Z:27LO","location":{"x":-11200000000000000000,"y":945000000000000000,"z":-7170000000000000000}},"30009827":{"solarSystemId":30009827,"solarSystemName":"Y:261N","location":{"x":-11900000000000000000,"y":1300000000000000000,"z":-6960000000000000000}},"30009828":{"solarSystemId":30009828,"solarSystemName":"Z:28AR","location":{"x":-11600000000000000000,"y":1120000000000000000,"z":-7120000000000000000}},"30009829":{"solarSystemId":30009829,"solarSystemName":"J:28EE","location":{"x":-11300000000000000000,"y":1100000000000000000,"z":-7120000000000000000}},"30009830":{"solarSystemId":30009830,"solarSystemName":"D:4NN2","location":{"x":-10900000000000000000,"y":181000000000000000,"z":-6700000000000000000}},"30009831":{"solarSystemId":30009831,"solarSystemName":"U:2ST2","location":{"x":-10900000000000000000,"y":86700000000000000,"z":-6640000000000000000}},"30009832":{"solarSystemId":30009832,"solarSystemName":"F:123R","location":{"x":-11100000000000000000,"y":120000000000000000,"z":-6610000000000000000}},"30009833":{"solarSystemId":30009833,"solarSystemName":"Y:1VAE","location":{"x":-11000000000000000000,"y":197000000000000000,"z":-6690000000000000000}},"30009834":{"solarSystemId":30009834,"solarSystemName":"G:KATV","location":{"x":-11100000000000000000,"y":168000000000000000,"z":-6620000000000000000}},"30009835":{"solarSystemId":30009835,"solarSystemName":"G:ELE8","location":{"x":-10900000000000000000,"y":129000000000000000,"z":-6480000000000000000}},"30009836":{"solarSystemId":30009836,"solarSystemName":"J:1SO3","location":{"x":-10800000000000000000,"y":258000000000000000,"z":-6580000000000000000}},"30009837":{"solarSystemId":30009837,"solarSystemName":"Q:2SOI","location":{"x":-10900000000000000000,"y":25600000000000000,"z":-6330000000000000000}},"30009838":{"solarSystemId":30009838,"solarSystemName":"Q:1K5R","location":{"x":-11100000000000000000,"y":113000000000000000,"z":-6520000000000000000}},"30009839":{"solarSystemId":30009839,"solarSystemName":"U:1E89","location":{"x":-10900000000000000000,"y":-132000000000000000,"z":-6520000000000000000}},"30009840":{"solarSystemId":30009840,"solarSystemName":"H:2SK0","location":{"x":-10800000000000000000,"y":-35300000000000000,"z":-6320000000000000000}},"30009841":{"solarSystemId":30009841,"solarSystemName":"J:TELI","location":{"x":-11000000000000000000,"y":160000000000000000,"z":-6690000000000000000}},"30009842":{"solarSystemId":30009842,"solarSystemName":"M:2E9A","location":{"x":-10900000000000000000,"y":-17900000000000000,"z":-6560000000000000000}},"30009843":{"solarSystemId":30009843,"solarSystemName":"P:242O","location":{"x":-10800000000000000000,"y":244000000000000000,"z":-6430000000000000000}},"30009844":{"solarSystemId":30009844,"solarSystemName":"Y:NRVT","location":{"x":-10900000000000000000,"y":130000000000000000,"z":-6550000000000000000}},"30009845":{"solarSystemId":30009845,"solarSystemName":"H:EVR8","location":{"x":-10900000000000000000,"y":243000000000000000,"z":-6560000000000000000}},"30009846":{"solarSystemId":30009846,"solarSystemName":"B:110A","location":{"x":-11000000000000000000,"y":341000000000000000,"z":-6460000000000000000}},"30009847":{"solarSystemId":30009847,"solarSystemName":"U:T369","location":{"x":-10900000000000000000,"y":253000000000000000,"z":-6610000000000000000}},"30009848":{"solarSystemId":30009848,"solarSystemName":"D:1211","location":{"x":-11100000000000000000,"y":170000000000000000,"z":-6630000000000000000}},"30009849":{"solarSystemId":30009849,"solarSystemName":"P:351V","location":{"x":-11100000000000000000,"y":199000000000000000,"z":-6500000000000000000}},"30009850":{"solarSystemId":30009850,"solarSystemName":"Y:NTOR","location":{"x":-11000000000000000000,"y":229000000000000000,"z":-6710000000000000000}},"30009851":{"solarSystemId":30009851,"solarSystemName":"U:1S26","location":{"x":-11200000000000000000,"y":211000000000000000,"z":-6630000000000000000}},"30009852":{"solarSystemId":30009852,"solarSystemName":"D:155V","location":{"x":-10900000000000000000,"y":43600000000000000,"z":-6350000000000000000}},"30009853":{"solarSystemId":30009853,"solarSystemName":"P:I668","location":{"x":-11200000000000000000,"y":251000000000000000,"z":-6540000000000000000}},"30009854":{"solarSystemId":30009854,"solarSystemName":"G:3251","location":{"x":-11100000000000000000,"y":427000000000000000,"z":-6460000000000000000}},"30009855":{"solarSystemId":30009855,"solarSystemName":"B:2544","location":{"x":-10800000000000000000,"y":-17800000000000000,"z":-6400000000000000000}},"30009856":{"solarSystemId":30009856,"solarSystemName":"B:358T","location":{"x":-10900000000000000000,"y":410000000000000000,"z":-5720000000000000000}},"30009857":{"solarSystemId":30009857,"solarSystemName":"G:20O0","location":{"x":-10700000000000000000,"y":11500000000000000,"z":-6260000000000000000}},"30009858":{"solarSystemId":30009858,"solarSystemName":"B:2O56","location":{"x":-10900000000000000000,"y":202000000000000000,"z":-6080000000000000000}},"30009859":{"solarSystemId":30009859,"solarSystemName":"D:1VR1","location":{"x":-10800000000000000000,"y":277000000000000000,"z":-5970000000000000000}},"30009860":{"solarSystemId":30009860,"solarSystemName":"B:K0A5","location":{"x":-11100000000000000000,"y":157000000000000000,"z":-6130000000000000000}},"30009861":{"solarSystemId":30009861,"solarSystemName":"Y:13L3","location":{"x":-10500000000000000000,"y":81500000000000000,"z":-5850000000000000000}},"30009862":{"solarSystemId":30009862,"solarSystemName":"U:132K","location":{"x":-10800000000000000000,"y":433000000000000000,"z":-5690000000000000000}},"30009863":{"solarSystemId":30009863,"solarSystemName":"H:30EN","location":{"x":-10500000000000000000,"y":71500000000000000,"z":-5870000000000000000}},"30009864":{"solarSystemId":30009864,"solarSystemName":"U:14TK","location":{"x":-10700000000000000000,"y":-16900000000000000,"z":-6250000000000000000}},"30009865":{"solarSystemId":30009865,"solarSystemName":"H:3573","location":{"x":-10900000000000000000,"y":315000000000000000,"z":-6020000000000000000}},"30009866":{"solarSystemId":30009866,"solarSystemName":"Z:1NI7","location":{"x":-10600000000000000000,"y":405000000000000000,"z":-5580000000000000000}},"30009867":{"solarSystemId":30009867,"solarSystemName":"Z:2LNO","location":{"x":-10900000000000000000,"y":149000000000000000,"z":-5870000000000000000}},"30009868":{"solarSystemId":30009868,"solarSystemName":"Q:1SRO","location":{"x":-10500000000000000000,"y":222000000000000000,"z":-5980000000000000000}},"30009869":{"solarSystemId":30009869,"solarSystemName":"B:1AO4","location":{"x":-10800000000000000000,"y":413000000000000000,"z":-5800000000000000000}},"30009870":{"solarSystemId":30009870,"solarSystemName":"P:29TN","location":{"x":-10600000000000000000,"y":8520000000000000,"z":-5790000000000000000}},"30009871":{"solarSystemId":30009871,"solarSystemName":"B:2IAR","location":{"x":-11200000000000000000,"y":107000000000000000,"z":-6040000000000000000}},"30009872":{"solarSystemId":30009872,"solarSystemName":"B:2SA5","location":{"x":-10700000000000000000,"y":-58700000000000000,"z":-6310000000000000000}},"30009873":{"solarSystemId":30009873,"solarSystemName":"Z:284S","location":{"x":-10700000000000000000,"y":336000000000000000,"z":-5790000000000000000}},"30009874":{"solarSystemId":30009874,"solarSystemName":"M:1VSA","location":{"x":-10800000000000000000,"y":50900000000000000,"z":-5910000000000000000}},"30009875":{"solarSystemId":30009875,"solarSystemName":"Y:ELR8","location":{"x":-10800000000000000000,"y":185000000000000000,"z":-6190000000000000000}},"30009876":{"solarSystemId":30009876,"solarSystemName":"Z:33A0","location":{"x":-10600000000000000000,"y":157000000000000000,"z":-6640000000000000000}},"30009877":{"solarSystemId":30009877,"solarSystemName":"Q:28K7","location":{"x":-10500000000000000000,"y":92400000000000000,"z":-6970000000000000000}},"30009878":{"solarSystemId":30009878,"solarSystemName":"D:1S68","location":{"x":-10200000000000000000,"y":83500000000000000,"z":-6700000000000000000}},"30009879":{"solarSystemId":30009879,"solarSystemName":"G:4L58","location":{"x":-10500000000000000000,"y":99800000000000000,"z":-6800000000000000000}},"30009880":{"solarSystemId":30009880,"solarSystemName":"P:3102","location":{"x":-10500000000000000000,"y":96700000000000000,"z":-6900000000000000000}},"30009881":{"solarSystemId":30009881,"solarSystemName":"F:4NKI","location":{"x":-10500000000000000000,"y":59100000000000000,"z":-6610000000000000000}},"30009882":{"solarSystemId":30009882,"solarSystemName":"Q:194N","location":{"x":-10400000000000000000,"y":179000000000000000,"z":-6950000000000000000}},"30009883":{"solarSystemId":30009883,"solarSystemName":"Y:1O44","location":{"x":-10300000000000000000,"y":188000000000000000,"z":-6580000000000000000}},"30009884":{"solarSystemId":30009884,"solarSystemName":"J:V9VL","location":{"x":-10300000000000000000,"y":85800000000000000,"z":-6530000000000000000}},"30009885":{"solarSystemId":30009885,"solarSystemName":"M:R1NT","location":{"x":-10600000000000000000,"y":92300000000000000,"z":-6550000000000000000}},"30009886":{"solarSystemId":30009886,"solarSystemName":"Q:133K","location":{"x":-10600000000000000000,"y":153000000000000000,"z":-6680000000000000000}},"30009887":{"solarSystemId":30009887,"solarSystemName":"M:20TO","location":{"x":-10700000000000000000,"y":41400000000000000,"z":-6510000000000000000}},"30009888":{"solarSystemId":30009888,"solarSystemName":"G:24NE","location":{"x":-10700000000000000000,"y":109000000000000000,"z":-6720000000000000000}},"30009889":{"solarSystemId":30009889,"solarSystemName":"D:1RSS","location":{"x":-10400000000000000000,"y":35100000000000000,"z":-6520000000000000000}},"30009890":{"solarSystemId":30009890,"solarSystemName":"Q:2364","location":{"x":-10400000000000000000,"y":191000000000000000,"z":-6700000000000000000}},"30009891":{"solarSystemId":30009891,"solarSystemName":"J:1OLR","location":{"x":-10500000000000000000,"y":81700000000000000,"z":-6860000000000000000}},"30009892":{"solarSystemId":30009892,"solarSystemName":"M:2O1K","location":{"x":-10500000000000000000,"y":52400000000000000,"z":-6470000000000000000}},"30009893":{"solarSystemId":30009893,"solarSystemName":"Q:1IN6","location":{"x":-10500000000000000000,"y":270000000000000000,"z":-6780000000000000000}},"30009894":{"solarSystemId":30009894,"solarSystemName":"Z:LS48","location":{"x":-10600000000000000000,"y":198000000000000000,"z":-6760000000000000000}},"30009895":{"solarSystemId":30009895,"solarSystemName":"B:346N","location":{"x":-10400000000000000000,"y":7810000000000000,"z":-6750000000000000000}},"30009896":{"solarSystemId":30009896,"solarSystemName":"G:1R0O","location":{"x":-10500000000000000000,"y":266000000000000000,"z":-6800000000000000000}},"30009897":{"solarSystemId":30009897,"solarSystemName":"M:3O02","location":{"x":-10300000000000000000,"y":78900000000000000,"z":-6560000000000000000}},"30009898":{"solarSystemId":30009898,"solarSystemName":"F:2R96","location":{"x":-10700000000000000000,"y":585000000000000000,"z":-6620000000000000000}},"30009899":{"solarSystemId":30009899,"solarSystemName":"B:2562","location":{"x":-10600000000000000000,"y":455000000000000000,"z":-6520000000000000000}},"30009900":{"solarSystemId":30009900,"solarSystemName":"G:1I73","location":{"x":-10800000000000000000,"y":313000000000000000,"z":-6390000000000000000}},"30009901":{"solarSystemId":30009901,"solarSystemName":"D:24RA","location":{"x":-10800000000000000000,"y":471000000000000000,"z":-6630000000000000000}},"30009902":{"solarSystemId":30009902,"solarSystemName":"D:27IR","location":{"x":-10800000000000000000,"y":442000000000000000,"z":-6330000000000000000}},"30009903":{"solarSystemId":30009903,"solarSystemName":"H:R443","location":{"x":-10600000000000000000,"y":484000000000000000,"z":-6350000000000000000}},"30009904":{"solarSystemId":30009904,"solarSystemName":"Z:2T31","location":{"x":-10600000000000000000,"y":322000000000000000,"z":-6630000000000000000}},"30009905":{"solarSystemId":30009905,"solarSystemName":"J:2TV0","location":{"x":-10600000000000000000,"y":257000000000000000,"z":-6520000000000000000}},"30009906":{"solarSystemId":30009906,"solarSystemName":"D:20V4","location":{"x":-10700000000000000000,"y":212000000000000000,"z":-6600000000000000000}},"30009907":{"solarSystemId":30009907,"solarSystemName":"Z:2N5I","location":{"x":-10600000000000000000,"y":494000000000000000,"z":-6330000000000000000}},"30009908":{"solarSystemId":30009908,"solarSystemName":"F:28LO","location":{"x":-10600000000000000000,"y":225000000000000000,"z":-6570000000000000000}},"30009909":{"solarSystemId":30009909,"solarSystemName":"J:2VA7","location":{"x":-10800000000000000000,"y":388000000000000000,"z":-6370000000000000000}},"30009910":{"solarSystemId":30009910,"solarSystemName":"G:15N8","location":{"x":-10700000000000000000,"y":528000000000000000,"z":-6630000000000000000}},"30009911":{"solarSystemId":30009911,"solarSystemName":"P:10V8","location":{"x":-10700000000000000000,"y":385000000000000000,"z":-6600000000000000000}},"30009912":{"solarSystemId":30009912,"solarSystemName":"J:1VVN","location":{"x":-10900000000000000000,"y":405000000000000000,"z":-6460000000000000000}},"30009913":{"solarSystemId":30009913,"solarSystemName":"B:2TAA","location":{"x":-10900000000000000000,"y":457000000000000000,"z":-6640000000000000000}},"30009914":{"solarSystemId":30009914,"solarSystemName":"G:2VOT","location":{"x":-10700000000000000000,"y":321000000000000000,"z":-6360000000000000000}},"30009915":{"solarSystemId":30009915,"solarSystemName":"P:2L0A","location":{"x":-10500000000000000000,"y":253000000000000000,"z":-6440000000000000000}},"30009916":{"solarSystemId":30009916,"solarSystemName":"Q:1ON2","location":{"x":-10700000000000000000,"y":174000000000000000,"z":-6470000000000000000}},"30009917":{"solarSystemId":30009917,"solarSystemName":"Q:1EA0","location":{"x":-10500000000000000000,"y":311000000000000000,"z":-6310000000000000000}},"30009918":{"solarSystemId":30009918,"solarSystemName":"B:3O2K","location":{"x":-10000000000000000000,"y":108000000000000000,"z":-5850000000000000000}},"30009919":{"solarSystemId":30009919,"solarSystemName":"F:2T81","location":{"x":-10300000000000000000,"y":101000000000000000,"z":-6060000000000000000}},"30009920":{"solarSystemId":30009920,"solarSystemName":"G:11KT","location":{"x":-9960000000000000000,"y":-155000000000000000,"z":-6130000000000000000}},"30009921":{"solarSystemId":30009921,"solarSystemName":"M:23T2","location":{"x":-10600000000000000000,"y":-8750000000000000,"z":-6280000000000000000}},"30009922":{"solarSystemId":30009922,"solarSystemName":"P:EN7O","location":{"x":-9730000000000000000,"y":-457000000000000000,"z":-5480000000000000000}},"30009923":{"solarSystemId":30009923,"solarSystemName":"G:2085","location":{"x":-10200000000000000000,"y":-28200000000000000,"z":-6460000000000000000}},"30009924":{"solarSystemId":30009924,"solarSystemName":"J:3532","location":{"x":-10500000000000000000,"y":-42800000000000000,"z":-5970000000000000000}},"30009925":{"solarSystemId":30009925,"solarSystemName":"J:24R3","location":{"x":-10500000000000000000,"y":321000000000000000,"z":-6180000000000000000}},"30009926":{"solarSystemId":30009926,"solarSystemName":"M:2SR8","location":{"x":-10500000000000000000,"y":76800000000000000,"z":-6270000000000000000}},"30009927":{"solarSystemId":30009927,"solarSystemName":"U:2AA7","location":{"x":-10400000000000000000,"y":197000000000000000,"z":-6190000000000000000}},"30009928":{"solarSystemId":30009928,"solarSystemName":"G:1O6V","location":{"x":-10600000000000000000,"y":14500000000000000,"z":-6410000000000000000}},"30009929":{"solarSystemId":30009929,"solarSystemName":"P:2SE8","location":{"x":-10100000000000000000,"y":-21900000000000000,"z":-6470000000000000000}},"30009930":{"solarSystemId":30009930,"solarSystemName":"B:380N","location":{"x":-10200000000000000000,"y":-220000000000000000,"z":-6050000000000000000}},"30009931":{"solarSystemId":30009931,"solarSystemName":"Y:10N4","location":{"x":-9400000000000000000,"y":166000000000000000,"z":-5340000000000000000}},"30009932":{"solarSystemId":30009932,"solarSystemName":"U:3I36","location":{"x":-9540000000000000000,"y":-52000000000000000,"z":-5600000000000000000}},"30009933":{"solarSystemId":30009933,"solarSystemName":"Q:3515","location":{"x":-10500000000000000000,"y":-401000000000000000,"z":-6060000000000000000}},"30009934":{"solarSystemId":30009934,"solarSystemName":"H:2OA7","location":{"x":-10000000000000000000,"y":-172000000000000000,"z":-5710000000000000000}},"30009935":{"solarSystemId":30009935,"solarSystemName":"M:2KT7","location":{"x":-9420000000000000000,"y":-142000000000000000,"z":-6060000000000000000}},"30009936":{"solarSystemId":30009936,"solarSystemName":"F:2VRO","location":{"x":-9830000000000000000,"y":-169000000000000000,"z":-6480000000000000000}},"30009937":{"solarSystemId":30009937,"solarSystemName":"H:2ITT","location":{"x":-9780000000000000000,"y":-428000000000000000,"z":-6170000000000000000}},"30009938":{"solarSystemId":30009938,"solarSystemName":"Y:24S4","location":{"x":-10200000000000000000,"y":-76500000000000000,"z":-6030000000000000000}},"30009939":{"solarSystemId":30009939,"solarSystemName":"F:11E5","location":{"x":-10600000000000000000,"y":93800000000000000,"z":-6300000000000000000}},"30009940":{"solarSystemId":30009940,"solarSystemName":"M:2EES","location":{"x":-11300000000000000000,"y":394000000000000000,"z":-6120000000000000000}},"30009941":{"solarSystemId":30009941,"solarSystemName":"U:2KKL","location":{"x":-11500000000000000000,"y":-92000000000000000,"z":-5850000000000000000}},"30009942":{"solarSystemId":30009942,"solarSystemName":"B:159T","location":{"x":-11700000000000000000,"y":644000000000000000,"z":-6030000000000000000}},"30009943":{"solarSystemId":30009943,"solarSystemName":"U:E9T5","location":{"x":-11400000000000000000,"y":158000000000000000,"z":-5560000000000000000}},"30009944":{"solarSystemId":30009944,"solarSystemName":"U:24I9","location":{"x":-11700000000000000000,"y":250000000000000000,"z":-5890000000000000000}},"30009945":{"solarSystemId":30009945,"solarSystemName":"Q:1L23","location":{"x":-11300000000000000000,"y":191000000000000000,"z":-6100000000000000000}},"30009946":{"solarSystemId":30009946,"solarSystemName":"U:21TA","location":{"x":-11800000000000000000,"y":651000000000000000,"z":-6100000000000000000}},"30009947":{"solarSystemId":30009947,"solarSystemName":"D:1L8N","location":{"x":-11400000000000000000,"y":359000000000000000,"z":-6140000000000000000}},"30009948":{"solarSystemId":30009948,"solarSystemName":"D:10NK","location":{"x":-11600000000000000000,"y":321000000000000000,"z":-6180000000000000000}},"30009949":{"solarSystemId":30009949,"solarSystemName":"Y:1E38","location":{"x":-11600000000000000000,"y":-124000000000000000,"z":-5900000000000000000}},"30009950":{"solarSystemId":30009950,"solarSystemName":"Q:VITS","location":{"x":-11800000000000000000,"y":494000000000000000,"z":-5920000000000000000}},"30009951":{"solarSystemId":30009951,"solarSystemName":"H:23E4","location":{"x":-11500000000000000000,"y":319000000000000000,"z":-6210000000000000000}},"30009952":{"solarSystemId":30009952,"solarSystemName":"U:K3KO","location":{"x":-11200000000000000000,"y":291000000000000000,"z":-6140000000000000000}},"30009953":{"solarSystemId":30009953,"solarSystemName":"H:3300","location":{"x":-11400000000000000000,"y":464000000000000000,"z":-6060000000000000000}},"30009954":{"solarSystemId":30009954,"solarSystemName":"U:2VLL","location":{"x":-11300000000000000000,"y":216000000000000000,"z":-5970000000000000000}},"30009955":{"solarSystemId":30009955,"solarSystemName":"J:1VRA","location":{"x":-11700000000000000000,"y":440000000000000000,"z":-6240000000000000000}},"30009956":{"solarSystemId":30009956,"solarSystemName":"H:2LA7","location":{"x":-11400000000000000000,"y":342000000000000000,"z":-6100000000000000000}},"30009957":{"solarSystemId":30009957,"solarSystemName":"F:4EE0","location":{"x":-11600000000000000000,"y":347000000000000000,"z":-5630000000000000000}},"30009958":{"solarSystemId":30009958,"solarSystemName":"G:34I9","location":{"x":-11700000000000000000,"y":338000000000000000,"z":-6180000000000000000}},"30009959":{"solarSystemId":30009959,"solarSystemName":"F:1TOT","location":{"x":-12000000000000000000,"y":820000000000000000,"z":-6190000000000000000}},"30009960":{"solarSystemId":30009960,"solarSystemName":"M:14A0","location":{"x":-12400000000000000000,"y":196000000000000000,"z":-5920000000000000000}},"30009961":{"solarSystemId":30009961,"solarSystemName":"U:1E98","location":{"x":-11600000000000000000,"y":-78300000000000000,"z":-5380000000000000000}},"30009962":{"solarSystemId":30009962,"solarSystemName":"B:1A8L","location":{"x":-12500000000000000000,"y":-59000000000000000,"z":-5820000000000000000}},"30009963":{"solarSystemId":30009963,"solarSystemName":"B:2E7L","location":{"x":-11800000000000000000,"y":-346000000000000000,"z":-5940000000000000000}},"30009964":{"solarSystemId":30009964,"solarSystemName":"Z:2429","location":{"x":-11700000000000000000,"y":-817000000000000000,"z":-6020000000000000000}},"30009965":{"solarSystemId":30009965,"solarSystemName":"M:319A","location":{"x":-11500000000000000000,"y":-117000000000000000,"z":-5510000000000000000}},"30009966":{"solarSystemId":30009966,"solarSystemName":"J:2382","location":{"x":-11800000000000000000,"y":127000000000000000,"z":-5050000000000000000}},"30009967":{"solarSystemId":30009967,"solarSystemName":"B:K9I8","location":{"x":-11700000000000000000,"y":49700000000000000,"z":-5400000000000000000}},"30009968":{"solarSystemId":30009968,"solarSystemName":"J:1RTS","location":{"x":-12000000000000000000,"y":-475000000000000000,"z":-5260000000000000000}},"30009969":{"solarSystemId":30009969,"solarSystemName":"M:VKOI","location":{"x":-12500000000000000000,"y":-323000000000000000,"z":-5140000000000000000}},"30009970":{"solarSystemId":30009970,"solarSystemName":"F:14A1","location":{"x":-12800000000000000000,"y":-307000000000000000,"z":-5370000000000000000}},"30009971":{"solarSystemId":30009971,"solarSystemName":"B:2364","location":{"x":-12300000000000000000,"y":-193000000000000000,"z":-5620000000000000000}},"30009972":{"solarSystemId":30009972,"solarSystemName":"Z:30S6","location":{"x":-11800000000000000000,"y":-117000000000000000,"z":-5730000000000000000}},"30009973":{"solarSystemId":30009973,"solarSystemName":"F:35I7","location":{"x":-12100000000000000000,"y":330000000000000000,"z":-5900000000000000000}},"30009974":{"solarSystemId":30009974,"solarSystemName":"Q:1EV9","location":{"x":-11900000000000000000,"y":50100000000000000,"z":-5050000000000000000}},"30009975":{"solarSystemId":30009975,"solarSystemName":"M:22IN","location":{"x":-12100000000000000000,"y":252000000000000000,"z":-5670000000000000000}},"30009976":{"solarSystemId":30009976,"solarSystemName":"Z:2KO6","location":{"x":-12200000000000000000,"y":-142000000000000000,"z":-5440000000000000000}},"30009977":{"solarSystemId":30009977,"solarSystemName":"G:2A58","location":{"x":-11900000000000000000,"y":295000000000000000,"z":-5220000000000000000}},"30009978":{"solarSystemId":30009978,"solarSystemName":"D:1LAI","location":{"x":-11900000000000000000,"y":428000000000000000,"z":-5610000000000000000}},"30009979":{"solarSystemId":30009979,"solarSystemName":"Y:1TTR","location":{"x":-12000000000000000000,"y":-400000000000000000,"z":-5080000000000000000}},"30009980":{"solarSystemId":30009980,"solarSystemName":"U:391R","location":{"x":-7090000000000000000,"y":1120000000000000000,"z":-3450000000000000000}},"30009981":{"solarSystemId":30009981,"solarSystemName":"Q:3SAL","location":{"x":-7160000000000000000,"y":1020000000000000000,"z":-3810000000000000000}},"30009982":{"solarSystemId":30009982,"solarSystemName":"M:1K84","location":{"x":-8170000000000000000,"y":1590000000000000000,"z":-4560000000000000000}},"30009983":{"solarSystemId":30009983,"solarSystemName":"Q:1TLE","location":{"x":-7160000000000000000,"y":1480000000000000000,"z":-4270000000000000000}},"30009984":{"solarSystemId":30009984,"solarSystemName":"Q:TAO3","location":{"x":-7310000000000000000,"y":749000000000000000,"z":-4330000000000000000}},"30009985":{"solarSystemId":30009985,"solarSystemName":"U:35EV","location":{"x":-7040000000000000000,"y":571000000000000000,"z":-3840000000000000000}},"30009986":{"solarSystemId":30009986,"solarSystemName":"P:30NS","location":{"x":-8340000000000000000,"y":552000000000000000,"z":-4220000000000000000}},"30009987":{"solarSystemId":30009987,"solarSystemName":"U:27L8","location":{"x":-8850000000000000000,"y":1040000000000000000,"z":-3970000000000000000}},"30009988":{"solarSystemId":30009988,"solarSystemName":"B:233O","location":{"x":-8290000000000000000,"y":1430000000000000000,"z":-3880000000000000000}},"30009989":{"solarSystemId":30009989,"solarSystemName":"G:146A","location":{"x":-7330000000000000000,"y":1150000000000000000,"z":-4580000000000000000}},"30009990":{"solarSystemId":30009990,"solarSystemName":"Y:160O","location":{"x":-7350000000000000000,"y":319000000000000000,"z":-3660000000000000000}},"30009991":{"solarSystemId":30009991,"solarSystemName":"P:1TI5","location":{"x":-6930000000000000000,"y":1460000000000000000,"z":-4100000000000000000}},"30009992":{"solarSystemId":30009992,"solarSystemName":"M:3VOK","location":{"x":-7870000000000000000,"y":1300000000000000000,"z":-3910000000000000000}},"30009993":{"solarSystemId":30009993,"solarSystemName":"G:2O5T","location":{"x":-7110000000000000000,"y":932000000000000000,"z":-2890000000000000000}},"30009994":{"solarSystemId":30009994,"solarSystemName":"F:22A2","location":{"x":-7310000000000000000,"y":1360000000000000000,"z":-3810000000000000000}},"30009995":{"solarSystemId":30009995,"solarSystemName":"Z:INO2","location":{"x":-7090000000000000000,"y":1300000000000000000,"z":-4010000000000000000}},"30009996":{"solarSystemId":30009996,"solarSystemName":"F:2NOE","location":{"x":-7900000000000000000,"y":1540000000000000000,"z":-4450000000000000000}},"30009997":{"solarSystemId":30009997,"solarSystemName":"F:3ANV","location":{"x":-8070000000000000000,"y":1380000000000000000,"z":-4410000000000000000}},"30009998":{"solarSystemId":30009998,"solarSystemName":"Y:2KNA","location":{"x":-7660000000000000000,"y":1380000000000000000,"z":-4070000000000000000}},"30009999":{"solarSystemId":30009999,"solarSystemName":"D:3TKO","location":{"x":-6910000000000000000,"y":1150000000000000000,"z":-3300000000000000000}},"30010000":{"solarSystemId":30010000,"solarSystemName":"B:32LN","location":{"x":-7020000000000000000,"y":-1060000000000000000,"z":-3430000000000000000}},"30010001":{"solarSystemId":30010001,"solarSystemName":"P:3ST1","location":{"x":-8290000000000000000,"y":-1420000000000000000,"z":-3590000000000000000}},"30010002":{"solarSystemId":30010002,"solarSystemName":"H:TIEE","location":{"x":-6750000000000000000,"y":-556000000000000000,"z":-3480000000000000000}},"30010003":{"solarSystemId":30010003,"solarSystemName":"Y:2947","location":{"x":-7590000000000000000,"y":-703000000000000000,"z":-3330000000000000000}},"30010004":{"solarSystemId":30010004,"solarSystemName":"U:1E48","location":{"x":-6340000000000000000,"y":-272000000000000000,"z":-3410000000000000000}},"30010005":{"solarSystemId":30010005,"solarSystemName":"M:1LSO","location":{"x":-7240000000000000000,"y":-476000000000000000,"z":-3100000000000000000}},"30010006":{"solarSystemId":30010006,"solarSystemName":"H:2SA2","location":{"x":-7590000000000000000,"y":-219000000000000000,"z":-2920000000000000000}},"30010007":{"solarSystemId":30010007,"solarSystemName":"U:3RLV","location":{"x":-7160000000000000000,"y":-406000000000000000,"z":-2820000000000000000}},"30010008":{"solarSystemId":30010008,"solarSystemName":"J:3SA6","location":{"x":-8000000000000000000,"y":282000000000000000,"z":-3410000000000000000}},"30010009":{"solarSystemId":30010009,"solarSystemName":"Y:1NIA","location":{"x":-6370000000000000000,"y":-164000000000000000,"z":-2960000000000000000}},"30010010":{"solarSystemId":30010010,"solarSystemName":"F:2797","location":{"x":-7350000000000000000,"y":-353000000000000000,"z":-3280000000000000000}},"30010011":{"solarSystemId":30010011,"solarSystemName":"H:S0N0","location":{"x":-7740000000000000000,"y":-92500000000000000,"z":-3240000000000000000}},"30010012":{"solarSystemId":30010012,"solarSystemName":"G:2ETI","location":{"x":-7470000000000000000,"y":-1080000000000000000,"z":-3080000000000000000}},"30010013":{"solarSystemId":30010013,"solarSystemName":"M:1626","location":{"x":-7210000000000000000,"y":-631000000000000000,"z":-3050000000000000000}},"30010014":{"solarSystemId":30010014,"solarSystemName":"B:32A2","location":{"x":-7360000000000000000,"y":343000000000000000,"z":-2740000000000000000}},"30010015":{"solarSystemId":30010015,"solarSystemName":"U:3R0L","location":{"x":-7100000000000000000,"y":-157000000000000000,"z":-3780000000000000000}},"30010016":{"solarSystemId":30010016,"solarSystemName":"H:38NO","location":{"x":-7120000000000000000,"y":-316000000000000000,"z":-2190000000000000000}},"30010017":{"solarSystemId":30010017,"solarSystemName":"B:AS25","location":{"x":-7260000000000000000,"y":734000000000000000,"z":-2760000000000000000}},"30010018":{"solarSystemId":30010018,"solarSystemName":"F:IV79","location":{"x":-6510000000000000000,"y":-481000000000000000,"z":-3090000000000000000}},"30010019":{"solarSystemId":30010019,"solarSystemName":"J:1N04","location":{"x":-7100000000000000000,"y":-47800000000000000,"z":-3750000000000000000}},"30010020":{"solarSystemId":30010020,"solarSystemName":"J:2E77","location":{"x":-7420000000000000000,"y":-440000000000000000,"z":-2770000000000000000}},"30010021":{"solarSystemId":30010021,"solarSystemName":"Z:3A3N","location":{"x":-6660000000000000000,"y":-259000000000000000,"z":-3450000000000000000}},"30010022":{"solarSystemId":30010022,"solarSystemName":"Y:2IS0","location":{"x":-13800000000000000000,"y":2010000000000000000,"z":-1480000000000000000}},"30010023":{"solarSystemId":30010023,"solarSystemName":"H:3R6K","location":{"x":-12200000000000000000,"y":2710000000000000000,"z":-2160000000000000000}},"30010024":{"solarSystemId":30010024,"solarSystemName":"M:15SK","location":{"x":-10600000000000000000,"y":2880000000000000000,"z":-1730000000000000000}},"30010025":{"solarSystemId":30010025,"solarSystemName":"G:KK3A","location":{"x":-12100000000000000000,"y":2710000000000000000,"z":-2620000000000000000}},"30010026":{"solarSystemId":30010026,"solarSystemName":"J:SKR6","location":{"x":-13600000000000000000,"y":3230000000000000000,"z":-2670000000000000000}},"30010027":{"solarSystemId":30010027,"solarSystemName":"Q:1AK7","location":{"x":-13900000000000000000,"y":1630000000000000000,"z":-1490000000000000000}},"30010028":{"solarSystemId":30010028,"solarSystemName":"P:45ST","location":{"x":-12400000000000000000,"y":584000000000000000,"z":-1730000000000000000}},"30010029":{"solarSystemId":30010029,"solarSystemName":"Y:2IL6","location":{"x":-11900000000000000000,"y":805000000000000000,"z":-2850000000000000000}},"30010030":{"solarSystemId":30010030,"solarSystemName":"F:19KL","location":{"x":-12000000000000000000,"y":519000000000000000,"z":-2010000000000000000}},"30010031":{"solarSystemId":30010031,"solarSystemName":"H:2V3T","location":{"x":-10100000000000000000,"y":2990000000000000000,"z":-1590000000000000000}},"30010032":{"solarSystemId":30010032,"solarSystemName":"Q:31OV","location":{"x":-12900000000000000000,"y":2010000000000000000,"z":-1580000000000000000}},"30010033":{"solarSystemId":30010033,"solarSystemName":"M:3960","location":{"x":-11000000000000000000,"y":2100000000000000000,"z":-1180000000000000000}},"30010034":{"solarSystemId":30010034,"solarSystemName":"U:3I57","location":{"x":-13100000000000000000,"y":2220000000000000000,"z":-2640000000000000000}},"30010035":{"solarSystemId":30010035,"solarSystemName":"P:2VL3","location":{"x":-12200000000000000000,"y":847000000000000000,"z":-1970000000000000000}},"30010036":{"solarSystemId":30010036,"solarSystemName":"G:1LS9","location":{"x":-9770000000000000000,"y":3290000000000000000,"z":-1780000000000000000}},"30010037":{"solarSystemId":30010037,"solarSystemName":"B:28TE","location":{"x":-11800000000000000000,"y":1760000000000000000,"z":-1280000000000000000}},"30010038":{"solarSystemId":30010038,"solarSystemName":"Y:2A4N","location":{"x":-10700000000000000000,"y":2600000000000000000,"z":-1720000000000000000}},"30010039":{"solarSystemId":30010039,"solarSystemName":"M:3O1K","location":{"x":-10100000000000000000,"y":-972000000000000000,"z":-3940000000000000000}},"30010040":{"solarSystemId":30010040,"solarSystemName":"P:3E89","location":{"x":-9990000000000000000,"y":786000000000000000,"z":-3210000000000000000}},"30010041":{"solarSystemId":30010041,"solarSystemName":"U:1507","location":{"x":-10800000000000000000,"y":126000000000000000,"z":-3320000000000000000}},"30010042":{"solarSystemId":30010042,"solarSystemName":"D:2OR3","location":{"x":-10200000000000000000,"y":175000000000000000,"z":-3780000000000000000}},"30010043":{"solarSystemId":30010043,"solarSystemName":"G:1OK4","location":{"x":-9760000000000000000,"y":600000000000000000,"z":-4130000000000000000}},"30010044":{"solarSystemId":30010044,"solarSystemName":"F:17E6","location":{"x":-9840000000000000000,"y":292000000000000000,"z":-3650000000000000000}},"30010045":{"solarSystemId":30010045,"solarSystemName":"B:1KV5","location":{"x":-10100000000000000000,"y":455000000000000000,"z":-4160000000000000000}},"30010046":{"solarSystemId":30010046,"solarSystemName":"D:181V","location":{"x":-10000000000000000000,"y":-579000000000000000,"z":-3720000000000000000}},"30010047":{"solarSystemId":30010047,"solarSystemName":"F:13T0","location":{"x":-10100000000000000000,"y":167000000000000000,"z":-4050000000000000000}},"30010048":{"solarSystemId":30010048,"solarSystemName":"M:2A48","location":{"x":-10300000000000000000,"y":-64700000000000000,"z":-3230000000000000000}},"30010049":{"solarSystemId":30010049,"solarSystemName":"D:30ON","location":{"x":-10100000000000000000,"y":588000000000000000,"z":-4290000000000000000}},"30010050":{"solarSystemId":30010050,"solarSystemName":"Z:1684","location":{"x":-10000000000000000000,"y":-2190000000000000000,"z":-4190000000000000000}},"30010051":{"solarSystemId":30010051,"solarSystemName":"Q:3INT","location":{"x":-9210000000000000000,"y":-1570000000000000000,"z":-4220000000000000000}},"30010052":{"solarSystemId":30010052,"solarSystemName":"J:2L8L","location":{"x":-10600000000000000000,"y":-48500000000000000,"z":-3580000000000000000}},"30010053":{"solarSystemId":30010053,"solarSystemName":"U:KEN5","location":{"x":-10500000000000000000,"y":77900000000000000,"z":-3420000000000000000}},"30010054":{"solarSystemId":30010054,"solarSystemName":"Z:1ANA","location":{"x":-10100000000000000000,"y":-137000000000000000,"z":-4320000000000000000}},"30010055":{"solarSystemId":30010055,"solarSystemName":"P:12K4","location":{"x":-9720000000000000000,"y":-118000000000000000,"z":-3710000000000000000}},"30010056":{"solarSystemId":30010056,"solarSystemName":"H:3OK6","location":{"x":-9420000000000000000,"y":-1240000000000000000,"z":-3780000000000000000}},"30010057":{"solarSystemId":30010057,"solarSystemName":"Q:2KAL","location":{"x":-9950000000000000000,"y":-86100000000000000,"z":-3590000000000000000}},"30010058":{"solarSystemId":30010058,"solarSystemName":"Q:3SOA","location":{"x":-10400000000000000000,"y":530000000000000000,"z":-4550000000000000000}},"30010059":{"solarSystemId":30010059,"solarSystemName":"B:3IK4","location":{"x":-10000000000000000000,"y":-130000000000000000,"z":-3970000000000000000}},"30010060":{"solarSystemId":30010060,"solarSystemName":"J:AS0R","location":{"x":-10500000000000000000,"y":99400000000000000,"z":-4020000000000000000}},"30010061":{"solarSystemId":30010061,"solarSystemName":"Q:1A19","location":{"x":-10100000000000000000,"y":-1110000000000000000,"z":-3740000000000000000}},"30010062":{"solarSystemId":30010062,"solarSystemName":"F:I3RK","location":{"x":-10400000000000000000,"y":144000000000000000,"z":-3550000000000000000}},"30010063":{"solarSystemId":30010063,"solarSystemName":"Z:2ONE","location":{"x":-10900000000000000000,"y":2450000000000000000,"z":-4700000000000000000}},"30010064":{"solarSystemId":30010064,"solarSystemName":"J:397L","location":{"x":-10300000000000000000,"y":3280000000000000000,"z":-5910000000000000000}},"30010065":{"solarSystemId":30010065,"solarSystemName":"Q:1N17","location":{"x":-9900000000000000000,"y":2770000000000000000,"z":-4490000000000000000}},"30010066":{"solarSystemId":30010066,"solarSystemName":"H:23V4","location":{"x":-8970000000000000000,"y":1790000000000000000,"z":-6880000000000000000}},"30010067":{"solarSystemId":30010067,"solarSystemName":"B:4NON","location":{"x":-8970000000000000000,"y":1750000000000000000,"z":-4430000000000000000}},"30010068":{"solarSystemId":30010068,"solarSystemName":"U:2VIO","location":{"x":-8770000000000000000,"y":4380000000000000000,"z":-4990000000000000000}},"30010069":{"solarSystemId":30010069,"solarSystemName":"D:3668","location":{"x":-8540000000000000000,"y":3070000000000000000,"z":-5480000000000000000}},"30010070":{"solarSystemId":30010070,"solarSystemName":"Q:24S9","location":{"x":-9320000000000000000,"y":1500000000000000000,"z":-6310000000000000000}},"30010071":{"solarSystemId":30010071,"solarSystemName":"U:34K6","location":{"x":-8770000000000000000,"y":1630000000000000000,"z":-4760000000000000000}},"30010072":{"solarSystemId":30010072,"solarSystemName":"G:1S9V","location":{"x":-9430000000000000000,"y":1560000000000000000,"z":-5840000000000000000}},"30010073":{"solarSystemId":30010073,"solarSystemName":"U:14IA","location":{"x":-10400000000000000000,"y":3160000000000000000,"z":-5210000000000000000}},"30010074":{"solarSystemId":30010074,"solarSystemName":"D:20VV","location":{"x":-9530000000000000000,"y":2750000000000000000,"z":-3790000000000000000}},"30010075":{"solarSystemId":30010075,"solarSystemName":"G:3SLL","location":{"x":-7790000000000000000,"y":2790000000000000000,"z":-5620000000000000000}},"30010076":{"solarSystemId":30010076,"solarSystemName":"F:2K00","location":{"x":-9610000000000000000,"y":-1140000000000000000,"z":-3030000000000000000}},"30010077":{"solarSystemId":30010077,"solarSystemName":"P:2I7K","location":{"x":-9300000000000000000,"y":-1660000000000000000,"z":-2990000000000000000}},"30010078":{"solarSystemId":30010078,"solarSystemName":"Z:1TL0","location":{"x":-9290000000000000000,"y":201000000000000000,"z":-3090000000000000000}},"30010079":{"solarSystemId":30010079,"solarSystemName":"Q:3145","location":{"x":-8360000000000000000,"y":-751000000000000000,"z":-1960000000000000000}},"30010080":{"solarSystemId":30010080,"solarSystemName":"Y:378L","location":{"x":-9460000000000000000,"y":-249000000000000000,"z":-1550000000000000000}},"30010081":{"solarSystemId":30010081,"solarSystemName":"Z:1EK3","location":{"x":-9540000000000000000,"y":707000000000000000,"z":-3070000000000000000}},"30010082":{"solarSystemId":30010082,"solarSystemName":"D:3AE5","location":{"x":-8340000000000000000,"y":43700000000000000,"z":-3120000000000000000}},"30010083":{"solarSystemId":30010083,"solarSystemName":"F:3E67","location":{"x":-8240000000000000000,"y":-376000000000000000,"z":-2250000000000000000}},"30010084":{"solarSystemId":30010084,"solarSystemName":"B:1T5K","location":{"x":-10300000000000000000,"y":-413000000000000000,"z":-2700000000000000000}},"30010085":{"solarSystemId":30010085,"solarSystemName":"D:3TSI","location":{"x":-8700000000000000000,"y":67200000000000000,"z":-3100000000000000000}},"30010086":{"solarSystemId":30010086,"solarSystemName":"P:3SK1","location":{"x":-9430000000000000000,"y":-1100000000000000000,"z":-2010000000000000000}},"30010087":{"solarSystemId":30010087,"solarSystemName":"U:11NT","location":{"x":-10400000000000000000,"y":-301000000000000000,"z":-2660000000000000000}},"30010088":{"solarSystemId":30010088,"solarSystemName":"J:36A8","location":{"x":-9430000000000000000,"y":-1970000000000000000,"z":-2020000000000000000}},"30010089":{"solarSystemId":30010089,"solarSystemName":"J:1S46","location":{"x":-8990000000000000000,"y":232000000000000000,"z":-2140000000000000000}},"30010090":{"solarSystemId":30010090,"solarSystemName":"Y:266I","location":{"x":-9190000000000000000,"y":-665000000000000000,"z":-2460000000000000000}},"30010091":{"solarSystemId":30010091,"solarSystemName":"Q:1I0N","location":{"x":-8680000000000000000,"y":-234000000000000000,"z":-2020000000000000000}},"30010092":{"solarSystemId":30010092,"solarSystemName":"Z:11K0","location":{"x":-8650000000000000000,"y":149000000000000000,"z":-2120000000000000000}},"30010093":{"solarSystemId":30010093,"solarSystemName":"F:A613","location":{"x":-10200000000000000000,"y":-242000000000000000,"z":-2580000000000000000}},"30010094":{"solarSystemId":30010094,"solarSystemName":"P:445L","location":{"x":-8820000000000000000,"y":136000000000000000,"z":-2440000000000000000}},"30010095":{"solarSystemId":30010095,"solarSystemName":"D:KAVV","location":{"x":-10200000000000000000,"y":-107000000000000000,"z":-2900000000000000000}},"30010096":{"solarSystemId":30010096,"solarSystemName":"B:1T15","location":{"x":-10100000000000000000,"y":-348000000000000000,"z":-2660000000000000000}},"30010097":{"solarSystemId":30010097,"solarSystemName":"Y:34R9","location":{"x":-8980000000000000000,"y":-294000000000000000,"z":-2550000000000000000}},"30010098":{"solarSystemId":30010098,"solarSystemName":"M:3AN2","location":{"x":-9240000000000000000,"y":-2130000000000000000,"z":-2190000000000000000}},"30010099":{"solarSystemId":30010099,"solarSystemName":"H:R82A","location":{"x":-9130000000000000000,"y":-678000000000000000,"z":-2490000000000000000}},"30010100":{"solarSystemId":30010100,"solarSystemName":"P:2088","location":{"x":-9860000000000000000,"y":-111000000000000000,"z":-2910000000000000000}},"30010101":{"solarSystemId":30010101,"solarSystemName":"P:1O1T","location":{"x":-8270000000000000000,"y":4380000000000000,"z":-3000000000000000000}},"30010102":{"solarSystemId":30010102,"solarSystemName":"G:T1N0","location":{"x":-8990000000000000000,"y":-362000000000000000,"z":-3060000000000000000}},"30010103":{"solarSystemId":30010103,"solarSystemName":"U:35RV","location":{"x":-8850000000000000000,"y":-595000000000000000,"z":-2420000000000000000}},"30010104":{"solarSystemId":30010104,"solarSystemName":"F:3418","location":{"x":-9210000000000000000,"y":306000000000000000,"z":-4460000000000000000}},"30010105":{"solarSystemId":30010105,"solarSystemName":"U:2LTT","location":{"x":-8380000000000000000,"y":467000000000000000,"z":-4680000000000000000}},"30010106":{"solarSystemId":30010106,"solarSystemName":"Y:195O","location":{"x":-8810000000000000000,"y":-164000000000000000,"z":-4170000000000000000}},"30010107":{"solarSystemId":30010107,"solarSystemName":"Q:1R10","location":{"x":-9390000000000000000,"y":-11100000000000000,"z":-3960000000000000000}},"30010108":{"solarSystemId":30010108,"solarSystemName":"F:15NV","location":{"x":-8720000000000000000,"y":-376000000000000000,"z":-5320000000000000000}},"30010109":{"solarSystemId":30010109,"solarSystemName":"B:14SS","location":{"x":-8570000000000000000,"y":467000000000000000,"z":-4190000000000000000}},"30010110":{"solarSystemId":30010110,"solarSystemName":"U:AVI4","location":{"x":-8300000000000000000,"y":399000000000000000,"z":-4410000000000000000}},"30010111":{"solarSystemId":30010111,"solarSystemName":"H:278L","location":{"x":-9590000000000000000,"y":-81000000000000000,"z":-4710000000000000000}},"30010112":{"solarSystemId":30010112,"solarSystemName":"Y:2863","location":{"x":-8100000000000000000,"y":-245000000000000000,"z":-3770000000000000000}},"30010113":{"solarSystemId":30010113,"solarSystemName":"H:326R","location":{"x":-8550000000000000000,"y":228000000000000000,"z":-5500000000000000000}},"30010114":{"solarSystemId":30010114,"solarSystemName":"G:24IR","location":{"x":-8620000000000000000,"y":-38300000000000000,"z":-3790000000000000000}},"30010115":{"solarSystemId":30010115,"solarSystemName":"Y:V96L","location":{"x":-8070000000000000000,"y":-1550000000000000000,"z":-4190000000000000000}},"30010116":{"solarSystemId":30010116,"solarSystemName":"H:4I75","location":{"x":-9050000000000000000,"y":491000000000000000,"z":-3940000000000000000}},"30010117":{"solarSystemId":30010117,"solarSystemName":"J:180L","location":{"x":-8760000000000000000,"y":-173000000000000000,"z":-4920000000000000000}},"30010118":{"solarSystemId":30010118,"solarSystemName":"M:1O3R","location":{"x":-9120000000000000000,"y":264000000000000000,"z":-4160000000000000000}},"30010119":{"solarSystemId":30010119,"solarSystemName":"F:OK3E","location":{"x":-8370000000000000000,"y":417000000000000000,"z":-5350000000000000000}},"30010120":{"solarSystemId":30010120,"solarSystemName":"B:I737","location":{"x":-9320000000000000000,"y":294000000000000000,"z":-4130000000000000000}},"30010121":{"solarSystemId":30010121,"solarSystemName":"B:I8O6","location":{"x":-8370000000000000000,"y":459000000000000000,"z":-5010000000000000000}},"30010122":{"solarSystemId":30010122,"solarSystemName":"M:1925","location":{"x":-8590000000000000000,"y":287000000000000000,"z":-4800000000000000000}},"30010123":{"solarSystemId":30010123,"solarSystemName":"D:291L","location":{"x":-8880000000000000000,"y":-162000000000000000,"z":-4520000000000000000}},"30010124":{"solarSystemId":30010124,"solarSystemName":"P:1L85","location":{"x":-9610000000000000000,"y":-186000000000000000,"z":-4780000000000000000}},"30010125":{"solarSystemId":30010125,"solarSystemName":"Z:4N88","location":{"x":-8420000000000000000,"y":337000000000000000,"z":-3670000000000000000}},"30010126":{"solarSystemId":30010126,"solarSystemName":"J:22T3","location":{"x":-8380000000000000000,"y":-1220000000000000000,"z":-4040000000000000000}},"30010127":{"solarSystemId":30010127,"solarSystemName":"D:44KL","location":{"x":-8670000000000000000,"y":-50800000000000000,"z":-3700000000000000000}},"30010128":{"solarSystemId":30010128,"solarSystemName":"U:3RKL","location":{"x":-8720000000000000000,"y":371000000000000000,"z":-5000000000000000000}},"30010129":{"solarSystemId":30010129,"solarSystemName":"D:38I6","location":{"x":-8390000000000000000,"y":-277000000000000000,"z":-4770000000000000000}},"30010130":{"solarSystemId":30010130,"solarSystemName":"U:36AI","location":{"x":-8630000000000000000,"y":1340000000000000000,"z":-2710000000000000000}},"30010131":{"solarSystemId":30010131,"solarSystemName":"G:29L6","location":{"x":-7260000000000000000,"y":2190000000000000000,"z":-3570000000000000000}},"30010132":{"solarSystemId":30010132,"solarSystemName":"Q:1S13","location":{"x":-8760000000000000000,"y":1130000000000000000,"z":-3270000000000000000}},"30010133":{"solarSystemId":30010133,"solarSystemName":"P:1LE0","location":{"x":-7990000000000000000,"y":1760000000000000000,"z":-2670000000000000000}},"30010134":{"solarSystemId":30010134,"solarSystemName":"F:33T3","location":{"x":-7870000000000000000,"y":476000000000000000,"z":-2900000000000000000}},"30010135":{"solarSystemId":30010135,"solarSystemName":"F:20S7","location":{"x":-7780000000000000000,"y":1280000000000000000,"z":-3080000000000000000}},"30010136":{"solarSystemId":30010136,"solarSystemName":"B:1138","location":{"x":-8150000000000000000,"y":371000000000000000,"z":-2610000000000000000}},"30010137":{"solarSystemId":30010137,"solarSystemName":"H:26I9","location":{"x":-8830000000000000000,"y":1820000000000000000,"z":-3370000000000000000}},"30010138":{"solarSystemId":30010138,"solarSystemName":"D:23OA","location":{"x":-7140000000000000000,"y":1700000000000000000,"z":-2020000000000000000}},"30010139":{"solarSystemId":30010139,"solarSystemName":"Z:IO4N","location":{"x":-9250000000000000000,"y":1760000000000000000,"z":-3420000000000000000}},"30010140":{"solarSystemId":30010140,"solarSystemName":"U:23K9","location":{"x":-7970000000000000000,"y":596000000000000000,"z":-2660000000000000000}},"30010141":{"solarSystemId":30010141,"solarSystemName":"F:3E57","location":{"x":-7680000000000000000,"y":1920000000000000000,"z":-1950000000000000000}},"30010142":{"solarSystemId":30010142,"solarSystemName":"J:3EVR","location":{"x":-7940000000000000000,"y":1240000000000000000,"z":-1650000000000000000}},"30010143":{"solarSystemId":30010143,"solarSystemName":"D:3R9N","location":{"x":-7440000000000000000,"y":849000000000000000,"z":-2230000000000000000}},"30010144":{"solarSystemId":30010144,"solarSystemName":"M:34V0","location":{"x":-8350000000000000000,"y":1330000000000000000,"z":-1860000000000000000}},"30010145":{"solarSystemId":30010145,"solarSystemName":"H:33OA","location":{"x":-8350000000000000000,"y":615000000000000000,"z":-2630000000000000000}},"30010146":{"solarSystemId":30010146,"solarSystemName":"F:1N3V","location":{"x":-7940000000000000000,"y":1700000000000000000,"z":-3120000000000000000}},"30010147":{"solarSystemId":30010147,"solarSystemName":"U:LV77","location":{"x":-7070000000000000000,"y":1790000000000000000,"z":-3260000000000000000}},"30010148":{"solarSystemId":30010148,"solarSystemName":"G:1992","location":{"x":-8330000000000000000,"y":1170000000000000000,"z":-2370000000000000000}},"30010149":{"solarSystemId":30010149,"solarSystemName":"M:2TLT","location":{"x":-12900000000000000000,"y":3110000000000000000,"z":-7630000000000000000}},"30010150":{"solarSystemId":30010150,"solarSystemName":"F:3N04","location":{"x":-10500000000000000000,"y":5490000000000000000,"z":-5760000000000000000}},"30010151":{"solarSystemId":30010151,"solarSystemName":"Q:1TO3","location":{"x":-12200000000000000000,"y":4820000000000000000,"z":-6700000000000000000}},"30010152":{"solarSystemId":30010152,"solarSystemName":"D:370N","location":{"x":-13000000000000000000,"y":3250000000000000000,"z":-6450000000000000000}},"30010153":{"solarSystemId":30010153,"solarSystemName":"D:K1E4","location":{"x":-10900000000000000000,"y":5070000000000000000,"z":-5750000000000000000}},"30010154":{"solarSystemId":30010154,"solarSystemName":"G:102A","location":{"x":-12700000000000000000,"y":2660000000000000000,"z":-7700000000000000000}},"30010155":{"solarSystemId":30010155,"solarSystemName":"F:126R","location":{"x":-11400000000000000000,"y":2940000000000000000,"z":-7350000000000000000}},"30010156":{"solarSystemId":30010156,"solarSystemName":"Y:3R0S","location":{"x":-10900000000000000000,"y":901000000000000000,"z":-8770000000000000000}},"30010157":{"solarSystemId":30010157,"solarSystemName":"Q:2T54","location":{"x":-11200000000000000000,"y":482000000000000000,"z":-8970000000000000000}},"30010158":{"solarSystemId":30010158,"solarSystemName":"Q:1ESE","location":{"x":-10800000000000000000,"y":899000000000000000,"z":-9270000000000000000}},"30010159":{"solarSystemId":30010159,"solarSystemName":"G:1LO6","location":{"x":-10200000000000000000,"y":933000000000000000,"z":-8760000000000000000}},"30010160":{"solarSystemId":30010160,"solarSystemName":"P:26TT","location":{"x":-10700000000000000000,"y":839000000000000000,"z":-8350000000000000000}},"30010161":{"solarSystemId":30010161,"solarSystemName":"J:16T7","location":{"x":-10900000000000000000,"y":876000000000000000,"z":-9190000000000000000}},"30010162":{"solarSystemId":30010162,"solarSystemName":"M:1A5L","location":{"x":-10900000000000000000,"y":922000000000000000,"z":-9050000000000000000}},"30010163":{"solarSystemId":30010163,"solarSystemName":"G:310V","location":{"x":-10900000000000000000,"y":324000000000000000,"z":-8770000000000000000}},"30010164":{"solarSystemId":30010164,"solarSystemName":"B:1TK1","location":{"x":-10200000000000000000,"y":710000000000000000,"z":-8830000000000000000}},"30010165":{"solarSystemId":30010165,"solarSystemName":"Y:2ESS","location":{"x":-10300000000000000000,"y":823000000000000000,"z":-8960000000000000000}},"30010166":{"solarSystemId":30010166,"solarSystemName":"U:26E1","location":{"x":-10300000000000000000,"y":994000000000000000,"z":-8990000000000000000}},"30010167":{"solarSystemId":30010167,"solarSystemName":"J:35RL","location":{"x":-11200000000000000000,"y":289000000000000000,"z":-8690000000000000000}},"30010168":{"solarSystemId":30010168,"solarSystemName":"B:1R4L","location":{"x":-10800000000000000000,"y":780000000000000000,"z":-8780000000000000000}},"30010169":{"solarSystemId":30010169,"solarSystemName":"P:1514","location":{"x":-10800000000000000000,"y":699000000000000000,"z":-8870000000000000000}},"30010170":{"solarSystemId":30010170,"solarSystemName":"P:2I2R","location":{"x":-10500000000000000000,"y":1200000000000000000,"z":-8900000000000000000}},"30010171":{"solarSystemId":30010171,"solarSystemName":"G:2O4O","location":{"x":-10700000000000000000,"y":695000000000000000,"z":-8540000000000000000}},"30010172":{"solarSystemId":30010172,"solarSystemName":"D:28L0","location":{"x":-10400000000000000000,"y":1050000000000000000,"z":-9120000000000000000}},"30010173":{"solarSystemId":30010173,"solarSystemName":"M:133I","location":{"x":-10800000000000000000,"y":745000000000000000,"z":-8400000000000000000}},"30010174":{"solarSystemId":30010174,"solarSystemName":"H:2T27","location":{"x":-11300000000000000000,"y":288000000000000000,"z":-8830000000000000000}},"30010175":{"solarSystemId":30010175,"solarSystemName":"H:1AIL","location":{"x":-12600000000000000000,"y":786000000000000000,"z":-8070000000000000000}},"30010176":{"solarSystemId":30010176,"solarSystemName":"J:TVE8","location":{"x":-12700000000000000000,"y":1070000000000000000,"z":-8280000000000000000}},"30010177":{"solarSystemId":30010177,"solarSystemName":"H:322S","location":{"x":-12100000000000000000,"y":771000000000000000,"z":-8370000000000000000}},"30010178":{"solarSystemId":30010178,"solarSystemName":"J:12RK","location":{"x":-12100000000000000000,"y":761000000000000000,"z":-8390000000000000000}},"30010179":{"solarSystemId":30010179,"solarSystemName":"G:1TR9","location":{"x":-12800000000000000000,"y":546000000000000000,"z":-8140000000000000000}},"30010180":{"solarSystemId":30010180,"solarSystemName":"J:I3EK","location":{"x":-12200000000000000000,"y":510000000000000000,"z":-8590000000000000000}},"30010181":{"solarSystemId":30010181,"solarSystemName":"Y:1LKA","location":{"x":-12100000000000000000,"y":955000000000000000,"z":-8270000000000000000}},"30010182":{"solarSystemId":30010182,"solarSystemName":"U:13AS","location":{"x":-12300000000000000000,"y":981000000000000000,"z":-8160000000000000000}},"30010183":{"solarSystemId":30010183,"solarSystemName":"U:1KOA","location":{"x":-12000000000000000000,"y":1100000000000000000,"z":-8050000000000000000}},"30010184":{"solarSystemId":30010184,"solarSystemName":"D:1N8N","location":{"x":-11900000000000000000,"y":1130000000000000000,"z":-8210000000000000000}},"30010185":{"solarSystemId":30010185,"solarSystemName":"B:1E1L","location":{"x":-12100000000000000000,"y":853000000000000000,"z":-8420000000000000000}},"30010186":{"solarSystemId":30010186,"solarSystemName":"M:3579","location":{"x":-12600000000000000000,"y":803000000000000000,"z":-8150000000000000000}},"30010187":{"solarSystemId":30010187,"solarSystemName":"U:2LAL","location":{"x":-12300000000000000000,"y":1730000000000000000,"z":-8510000000000000000}},"30010188":{"solarSystemId":30010188,"solarSystemName":"G:243K","location":{"x":-12200000000000000000,"y":915000000000000000,"z":-8380000000000000000}},"30010189":{"solarSystemId":30010189,"solarSystemName":"U:32S8","location":{"x":-12600000000000000000,"y":831000000000000000,"z":-8520000000000000000}},"30010190":{"solarSystemId":30010190,"solarSystemName":"Z:325N","location":{"x":-12300000000000000000,"y":1250000000000000000,"z":-8220000000000000000}},"30010191":{"solarSystemId":30010191,"solarSystemName":"J:22L9","location":{"x":-12000000000000000000,"y":1170000000000000000,"z":-8200000000000000000}},"30010192":{"solarSystemId":30010192,"solarSystemName":"J:30I7","location":{"x":-12200000000000000000,"y":435000000000000000,"z":-8590000000000000000}},"30010193":{"solarSystemId":30010193,"solarSystemName":"J:228T","location":{"x":-11900000000000000000,"y":1060000000000000000,"z":-8490000000000000000}},"30010194":{"solarSystemId":30010194,"solarSystemName":"H:46E2","location":{"x":-11000000000000000000,"y":909000000000000000,"z":-8020000000000000000}},"30010195":{"solarSystemId":30010195,"solarSystemName":"B:TI4E","location":{"x":-10900000000000000000,"y":942000000000000000,"z":-7840000000000000000}},"30010196":{"solarSystemId":30010196,"solarSystemName":"Z:2178","location":{"x":-10800000000000000000,"y":725000000000000000,"z":-7740000000000000000}},"30010197":{"solarSystemId":30010197,"solarSystemName":"P:3T93","location":{"x":-11100000000000000000,"y":1080000000000000000,"z":-7800000000000000000}},"30010198":{"solarSystemId":30010198,"solarSystemName":"F:2462","location":{"x":-10800000000000000000,"y":795000000000000000,"z":-7870000000000000000}},"30010199":{"solarSystemId":30010199,"solarSystemName":"G:I06O","location":{"x":-11000000000000000000,"y":931000000000000000,"z":-7790000000000000000}},"30010200":{"solarSystemId":30010200,"solarSystemName":"Q:2R8E","location":{"x":-10800000000000000000,"y":861000000000000000,"z":-7820000000000000000}},"30010201":{"solarSystemId":30010201,"solarSystemName":"U:29OR","location":{"x":-11000000000000000000,"y":986000000000000000,"z":-7790000000000000000}},"30010202":{"solarSystemId":30010202,"solarSystemName":"J:2A69","location":{"x":-10900000000000000000,"y":920000000000000000,"z":-7770000000000000000}},"30010203":{"solarSystemId":30010203,"solarSystemName":"Q:23T4","location":{"x":-11000000000000000000,"y":853000000000000000,"z":-7910000000000000000}},"30010204":{"solarSystemId":30010204,"solarSystemName":"D:2I37","location":{"x":-10900000000000000000,"y":855000000000000000,"z":-7790000000000000000}},"30010205":{"solarSystemId":30010205,"solarSystemName":"G:23E2","location":{"x":-10900000000000000000,"y":788000000000000000,"z":-7790000000000000000}},"30010206":{"solarSystemId":30010206,"solarSystemName":"B:237E","location":{"x":-10900000000000000000,"y":822000000000000000,"z":-7790000000000000000}},"30010207":{"solarSystemId":30010207,"solarSystemName":"H:160V","location":{"x":-11000000000000000000,"y":793000000000000000,"z":-7670000000000000000}},"30010208":{"solarSystemId":30010208,"solarSystemName":"Z:2A6S","location":{"x":-11000000000000000000,"y":779000000000000000,"z":-7740000000000000000}},"30010209":{"solarSystemId":30010209,"solarSystemName":"Q:2RV9","location":{"x":-11000000000000000000,"y":734000000000000000,"z":-7850000000000000000}},"30010210":{"solarSystemId":30010210,"solarSystemName":"B:4OLR","location":{"x":-10900000000000000000,"y":938000000000000000,"z":-8060000000000000000}},"30010211":{"solarSystemId":30010211,"solarSystemName":"Q:2632","location":{"x":-10900000000000000000,"y":894000000000000000,"z":-7880000000000000000}},"30010212":{"solarSystemId":30010212,"solarSystemName":"D:2S5L","location":{"x":-10800000000000000000,"y":793000000000000000,"z":-7740000000000000000}},"30010213":{"solarSystemId":30010213,"solarSystemName":"F:2KS7","location":{"x":-10700000000000000000,"y":841000000000000000,"z":-7860000000000000000}},"30010214":{"solarSystemId":30010214,"solarSystemName":"M:2676","location":{"x":-11200000000000000000,"y":1030000000000000000,"z":-8070000000000000000}},"30010215":{"solarSystemId":30010215,"solarSystemName":"P:336R","location":{"x":-11400000000000000000,"y":1630000000000000000,"z":-8140000000000000000}},"30010216":{"solarSystemId":30010216,"solarSystemName":"Q:21KI","location":{"x":-11000000000000000000,"y":1330000000000000000,"z":-8170000000000000000}},"30010217":{"solarSystemId":30010217,"solarSystemName":"B:21VL","location":{"x":-11400000000000000000,"y":1070000000000000000,"z":-8040000000000000000}},"30010218":{"solarSystemId":30010218,"solarSystemName":"U:2TVI","location":{"x":-11000000000000000000,"y":962000000000000000,"z":-8290000000000000000}},"30010219":{"solarSystemId":30010219,"solarSystemName":"P:27O1","location":{"x":-11100000000000000000,"y":1070000000000000000,"z":-8190000000000000000}},"30010220":{"solarSystemId":30010220,"solarSystemName":"J:2829","location":{"x":-11100000000000000000,"y":1340000000000000000,"z":-8140000000000000000}},"30010221":{"solarSystemId":30010221,"solarSystemName":"G:32ST","location":{"x":-11100000000000000000,"y":950000000000000000,"z":-8140000000000000000}},"30010222":{"solarSystemId":30010222,"solarSystemName":"P:R8A0","location":{"x":-11400000000000000000,"y":1060000000000000000,"z":-8050000000000000000}},"30010223":{"solarSystemId":30010223,"solarSystemName":"U:NE3V","location":{"x":-11200000000000000000,"y":1030000000000000000,"z":-8090000000000000000}},"30010224":{"solarSystemId":30010224,"solarSystemName":"D:18VR","location":{"x":-11100000000000000000,"y":982000000000000000,"z":-8060000000000000000}},"30010225":{"solarSystemId":30010225,"solarSystemName":"F:2SO2","location":{"x":-11100000000000000000,"y":1330000000000000000,"z":-8330000000000000000}},"30010226":{"solarSystemId":30010226,"solarSystemName":"H:2I61","location":{"x":-11300000000000000000,"y":1790000000000000000,"z":-8490000000000000000}},"30010227":{"solarSystemId":30010227,"solarSystemName":"D:2L42","location":{"x":-10900000000000000000,"y":981000000000000000,"z":-8550000000000000000}},"30010228":{"solarSystemId":30010228,"solarSystemName":"G:50I3","location":{"x":-11300000000000000000,"y":1420000000000000000,"z":-8160000000000000000}},"30010229":{"solarSystemId":30010229,"solarSystemName":"G:20L6","location":{"x":-11500000000000000000,"y":919000000000000000,"z":-7890000000000000000}},"30010230":{"solarSystemId":30010230,"solarSystemName":"P:44RE","location":{"x":-11100000000000000000,"y":782000000000000000,"z":-8160000000000000000}},"30010231":{"solarSystemId":30010231,"solarSystemName":"Z:1190","location":{"x":-11000000000000000000,"y":818000000000000000,"z":-8320000000000000000}},"30010232":{"solarSystemId":30010232,"solarSystemName":"B:ETLA","location":{"x":-10800000000000000000,"y":1070000000000000000,"z":-8070000000000000000}},"30010233":{"solarSystemId":30010233,"solarSystemName":"Y:248S","location":{"x":-10900000000000000000,"y":1050000000000000000,"z":-8110000000000000000}},"30010234":{"solarSystemId":30010234,"solarSystemName":"H:2OIA","location":{"x":-11200000000000000000,"y":813000000000000000,"z":-7820000000000000000}},"30010235":{"solarSystemId":30010235,"solarSystemName":"D:1I1A","location":{"x":-11100000000000000000,"y":758000000000000000,"z":-7810000000000000000}},"30010236":{"solarSystemId":30010236,"solarSystemName":"Y:32T5","location":{"x":-11200000000000000000,"y":811000000000000000,"z":-7770000000000000000}},"30010237":{"solarSystemId":30010237,"solarSystemName":"G:32RN","location":{"x":-11200000000000000000,"y":794000000000000000,"z":-7930000000000000000}},"30010238":{"solarSystemId":30010238,"solarSystemName":"Y:K174","location":{"x":-11500000000000000000,"y":942000000000000000,"z":-7830000000000000000}},"30010239":{"solarSystemId":30010239,"solarSystemName":"F:2T22","location":{"x":-11100000000000000000,"y":811000000000000000,"z":-7770000000000000000}},"30010240":{"solarSystemId":30010240,"solarSystemName":"B:28EA","location":{"x":-11100000000000000000,"y":855000000000000000,"z":-7810000000000000000}},"30010241":{"solarSystemId":30010241,"solarSystemName":"Q:1AKA","location":{"x":-11200000000000000000,"y":996000000000000000,"z":-8060000000000000000}},"30010242":{"solarSystemId":30010242,"solarSystemName":"P:2IE2","location":{"x":-11100000000000000000,"y":960000000000000000,"z":-8010000000000000000}},"30010243":{"solarSystemId":30010243,"solarSystemName":"F:1T19","location":{"x":-11200000000000000000,"y":855000000000000000,"z":-7770000000000000000}},"30010244":{"solarSystemId":30010244,"solarSystemName":"M:1E02","location":{"x":-11200000000000000000,"y":962000000000000000,"z":-7800000000000000000}},"30010245":{"solarSystemId":30010245,"solarSystemName":"Y:E4O9","location":{"x":-11100000000000000000,"y":700000000000000000,"z":-8140000000000000000}},"30010246":{"solarSystemId":30010246,"solarSystemName":"B:2VKA","location":{"x":-11100000000000000000,"y":851000000000000000,"z":-7750000000000000000}},"30010247":{"solarSystemId":30010247,"solarSystemName":"F:1NV4","location":{"x":-11100000000000000000,"y":889000000000000000,"z":-7830000000000000000}},"30010248":{"solarSystemId":30010248,"solarSystemName":"B:27AL","location":{"x":-11200000000000000000,"y":821000000000000000,"z":-7930000000000000000}},"30010249":{"solarSystemId":30010249,"solarSystemName":"B:20RO","location":{"x":-11200000000000000000,"y":721000000000000000,"z":-7850000000000000000}},"30010250":{"solarSystemId":30010250,"solarSystemName":"F:1NE8","location":{"x":-11300000000000000000,"y":763000000000000000,"z":-7800000000000000000}},"30010251":{"solarSystemId":30010251,"solarSystemName":"B:24TT","location":{"x":-11200000000000000000,"y":807000000000000000,"z":-8110000000000000000}},"30010252":{"solarSystemId":30010252,"solarSystemName":"F:1S75","location":{"x":-11100000000000000000,"y":747000000000000000,"z":-7810000000000000000}},"30010253":{"solarSystemId":30010253,"solarSystemName":"J:30IN","location":{"x":-11300000000000000000,"y":877000000000000000,"z":-8630000000000000000}},"30010254":{"solarSystemId":30010254,"solarSystemName":"G:227V","location":{"x":-11400000000000000000,"y":916000000000000000,"z":-9040000000000000000}},"30010255":{"solarSystemId":30010255,"solarSystemName":"D:1LIS","location":{"x":-11000000000000000000,"y":902000000000000000,"z":-8690000000000000000}},"30010256":{"solarSystemId":30010256,"solarSystemName":"J:4EK3","location":{"x":-11200000000000000000,"y":995000000000000000,"z":-8540000000000000000}},"30010257":{"solarSystemId":30010257,"solarSystemName":"Q:1KL1","location":{"x":-11700000000000000000,"y":791000000000000000,"z":-8840000000000000000}},"30010258":{"solarSystemId":30010258,"solarSystemName":"Z:2L95","location":{"x":-11400000000000000000,"y":827000000000000000,"z":-8450000000000000000}},"30010259":{"solarSystemId":30010259,"solarSystemName":"Q:2TS2","location":{"x":-11300000000000000000,"y":800000000000000000,"z":-8390000000000000000}},"30010260":{"solarSystemId":30010260,"solarSystemName":"M:2TA7","location":{"x":-11400000000000000000,"y":856000000000000000,"z":-8410000000000000000}},"30010261":{"solarSystemId":30010261,"solarSystemName":"P:2RL3","location":{"x":-11400000000000000000,"y":935000000000000000,"z":-8510000000000000000}},"30010262":{"solarSystemId":30010262,"solarSystemName":"U:1KAS","location":{"x":-11400000000000000000,"y":934000000000000000,"z":-8260000000000000000}},"30010263":{"solarSystemId":30010263,"solarSystemName":"H:27E4","location":{"x":-11500000000000000000,"y":741000000000000000,"z":-8590000000000000000}},"30010264":{"solarSystemId":30010264,"solarSystemName":"P:2T03","location":{"x":-11600000000000000000,"y":796000000000000000,"z":-8590000000000000000}},"30010265":{"solarSystemId":30010265,"solarSystemName":"M:2EIN","location":{"x":-11500000000000000000,"y":699000000000000000,"z":-8930000000000000000}},"30010266":{"solarSystemId":30010266,"solarSystemName":"Y:2981","location":{"x":-11500000000000000000,"y":879000000000000000,"z":-8880000000000000000}},"30010267":{"solarSystemId":30010267,"solarSystemName":"J:1N67","location":{"x":-11400000000000000000,"y":944000000000000000,"z":-8520000000000000000}},"30010268":{"solarSystemId":30010268,"solarSystemName":"U:2726","location":{"x":-11200000000000000000,"y":955000000000000000,"z":-8470000000000000000}},"30010269":{"solarSystemId":30010269,"solarSystemName":"Z:1LN6","location":{"x":-11500000000000000000,"y":961000000000000000,"z":-8330000000000000000}},"30010270":{"solarSystemId":30010270,"solarSystemName":"G:3TNA","location":{"x":433000000000000000,"y":2850000000000000000,"z":-6530000000000000000}},"30010271":{"solarSystemId":30010271,"solarSystemName":"P:2AE6","location":{"x":1060000000000000000,"y":1150000000000000000,"z":-6830000000000000000}},"30010272":{"solarSystemId":30010272,"solarSystemName":"J:2L91","location":{"x":539000000000000000,"y":732000000000000000,"z":-6850000000000000000}},"30010273":{"solarSystemId":30010273,"solarSystemName":"J:3201","location":{"x":1650000000000000000,"y":1200000000000000000,"z":-7130000000000000000}},"30010274":{"solarSystemId":30010274,"solarSystemName":"F:2A3N","location":{"x":1540000000000000000,"y":328000000000000000,"z":-5990000000000000000}},"30010275":{"solarSystemId":30010275,"solarSystemName":"G:3723","location":{"x":1390000000000000000,"y":269000000000000000,"z":-7050000000000000000}},"30010276":{"solarSystemId":30010276,"solarSystemName":"P:3SRN","location":{"x":266000000000000000,"y":3070000000000000000,"z":-7100000000000000000}},"30010277":{"solarSystemId":30010277,"solarSystemName":"J:2VOO","location":{"x":646000000000000000,"y":2460000000000000000,"z":-5860000000000000000}},"30010278":{"solarSystemId":30010278,"solarSystemName":"B:3793","location":{"x":277000000000000000,"y":2500000000000000000,"z":-6480000000000000000}},"30010279":{"solarSystemId":30010279,"solarSystemName":"P:29K8","location":{"x":362000000000000000,"y":1910000000000000000,"z":-6440000000000000000}},"30010280":{"solarSystemId":30010280,"solarSystemName":"D:2I1R","location":{"x":-11700000000000000,"y":2240000000000000000,"z":-6660000000000000000}},"30010281":{"solarSystemId":30010281,"solarSystemName":"J:T3LL","location":{"x":1500000000000000000,"y":385000000000000000,"z":-7110000000000000000}},"30010282":{"solarSystemId":30010282,"solarSystemName":"M:VL0O","location":{"x":1490000000000000000,"y":1620000000000000000,"z":-7710000000000000000}},"30010283":{"solarSystemId":30010283,"solarSystemName":"M:1VL5","location":{"x":1060000000000000000,"y":289000000000000000,"z":-5980000000000000000}},"30010284":{"solarSystemId":30010284,"solarSystemName":"D:1R01","location":{"x":1140000000000000000,"y":1450000000000000000,"z":-6580000000000000000}},"30010285":{"solarSystemId":30010285,"solarSystemName":"P:35K1","location":{"x":284000000000000000,"y":-125000000000000000,"z":-10200000000000000000}},"30010286":{"solarSystemId":30010286,"solarSystemName":"M:3VR6","location":{"x":1530000000000000000,"y":937000000000000000,"z":-9920000000000000000}},"30010287":{"solarSystemId":30010287,"solarSystemName":"G:1L98","location":{"x":1140000000000000000,"y":428000000000000000,"z":-10100000000000000000}},"30010288":{"solarSystemId":30010288,"solarSystemName":"J:K9N8","location":{"x":1490000000000000000,"y":831000000000000000,"z":-10700000000000000000}},"30010289":{"solarSystemId":30010289,"solarSystemName":"Z:E5AV","location":{"x":543000000000000000,"y":-34000000000000000,"z":-11100000000000000000}},"30010290":{"solarSystemId":30010290,"solarSystemName":"J:1RVL","location":{"x":780000000000000000,"y":746000000000000000,"z":-10600000000000000000}},"30010291":{"solarSystemId":30010291,"solarSystemName":"G:37V2","location":{"x":402000000000000000,"y":1060000000000000000,"z":-9840000000000000000}},"30010292":{"solarSystemId":30010292,"solarSystemName":"D:243I","location":{"x":695000000000000000,"y":1580000000000000000,"z":-10000000000000000000}},"30010293":{"solarSystemId":30010293,"solarSystemName":"J:3S4E","location":{"x":1150000000000000000,"y":523000000000000000,"z":-11200000000000000000}},"30010294":{"solarSystemId":30010294,"solarSystemName":"Z:3ST2","location":{"x":101000000000000000,"y":-162000000000000000,"z":-11200000000000000000}},"30010295":{"solarSystemId":30010295,"solarSystemName":"Z:3O18","location":{"x":1270000000000000000,"y":124000000000000000,"z":-10800000000000000000}},"30010296":{"solarSystemId":30010296,"solarSystemName":"Y:2506","location":{"x":427000000000000000,"y":-173000000000000000,"z":-11000000000000000000}},"30010297":{"solarSystemId":30010297,"solarSystemName":"B:2NIA","location":{"x":-43400000000000000,"y":883000000000000000,"z":-10600000000000000000}},"30010298":{"solarSystemId":30010298,"solarSystemName":"U:38R8","location":{"x":3260000000000000000,"y":1360000000000000000,"z":-8600000000000000000}},"30010299":{"solarSystemId":30010299,"solarSystemName":"Z:2E32","location":{"x":2510000000000000000,"y":995000000000000000,"z":-8160000000000000000}},"30010300":{"solarSystemId":30010300,"solarSystemName":"D:1R4E","location":{"x":3420000000000000000,"y":39500000000000000,"z":-7930000000000000000}},"30010301":{"solarSystemId":30010301,"solarSystemName":"U:205S","location":{"x":2850000000000000000,"y":-568000000000000000,"z":-8380000000000000000}},"30010302":{"solarSystemId":30010302,"solarSystemName":"H:22LV","location":{"x":1510000000000000000,"y":397000000000000000,"z":-9420000000000000000}},"30010303":{"solarSystemId":30010303,"solarSystemName":"Q:387L","location":{"x":1710000000000000000,"y":632000000000000000,"z":-9380000000000000000}},"30010304":{"solarSystemId":30010304,"solarSystemName":"G:3E33","location":{"x":3040000000000000000,"y":93300000000000000,"z":-7840000000000000000}},"30010305":{"solarSystemId":30010305,"solarSystemName":"F:3V60","location":{"x":1650000000000000000,"y":728000000000000000,"z":-7810000000000000000}},"30010306":{"solarSystemId":30010306,"solarSystemName":"J:28VR","location":{"x":1980000000000000000,"y":-186000000000000000,"z":-8050000000000000000}},"30010307":{"solarSystemId":30010307,"solarSystemName":"U:E2VA","location":{"x":1810000000000000000,"y":80900000000000000,"z":-7590000000000000000}},"30010308":{"solarSystemId":30010308,"solarSystemName":"U:1AA8","location":{"x":2830000000000000000,"y":-343000000000000000,"z":-8620000000000000000}},"30010309":{"solarSystemId":30010309,"solarSystemName":"U:28VA","location":{"x":1380000000000000000,"y":528000000000000000,"z":-7880000000000000000}},"30010310":{"solarSystemId":30010310,"solarSystemName":"U:3NT0","location":{"x":2180000000000000000,"y":239000000000000000,"z":-7450000000000000000}},"30010311":{"solarSystemId":30010311,"solarSystemName":"Z:1880","location":{"x":1810000000000000000,"y":628000000000000000,"z":-7820000000000000000}},"30010312":{"solarSystemId":30010312,"solarSystemName":"J:30KI","location":{"x":290000000000000000,"y":815000000000000000,"z":-9060000000000000000}},"30010313":{"solarSystemId":30010313,"solarSystemName":"Z:2ER8","location":{"x":795000000000000000,"y":1250000000000000000,"z":-7520000000000000000}},"30010314":{"solarSystemId":30010314,"solarSystemName":"B:377A","location":{"x":-467000000000000000,"y":578000000000000000,"z":-8300000000000000000}},"30010315":{"solarSystemId":30010315,"solarSystemName":"Y:3I6R","location":{"x":-410000000000000000,"y":1540000000000000000,"z":-8990000000000000000}},"30010316":{"solarSystemId":30010316,"solarSystemName":"U:41E6","location":{"x":920000000000000000,"y":1380000000000000000,"z":-8960000000000000000}},"30010317":{"solarSystemId":30010317,"solarSystemName":"P:2A76","location":{"x":164000000000000000,"y":744000000000000000,"z":-7790000000000000000}},"30010318":{"solarSystemId":30010318,"solarSystemName":"F:3RVT","location":{"x":340000000000000000,"y":1460000000000000000,"z":-7440000000000000000}},"30010319":{"solarSystemId":30010319,"solarSystemName":"F:1R29","location":{"x":1010000000000000000,"y":1230000000000000000,"z":-8790000000000000000}},"30010320":{"solarSystemId":30010320,"solarSystemName":"Z:372T","location":{"x":26600000000000000,"y":1910000000000000000,"z":-7610000000000000000}},"30010321":{"solarSystemId":30010321,"solarSystemName":"G:3T97","location":{"x":425000000000000000,"y":2420000000000000000,"z":-8230000000000000000}},"30010322":{"solarSystemId":30010322,"solarSystemName":"Y:2V2K","location":{"x":1410000000000000000,"y":1370000000000000000,"z":-8080000000000000000}},"30010323":{"solarSystemId":30010323,"solarSystemName":"Q:1ERA","location":{"x":1010000000000000000,"y":2180000000000000000,"z":-8830000000000000000}},"30010324":{"solarSystemId":30010324,"solarSystemName":"Q:KLOI","location":{"x":190000000000000000,"y":1460000000000000000,"z":-8310000000000000000}},"30010325":{"solarSystemId":30010325,"solarSystemName":"B:3NI3","location":{"x":1020000000000000000,"y":431000000000000000,"z":-8520000000000000000}},"30010326":{"solarSystemId":30010326,"solarSystemName":"F:2O23","location":{"x":-714000000000000000,"y":463000000000000000,"z":-8510000000000000000}},"30010327":{"solarSystemId":30010327,"solarSystemName":"B:1EIT","location":{"x":-814000000000000000,"y":42700000000000000,"z":-8640000000000000000}},"30010328":{"solarSystemId":30010328,"solarSystemName":"H:2OE0","location":{"x":113000000000000000,"y":-89800000000000000,"z":-8460000000000000000}},"30010329":{"solarSystemId":30010329,"solarSystemName":"P:24RT","location":{"x":125000000000000000,"y":-576000000000000000,"z":-9290000000000000000}},"30010330":{"solarSystemId":30010330,"solarSystemName":"Q:2I3I","location":{"x":885000000000000000,"y":372000000000000000,"z":-8650000000000000000}},"30010331":{"solarSystemId":30010331,"solarSystemName":"J:3ERL","location":{"x":-2870000000000000,"y":129000000000000000,"z":-9890000000000000000}},"30010332":{"solarSystemId":30010332,"solarSystemName":"U:3SR4","location":{"x":937000000000000000,"y":27000000000000000,"z":-7410000000000000000}},"30010333":{"solarSystemId":30010333,"solarSystemName":"F:4K5R","location":{"x":-1160000000000000000,"y":-70600000000000000,"z":-8610000000000000000}},"30010334":{"solarSystemId":30010334,"solarSystemName":"D:376A","location":{"x":601000000000000000,"y":-653000000000000000,"z":-8450000000000000000}},"30010335":{"solarSystemId":30010335,"solarSystemName":"Y:I3AK","location":{"x":-860000000000000000,"y":15600000000000000,"z":-8480000000000000000}},"30010336":{"solarSystemId":30010336,"solarSystemName":"J:2RKN","location":{"x":-894000000000000000,"y":-157000000000000000,"z":-7980000000000000000}},"30010337":{"solarSystemId":30010337,"solarSystemName":"Z:201N","location":{"x":-178000000000000000,"y":534000000000000000,"z":-9050000000000000000}},"30010338":{"solarSystemId":30010338,"solarSystemName":"D:S97N","location":{"x":-227000000000000000,"y":-786000000000000000,"z":-9360000000000000000}},"30010339":{"solarSystemId":30010339,"solarSystemName":"Q:29I8","location":{"x":-1130000000000000000,"y":275000000000000000,"z":-8140000000000000000}},"30010340":{"solarSystemId":30010340,"solarSystemName":"D:25IN","location":{"x":1740000000000000000,"y":-946000000000000000,"z":-9260000000000000000}},"30010341":{"solarSystemId":30010341,"solarSystemName":"H:1770","location":{"x":2010000000000000000,"y":-752000000000000000,"z":-9900000000000000000}},"30010342":{"solarSystemId":30010342,"solarSystemName":"J:3VVV","location":{"x":1920000000000000000,"y":-11500000000000000,"z":-9830000000000000000}},"30010343":{"solarSystemId":30010343,"solarSystemName":"F:2NIT","location":{"x":2010000000000000000,"y":-779000000000000000,"z":-10300000000000000000}},"30010344":{"solarSystemId":30010344,"solarSystemName":"P:11KV","location":{"x":2270000000000000000,"y":-356000000000000000,"z":-10300000000000000000}},"30010345":{"solarSystemId":30010345,"solarSystemName":"Y:2123","location":{"x":1810000000000000000,"y":-927000000000000000,"z":-9750000000000000000}},"30010346":{"solarSystemId":30010346,"solarSystemName":"D:2I47","location":{"x":983000000000000000,"y":-80700000000000000,"z":-9740000000000000000}},"30010347":{"solarSystemId":30010347,"solarSystemName":"Q:3946","location":{"x":1360000000000000000,"y":-277000000000000000,"z":-10100000000000000000}},"30010348":{"solarSystemId":30010348,"solarSystemName":"G:1I68","location":{"x":2060000000000000000,"y":-326000000000000000,"z":-8300000000000000000}},"30010349":{"solarSystemId":30010349,"solarSystemName":"Z:1NRN","location":{"x":1400000000000000000,"y":-254000000000000000,"z":-8220000000000000000}},"30010350":{"solarSystemId":30010350,"solarSystemName":"B:2TEA","location":{"x":1030000000000000000,"y":-290000000000000000,"z":-9410000000000000000}},"30010351":{"solarSystemId":30010351,"solarSystemName":"B:372R","location":{"x":1210000000000000000,"y":-22200000000000000,"z":-9770000000000000000}},"30010352":{"solarSystemId":30010352,"solarSystemName":"H:3108","location":{"x":1290000000000000000,"y":-707000000000000000,"z":-10500000000000000000}},"30010353":{"solarSystemId":30010353,"solarSystemName":"Y:375A","location":{"x":-28200000000000000,"y":1750000000000000000,"z":-6030000000000000000}},"30010354":{"solarSystemId":30010354,"solarSystemName":"Z:3R7I","location":{"x":77700000000000000,"y":1040000000000000000,"z":-6670000000000000000}},"30010355":{"solarSystemId":30010355,"solarSystemName":"Z:1593","location":{"x":-322000000000000000,"y":334000000000000000,"z":-6000000000000000000}},"30010356":{"solarSystemId":30010356,"solarSystemName":"J:2RO4","location":{"x":-1290000000000000000,"y":2070000000000000000,"z":-5330000000000000000}},"30010357":{"solarSystemId":30010357,"solarSystemName":"Q:20SV","location":{"x":-652000000000000000,"y":-61400000000000000,"z":-6450000000000000000}},"30010358":{"solarSystemId":30010358,"solarSystemName":"Y:2RLA","location":{"x":-2260000000000000000,"y":259000000000000000,"z":-6350000000000000000}},"30010359":{"solarSystemId":30010359,"solarSystemName":"Z:4N92","location":{"x":-1530000000000000000,"y":587000000000000000,"z":-5630000000000000000}},"30010360":{"solarSystemId":30010360,"solarSystemName":"F:26R4","location":{"x":-1280000000000000000,"y":1280000000000000000,"z":-6350000000000000000}},"30010361":{"solarSystemId":30010361,"solarSystemName":"F:AK0E","location":{"x":-2190000000000000000,"y":66900000000000000,"z":-6100000000000000000}},"30010362":{"solarSystemId":30010362,"solarSystemName":"U:33N6","location":{"x":-2180000000000000000,"y":1090000000000000000,"z":-5640000000000000000}},"30010363":{"solarSystemId":30010363,"solarSystemName":"Q:1N20","location":{"x":-2090000000000000000,"y":918000000000000000,"z":-6010000000000000000}},"30010364":{"solarSystemId":30010364,"solarSystemName":"J:4N0O","location":{"x":-1230000000000000000,"y":508000000000000000,"z":-5410000000000000000}},"30010365":{"solarSystemId":30010365,"solarSystemName":"P:1SIT","location":{"x":-413000000000000000,"y":110000000000000000,"z":-6300000000000000000}},"30010366":{"solarSystemId":30010366,"solarSystemName":"B:R8VK","location":{"x":-1210000000000000000,"y":-114000000000000000,"z":-6260000000000000000}},"30010367":{"solarSystemId":30010367,"solarSystemName":"Y:1ALE","location":{"x":-482000000000000000,"y":-185000000000000000,"z":-6510000000000000000}},"30010368":{"solarSystemId":30010368,"solarSystemName":"Q:1E2O","location":{"x":-1410000000000000000,"y":934000000000000000,"z":-6030000000000000000}},"30010369":{"solarSystemId":30010369,"solarSystemName":"F:3EN8","location":{"x":-1390000000000000000,"y":742000000000000000,"z":-5960000000000000000}},"30010370":{"solarSystemId":30010370,"solarSystemName":"J:2SKO","location":{"x":1890000000000000000,"y":-3700000000000000000,"z":-6970000000000000000}},"30010371":{"solarSystemId":30010371,"solarSystemName":"H:3TV8","location":{"x":900000000000000000,"y":-2900000000000000000,"z":-8460000000000000000}},"30010372":{"solarSystemId":30010372,"solarSystemName":"G:2N6V","location":{"x":1470000000000000000,"y":-2570000000000000000,"z":-9450000000000000000}},"30010373":{"solarSystemId":30010373,"solarSystemName":"D:3VI9","location":{"x":1160000000000000000,"y":-2610000000000000000,"z":-7610000000000000000}},"30010374":{"solarSystemId":30010374,"solarSystemName":"Y:343S","location":{"x":1290000000000000000,"y":-3470000000000000000,"z":-7040000000000000000}},"30010375":{"solarSystemId":30010375,"solarSystemName":"G:36I3","location":{"x":1650000000000000000,"y":-3990000000000000000,"z":-10300000000000000000}},"30010376":{"solarSystemId":30010376,"solarSystemName":"Y:R4R2","location":{"x":-20800000000000000,"y":-284000000000000000,"z":-11500000000000000000}},"30010377":{"solarSystemId":30010377,"solarSystemName":"G:21TL","location":{"x":255000000000000000,"y":-516000000000000000,"z":-11000000000000000000}},"30010378":{"solarSystemId":30010378,"solarSystemName":"U:2I7I","location":{"x":356000000000000000,"y":-2650000000000000000,"z":-9180000000000000000}},"30010379":{"solarSystemId":30010379,"solarSystemName":"Z:2T32","location":{"x":1010000000000000000,"y":-1730000000000000000,"z":-10400000000000000000}},"30010380":{"solarSystemId":30010380,"solarSystemName":"Z:2402","location":{"x":-11600000000000000000,"y":352000000000000000,"z":-7250000000000000000}},"30010381":{"solarSystemId":30010381,"solarSystemName":"B:257R","location":{"x":-11400000000000000000,"y":492000000000000000,"z":-7250000000000000000}},"30010382":{"solarSystemId":30010382,"solarSystemName":"H:24T3","location":{"x":-11400000000000000000,"y":461000000000000000,"z":-7180000000000000000}},"30010383":{"solarSystemId":30010383,"solarSystemName":"J:14VK","location":{"x":-11400000000000000000,"y":605000000000000000,"z":-7280000000000000000}},"30010384":{"solarSystemId":30010384,"solarSystemName":"G:1891","location":{"x":-11300000000000000000,"y":554000000000000000,"z":-7370000000000000000}},"30010385":{"solarSystemId":30010385,"solarSystemName":"Z:K2NE","location":{"x":-11400000000000000000,"y":611000000000000000,"z":-7310000000000000000}},"30010386":{"solarSystemId":30010386,"solarSystemName":"H:2E1K","location":{"x":-11500000000000000000,"y":544000000000000000,"z":-7210000000000000000}},"30010387":{"solarSystemId":30010387,"solarSystemName":"Y:11EV","location":{"x":-11500000000000000000,"y":563000000000000000,"z":-7220000000000000000}},"30010388":{"solarSystemId":30010388,"solarSystemName":"F:220K","location":{"x":-11500000000000000000,"y":524000000000000000,"z":-7260000000000000000}},"30010389":{"solarSystemId":30010389,"solarSystemName":"Y:1KT5","location":{"x":-11400000000000000000,"y":604000000000000000,"z":-7380000000000000000}},"30010390":{"solarSystemId":30010390,"solarSystemName":"F:258R","location":{"x":-11400000000000000000,"y":673000000000000000,"z":-7290000000000000000}},"30010391":{"solarSystemId":30010391,"solarSystemName":"Y:2387","location":{"x":-11500000000000000000,"y":624000000000000000,"z":-7180000000000000000}},"30010392":{"solarSystemId":30010392,"solarSystemName":"Z:2ONL","location":{"x":-11300000000000000000,"y":485000000000000000,"z":-7330000000000000000}},"30010393":{"solarSystemId":30010393,"solarSystemName":"D:1A2A","location":{"x":-11400000000000000000,"y":609000000000000000,"z":-7350000000000000000}},"30010394":{"solarSystemId":30010394,"solarSystemName":"U:26N6","location":{"x":-11300000000000000000,"y":533000000000000000,"z":-7180000000000000000}},"30010395":{"solarSystemId":30010395,"solarSystemName":"G:1TT9","location":{"x":-11400000000000000000,"y":492000000000000000,"z":-7410000000000000000}},"30010396":{"solarSystemId":30010396,"solarSystemName":"Q:1305","location":{"x":-11400000000000000000,"y":509000000000000000,"z":-7120000000000000000}},"30010397":{"solarSystemId":30010397,"solarSystemName":"M:LI02","location":{"x":-11600000000000000000,"y":509000000000000000,"z":-7130000000000000000}},"30010398":{"solarSystemId":30010398,"solarSystemName":"J:2907","location":{"x":-11900000000000000000,"y":527000000000000000,"z":-7530000000000000000}},"30010399":{"solarSystemId":30010399,"solarSystemName":"D:2619","location":{"x":-12000000000000000000,"y":823000000000000000,"z":-7770000000000000000}},"30010400":{"solarSystemId":30010400,"solarSystemName":"B:200V","location":{"x":-12500000000000000000,"y":270000000000000000,"z":-7850000000000000000}},"30010401":{"solarSystemId":30010401,"solarSystemName":"Z:220N","location":{"x":-12400000000000000000,"y":775000000000000000,"z":-7410000000000000000}},"30010402":{"solarSystemId":30010402,"solarSystemName":"G:2771","location":{"x":-11700000000000000000,"y":893000000000000000,"z":-7800000000000000000}},"30010403":{"solarSystemId":30010403,"solarSystemName":"Z:2972","location":{"x":-12100000000000000000,"y":302000000000000000,"z":-8240000000000000000}},"30010404":{"solarSystemId":30010404,"solarSystemName":"D:1LV4","location":{"x":-12500000000000000000,"y":337000000000000000,"z":-7850000000000000000}},"30010405":{"solarSystemId":30010405,"solarSystemName":"H:KO26","location":{"x":-12100000000000000000,"y":808000000000000000,"z":-7470000000000000000}},"30010406":{"solarSystemId":30010406,"solarSystemName":"Q:203K","location":{"x":-12000000000000000000,"y":670000000000000000,"z":-7660000000000000000}},"30010407":{"solarSystemId":30010407,"solarSystemName":"Z:2LT6","location":{"x":-11900000000000000000,"y":348000000000000000,"z":-7530000000000000000}},"30010408":{"solarSystemId":30010408,"solarSystemName":"G:1TE8","location":{"x":-11700000000000000000,"y":511000000000000000,"z":-7550000000000000000}},"30010409":{"solarSystemId":30010409,"solarSystemName":"P:SIRO","location":{"x":-12000000000000000000,"y":620000000000000000,"z":-7530000000000000000}},"30010410":{"solarSystemId":30010410,"solarSystemName":"G:34AK","location":{"x":-11900000000000000000,"y":632000000000000000,"z":-7680000000000000000}},"30010411":{"solarSystemId":30010411,"solarSystemName":"Y:14SA","location":{"x":-11800000000000000000,"y":585000000000000000,"z":-7820000000000000000}},"30010412":{"solarSystemId":30010412,"solarSystemName":"J:2ARR","location":{"x":-12300000000000000000,"y":180000000000000000,"z":-8050000000000000000}},"30010413":{"solarSystemId":30010413,"solarSystemName":"H:OKOO","location":{"x":-12200000000000000000,"y":408000000000000000,"z":-8190000000000000000}},"30010414":{"solarSystemId":30010414,"solarSystemName":"H:1NSS","location":{"x":-11700000000000000000,"y":758000000000000000,"z":-7790000000000000000}},"30010415":{"solarSystemId":30010415,"solarSystemName":"G:2K50","location":{"x":-12100000000000000000,"y":418000000000000000,"z":-7270000000000000000}},"30010416":{"solarSystemId":30010416,"solarSystemName":"M:2995","location":{"x":-11800000000000000000,"y":473000000000000000,"z":-7590000000000000000}},"30010417":{"solarSystemId":30010417,"solarSystemName":"G:4NTI","location":{"x":-12000000000000000000,"y":459000000000000000,"z":-7400000000000000000}},"30010418":{"solarSystemId":30010418,"solarSystemName":"D:2S55","location":{"x":-11900000000000000000,"y":324000000000000000,"z":-7420000000000000000}},"30010419":{"solarSystemId":30010419,"solarSystemName":"D:2TRO","location":{"x":-11800000000000000000,"y":797000000000000000,"z":-7730000000000000000}},"30010420":{"solarSystemId":30010420,"solarSystemName":"H:32S5","location":{"x":-12100000000000000000,"y":519000000000000000,"z":-7800000000000000000}},"30010421":{"solarSystemId":30010421,"solarSystemName":"Q:342I","location":{"x":-11700000000000000000,"y":406000000000000000,"z":-7720000000000000000}},"30010422":{"solarSystemId":30010422,"solarSystemName":"M:2OOL","location":{"x":-12000000000000000000,"y":601000000000000000,"z":-7770000000000000000}},"30010423":{"solarSystemId":30010423,"solarSystemName":"Z:27KS","location":{"x":-12700000000000000000,"y":280000000000000000,"z":-8270000000000000000}},"30010424":{"solarSystemId":30010424,"solarSystemName":"M:35O0","location":{"x":-12300000000000000000,"y":771000000000000000,"z":-7650000000000000000}},"30010425":{"solarSystemId":30010425,"solarSystemName":"U:24ET","location":{"x":-12400000000000000000,"y":674000000000000000,"z":-7610000000000000000}},"30010426":{"solarSystemId":30010426,"solarSystemName":"G:2TK3","location":{"x":-11600000000000000000,"y":736000000000000000,"z":-7250000000000000000}},"30010427":{"solarSystemId":30010427,"solarSystemName":"P:262O","location":{"x":-11700000000000000000,"y":439000000000000000,"z":-7260000000000000000}},"30010428":{"solarSystemId":30010428,"solarSystemName":"G:145V","location":{"x":-11700000000000000000,"y":440000000000000000,"z":-7170000000000000000}},"30010429":{"solarSystemId":30010429,"solarSystemName":"F:30AS","location":{"x":-11600000000000000000,"y":722000000000000000,"z":-7090000000000000000}},"30010430":{"solarSystemId":30010430,"solarSystemName":"D:1T0K","location":{"x":-11800000000000000000,"y":375000000000000000,"z":-7290000000000000000}},"30010431":{"solarSystemId":30010431,"solarSystemName":"Z:1KKV","location":{"x":-11700000000000000000,"y":627000000000000000,"z":-7040000000000000000}},"30010432":{"solarSystemId":30010432,"solarSystemName":"H:2E3I","location":{"x":-11800000000000000000,"y":411000000000000000,"z":-7130000000000000000}},"30010433":{"solarSystemId":30010433,"solarSystemName":"Z:2E42","location":{"x":-11700000000000000000,"y":550000000000000000,"z":-7160000000000000000}},"30010434":{"solarSystemId":30010434,"solarSystemName":"U:2TL5","location":{"x":-11900000000000000000,"y":493000000000000000,"z":-7160000000000000000}},"30010435":{"solarSystemId":30010435,"solarSystemName":"P:1V23","location":{"x":-12000000000000000000,"y":378000000000000000,"z":-7130000000000000000}},"30010436":{"solarSystemId":30010436,"solarSystemName":"B:11N9","location":{"x":-11900000000000000000,"y":394000000000000000,"z":-7200000000000000000}},"30010437":{"solarSystemId":30010437,"solarSystemName":"M:1O90","location":{"x":-11700000000000000000,"y":684000000000000000,"z":-7060000000000000000}},"30010438":{"solarSystemId":30010438,"solarSystemName":"B:2A99","location":{"x":-11700000000000000000,"y":521000000000000000,"z":-7350000000000000000}},"30010439":{"solarSystemId":30010439,"solarSystemName":"U:2SNK","location":{"x":-11900000000000000000,"y":489000000000000000,"z":-7290000000000000000}},"30010440":{"solarSystemId":30010440,"solarSystemName":"H:11E2","location":{"x":-11800000000000000000,"y":338000000000000000,"z":-7090000000000000000}},"30010441":{"solarSystemId":30010441,"solarSystemName":"U:2R19","location":{"x":-11600000000000000000,"y":678000000000000000,"z":-7270000000000000000}},"30010442":{"solarSystemId":30010442,"solarSystemName":"M:2LT9","location":{"x":-11700000000000000000,"y":529000000000000000,"z":-7310000000000000000}},"30010443":{"solarSystemId":30010443,"solarSystemName":"B:25T2","location":{"x":-11700000000000000000,"y":436000000000000000,"z":-7270000000000000000}},"30010444":{"solarSystemId":30010444,"solarSystemName":"D:29IL","location":{"x":-11700000000000000000,"y":693000000000000000,"z":-7080000000000000000}},"30010445":{"solarSystemId":30010445,"solarSystemName":"F:24E6","location":{"x":-11600000000000000000,"y":415000000000000000,"z":-7020000000000000000}},"30010446":{"solarSystemId":30010446,"solarSystemName":"M:34IK","location":{"x":-11700000000000000000,"y":575000000000000000,"z":-7310000000000000000}},"30010447":{"solarSystemId":30010447,"solarSystemName":"J:2663","location":{"x":-11700000000000000000,"y":508000000000000000,"z":-7230000000000000000}},"30010448":{"solarSystemId":30010448,"solarSystemName":"Z:2133","location":{"x":-11600000000000000000,"y":527000000000000000,"z":-7430000000000000000}},"30010449":{"solarSystemId":30010449,"solarSystemName":"Z:257S","location":{"x":-11900000000000000000,"y":561000000000000000,"z":-7210000000000000000}},"30010450":{"solarSystemId":30010450,"solarSystemName":"Z:2106","location":{"x":-11700000000000000000,"y":440000000000000000,"z":-7350000000000000000}},"30010451":{"solarSystemId":30010451,"solarSystemName":"D:2I5L","location":{"x":-11300000000000000000,"y":812000000000000000,"z":-7300000000000000000}},"30010452":{"solarSystemId":30010452,"solarSystemName":"J:2OS4","location":{"x":-11200000000000000000,"y":504000000000000000,"z":-7390000000000000000}},"30010453":{"solarSystemId":30010453,"solarSystemName":"M:2N0I","location":{"x":-11200000000000000000,"y":640000000000000000,"z":-7450000000000000000}},"30010454":{"solarSystemId":30010454,"solarSystemName":"D:1REA","location":{"x":-11300000000000000000,"y":657000000000000000,"z":-7390000000000000000}},"30010455":{"solarSystemId":30010455,"solarSystemName":"P:2ITT","location":{"x":-11200000000000000000,"y":573000000000000000,"z":-7430000000000000000}},"30010456":{"solarSystemId":30010456,"solarSystemName":"B:18K1","location":{"x":-11300000000000000000,"y":747000000000000000,"z":-7430000000000000000}},"30010457":{"solarSystemId":30010457,"solarSystemName":"P:4A09","location":{"x":-11200000000000000000,"y":700000000000000000,"z":-7520000000000000000}},"30010458":{"solarSystemId":30010458,"solarSystemName":"G:2V4V","location":{"x":-11200000000000000000,"y":644000000000000000,"z":-7450000000000000000}},"30010459":{"solarSystemId":30010459,"solarSystemName":"U:2545","location":{"x":-11200000000000000000,"y":533000000000000000,"z":-7360000000000000000}},"30010460":{"solarSystemId":30010460,"solarSystemName":"M:1TO5","location":{"x":-11300000000000000000,"y":586000000000000000,"z":-7370000000000000000}},"30010461":{"solarSystemId":30010461,"solarSystemName":"F:1N34","location":{"x":-11300000000000000000,"y":501000000000000000,"z":-7330000000000000000}},"30010462":{"solarSystemId":30010462,"solarSystemName":"F:K2L3","location":{"x":-11300000000000000000,"y":566000000000000000,"z":-7440000000000000000}},"30010463":{"solarSystemId":30010463,"solarSystemName":"Q:3008","location":{"x":-11300000000000000000,"y":454000000000000000,"z":-7390000000000000000}},"30010464":{"solarSystemId":30010464,"solarSystemName":"Y:2139","location":{"x":-11300000000000000000,"y":603000000000000000,"z":-7470000000000000000}},"30010465":{"solarSystemId":30010465,"solarSystemName":"U:25AE","location":{"x":-11200000000000000000,"y":703000000000000000,"z":-7480000000000000000}},"30010466":{"solarSystemId":30010466,"solarSystemName":"P:S765","location":{"x":-11200000000000000000,"y":490000000000000000,"z":-7420000000000000000}},"30010467":{"solarSystemId":30010467,"solarSystemName":"H:2N28","location":{"x":-11300000000000000000,"y":476000000000000000,"z":-7370000000000000000}},"30010468":{"solarSystemId":30010468,"solarSystemName":"Y:2EKN","location":{"x":-11300000000000000000,"y":825000000000000000,"z":-7420000000000000000}},"30010469":{"solarSystemId":30010469,"solarSystemName":"D:1VTE","location":{"x":-11400000000000000000,"y":706000000000000000,"z":-7450000000000000000}},"30010470":{"solarSystemId":30010470,"solarSystemName":"J:12I7","location":{"x":-11200000000000000000,"y":575000000000000000,"z":-7390000000000000000}},"30010471":{"solarSystemId":30010471,"solarSystemName":"Y:S06I","location":{"x":-11200000000000000000,"y":545000000000000000,"z":-7420000000000000000}},"30010472":{"solarSystemId":30010472,"solarSystemName":"G:2307","location":{"x":-11300000000000000000,"y":655000000000000000,"z":-7370000000000000000}},"30010473":{"solarSystemId":30010473,"solarSystemName":"H:252T","location":{"x":-11300000000000000000,"y":692000000000000000,"z":-7400000000000000000}},"30010474":{"solarSystemId":30010474,"solarSystemName":"Q:24EO","location":{"x":-11600000000000000000,"y":1030000000000000000,"z":-7380000000000000000}},"30010475":{"solarSystemId":30010475,"solarSystemName":"B:2VNT","location":{"x":-11400000000000000000,"y":821000000000000000,"z":-7330000000000000000}},"30010476":{"solarSystemId":30010476,"solarSystemName":"U:2317","location":{"x":-11500000000000000000,"y":779000000000000000,"z":-7600000000000000000}},"30010477":{"solarSystemId":30010477,"solarSystemName":"Y:479K","location":{"x":-11600000000000000000,"y":774000000000000000,"z":-7340000000000000000}},"30010478":{"solarSystemId":30010478,"solarSystemName":"M:1E7V","location":{"x":-11500000000000000000,"y":636000000000000000,"z":-7490000000000000000}},"30010479":{"solarSystemId":30010479,"solarSystemName":"D:1KVN","location":{"x":-11600000000000000000,"y":1010000000000000000,"z":-7790000000000000000}},"30010480":{"solarSystemId":30010480,"solarSystemName":"B:33RL","location":{"x":-11600000000000000000,"y":630000000000000000,"z":-7690000000000000000}},"30010481":{"solarSystemId":30010481,"solarSystemName":"M:208S","location":{"x":-11400000000000000000,"y":740000000000000000,"z":-7380000000000000000}},"30010482":{"solarSystemId":30010482,"solarSystemName":"M:48OA","location":{"x":-11700000000000000000,"y":903000000000000000,"z":-7480000000000000000}},"30010483":{"solarSystemId":30010483,"solarSystemName":"J:1L36","location":{"x":-11400000000000000000,"y":1010000000000000000,"z":-7570000000000000000}},"30010484":{"solarSystemId":30010484,"solarSystemName":"Z:1RK4","location":{"x":-11500000000000000000,"y":820000000000000000,"z":-7310000000000000000}},"30010485":{"solarSystemId":30010485,"solarSystemName":"B:OOI8","location":{"x":-11500000000000000000,"y":926000000000000000,"z":-7620000000000000000}},"30010486":{"solarSystemId":30010486,"solarSystemName":"P:2LLI","location":{"x":-11500000000000000000,"y":874000000000000000,"z":-7760000000000000000}},"30010487":{"solarSystemId":30010487,"solarSystemName":"J:1R1E","location":{"x":-11700000000000000000,"y":915000000000000000,"z":-7410000000000000000}},"30010488":{"solarSystemId":30010488,"solarSystemName":"U:E64V","location":{"x":-11500000000000000000,"y":913000000000000000,"z":-7750000000000000000}},"30010489":{"solarSystemId":30010489,"solarSystemName":"H:1RIE","location":{"x":-11500000000000000000,"y":690000000000000000,"z":-7630000000000000000}},"30010490":{"solarSystemId":30010490,"solarSystemName":"U:17OV","location":{"x":-11600000000000000000,"y":869000000000000000,"z":-7540000000000000000}},"30010491":{"solarSystemId":30010491,"solarSystemName":"D:2RV1","location":{"x":-11800000000000000000,"y":901000000000000000,"z":-7300000000000000000}},"30010492":{"solarSystemId":30010492,"solarSystemName":"U:2O90","location":{"x":-11500000000000000000,"y":767000000000000000,"z":-7490000000000000000}},"30010493":{"solarSystemId":30010493,"solarSystemName":"D:24VL","location":{"x":-11800000000000000000,"y":776000000000000000,"z":-7380000000000000000}},"30010494":{"solarSystemId":30010494,"solarSystemName":"P:2O42","location":{"x":-11600000000000000000,"y":613000000000000000,"z":-7750000000000000000}},"30010495":{"solarSystemId":30010495,"solarSystemName":"H:1650","location":{"x":-11900000000000000000,"y":883000000000000000,"z":-7400000000000000000}},"30010496":{"solarSystemId":30010496,"solarSystemName":"G:2E9S","location":{"x":-11600000000000000000,"y":801000000000000000,"z":-7500000000000000000}},"30010497":{"solarSystemId":30010497,"solarSystemName":"H:1RT7","location":{"x":-12000000000000000000,"y":795000000000000000,"z":-7350000000000000000}},"30010498":{"solarSystemId":30010498,"solarSystemName":"F:2IEN","location":{"x":-12600000000000000000,"y":-209000000000000000,"z":-7140000000000000000}},"30010499":{"solarSystemId":30010499,"solarSystemName":"F:1254","location":{"x":-13000000000000000000,"y":-286000000000000000,"z":-7060000000000000000}},"30010500":{"solarSystemId":30010500,"solarSystemName":"D:2E57","location":{"x":-12600000000000000000,"y":555000000000000000,"z":-6970000000000000000}},"30010501":{"solarSystemId":30010501,"solarSystemName":"U:233L","location":{"x":-12700000000000000000,"y":508000000000000000,"z":-7380000000000000000}},"30010502":{"solarSystemId":30010502,"solarSystemName":"F:1OR1","location":{"x":-13000000000000000000,"y":348000000000000000,"z":-7540000000000000000}},"30010503":{"solarSystemId":30010503,"solarSystemName":"Y:24N9","location":{"x":-12300000000000000000,"y":362000000000000000,"z":-6610000000000000000}},"30010504":{"solarSystemId":30010504,"solarSystemName":"H:1VNL","location":{"x":-13000000000000000000,"y":324000000000000000,"z":-6360000000000000000}},"30010505":{"solarSystemId":30010505,"solarSystemName":"Y:1772","location":{"x":-12900000000000000000,"y":428000000000000000,"z":-6490000000000000000}},"30010506":{"solarSystemId":30010506,"solarSystemName":"Y:2LE6","location":{"x":-12300000000000000000,"y":232000000000000000,"z":-6890000000000000000}},"30010507":{"solarSystemId":30010507,"solarSystemName":"Z:10L2","location":{"x":-13300000000000000000,"y":488000000000000000,"z":-7060000000000000000}},"30010508":{"solarSystemId":30010508,"solarSystemName":"F:2468","location":{"x":-12500000000000000000,"y":176000000000000000,"z":-7180000000000000000}},"30010509":{"solarSystemId":30010509,"solarSystemName":"P:2T6K","location":{"x":-12500000000000000000,"y":492000000000000000,"z":-6960000000000000000}},"30010510":{"solarSystemId":30010510,"solarSystemName":"F:1T52","location":{"x":-13100000000000000000,"y":135000000000000000,"z":-6470000000000000000}},"30010511":{"solarSystemId":30010511,"solarSystemName":"F:2E2A","location":{"x":-12800000000000000000,"y":300000000000000000,"z":-7090000000000000000}},"30010512":{"solarSystemId":30010512,"solarSystemName":"P:SVSV","location":{"x":-12600000000000000000,"y":-208000000000000000,"z":-6770000000000000000}},"30010513":{"solarSystemId":30010513,"solarSystemName":"F:376T","location":{"x":-13300000000000000000,"y":806000000000000000,"z":-7270000000000000000}},"30010514":{"solarSystemId":30010514,"solarSystemName":"H:289E","location":{"x":-12800000000000000000,"y":151000000000000000,"z":-7290000000000000000}},"30010515":{"solarSystemId":30010515,"solarSystemName":"U:2O50","location":{"x":-12800000000000000000,"y":603000000000000000,"z":-7380000000000000000}},"30010516":{"solarSystemId":30010516,"solarSystemName":"D:2TA1","location":{"x":-12500000000000000000,"y":738000000000000000,"z":-6720000000000000000}},"30010517":{"solarSystemId":30010517,"solarSystemName":"U:2OKA","location":{"x":-11100000000000000000,"y":806000000000000000,"z":-7700000000000000000}},"30010518":{"solarSystemId":30010518,"solarSystemName":"G:33K5","location":{"x":-11400000000000000000,"y":974000000000000000,"z":-7780000000000000000}},"30010519":{"solarSystemId":30010519,"solarSystemName":"P:OEVV","location":{"x":-11300000000000000000,"y":734000000000000000,"z":-7480000000000000000}},"30010520":{"solarSystemId":30010520,"solarSystemName":"B:3326","location":{"x":-11400000000000000000,"y":714000000000000000,"z":-7560000000000000000}},"30010521":{"solarSystemId":30010521,"solarSystemName":"D:2255","location":{"x":-11300000000000000000,"y":854000000000000000,"z":-7640000000000000000}},"30010522":{"solarSystemId":30010522,"solarSystemName":"H:1501","location":{"x":-11200000000000000000,"y":829000000000000000,"z":-7650000000000000000}},"30010523":{"solarSystemId":30010523,"solarSystemName":"Z:SEV0","location":{"x":-11200000000000000000,"y":926000000000000000,"z":-7740000000000000000}},"30010524":{"solarSystemId":30010524,"solarSystemName":"Z:LRSL","location":{"x":-11200000000000000000,"y":794000000000000000,"z":-7610000000000000000}},"30010525":{"solarSystemId":30010525,"solarSystemName":"G:23TN","location":{"x":-11300000000000000000,"y":745000000000000000,"z":-7670000000000000000}},"30010526":{"solarSystemId":30010526,"solarSystemName":"J:298K","location":{"x":-11400000000000000000,"y":830000000000000000,"z":-7610000000000000000}},"30010527":{"solarSystemId":30010527,"solarSystemName":"Z:23A1","location":{"x":-11100000000000000000,"y":778000000000000000,"z":-7620000000000000000}},"30010528":{"solarSystemId":30010528,"solarSystemName":"Q:4745","location":{"x":-11200000000000000000,"y":727000000000000000,"z":-7680000000000000000}},"30010529":{"solarSystemId":30010529,"solarSystemName":"D:2O15","location":{"x":-11300000000000000000,"y":995000000000000000,"z":-7640000000000000000}},"30010530":{"solarSystemId":30010530,"solarSystemName":"H:260N","location":{"x":-11200000000000000000,"y":756000000000000000,"z":-7630000000000000000}},"30010531":{"solarSystemId":30010531,"solarSystemName":"F:1T2I","location":{"x":-11300000000000000000,"y":1020000000000000000,"z":-7740000000000000000}},"30010532":{"solarSystemId":30010532,"solarSystemName":"B:396R","location":{"x":-11300000000000000000,"y":741000000000000000,"z":-7520000000000000000}},"30010533":{"solarSystemId":30010533,"solarSystemName":"J:51S5","location":{"x":-11000000000000000000,"y":836000000000000000,"z":-7670000000000000000}},"30010534":{"solarSystemId":30010534,"solarSystemName":"Z:25TN","location":{"x":-11400000000000000000,"y":751000000000000000,"z":-7600000000000000000}},"30010535":{"solarSystemId":30010535,"solarSystemName":"Z:1702","location":{"x":-11200000000000000000,"y":732000000000000000,"z":-7580000000000000000}},"30010536":{"solarSystemId":30010536,"solarSystemName":"J:V3E3","location":{"x":-11300000000000000000,"y":852000000000000000,"z":-7670000000000000000}},"30010537":{"solarSystemId":30010537,"solarSystemName":"H:2ESO","location":{"x":-11100000000000000000,"y":829000000000000000,"z":-7670000000000000000}},"30010538":{"solarSystemId":30010538,"solarSystemName":"Q:23T5","location":{"x":-11400000000000000000,"y":748000000000000000,"z":-7630000000000000000}},"30010539":{"solarSystemId":30010539,"solarSystemName":"Y:30TO","location":{"x":-11100000000000000000,"y":739000000000000000,"z":-9530000000000000000}},"30010540":{"solarSystemId":30010540,"solarSystemName":"Q:290E","location":{"x":-12300000000000000000,"y":1440000000000000000,"z":-9440000000000000000}},"30010541":{"solarSystemId":30010541,"solarSystemName":"Y:1RN5","location":{"x":-11700000000000000000,"y":297000000000000000,"z":-8770000000000000000}},"30010542":{"solarSystemId":30010542,"solarSystemName":"F:23NS","location":{"x":-11900000000000000000,"y":807000000000000000,"z":-9770000000000000000}},"30010543":{"solarSystemId":30010543,"solarSystemName":"B:24OO","location":{"x":-12400000000000000000,"y":23000000000000000,"z":-8240000000000000000}},"30010544":{"solarSystemId":30010544,"solarSystemName":"M:34S5","location":{"x":-12700000000000000000,"y":-157000000000000000,"z":-8280000000000000000}},"30010545":{"solarSystemId":30010545,"solarSystemName":"F:2OE1","location":{"x":-11500000000000000000,"y":782000000000000000,"z":-9180000000000000000}},"30010546":{"solarSystemId":30010546,"solarSystemName":"H:2230","location":{"x":-11900000000000000000,"y":1520000000000000000,"z":-9150000000000000000}},"30010547":{"solarSystemId":30010547,"solarSystemName":"Q:21II","location":{"x":-11900000000000000000,"y":872000000000000000,"z":-8940000000000000000}},"30010548":{"solarSystemId":30010548,"solarSystemName":"H:LV2V","location":{"x":-11900000000000000000,"y":54700000000000000,"z":-8620000000000000000}},"30010549":{"solarSystemId":30010549,"solarSystemName":"M:KAOV","location":{"x":-12500000000000000000,"y":718000000000000000,"z":-9860000000000000000}},"30010550":{"solarSystemId":30010550,"solarSystemName":"G:1TTL","location":{"x":-12500000000000000000,"y":632000000000000000,"z":-9410000000000000000}},"30010551":{"solarSystemId":30010551,"solarSystemName":"Y:3A1A","location":{"x":-11700000000000000000,"y":1140000000000000000,"z":-10500000000000000000}},"30010552":{"solarSystemId":30010552,"solarSystemName":"M:2LN3","location":{"x":-12300000000000000000,"y":399000000000000000,"z":-9150000000000000000}},"30010553":{"solarSystemId":30010553,"solarSystemName":"H:3TAR","location":{"x":-12500000000000000000,"y":623000000000000000,"z":-9070000000000000000}},"30010554":{"solarSystemId":30010554,"solarSystemName":"U:2SR0","location":{"x":-11800000000000000000,"y":1440000000000000000,"z":-9970000000000000000}},"30010555":{"solarSystemId":30010555,"solarSystemName":"D:N2IT","location":{"x":-12200000000000000000,"y":160000000000000000,"z":-8590000000000000000}},"30010556":{"solarSystemId":30010556,"solarSystemName":"Q:3IN4","location":{"x":-12400000000000000000,"y":535000000000000000,"z":-9680000000000000000}},"30010557":{"solarSystemId":30010557,"solarSystemName":"P:2S5I","location":{"x":-11200000000000000000,"y":446000000000000000,"z":-7960000000000000000}},"30010558":{"solarSystemId":30010558,"solarSystemName":"J:288N","location":{"x":-11100000000000000000,"y":359000000000000000,"z":-8060000000000000000}},"30010559":{"solarSystemId":30010559,"solarSystemName":"P:2KL7","location":{"x":-11600000000000000000,"y":477000000000000000,"z":-8550000000000000000}},"30010560":{"solarSystemId":30010560,"solarSystemName":"J:21A5","location":{"x":-11700000000000000000,"y":702000000000000000,"z":-8340000000000000000}},"30010561":{"solarSystemId":30010561,"solarSystemName":"U:2TRO","location":{"x":-11300000000000000000,"y":701000000000000000,"z":-8180000000000000000}},"30010562":{"solarSystemId":30010562,"solarSystemName":"G:2E7K","location":{"x":-11200000000000000000,"y":512000000000000000,"z":-8060000000000000000}},"30010563":{"solarSystemId":30010563,"solarSystemName":"J:16RI","location":{"x":-11700000000000000000,"y":281000000000000000,"z":-7920000000000000000}},"30010564":{"solarSystemId":30010564,"solarSystemName":"Y:2240","location":{"x":-11500000000000000000,"y":591000000000000000,"z":-7880000000000000000}},"30010565":{"solarSystemId":30010565,"solarSystemName":"J:4E6O","location":{"x":-11500000000000000000,"y":542000000000000000,"z":-7760000000000000000}},"30010566":{"solarSystemId":30010566,"solarSystemName":"Y:131R","location":{"x":-11100000000000000000,"y":625000000000000000,"z":-8330000000000000000}},"30010567":{"solarSystemId":30010567,"solarSystemName":"H:2137","location":{"x":-11400000000000000000,"y":626000000000000000,"z":-7880000000000000000}},"30010568":{"solarSystemId":30010568,"solarSystemName":"B:1IKE","location":{"x":-11800000000000000000,"y":370000000000000000,"z":-8090000000000000000}},"30010569":{"solarSystemId":30010569,"solarSystemName":"Q:28TA","location":{"x":-11700000000000000000,"y":214000000000000000,"z":-8250000000000000000}},"30010570":{"solarSystemId":30010570,"solarSystemName":"G:KKN0","location":{"x":-11800000000000000000,"y":355000000000000000,"z":-8240000000000000000}},"30010571":{"solarSystemId":30010571,"solarSystemName":"D:23RS","location":{"x":-11900000000000000000,"y":557000000000000000,"z":-8280000000000000000}},"30010572":{"solarSystemId":30010572,"solarSystemName":"Z:I03E","location":{"x":-11600000000000000000,"y":616000000000000000,"z":-8450000000000000000}},"30010573":{"solarSystemId":30010573,"solarSystemName":"J:257A","location":{"x":-11600000000000000000,"y":798000000000000000,"z":-8330000000000000000}},"30010574":{"solarSystemId":30010574,"solarSystemName":"G:2I10","location":{"x":-11500000000000000000,"y":382000000000000000,"z":-8200000000000000000}},"30010575":{"solarSystemId":30010575,"solarSystemName":"F:LI1O","location":{"x":-11300000000000000000,"y":547000000000000000,"z":-7830000000000000000}},"30010576":{"solarSystemId":30010576,"solarSystemName":"G:198I","location":{"x":-11800000000000000000,"y":456000000000000000,"z":-8290000000000000000}},"30010577":{"solarSystemId":30010577,"solarSystemName":"U:3SEI","location":{"x":-8010000000000000000,"y":7990000000000000000,"z":-9510000000000000000}},"30010578":{"solarSystemId":30010578,"solarSystemName":"Z:36ET","location":{"x":-5930000000000000000,"y":8310000000000000000,"z":-8400000000000000000}},"30010579":{"solarSystemId":30010579,"solarSystemName":"Q:2T01","location":{"x":-5720000000000000000,"y":7020000000000000000,"z":-10100000000000000000}},"30010580":{"solarSystemId":30010580,"solarSystemName":"Z:2VIV","location":{"x":-8500000000000000000,"y":6540000000000000000,"z":-7730000000000000000}},"30010581":{"solarSystemId":30010581,"solarSystemName":"B:2VN1","location":{"x":-5020000000000000000,"y":8900000000000000000,"z":-9210000000000000000}},"30010582":{"solarSystemId":30010582,"solarSystemName":"U:2846","location":{"x":-9040000000000000000,"y":6970000000000000000,"z":-7440000000000000000}},"30010583":{"solarSystemId":30010583,"solarSystemName":"D:2E84","location":{"x":-8330000000000000000,"y":5430000000000000000,"z":-6690000000000000000}},"30010584":{"solarSystemId":30010584,"solarSystemName":"M:1O76","location":{"x":-9590000000000000000,"y":5990000000000000000,"z":-7850000000000000000}},"30010585":{"solarSystemId":30010585,"solarSystemName":"Z:1IVO","location":{"x":-7890000000000000000,"y":5440000000000000000,"z":-6040000000000000000}},"30010586":{"solarSystemId":30010586,"solarSystemName":"J:3T23","location":{"x":-9670000000000000000,"y":5970000000000000000,"z":-4590000000000000000}},"30010587":{"solarSystemId":30010587,"solarSystemName":"Z:20K0","location":{"x":-6430000000000000000,"y":4980000000000000000,"z":-4350000000000000000}},"30010588":{"solarSystemId":30010588,"solarSystemName":"Y:11K6","location":{"x":-7730000000000000000,"y":5110000000000000000,"z":-5900000000000000000}},"30010589":{"solarSystemId":30010589,"solarSystemName":"J:2E7N","location":{"x":-6300000000000000000,"y":6030000000000000000,"z":-8320000000000000000}},"30010590":{"solarSystemId":30010590,"solarSystemName":"D:21OS","location":{"x":-5770000000000000000,"y":5800000000000000000,"z":-7410000000000000000}},"30010591":{"solarSystemId":30010591,"solarSystemName":"G:1O54","location":{"x":-6160000000000000000,"y":5870000000000000000,"z":-7850000000000000000}},"30010592":{"solarSystemId":30010592,"solarSystemName":"M:2NI7","location":{"x":-5040000000000000000,"y":5820000000000000000,"z":-7000000000000000000}},"30010593":{"solarSystemId":30010593,"solarSystemName":"H:229S","location":{"x":-6730000000000000000,"y":6140000000000000000,"z":-7500000000000000000}},"30010594":{"solarSystemId":30010594,"solarSystemName":"D:2859","location":{"x":-5560000000000000000,"y":4510000000000000000,"z":-7620000000000000000}},"30010595":{"solarSystemId":30010595,"solarSystemName":"B:1ST1","location":{"x":-10300000000000000000,"y":2370000000000000000,"z":-8120000000000000000}},"30010596":{"solarSystemId":30010596,"solarSystemName":"B:28A1","location":{"x":-10300000000000000000,"y":6310000000000000000,"z":-6620000000000000000}},"30010597":{"solarSystemId":30010597,"solarSystemName":"Z:276K","location":{"x":-9660000000000000000,"y":2580000000000000000,"z":-7670000000000000000}},"30010598":{"solarSystemId":30010598,"solarSystemName":"G:29EK","location":{"x":-10900000000000000000,"y":2760000000000000000,"z":-7420000000000000000}},"30010599":{"solarSystemId":30010599,"solarSystemName":"Y:2TOS","location":{"x":-10100000000000000000,"y":2780000000000000000,"z":-7470000000000000000}},"30010600":{"solarSystemId":30010600,"solarSystemName":"H:36R5","location":{"x":-9160000000000000000,"y":6970000000000000000,"z":-7410000000000000000}},"30010601":{"solarSystemId":30010601,"solarSystemName":"B:3R42","location":{"x":-6840000000000000000,"y":8580000000000000000,"z":-3650000000000000000}},"30010602":{"solarSystemId":30010602,"solarSystemName":"M:2V28","location":{"x":-7360000000000000000,"y":8610000000000000000,"z":-6790000000000000000}},"30010603":{"solarSystemId":30010603,"solarSystemName":"Q:1ARE","location":{"x":-7730000000000000000,"y":7520000000000000000,"z":-5490000000000000000}},"30010604":{"solarSystemId":30010604,"solarSystemName":"F:N413","location":{"x":-7810000000000000000,"y":5970000000000000000,"z":-5570000000000000000}},"30010605":{"solarSystemId":30010605,"solarSystemName":"M:3726","location":{"x":-8680000000000000000,"y":3570000000000000000,"z":-7010000000000000000}},"30010606":{"solarSystemId":30010606,"solarSystemName":"U:2KA3","location":{"x":-8920000000000000000,"y":3060000000000000000,"z":-7580000000000000000}},"30010607":{"solarSystemId":30010607,"solarSystemName":"H:32R6","location":{"x":-8520000000000000000,"y":4040000000000000000,"z":-8240000000000000000}},"30010608":{"solarSystemId":30010608,"solarSystemName":"P:2RIO","location":{"x":-8590000000000000000,"y":4250000000000000000,"z":-9040000000000000000}},"30010609":{"solarSystemId":30010609,"solarSystemName":"G:30RK","location":{"x":-8310000000000000000,"y":4220000000000000000,"z":-6800000000000000000}},"30010610":{"solarSystemId":30010610,"solarSystemName":"D:182T","location":{"x":-8790000000000000000,"y":5500000000000000000,"z":-7910000000000000000}},"30010611":{"solarSystemId":30010611,"solarSystemName":"G:2A00","location":{"x":-9130000000000000000,"y":5510000000000000000,"z":-8190000000000000000}},"30010612":{"solarSystemId":30010612,"solarSystemName":"M:2VR0","location":{"x":-8930000000000000000,"y":2780000000000000000,"z":-7640000000000000000}},"30010613":{"solarSystemId":30010613,"solarSystemName":"F:2AVT","location":{"x":-6320000000000000000,"y":-2650000000000000000,"z":-6970000000000000000}},"30010614":{"solarSystemId":30010614,"solarSystemName":"H:3N6V","location":{"x":-6960000000000000000,"y":-2420000000000000000,"z":-8780000000000000000}},"30010615":{"solarSystemId":30010615,"solarSystemName":"U:1KII","location":{"x":-6990000000000000000,"y":-330000000000000000,"z":-6720000000000000000}},"30010616":{"solarSystemId":30010616,"solarSystemName":"P:RRK4","location":{"x":-6120000000000000000,"y":-1230000000000000000,"z":-7620000000000000000}},"30010617":{"solarSystemId":30010617,"solarSystemName":"P:203N","location":{"x":-6630000000000000000,"y":-1860000000000000000,"z":-7480000000000000000}},"30010618":{"solarSystemId":30010618,"solarSystemName":"M:11S0","location":{"x":-5650000000000000000,"y":-873000000000000000,"z":-7960000000000000000}},"30010619":{"solarSystemId":30010619,"solarSystemName":"B:2RE9","location":{"x":-7940000000000000000,"y":-1920000000000000000,"z":-7320000000000000000}},"30010620":{"solarSystemId":30010620,"solarSystemName":"F:3OOO","location":{"x":-5280000000000000000,"y":-2290000000000000000,"z":-6180000000000000000}},"30010621":{"solarSystemId":30010621,"solarSystemName":"G:35O7","location":{"x":-6130000000000000000,"y":-1990000000000000000,"z":-7380000000000000000}},"30010622":{"solarSystemId":30010622,"solarSystemName":"U:2A33","location":{"x":-6970000000000000000,"y":-3070000000000000000,"z":-8440000000000000000}},"30010623":{"solarSystemId":30010623,"solarSystemName":"Z:2O4N","location":{"x":-7700000000000000000,"y":-1950000000000000000,"z":-7290000000000000000}},"30010624":{"solarSystemId":30010624,"solarSystemName":"P:2527","location":{"x":-6860000000000000000,"y":-628000000000000000,"z":-6210000000000000000}},"30010625":{"solarSystemId":30010625,"solarSystemName":"D:3EN2","location":{"x":-5280000000000000000,"y":-399000000000000000,"z":-6570000000000000000}},"30010626":{"solarSystemId":30010626,"solarSystemName":"Z:1VII","location":{"x":-5160000000000000000,"y":-275000000000000000,"z":-6690000000000000000}},"30010627":{"solarSystemId":30010627,"solarSystemName":"Q:VNS5","location":{"x":-6680000000000000000,"y":-796000000000000000,"z":-6610000000000000000}},"30010628":{"solarSystemId":30010628,"solarSystemName":"Z:299N","location":{"x":-4140000000000000000,"y":-6100000000000000000,"z":-9530000000000000000}},"30010629":{"solarSystemId":30010629,"solarSystemName":"G:338R","location":{"x":-6200000000000000000,"y":-7100000000000000000,"z":-7630000000000000000}},"30010630":{"solarSystemId":30010630,"solarSystemName":"Y:3E79","location":{"x":-4170000000000000000,"y":-5620000000000000000,"z":-6710000000000000000}},"30010631":{"solarSystemId":30010631,"solarSystemName":"D:2S4R","location":{"x":-4140000000000000000,"y":-6680000000000000000,"z":-7410000000000000000}},"30010632":{"solarSystemId":30010632,"solarSystemName":"H:3IAL","location":{"x":-3230000000000000000,"y":-4390000000000000000,"z":-8880000000000000000}},"30010633":{"solarSystemId":30010633,"solarSystemName":"J:3S89","location":{"x":-5460000000000000000,"y":-4500000000000000000,"z":-7300000000000000000}},"30010634":{"solarSystemId":30010634,"solarSystemName":"P:2AR6","location":{"x":-4800000000000000000,"y":-5810000000000000000,"z":-7140000000000000000}},"30010635":{"solarSystemId":30010635,"solarSystemName":"P:2O2K","location":{"x":-2790000000000000000,"y":-3320000000000000000,"z":-7580000000000000000}},"30010636":{"solarSystemId":30010636,"solarSystemName":"U:2N4N","location":{"x":-3930000000000000000,"y":-2700000000000000000,"z":-7610000000000000000}},"30010637":{"solarSystemId":30010637,"solarSystemName":"G:184T","location":{"x":-3760000000000000000,"y":-3100000000000000000,"z":-9290000000000000000}},"30010638":{"solarSystemId":30010638,"solarSystemName":"Y:2N4I","location":{"x":-4350000000000000000,"y":-2330000000000000000,"z":-7130000000000000000}},"30010639":{"solarSystemId":30010639,"solarSystemName":"Q:388A","location":{"x":-5280000000000000000,"y":-2760000000000000000,"z":-6380000000000000000}},"30010640":{"solarSystemId":30010640,"solarSystemName":"Q:3692","location":{"x":-4980000000000000000,"y":-2570000000000000000,"z":-6310000000000000000}},"30010641":{"solarSystemId":30010641,"solarSystemName":"U:36R2","location":{"x":-3060000000000000000,"y":-3470000000000000000,"z":-8730000000000000000}},"30010642":{"solarSystemId":30010642,"solarSystemName":"D:385E","location":{"x":-4190000000000000000,"y":-3240000000000000000,"z":-6850000000000000000}},"30010643":{"solarSystemId":30010643,"solarSystemName":"F:2026","location":{"x":-3480000000000000000,"y":-3020000000000000000,"z":-6390000000000000000}},"30010644":{"solarSystemId":30010644,"solarSystemName":"P:E34K","location":{"x":-4120000000000000000,"y":-4040000000000000000,"z":-6430000000000000000}},"30010645":{"solarSystemId":30010645,"solarSystemName":"J:2SEI","location":{"x":-4720000000000000000,"y":-2900000000000000000,"z":-7160000000000000000}},"30010646":{"solarSystemId":30010646,"solarSystemName":"F:30O9","location":{"x":-6520000000000000000,"y":-4550000000000000000,"z":-9790000000000000000}},"30010647":{"solarSystemId":30010647,"solarSystemName":"Z:2KK2","location":{"x":-5850000000000000000,"y":-4620000000000000000,"z":-7530000000000000000}},"30010648":{"solarSystemId":30010648,"solarSystemName":"J:3N5L","location":{"x":-5300000000000000000,"y":-5740000000000000000,"z":-9830000000000000000}},"30010649":{"solarSystemId":30010649,"solarSystemName":"B:311S","location":{"x":-6590000000000000000,"y":-2450000000000000000,"z":-10800000000000000000}},"30010650":{"solarSystemId":30010650,"solarSystemName":"J:2SOR","location":{"x":-5600000000000000000,"y":-3710000000000000000,"z":-11400000000000000000}},"30010651":{"solarSystemId":30010651,"solarSystemName":"H:2S4A","location":{"x":-5720000000000000000,"y":-3200000000000000000,"z":-9910000000000000000}},"30010652":{"solarSystemId":30010652,"solarSystemName":"Q:346L","location":{"x":-4410000000000000000,"y":-3050000000000000000,"z":-11100000000000000000}},"30010653":{"solarSystemId":30010653,"solarSystemName":"G:3IE9","location":{"x":-3870000000000000000,"y":-9140000000000000000,"z":-9240000000000000000}},"30010654":{"solarSystemId":30010654,"solarSystemName":"D:3IS8","location":{"x":-1820000000000000000,"y":-7420000000000000000,"z":-10800000000000000000}},"30010655":{"solarSystemId":30010655,"solarSystemName":"P:2R0T","location":{"x":273000000000000000,"y":-6300000000000000000,"z":-11300000000000000000}},"30010656":{"solarSystemId":30010656,"solarSystemName":"Y:38SV","location":{"x":-2960000000000000000,"y":-3760000000000000000,"z":-10100000000000000000}},"30010657":{"solarSystemId":30010657,"solarSystemName":"M:3202","location":{"x":-1070000000000000000,"y":-8990000000000000000,"z":-12700000000000000000}},"30010658":{"solarSystemId":30010658,"solarSystemName":"Y:3E16","location":{"x":-13100000000000000000,"y":160000000000000000,"z":-2730000000000000000}},"30010659":{"solarSystemId":30010659,"solarSystemName":"M:1LRA","location":{"x":-13500000000000000000,"y":-67900000000000000,"z":-2150000000000000000}},"30010660":{"solarSystemId":30010660,"solarSystemName":"B:S84T","location":{"x":-12900000000000000000,"y":331000000000000000,"z":-2480000000000000000}},"30010661":{"solarSystemId":30010661,"solarSystemName":"B:NT9R","location":{"x":-13500000000000000000,"y":95600000000000000,"z":-3070000000000000000}},"30010662":{"solarSystemId":30010662,"solarSystemName":"M:3L19","location":{"x":-14200000000000000000,"y":24800000000000000,"z":-2690000000000000000}},"30010663":{"solarSystemId":30010663,"solarSystemName":"J:4V3O","location":{"x":-14100000000000000000,"y":837000000000000000,"z":-831000000000000000}},"30010664":{"solarSystemId":30010664,"solarSystemName":"B:L84T","location":{"x":-14100000000000000000,"y":-551000000000000000,"z":-2490000000000000000}},"30010665":{"solarSystemId":30010665,"solarSystemName":"P:2NI4","location":{"x":-13100000000000000000,"y":-30200000000000000,"z":-2280000000000000000}},"30010666":{"solarSystemId":30010666,"solarSystemName":"G:1A40","location":{"x":-13900000000000000000,"y":645000000000000000,"z":-1840000000000000000}},"30010667":{"solarSystemId":30010667,"solarSystemName":"Z:1125","location":{"x":-14100000000000000000,"y":-286000000000000000,"z":-1680000000000000000}},"30010668":{"solarSystemId":30010668,"solarSystemName":"J:16NS","location":{"x":-13700000000000000000,"y":99600000000000000,"z":-1130000000000000000}},"30010669":{"solarSystemId":30010669,"solarSystemName":"F:3LOS","location":{"x":-14300000000000000000,"y":-571000000000000000,"z":-1680000000000000000}},"30010670":{"solarSystemId":30010670,"solarSystemName":"H:414T","location":{"x":-14200000000000000000,"y":208000000000000000,"z":-2720000000000000000}},"30010671":{"solarSystemId":30010671,"solarSystemName":"Y:20RA","location":{"x":-13000000000000000000,"y":521000000000000000,"z":-1790000000000000000}},"30010672":{"solarSystemId":30010672,"solarSystemName":"B:315E","location":{"x":-12900000000000000000,"y":185000000000000000,"z":-3080000000000000000}},"30010673":{"solarSystemId":30010673,"solarSystemName":"B:2K1I","location":{"x":-13500000000000000000,"y":632000000000000000,"z":-2360000000000000000}},"30010674":{"solarSystemId":30010674,"solarSystemName":"Q:2223","location":{"x":-12900000000000000000,"y":427000000000000000,"z":-2390000000000000000}},"30010675":{"solarSystemId":30010675,"solarSystemName":"Q:2153","location":{"x":-14100000000000000000,"y":-421000000000000000,"z":-1700000000000000000}},"30010676":{"solarSystemId":30010676,"solarSystemName":"Z:1KI2","location":{"x":-13000000000000000000,"y":-489000000000000000,"z":-2620000000000000000}},"30010677":{"solarSystemId":30010677,"solarSystemName":"U:311N","location":{"x":-13600000000000000000,"y":1330000000000000000,"z":-1820000000000000000}},"30010678":{"solarSystemId":30010678,"solarSystemName":"Y:1NSI","location":{"x":-12700000000000000000,"y":-192000000000000000,"z":-2930000000000000000}},"30010679":{"solarSystemId":30010679,"solarSystemName":"Q:2E85","location":{"x":-13000000000000000000,"y":2130000000000000000,"z":-3080000000000000000}},"30010680":{"solarSystemId":30010680,"solarSystemName":"U:3257","location":{"x":-11600000000000000000,"y":669000000000000000,"z":-3970000000000000000}},"30010681":{"solarSystemId":30010681,"solarSystemName":"G:K8VL","location":{"x":-11200000000000000000,"y":1000000000000000000,"z":-4470000000000000000}},"30010682":{"solarSystemId":30010682,"solarSystemName":"Y:2O9T","location":{"x":-12200000000000000000,"y":2480000000000000000,"z":-3600000000000000000}},"30010683":{"solarSystemId":30010683,"solarSystemName":"P:R8OK","location":{"x":-11900000000000000000,"y":790000000000000000,"z":-5130000000000000000}},"30010684":{"solarSystemId":30010684,"solarSystemName":"Q:3617","location":{"x":-13100000000000000000,"y":2130000000000000000,"z":-3060000000000000000}},"30010685":{"solarSystemId":30010685,"solarSystemName":"H:2NKA","location":{"x":-11700000000000000000,"y":1140000000000000000,"z":-3990000000000000000}},"30010686":{"solarSystemId":30010686,"solarSystemName":"Y:2N4K","location":{"x":-11300000000000000000,"y":2430000000000000000,"z":-4520000000000000000}},"30010687":{"solarSystemId":30010687,"solarSystemName":"J:25I4","location":{"x":-12200000000000000000,"y":1670000000000000000,"z":-4130000000000000000}},"30010688":{"solarSystemId":30010688,"solarSystemName":"B:21SL","location":{"x":-12000000000000000000,"y":872000000000000000,"z":-4760000000000000000}},"30010689":{"solarSystemId":30010689,"solarSystemName":"U:24LV","location":{"x":-11300000000000000000,"y":1810000000000000000,"z":-4220000000000000000}},"30010690":{"solarSystemId":30010690,"solarSystemName":"D:EK8V","location":{"x":-13200000000000000000,"y":512000000000000000,"z":-4360000000000000000}},"30010691":{"solarSystemId":30010691,"solarSystemName":"G:2195","location":{"x":-13300000000000000000,"y":2250000000000000000,"z":-3580000000000000000}},"30010692":{"solarSystemId":30010692,"solarSystemName":"Z:L993","location":{"x":-12900000000000000000,"y":629000000000000000,"z":-4280000000000000000}},"30010693":{"solarSystemId":30010693,"solarSystemName":"P:20LL","location":{"x":-12100000000000000000,"y":2060000000000000000,"z":-3880000000000000000}},"30010694":{"solarSystemId":30010694,"solarSystemName":"F:1S56","location":{"x":-12400000000000000000,"y":643000000000000000,"z":-3890000000000000000}},"30010695":{"solarSystemId":30010695,"solarSystemName":"Q:2AN7","location":{"x":-11500000000000000000,"y":147000000000000000,"z":-2730000000000000000}},"30010696":{"solarSystemId":30010696,"solarSystemName":"G:3O37","location":{"x":-11200000000000000000,"y":-1140000000000000000,"z":-2190000000000000000}},"30010697":{"solarSystemId":30010697,"solarSystemName":"H:RO0V","location":{"x":-11100000000000000000,"y":-678000000000000000,"z":-2130000000000000000}},"30010698":{"solarSystemId":30010698,"solarSystemName":"J:OKVO","location":{"x":-12000000000000000000,"y":-1290000000000000000,"z":-2790000000000000000}},"30010699":{"solarSystemId":30010699,"solarSystemName":"H:35IR","location":{"x":-11900000000000000000,"y":227000000000000000,"z":-2570000000000000000}},"30010700":{"solarSystemId":30010700,"solarSystemName":"H:1EA6","location":{"x":-12200000000000000000,"y":-122000000000000000,"z":-2020000000000000000}},"30010701":{"solarSystemId":30010701,"solarSystemName":"H:16R2","location":{"x":-12400000000000000000,"y":248000000000000000,"z":-1950000000000000000}},"30010702":{"solarSystemId":30010702,"solarSystemName":"Y:4T9I","location":{"x":-11000000000000000000,"y":-11400000000000000,"z":-3190000000000000000}},"30010703":{"solarSystemId":30010703,"solarSystemName":"Q:14IE","location":{"x":-11300000000000000000,"y":-579000000000000000,"z":-2160000000000000000}},"30010704":{"solarSystemId":30010704,"solarSystemName":"B:357R","location":{"x":-11700000000000000000,"y":-515000000000000000,"z":-2400000000000000000}},"30010705":{"solarSystemId":30010705,"solarSystemName":"M:2A2I","location":{"x":-10400000000000000000,"y":-1160000000000000000,"z":-2620000000000000000}},"30010706":{"solarSystemId":30010706,"solarSystemName":"G:2LVI","location":{"x":-11200000000000000000,"y":625000000000000000,"z":-2970000000000000000}},"30010707":{"solarSystemId":30010707,"solarSystemName":"J:25TK","location":{"x":-11500000000000000000,"y":147000000000000000,"z":-1910000000000000000}},"30010708":{"solarSystemId":30010708,"solarSystemName":"Q:11EI","location":{"x":-11500000000000000000,"y":147000000000000000,"z":-2500000000000000000}},"30010709":{"solarSystemId":30010709,"solarSystemName":"D:994S","location":{"x":-10900000000000000000,"y":188000000000000000,"z":-3430000000000000000}},"30010710":{"solarSystemId":30010710,"solarSystemName":"Y:O85I","location":{"x":-11200000000000000000,"y":-444000000000000000,"z":-2400000000000000000}},"30010711":{"solarSystemId":30010711,"solarSystemName":"Z:21E5","location":{"x":-11500000000000000000,"y":-213000000000000000,"z":-2890000000000000000}},"30010712":{"solarSystemId":30010712,"solarSystemName":"J:1819","location":{"x":-11100000000000000000,"y":-136000000000000000,"z":-3380000000000000000}},"30010713":{"solarSystemId":30010713,"solarSystemName":"Q:16K2","location":{"x":-12100000000000000000,"y":-187000000000000000,"z":-2130000000000000000}},"30010714":{"solarSystemId":30010714,"solarSystemName":"G:IO7N","location":{"x":-11500000000000000000,"y":690000000000000000,"z":-2190000000000000000}},"30010715":{"solarSystemId":30010715,"solarSystemName":"F:3I77","location":{"x":-11600000000000000000,"y":-68600000000000000,"z":-2480000000000000000}},"30010716":{"solarSystemId":30010716,"solarSystemName":"G:2862","location":{"x":-10700000000000000000,"y":-1210000000000000000,"z":-2180000000000000000}},"30010717":{"solarSystemId":30010717,"solarSystemName":"F:3RAN","location":{"x":-10900000000000000000,"y":-622000000000000000,"z":-2070000000000000000}},"30010718":{"solarSystemId":30010718,"solarSystemName":"H:2208","location":{"x":-12000000000000000000,"y":99400000000000000,"z":-2270000000000000000}},"30010719":{"solarSystemId":30010719,"solarSystemName":"Q:2977","location":{"x":-10800000000000000000,"y":-509000000000000000,"z":-1790000000000000000}},"30010720":{"solarSystemId":30010720,"solarSystemName":"H:3N9V","location":{"x":-10700000000000000000,"y":-1350000000000000000,"z":-574000000000000000}},"30010721":{"solarSystemId":30010721,"solarSystemName":"F:S8ET","location":{"x":-10600000000000000000,"y":-479000000000000000,"z":-1520000000000000000}},"30010722":{"solarSystemId":30010722,"solarSystemName":"Z:1O7E","location":{"x":-9910000000000000000,"y":-658000000000000000,"z":-731000000000000000}},"30010723":{"solarSystemId":30010723,"solarSystemName":"G:1O2V","location":{"x":-10900000000000000000,"y":82800000000000000,"z":-513000000000000000}},"30010724":{"solarSystemId":30010724,"solarSystemName":"J:3I1V","location":{"x":-9480000000000000000,"y":-1010000000000000000,"z":-1050000000000000000}},"30010725":{"solarSystemId":30010725,"solarSystemName":"D:213V","location":{"x":-10800000000000000000,"y":-126000000000000000,"z":-682000000000000000}},"30010726":{"solarSystemId":30010726,"solarSystemName":"M:4ERO","location":{"x":-11000000000000000000,"y":-542000000000000000,"z":-358000000000000000}},"30010727":{"solarSystemId":30010727,"solarSystemName":"P:241V","location":{"x":-10700000000000000000,"y":-455000000000000000,"z":-563000000000000000}},"30010728":{"solarSystemId":30010728,"solarSystemName":"U:1VL4","location":{"x":-10200000000000000000,"y":-598000000000000000,"z":-1580000000000000000}},"30010729":{"solarSystemId":30010729,"solarSystemName":"F:1VSS","location":{"x":-9790000000000000000,"y":-399000000000000000,"z":-873000000000000000}},"30010730":{"solarSystemId":30010730,"solarSystemName":"H:280O","location":{"x":-10200000000000000000,"y":-185000000000000000,"z":-784000000000000000}},"30010731":{"solarSystemId":30010731,"solarSystemName":"P:27I1","location":{"x":-10900000000000000000,"y":-1190000000000000000,"z":-1620000000000000000}},"30010732":{"solarSystemId":30010732,"solarSystemName":"U:272O","location":{"x":-10300000000000000000,"y":-158000000000000000,"z":-2010000000000000000}},"30010733":{"solarSystemId":30010733,"solarSystemName":"U:2V8A","location":{"x":-10800000000000000000,"y":249000000000000000,"z":-1890000000000000000}},"30010734":{"solarSystemId":30010734,"solarSystemName":"Y:304L","location":{"x":-10300000000000000000,"y":-638000000000000000,"z":-810000000000000000}},"30010735":{"solarSystemId":30010735,"solarSystemName":"Y:26SE","location":{"x":-10500000000000000000,"y":-742000000000000000,"z":-1570000000000000000}},"30010736":{"solarSystemId":30010736,"solarSystemName":"Z:1NKK","location":{"x":-10700000000000000000,"y":224000000000000000,"z":-1350000000000000000}},"30010737":{"solarSystemId":30010737,"solarSystemName":"Z:L41V","location":{"x":-10100000000000000000,"y":-156000000000000000,"z":-1060000000000000000}},"30010738":{"solarSystemId":30010738,"solarSystemName":"F:149A","location":{"x":-9890000000000000000,"y":-404000000000000000,"z":-912000000000000000}},"30010739":{"solarSystemId":30010739,"solarSystemName":"F:KS82","location":{"x":-10900000000000000000,"y":19600000000000000,"z":-1430000000000000000}},"30010740":{"solarSystemId":30010740,"solarSystemName":"M:KR83","location":{"x":-9960000000000000000,"y":-134000000000000000,"z":-570000000000000000}},"30010741":{"solarSystemId":30010741,"solarSystemName":"B:1OOL","location":{"x":-10900000000000000000,"y":-480000000000000000,"z":-1340000000000000000}},"30010742":{"solarSystemId":30010742,"solarSystemName":"H:10TK","location":{"x":-11000000000000000000,"y":79200000000000000,"z":-1350000000000000000}},"30010743":{"solarSystemId":30010743,"solarSystemName":"M:1074","location":{"x":-10500000000000000000,"y":-633000000000000000,"z":-2110000000000000000}},"30010744":{"solarSystemId":30010744,"solarSystemName":"H:12T8","location":{"x":-10900000000000000000,"y":107000000000000000,"z":-1370000000000000000}},"30010745":{"solarSystemId":30010745,"solarSystemName":"M:171S","location":{"x":-11000000000000000000,"y":232000000000000000,"z":-142000000000000000}},"30010746":{"solarSystemId":30010746,"solarSystemName":"G:1464","location":{"x":-10800000000000000000,"y":-18900000000000000,"z":-492000000000000000}},"30010747":{"solarSystemId":30010747,"solarSystemName":"F:2113","location":{"x":-10400000000000000000,"y":-1080000000000000000,"z":-385000000000000000}},"30010748":{"solarSystemId":30010748,"solarSystemName":"B:81NS","location":{"x":-11200000000000000000,"y":-263000000000000000,"z":-272000000000000000}},"30010749":{"solarSystemId":30010749,"solarSystemName":"F:1RLL","location":{"x":-10400000000000000000,"y":-238000000000000000,"z":-496000000000000000}},"30010750":{"solarSystemId":30010750,"solarSystemName":"Z:16AT","location":{"x":-11100000000000000000,"y":-427000000000000000,"z":-1380000000000000000}},"30010751":{"solarSystemId":30010751,"solarSystemName":"Q:2028","location":{"x":-10300000000000000000,"y":-10700000000000000,"z":-1380000000000000000}},"30010752":{"solarSystemId":30010752,"solarSystemName":"B:NT6R","location":{"x":-10300000000000000000,"y":-473000000000000000,"z":-1800000000000000000}},"30010753":{"solarSystemId":30010753,"solarSystemName":"D:26TR","location":{"x":-10600000000000000000,"y":-63900000000000000,"z":-1940000000000000000}},"30010754":{"solarSystemId":30010754,"solarSystemName":"B:23SR","location":{"x":-10800000000000000000,"y":53300000000000000,"z":-251000000000000000}},"30010755":{"solarSystemId":30010755,"solarSystemName":"G:35V5","location":{"x":-12700000000000000000,"y":-1790000000000000000,"z":-6430000000000000000}},"30010756":{"solarSystemId":30010756,"solarSystemName":"G:206V","location":{"x":-12700000000000000000,"y":-357000000000000000,"z":-5890000000000000000}},"30010757":{"solarSystemId":30010757,"solarSystemName":"M:306A","location":{"x":-12500000000000000000,"y":-554000000000000000,"z":-6850000000000000000}},"30010758":{"solarSystemId":30010758,"solarSystemName":"J:2842","location":{"x":-12600000000000000000,"y":-58300000000000000,"z":-6250000000000000000}},"30010759":{"solarSystemId":30010759,"solarSystemName":"B:17A0","location":{"x":-12700000000000000000,"y":-384000000000000000,"z":-5970000000000000000}},"30010760":{"solarSystemId":30010760,"solarSystemName":"Q:2K2O","location":{"x":-12800000000000000000,"y":-367000000000000000,"z":-6820000000000000000}},"30010761":{"solarSystemId":30010761,"solarSystemName":"Y:1LO5","location":{"x":-11700000000000000000,"y":-913000000000000000,"z":-6340000000000000000}},"30010762":{"solarSystemId":30010762,"solarSystemName":"F:2LR0","location":{"x":-12600000000000000000,"y":-589000000000000000,"z":-7010000000000000000}},"30010763":{"solarSystemId":30010763,"solarSystemName":"Q:292S","location":{"x":-12900000000000000000,"y":-1130000000000000000,"z":-6610000000000000000}},"30010764":{"solarSystemId":30010764,"solarSystemName":"B:1A2R","location":{"x":-12500000000000000000,"y":-1070000000000000000,"z":-6920000000000000000}},"30010765":{"solarSystemId":30010765,"solarSystemName":"G:1314","location":{"x":-13100000000000000000,"y":-175000000000000000,"z":-6030000000000000000}},"30010766":{"solarSystemId":30010766,"solarSystemName":"Q:43AI","location":{"x":-13000000000000000000,"y":-842000000000000000,"z":-6270000000000000000}},"30010767":{"solarSystemId":30010767,"solarSystemName":"J:36AT","location":{"x":-12700000000000000000,"y":-1220000000000000000,"z":-6170000000000000000}},"30010768":{"solarSystemId":30010768,"solarSystemName":"G:RL22","location":{"x":-13000000000000000000,"y":-143000000000000000,"z":-5890000000000000000}},"30010769":{"solarSystemId":30010769,"solarSystemName":"D:OS25","location":{"x":-13200000000000000000,"y":-155000000000000000,"z":-5840000000000000000}},"30010770":{"solarSystemId":30010770,"solarSystemName":"Y:TSA9","location":{"x":-13000000000000000000,"y":-277000000000000000,"z":-5950000000000000000}},"30010771":{"solarSystemId":30010771,"solarSystemName":"B:KIS6","location":{"x":-13400000000000000000,"y":-529000000000000000,"z":-6640000000000000000}},"30010772":{"solarSystemId":30010772,"solarSystemName":"G:3O1E","location":{"x":-12700000000000000000,"y":-566000000000000000,"z":-6610000000000000000}},"30010773":{"solarSystemId":30010773,"solarSystemName":"Q:218E","location":{"x":-12600000000000000000,"y":-1910000000000000000,"z":-6160000000000000000}},"30010774":{"solarSystemId":30010774,"solarSystemName":"Z:1S9O","location":{"x":-12100000000000000000,"y":-637000000000000000,"z":-6550000000000000000}},"30010775":{"solarSystemId":30010775,"solarSystemName":"D:LSSV","location":{"x":-12100000000000000000,"y":-1020000000000000000,"z":-6630000000000000000}},"30010776":{"solarSystemId":30010776,"solarSystemName":"M:1OKR","location":{"x":-12900000000000000000,"y":-963000000000000000,"z":-6440000000000000000}},"30010777":{"solarSystemId":30010777,"solarSystemName":"U:2N13","location":{"x":-12400000000000000000,"y":-379000000000000000,"z":-6700000000000000000}},"30010778":{"solarSystemId":30010778,"solarSystemName":"P:3NE8","location":{"x":-11200000000000000000,"y":143000000000000000,"z":-664000000000000000}},"30010779":{"solarSystemId":30010779,"solarSystemName":"G:3TOE","location":{"x":-12400000000000000000,"y":-257000000000000000,"z":-742000000000000000}},"30010780":{"solarSystemId":30010780,"solarSystemName":"Y:KAI7","location":{"x":-11700000000000000000,"y":-107000000000000000,"z":-1490000000000000000}},"30010781":{"solarSystemId":30010781,"solarSystemName":"B:4660","location":{"x":-13000000000000000000,"y":309000000000000000,"z":-866000000000000000}},"30010782":{"solarSystemId":30010782,"solarSystemName":"J:ONN6","location":{"x":-11100000000000000000,"y":-88200000000000000,"z":-621000000000000000}},"30010783":{"solarSystemId":30010783,"solarSystemName":"B:26V1","location":{"x":-11500000000000000000,"y":-22600000000000000,"z":-419000000000000000}},"30010784":{"solarSystemId":30010784,"solarSystemName":"M:1924","location":{"x":-11300000000000000000,"y":-482000000000000000,"z":-889000000000000000}},"30010785":{"solarSystemId":30010785,"solarSystemName":"B:O2IR","location":{"x":-12200000000000000000,"y":-429000000000000000,"z":-1090000000000000000}},"30010786":{"solarSystemId":30010786,"solarSystemName":"M:1599","location":{"x":-12500000000000000000,"y":217000000000000000,"z":-1440000000000000000}},"30010787":{"solarSystemId":30010787,"solarSystemName":"B:202V","location":{"x":-12100000000000000000,"y":-299000000000000000,"z":-956000000000000000}},"30010788":{"solarSystemId":30010788,"solarSystemName":"D:52N2","location":{"x":-12200000000000000000,"y":51900000000000000,"z":153000000000000000}},"30010789":{"solarSystemId":30010789,"solarSystemName":"F:2OOO","location":{"x":-11500000000000000000,"y":-323000000000000000,"z":-404000000000000000}},"30010790":{"solarSystemId":30010790,"solarSystemName":"Z:1LE8","location":{"x":-11600000000000000000,"y":-458000000000000000,"z":-1260000000000000000}},"30010791":{"solarSystemId":30010791,"solarSystemName":"D:140A","location":{"x":-12600000000000000000,"y":-706000000000000000,"z":-1700000000000000000}},"30010792":{"solarSystemId":30010792,"solarSystemName":"J:SS5L","location":{"x":-12300000000000000000,"y":-528000000000000000,"z":-1920000000000000000}},"30010793":{"solarSystemId":30010793,"solarSystemName":"Y:3567","location":{"x":-12800000000000000000,"y":412000000000000000,"z":-1140000000000000000}},"30010794":{"solarSystemId":30010794,"solarSystemName":"F:3305","location":{"x":-12200000000000000000,"y":394000000000000000,"z":-209000000000000000}},"30010795":{"solarSystemId":30010795,"solarSystemName":"J:1IEI","location":{"x":-11900000000000000000,"y":232000000000000000,"z":-1110000000000000000}},"30010796":{"solarSystemId":30010796,"solarSystemName":"F:3RR2","location":{"x":-11300000000000000000,"y":378000000000000000,"z":-874000000000000000}},"30010797":{"solarSystemId":30010797,"solarSystemName":"D:N4L3","location":{"x":-11200000000000000000,"y":-194000000000000000,"z":-1370000000000000000}},"30010798":{"solarSystemId":30010798,"solarSystemName":"Y:2N97","location":{"x":-12500000000000000000,"y":189000000000000000,"z":-1600000000000000000}},"30010799":{"solarSystemId":30010799,"solarSystemName":"Z:2VL4","location":{"x":-11700000000000000000,"y":-161000000000000000,"z":-1770000000000000000}},"30010800":{"solarSystemId":30010800,"solarSystemName":"Q:2K3V","location":{"x":-12500000000000000000,"y":1210000000000000000,"z":-6540000000000000000}},"30010801":{"solarSystemId":30010801,"solarSystemName":"B:283N","location":{"x":-11800000000000000000,"y":1800000000000000000,"z":-6450000000000000000}},"30010802":{"solarSystemId":30010802,"solarSystemName":"Z:3589","location":{"x":-13100000000000000000,"y":618000000000000000,"z":-6050000000000000000}},"30010803":{"solarSystemId":30010803,"solarSystemName":"M:11RO","location":{"x":-13000000000000000000,"y":825000000000000000,"z":-6170000000000000000}},"30010804":{"solarSystemId":30010804,"solarSystemName":"M:13RT","location":{"x":-11800000000000000000,"y":1560000000000000000,"z":-5100000000000000000}},"30010805":{"solarSystemId":30010805,"solarSystemName":"H:1R9L","location":{"x":-12800000000000000000,"y":1020000000000000000,"z":-5930000000000000000}},"30010806":{"solarSystemId":30010806,"solarSystemName":"F:27N4","location":{"x":-12200000000000000000,"y":955000000000000000,"z":-5460000000000000000}},"30010807":{"solarSystemId":30010807,"solarSystemName":"F:1SS1","location":{"x":-12100000000000000000,"y":2180000000000000000,"z":-5840000000000000000}},"30010808":{"solarSystemId":30010808,"solarSystemName":"G:24S6","location":{"x":-13300000000000000000,"y":1670000000000000000,"z":-5420000000000000000}},"30010809":{"solarSystemId":30010809,"solarSystemName":"Z:13RK","location":{"x":-11900000000000000000,"y":1970000000000000000,"z":-5790000000000000000}},"30010810":{"solarSystemId":30010810,"solarSystemName":"U:3238","location":{"x":-12000000000000000000,"y":2130000000000000000,"z":-6440000000000000000}},"30010811":{"solarSystemId":30010811,"solarSystemName":"G:36SS","location":{"x":-11900000000000000000,"y":2720000000000000000,"z":-6230000000000000000}},"30010812":{"solarSystemId":30010812,"solarSystemName":"G:1IK0","location":{"x":-13200000000000000000,"y":1230000000000000000,"z":-6190000000000000000}},"30010813":{"solarSystemId":30010813,"solarSystemName":"P:1V6R","location":{"x":-12300000000000000000,"y":579000000000000000,"z":-5300000000000000000}},"30010814":{"solarSystemId":30010814,"solarSystemName":"Z:22S3","location":{"x":-12500000000000000000,"y":691000000000000000,"z":-5360000000000000000}},"30010815":{"solarSystemId":30010815,"solarSystemName":"U:2685","location":{"x":-13100000000000000000,"y":1620000000000000000,"z":-6220000000000000000}},"30010816":{"solarSystemId":30010816,"solarSystemName":"G:1352","location":{"x":-11900000000000000000,"y":1380000000000000000,"z":-5870000000000000000}},"30010817":{"solarSystemId":30010817,"solarSystemName":"D:27TS","location":{"x":-11700000000000000000,"y":1130000000000000000,"z":-5830000000000000000}},"30010818":{"solarSystemId":30010818,"solarSystemName":"F:3OK5","location":{"x":-11900000000000000000,"y":-1300000000000000000,"z":-4470000000000000000}},"30010819":{"solarSystemId":30010819,"solarSystemName":"Y:2N2V","location":{"x":-10900000000000000000,"y":-670000000000000000,"z":-4840000000000000000}},"30010820":{"solarSystemId":30010820,"solarSystemName":"B:1LL0","location":{"x":-11100000000000000000,"y":-334000000000000000,"z":-5300000000000000000}},"30010821":{"solarSystemId":30010821,"solarSystemName":"F:2LLN","location":{"x":-11500000000000000000,"y":-237000000000000000,"z":-5640000000000000000}},"30010822":{"solarSystemId":30010822,"solarSystemName":"P:1RL4","location":{"x":-10900000000000000000,"y":-610000000000000000,"z":-4230000000000000000}},"30010823":{"solarSystemId":30010823,"solarSystemName":"P:224S","location":{"x":-11700000000000000000,"y":-903000000000000000,"z":-5430000000000000000}},"30010824":{"solarSystemId":30010824,"solarSystemName":"Z:26NL","location":{"x":-11400000000000000000,"y":-585000000000000000,"z":-3560000000000000000}},"30010825":{"solarSystemId":30010825,"solarSystemName":"B:2ALR","location":{"x":-11100000000000000000,"y":40600000000000000,"z":-4110000000000000000}},"30010826":{"solarSystemId":30010826,"solarSystemName":"Z:35AL","location":{"x":-11200000000000000000,"y":537000000000000000,"z":-3940000000000000000}},"30010827":{"solarSystemId":30010827,"solarSystemName":"J:2AAL","location":{"x":-11700000000000000000,"y":41800000000000000,"z":-4640000000000000000}},"30010828":{"solarSystemId":30010828,"solarSystemName":"M:1LA3","location":{"x":-10400000000000000000,"y":-503000000000000000,"z":-5550000000000000000}},"30010829":{"solarSystemId":30010829,"solarSystemName":"G:SV18","location":{"x":-11500000000000000000,"y":-610000000000000000,"z":-5320000000000000000}},"30010830":{"solarSystemId":30010830,"solarSystemName":"U:51AS","location":{"x":-11300000000000000000,"y":91500000000000000,"z":-4200000000000000000}},"30010831":{"solarSystemId":30010831,"solarSystemName":"M:18TR","location":{"x":-11400000000000000000,"y":-21100000000000000,"z":-5500000000000000000}},"30010832":{"solarSystemId":30010832,"solarSystemName":"M:2VKN","location":{"x":-11300000000000000000,"y":327000000000000000,"z":-3580000000000000000}},"30010833":{"solarSystemId":30010833,"solarSystemName":"U:1I1R","location":{"x":-11300000000000000000,"y":-626000000000000000,"z":-4610000000000000000}},"30010834":{"solarSystemId":30010834,"solarSystemName":"M:118V","location":{"x":-11500000000000000000,"y":-146000000000000000,"z":-4410000000000000000}},"30010835":{"solarSystemId":30010835,"solarSystemName":"H:1717","location":{"x":-11400000000000000000,"y":-184000000000000000,"z":-4100000000000000000}},"30010836":{"solarSystemId":30010836,"solarSystemName":"U:2O6V","location":{"x":-11400000000000000000,"y":-786000000000000000,"z":-3550000000000000000}},"30010837":{"solarSystemId":30010837,"solarSystemName":"J:OR25","location":{"x":-11900000000000000000,"y":-260000000000000000,"z":-4530000000000000000}},"30010838":{"solarSystemId":30010838,"solarSystemName":"Z:VKOI","location":{"x":-11700000000000000000,"y":-45700000000000000,"z":-4550000000000000000}},"30010839":{"solarSystemId":30010839,"solarSystemName":"P:347S","location":{"x":-11000000000000000000,"y":-1110000000000000000,"z":-3880000000000000000}},"30010840":{"solarSystemId":30010840,"solarSystemName":"B:ET31","location":{"x":-10200000000000000000,"y":-472000000000000000,"z":-4290000000000000000}},"30010841":{"solarSystemId":30010841,"solarSystemName":"G:2116","location":{"x":-11300000000000000000,"y":311000000000000000,"z":-4150000000000000000}},"30010842":{"solarSystemId":30010842,"solarSystemName":"M:3N3L","location":{"x":-11100000000000000000,"y":-76200000000000000,"z":-4240000000000000000}},"30010843":{"solarSystemId":30010843,"solarSystemName":"G:4T4I","location":{"x":-11600000000000000000,"y":-556000000000000000,"z":-5190000000000000000}},"30010844":{"solarSystemId":30010844,"solarSystemName":"Q:197T","location":{"x":-11700000000000000000,"y":93300000000000000,"z":-3670000000000000000}},"30010845":{"solarSystemId":30010845,"solarSystemName":"P:1T1I","location":{"x":-11400000000000000000,"y":506000000000000000,"z":-4600000000000000000}},"30010846":{"solarSystemId":30010846,"solarSystemName":"Y:3T56","location":{"x":-11600000000000000000,"y":1070000000000000000,"z":-5490000000000000000}},"30010847":{"solarSystemId":30010847,"solarSystemName":"F:2RSA","location":{"x":-10800000000000000000,"y":1520000000000000000,"z":-5310000000000000000}},"30010848":{"solarSystemId":30010848,"solarSystemName":"B:TSE9","location":{"x":-11600000000000000000,"y":555000000000000000,"z":-5720000000000000000}},"30010849":{"solarSystemId":30010849,"solarSystemName":"B:1EE8","location":{"x":-11200000000000000000,"y":539000000000000000,"z":-5200000000000000000}},"30010850":{"solarSystemId":30010850,"solarSystemName":"M:1AV1","location":{"x":-11000000000000000000,"y":862000000000000000,"z":-5490000000000000000}},"30010851":{"solarSystemId":30010851,"solarSystemName":"F:23E8","location":{"x":-11000000000000000000,"y":650000000000000000,"z":-5700000000000000000}},"30010852":{"solarSystemId":30010852,"solarSystemName":"Q:KV6O","location":{"x":-11100000000000000000,"y":560000000000000000,"z":-4750000000000000000}},"30010853":{"solarSystemId":30010853,"solarSystemName":"U:26OR","location":{"x":-10800000000000000000,"y":512000000000000000,"z":-5380000000000000000}},"30010854":{"solarSystemId":30010854,"solarSystemName":"P:275L","location":{"x":-10900000000000000000,"y":581000000000000000,"z":-5730000000000000000}},"30010855":{"solarSystemId":30010855,"solarSystemName":"H:ELL7","location":{"x":-11000000000000000000,"y":667000000000000000,"z":-5020000000000000000}},"30010856":{"solarSystemId":30010856,"solarSystemName":"G:4OI4","location":{"x":-10900000000000000000,"y":1140000000000000000,"z":-5790000000000000000}},"30010857":{"solarSystemId":30010857,"solarSystemName":"Y:2R87","location":{"x":-10700000000000000000,"y":989000000000000000,"z":-5870000000000000000}},"30010858":{"solarSystemId":30010858,"solarSystemName":"U:2O6N","location":{"x":-10800000000000000000,"y":583000000000000000,"z":-5990000000000000000}},"30010859":{"solarSystemId":30010859,"solarSystemName":"B:2SA1","location":{"x":-10800000000000000000,"y":493000000000000000,"z":-5210000000000000000}},"30010860":{"solarSystemId":30010860,"solarSystemName":"H:IR30","location":{"x":-11700000000000000000,"y":712000000000000000,"z":-5400000000000000000}},"30010861":{"solarSystemId":30010861,"solarSystemName":"G:1EI2","location":{"x":-10900000000000000000,"y":416000000000000000,"z":-5340000000000000000}},"30010862":{"solarSystemId":30010862,"solarSystemName":"P:I5RL","location":{"x":-10800000000000000000,"y":422000000000000000,"z":-5410000000000000000}},"30010863":{"solarSystemId":30010863,"solarSystemName":"J:149T","location":{"x":-11100000000000000000,"y":374000000000000000,"z":-5320000000000000000}},"30010864":{"solarSystemId":30010864,"solarSystemName":"H:RVTE","location":{"x":-11500000000000000000,"y":602000000000000000,"z":-5850000000000000000}},"30010865":{"solarSystemId":30010865,"solarSystemName":"H.TE9.231","location":{"x":-11500000000000000000,"y":-1260000000000000000,"z":-26400000000000000000}},"30010866":{"solarSystemId":30010866,"solarSystemName":"H.T59.ZJ6","location":{"x":-10600000000000000000,"y":245000000000000000,"z":-28000000000000000000}},"30010867":{"solarSystemId":30010867,"solarSystemName":"E.2T9.LN2","location":{"x":-10800000000000000000,"y":-86100000000000000,"z":-28500000000000000000}},"30010868":{"solarSystemId":30010868,"solarSystemName":"S.C09.BVG","location":{"x":-10400000000000000000,"y":26600000000000000,"z":-28300000000000000000}},"30010869":{"solarSystemId":30010869,"solarSystemName":"I.6W9.MJJ","location":{"x":-11400000000000000000,"y":-929000000000000000,"z":-26800000000000000000}},"30010870":{"solarSystemId":30010870,"solarSystemName":"N.0Z9.RLN","location":{"x":-11400000000000000000,"y":-449000000000000000,"z":-26600000000000000000}},"30010871":{"solarSystemId":30010871,"solarSystemName":"E.SS9.VMT","location":{"x":-10700000000000000000,"y":-416000000000000000,"z":-32400000000000000000}},"30010872":{"solarSystemId":30010872,"solarSystemName":"N.0S9.QLZ","location":{"x":-10700000000000000000,"y":-1030000000000000000,"z":-32100000000000000000}},"30010873":{"solarSystemId":30010873,"solarSystemName":"H.WF8.4RB","location":{"x":-10000000000000000000,"y":-807000000000000000,"z":-32400000000000000000}},"30010874":{"solarSystemId":30010874,"solarSystemName":"L.X19.251","location":{"x":-10400000000000000000,"y":-1340000000000000000,"z":-32100000000000000000}},"30010875":{"solarSystemId":30010875,"solarSystemName":"A.1W8.GGF","location":{"x":-10300000000000000000,"y":-783000000000000000,"z":-31700000000000000000}},"30010876":{"solarSystemId":30010876,"solarSystemName":"R.9X7.VHW","location":{"x":-9020000000000000000,"y":-1070000000000000000,"z":-31000000000000000000}},"30010877":{"solarSystemId":30010877,"solarSystemName":"I.047.9GH","location":{"x":-8210000000000000000,"y":-891000000000000000,"z":-33000000000000000000}},"30010878":{"solarSystemId":30010878,"solarSystemName":"H.KN7.DJW","location":{"x":-8540000000000000000,"y":-1070000000000000000,"z":-32700000000000000000}},"30010879":{"solarSystemId":30010879,"solarSystemName":"I.KK7.MGM","location":{"x":-9190000000000000000,"y":-639000000000000000,"z":-31800000000000000000}},"30010880":{"solarSystemId":30010880,"solarSystemName":"I.L17.R41","location":{"x":-8120000000000000000,"y":-1310000000000000000,"z":-31800000000000000000}},"30010881":{"solarSystemId":30010881,"solarSystemName":"L.CK7.CRL","location":{"x":-9170000000000000000,"y":-520000000000000000,"z":-30800000000000000000}},"30010882":{"solarSystemId":30010882,"solarSystemName":"U.3X7.361","location":{"x":-9010000000000000000,"y":-1370000000000000000,"z":-29800000000000000000}},"30010883":{"solarSystemId":30010883,"solarSystemName":"H.XE7.F41","location":{"x":-9220000000000000000,"y":-1320000000000000000,"z":-30900000000000000000}},"30010884":{"solarSystemId":30010884,"solarSystemName":"R.DH6.L01","location":{"x":-7800000000000000000,"y":-1170000000000000000,"z":-30300000000000000000}},"30010885":{"solarSystemId":30010885,"solarSystemName":"R.HW6.R7J","location":{"x":-7990000000000000000,"y":-909000000000000000,"z":-29900000000000000000}},"30010886":{"solarSystemId":30010886,"solarSystemName":"E.TZ6.1T4","location":{"x":-7940000000000000000,"y":157000000000000000,"z":-28900000000000000000}},"30010887":{"solarSystemId":30010887,"solarSystemName":"E.ST9.LD3","location":{"x":-10800000000000000000,"y":-125000000000000000,"z":-29800000000000000000}},"30010888":{"solarSystemId":30010888,"solarSystemName":"I.MB8.BD5","location":{"x":-10000000000000000000,"y":-198000000000000000,"z":-29500000000000000000}},"30010889":{"solarSystemId":30010889,"solarSystemName":"I.CV8.CCW","location":{"x":-9930000000000000000,"y":-1060000000000000000,"z":-30200000000000000000}},"30010890":{"solarSystemId":30010890,"solarSystemName":"S.WN9.0FC","location":{"x":-10800000000000000000,"y":600000000000000000,"z":-30400000000000000000}},"30010891":{"solarSystemId":30010891,"solarSystemName":"R.V09.2CC","location":{"x":-10400000000000000000,"y":-595000000000000000,"z":-29900000000000000000}},"30010892":{"solarSystemId":30010892,"solarSystemName":"R.S69.BV7","location":{"x":-10600000000000000000,"y":-274000000000000000,"z":-28800000000000000000}},"30010893":{"solarSystemId":30010893,"solarSystemName":"Coherence","location":{"x":-9680000000000000000,"y":-546000000000000000,"z":-30500000000000000000}},"30010894":{"solarSystemId":30010894,"solarSystemName":"H.Q98.2R6","location":{"x":-9570000000000000000,"y":-231000000000000000,"z":-31400000000000000000}},"30010895":{"solarSystemId":30010895,"solarSystemName":"A.LF8.DQ9","location":{"x":-10000000000000000000,"y":-347000000000000000,"z":-32200000000000000000}},"30010896":{"solarSystemId":30010896,"solarSystemName":"U.7Z8.36T","location":{"x":-10200000000000000000,"y":-403000000000000000,"z":-30400000000000000000}},"30010897":{"solarSystemId":30010897,"solarSystemName":"H.T88.DDF","location":{"x":-9520000000000000000,"y":-774000000000000000,"z":-30900000000000000000}},"30010898":{"solarSystemId":30010898,"solarSystemName":"S.PK7.FP9","location":{"x":-9170000000000000000,"y":-345000000000000000,"z":-31100000000000000000}},"30010899":{"solarSystemId":30010899,"solarSystemName":"N.8T9.STG","location":{"x":-10800000000000000000,"y":-841000000000000000,"z":-28000000000000000000}},"30010900":{"solarSystemId":30010900,"solarSystemName":"E.189.681","location":{"x":-10700000000000000000,"y":-1450000000000000000,"z":-28700000000000000000}},"30010901":{"solarSystemId":30010901,"solarSystemName":"N.8M8.821","location":{"x":-9840000000000000000,"y":-1230000000000000000,"z":-28500000000000000000}},"30010902":{"solarSystemId":30010902,"solarSystemName":"T.KR9.6RX","location":{"x":-10900000000000000000,"y":-952000000000000000,"z":-27800000000000000000}},"30010903":{"solarSystemId":30010903,"solarSystemName":"I.ZT9.WEX","location":{"x":-10800000000000000000,"y":-973000000000000000,"z":-28000000000000000000}},"30010904":{"solarSystemId":30010904,"solarSystemName":"R.5L9.SFH","location":{"x":-10900000000000000000,"y":-889000000000000000,"z":-28200000000000000000}},"30010905":{"solarSystemId":30010905,"solarSystemName":"S.C5T.ZLH","location":{"x":-12900000000000000000,"y":-881000000000000000,"z":-28800000000000000000}},"30010906":{"solarSystemId":30010906,"solarSystemName":"A.EF9.E71","location":{"x":-11200000000000000000,"y":-1440000000000000000,"z":-30500000000000000000}},"30010907":{"solarSystemId":30010907,"solarSystemName":"A.CH8.F21","location":{"x":-10100000000000000000,"y":-1250000000000000000,"z":-30500000000000000000}},"30010908":{"solarSystemId":30010908,"solarSystemName":"R.9BS.DKX","location":{"x":-12300000000000000000,"y":-971000000000000000,"z":-29700000000000000000}},"30010909":{"solarSystemId":30010909,"solarSystemName":"S.WZ9.B5Y","location":{"x":-11400000000000000000,"y":-979000000000000000,"z":-32100000000000000000}},"30010910":{"solarSystemId":30010910,"solarSystemName":"I.5C9.BN1","location":{"x":-11000000000000000000,"y":-1610000000000000000,"z":-30400000000000000000}},"30010911":{"solarSystemId":30010911,"solarSystemName":"Q:2KAT","location":{"x":-8580000000000000000,"y":-924000000000000000,"z":-14300000000000000000}},"30010912":{"solarSystemId":30010912,"solarSystemName":"G:1VTS","location":{"x":-7140000000000000000,"y":-1120000000000000000,"z":-13300000000000000000}},"30010913":{"solarSystemId":30010913,"solarSystemName":"G:24SR","location":{"x":-6900000000000000000,"y":-1410000000000000000,"z":-15600000000000000000}},"30010914":{"solarSystemId":30010914,"solarSystemName":"P:2E3N","location":{"x":-6970000000000000000,"y":-531000000000000000,"z":-14000000000000000000}},"30010915":{"solarSystemId":30010915,"solarSystemName":"Y:2OS6","location":{"x":-7370000000000000000,"y":-133000000000000000,"z":-14900000000000000000}},"30010916":{"solarSystemId":30010916,"solarSystemName":"H:1KVS","location":{"x":-7950000000000000000,"y":-1590000000000000000,"z":-13400000000000000000}},"30010917":{"solarSystemId":30010917,"solarSystemName":"P:2VAT","location":{"x":-7920000000000000000,"y":325000000000000000,"z":-14500000000000000000}},"30010918":{"solarSystemId":30010918,"solarSystemName":"D:16TL","location":{"x":-7220000000000000000,"y":-174000000000000000,"z":-15000000000000000000}},"30010919":{"solarSystemId":30010919,"solarSystemName":"U:3SKN","location":{"x":-6140000000000000000,"y":-529000000000000000,"z":-15300000000000000000}},"30010920":{"solarSystemId":30010920,"solarSystemName":"M:25S4","location":{"x":-5220000000000000000,"y":-1150000000000000000,"z":-14400000000000000000}},"30010921":{"solarSystemId":30010921,"solarSystemName":"Z:1KNN","location":{"x":-7010000000000000000,"y":-299000000000000000,"z":-14200000000000000000}},"30010922":{"solarSystemId":30010922,"solarSystemName":"F:2440","location":{"x":-8340000000000000000,"y":-599000000000000000,"z":-14600000000000000000}},"30010923":{"solarSystemId":30010923,"solarSystemName":"U:3REK","location":{"x":-9280000000000000000,"y":469000000000000000,"z":-13800000000000000000}},"30010924":{"solarSystemId":30010924,"solarSystemName":"Q:1R5R","location":{"x":-8290000000000000000,"y":1760000000000000000,"z":-13200000000000000000}},"30010925":{"solarSystemId":30010925,"solarSystemName":"Y:2A9E","location":{"x":-8840000000000000000,"y":1340000000000000000,"z":-12400000000000000000}},"30010926":{"solarSystemId":30010926,"solarSystemName":"U:I250","location":{"x":-8880000000000000000,"y":1190000000000000000,"z":-12700000000000000000}},"30010927":{"solarSystemId":30010927,"solarSystemName":"Y:232L","location":{"x":-8720000000000000000,"y":1270000000000000000,"z":-12000000000000000000}},"30010928":{"solarSystemId":30010928,"solarSystemName":"G:2RSL","location":{"x":-9230000000000000000,"y":1030000000000000000,"z":-12600000000000000000}},"30010929":{"solarSystemId":30010929,"solarSystemName":"H:KKI0","location":{"x":-8160000000000000000,"y":1630000000000000000,"z":-13000000000000000000}},"30010930":{"solarSystemId":30010930,"solarSystemName":"G:1SO9","location":{"x":-8040000000000000000,"y":2130000000000000000,"z":-13400000000000000000}},"30010931":{"solarSystemId":30010931,"solarSystemName":"U:1601","location":{"x":-8970000000000000000,"y":2040000000000000000,"z":-12500000000000000000}},"30010932":{"solarSystemId":30010932,"solarSystemName":"Y:1OSK","location":{"x":-9350000000000000000,"y":868000000000000000,"z":-13700000000000000000}},"30010933":{"solarSystemId":30010933,"solarSystemName":"H:1NNS","location":{"x":-9030000000000000000,"y":1230000000000000000,"z":-13100000000000000000}},"30010934":{"solarSystemId":30010934,"solarSystemName":"Q:2KS4","location":{"x":-8650000000000000000,"y":1420000000000000000,"z":-13600000000000000000}},"30010935":{"solarSystemId":30010935,"solarSystemName":"U:3NT3","location":{"x":-9230000000000000000,"y":1340000000000000000,"z":-12600000000000000000}},"30010936":{"solarSystemId":30010936,"solarSystemName":"U:IA06","location":{"x":-9160000000000000000,"y":851000000000000000,"z":-14100000000000000000}},"30010937":{"solarSystemId":30010937,"solarSystemName":"M:4AVK","location":{"x":-9000000000000000000,"y":1860000000000000000,"z":-12700000000000000000}},"30010938":{"solarSystemId":30010938,"solarSystemName":"F:2TES","location":{"x":-8370000000000000000,"y":2530000000000000000,"z":-15400000000000000000}},"30010939":{"solarSystemId":30010939,"solarSystemName":"D:1R11","location":{"x":-6690000000000000000,"y":1330000000000000000,"z":-15200000000000000000}},"30010940":{"solarSystemId":30010940,"solarSystemName":"G:1S6K","location":{"x":-7240000000000000000,"y":3350000000000000000,"z":-14700000000000000000}},"30010941":{"solarSystemId":30010941,"solarSystemName":"G:19L1","location":{"x":-7410000000000000000,"y":3300000000000000000,"z":-15300000000000000000}},"30010942":{"solarSystemId":30010942,"solarSystemName":"G:3A96","location":{"x":-7480000000000000000,"y":1460000000000000000,"z":-14700000000000000000}},"30010943":{"solarSystemId":30010943,"solarSystemName":"P:29T2","location":{"x":-7000000000000000000,"y":2530000000000000000,"z":-14300000000000000000}},"30010944":{"solarSystemId":30010944,"solarSystemName":"Y:22RT","location":{"x":-7490000000000000000,"y":2650000000000000000,"z":-15300000000000000000}},"30010945":{"solarSystemId":30010945,"solarSystemName":"B:2S52","location":{"x":-7610000000000000000,"y":3460000000000000000,"z":-14800000000000000000}},"30010946":{"solarSystemId":30010946,"solarSystemName":"P:3R9I","location":{"x":-7750000000000000000,"y":2280000000000000000,"z":-14700000000000000000}},"30010947":{"solarSystemId":30010947,"solarSystemName":"G:5265","location":{"x":-6990000000000000000,"y":3060000000000000000,"z":-15200000000000000000}},"30010948":{"solarSystemId":30010948,"solarSystemName":"M:2RI7","location":{"x":-6280000000000000000,"y":1610000000000000000,"z":-12400000000000000000}},"30010949":{"solarSystemId":30010949,"solarSystemName":"Z:226N","location":{"x":-7170000000000000000,"y":-36600000000000000,"z":-13800000000000000000}},"30010950":{"solarSystemId":30010950,"solarSystemName":"Y:1AI7","location":{"x":-7710000000000000000,"y":1130000000000000000,"z":-12800000000000000000}},"30010951":{"solarSystemId":30010951,"solarSystemName":"M:30A4","location":{"x":-6590000000000000000,"y":969000000000000000,"z":-13400000000000000000}},"30010952":{"solarSystemId":30010952,"solarSystemName":"Y:27K5","location":{"x":-7410000000000000000,"y":-178000000000000000,"z":-13700000000000000000}},"30010953":{"solarSystemId":30010953,"solarSystemName":"J:358R","location":{"x":-7090000000000000000,"y":1870000000000000000,"z":-14200000000000000000}},"30010954":{"solarSystemId":30010954,"solarSystemName":"Q:2695","location":{"x":-7300000000000000000,"y":293000000000000000,"z":-14400000000000000000}},"30010955":{"solarSystemId":30010955,"solarSystemName":"Z:3I8O","location":{"x":-7360000000000000000,"y":-90700000000000000,"z":-13400000000000000000}},"30010956":{"solarSystemId":30010956,"solarSystemName":"B:3159","location":{"x":-6640000000000000000,"y":520000000000000000,"z":-12600000000000000000}},"30010957":{"solarSystemId":30010957,"solarSystemName":"J:1E6T","location":{"x":-7140000000000000000,"y":433000000000000000,"z":-14600000000000000000}},"30010958":{"solarSystemId":30010958,"solarSystemName":"M:2206","location":{"x":-7240000000000000000,"y":1880000000000000000,"z":-13700000000000000000}},"30010959":{"solarSystemId":30010959,"solarSystemName":"Y:1RA1","location":{"x":-6840000000000000000,"y":1140000000000000000,"z":-13000000000000000000}},"30010960":{"solarSystemId":30010960,"solarSystemName":"M:1E9T","location":{"x":-5580000000000000000,"y":1900000000000000000,"z":-12800000000000000000}},"30010961":{"solarSystemId":30010961,"solarSystemName":"Q:1VT1","location":{"x":-8430000000000000000,"y":445000000000000000,"z":-13400000000000000000}},"30010962":{"solarSystemId":30010962,"solarSystemName":"D:246N","location":{"x":-9150000000000000000,"y":-820000000000000000,"z":-13200000000000000000}},"30010963":{"solarSystemId":30010963,"solarSystemName":"F:1A5R","location":{"x":-7840000000000000000,"y":51000000000000000,"z":-13100000000000000000}},"30010964":{"solarSystemId":30010964,"solarSystemName":"G:1VRL","location":{"x":-8070000000000000000,"y":351000000000000000,"z":-12600000000000000000}},"30010965":{"solarSystemId":30010965,"solarSystemName":"Q:3I0O","location":{"x":-9280000000000000000,"y":684000000000000000,"z":-13500000000000000000}},"30010966":{"solarSystemId":30010966,"solarSystemName":"D:1OOL","location":{"x":-8590000000000000000,"y":774000000000000000,"z":-13500000000000000000}},"30010967":{"solarSystemId":30010967,"solarSystemName":"D:1ARK","location":{"x":-9110000000000000000,"y":855000000000000000,"z":-13100000000000000000}},"30010968":{"solarSystemId":30010968,"solarSystemName":"F:1OIN","location":{"x":-8810000000000000000,"y":441000000000000000,"z":-13500000000000000000}},"30010969":{"solarSystemId":30010969,"solarSystemName":"F:2781","location":{"x":-9290000000000000000,"y":571000000000000000,"z":-13700000000000000000}},"30010970":{"solarSystemId":30010970,"solarSystemName":"M:V12T","location":{"x":-8450000000000000000,"y":756000000000000000,"z":-13400000000000000000}},"30010971":{"solarSystemId":30010971,"solarSystemName":"G:4V0T","location":{"x":-8490000000000000000,"y":529000000000000000,"z":-13500000000000000000}},"30010972":{"solarSystemId":30010972,"solarSystemName":"Q:29EE","location":{"x":-8890000000000000000,"y":641000000000000000,"z":-13700000000000000000}},"30010973":{"solarSystemId":30010973,"solarSystemName":"G:26KA","location":{"x":-8470000000000000000,"y":-390000000000000000,"z":-13700000000000000000}},"30010974":{"solarSystemId":30010974,"solarSystemName":"D:1I14","location":{"x":-8960000000000000000,"y":-709000000000000000,"z":-13200000000000000000}},"30010975":{"solarSystemId":30010975,"solarSystemName":"G:33EA","location":{"x":-8360000000000000000,"y":775000000000000000,"z":-14100000000000000000}},"30010976":{"solarSystemId":30010976,"solarSystemName":"F:2R7R","location":{"x":-8610000000000000000,"y":3110000000000000000,"z":-14000000000000000000}},"30010977":{"solarSystemId":30010977,"solarSystemName":"P:1RLI","location":{"x":-9160000000000000000,"y":2960000000000000000,"z":-13900000000000000000}},"30010978":{"solarSystemId":30010978,"solarSystemName":"H:2KLI","location":{"x":-8860000000000000000,"y":2470000000000000000,"z":-14200000000000000000}},"30010979":{"solarSystemId":30010979,"solarSystemName":"P:1OK2","location":{"x":-9330000000000000000,"y":2450000000000000000,"z":-13300000000000000000}},"30010980":{"solarSystemId":30010980,"solarSystemName":"Y:3O0R","location":{"x":-8860000000000000000,"y":3310000000000000000,"z":-14100000000000000000}},"30010981":{"solarSystemId":30010981,"solarSystemName":"M:21LN","location":{"x":-9330000000000000000,"y":2820000000000000000,"z":-14100000000000000000}},"30010982":{"solarSystemId":30010982,"solarSystemName":"B:1IV0","location":{"x":-9110000000000000000,"y":2260000000000000000,"z":-13900000000000000000}},"30010983":{"solarSystemId":30010983,"solarSystemName":"J:2O80","location":{"x":-9470000000000000000,"y":2570000000000000000,"z":-14100000000000000000}},"30010984":{"solarSystemId":30010984,"solarSystemName":"Z:1ER6","location":{"x":-9460000000000000000,"y":1780000000000000000,"z":-13600000000000000000}},"30010985":{"solarSystemId":30010985,"solarSystemName":"U:1O1A","location":{"x":-5700000000000000000,"y":1380000000000000000,"z":-15500000000000000000}},"30010986":{"solarSystemId":30010986,"solarSystemName":"J:1KLR","location":{"x":-5810000000000000000,"y":793000000000000000,"z":-16500000000000000000}},"30010987":{"solarSystemId":30010987,"solarSystemName":"M:1K82","location":{"x":-5670000000000000000,"y":993000000000000000,"z":-17500000000000000000}},"30010988":{"solarSystemId":30010988,"solarSystemName":"M:3405","location":{"x":-5840000000000000000,"y":1310000000000000000,"z":-15500000000000000000}},"30010989":{"solarSystemId":30010989,"solarSystemName":"F:27SS","location":{"x":-6890000000000000000,"y":1680000000000000000,"z":-16800000000000000000}},"30010990":{"solarSystemId":30010990,"solarSystemName":"J:27KN","location":{"x":-5900000000000000000,"y":1400000000000000000,"z":-17200000000000000000}},"30010991":{"solarSystemId":30010991,"solarSystemName":"J:1LR1","location":{"x":-5650000000000000000,"y":1930000000000000000,"z":-16300000000000000000}},"30010992":{"solarSystemId":30010992,"solarSystemName":"D:2SI2","location":{"x":-5680000000000000000,"y":1610000000000000000,"z":-16400000000000000000}},"30010993":{"solarSystemId":30010993,"solarSystemName":"G:223T","location":{"x":-5650000000000000000,"y":911000000000000000,"z":-17100000000000000000}},"30010994":{"solarSystemId":30010994,"solarSystemName":"J:2E95","location":{"x":-5390000000000000000,"y":1180000000000000000,"z":-16000000000000000000}},"30010995":{"solarSystemId":30010995,"solarSystemName":"B:29S8","location":{"x":-8190000000000000000,"y":2620000000000000000,"z":-13400000000000000000}},"30010996":{"solarSystemId":30010996,"solarSystemName":"H:20ON","location":{"x":-7310000000000000000,"y":3340000000000000000,"z":-13200000000000000000}},"30010997":{"solarSystemId":30010997,"solarSystemName":"J:LOT1","location":{"x":-6820000000000000000,"y":2870000000000000000,"z":-13900000000000000000}},"30010998":{"solarSystemId":30010998,"solarSystemName":"F:39V1","location":{"x":-8390000000000000000,"y":3400000000000000000,"z":-14100000000000000000}},"30010999":{"solarSystemId":30010999,"solarSystemName":"Y:2K6T","location":{"x":-7350000000000000000,"y":2180000000000000000,"z":-12600000000000000000}},"30011000":{"solarSystemId":30011000,"solarSystemName":"J:1TLO","location":{"x":-8220000000000000000,"y":3410000000000000000,"z":-12500000000000000000}},"30011001":{"solarSystemId":30011001,"solarSystemName":"D:16AR","location":{"x":-7400000000000000000,"y":2540000000000000000,"z":-12200000000000000000}},"30011002":{"solarSystemId":30011002,"solarSystemName":"H:LV17","location":{"x":-6890000000000000000,"y":2650000000000000000,"z":-13900000000000000000}},"30011003":{"solarSystemId":30011003,"solarSystemName":"Y:3E9T","location":{"x":-7490000000000000000,"y":-357000000000000000,"z":-15100000000000000000}},"30011004":{"solarSystemId":30011004,"solarSystemName":"G:4A6V","location":{"x":-8590000000000000000,"y":6070000000000000,"z":-15700000000000000000}},"30011005":{"solarSystemId":30011005,"solarSystemName":"M:1T05","location":{"x":-9130000000000000000,"y":28100000000000000,"z":-14800000000000000000}},"30011006":{"solarSystemId":30011006,"solarSystemName":"P:23I5","location":{"x":-9710000000000000000,"y":-528000000000000000,"z":-16100000000000000000}},"30011007":{"solarSystemId":30011007,"solarSystemName":"H:1EK7","location":{"x":-8050000000000000000,"y":-488000000000000000,"z":-15000000000000000000}},"30011008":{"solarSystemId":30011008,"solarSystemName":"M:4OOE","location":{"x":-8530000000000000000,"y":844000000000000000,"z":-14700000000000000000}},"30011009":{"solarSystemId":30011009,"solarSystemName":"Y:33VL","location":{"x":-9110000000000000000,"y":754000000000000000,"z":-15900000000000000000}},"30011010":{"solarSystemId":30011010,"solarSystemName":"P:OSI4","location":{"x":-7630000000000000000,"y":-796000000000000000,"z":-15500000000000000000}},"30011011":{"solarSystemId":30011011,"solarSystemName":"Y:284O","location":{"x":-9590000000000000000,"y":-184000000000000000,"z":-15300000000000000000}},"30011012":{"solarSystemId":30011012,"solarSystemName":"Y:1R06","location":{"x":-7520000000000000000,"y":-341000000000000000,"z":-15800000000000000000}},"30011013":{"solarSystemId":30011013,"solarSystemName":"P:2S38","location":{"x":-8230000000000000000,"y":-833000000000000000,"z":-15000000000000000000}},"30011014":{"solarSystemId":30011014,"solarSystemName":"J:39IO","location":{"x":-8600000000000000000,"y":1070000000000000000,"z":-15700000000000000000}},"30011015":{"solarSystemId":30011015,"solarSystemName":"Y:24N6","location":{"x":-1150000000000000000,"y":3750000000000000000,"z":-9570000000000000000}},"30011016":{"solarSystemId":30011016,"solarSystemName":"M:VS6E","location":{"x":-2080000000000000000,"y":3870000000000000000,"z":-9830000000000000000}},"30011017":{"solarSystemId":30011017,"solarSystemName":"Y:1LTO","location":{"x":-1960000000000000000,"y":4000000000000000000,"z":-12400000000000000000}},"30011018":{"solarSystemId":30011018,"solarSystemName":"Q:1VEE","location":{"x":-1020000000000000000,"y":4560000000000000000,"z":-11600000000000000000}},"30011019":{"solarSystemId":30011019,"solarSystemName":"H:489E","location":{"x":-1300000000000000000,"y":3900000000000000000,"z":-11000000000000000000}},"30011020":{"solarSystemId":30011020,"solarSystemName":"Y:3SI7","location":{"x":-969000000000000000,"y":2690000000000000000,"z":-11200000000000000000}},"30011021":{"solarSystemId":30011021,"solarSystemName":"G:193T","location":{"x":-2470000000000000000,"y":4170000000000000000,"z":-10700000000000000000}},"30011022":{"solarSystemId":30011022,"solarSystemName":"G:400R","location":{"x":-3180000000000000000,"y":2240000000000000000,"z":-13900000000000000000}},"30011023":{"solarSystemId":30011023,"solarSystemName":"P:1L5V","location":{"x":-3170000000000000000,"y":2730000000000000000,"z":-14100000000000000000}},"30011024":{"solarSystemId":30011024,"solarSystemName":"G:2LE8","location":{"x":-2630000000000000000,"y":1790000000000000000,"z":-14000000000000000000}},"30011025":{"solarSystemId":30011025,"solarSystemName":"B:2TAL","location":{"x":-2580000000000000000,"y":1600000000000000000,"z":-14400000000000000000}},"30011026":{"solarSystemId":30011026,"solarSystemName":"M:2ET3","location":{"x":-2990000000000000000,"y":1730000000000000000,"z":-14200000000000000000}},"30011027":{"solarSystemId":30011027,"solarSystemName":"U:259N","location":{"x":-3510000000000000000,"y":2090000000000000000,"z":-13700000000000000000}},"30011028":{"solarSystemId":30011028,"solarSystemName":"H:2496","location":{"x":-2700000000000000000,"y":1610000000000000000,"z":-14100000000000000000}},"30011029":{"solarSystemId":30011029,"solarSystemName":"U:2INE","location":{"x":-2560000000000000000,"y":1010000000000000000,"z":-14200000000000000000}},"30011030":{"solarSystemId":30011030,"solarSystemName":"P:2SA5","location":{"x":-2960000000000000000,"y":1830000000000000000,"z":-14400000000000000000}},"30011031":{"solarSystemId":30011031,"solarSystemName":"Z:26A9","location":{"x":-2850000000000000000,"y":2350000000000000000,"z":-13800000000000000000}},"30011032":{"solarSystemId":30011032,"solarSystemName":"J:1N03","location":{"x":-2500000000000000000,"y":1400000000000000000,"z":-13800000000000000000}},"30011033":{"solarSystemId":30011033,"solarSystemName":"Q:1E04","location":{"x":-2830000000000000000,"y":815000000000000000,"z":-14100000000000000000}},"30011034":{"solarSystemId":30011034,"solarSystemName":"D:1SR9","location":{"x":-2960000000000000000,"y":2050000000000000000,"z":-13700000000000000000}},"30011035":{"solarSystemId":30011035,"solarSystemName":"Q:2S11","location":{"x":-5130000000000000000,"y":4300000000000000000,"z":-8850000000000000000}},"30011036":{"solarSystemId":30011036,"solarSystemName":"H:2EIK","location":{"x":-2980000000000000000,"y":4000000000000000000,"z":-10100000000000000000}},"30011037":{"solarSystemId":30011037,"solarSystemName":"G:1VT2","location":{"x":-3240000000000000000,"y":3010000000000000000,"z":-10300000000000000000}},"30011038":{"solarSystemId":30011038,"solarSystemName":"Y:4N16","location":{"x":-2530000000000000000,"y":3400000000000000000,"z":-9330000000000000000}},"30011039":{"solarSystemId":30011039,"solarSystemName":"P:1RSI","location":{"x":-4050000000000000000,"y":3600000000000000000,"z":-9560000000000000000}},"30011040":{"solarSystemId":30011040,"solarSystemName":"J:3E13","location":{"x":-4370000000000000000,"y":2790000000000000000,"z":-10700000000000000000}},"30011041":{"solarSystemId":30011041,"solarSystemName":"F:E84R","location":{"x":-3970000000000000000,"y":2420000000000000000,"z":-9640000000000000000}},"30011042":{"solarSystemId":30011042,"solarSystemName":"P:282O","location":{"x":-4750000000000000000,"y":2950000000000000000,"z":-10500000000000000000}},"30011043":{"solarSystemId":30011043,"solarSystemName":"G:333S","location":{"x":-3450000000000000000,"y":5620000000000000000,"z":-12400000000000000000}},"30011044":{"solarSystemId":30011044,"solarSystemName":"P:2E6A","location":{"x":-2520000000000000000,"y":5340000000000000000,"z":-10400000000000000000}},"30011045":{"solarSystemId":30011045,"solarSystemName":"G:1INN","location":{"x":-2200000000000000000,"y":5200000000000000000,"z":-11600000000000000000}},"30011046":{"solarSystemId":30011046,"solarSystemName":"U:3437","location":{"x":-2730000000000000000,"y":3440000000000000000,"z":-11600000000000000000}},"30011047":{"solarSystemId":30011047,"solarSystemName":"J:3N1K","location":{"x":-4000000000000000000,"y":5170000000000000000,"z":-12200000000000000000}},"30011048":{"solarSystemId":30011048,"solarSystemName":"G:1R8N","location":{"x":-2270000000000000000,"y":4830000000000000000,"z":-12800000000000000000}},"30011049":{"solarSystemId":30011049,"solarSystemName":"J:2TI1","location":{"x":1010000000000000000,"y":3620000000000000000,"z":-13700000000000000000}},"30011050":{"solarSystemId":30011050,"solarSystemName":"Z:30ET","location":{"x":-658000000000000000,"y":3320000000000000000,"z":-14000000000000000000}},"30011051":{"solarSystemId":30011051,"solarSystemName":"F:2168","location":{"x":-1640000000000000000,"y":2420000000000000000,"z":-14100000000000000000}},"30011052":{"solarSystemId":30011052,"solarSystemName":"J:2733","location":{"x":-345000000000000000,"y":1700000000000000000,"z":-13500000000000000000}},"30011053":{"solarSystemId":30011053,"solarSystemName":"B:260I","location":{"x":-1060000000000000000,"y":2190000000000000000,"z":-12900000000000000000}},"30011054":{"solarSystemId":30011054,"solarSystemName":"M:36E9","location":{"x":-1520000000000000000,"y":3290000000000000000,"z":-15400000000000000000}},"30011055":{"solarSystemId":30011055,"solarSystemName":"D:3921","location":{"x":-1020000000000000000,"y":2150000000000000000,"z":-13200000000000000000}},"30011056":{"solarSystemId":30011056,"solarSystemName":"Y:1E0S","location":{"x":-5380000000000000000,"y":3260000000000000000,"z":-13700000000000000000}},"30011057":{"solarSystemId":30011057,"solarSystemName":"H:25IR","location":{"x":-4970000000000000000,"y":3840000000000000000,"z":-14600000000000000000}},"30011058":{"solarSystemId":30011058,"solarSystemName":"B:1VLN","location":{"x":-2680000000000000000,"y":3120000000000000000,"z":-12300000000000000000}},"30011059":{"solarSystemId":30011059,"solarSystemName":"D:2KTR","location":{"x":-4460000000000000000,"y":4730000000000000000,"z":-12400000000000000000}},"30011060":{"solarSystemId":30011060,"solarSystemName":"H:160A","location":{"x":-3860000000000000000,"y":3020000000000000000,"z":-12900000000000000000}},"30011061":{"solarSystemId":30011061,"solarSystemName":"P:482A","location":{"x":-4550000000000000000,"y":4780000000000000000,"z":-11300000000000000000}},"30011062":{"solarSystemId":30011062,"solarSystemName":"J:264T","location":{"x":-10700000000000000000,"y":459000000000000000,"z":-7260000000000000000}},"30011063":{"solarSystemId":30011063,"solarSystemName":"M:2E44","location":{"x":-10800000000000000000,"y":488000000000000000,"z":-7380000000000000000}},"30011064":{"solarSystemId":30011064,"solarSystemName":"Q:25L3","location":{"x":-10800000000000000000,"y":405000000000000000,"z":-7410000000000000000}},"30011065":{"solarSystemId":30011065,"solarSystemName":"F:2OS9","location":{"x":-10500000000000000000,"y":539000000000000000,"z":-7430000000000000000}},"30011066":{"solarSystemId":30011066,"solarSystemName":"Z:34O2","location":{"x":-10600000000000000000,"y":554000000000000000,"z":-7390000000000000000}},"30011067":{"solarSystemId":30011067,"solarSystemName":"Z:16E8","location":{"x":-10700000000000000000,"y":522000000000000000,"z":-7430000000000000000}},"30011068":{"solarSystemId":30011068,"solarSystemName":"D:TIV2","location":{"x":-10700000000000000000,"y":461000000000000000,"z":-7320000000000000000}},"30011069":{"solarSystemId":30011069,"solarSystemName":"Z:28KA","location":{"x":-10800000000000000000,"y":457000000000000000,"z":-7360000000000000000}},"30011070":{"solarSystemId":30011070,"solarSystemName":"B:2SO5","location":{"x":-10800000000000000000,"y":429000000000000000,"z":-7350000000000000000}},"30011071":{"solarSystemId":30011071,"solarSystemName":"Y:2STN","location":{"x":-10800000000000000000,"y":400000000000000000,"z":-7330000000000000000}},"30011072":{"solarSystemId":30011072,"solarSystemName":"Y:27N8","location":{"x":-10700000000000000000,"y":487000000000000000,"z":-7250000000000000000}},"30011073":{"solarSystemId":30011073,"solarSystemName":"Y:2O38","location":{"x":-10500000000000000000,"y":587000000000000000,"z":-7490000000000000000}},"30011074":{"solarSystemId":30011074,"solarSystemName":"M:2ARV","location":{"x":-10700000000000000000,"y":486000000000000000,"z":-7460000000000000000}},"30011075":{"solarSystemId":30011075,"solarSystemName":"P:31N4","location":{"x":-10600000000000000000,"y":416000000000000000,"z":-7470000000000000000}},"30011076":{"solarSystemId":30011076,"solarSystemName":"Q:2R39","location":{"x":-10600000000000000000,"y":496000000000000000,"z":-7440000000000000000}},"30011077":{"solarSystemId":30011077,"solarSystemName":"P:2NVL","location":{"x":-10600000000000000000,"y":473000000000000000,"z":-7410000000000000000}},"30011078":{"solarSystemId":30011078,"solarSystemName":"P:27TE","location":{"x":-10800000000000000000,"y":492000000000000000,"z":-7390000000000000000}},"30011079":{"solarSystemId":30011079,"solarSystemName":"B:K8K9","location":{"x":-10700000000000000000,"y":541000000000000000,"z":-7220000000000000000}},"30011080":{"solarSystemId":30011080,"solarSystemName":"Y:32VV","location":{"x":-10800000000000000000,"y":486000000000000000,"z":-7420000000000000000}},"30011081":{"solarSystemId":30011081,"solarSystemName":"P:3AOK","location":{"x":-10800000000000000000,"y":901000000000000000,"z":-8160000000000000000}},"30011082":{"solarSystemId":30011082,"solarSystemName":"G:3E6A","location":{"x":-10700000000000000000,"y":1440000000000000000,"z":-7990000000000000000}},"30011083":{"solarSystemId":30011083,"solarSystemName":"Z:279A","location":{"x":-10900000000000000000,"y":719000000000000000,"z":-8110000000000000000}},"30011084":{"solarSystemId":30011084,"solarSystemName":"Y:NA59","location":{"x":-10700000000000000000,"y":1100000000000000000,"z":-8160000000000000000}},"30011085":{"solarSystemId":30011085,"solarSystemName":"M:1LO3","location":{"x":-10100000000000000000,"y":1260000000000000000,"z":-8000000000000000000}},"30011086":{"solarSystemId":30011086,"solarSystemName":"F:166R","location":{"x":-10500000000000000000,"y":1040000000000000000,"z":-7880000000000000000}},"30011087":{"solarSystemId":30011087,"solarSystemName":"B:2103","location":{"x":-10700000000000000000,"y":1300000000000000000,"z":-7470000000000000000}},"30011088":{"solarSystemId":30011088,"solarSystemName":"F:E54L","location":{"x":-10300000000000000000,"y":1430000000000000000,"z":-8060000000000000000}},"30011089":{"solarSystemId":30011089,"solarSystemName":"P:17S8","location":{"x":-10700000000000000000,"y":980000000000000000,"z":-8270000000000000000}},"30011090":{"solarSystemId":30011090,"solarSystemName":"Q:328L","location":{"x":-10600000000000000000,"y":1140000000000000000,"z":-7480000000000000000}},"30011091":{"solarSystemId":30011091,"solarSystemName":"G:15NS","location":{"x":-10800000000000000000,"y":904000000000000000,"z":-8160000000000000000}},"30011092":{"solarSystemId":30011092,"solarSystemName":"D:1NIL","location":{"x":-10700000000000000000,"y":910000000000000000,"z":-7980000000000000000}},"30011093":{"solarSystemId":30011093,"solarSystemName":"U:284T","location":{"x":-10700000000000000000,"y":1220000000000000000,"z":-7600000000000000000}},"30011094":{"solarSystemId":30011094,"solarSystemName":"J:1I8I","location":{"x":-10300000000000000000,"y":1240000000000000000,"z":-8110000000000000000}},"30011095":{"solarSystemId":30011095,"solarSystemName":"P:2NV7","location":{"x":-10500000000000000000,"y":1230000000000000000,"z":-8330000000000000000}},"30011096":{"solarSystemId":30011096,"solarSystemName":"Y:N5L2","location":{"x":-10500000000000000000,"y":1300000000000000000,"z":-8120000000000000000}},"30011097":{"solarSystemId":30011097,"solarSystemName":"H:293A","location":{"x":-10800000000000000000,"y":966000000000000000,"z":-8180000000000000000}},"30011098":{"solarSystemId":30011098,"solarSystemName":"P:1N8I","location":{"x":-10600000000000000000,"y":1210000000000000000,"z":-7900000000000000000}},"30011099":{"solarSystemId":30011099,"solarSystemName":"G:KS9E","location":{"x":-10800000000000000000,"y":984000000000000000,"z":-8290000000000000000}},"30011100":{"solarSystemId":30011100,"solarSystemName":"M:26S6","location":{"x":-10500000000000000000,"y":1340000000000000000,"z":-7290000000000000000}},"30011101":{"solarSystemId":30011101,"solarSystemName":"H:227T","location":{"x":-10800000000000000000,"y":1140000000000000000,"z":-7990000000000000000}},"30011102":{"solarSystemId":30011102,"solarSystemName":"H:2TEN","location":{"x":-10400000000000000000,"y":944000000000000000,"z":-7770000000000000000}},"30011103":{"solarSystemId":30011103,"solarSystemName":"H:30S9","location":{"x":-9880000000000000000,"y":1480000000000000000,"z":-7720000000000000000}},"30011104":{"solarSystemId":30011104,"solarSystemName":"P:2VKS","location":{"x":-10800000000000000000,"y":938000000000000000,"z":-8160000000000000000}},"30011105":{"solarSystemId":30011105,"solarSystemName":"Y:1L29","location":{"x":-10500000000000000000,"y":1480000000000000000,"z":-8380000000000000000}},"30011106":{"solarSystemId":30011106,"solarSystemName":"J:355K","location":{"x":-10900000000000000000,"y":1340000000000000000,"z":-7600000000000000000}},"30011107":{"solarSystemId":30011107,"solarSystemName":"P:3597","location":{"x":-11100000000000000000,"y":501000000000000000,"z":-7370000000000000000}},"30011108":{"solarSystemId":30011108,"solarSystemName":"G:2ITK","location":{"x":-11100000000000000000,"y":482000000000000000,"z":-7310000000000000000}},"30011109":{"solarSystemId":30011109,"solarSystemName":"H:25RK","location":{"x":-11100000000000000000,"y":522000000000000000,"z":-7350000000000000000}},"30011110":{"solarSystemId":30011110,"solarSystemName":"Z:IR1I","location":{"x":-11100000000000000000,"y":468000000000000000,"z":-7330000000000000000}},"30011111":{"solarSystemId":30011111,"solarSystemName":"H:K62I","location":{"x":-11200000000000000000,"y":486000000000000000,"z":-7290000000000000000}},"30011112":{"solarSystemId":30011112,"solarSystemName":"B:1O17","location":{"x":-11100000000000000000,"y":495000000000000000,"z":-7230000000000000000}},"30011113":{"solarSystemId":30011113,"solarSystemName":"M:I0TO","location":{"x":-11100000000000000000,"y":532000000000000000,"z":-7320000000000000000}},"30011114":{"solarSystemId":30011114,"solarSystemName":"M:1VVL","location":{"x":-11100000000000000000,"y":501000000000000000,"z":-7240000000000000000}},"30011115":{"solarSystemId":30011115,"solarSystemName":"U:2LRO","location":{"x":-11100000000000000000,"y":508000000000000000,"z":-7230000000000000000}},"30011116":{"solarSystemId":30011116,"solarSystemName":"F:AV84","location":{"x":-11200000000000000000,"y":486000000000000000,"z":-7230000000000000000}},"30011117":{"solarSystemId":30011117,"solarSystemName":"G:22VT","location":{"x":-11100000000000000000,"y":523000000000000000,"z":-7270000000000000000}},"30011118":{"solarSystemId":30011118,"solarSystemName":"F:2EKK","location":{"x":-11200000000000000000,"y":463000000000000000,"z":-7340000000000000000}},"30011119":{"solarSystemId":30011119,"solarSystemName":"D:2SIE","location":{"x":-11100000000000000000,"y":461000000000000000,"z":-7290000000000000000}},"30011120":{"solarSystemId":30011120,"solarSystemName":"Z:2RR3","location":{"x":-11100000000000000000,"y":480000000000000000,"z":-7320000000000000000}},"30011121":{"solarSystemId":30011121,"solarSystemName":"D:2742","location":{"x":-11200000000000000000,"y":441000000000000000,"z":-7370000000000000000}},"30011122":{"solarSystemId":30011122,"solarSystemName":"M:2542","location":{"x":-11100000000000000000,"y":444000000000000000,"z":-7310000000000000000}},"30011123":{"solarSystemId":30011123,"solarSystemName":"D:2S1I","location":{"x":-11100000000000000000,"y":501000000000000000,"z":-7400000000000000000}},"30011124":{"solarSystemId":30011124,"solarSystemName":"F:2RKA","location":{"x":-11100000000000000000,"y":450000000000000000,"z":-7300000000000000000}},"30011125":{"solarSystemId":30011125,"solarSystemName":"J:1RO2","location":{"x":-11200000000000000000,"y":519000000000000000,"z":-7330000000000000000}},"30011126":{"solarSystemId":30011126,"solarSystemName":"U:2N5O","location":{"x":-11000000000000000000,"y":340000000000000000,"z":-7440000000000000000}},"30011127":{"solarSystemId":30011127,"solarSystemName":"Z:2299","location":{"x":-11100000000000000000,"y":436000000000000000,"z":-7350000000000000000}},"30011128":{"solarSystemId":30011128,"solarSystemName":"D:2KN0","location":{"x":-11100000000000000000,"y":418000000000000000,"z":-7430000000000000000}},"30011129":{"solarSystemId":30011129,"solarSystemName":"U:3N0L","location":{"x":-11000000000000000000,"y":423000000000000000,"z":-7330000000000000000}},"30011130":{"solarSystemId":30011130,"solarSystemName":"P:147A","location":{"x":-11100000000000000000,"y":429000000000000000,"z":-7370000000000000000}},"30011131":{"solarSystemId":30011131,"solarSystemName":"J:2T5N","location":{"x":-11100000000000000000,"y":463000000000000000,"z":-7410000000000000000}},"30011132":{"solarSystemId":30011132,"solarSystemName":"F:1VIE","location":{"x":-11100000000000000000,"y":477000000000000000,"z":-7370000000000000000}},"30011133":{"solarSystemId":30011133,"solarSystemName":"P:38OS","location":{"x":-11100000000000000000,"y":388000000000000000,"z":-7360000000000000000}},"30011134":{"solarSystemId":30011134,"solarSystemName":"G:22LA","location":{"x":-11000000000000000000,"y":422000000000000000,"z":-7320000000000000000}},"30011135":{"solarSystemId":30011135,"solarSystemName":"P:34VV","location":{"x":-11100000000000000000,"y":418000000000000000,"z":-7420000000000000000}},"30011136":{"solarSystemId":30011136,"solarSystemName":"U:1L1T","location":{"x":-11000000000000000000,"y":458000000000000000,"z":-7390000000000000000}},"30011137":{"solarSystemId":30011137,"solarSystemName":"F:313I","location":{"x":-11000000000000000000,"y":474000000000000000,"z":-7390000000000000000}},"30011138":{"solarSystemId":30011138,"solarSystemName":"Q:234E","location":{"x":-11100000000000000000,"y":362000000000000000,"z":-7380000000000000000}},"30011139":{"solarSystemId":30011139,"solarSystemName":"Y:301R","location":{"x":-11100000000000000000,"y":354000000000000000,"z":-7400000000000000000}},"30011140":{"solarSystemId":30011140,"solarSystemName":"H:2KTT","location":{"x":-11100000000000000000,"y":429000000000000000,"z":-7440000000000000000}},"30011141":{"solarSystemId":30011141,"solarSystemName":"J:2NOV","location":{"x":-11100000000000000000,"y":452000000000000000,"z":-7370000000000000000}},"30011142":{"solarSystemId":30011142,"solarSystemName":"H:25L5","location":{"x":-11000000000000000000,"y":476000000000000000,"z":-7400000000000000000}},"30011143":{"solarSystemId":30011143,"solarSystemName":"Q:2T5A","location":{"x":-11100000000000000000,"y":383000000000000000,"z":-7420000000000000000}},"30011144":{"solarSystemId":30011144,"solarSystemName":"Y:25VT","location":{"x":-11000000000000000000,"y":410000000000000000,"z":-7430000000000000000}},"30011145":{"solarSystemId":30011145,"solarSystemName":"Y:2N7T","location":{"x":-11000000000000000000,"y":541000000000000000,"z":-7310000000000000000}},"30011146":{"solarSystemId":30011146,"solarSystemName":"Y:305K","location":{"x":-11000000000000000000,"y":466000000000000000,"z":-7260000000000000000}},"30011147":{"solarSystemId":30011147,"solarSystemName":"G:RAS8","location":{"x":-11000000000000000000,"y":508000000000000000,"z":-7280000000000000000}},"30011148":{"solarSystemId":30011148,"solarSystemName":"Y:340I","location":{"x":-10900000000000000000,"y":504000000000000000,"z":-7290000000000000000}},"30011149":{"solarSystemId":30011149,"solarSystemName":"B:24IO","location":{"x":-10900000000000000000,"y":493000000000000000,"z":-7320000000000000000}},"30011150":{"solarSystemId":30011150,"solarSystemName":"Z:N642","location":{"x":-10900000000000000000,"y":534000000000000000,"z":-7330000000000000000}},"30011151":{"solarSystemId":30011151,"solarSystemName":"Y:1N06","location":{"x":-10900000000000000000,"y":561000000000000000,"z":-7320000000000000000}},"30011152":{"solarSystemId":30011152,"solarSystemName":"Q:18AL","location":{"x":-10800000000000000000,"y":518000000000000000,"z":-7280000000000000000}},"30011153":{"solarSystemId":30011153,"solarSystemName":"M:2543","location":{"x":-10900000000000000000,"y":488000000000000000,"z":-7290000000000000000}},"30011154":{"solarSystemId":30011154,"solarSystemName":"F:1NO8","location":{"x":-10900000000000000000,"y":516000000000000000,"z":-7320000000000000000}},"30011155":{"solarSystemId":30011155,"solarSystemName":"Y:TIT3","location":{"x":-10900000000000000000,"y":523000000000000000,"z":-7320000000000000000}},"30011156":{"solarSystemId":30011156,"solarSystemName":"G:N6E2","location":{"x":-10900000000000000000,"y":533000000000000000,"z":-7270000000000000000}},"30011157":{"solarSystemId":30011157,"solarSystemName":"F:2701","location":{"x":-11000000000000000000,"y":550000000000000000,"z":-7280000000000000000}},"30011158":{"solarSystemId":30011158,"solarSystemName":"M:2EOL","location":{"x":-11000000000000000000,"y":516000000000000000,"z":-7290000000000000000}},"30011159":{"solarSystemId":30011159,"solarSystemName":"B:2533","location":{"x":-10900000000000000000,"y":478000000000000000,"z":-7350000000000000000}},"30011160":{"solarSystemId":30011160,"solarSystemName":"H:2319","location":{"x":-10900000000000000000,"y":499000000000000000,"z":-7300000000000000000}},"30011161":{"solarSystemId":30011161,"solarSystemName":"Y:2L4I","location":{"x":-10900000000000000000,"y":539000000000000000,"z":-7300000000000000000}},"30011162":{"solarSystemId":30011162,"solarSystemName":"Z:2L1R","location":{"x":-11000000000000000000,"y":533000000000000000,"z":-7280000000000000000}},"30011163":{"solarSystemId":30011163,"solarSystemName":"Y:2478","location":{"x":-10900000000000000000,"y":553000000000000000,"z":-7300000000000000000}},"30011164":{"solarSystemId":30011164,"solarSystemName":"Q:2NI0","location":{"x":-10800000000000000000,"y":549000000000000000,"z":-7250000000000000000}},"30011165":{"solarSystemId":30011165,"solarSystemName":"M:2O29","location":{"x":-10900000000000000000,"y":489000000000000000,"z":-7260000000000000000}},"30011166":{"solarSystemId":30011166,"solarSystemName":"U:3T7E","location":{"x":-9510000000000000000,"y":1040000000000000000,"z":-6170000000000000000}},"30011167":{"solarSystemId":30011167,"solarSystemName":"J:3265","location":{"x":-10300000000000000000,"y":431000000000000000,"z":-6470000000000000000}},"30011168":{"solarSystemId":30011168,"solarSystemName":"M:2I77","location":{"x":-9800000000000000000,"y":238000000000000000,"z":-5960000000000000000}},"30011169":{"solarSystemId":30011169,"solarSystemName":"Z:328E","location":{"x":-10200000000000000000,"y":264000000000000000,"z":-6490000000000000000}},"30011170":{"solarSystemId":30011170,"solarSystemName":"B:23K8","location":{"x":-10300000000000000000,"y":358000000000000000,"z":-6500000000000000000}},"30011171":{"solarSystemId":30011171,"solarSystemName":"M:KO0S","location":{"x":-9830000000000000000,"y":415000000000000000,"z":-6440000000000000000}},"30011172":{"solarSystemId":30011172,"solarSystemName":"G:2442","location":{"x":-10100000000000000000,"y":261000000000000000,"z":-6560000000000000000}},"30011173":{"solarSystemId":30011173,"solarSystemName":"B:256K","location":{"x":-9820000000000000000,"y":260000000000000000,"z":-6020000000000000000}},"30011174":{"solarSystemId":30011174,"solarSystemName":"D:2276","location":{"x":-9970000000000000000,"y":758000000000000000,"z":-6210000000000000000}},"30011175":{"solarSystemId":30011175,"solarSystemName":"M:2511","location":{"x":-9940000000000000000,"y":507000000000000000,"z":-5800000000000000000}},"30011176":{"solarSystemId":30011176,"solarSystemName":"G:2R29","location":{"x":-10100000000000000000,"y":1090000000000000000,"z":-6140000000000000000}},"30011177":{"solarSystemId":30011177,"solarSystemName":"Y:22EA","location":{"x":-9730000000000000000,"y":1130000000000000000,"z":-6530000000000000000}},"30011178":{"solarSystemId":30011178,"solarSystemName":"U:29O5","location":{"x":-10000000000000000000,"y":1030000000000000000,"z":-6590000000000000000}},"30011179":{"solarSystemId":30011179,"solarSystemName":"P:271A","location":{"x":-10300000000000000000,"y":512000000000000000,"z":-6340000000000000000}},"30011180":{"solarSystemId":30011180,"solarSystemName":"D:S2RL","location":{"x":-10500000000000000000,"y":439000000000000000,"z":-6450000000000000000}},"30011181":{"solarSystemId":30011181,"solarSystemName":"H:2ESI","location":{"x":-10200000000000000000,"y":193000000000000000,"z":-6290000000000000000}},"30011182":{"solarSystemId":30011182,"solarSystemName":"H:26SV","location":{"x":-10500000000000000000,"y":409000000000000000,"z":-6280000000000000000}},"30011183":{"solarSystemId":30011183,"solarSystemName":"P:13RI","location":{"x":-10200000000000000000,"y":242000000000000000,"z":-6180000000000000000}},"30011184":{"solarSystemId":30011184,"solarSystemName":"D:355A","location":{"x":-10900000000000000000,"y":465000000000000000,"z":-7220000000000000000}},"30011185":{"solarSystemId":30011185,"solarSystemName":"P:34S3","location":{"x":-11000000000000000000,"y":482000000000000000,"z":-7240000000000000000}},"30011186":{"solarSystemId":30011186,"solarSystemName":"H:ARVR","location":{"x":-10900000000000000000,"y":496000000000000000,"z":-7200000000000000000}},"30011187":{"solarSystemId":30011187,"solarSystemName":"P:27A1","location":{"x":-10900000000000000000,"y":458000000000000000,"z":-7240000000000000000}},"30011188":{"solarSystemId":30011188,"solarSystemName":"U:2275","location":{"x":-10900000000000000000,"y":460000000000000000,"z":-7150000000000000000}},"30011189":{"solarSystemId":30011189,"solarSystemName":"J:1NVA","location":{"x":-10900000000000000000,"y":449000000000000000,"z":-7240000000000000000}},"30011190":{"solarSystemId":30011190,"solarSystemName":"Z:20ER","location":{"x":-10900000000000000000,"y":482000000000000000,"z":-7170000000000000000}},"30011191":{"solarSystemId":30011191,"solarSystemName":"J:1VAL","location":{"x":-10900000000000000000,"y":474000000000000000,"z":-7180000000000000000}},"30011192":{"solarSystemId":30011192,"solarSystemName":"G:1OKS","location":{"x":-10900000000000000000,"y":477000000000000000,"z":-7200000000000000000}},"30011193":{"solarSystemId":30011193,"solarSystemName":"D:217E","location":{"x":-10900000000000000000,"y":441000000000000000,"z":-7230000000000000000}},"30011194":{"solarSystemId":30011194,"solarSystemName":"J:1IL0","location":{"x":-11000000000000000000,"y":515000000000000000,"z":-7240000000000000000}},"30011195":{"solarSystemId":30011195,"solarSystemName":"F:237I","location":{"x":-10900000000000000000,"y":498000000000000000,"z":-7180000000000000000}},"30011196":{"solarSystemId":30011196,"solarSystemName":"D:250L","location":{"x":-10900000000000000000,"y":474000000000000000,"z":-7240000000000000000}},"30011197":{"solarSystemId":30011197,"solarSystemName":"P:SLIS","location":{"x":-10900000000000000000,"y":463000000000000000,"z":-7210000000000000000}},"30011198":{"solarSystemId":30011198,"solarSystemName":"D:1K7N","location":{"x":-10900000000000000000,"y":467000000000000000,"z":-7200000000000000000}},"30011199":{"solarSystemId":30011199,"solarSystemName":"F:22ST","location":{"x":-10900000000000000000,"y":483000000000000000,"z":-7240000000000000000}},"30011200":{"solarSystemId":30011200,"solarSystemName":"Q:2IS9","location":{"x":-10900000000000000000,"y":463000000000000000,"z":-7200000000000000000}},"30011201":{"solarSystemId":30011201,"solarSystemName":"H:2R2N","location":{"x":-10900000000000000000,"y":449000000000000000,"z":-7190000000000000000}},"30011202":{"solarSystemId":30011202,"solarSystemName":"F:2T04","location":{"x":-10900000000000000000,"y":496000000000000000,"z":-7210000000000000000}},"30011203":{"solarSystemId":30011203,"solarSystemName":"G:I2S0","location":{"x":-10900000000000000000,"y":433000000000000000,"z":-7180000000000000000}},"30011204":{"solarSystemId":30011204,"solarSystemName":"G:150A","location":{"x":-10900000000000000000,"y":499000000000000000,"z":-7220000000000000000}},"30011205":{"solarSystemId":30011205,"solarSystemName":"Z:1K44","location":{"x":-11000000000000000000,"y":522000000000000000,"z":-7230000000000000000}},"30011206":{"solarSystemId":30011206,"solarSystemName":"M:2493","location":{"x":-11000000000000000000,"y":487000000000000000,"z":-7320000000000000000}},"30011207":{"solarSystemId":30011207,"solarSystemName":"B:2R28","location":{"x":-11000000000000000000,"y":533000000000000000,"z":-7300000000000000000}},"30011208":{"solarSystemId":30011208,"solarSystemName":"G:247K","location":{"x":-11000000000000000000,"y":490000000000000000,"z":-7310000000000000000}},"30011209":{"solarSystemId":30011209,"solarSystemName":"B:2TIR","location":{"x":-11000000000000000000,"y":527000000000000000,"z":-7270000000000000000}},"30011210":{"solarSystemId":30011210,"solarSystemName":"F:3135","location":{"x":-11000000000000000000,"y":489000000000000000,"z":-7320000000000000000}},"30011211":{"solarSystemId":30011211,"solarSystemName":"G:2V1V","location":{"x":-11000000000000000000,"y":511000000000000000,"z":-7270000000000000000}},"30011212":{"solarSystemId":30011212,"solarSystemName":"Y:296R","location":{"x":-11100000000000000000,"y":524000000000000000,"z":-7240000000000000000}},"30011213":{"solarSystemId":30011213,"solarSystemName":"M:AK6E","location":{"x":-11000000000000000000,"y":486000000000000000,"z":-7250000000000000000}},"30011214":{"solarSystemId":30011214,"solarSystemName":"G:K96L","location":{"x":-11000000000000000000,"y":523000000000000000,"z":-7320000000000000000}},"30011215":{"solarSystemId":30011215,"solarSystemName":"B:1ITS","location":{"x":-11000000000000000000,"y":479000000000000000,"z":-7290000000000000000}},"30011216":{"solarSystemId":30011216,"solarSystemName":"P:1L25","location":{"x":-11000000000000000000,"y":527000000000000000,"z":-7250000000000000000}},"30011217":{"solarSystemId":30011217,"solarSystemName":"Y:2LS8","location":{"x":-11000000000000000000,"y":482000000000000000,"z":-7290000000000000000}},"30011218":{"solarSystemId":30011218,"solarSystemName":"B:276I","location":{"x":-11000000000000000000,"y":488000000000000000,"z":-7270000000000000000}},"30011219":{"solarSystemId":30011219,"solarSystemName":"Z:326K","location":{"x":-11000000000000000000,"y":543000000000000000,"z":-7300000000000000000}},"30011220":{"solarSystemId":30011220,"solarSystemName":"M:31RL","location":{"x":-11000000000000000000,"y":536000000000000000,"z":-7320000000000000000}},"30011221":{"solarSystemId":30011221,"solarSystemName":"D:341N","location":{"x":-11000000000000000000,"y":507000000000000000,"z":-7250000000000000000}},"30011222":{"solarSystemId":30011222,"solarSystemName":"H:30K0","location":{"x":-11000000000000000000,"y":543000000000000000,"z":-7300000000000000000}},"30011223":{"solarSystemId":30011223,"solarSystemName":"M:22IO","location":{"x":-11000000000000000000,"y":515000000000000000,"z":-7310000000000000000}},"30011224":{"solarSystemId":30011224,"solarSystemName":"D:2VI1","location":{"x":-11000000000000000000,"y":477000000000000000,"z":-7310000000000000000}},"30011225":{"solarSystemId":30011225,"solarSystemName":"U:22EV","location":{"x":-11000000000000000000,"y":511000000000000000,"z":-7290000000000000000}},"30011226":{"solarSystemId":30011226,"solarSystemName":"U:2ETS","location":{"x":-10000000000000000000,"y":563000000000000000,"z":-7310000000000000000}},"30011227":{"solarSystemId":30011227,"solarSystemName":"P:34KO","location":{"x":-10300000000000000000,"y":403000000000000000,"z":-7400000000000000000}},"30011228":{"solarSystemId":30011228,"solarSystemName":"G:17A3","location":{"x":-9940000000000000000,"y":640000000000000000,"z":-7260000000000000000}},"30011229":{"solarSystemId":30011229,"solarSystemName":"F:15RK","location":{"x":-10300000000000000000,"y":551000000000000000,"z":-7270000000000000000}},"30011230":{"solarSystemId":30011230,"solarSystemName":"U:31VL","location":{"x":-10200000000000000000,"y":600000000000000000,"z":-7460000000000000000}},"30011231":{"solarSystemId":30011231,"solarSystemName":"U:17N5","location":{"x":-10200000000000000000,"y":346000000000000000,"z":-7320000000000000000}},"30011232":{"solarSystemId":30011232,"solarSystemName":"G:2I34","location":{"x":-10200000000000000000,"y":412000000000000000,"z":-7420000000000000000}},"30011233":{"solarSystemId":30011233,"solarSystemName":"M:1R4T","location":{"x":-10000000000000000000,"y":297000000000000000,"z":-7280000000000000000}},"30011234":{"solarSystemId":30011234,"solarSystemName":"J:243T","location":{"x":-10300000000000000000,"y":475000000000000000,"z":-7220000000000000000}},"30011235":{"solarSystemId":30011235,"solarSystemName":"B:1NO1","location":{"x":-10200000000000000000,"y":574000000000000000,"z":-7200000000000000000}},"30011236":{"solarSystemId":30011236,"solarSystemName":"Z:26LE","location":{"x":-10300000000000000000,"y":464000000000000000,"z":-7420000000000000000}},"30011237":{"solarSystemId":30011237,"solarSystemName":"U:2055","location":{"x":-10100000000000000000,"y":459000000000000000,"z":-7080000000000000000}},"30011238":{"solarSystemId":30011238,"solarSystemName":"G:1K9N","location":{"x":-9910000000000000000,"y":471000000000000000,"z":-7040000000000000000}},"30011239":{"solarSystemId":30011239,"solarSystemName":"U:339L","location":{"x":-10100000000000000000,"y":488000000000000000,"z":-7230000000000000000}},"30011240":{"solarSystemId":30011240,"solarSystemName":"F:25N1","location":{"x":-10100000000000000000,"y":558000000000000000,"z":-7060000000000000000}},"30011241":{"solarSystemId":30011241,"solarSystemName":"J:2395","location":{"x":-9840000000000000000,"y":642000000000000000,"z":-7230000000000000000}},"30011242":{"solarSystemId":30011242,"solarSystemName":"U:1547","location":{"x":-10100000000000000000,"y":412000000000000000,"z":-7360000000000000000}},"30011243":{"solarSystemId":30011243,"solarSystemName":"Z:1RII","location":{"x":-10300000000000000000,"y":559000000000000000,"z":-7300000000000000000}},"30011244":{"solarSystemId":30011244,"solarSystemName":"Y:L57S","location":{"x":-10000000000000000000,"y":470000000000000000,"z":-7310000000000000000}},"30011245":{"solarSystemId":30011245,"solarSystemName":"Z:31EO","location":{"x":-10700000000000000000,"y":540000000000000000,"z":-7600000000000000000}},"30011246":{"solarSystemId":30011246,"solarSystemName":"D:29AI","location":{"x":-10500000000000000000,"y":663000000000000000,"z":-7560000000000000000}},"30011247":{"solarSystemId":30011247,"solarSystemName":"Z:140A","location":{"x":-10500000000000000000,"y":729000000000000000,"z":-7680000000000000000}},"30011248":{"solarSystemId":30011248,"solarSystemName":"F:18LL","location":{"x":-10900000000000000000,"y":671000000000000000,"z":-7500000000000000000}},"30011249":{"solarSystemId":30011249,"solarSystemName":"Z:29T4","location":{"x":-10900000000000000000,"y":796000000000000000,"z":-7580000000000000000}},"30011250":{"solarSystemId":30011250,"solarSystemName":"G:31SR","location":{"x":-10600000000000000000,"y":592000000000000000,"z":-7620000000000000000}},"30011251":{"solarSystemId":30011251,"solarSystemName":"J:I151","location":{"x":-10700000000000000000,"y":656000000000000000,"z":-7710000000000000000}},"30011252":{"solarSystemId":30011252,"solarSystemName":"P:34E9","location":{"x":-10700000000000000000,"y":790000000000000000,"z":-7670000000000000000}},"30011253":{"solarSystemId":30011253,"solarSystemName":"Y:2NNO","location":{"x":-10900000000000000000,"y":781000000000000000,"z":-7550000000000000000}},"30011254":{"solarSystemId":30011254,"solarSystemName":"U:25S5","location":{"x":-10900000000000000000,"y":602000000000000000,"z":-7540000000000000000}},"30011255":{"solarSystemId":30011255,"solarSystemName":"P:25ON","location":{"x":-10800000000000000000,"y":673000000000000000,"z":-7590000000000000000}},"30011256":{"solarSystemId":30011256,"solarSystemName":"D:28IV","location":{"x":-10800000000000000000,"y":710000000000000000,"z":-7610000000000000000}},"30011257":{"solarSystemId":30011257,"solarSystemName":"J:33EO","location":{"x":-10600000000000000000,"y":501000000000000000,"z":-7590000000000000000}},"30011258":{"solarSystemId":30011258,"solarSystemName":"B:39EL","location":{"x":-10800000000000000000,"y":787000000000000000,"z":-7680000000000000000}},"30011259":{"solarSystemId":30011259,"solarSystemName":"Y:331I","location":{"x":-10700000000000000000,"y":766000000000000000,"z":-7480000000000000000}},"30011260":{"solarSystemId":30011260,"solarSystemName":"P:23S1","location":{"x":-10700000000000000000,"y":918000000000000000,"z":-7570000000000000000}},"30011261":{"solarSystemId":30011261,"solarSystemName":"G:22KR","location":{"x":-10700000000000000000,"y":826000000000000000,"z":-7490000000000000000}},"30011262":{"solarSystemId":30011262,"solarSystemName":"B:2E4K","location":{"x":-10500000000000000000,"y":722000000000000000,"z":-7700000000000000000}},"30011263":{"solarSystemId":30011263,"solarSystemName":"U:27TN","location":{"x":-10700000000000000000,"y":522000000000000000,"z":-7640000000000000000}},"30011264":{"solarSystemId":30011264,"solarSystemName":"J:20AO","location":{"x":-10800000000000000000,"y":810000000000000000,"z":-7590000000000000000}},"30011265":{"solarSystemId":30011265,"solarSystemName":"H:1470","location":{"x":-10700000000000000000,"y":705000000000000000,"z":-7550000000000000000}},"30011266":{"solarSystemId":30011266,"solarSystemName":"B:1T48","location":{"x":-12500000000000000000,"y":456000000000000000,"z":-11500000000000000000}},"30011267":{"solarSystemId":30011267,"solarSystemName":"Q:3O2I","location":{"x":-13000000000000000000,"y":387000000000000000,"z":-11200000000000000000}},"30011268":{"solarSystemId":30011268,"solarSystemName":"P:1776","location":{"x":-12800000000000000000,"y":657000000000000000,"z":-11400000000000000000}},"30011269":{"solarSystemId":30011269,"solarSystemName":"P:1TRV","location":{"x":-13100000000000000000,"y":-362000000000000000,"z":-11600000000000000000}},"30011270":{"solarSystemId":30011270,"solarSystemName":"B:106L","location":{"x":-12500000000000000000,"y":200000000000000000,"z":-12000000000000000000}},"30011271":{"solarSystemId":30011271,"solarSystemName":"Q:33OL","location":{"x":-13000000000000000000,"y":98600000000000000,"z":-11200000000000000000}},"30011272":{"solarSystemId":30011272,"solarSystemName":"H:26L7","location":{"x":-13000000000000000000,"y":224000000000000000,"z":-11700000000000000000}},"30011273":{"solarSystemId":30011273,"solarSystemName":"P:K2IE","location":{"x":-12900000000000000000,"y":794000000000000000,"z":-10600000000000000000}},"30011274":{"solarSystemId":30011274,"solarSystemName":"P:20LV","location":{"x":-11900000000000000000,"y":46400000000000000,"z":-12200000000000000000}},"30011275":{"solarSystemId":30011275,"solarSystemName":"B:NV6N","location":{"x":-12800000000000000000,"y":-307000000000000000,"z":-11900000000000000000}},"30011276":{"solarSystemId":30011276,"solarSystemName":"F:33KN","location":{"x":-12300000000000000000,"y":720000000000000000,"z":-11000000000000000000}},"30011277":{"solarSystemId":30011277,"solarSystemName":"H:1897","location":{"x":-12300000000000000000,"y":114000000000000000,"z":-11700000000000000000}},"30011278":{"solarSystemId":30011278,"solarSystemName":"D:1SEK","location":{"x":-12300000000000000000,"y":48200000000000000,"z":-11900000000000000000}},"30011279":{"solarSystemId":30011279,"solarSystemName":"H:2475","location":{"x":-13100000000000000000,"y":15700000000000000,"z":-11800000000000000000}},"30011280":{"solarSystemId":30011280,"solarSystemName":"Z:1TOS","location":{"x":-12500000000000000000,"y":-92100000000000000,"z":-11900000000000000000}},"30011281":{"solarSystemId":30011281,"solarSystemName":"D:4T1N","location":{"x":-13100000000000000000,"y":-29800000000000000,"z":-11600000000000000000}},"30011282":{"solarSystemId":30011282,"solarSystemName":"Y:3NLO","location":{"x":-9860000000000000000,"y":755000000000000000,"z":-9960000000000000000}},"30011283":{"solarSystemId":30011283,"solarSystemName":"Z:1R2V","location":{"x":-10500000000000000000,"y":477000000000000000,"z":-9920000000000000000}},"30011284":{"solarSystemId":30011284,"solarSystemName":"Q:OR9R","location":{"x":-9910000000000000000,"y":313000000000000000,"z":-10200000000000000000}},"30011285":{"solarSystemId":30011285,"solarSystemName":"H:2KAE","location":{"x":-10500000000000000000,"y":534000000000000000,"z":-10300000000000000000}},"30011286":{"solarSystemId":30011286,"solarSystemName":"Y:1K6A","location":{"x":-10800000000000000000,"y":668000000000000000,"z":-9370000000000000000}},"30011287":{"solarSystemId":30011287,"solarSystemName":"Z:N1R5","location":{"x":-10900000000000000000,"y":906000000000000000,"z":-9690000000000000000}},"30011288":{"solarSystemId":30011288,"solarSystemName":"G:30R2","location":{"x":-10900000000000000000,"y":732000000000000000,"z":-9870000000000000000}},"30011289":{"solarSystemId":30011289,"solarSystemName":"D:10S1","location":{"x":-10600000000000000000,"y":757000000000000000,"z":-9910000000000000000}},"30011290":{"solarSystemId":30011290,"solarSystemName":"B:2282","location":{"x":-10400000000000000000,"y":893000000000000000,"z":-10100000000000000000}},"30011291":{"solarSystemId":30011291,"solarSystemName":"B:T3O9","location":{"x":-10400000000000000000,"y":673000000000000000,"z":-9680000000000000000}},"30011292":{"solarSystemId":30011292,"solarSystemName":"Y:2143","location":{"x":-10500000000000000000,"y":564000000000000000,"z":-9960000000000000000}},"30011293":{"solarSystemId":30011293,"solarSystemName":"B:1KVL","location":{"x":-9880000000000000000,"y":633000000000000000,"z":-9990000000000000000}},"30011294":{"solarSystemId":30011294,"solarSystemName":"Y:2507","location":{"x":-10800000000000000000,"y":370000000000000000,"z":-9890000000000000000}},"30011295":{"solarSystemId":30011295,"solarSystemName":"H:3ONN","location":{"x":-10400000000000000000,"y":396000000000000000,"z":-10000000000000000000}},"30011296":{"solarSystemId":30011296,"solarSystemName":"U:367R","location":{"x":-10400000000000000000,"y":1040000000000000000,"z":-10400000000000000000}},"30011297":{"solarSystemId":30011297,"solarSystemName":"M:33E7","location":{"x":-10200000000000000000,"y":752000000000000000,"z":-10200000000000000000}},"30011298":{"solarSystemId":30011298,"solarSystemName":"Y:2OO0","location":{"x":-10300000000000000000,"y":1140000000000000000,"z":-8310000000000000000}},"30011299":{"solarSystemId":30011299,"solarSystemName":"Y:27V3","location":{"x":-10200000000000000000,"y":536000000000000000,"z":-8410000000000000000}},"30011300":{"solarSystemId":30011300,"solarSystemName":"Y:1KSS","location":{"x":-10400000000000000000,"y":857000000000000000,"z":-8300000000000000000}},"30011301":{"solarSystemId":30011301,"solarSystemName":"J:LS78","location":{"x":-10600000000000000000,"y":628000000000000000,"z":-8500000000000000000}},"30011302":{"solarSystemId":30011302,"solarSystemName":"F:27I7","location":{"x":-10400000000000000000,"y":887000000000000000,"z":-8320000000000000000}},"30011303":{"solarSystemId":30011303,"solarSystemName":"H:OKTO","location":{"x":-10300000000000000000,"y":1220000000000000000,"z":-8310000000000000000}},"30011304":{"solarSystemId":30011304,"solarSystemName":"P:1E92","location":{"x":-10100000000000000000,"y":666000000000000000,"z":-8150000000000000000}},"30011305":{"solarSystemId":30011305,"solarSystemName":"Q:22KL","location":{"x":-10600000000000000000,"y":901000000000000000,"z":-8240000000000000000}},"30011306":{"solarSystemId":30011306,"solarSystemName":"Y:20NE","location":{"x":-10100000000000000000,"y":989000000000000000,"z":-8350000000000000000}},"30011307":{"solarSystemId":30011307,"solarSystemName":"Z:26AT","location":{"x":-10400000000000000000,"y":517000000000000000,"z":-8250000000000000000}},"30011308":{"solarSystemId":30011308,"solarSystemName":"D:15AN","location":{"x":-10400000000000000000,"y":790000000000000000,"z":-8170000000000000000}},"30011309":{"solarSystemId":30011309,"solarSystemName":"D:2EO5","location":{"x":-10200000000000000000,"y":787000000000000000,"z":-8320000000000000000}},"30011310":{"solarSystemId":30011310,"solarSystemName":"Y:1AK1","location":{"x":-9910000000000000000,"y":934000000000000000,"z":-8150000000000000000}},"30011311":{"solarSystemId":30011311,"solarSystemName":"H:266K","location":{"x":-10200000000000000000,"y":984000000000000000,"z":-8480000000000000000}},"30011312":{"solarSystemId":30011312,"solarSystemName":"Z:15R0","location":{"x":-10100000000000000000,"y":882000000000000000,"z":-8150000000000000000}},"30011313":{"solarSystemId":30011313,"solarSystemName":"Q:11AO","location":{"x":-10300000000000000000,"y":722000000000000000,"z":-8000000000000000000}},"30011314":{"solarSystemId":30011314,"solarSystemName":"U:1SL1","location":{"x":-10600000000000000000,"y":696000000000000000,"z":-8290000000000000000}},"30011315":{"solarSystemId":30011315,"solarSystemName":"Z:2530","location":{"x":-10000000000000000000,"y":999000000000000000,"z":-8180000000000000000}},"30011316":{"solarSystemId":30011316,"solarSystemName":"D:2OL9","location":{"x":-10600000000000000000,"y":506000000000000000,"z":-7890000000000000000}},"30011317":{"solarSystemId":30011317,"solarSystemName":"D:2E0O","location":{"x":-10700000000000000000,"y":702000000000000000,"z":-7890000000000000000}},"30011318":{"solarSystemId":30011318,"solarSystemName":"D:1I07","location":{"x":-10700000000000000000,"y":817000000000000000,"z":-8010000000000000000}},"30011319":{"solarSystemId":30011319,"solarSystemName":"H:T1TA","location":{"x":-10800000000000000000,"y":659000000000000000,"z":-7820000000000000000}},"30011320":{"solarSystemId":30011320,"solarSystemName":"B:14V5","location":{"x":-10600000000000000000,"y":694000000000000000,"z":-8030000000000000000}},"30011321":{"solarSystemId":30011321,"solarSystemName":"D:24VE","location":{"x":-10700000000000000000,"y":656000000000000000,"z":-8140000000000000000}},"30011322":{"solarSystemId":30011322,"solarSystemName":"F:222N","location":{"x":-10700000000000000000,"y":757000000000000000,"z":-7930000000000000000}},"30011323":{"solarSystemId":30011323,"solarSystemName":"P:1RER","location":{"x":-10600000000000000000,"y":620000000000000000,"z":-7970000000000000000}},"30011324":{"solarSystemId":30011324,"solarSystemName":"Y:2830","location":{"x":-10400000000000000000,"y":581000000000000000,"z":-8030000000000000000}},"30011325":{"solarSystemId":30011325,"solarSystemName":"D:276R","location":{"x":-10600000000000000000,"y":847000000000000000,"z":-7930000000000000000}},"30011326":{"solarSystemId":30011326,"solarSystemName":"Y:1A01","location":{"x":-10600000000000000000,"y":753000000000000000,"z":-7970000000000000000}},"30011327":{"solarSystemId":30011327,"solarSystemName":"Q:207I","location":{"x":-10700000000000000000,"y":689000000000000000,"z":-8030000000000000000}},"30011328":{"solarSystemId":30011328,"solarSystemName":"G:26T0","location":{"x":-10600000000000000000,"y":832000000000000000,"z":-8040000000000000000}},"30011329":{"solarSystemId":30011329,"solarSystemName":"U:O3KR","location":{"x":-10700000000000000000,"y":800000000000000000,"z":-7890000000000000000}},"30011330":{"solarSystemId":30011330,"solarSystemName":"M:2T5L","location":{"x":-10700000000000000000,"y":813000000000000000,"z":-7980000000000000000}},"30011331":{"solarSystemId":30011331,"solarSystemName":"G:4S4O","location":{"x":-10700000000000000000,"y":643000000000000000,"z":-7840000000000000000}},"30011332":{"solarSystemId":30011332,"solarSystemName":"G:20NR","location":{"x":-10600000000000000000,"y":609000000000000000,"z":-7990000000000000000}},"30011333":{"solarSystemId":30011333,"solarSystemName":"Z:3TL2","location":{"x":-10700000000000000000,"y":714000000000000000,"z":-8030000000000000000}},"30011334":{"solarSystemId":30011334,"solarSystemName":"J:3S4R","location":{"x":-11600000000000000000,"y":142000000000000000,"z":-11200000000000000000}},"30011335":{"solarSystemId":30011335,"solarSystemName":"Q:1SEN","location":{"x":-10900000000000000000,"y":-895000000000000000,"z":-10900000000000000000}},"30011336":{"solarSystemId":30011336,"solarSystemName":"G:2ION","location":{"x":-11600000000000000000,"y":-802000000000000000,"z":-10800000000000000000}},"30011337":{"solarSystemId":30011337,"solarSystemName":"U:32K9","location":{"x":-12100000000000000000,"y":255000000000000000,"z":-11200000000000000000}},"30011338":{"solarSystemId":30011338,"solarSystemName":"D:ASK4","location":{"x":-11500000000000000000,"y":-797000000000000000,"z":-11200000000000000000}},"30011339":{"solarSystemId":30011339,"solarSystemName":"H:IE7E","location":{"x":-11700000000000000000,"y":-660000000000000000,"z":-10600000000000000000}},"30011340":{"solarSystemId":30011340,"solarSystemName":"H:K55I","location":{"x":-11400000000000000000,"y":-708000000000000000,"z":-10500000000000000000}},"30011341":{"solarSystemId":30011341,"solarSystemName":"F:1ES0","location":{"x":-11500000000000000000,"y":396000000000000000,"z":-11300000000000000000}},"30011342":{"solarSystemId":30011342,"solarSystemName":"F:1RS4","location":{"x":-10900000000000000000,"y":-17600000000000000,"z":-11000000000000000000}},"30011343":{"solarSystemId":30011343,"solarSystemName":"G:1E8K","location":{"x":-11300000000000000000,"y":-263000000000000000,"z":-11200000000000000000}},"30011344":{"solarSystemId":30011344,"solarSystemName":"Q:1OL1","location":{"x":-11800000000000000000,"y":225000000000000000,"z":-11000000000000000000}},"30011345":{"solarSystemId":30011345,"solarSystemName":"H:TI7E","location":{"x":-11200000000000000000,"y":470000000000000000,"z":-10900000000000000000}},"30011346":{"solarSystemId":30011346,"solarSystemName":"Q:3N7K","location":{"x":-11400000000000000000,"y":480000000000000000,"z":-11500000000000000000}},"30011347":{"solarSystemId":30011347,"solarSystemName":"G:1RV2","location":{"x":-11700000000000000000,"y":172000000000000000,"z":-11400000000000000000}},"30011348":{"solarSystemId":30011348,"solarSystemName":"Y:477S","location":{"x":-11200000000000000000,"y":64400000000000000,"z":-10700000000000000000}},"30011349":{"solarSystemId":30011349,"solarSystemName":"P:2TTO","location":{"x":-11200000000000000000,"y":125000000000000000,"z":-9550000000000000000}},"30011350":{"solarSystemId":30011350,"solarSystemName":"Q:2062","location":{"x":-11300000000000000000,"y":269000000000000000,"z":-9970000000000000000}},"30011351":{"solarSystemId":30011351,"solarSystemName":"D:2KAT","location":{"x":-11100000000000000000,"y":630000000000000000,"z":-9730000000000000000}},"30011352":{"solarSystemId":30011352,"solarSystemName":"G:I181","location":{"x":-11700000000000000000,"y":55800000000000000,"z":-9200000000000000000}},"30011353":{"solarSystemId":30011353,"solarSystemName":"G:S3EL","location":{"x":-11200000000000000000,"y":411000000000000000,"z":-10200000000000000000}},"30011354":{"solarSystemId":30011354,"solarSystemName":"M:2AT4","location":{"x":-11900000000000000000,"y":-181000000000000000,"z":-9200000000000000000}},"30011355":{"solarSystemId":30011355,"solarSystemName":"Z:LL16","location":{"x":-11400000000000000000,"y":-815000000000000000,"z":-9270000000000000000}},"30011356":{"solarSystemId":30011356,"solarSystemName":"H:T06I","location":{"x":-11300000000000000000,"y":-752000000000000000,"z":-10100000000000000000}},"30011357":{"solarSystemId":30011357,"solarSystemName":"D:15KV","location":{"x":-11600000000000000000,"y":-120000000000000000,"z":-9780000000000000000}},"30011358":{"solarSystemId":30011358,"solarSystemName":"Y:3ANK","location":{"x":-11700000000000000000,"y":329000000000000000,"z":-9430000000000000000}},"30011359":{"solarSystemId":30011359,"solarSystemName":"M:OIOL","location":{"x":-11600000000000000000,"y":748000000000000000,"z":-9800000000000000000}},"30011360":{"solarSystemId":30011360,"solarSystemName":"D:1R6T","location":{"x":-11200000000000000000,"y":215000000000000000,"z":-9700000000000000000}},"30011361":{"solarSystemId":30011361,"solarSystemName":"H:TL77","location":{"x":-12200000000000000000,"y":231000000000000000,"z":-9710000000000000000}},"30011362":{"solarSystemId":30011362,"solarSystemName":"P:4I0S","location":{"x":-11700000000000000000,"y":291000000000000000,"z":-9710000000000000000}},"30011363":{"solarSystemId":30011363,"solarSystemName":"F:253A","location":{"x":-11300000000000000000,"y":136000000000000000,"z":-10100000000000000000}},"30011364":{"solarSystemId":30011364,"solarSystemName":"F:22R1","location":{"x":-11600000000000000000,"y":-515000000000000000,"z":-9690000000000000000}},"30011365":{"solarSystemId":30011365,"solarSystemName":"G:KES5","location":{"x":-11600000000000000000,"y":491000000000000000,"z":-9490000000000000000}},"30011366":{"solarSystemId":30011366,"solarSystemName":"D:35V4","location":{"x":-13700000000000000000,"y":1710000000000000000,"z":-10700000000000000000}},"30011367":{"solarSystemId":30011367,"solarSystemName":"Z:2R13","location":{"x":-14500000000000000000,"y":2120000000000000000,"z":-9890000000000000000}},"30011368":{"solarSystemId":30011368,"solarSystemName":"M:2N7V","location":{"x":-13800000000000000000,"y":1620000000000000000,"z":-9810000000000000000}},"30011369":{"solarSystemId":30011369,"solarSystemName":"F:32I8","location":{"x":-14000000000000000000,"y":2120000000000000000,"z":-8990000000000000000}},"30011370":{"solarSystemId":30011370,"solarSystemName":"Z:1K9R","location":{"x":-13600000000000000000,"y":1320000000000000000,"z":-8630000000000000000}},"30011371":{"solarSystemId":30011371,"solarSystemName":"M:1E5K","location":{"x":-13100000000000000000,"y":2130000000000000000,"z":-9440000000000000000}},"30011372":{"solarSystemId":30011372,"solarSystemName":"J:3S9R","location":{"x":-13600000000000000000,"y":2250000000000000000,"z":-8920000000000000000}},"30011373":{"solarSystemId":30011373,"solarSystemName":"B:3T51","location":{"x":-13100000000000000000,"y":1910000000000000000,"z":-8570000000000000000}},"30011374":{"solarSystemId":30011374,"solarSystemName":"Z:3I54","location":{"x":-14700000000000000000,"y":1920000000000000000,"z":-8640000000000000000}},"30011375":{"solarSystemId":30011375,"solarSystemName":"F:1410","location":{"x":-13900000000000000000,"y":2670000000000000000,"z":-9260000000000000000}},"30011376":{"solarSystemId":30011376,"solarSystemName":"D:2AT6","location":{"x":-13000000000000000000,"y":1940000000000000000,"z":-9790000000000000000}},"30011377":{"solarSystemId":30011377,"solarSystemName":"G:3712","location":{"x":-14300000000000000000,"y":2350000000000000000,"z":-9100000000000000000}},"30011378":{"solarSystemId":30011378,"solarSystemName":"D:2SSK","location":{"x":-12900000000000000000,"y":1780000000000000000,"z":-8580000000000000000}},"30011379":{"solarSystemId":30011379,"solarSystemName":"H:1ITV","location":{"x":-13000000000000000000,"y":2870000000000000000,"z":-9570000000000000000}},"30011380":{"solarSystemId":30011380,"solarSystemName":"H:284K","location":{"x":-12900000000000000000,"y":1150000000000000000,"z":-8820000000000000000}},"30011381":{"solarSystemId":30011381,"solarSystemName":"B:103A","location":{"x":-9490000000000000000,"y":59400000000000000,"z":-9080000000000000000}},"30011382":{"solarSystemId":30011382,"solarSystemName":"Z:I67V","location":{"x":-9750000000000000000,"y":799000000000000000,"z":-9630000000000000000}},"30011383":{"solarSystemId":30011383,"solarSystemName":"D:VOK6","location":{"x":-10000000000000000000,"y":468000000000000000,"z":-9660000000000000000}},"30011384":{"solarSystemId":30011384,"solarSystemName":"Z:239N","location":{"x":-9180000000000000000,"y":429000000000000000,"z":-9190000000000000000}},"30011385":{"solarSystemId":30011385,"solarSystemName":"H:217K","location":{"x":-9530000000000000000,"y":506000000000000000,"z":-9550000000000000000}},"30011386":{"solarSystemId":30011386,"solarSystemName":"F:21AK","location":{"x":-9760000000000000000,"y":486000000000000000,"z":-9300000000000000000}},"30011387":{"solarSystemId":30011387,"solarSystemName":"U:2N6I","location":{"x":-9550000000000000000,"y":734000000000000000,"z":-9780000000000000000}},"30011388":{"solarSystemId":30011388,"solarSystemName":"Q:1N73","location":{"x":-9210000000000000000,"y":291000000000000000,"z":-9240000000000000000}},"30011389":{"solarSystemId":30011389,"solarSystemName":"G:1LTV","location":{"x":-10000000000000000000,"y":-63100000000000000,"z":-9270000000000000000}},"30011390":{"solarSystemId":30011390,"solarSystemName":"J:26VT","location":{"x":-10300000000000000000,"y":576000000000000000,"z":-9470000000000000000}},"30011391":{"solarSystemId":30011391,"solarSystemName":"H:13EI","location":{"x":-10200000000000000000,"y":267000000000000000,"z":-9130000000000000000}},"30011392":{"solarSystemId":30011392,"solarSystemName":"J:3O9T","location":{"x":-10200000000000000000,"y":638000000000000000,"z":-9400000000000000000}},"30011393":{"solarSystemId":30011393,"solarSystemName":"F:S10A","location":{"x":-9730000000000000000,"y":1050000000000000000,"z":-9390000000000000000}},"30011394":{"solarSystemId":30011394,"solarSystemName":"G:28KL","location":{"x":-10100000000000000000,"y":698000000000000000,"z":-9540000000000000000}},"30011395":{"solarSystemId":30011395,"solarSystemName":"Q:4S1T","location":{"x":-9430000000000000000,"y":955000000000000000,"z":-9180000000000000000}},"30011396":{"solarSystemId":30011396,"solarSystemName":"Q:13R8","location":{"x":-9190000000000000000,"y":407000000000000000,"z":-9050000000000000000}},"30011397":{"solarSystemId":30011397,"solarSystemName":"U:2NOR","location":{"x":-9940000000000000000,"y":98000000000000000,"z":-9370000000000000000}},"30011398":{"solarSystemId":30011398,"solarSystemName":"T.JQ8.Y01","location":{"x":-9970000000000000000,"y":-1180000000000000000,"z":-26100000000000000000}},"30011399":{"solarSystemId":30011399,"solarSystemName":"H.9M8.1TC","location":{"x":-9850000000000000000,"y":-589000000000000000,"z":-26100000000000000000}},"30011400":{"solarSystemId":30011400,"solarSystemName":"T.NY8.B6J","location":{"x":-10200000000000000000,"y":-908000000000000000,"z":-26300000000000000000}},"30011401":{"solarSystemId":30011401,"solarSystemName":"H.BN8.0CP","location":{"x":-9680000000000000000,"y":-667000000000000000,"z":-26300000000000000000}},"30011402":{"solarSystemId":30011402,"solarSystemName":"U.XG8.XZM","location":{"x":-10100000000000000000,"y":-645000000000000000,"z":-26000000000000000000}},"30011403":{"solarSystemId":30011403,"solarSystemName":"S.JZ8.5HS","location":{"x":-10300000000000000000,"y":-388000000000000000,"z":-25900000000000000000}},"30011404":{"solarSystemId":30011404,"solarSystemName":"A.3N7.9GK","location":{"x":-8510000000000000000,"y":-1110000000000000000,"z":-24200000000000000000}},"30011405":{"solarSystemId":30011405,"solarSystemName":"S.6B7.JVL","location":{"x":-8870000000000000000,"y":-527000000000000000,"z":-25700000000000000000}},"30011406":{"solarSystemId":30011406,"solarSystemName":"I.3K7.9CG","location":{"x":-9160000000000000000,"y":-847000000000000000,"z":-25200000000000000000}},"30011407":{"solarSystemId":30011407,"solarSystemName":"T.MJ6.QF7","location":{"x":-7840000000000000000,"y":-277000000000000000,"z":-26200000000000000000}},"30011408":{"solarSystemId":30011408,"solarSystemName":"N.SN7.W11","location":{"x":-8510000000000000000,"y":-1220000000000000000,"z":-24600000000000000000}},"30011409":{"solarSystemId":30011409,"solarSystemName":"S.0G7.GFR","location":{"x":-8900000000000000000,"y":-493000000000000000,"z":-24400000000000000000}},"30011410":{"solarSystemId":30011410,"solarSystemName":"D.507.X96","location":{"x":-8080000000000000000,"y":-227000000000000000,"z":-26300000000000000000}},"30011411":{"solarSystemId":30011411,"solarSystemName":"D.2X9.FGV","location":{"x":-11300000000000000000,"y":-711000000000000000,"z":-27500000000000000000}},"30011412":{"solarSystemId":30011412,"solarSystemName":"S.NN9.T41","location":{"x":-10800000000000000000,"y":-1310000000000000000,"z":-27200000000000000000}},"30011413":{"solarSystemId":30011413,"solarSystemName":"D.GG9.711","location":{"x":-11200000000000000000,"y":-1200000000000000000,"z":-27500000000000000000}},"30011414":{"solarSystemId":30011414,"solarSystemName":"N.MM9.JZC","location":{"x":-11000000000000000000,"y":-609000000000000000,"z":-27800000000000000000}},"30011415":{"solarSystemId":30011415,"solarSystemName":"A.HL9.SJW","location":{"x":-10900000000000000000,"y":-1070000000000000000,"z":-27700000000000000000}},"30011416":{"solarSystemId":30011416,"solarSystemName":"A.1X9.211","location":{"x":-11300000000000000000,"y":-1190000000000000000,"z":-27100000000000000000}},"30011417":{"solarSystemId":30011417,"solarSystemName":"I.0L8.HKM","location":{"x":-9730000000000000000,"y":-647000000000000000,"z":-27000000000000000000}},"30011418":{"solarSystemId":30011418,"solarSystemName":"U.1Z8.8GR","location":{"x":-10200000000000000000,"y":-495000000000000000,"z":-27800000000000000000}},"30011419":{"solarSystemId":30011419,"solarSystemName":"A.7K8.LBL","location":{"x":-10300000000000000000,"y":-530000000000000000,"z":-26800000000000000000}},"30011420":{"solarSystemId":30011420,"solarSystemName":"I.LV8.MQM","location":{"x":-9920000000000000000,"y":-636000000000000000,"z":-27200000000000000000}},"30011421":{"solarSystemId":30011421,"solarSystemName":"U.YD9.ZKG","location":{"x":-10900000000000000000,"y":-863000000000000000,"z":-27200000000000000000}},"30011422":{"solarSystemId":30011422,"solarSystemName":"R.CW8.CXL","location":{"x":-10300000000000000000,"y":-534000000000000000,"z":-27300000000000000000}},"30011423":{"solarSystemId":30011423,"solarSystemName":"I.S09.M1C","location":{"x":-10400000000000000000,"y":-578000000000000000,"z":-24000000000000000000}},"30011424":{"solarSystemId":30011424,"solarSystemName":"A.HRS.KZS","location":{"x":-12000000000000000000,"y":-393000000000000000,"z":-24000000000000000000}},"30011425":{"solarSystemId":30011425,"solarSystemName":"L.NTS.NP9","location":{"x":-11900000000000000000,"y":-345000000000000000,"z":-23500000000000000000}},"30011426":{"solarSystemId":30011426,"solarSystemName":"N.WD8.S51","location":{"x":-9800000000000000000,"y":-1340000000000000000,"z":-23000000000000000000}},"30011427":{"solarSystemId":30011427,"solarSystemName":"H.7Z8.S6R","location":{"x":-10200000000000000000,"y":-476000000000000000,"z":-23800000000000000000}},"30011428":{"solarSystemId":30011428,"solarSystemName":"R.SY8.G9V","location":{"x":-10200000000000000000,"y":-696000000000000000,"z":-22100000000000000000}},"30011429":{"solarSystemId":30011429,"solarSystemName":"N.RR8.P8Q","location":{"x":-9710000000000000000,"y":-730000000000000000,"z":-22900000000000000000}},"30011430":{"solarSystemId":30011430,"solarSystemName":"S.47T.8G7","location":{"x":-12900000000000000000,"y":278000000000000000,"z":-23300000000000000000}},"30011431":{"solarSystemId":30011431,"solarSystemName":"U.4XS.8P1","location":{"x":-12500000000000000000,"y":56600000000000000,"z":-23600000000000000000}},"30011432":{"solarSystemId":30011432,"solarSystemName":"I.8RT.SR7","location":{"x":-13200000000000000000,"y":-267000000000000000,"z":-24300000000000000000}},"30011433":{"solarSystemId":30011433,"solarSystemName":"I.P0T.H2P","location":{"x":-12700000000000000000,"y":-652000000000000000,"z":-24000000000000000000}},"30011434":{"solarSystemId":30011434,"solarSystemName":"Virtue","location":{"x":-12600000000000000000,"y":-394000000000000000,"z":-24300000000000000000}},"30011435":{"solarSystemId":30011435,"solarSystemName":"S.61T.NDR","location":{"x":-12700000000000000000,"y":-486000000000000000,"z":-23800000000000000000}},"30011436":{"solarSystemId":30011436,"solarSystemName":"U.75T.3SS","location":{"x":-12900000000000000000,"y":-372000000000000000,"z":-22900000000000000000}},"30011437":{"solarSystemId":30011437,"solarSystemName":"L.E7T.01D","location":{"x":-13000000000000000000,"y":-542000000000000000,"z":-26300000000000000000}},"30011438":{"solarSystemId":30011438,"solarSystemName":"S.N8N.DN1","location":{"x":-14100000000000000000,"y":-1600000000000000000,"z":-25800000000000000000}},"30011439":{"solarSystemId":30011439,"solarSystemName":"R.T5S.9BC","location":{"x":-11700000000000000000,"y":-602000000000000000,"z":-26500000000000000000}},"30011440":{"solarSystemId":30011440,"solarSystemName":"T.7ES.XQ7","location":{"x":-12700000000000000000,"y":-276000000000000000,"z":-26500000000000000000}},"30011441":{"solarSystemId":30011441,"solarSystemName":"N.LVN.Z9C","location":{"x":-14500000000000000000,"y":-588000000000000000,"z":-27500000000000000000}},"30011442":{"solarSystemId":30011442,"solarSystemName":"E.2DT.DHM","location":{"x":-13200000000000000000,"y":-640000000000000000,"z":-26300000000000000000}},"30011443":{"solarSystemId":30011443,"solarSystemName":"A.7HS.T11","location":{"x":-12400000000000000000,"y":-1200000000000000000,"z":-24900000000000000000}},"30011444":{"solarSystemId":30011444,"solarSystemName":"E.G1T.9TH","location":{"x":-12700000000000000000,"y":-877000000000000000,"z":-25300000000000000000}},"30011445":{"solarSystemId":30011445,"solarSystemName":"L.JGN.528","location":{"x":-14700000000000000000,"y":-291000000000000000,"z":-27500000000000000000}},"30011446":{"solarSystemId":30011446,"solarSystemName":"T.34S.KHL","location":{"x":-11700000000000000000,"y":-532000000000000000,"z":-26200000000000000000}},"30011447":{"solarSystemId":30011447,"solarSystemName":"R.R3S.M4B","location":{"x":-11700000000000000000,"y":-798000000000000000,"z":-24300000000000000000}},"30011448":{"solarSystemId":30011448,"solarSystemName":"T.XG8.72C","location":{"x":-10100000000000000000,"y":-579000000000000000,"z":-24900000000000000000}},"30011449":{"solarSystemId":30011449,"solarSystemName":"L.P79.HMC","location":{"x":-10600000000000000000,"y":-596000000000000000,"z":-24400000000000000000}},"30011450":{"solarSystemId":30011450,"solarSystemName":"L.BJ8.33H","location":{"x":-10100000000000000000,"y":-868000000000000000,"z":-24700000000000000000}},"30011451":{"solarSystemId":30011451,"solarSystemName":"U.TP9.WWP","location":{"x":-11000000000000000000,"y":-682000000000000000,"z":-25300000000000000000}},"30011452":{"solarSystemId":30011452,"solarSystemName":"I.PP8.KH2","location":{"x":-9890000000000000000,"y":-100000000000000000,"z":-25400000000000000000}},"30011453":{"solarSystemId":30011453,"solarSystemName":"Y:22EE","location":{"x":-14200000000000000000,"y":6320000000000000000,"z":-2620000000000000000}},"30011454":{"solarSystemId":30011454,"solarSystemName":"M:2IKI","location":{"x":-15000000000000000000,"y":5340000000000000000,"z":-4810000000000000000}},"30011455":{"solarSystemId":30011455,"solarSystemName":"P:37NR","location":{"x":-15000000000000000000,"y":4380000000000000000,"z":-2030000000000000000}},"30011456":{"solarSystemId":30011456,"solarSystemName":"M:2509","location":{"x":-13800000000000000000,"y":4770000000000000000,"z":-2280000000000000000}},"30011457":{"solarSystemId":30011457,"solarSystemName":"F:1887","location":{"x":-13800000000000000000,"y":7110000000000000000,"z":-3370000000000000000}},"30011458":{"solarSystemId":30011458,"solarSystemName":"Z:2ST3","location":{"x":-10600000000000000000,"y":11600000000000000000,"z":-5430000000000000000}},"30011459":{"solarSystemId":30011459,"solarSystemName":"H:3O3S","location":{"x":-10600000000000000000,"y":8260000000000000000,"z":-6620000000000000000}},"30011460":{"solarSystemId":30011460,"solarSystemName":"Q:1RNS","location":{"x":-10200000000000000000,"y":8820000000000000000,"z":-3890000000000000000}},"30011461":{"solarSystemId":30011461,"solarSystemName":"P:202N","location":{"x":-10800000000000000000,"y":8580000000000000000,"z":-2830000000000000000}},"30011462":{"solarSystemId":30011462,"solarSystemName":"Y:14AR","location":{"x":-13900000000000000000,"y":9810000000000000000,"z":-5120000000000000000}},"30011463":{"solarSystemId":30011463,"solarSystemName":"F:2256","location":{"x":-12900000000000000000,"y":9400000000000000000,"z":-1720000000000000000}},"30011464":{"solarSystemId":30011464,"solarSystemName":"M:I5EL","location":{"x":-12100000000000000000,"y":9440000000000000000,"z":-2320000000000000000}},"30011465":{"solarSystemId":30011465,"solarSystemName":"Q:17AI","location":{"x":-13300000000000000000,"y":9620000000000000000,"z":-2380000000000000000}},"30011466":{"solarSystemId":30011466,"solarSystemName":"H:2222","location":{"x":-13400000000000000000,"y":8540000000000000000,"z":-2390000000000000000}},"30011467":{"solarSystemId":30011467,"solarSystemName":"M:1NOK","location":{"x":-14000000000000000000,"y":9020000000000000000,"z":-1400000000000000000}},"30011468":{"solarSystemId":30011468,"solarSystemName":"D:NS24","location":{"x":-13100000000000000000,"y":9580000000000000000,"z":-1980000000000000000}},"30011469":{"solarSystemId":30011469,"solarSystemName":"Z:25SV","location":{"x":-16500000000000000000,"y":8590000000000000000,"z":-3390000000000000000}},"30011470":{"solarSystemId":30011470,"solarSystemName":"D:2KR4","location":{"x":-16500000000000000000,"y":4980000000000000000,"z":-745000000000000000}},"30011471":{"solarSystemId":30011471,"solarSystemName":"Y:515S","location":{"x":-16300000000000000000,"y":6820000000000000000,"z":-1760000000000000000}},"30011472":{"solarSystemId":30011472,"solarSystemName":"J:3472","location":{"x":-15000000000000000000,"y":7510000000000000000,"z":-1500000000000000000}},"30011473":{"solarSystemId":30011473,"solarSystemName":"Y:14KI","location":{"x":-16400000000000000000,"y":6330000000000000000,"z":-1620000000000000000}},"30011474":{"solarSystemId":30011474,"solarSystemName":"B:L2EL","location":{"x":-15600000000000000000,"y":6550000000000000000,"z":-866000000000000000}},"30011475":{"solarSystemId":30011475,"solarSystemName":"Q:2A0O","location":{"x":-13000000000000000000,"y":8770000000000000000,"z":-2820000000000000000}},"30011476":{"solarSystemId":30011476,"solarSystemName":"U:1LTE","location":{"x":-13500000000000000000,"y":7970000000000000000,"z":-3080000000000000000}},"30011477":{"solarSystemId":30011477,"solarSystemName":"J:2903","location":{"x":-12800000000000000000,"y":7910000000000000000,"z":-3450000000000000000}},"30011478":{"solarSystemId":30011478,"solarSystemName":"D:1VO5","location":{"x":-12800000000000000000,"y":8140000000000000000,"z":-3870000000000000000}},"30011479":{"solarSystemId":30011479,"solarSystemName":"B:2O05","location":{"x":-12100000000000000000,"y":7480000000000000000,"z":-3630000000000000000}},"30011480":{"solarSystemId":30011480,"solarSystemName":"M:2R0S","location":{"x":-14000000000000000000,"y":7980000000000000000,"z":-7430000000000000000}},"30011481":{"solarSystemId":30011481,"solarSystemName":"Y:2E8E","location":{"x":-14100000000000000000,"y":8940000000000000000,"z":-5910000000000000000}},"30011482":{"solarSystemId":30011482,"solarSystemName":"J:33O0","location":{"x":-13700000000000000000,"y":7260000000000000000,"z":-4160000000000000000}},"30011483":{"solarSystemId":30011483,"solarSystemName":"F:32TO","location":{"x":-13600000000000000000,"y":8760000000000000000,"z":-3020000000000000000}},"30011484":{"solarSystemId":30011484,"solarSystemName":"H:OV9N","location":{"x":-14400000000000000000,"y":6300000000000000000,"z":-6270000000000000000}},"30011485":{"solarSystemId":30011485,"solarSystemName":"Y:3RTT","location":{"x":-13200000000000000000,"y":7850000000000000000,"z":-8700000000000000000}},"30011486":{"solarSystemId":30011486,"solarSystemName":"Q:346E","location":{"x":-12000000000000000000,"y":5830000000000000000,"z":-6050000000000000000}},"30011487":{"solarSystemId":30011487,"solarSystemName":"D:2N3N","location":{"x":-10700000000000000000,"y":6980000000000000000,"z":-6270000000000000000}},"30011488":{"solarSystemId":30011488,"solarSystemName":"Z:3VOO","location":{"x":-12500000000000000000,"y":6180000000000000000,"z":-5950000000000000000}},"30011489":{"solarSystemId":30011489,"solarSystemName":"B:3NK3","location":{"x":-12600000000000000000,"y":6690000000000000000,"z":-9330000000000000000}},"30011490":{"solarSystemId":30011490,"solarSystemName":"L.C51.FBD","location":{"x":-1350000000000000000,"y":-566000000000000000,"z":-29500000000000000000}},"30011491":{"solarSystemId":30011491,"solarSystemName":"L.C31.CH1","location":{"x":-1280000000000000000,"y":-63600000000000000,"z":-28800000000000000000}},"30011492":{"solarSystemId":30011492,"solarSystemName":"H.TK1.LTS","location":{"x":-2250000000000000000,"y":-373000000000000000,"z":-29900000000000000000}},"30011493":{"solarSystemId":30011493,"solarSystemName":"S.35Y.SD7","location":{"x":-979000000000000000,"y":-269000000000000000,"z":-28900000000000000000}},"30011494":{"solarSystemId":30011494,"solarSystemName":"N.W32.RNT","location":{"x":-2450000000000000000,"y":-410000000000000000,"z":-29800000000000000000}},"30011495":{"solarSystemId":30011495,"solarSystemName":"E.J62.PV3","location":{"x":-2550000000000000000,"y":-130000000000000000,"z":-30100000000000000000}},"30011496":{"solarSystemId":30011496,"solarSystemName":"D.LC1.M5R","location":{"x":-1750000000000000000,"y":-475000000000000000,"z":-30600000000000000000}},"30011497":{"solarSystemId":30011497,"solarSystemName":"N.G12.G3M","location":{"x":-2370000000000000000,"y":-617000000000000000,"z":-30100000000000000000}},"30011498":{"solarSystemId":30011498,"solarSystemName":"T.NQ3.PV5","location":{"x":-4190000000000000000,"y":-202000000000000000,"z":-28500000000000000000}},"30011499":{"solarSystemId":30011499,"solarSystemName":"E.9W2.663","location":{"x":-3360000000000000000,"y":-115000000000000000,"z":-29000000000000000000}},"30011500":{"solarSystemId":30011500,"solarSystemName":"H.3Y4.Q6J","location":{"x":-5590000000000000000,"y":-908000000000000000,"z":-28300000000000000000}},"30011501":{"solarSystemId":30011501,"solarSystemName":"I.5J2.JE2","location":{"x":-3210000000000000000,"y":-108000000000000000,"z":-28700000000000000000}},"30011502":{"solarSystemId":30011502,"solarSystemName":"Strife","location":{"x":-4400000000000000000,"y":-609000000000000000,"z":-28700000000000000000}},"30011503":{"solarSystemId":30011503,"solarSystemName":"S.9G4.N8L","location":{"x":-5450000000000000000,"y":-514000000000000000,"z":-28800000000000000000}},"30011504":{"solarSystemId":30011504,"solarSystemName":"I.7R3.811","location":{"x":-3940000000000000000,"y":-1200000000000000000,"z":-27900000000000000000}},"30011505":{"solarSystemId":30011505,"solarSystemName":"A.XV2.Z1Y","location":{"x":-3020000000000000000,"y":-975000000000000000,"z":-28900000000000000000}},"30011506":{"solarSystemId":30011506,"solarSystemName":"N.PN9.PLS","location":{"x":-338000000000000000,"y":-377000000000000000,"z":-30400000000000000000}},"30011507":{"solarSystemId":30011507,"solarSystemName":"A.C37.WZF","location":{"x":256000000000000000,"y":-789000000000000000,"z":-30400000000000000000}},"30011508":{"solarSystemId":30011508,"solarSystemName":"S.P62.YS6","location":{"x":2540000000000000000,"y":228000000000000000,"z":-28500000000000000000}},"30011509":{"solarSystemId":30011509,"solarSystemName":"I.4RN.GE2","location":{"x":447000000000000000,"y":108000000000000000,"z":-29700000000000000000}},"30011510":{"solarSystemId":30011510,"solarSystemName":"I.T51.FJ3","location":{"x":1350000000000000000,"y":137000000000000000,"z":-29500000000000000000}},"30011511":{"solarSystemId":30011511,"solarSystemName":"I.YM2.89E","location":{"x":-92200000000000000,"y":-1130000000000000000,"z":-30700000000000000000}},"30011512":{"solarSystemId":30011512,"solarSystemName":"R.975.6C8","location":{"x":-6030000000000000000,"y":-306000000000000000,"z":-27700000000000000000}},"30011513":{"solarSystemId":30011513,"solarSystemName":"R.Q45.6F5","location":{"x":-5930000000000000000,"y":-204000000000000000,"z":-28700000000000000000}},"30011514":{"solarSystemId":30011514,"solarSystemName":"D.S55.FMR","location":{"x":-5960000000000000000,"y":-488000000000000000,"z":-28800000000000000000}},"30011515":{"solarSystemId":30011515,"solarSystemName":"T.NS5.K4D","location":{"x":-6140000000000000000,"y":-546000000000000000,"z":-28500000000000000000}},"30011516":{"solarSystemId":30011516,"solarSystemName":"E.0X4.JX6","location":{"x":-5550000000000000000,"y":-246000000000000000,"z":-27100000000000000000}},"30011517":{"solarSystemId":30011517,"solarSystemName":"A.145.5T3","location":{"x":-5910000000000000000,"y":-121000000000000000,"z":-28600000000000000000}},"30011518":{"solarSystemId":30011518,"solarSystemName":"H.4R5.MN2","location":{"x":-6240000000000000000,"y":-86200000000000000,"z":-26200000000000000000}},"30011519":{"solarSystemId":30011519,"solarSystemName":"D.BN6.Z6F","location":{"x":-7380000000000000000,"y":-764000000000000000,"z":-27300000000000000000}},"30011520":{"solarSystemId":30011520,"solarSystemName":"H.3N5.162","location":{"x":-6200000000000000000,"y":-78900000000000000,"z":-26600000000000000000}},"30011521":{"solarSystemId":30011521,"solarSystemName":"I.XZ6.FMT","location":{"x":-7960000000000000000,"y":-13000000000000000,"z":-26900000000000000000}},"30011522":{"solarSystemId":30011522,"solarSystemName":"D.CR5.W7Y","location":{"x":-6250000000000000000,"y":30700000000000000,"z":-26500000000000000000}},"30011523":{"solarSystemId":30011523,"solarSystemName":"H.C65.FYP","location":{"x":-6000000000000000000,"y":-21200000000000000,"z":-26800000000000000000}},"30011524":{"solarSystemId":30011524,"solarSystemName":"L.XC4.29Q","location":{"x":-163000000000000000,"y":-731000000000000000,"z":-31100000000000000000}},"30011525":{"solarSystemId":30011525,"solarSystemName":"D.DP1.F0Z","location":{"x":1820000000000000000,"y":-1010000000000000000,"z":-32900000000000000000}},"30011526":{"solarSystemId":30011526,"solarSystemName":"I.MX9.V51","location":{"x":354000000000000000,"y":-1360000000000000000,"z":-31800000000000000000}},"30011527":{"solarSystemId":30011527,"solarSystemName":"H.L32.6GV","location":{"x":-76000000000000000,"y":-711000000000000000,"z":-31600000000000000000}},"30011528":{"solarSystemId":30011528,"solarSystemName":"N.SHS.VRQ","location":{"x":-388000000000000000,"y":-736000000000000000,"z":-33000000000000000000}},"30011529":{"solarSystemId":30011529,"solarSystemName":"T.6LL.H2H","location":{"x":-520000000000000000,"y":-868000000000000000,"z":-30300000000000000000}},"30011530":{"solarSystemId":30011530,"solarSystemName":"H.2P1.YN1","location":{"x":-1800000000000000000,"y":-1620000000000000000,"z":-31900000000000000000}},"30011531":{"solarSystemId":30011531,"solarSystemName":"H.WY1.Y1V","location":{"x":-2160000000000000000,"y":-687000000000000000,"z":-31800000000000000000}},"30011532":{"solarSystemId":30011532,"solarSystemName":"R.BM1.38Q","location":{"x":-1790000000000000000,"y":-730000000000000000,"z":-31700000000000000000}},"30011533":{"solarSystemId":30011533,"solarSystemName":"S.8B1.BKL","location":{"x":-1960000000000000000,"y":-539000000000000000,"z":-30900000000000000000}},"30011534":{"solarSystemId":30011534,"solarSystemName":"B:34TK","location":{"x":-11000000000000000000,"y":603000000000000000,"z":-6990000000000000000}},"30011535":{"solarSystemId":30011535,"solarSystemName":"Y:2AE0","location":{"x":-11100000000000000000,"y":512000000000000000,"z":-7180000000000000000}},"30011536":{"solarSystemId":30011536,"solarSystemName":"J:257I","location":{"x":-11100000000000000000,"y":599000000000000000,"z":-7100000000000000000}},"30011537":{"solarSystemId":30011537,"solarSystemName":"Z:2N38","location":{"x":-11000000000000000000,"y":553000000000000000,"z":-7030000000000000000}},"30011538":{"solarSystemId":30011538,"solarSystemName":"G:2I8I","location":{"x":-11000000000000000000,"y":654000000000000000,"z":-7100000000000000000}},"30011539":{"solarSystemId":30011539,"solarSystemName":"B:2N55","location":{"x":-11000000000000000000,"y":539000000000000000,"z":-7060000000000000000}},"30011540":{"solarSystemId":30011540,"solarSystemName":"H:25R4","location":{"x":-11100000000000000000,"y":630000000000000000,"z":-7230000000000000000}},"30011541":{"solarSystemId":30011541,"solarSystemName":"B:1T45","location":{"x":-11000000000000000000,"y":509000000000000000,"z":-7180000000000000000}},"30011542":{"solarSystemId":30011542,"solarSystemName":"F:24T9","location":{"x":-11200000000000000000,"y":502000000000000000,"z":-7170000000000000000}},"30011543":{"solarSystemId":30011543,"solarSystemName":"B:1E49","location":{"x":-11200000000000000000,"y":578000000000000000,"z":-7060000000000000000}},"30011544":{"solarSystemId":30011544,"solarSystemName":"J:1ET9","location":{"x":-11000000000000000000,"y":555000000000000000,"z":-7210000000000000000}},"30011545":{"solarSystemId":30011545,"solarSystemName":"U:N8L0","location":{"x":-11000000000000000000,"y":544000000000000000,"z":-7210000000000000000}},"30011546":{"solarSystemId":30011546,"solarSystemName":"H:3298","location":{"x":-11100000000000000000,"y":589000000000000000,"z":-7060000000000000000}},"30011547":{"solarSystemId":30011547,"solarSystemName":"P:2IO4","location":{"x":-11200000000000000000,"y":693000000000000000,"z":-7180000000000000000}},"30011548":{"solarSystemId":30011548,"solarSystemName":"D:2N5S","location":{"x":-11200000000000000000,"y":733000000000000000,"z":-7110000000000000000}},"30011549":{"solarSystemId":30011549,"solarSystemName":"H:34RS","location":{"x":-11000000000000000000,"y":671000000000000000,"z":-7100000000000000000}},"30011550":{"solarSystemId":30011550,"solarSystemName":"Z:22L3","location":{"x":-11200000000000000000,"y":569000000000000000,"z":-7180000000000000000}},"30011551":{"solarSystemId":30011551,"solarSystemName":"B:28LO","location":{"x":-11000000000000000000,"y":559000000000000000,"z":-7210000000000000000}},"30011552":{"solarSystemId":30011552,"solarSystemName":"H:2L6K","location":{"x":-11100000000000000000,"y":606000000000000000,"z":-7070000000000000000}},"30011553":{"solarSystemId":30011553,"solarSystemName":"Z:2660","location":{"x":-11100000000000000000,"y":507000000000000000,"z":-7210000000000000000}},"30011554":{"solarSystemId":30011554,"solarSystemName":"U:25IL","location":{"x":-11000000000000000000,"y":585000000000000000,"z":-7080000000000000000}},"30011555":{"solarSystemId":30011555,"solarSystemName":"H:3467","location":{"x":-10800000000000000000,"y":850000000000000000,"z":-7140000000000000000}},"30011556":{"solarSystemId":30011556,"solarSystemName":"G:2SLK","location":{"x":-10700000000000000000,"y":907000000000000000,"z":-7180000000000000000}},"30011557":{"solarSystemId":30011557,"solarSystemName":"Z:25EI","location":{"x":-10800000000000000000,"y":802000000000000000,"z":-7250000000000000000}},"30011558":{"solarSystemId":30011558,"solarSystemName":"Z:32V9","location":{"x":-11100000000000000000,"y":768000000000000000,"z":-7270000000000000000}},"30011559":{"solarSystemId":30011559,"solarSystemName":"F:272L","location":{"x":-11000000000000000000,"y":724000000000000000,"z":-7390000000000000000}},"30011560":{"solarSystemId":30011560,"solarSystemName":"P:2L8K","location":{"x":-11100000000000000000,"y":745000000000000000,"z":-7230000000000000000}},"30011561":{"solarSystemId":30011561,"solarSystemName":"H:26OE","location":{"x":-10800000000000000000,"y":831000000000000000,"z":-7170000000000000000}},"30011562":{"solarSystemId":30011562,"solarSystemName":"Y:22A5","location":{"x":-10800000000000000000,"y":716000000000000000,"z":-7270000000000000000}},"30011563":{"solarSystemId":30011563,"solarSystemName":"G:2O87","location":{"x":-11000000000000000000,"y":823000000000000000,"z":-7450000000000000000}},"30011564":{"solarSystemId":30011564,"solarSystemName":"J:23N1","location":{"x":-10900000000000000000,"y":853000000000000000,"z":-7470000000000000000}},"30011565":{"solarSystemId":30011565,"solarSystemName":"P:282N","location":{"x":-10900000000000000000,"y":851000000000000000,"z":-7100000000000000000}},"30011566":{"solarSystemId":30011566,"solarSystemName":"D:2NS4","location":{"x":-10900000000000000000,"y":974000000000000000,"z":-7280000000000000000}},"30011567":{"solarSystemId":30011567,"solarSystemName":"Z:32O0","location":{"x":-11000000000000000000,"y":787000000000000000,"z":-7250000000000000000}},"30011568":{"solarSystemId":30011568,"solarSystemName":"Z:3027","location":{"x":-10800000000000000000,"y":777000000000000000,"z":-7060000000000000000}},"30011569":{"solarSystemId":30011569,"solarSystemName":"D:2NE4","location":{"x":-10700000000000000000,"y":1110000000000000000,"z":-7210000000000000000}},"30011570":{"solarSystemId":30011570,"solarSystemName":"P:3065","location":{"x":-10800000000000000000,"y":734000000000000000,"z":-7240000000000000000}},"30011571":{"solarSystemId":30011571,"solarSystemName":"D:2AK1","location":{"x":-11000000000000000000,"y":956000000000000000,"z":-7270000000000000000}},"30011572":{"solarSystemId":30011572,"solarSystemName":"G:2RIL","location":{"x":-10900000000000000000,"y":707000000000000000,"z":-7440000000000000000}},"30011573":{"solarSystemId":30011573,"solarSystemName":"Z:3IET","location":{"x":-9410000000000000000,"y":1600000000000000000,"z":-5490000000000000000}},"30011574":{"solarSystemId":30011574,"solarSystemName":"U:2VA1","location":{"x":-10700000000000000000,"y":784000000000000000,"z":-4630000000000000000}},"30011575":{"solarSystemId":30011575,"solarSystemName":"H:1TV3","location":{"x":-9480000000000000000,"y":562000000000000000,"z":-5850000000000000000}},"30011576":{"solarSystemId":30011576,"solarSystemName":"H:15KL","location":{"x":-10300000000000000000,"y":554000000000000000,"z":-4660000000000000000}},"30011577":{"solarSystemId":30011577,"solarSystemName":"Z:IAV4","location":{"x":-9180000000000000000,"y":788000000000000000,"z":-5230000000000000000}},"30011578":{"solarSystemId":30011578,"solarSystemName":"F:2T6E","location":{"x":-10200000000000000000,"y":1510000000000000000,"z":-5110000000000000000}},"30011579":{"solarSystemId":30011579,"solarSystemName":"U:23O5","location":{"x":-10600000000000000000,"y":382000000000000000,"z":-5040000000000000000}},"30011580":{"solarSystemId":30011580,"solarSystemName":"Z:1KOR","location":{"x":-9440000000000000000,"y":670000000000000000,"z":-5650000000000000000}},"30011581":{"solarSystemId":30011581,"solarSystemName":"M:LT5K","location":{"x":-10600000000000000000,"y":228000000000000000,"z":-5450000000000000000}},"30011582":{"solarSystemId":30011582,"solarSystemName":"Y:1N98","location":{"x":-10400000000000000000,"y":514000000000000000,"z":-5760000000000000000}},"30011583":{"solarSystemId":30011583,"solarSystemName":"U:S0K0","location":{"x":-9390000000000000000,"y":367000000000000000,"z":-6200000000000000000}},"30011584":{"solarSystemId":30011584,"solarSystemName":"Q:1S20","location":{"x":-10200000000000000000,"y":200000000000000000,"z":-5300000000000000000}},"30011585":{"solarSystemId":30011585,"solarSystemName":"U:1S0N","location":{"x":-9030000000000000000,"y":668000000000000000,"z":-5570000000000000000}},"30011586":{"solarSystemId":30011586,"solarSystemName":"H:11T6","location":{"x":-10500000000000000000,"y":543000000000000000,"z":-4650000000000000000}},"30011587":{"solarSystemId":30011587,"solarSystemName":"P:2I03","location":{"x":-10200000000000000000,"y":1050000000000000000,"z":-5430000000000000000}},"30011588":{"solarSystemId":30011588,"solarSystemName":"P:3115","location":{"x":-9820000000000000000,"y":366000000000000000,"z":-5140000000000000000}},"30011589":{"solarSystemId":30011589,"solarSystemName":"Q:258I","location":{"x":-10200000000000000000,"y":153000000000000000,"z":-5710000000000000000}},"30011590":{"solarSystemId":30011590,"solarSystemName":"U:NRN4","location":{"x":-10400000000000000000,"y":401000000000000000,"z":-5080000000000000000}},"30011591":{"solarSystemId":30011591,"solarSystemName":"B:1O7O","location":{"x":-10200000000000000000,"y":422000000000000000,"z":-5610000000000000000}},"30011592":{"solarSystemId":30011592,"solarSystemName":"Z:1N11","location":{"x":-9980000000000000000,"y":251000000000000000,"z":-4990000000000000000}},"30011593":{"solarSystemId":30011593,"solarSystemName":"D:32OI","location":{"x":-10200000000000000000,"y":-713000000000000000,"z":-5730000000000000000}},"30011594":{"solarSystemId":30011594,"solarSystemName":"M:2N36","location":{"x":-11000000000000000000,"y":-1060000000000000000,"z":-7010000000000000000}},"30011595":{"solarSystemId":30011595,"solarSystemName":"G:3247","location":{"x":-10600000000000000000,"y":-359000000000000000,"z":-6420000000000000000}},"30011596":{"solarSystemId":30011596,"solarSystemName":"F:VA9V","location":{"x":-10800000000000000000,"y":-2060000000000000000,"z":-5600000000000000000}},"30011597":{"solarSystemId":30011597,"solarSystemName":"M:3237","location":{"x":-10300000000000000000,"y":-183000000000000000,"z":-6570000000000000000}},"30011598":{"solarSystemId":30011598,"solarSystemName":"Y:2L9S","location":{"x":-9810000000000000000,"y":-849000000000000000,"z":-6500000000000000000}},"30011599":{"solarSystemId":30011599,"solarSystemName":"J:1LLT","location":{"x":-9920000000000000000,"y":-758000000000000000,"z":-5850000000000000000}},"30011600":{"solarSystemId":30011600,"solarSystemName":"F:22T9","location":{"x":-10400000000000000000,"y":-596000000000000000,"z":-5860000000000000000}},"30011601":{"solarSystemId":30011601,"solarSystemName":"P:1849","location":{"x":-10300000000000000000,"y":-1270000000000000000,"z":-7030000000000000000}},"30011602":{"solarSystemId":30011602,"solarSystemName":"Z:1637","location":{"x":-10700000000000000000,"y":-476000000000000000,"z":-6960000000000000000}},"30011603":{"solarSystemId":30011603,"solarSystemName":"D:1616","location":{"x":-11300000000000000000,"y":-628000000000000000,"z":-7090000000000000000}},"30011604":{"solarSystemId":30011604,"solarSystemName":"J:235I","location":{"x":-10400000000000000000,"y":-1330000000000000000,"z":-6470000000000000000}},"30011605":{"solarSystemId":30011605,"solarSystemName":"U:2R15","location":{"x":-10100000000000000000,"y":-1050000000000000000,"z":-6580000000000000000}},"30011606":{"solarSystemId":30011606,"solarSystemName":"F:27RA","location":{"x":-10600000000000000000,"y":-220000000000000000,"z":-6770000000000000000}},"30011607":{"solarSystemId":30011607,"solarSystemName":"J:2V7V","location":{"x":-11100000000000000000,"y":-607000000000000000,"z":-6860000000000000000}},"30011608":{"solarSystemId":30011608,"solarSystemName":"Z:2RRE","location":{"x":-9740000000000000000,"y":-868000000000000000,"z":-5630000000000000000}},"30011609":{"solarSystemId":30011609,"solarSystemName":"P:2VI7","location":{"x":-10400000000000000000,"y":-550000000000000000,"z":-6310000000000000000}},"30011610":{"solarSystemId":30011610,"solarSystemName":"Z:2547","location":{"x":-11000000000000000000,"y":-492000000000000000,"z":-6200000000000000000}},"30011611":{"solarSystemId":30011611,"solarSystemName":"G:25A8","location":{"x":-10600000000000000000,"y":-914000000000000000,"z":-7310000000000000000}},"30011612":{"solarSystemId":30011612,"solarSystemName":"B:33VR","location":{"x":-12100000000000000000,"y":737000000000000000,"z":-6820000000000000000}},"30011613":{"solarSystemId":30011613,"solarSystemName":"D:250A","location":{"x":-11300000000000000000,"y":767000000000000000,"z":-6790000000000000000}},"30011614":{"solarSystemId":30011614,"solarSystemName":"M:2636","location":{"x":-11400000000000000000,"y":723000000000000000,"z":-7120000000000000000}},"30011615":{"solarSystemId":30011615,"solarSystemName":"D:2T28","location":{"x":-11200000000000000000,"y":448000000000000000,"z":-6990000000000000000}},"30011616":{"solarSystemId":30011616,"solarSystemName":"J:2IA4","location":{"x":-11500000000000000000,"y":698000000000000000,"z":-7080000000000000000}},"30011617":{"solarSystemId":30011617,"solarSystemName":"G:326S","location":{"x":-11100000000000000000,"y":845000000000000000,"z":-6960000000000000000}},"30011618":{"solarSystemId":30011618,"solarSystemName":"B:I5V8","location":{"x":-11300000000000000000,"y":714000000000000000,"z":-7030000000000000000}},"30011619":{"solarSystemId":30011619,"solarSystemName":"Y:1414","location":{"x":-11500000000000000000,"y":676000000000000000,"z":-6790000000000000000}},"30011620":{"solarSystemId":30011620,"solarSystemName":"M:24OE","location":{"x":-11300000000000000000,"y":488000000000000000,"z":-7130000000000000000}},"30011621":{"solarSystemId":30011621,"solarSystemName":"J:1L2V","location":{"x":-11300000000000000000,"y":456000000000000000,"z":-6960000000000000000}},"30011622":{"solarSystemId":30011622,"solarSystemName":"P:33IL","location":{"x":-12100000000000000000,"y":602000000000000000,"z":-6900000000000000000}},"30011623":{"solarSystemId":30011623,"solarSystemName":"P:1ITN","location":{"x":-11400000000000000000,"y":766000000000000000,"z":-7220000000000000000}},"30011624":{"solarSystemId":30011624,"solarSystemName":"Q:2O8E","location":{"x":-11100000000000000000,"y":504000000000000000,"z":-6970000000000000000}},"30011625":{"solarSystemId":30011625,"solarSystemName":"B:131S","location":{"x":-11700000000000000000,"y":562000000000000000,"z":-6840000000000000000}},"30011626":{"solarSystemId":30011626,"solarSystemName":"Z:24O1","location":{"x":-11500000000000000000,"y":641000000000000000,"z":-6700000000000000000}},"30011627":{"solarSystemId":30011627,"solarSystemName":"P:26LT","location":{"x":-11100000000000000000,"y":502000000000000000,"z":-6900000000000000000}},"30011628":{"solarSystemId":30011628,"solarSystemName":"Y:27ST","location":{"x":-12100000000000000000,"y":533000000000000000,"z":-6870000000000000000}},"30011629":{"solarSystemId":30011629,"solarSystemName":"G:R9I9","location":{"x":-11700000000000000000,"y":636000000000000000,"z":-6920000000000000000}},"30011630":{"solarSystemId":30011630,"solarSystemName":"G:217L","location":{"x":-11600000000000000000,"y":532000000000000000,"z":-6860000000000000000}},"30011631":{"solarSystemId":30011631,"solarSystemName":"H:27VN","location":{"x":-11300000000000000000,"y":443000000000000000,"z":-7080000000000000000}},"30011632":{"solarSystemId":30011632,"solarSystemName":"Y:2RTO","location":{"x":-11200000000000000000,"y":502000000000000000,"z":-6890000000000000000}},"30011633":{"solarSystemId":30011633,"solarSystemName":"H:28T0","location":{"x":-11300000000000000000,"y":785000000000000000,"z":-7010000000000000000}},"30011634":{"solarSystemId":30011634,"solarSystemName":"B:28RE","location":{"x":-11900000000000000000,"y":636000000000000000,"z":-6850000000000000000}},"30011635":{"solarSystemId":30011635,"solarSystemName":"B:2R22","location":{"x":-11200000000000000000,"y":586000000000000000,"z":-6980000000000000000}},"30011636":{"solarSystemId":30011636,"solarSystemName":"H:2813","location":{"x":-11400000000000000000,"y":718000000000000000,"z":-6950000000000000000}},"30011637":{"solarSystemId":30011637,"solarSystemName":"F:30AE","location":{"x":-11300000000000000000,"y":584000000000000000,"z":-7170000000000000000}},"30011638":{"solarSystemId":30011638,"solarSystemName":"Z:3E54","location":{"x":-12000000000000000000,"y":-235000000000000000,"z":-6800000000000000000}},"30011639":{"solarSystemId":30011639,"solarSystemName":"Q:38OK","location":{"x":-12200000000000000000,"y":-1280000000000000000,"z":-7520000000000000000}},"30011640":{"solarSystemId":30011640,"solarSystemName":"H:2A4S","location":{"x":-12700000000000000000,"y":-996000000000000000,"z":-7190000000000000000}},"30011641":{"solarSystemId":30011641,"solarSystemName":"Y:32NK","location":{"x":-11500000000000000000,"y":-225000000000000000,"z":-7440000000000000000}},"30011642":{"solarSystemId":30011642,"solarSystemName":"Q:26V7","location":{"x":-12200000000000000000,"y":-49200000000000000,"z":-7620000000000000000}},"30011643":{"solarSystemId":30011643,"solarSystemName":"Y:2IOL","location":{"x":-11600000000000000000,"y":-750000000000000000,"z":-7120000000000000000}},"30011644":{"solarSystemId":30011644,"solarSystemName":"P:2448","location":{"x":-12000000000000000000,"y":-785000000000000000,"z":-7520000000000000000}},"30011645":{"solarSystemId":30011645,"solarSystemName":"H:24E0","location":{"x":-11700000000000000000,"y":-389000000000000000,"z":-7680000000000000000}},"30011646":{"solarSystemId":30011646,"solarSystemName":"Z:1R94","location":{"x":-12400000000000000000,"y":-329000000000000000,"z":-6910000000000000000}},"30011647":{"solarSystemId":30011647,"solarSystemName":"M:16KI","location":{"x":-12600000000000000000,"y":-818000000000000000,"z":-8210000000000000000}},"30011648":{"solarSystemId":30011648,"solarSystemName":"F:47N5","location":{"x":-11900000000000000000,"y":-831000000000000000,"z":-7060000000000000000}},"30011649":{"solarSystemId":30011649,"solarSystemName":"B:28T6","location":{"x":-11700000000000000000,"y":-145000000000000000,"z":-7500000000000000000}},"30011650":{"solarSystemId":30011650,"solarSystemName":"J:3INA","location":{"x":-12000000000000000000,"y":-246000000000000000,"z":-8160000000000000000}},"30011651":{"solarSystemId":30011651,"solarSystemName":"G:E022","location":{"x":-12300000000000000000,"y":-733000000000000000,"z":-8060000000000000000}},"30011652":{"solarSystemId":30011652,"solarSystemName":"Z:T2LK","location":{"x":-12000000000000000000,"y":-269000000000000000,"z":-6920000000000000000}},"30011653":{"solarSystemId":30011653,"solarSystemName":"U:2AKT","location":{"x":-12500000000000000000,"y":-1200000000000000000,"z":-8330000000000000000}},"30011654":{"solarSystemId":30011654,"solarSystemName":"H:2673","location":{"x":-12600000000000000000,"y":-1250000000000000000,"z":-7350000000000000000}},"30011655":{"solarSystemId":30011655,"solarSystemName":"Y:1S60","location":{"x":-12200000000000000000,"y":-1050000000000000000,"z":-7500000000000000000}},"30011656":{"solarSystemId":30011656,"solarSystemName":"Q:LAT2","location":{"x":-13100000000000000000,"y":-1400000000000000000,"z":-7130000000000000000}},"30011657":{"solarSystemId":30011657,"solarSystemName":"B:K8I9","location":{"x":-12600000000000000000,"y":-1670000000000000000,"z":-7320000000000000000}},"30011658":{"solarSystemId":30011658,"solarSystemName":"U:22O0","location":{"x":-11400000000000000000,"y":-874000000000000000,"z":-7960000000000000000}},"30011659":{"solarSystemId":30011659,"solarSystemName":"H:24EE","location":{"x":-11800000000000000000,"y":-577000000000000000,"z":-7740000000000000000}},"30011660":{"solarSystemId":30011660,"solarSystemName":"Y:26LR","location":{"x":-10500000000000000000,"y":901000000000000000,"z":-6890000000000000000}},"30011661":{"solarSystemId":30011661,"solarSystemName":"J:233E","location":{"x":-10600000000000000000,"y":670000000000000000,"z":-7210000000000000000}},"30011662":{"solarSystemId":30011662,"solarSystemName":"Y:2744","location":{"x":-10400000000000000000,"y":964000000000000000,"z":-7220000000000000000}},"30011663":{"solarSystemId":30011663,"solarSystemName":"M:2NS7","location":{"x":-10400000000000000000,"y":944000000000000000,"z":-6880000000000000000}},"30011664":{"solarSystemId":30011664,"solarSystemName":"D:2NEV","location":{"x":-10400000000000000000,"y":590000000000000000,"z":-7030000000000000000}},"30011665":{"solarSystemId":30011665,"solarSystemName":"Z:2R6S","location":{"x":-10300000000000000000,"y":810000000000000000,"z":-7410000000000000000}},"30011666":{"solarSystemId":30011666,"solarSystemName":"M:25NS","location":{"x":-10500000000000000000,"y":653000000000000000,"z":-7410000000000000000}},"30011667":{"solarSystemId":30011667,"solarSystemName":"P:25LN","location":{"x":-10600000000000000000,"y":651000000000000000,"z":-7320000000000000000}},"30011668":{"solarSystemId":30011668,"solarSystemName":"G:3091","location":{"x":-10300000000000000000,"y":476000000000000000,"z":-7160000000000000000}},"30011669":{"solarSystemId":30011669,"solarSystemName":"U:240O","location":{"x":-10300000000000000000,"y":583000000000000000,"z":-7170000000000000000}},"30011670":{"solarSystemId":30011670,"solarSystemName":"F:2V3S","location":{"x":-10700000000000000000,"y":726000000000000000,"z":-7060000000000000000}},"30011671":{"solarSystemId":30011671,"solarSystemName":"H:2438","location":{"x":-10600000000000000000,"y":971000000000000000,"z":-7040000000000000000}},"30011672":{"solarSystemId":30011672,"solarSystemName":"D:2SS3","location":{"x":-10400000000000000000,"y":654000000000000000,"z":-7360000000000000000}},"30011673":{"solarSystemId":30011673,"solarSystemName":"B:2ES9","location":{"x":-10400000000000000000,"y":826000000000000000,"z":-7300000000000000000}},"30011674":{"solarSystemId":30011674,"solarSystemName":"Y:24A6","location":{"x":-10300000000000000000,"y":873000000000000000,"z":-7210000000000000000}},"30011675":{"solarSystemId":30011675,"solarSystemName":"U:2602","location":{"x":-10300000000000000000,"y":534000000000000000,"z":-7480000000000000000}},"30011676":{"solarSystemId":30011676,"solarSystemName":"H:2774","location":{"x":-10700000000000000000,"y":645000000000000000,"z":-7130000000000000000}},"30011677":{"solarSystemId":30011677,"solarSystemName":"M:2EA1","location":{"x":-10500000000000000000,"y":620000000000000000,"z":-6960000000000000000}},"30011678":{"solarSystemId":30011678,"solarSystemName":"J:2SRN","location":{"x":-11700000000000000000,"y":992000000000000000,"z":-6340000000000000000}},"30011679":{"solarSystemId":30011679,"solarSystemName":"D:3N6I","location":{"x":-11200000000000000000,"y":1360000000000000000,"z":-7050000000000000000}},"30011680":{"solarSystemId":30011680,"solarSystemName":"F:2R5O","location":{"x":-10600000000000000000,"y":1160000000000000000,"z":-6800000000000000000}},"30011681":{"solarSystemId":30011681,"solarSystemName":"Z:3336","location":{"x":-10300000000000000000,"y":1530000000000000000,"z":-7140000000000000000}},"30011682":{"solarSystemId":30011682,"solarSystemName":"M:33N7","location":{"x":-11400000000000000000,"y":1730000000000000000,"z":-6600000000000000000}},"30011683":{"solarSystemId":30011683,"solarSystemName":"H:2IK6","location":{"x":-11100000000000000000,"y":897000000000000000,"z":-6750000000000000000}},"30011684":{"solarSystemId":30011684,"solarSystemName":"P:2LOE","location":{"x":-10800000000000000000,"y":1740000000000000000,"z":-6780000000000000000}},"30011685":{"solarSystemId":30011685,"solarSystemName":"M:31S4","location":{"x":-11000000000000000000,"y":1440000000000000000,"z":-6060000000000000000}},"30011686":{"solarSystemId":30011686,"solarSystemName":"G:2R81","location":{"x":-12000000000000000000,"y":810000000000000000,"z":-6430000000000000000}},"30011687":{"solarSystemId":30011687,"solarSystemName":"P:V72I","location":{"x":-11000000000000000000,"y":741000000000000000,"z":-6450000000000000000}},"30011688":{"solarSystemId":30011688,"solarSystemName":"Q:1E43","location":{"x":-10400000000000000000,"y":1440000000000000000,"z":-5930000000000000000}},"30011689":{"solarSystemId":30011689,"solarSystemName":"J:24IE","location":{"x":-10900000000000000000,"y":833000000000000000,"z":-6650000000000000000}},"30011690":{"solarSystemId":30011690,"solarSystemName":"G:28I9","location":{"x":-11300000000000000000,"y":1030000000000000000,"z":-6830000000000000000}},"30011691":{"solarSystemId":30011691,"solarSystemName":"D:2V18","location":{"x":-10400000000000000000,"y":1320000000000000000,"z":-6920000000000000000}},"30011692":{"solarSystemId":30011692,"solarSystemName":"F:22L0","location":{"x":-11000000000000000000,"y":1450000000000000000,"z":-6270000000000000000}},"30011693":{"solarSystemId":30011693,"solarSystemName":"Y:2A65","location":{"x":-10700000000000000000,"y":953000000000000000,"z":-6430000000000000000}},"30011694":{"solarSystemId":30011694,"solarSystemName":"Z:2V7T","location":{"x":-11200000000000000000,"y":1100000000000000000,"z":-6880000000000000000}},"30011695":{"solarSystemId":30011695,"solarSystemName":"U:3541","location":{"x":-10900000000000000000,"y":1350000000000000000,"z":-7000000000000000000}},"30011696":{"solarSystemId":30011696,"solarSystemName":"G:2S21","location":{"x":-10800000000000000000,"y":656000000000000000,"z":-7190000000000000000}},"30011697":{"solarSystemId":30011697,"solarSystemName":"F:2LTS","location":{"x":-10900000000000000000,"y":539000000000000000,"z":-7190000000000000000}},"30011698":{"solarSystemId":30011698,"solarSystemName":"G:2ISI","location":{"x":-10900000000000000000,"y":517000000000000000,"z":-7090000000000000000}},"30011699":{"solarSystemId":30011699,"solarSystemName":"B:2L41","location":{"x":-10800000000000000000,"y":635000000000000000,"z":-7210000000000000000}},"30011700":{"solarSystemId":30011700,"solarSystemName":"D:2A91","location":{"x":-10900000000000000000,"y":776000000000000000,"z":-7040000000000000000}},"30011701":{"solarSystemId":30011701,"solarSystemName":"G:2SN0","location":{"x":-11000000000000000000,"y":642000000000000000,"z":-7210000000000000000}},"30011702":{"solarSystemId":30011702,"solarSystemName":"J:32S6","location":{"x":-10900000000000000000,"y":677000000000000000,"z":-7230000000000000000}},"30011703":{"solarSystemId":30011703,"solarSystemName":"G:2OTR","location":{"x":-10800000000000000000,"y":734000000000000000,"z":-6890000000000000000}},"30011704":{"solarSystemId":30011704,"solarSystemName":"D:2AR9","location":{"x":-10900000000000000000,"y":537000000000000000,"z":-7100000000000000000}},"30011705":{"solarSystemId":30011705,"solarSystemName":"Z:25N5","location":{"x":-10900000000000000000,"y":658000000000000000,"z":-7120000000000000000}},"30011706":{"solarSystemId":30011706,"solarSystemName":"J:2T7A","location":{"x":-10900000000000000000,"y":572000000000000000,"z":-7070000000000000000}},"30011707":{"solarSystemId":30011707,"solarSystemName":"U:29AL","location":{"x":-10900000000000000000,"y":550000000000000000,"z":-7160000000000000000}},"30011708":{"solarSystemId":30011708,"solarSystemName":"D:26IT","location":{"x":-11000000000000000000,"y":650000000000000000,"z":-7150000000000000000}},"30011709":{"solarSystemId":30011709,"solarSystemName":"B:2A9T","location":{"x":-11000000000000000000,"y":553000000000000000,"z":-7180000000000000000}},"30011710":{"solarSystemId":30011710,"solarSystemName":"U:2T62","location":{"x":-10700000000000000000,"y":612000000000000000,"z":-7120000000000000000}},"30011711":{"solarSystemId":30011711,"solarSystemName":"D:2VR1","location":{"x":-11000000000000000000,"y":618000000000000000,"z":-7250000000000000000}},"30011712":{"solarSystemId":30011712,"solarSystemName":"Q:25LT","location":{"x":-10900000000000000000,"y":666000000000000000,"z":-7170000000000000000}},"30011713":{"solarSystemId":30011713,"solarSystemName":"H:33TT","location":{"x":-10900000000000000000,"y":570000000000000000,"z":-7190000000000000000}},"30011714":{"solarSystemId":30011714,"solarSystemName":"H:2E14","location":{"x":-11000000000000000000,"y":641000000000000000,"z":-7150000000000000000}},"30011715":{"solarSystemId":30011715,"solarSystemName":"Z:2IA5","location":{"x":-10800000000000000000,"y":599000000000000000,"z":-7220000000000000000}},"30011716":{"solarSystemId":30011716,"solarSystemName":"F:2K0K","location":{"x":-10900000000000000000,"y":575000000000000000,"z":-7220000000000000000}},"30011717":{"solarSystemId":30011717,"solarSystemName":"I.LJ3.MHS","location":{"x":-4380000000000000000,"y":-388000000000000000,"z":-35000000000000000000}},"30011718":{"solarSystemId":30011718,"solarSystemName":"U.VT3.99V","location":{"x":-3880000000000000000,"y":-695000000000000000,"z":-35200000000000000000}},"30011719":{"solarSystemId":30011719,"solarSystemName":"S.S44.TFT","location":{"x":-4770000000000000000,"y":-420000000000000000,"z":-34900000000000000000}},"30011720":{"solarSystemId":30011720,"solarSystemName":"S.883.2QZ","location":{"x":-3760000000000000000,"y":-1030000000000000000,"z":-34900000000000000000}},"30011721":{"solarSystemId":30011721,"solarSystemName":"A.C32.7R6","location":{"x":-2430000000000000000,"y":-231000000000000000,"z":-34200000000000000000}},"30011722":{"solarSystemId":30011722,"solarSystemName":"R.ZPF.251","location":{"x":-778000000000000000,"y":-1340000000000000000,"z":-36200000000000000000}},"30011723":{"solarSystemId":30011723,"solarSystemName":"D.LP2.CDW","location":{"x":-2970000000000000000,"y":-1060000000000000000,"z":-34100000000000000000}},"30011724":{"solarSystemId":30011724,"solarSystemName":"R.4M3.9S7","location":{"x":-4080000000000000000,"y":-264000000000000000,"z":-34400000000000000000}},"30011725":{"solarSystemId":30011725,"solarSystemName":"L.DV3.90Y","location":{"x":-4160000000000000000,"y":-973000000000000000,"z":-33500000000000000000}},"30011726":{"solarSystemId":30011726,"solarSystemName":"A.NJ2.B95","location":{"x":-3220000000000000000,"y":-191000000000000000,"z":-33300000000000000000}},"30011727":{"solarSystemId":30011727,"solarSystemName":"I.L53.57S","location":{"x":-3650000000000000000,"y":-368000000000000000,"z":-33400000000000000000}},"30011728":{"solarSystemId":30011728,"solarSystemName":"R.3Q5.CW7","location":{"x":-6490000000000000000,"y":-285000000000000000,"z":-34200000000000000000}},"30011729":{"solarSystemId":30011729,"solarSystemName":"E.RG5.HSX","location":{"x":-6610000000000000000,"y":-949000000000000000,"z":-30900000000000000000}},"30011730":{"solarSystemId":30011730,"solarSystemName":"H.PF4.Q05","location":{"x":-5390000000000000000,"y":181000000000000000,"z":-32700000000000000000}},"30011731":{"solarSystemId":30011731,"solarSystemName":"U.JT5.9Y1","location":{"x":-6190000000000000000,"y":-66800000000000000,"z":-33800000000000000000}},"30011732":{"solarSystemId":30011732,"solarSystemName":"N.LJ5.WL1","location":{"x":-6680000000000000000,"y":-1690000000000000000,"z":-33800000000000000000}},"30011733":{"solarSystemId":30011733,"solarSystemName":"D.MN5.TMR","location":{"x":-6220000000000000000,"y":-488000000000000000,"z":-30800000000000000000}},"30011734":{"solarSystemId":30011734,"solarSystemName":"A.RJ4.6LY","location":{"x":-5530000000000000000,"y":-989000000000000000,"z":-30300000000000000000}},"30011735":{"solarSystemId":30011735,"solarSystemName":"N.KS5.4T1","location":{"x":-6160000000000000000,"y":-48600000000000000,"z":-30800000000000000000}},"30011736":{"solarSystemId":30011736,"solarSystemName":"H.EF4.5ES","location":{"x":-5400000000000000000,"y":-395000000000000000,"z":-30700000000000000000}},"30011737":{"solarSystemId":30011737,"solarSystemName":"I.DH5.5P4","location":{"x":-6650000000000000000,"y":-165000000000000000,"z":-30100000000000000000}},"30011738":{"solarSystemId":30011738,"solarSystemName":"H.WJ4.V7Q","location":{"x":-5550000000000000000,"y":-729000000000000000,"z":-30200000000000000000}},"30011739":{"solarSystemId":30011739,"solarSystemName":"E.356.F42","location":{"x":-7100000000000000000,"y":-77300000000000000,"z":-28400000000000000000}},"30011740":{"solarSystemId":30011740,"solarSystemName":"R.QZ5.WG7","location":{"x":-6800000000000000000,"y":-279000000000000000,"z":-27500000000000000000}},"30011741":{"solarSystemId":30011741,"solarSystemName":"N.QF5.ZMS","location":{"x":-6540000000000000000,"y":380000000000000000,"z":-27800000000000000000}},"30011742":{"solarSystemId":30011742,"solarSystemName":"I.Y26.CVY","location":{"x":-7020000000000000000,"y":-995000000000000000,"z":-28300000000000000000}},"30011743":{"solarSystemId":30011743,"solarSystemName":"U.TB5.VC5","location":{"x":-6570000000000000000,"y":199000000000000000,"z":-28500000000000000000}},"30011744":{"solarSystemId":30011744,"solarSystemName":"L.1S6.MPV","location":{"x":-7280000000000000000,"y":-705000000000000000,"z":-27800000000000000000}},"30011745":{"solarSystemId":30011745,"solarSystemName":"E.Q23.7N1","location":{"x":-3550000000000000000,"y":-1590000000000000000,"z":-32400000000000000000}},"30011746":{"solarSystemId":30011746,"solarSystemName":"I.LJ3.TZ9","location":{"x":-4380000000000000000,"y":-356000000000000000,"z":-31600000000000000000}},"30011747":{"solarSystemId":30011747,"solarSystemName":"N.RX4.Q3F","location":{"x":-5560000000000000000,"y":-761000000000000000,"z":-33800000000000000000}},"30011748":{"solarSystemId":30011748,"solarSystemName":"E.2N3.W7C","location":{"x":-3890000000000000000,"y":-585000000000000000,"z":-30500000000000000000}},"30011749":{"solarSystemId":30011749,"solarSystemName":"T.CP3.G72","location":{"x":-4130000000000000000,"y":-80800000000000000,"z":-30200000000000000000}},"30011750":{"solarSystemId":30011750,"solarSystemName":"N.3K2.CBD","location":{"x":-3390000000000000000,"y":-566000000000000000,"z":-30300000000000000000}},"30011751":{"solarSystemId":30011751,"solarSystemName":"N.FS5.FQC","location":{"x":-6150000000000000000,"y":-600000000000000000,"z":-29400000000000000000}},"30011752":{"solarSystemId":30011752,"solarSystemName":"D.715.019","location":{"x":-5810000000000000000,"y":-10200000000000000,"z":-29800000000000000000}},"30011753":{"solarSystemId":30011753,"solarSystemName":"R.SF5.G92","location":{"x":-6530000000000000000,"y":83000000000000000,"z":-29800000000000000000}},"30011754":{"solarSystemId":30011754,"solarSystemName":"Bulwark","location":{"x":-5480000000000000000,"y":719489000000000,"z":-29900000000000000000}},"30011755":{"solarSystemId":30011755,"solarSystemName":"E.8B5.R97","location":{"x":-6570000000000000000,"y":263000000000000000,"z":-29700000000000000000}},"30011756":{"solarSystemId":30011756,"solarSystemName":"R.XS5.BW4","location":{"x":-6150000000000000000,"y":-178000000000000000,"z":-30400000000000000000}},"30011757":{"solarSystemId":30011757,"solarSystemName":"D.1L5.2V9","location":{"x":-6270000000000000000,"y":346000000000000000,"z":-33200000000000000000}},"30011758":{"solarSystemId":30011758,"solarSystemName":"N.616.S22","location":{"x":-6960000000000000000,"y":74700000000000000,"z":-32100000000000000000}},"30011759":{"solarSystemId":30011759,"solarSystemName":"L.H85.T3V","location":{"x":-6080000000000000000,"y":-688000000000000000,"z":-31700000000000000000}},"30011760":{"solarSystemId":30011760,"solarSystemName":"I.RT6.VC1","location":{"x":-7330000000000000000,"y":-54700000000000000,"z":-31900000000000000000}},"30011761":{"solarSystemId":30011761,"solarSystemName":"D.V35.PTN","location":{"x":-5890000000000000000,"y":-445000000000000000,"z":-32300000000000000000}},"30011762":{"solarSystemId":30011762,"solarSystemName":"D:388R","location":{"x":-1700000000000000000,"y":-933000000000000000,"z":-10200000000000000000}},"30011763":{"solarSystemId":30011763,"solarSystemName":"F:1SVR","location":{"x":-1270000000000000000,"y":-635000000000000000,"z":-10700000000000000000}},"30011764":{"solarSystemId":30011764,"solarSystemName":"M:25K6","location":{"x":-1300000000000000000,"y":-859000000000000000,"z":-9970000000000000000}},"30011765":{"solarSystemId":30011765,"solarSystemName":"M:174V","location":{"x":-2890000000000000000,"y":-1300000000000000000,"z":-10500000000000000000}},"30011766":{"solarSystemId":30011766,"solarSystemName":"Y:47SR","location":{"x":-2670000000000000000,"y":-1120000000000000000,"z":-9530000000000000000}},"30011767":{"solarSystemId":30011767,"solarSystemName":"P:3E03","location":{"x":-1380000000000000000,"y":-826000000000000000,"z":-11500000000000000000}},"30011768":{"solarSystemId":30011768,"solarSystemName":"B:20K4","location":{"x":-1350000000000000000,"y":-1180000000000000000,"z":-11300000000000000000}},"30011769":{"solarSystemId":30011769,"solarSystemName":"P:1RES","location":{"x":-1180000000000000000,"y":-1230000000000000000,"z":-10400000000000000000}},"30011770":{"solarSystemId":30011770,"solarSystemName":"Y:2R55","location":{"x":-2110000000000000000,"y":-1130000000000000000,"z":-10600000000000000000}},"30011771":{"solarSystemId":30011771,"solarSystemName":"G:3TAT","location":{"x":-1790000000000000000,"y":-56700000000000000,"z":-10600000000000000000}},"30011772":{"solarSystemId":30011772,"solarSystemName":"G:2KVV","location":{"x":-2300000000000000000,"y":-102000000000000000,"z":-9800000000000000000}},"30011773":{"solarSystemId":30011773,"solarSystemName":"J:33ET","location":{"x":-1970000000000000000,"y":-984000000000000000,"z":-11900000000000000000}},"30011774":{"solarSystemId":30011774,"solarSystemName":"H:3A57","location":{"x":-1980000000000000000,"y":-288000000000000000,"z":-10100000000000000000}},"30011775":{"solarSystemId":30011775,"solarSystemName":"Z:3TKL","location":{"x":338000000000000000,"y":-911000000000000000,"z":-11500000000000000000}},"30011776":{"solarSystemId":30011776,"solarSystemName":"J:293S","location":{"x":112000000000000000,"y":-1660000000000000000,"z":-12500000000000000000}},"30011777":{"solarSystemId":30011777,"solarSystemName":"B:1VI4","location":{"x":948000000000000000,"y":-800000000000000000,"z":-11300000000000000000}},"30011778":{"solarSystemId":30011778,"solarSystemName":"G:37RN","location":{"x":36000000000000000,"y":-1200000000000000000,"z":-12800000000000000000}},"30011779":{"solarSystemId":30011779,"solarSystemName":"G:2428","location":{"x":1000000000000000000,"y":-602000000000000000,"z":-11200000000000000000}},"30011780":{"solarSystemId":30011780,"solarSystemName":"J:2E0T","location":{"x":934000000000000000,"y":-1090000000000000000,"z":-12400000000000000000}},"30011781":{"solarSystemId":30011781,"solarSystemName":"Y:34LK","location":{"x":1150000000000000000,"y":-1270000000000000000,"z":-11900000000000000000}},"30011782":{"solarSystemId":30011782,"solarSystemName":"P:1N1O","location":{"x":690000000000000000,"y":-301000000000000000,"z":-12800000000000000000}},"30011783":{"solarSystemId":30011783,"solarSystemName":"F:1840","location":{"x":431000000000000000,"y":-1270000000000000000,"z":-11800000000000000000}},"30011784":{"solarSystemId":30011784,"solarSystemName":"P:3ESR","location":{"x":301000000000000000,"y":-1670000000000000000,"z":-12700000000000000000}},"30011785":{"solarSystemId":30011785,"solarSystemName":"Z:35S2","location":{"x":235000000000000000,"y":-1200000000000000000,"z":-12800000000000000000}},"30011786":{"solarSystemId":30011786,"solarSystemName":"D:33VK","location":{"x":1220000000000000000,"y":-881000000000000000,"z":-12900000000000000000}},"30011787":{"solarSystemId":30011787,"solarSystemName":"Z:1V91","location":{"x":715000000000000000,"y":-579000000000000000,"z":-12700000000000000000}},"30011788":{"solarSystemId":30011788,"solarSystemName":"H:1OE4","location":{"x":-182000000000000000,"y":-452000000000000000,"z":-11900000000000000000}},"30011789":{"solarSystemId":30011789,"solarSystemName":"F:RKN1","location":{"x":33900000000000000,"y":1710000000000000000,"z":-11400000000000000000}},"30011790":{"solarSystemId":30011790,"solarSystemName":"Z:AL3N","location":{"x":1100000000000000000,"y":767000000000000000,"z":-11900000000000000000}},"30011791":{"solarSystemId":30011791,"solarSystemName":"Q:2OI1","location":{"x":-722000000000000000,"y":1760000000000000000,"z":-12100000000000000000}},"30011792":{"solarSystemId":30011792,"solarSystemName":"D:4S29","location":{"x":606000000000000000,"y":2160000000000000000,"z":-10800000000000000000}},"30011793":{"solarSystemId":30011793,"solarSystemName":"G:2LK0","location":{"x":2040000000000000000,"y":973000000000000000,"z":-12200000000000000000}},"30011794":{"solarSystemId":30011794,"solarSystemName":"U:1LI0","location":{"x":-496000000000000000,"y":1340000000000000000,"z":-11700000000000000000}},"30011795":{"solarSystemId":30011795,"solarSystemName":"P:VK21","location":{"x":-346000000000000000,"y":1230000000000000000,"z":-12500000000000000000}},"30011796":{"solarSystemId":30011796,"solarSystemName":"Y:1V49","location":{"x":-126000000000000000,"y":1660000000000000000,"z":-11600000000000000000}},"30011797":{"solarSystemId":30011797,"solarSystemName":"P:1REL","location":{"x":2050000000000000000,"y":1300000000000000000,"z":-11400000000000000000}},"30011798":{"solarSystemId":30011798,"solarSystemName":"D:1ETI","location":{"x":741000000000000000,"y":1820000000000000000,"z":-12000000000000000000}},"30011799":{"solarSystemId":30011799,"solarSystemName":"U:30ST","location":{"x":-3550000000000000000,"y":-1780000000000000000,"z":-12300000000000000000}},"30011800":{"solarSystemId":30011800,"solarSystemName":"Y:2045","location":{"x":-4220000000000000000,"y":-522000000000000000,"z":-12700000000000000000}},"30011801":{"solarSystemId":30011801,"solarSystemName":"B:20NT","location":{"x":-4290000000000000000,"y":-511000000000000000,"z":-12600000000000000000}},"30011802":{"solarSystemId":30011802,"solarSystemName":"Y:3NR6","location":{"x":-3240000000000000000,"y":-1000000000000000000,"z":-13700000000000000000}},"30011803":{"solarSystemId":30011803,"solarSystemName":"M:1L5N","location":{"x":-3660000000000000000,"y":-1140000000000000000,"z":-12500000000000000000}},"30011804":{"solarSystemId":30011804,"solarSystemName":"H:22TR","location":{"x":-3850000000000000000,"y":-434000000000000000,"z":-12800000000000000000}},"30011805":{"solarSystemId":30011805,"solarSystemName":"J:373L","location":{"x":-3070000000000000000,"y":-535000000000000000,"z":-12900000000000000000}},"30011806":{"solarSystemId":30011806,"solarSystemName":"M:279K","location":{"x":-4900000000000000000,"y":-1270000000000000000,"z":-12300000000000000000}},"30011807":{"solarSystemId":30011807,"solarSystemName":"D:SN60","location":{"x":-4020000000000000000,"y":-466000000000000000,"z":-12700000000000000000}},"30011808":{"solarSystemId":30011808,"solarSystemName":"D:12SK","location":{"x":-3730000000000000000,"y":-323000000000000000,"z":-12700000000000000000}},"30011809":{"solarSystemId":30011809,"solarSystemName":"D:1O9L","location":{"x":-3270000000000000000,"y":-1200000000000000000,"z":-13200000000000000000}},"30011810":{"solarSystemId":30011810,"solarSystemName":"M:42KS","location":{"x":-3540000000000000000,"y":-238000000000000000,"z":-12300000000000000000}},"30011811":{"solarSystemId":30011811,"solarSystemName":"G:3R79","location":{"x":300000000000000000,"y":-3980000000000000000,"z":-9990000000000000000}},"30011812":{"solarSystemId":30011812,"solarSystemName":"Y:2NKA","location":{"x":-811000000000000000,"y":-3760000000000000000,"z":-11500000000000000000}},"30011813":{"solarSystemId":30011813,"solarSystemName":"P:3RA5","location":{"x":-1820000000000000000,"y":-5140000000000000000,"z":-9820000000000000000}},"30011814":{"solarSystemId":30011814,"solarSystemName":"H:2RSE","location":{"x":-271000000000000000,"y":-3700000000000000000,"z":-8990000000000000000}},"30011815":{"solarSystemId":30011815,"solarSystemName":"H:2RA0","location":{"x":1530000000000000000,"y":-3870000000000000000,"z":-10800000000000000000}},"30011816":{"solarSystemId":30011816,"solarSystemName":"G:2KVL","location":{"x":-1200000000000000000,"y":-5710000000000000000,"z":-11700000000000000000}},"30011817":{"solarSystemId":30011817,"solarSystemName":"Y:3OIN","location":{"x":-405000000000000000,"y":-1820000000000000000,"z":-11300000000000000000}},"30011818":{"solarSystemId":30011818,"solarSystemName":"H:4K7L","location":{"x":506000000000000000,"y":810000000000000000,"z":-12700000000000000000}},"30011819":{"solarSystemId":30011819,"solarSystemName":"J:3O80","location":{"x":888000000000000000,"y":69800000000000000,"z":-12600000000000000000}},"30011820":{"solarSystemId":30011820,"solarSystemName":"G:1R66","location":{"x":295000000000000000,"y":1070000000000000000,"z":-12600000000000000000}},"30011821":{"solarSystemId":30011821,"solarSystemName":"G:L0TA","location":{"x":461000000000000000,"y":107000000000000000,"z":-12700000000000000000}},"30011822":{"solarSystemId":30011822,"solarSystemName":"Q:19R0","location":{"x":1180000000000000000,"y":945000000000000000,"z":-12400000000000000000}},"30011823":{"solarSystemId":30011823,"solarSystemName":"G:3AAV","location":{"x":828000000000000000,"y":495000000000000000,"z":-11900000000000000000}},"30011824":{"solarSystemId":30011824,"solarSystemName":"G:20EE","location":{"x":861000000000000000,"y":447000000000000000,"z":-12700000000000000000}},"30011825":{"solarSystemId":30011825,"solarSystemName":"F:O65E","location":{"x":34700000000000000,"y":433000000000000000,"z":-12200000000000000000}},"30011826":{"solarSystemId":30011826,"solarSystemName":"P:32L0","location":{"x":232000000000000000,"y":959000000000000000,"z":-12500000000000000000}},"30011827":{"solarSystemId":30011827,"solarSystemName":"J:12EL","location":{"x":572000000000000000,"y":60100000000000000,"z":-12500000000000000000}},"30011828":{"solarSystemId":30011828,"solarSystemName":"Y:3ES2","location":{"x":542000000000000000,"y":1570000000000000000,"z":-12200000000000000000}},"30011829":{"solarSystemId":30011829,"solarSystemName":"U:282V","location":{"x":-3980000000000000000,"y":3250000000000000000,"z":-17500000000000000000}},"30011830":{"solarSystemId":30011830,"solarSystemName":"G:38RO","location":{"x":-3180000000000000000,"y":2960000000000000000,"z":-17200000000000000000}},"30011831":{"solarSystemId":30011831,"solarSystemName":"Y:1459","location":{"x":-3200000000000000000,"y":2880000000000000000,"z":-16100000000000000000}},"30011832":{"solarSystemId":30011832,"solarSystemName":"U:2526","location":{"x":-4010000000000000000,"y":2970000000000000000,"z":-17400000000000000000}},"30011833":{"solarSystemId":30011833,"solarSystemName":"P:137I","location":{"x":-3120000000000000000,"y":3250000000000000000,"z":-16700000000000000000}},"30011834":{"solarSystemId":30011834,"solarSystemName":"F:3E1R","location":{"x":-3630000000000000000,"y":3000000000000000000,"z":-16600000000000000000}},"30011835":{"solarSystemId":30011835,"solarSystemName":"B:323R","location":{"x":-4010000000000000000,"y":3450000000000000000,"z":-16900000000000000000}},"30011836":{"solarSystemId":30011836,"solarSystemName":"Q:1EAT","location":{"x":-3780000000000000000,"y":2990000000000000000,"z":-17300000000000000000}},"30011837":{"solarSystemId":30011837,"solarSystemName":"Turme","location":{"x":-3840000000000000000,"y":3900000000000000000,"z":-16500000000000000000}},"30011838":{"solarSystemId":30011838,"solarSystemName":"H:287T","location":{"x":-4410000000000000000,"y":4960000000000000000,"z":-17200000000000000000}},"30011839":{"solarSystemId":30011839,"solarSystemName":"H:1RKN","location":{"x":-4110000000000000000,"y":4710000000000000000,"z":-16700000000000000000}},"30011840":{"solarSystemId":30011840,"solarSystemName":"J:1RV5","location":{"x":-4040000000000000000,"y":4430000000000000000,"z":-15800000000000000000}},"30011841":{"solarSystemId":30011841,"solarSystemName":"P:28AA","location":{"x":-5160000000000000000,"y":6040000000000000000,"z":-16400000000000000000}},"30011842":{"solarSystemId":30011842,"solarSystemName":"Q:3IOR","location":{"x":-1470000000000000000,"y":6990000000000000000,"z":-15200000000000000000}},"30011843":{"solarSystemId":30011843,"solarSystemName":"Z:242S","location":{"x":-4440000000000000000,"y":6720000000000000000,"z":-15000000000000000000}},"30011844":{"solarSystemId":30011844,"solarSystemName":"U:1KLS","location":{"x":-1890000000000000000,"y":4490000000000000000,"z":-15800000000000000000}},"30011845":{"solarSystemId":30011845,"solarSystemName":"B:1T23","location":{"x":-3290000000000000000,"y":4980000000000000000,"z":-14200000000000000000}},"30011846":{"solarSystemId":30011846,"solarSystemName":"J:389I","location":{"x":-2300000000000000000,"y":6680000000000000000,"z":-15700000000000000000}},"30011847":{"solarSystemId":30011847,"solarSystemName":"P:2012","location":{"x":-5370000000000000000,"y":4390000000000000000,"z":-16500000000000000000}},"30011848":{"solarSystemId":30011848,"solarSystemName":"M:1K8L","location":{"x":-7250000000000000000,"y":5390000000000000000,"z":-15800000000000000000}},"30011849":{"solarSystemId":30011849,"solarSystemName":"D:N513","location":{"x":-5860000000000000000,"y":4810000000000000000,"z":-16700000000000000000}},"30011850":{"solarSystemId":30011850,"solarSystemName":"H:LN30","location":{"x":-5580000000000000000,"y":5690000000000000000,"z":-16100000000000000000}},"30011851":{"solarSystemId":30011851,"solarSystemName":"M:26O6","location":{"x":-7510000000000000000,"y":4810000000000000000,"z":-15300000000000000000}},"30011852":{"solarSystemId":30011852,"solarSystemName":"G:K372","location":{"x":-6790000000000000000,"y":4940000000000000000,"z":-16600000000000000000}},"30011853":{"solarSystemId":30011853,"solarSystemName":"B:2O4V","location":{"x":-4040000000000000000,"y":5420000000000000000,"z":-19100000000000000000}},"30011854":{"solarSystemId":30011854,"solarSystemName":"Z:3R5A","location":{"x":-3050000000000000000,"y":5500000000000000000,"z":-19600000000000000000}},"30011855":{"solarSystemId":30011855,"solarSystemName":"J:2ITO","location":{"x":-1840000000000000000,"y":4660000000000000000,"z":-21000000000000000000}},"30011856":{"solarSystemId":30011856,"solarSystemName":"B:43RL","location":{"x":-4560000000000000000,"y":3020000000000000000,"z":-19000000000000000000}},"30011857":{"solarSystemId":30011857,"solarSystemName":"Y:229T","location":{"x":-2370000000000000000,"y":3110000000000000000,"z":-16700000000000000000}},"30011858":{"solarSystemId":30011858,"solarSystemName":"Q:4S06","location":{"x":-2620000000000000000,"y":4200000000000000000,"z":-17400000000000000000}},"30011859":{"solarSystemId":30011859,"solarSystemName":"H:OE6V","location":{"x":-3090000000000000000,"y":3360000000000000000,"z":-17100000000000000000}},"30011860":{"solarSystemId":30011860,"solarSystemName":"B:32S2","location":{"x":-2750000000000000000,"y":3650000000000000000,"z":-17200000000000000000}},"30011861":{"solarSystemId":30011861,"solarSystemName":"H:1K5T","location":{"x":-2450000000000000000,"y":3410000000000000000,"z":-16900000000000000000}},"30011862":{"solarSystemId":30011862,"solarSystemName":"Q:1RI2","location":{"x":-3100000000000000000,"y":3230000000000000000,"z":-17000000000000000000}},"30011863":{"solarSystemId":30011863,"solarSystemName":"G:4ISL","location":{"x":-3040000000000000000,"y":4730000000000000000,"z":-16800000000000000000}},"30011864":{"solarSystemId":30011864,"solarSystemName":"J:1E3N","location":{"x":-7310000000000000000,"y":5590000000000000000,"z":-14600000000000000000}},"30011865":{"solarSystemId":30011865,"solarSystemName":"J:1SR0","location":{"x":-7940000000000000000,"y":4570000000000000000,"z":-14700000000000000000}},"30011866":{"solarSystemId":30011866,"solarSystemName":"Y:I09O","location":{"x":-8700000000000000000,"y":5990000000000000000,"z":-15100000000000000000}},"30011867":{"solarSystemId":30011867,"solarSystemName":"B:1RT8","location":{"x":-8240000000000000000,"y":3960000000000000000,"z":-15600000000000000000}},"30011868":{"solarSystemId":30011868,"solarSystemName":"M:2TT2","location":{"x":-10200000000000000000,"y":4920000000000000000,"z":-13300000000000000000}},"30011869":{"solarSystemId":30011869,"solarSystemName":"J:33R1","location":{"x":-5100000000000000000,"y":4440000000000000000,"z":-8600000000000000000}},"30011870":{"solarSystemId":30011870,"solarSystemName":"U:2KE0","location":{"x":-2480000000000000000,"y":4570000000000000000,"z":-9210000000000000000}},"30011871":{"solarSystemId":30011871,"solarSystemName":"B:3407","location":{"x":-3860000000000000000,"y":5070000000000000000,"z":-9080000000000000000}},"30011872":{"solarSystemId":30011872,"solarSystemName":"G:290R","location":{"x":-3350000000000000000,"y":5320000000000000000,"z":-9730000000000000000}},"30011873":{"solarSystemId":30011873,"solarSystemName":"D:20SO","location":{"x":-4350000000000000000,"y":4920000000000000000,"z":-8740000000000000000}},"30011874":{"solarSystemId":30011874,"solarSystemName":"Z:1V6V","location":{"x":-3370000000000000000,"y":4590000000000000000,"z":-9820000000000000000}},"30011875":{"solarSystemId":30011875,"solarSystemName":"P:16LK","location":{"x":-3480000000000000000,"y":4090000000000000000,"z":-8010000000000000000}},"30011876":{"solarSystemId":30011876,"solarSystemName":"J:EN91","location":{"x":-3050000000000000000,"y":4370000000000000000,"z":-8810000000000000000}},"30011877":{"solarSystemId":30011877,"solarSystemName":"Y:345S","location":{"x":-4730000000000000000,"y":2720000000000000000,"z":-8040000000000000000}},"30011878":{"solarSystemId":30011878,"solarSystemName":"Y:3EOE","location":{"x":-5050000000000000000,"y":3650000000000000000,"z":-9550000000000000000}},"30011879":{"solarSystemId":30011879,"solarSystemName":"Q:4051","location":{"x":-4160000000000000000,"y":3220000000000000000,"z":-8510000000000000000}},"30011880":{"solarSystemId":30011880,"solarSystemName":"U:376T","location":{"x":-4920000000000000000,"y":2700000000000000000,"z":-8500000000000000000}},"30011881":{"solarSystemId":30011881,"solarSystemName":"H:2SVT","location":{"x":-4560000000000000000,"y":2910000000000000000,"z":-8280000000000000000}},"30011882":{"solarSystemId":30011882,"solarSystemName":"Y:19IV","location":{"x":-4920000000000000000,"y":3020000000000000000,"z":-8970000000000000000}},"30011883":{"solarSystemId":30011883,"solarSystemName":"F:17R0","location":{"x":-5290000000000000000,"y":2410000000000000000,"z":-9010000000000000000}},"30011884":{"solarSystemId":30011884,"solarSystemName":"D:32VO","location":{"x":-5430000000000000000,"y":2320000000000000000,"z":-9630000000000000000}},"30011885":{"solarSystemId":30011885,"solarSystemName":"U:2A78","location":{"x":-5300000000000000000,"y":2160000000000000000,"z":-9040000000000000000}},"30011886":{"solarSystemId":30011886,"solarSystemName":"U:S6RR","location":{"x":-4960000000000000000,"y":2100000000000000000,"z":-9420000000000000000}},"30011887":{"solarSystemId":30011887,"solarSystemName":"Z:3OA3","location":{"x":-5870000000000000000,"y":3100000000000000000,"z":-12500000000000000000}},"30011888":{"solarSystemId":30011888,"solarSystemName":"G:2O0T","location":{"x":-4960000000000000000,"y":3330000000000000000,"z":-11800000000000000000}},"30011889":{"solarSystemId":30011889,"solarSystemName":"H:28IA","location":{"x":-5540000000000000000,"y":3540000000000000000,"z":-11800000000000000000}},"30011890":{"solarSystemId":30011890,"solarSystemName":"J:138S","location":{"x":-5610000000000000000,"y":2450000000000000000,"z":-11200000000000000000}},"30011891":{"solarSystemId":30011891,"solarSystemName":"F:1TSL","location":{"x":-5410000000000000000,"y":3150000000000000000,"z":-11000000000000000000}},"30011892":{"solarSystemId":30011892,"solarSystemName":"J:190A","location":{"x":-5940000000000000000,"y":3450000000000000000,"z":-12900000000000000000}},"30011893":{"solarSystemId":30011893,"solarSystemName":"Y:1SAT","location":{"x":-6660000000000000000,"y":3820000000000000000,"z":-11200000000000000000}},"30011894":{"solarSystemId":30011894,"solarSystemName":"U:26OV","location":{"x":-6300000000000000000,"y":4320000000000000000,"z":-11700000000000000000}},"30011895":{"solarSystemId":30011895,"solarSystemName":"U:3I4R","location":{"x":-4580000000000000000,"y":7160000000000000000,"z":-8070000000000000000}},"30011896":{"solarSystemId":30011896,"solarSystemName":"B:2ART","location":{"x":-1920000000000000000,"y":7140000000000000000,"z":-7370000000000000000}},"30011897":{"solarSystemId":30011897,"solarSystemName":"Q:2E8S","location":{"x":-3320000000000000000,"y":7140000000000000000,"z":-8410000000000000000}},"30011898":{"solarSystemId":30011898,"solarSystemName":"P:27O4","location":{"x":-2460000000000000000,"y":7430000000000000000,"z":-9950000000000000000}},"30011899":{"solarSystemId":30011899,"solarSystemName":"F:2N9R","location":{"x":-2590000000000000000,"y":7260000000000000000,"z":-9650000000000000000}},"30011900":{"solarSystemId":30011900,"solarSystemName":"B:3RKR","location":{"x":-6710000000000000000,"y":4840000000000000000,"z":-10600000000000000000}},"30011901":{"solarSystemId":30011901,"solarSystemName":"D:2L31","location":{"x":-4940000000000000000,"y":5840000000000000000,"z":-10600000000000000000}},"30011902":{"solarSystemId":30011902,"solarSystemName":"F:2R3T","location":{"x":-7330000000000000000,"y":4020000000000000000,"z":-11700000000000000000}},"30011903":{"solarSystemId":30011903,"solarSystemName":"Q:2OIT","location":{"x":-5640000000000000000,"y":6290000000000000000,"z":-9260000000000000000}},"30011904":{"solarSystemId":30011904,"solarSystemName":"U:3OA0","location":{"x":-5400000000000000000,"y":4420000000000000000,"z":-9860000000000000000}},"30011905":{"solarSystemId":30011905,"solarSystemName":"P:4E3T","location":{"x":-6610000000000000000,"y":4190000000000000000,"z":-11200000000000000000}},"30011906":{"solarSystemId":30011906,"solarSystemName":"D:16AA","location":{"x":-12000000000000000000,"y":2410000000000000000,"z":-15200000000000000000}},"30011907":{"solarSystemId":30011907,"solarSystemName":"P:3IAA","location":{"x":-11800000000000000000,"y":3780000000000000000,"z":-14900000000000000000}},"30011908":{"solarSystemId":30011908,"solarSystemName":"Y:1N10","location":{"x":-11800000000000000000,"y":4040000000000000000,"z":-14100000000000000000}},"30011909":{"solarSystemId":30011909,"solarSystemName":"F:3S69","location":{"x":-11700000000000000000,"y":2490000000000000000,"z":-15100000000000000000}},"30011910":{"solarSystemId":30011910,"solarSystemName":"J:2IV2","location":{"x":-11800000000000000000,"y":3280000000000000000,"z":-13000000000000000000}},"30011911":{"solarSystemId":30011911,"solarSystemName":"J:OSN4","location":{"x":-11900000000000000000,"y":2700000000000000000,"z":-15300000000000000000}},"30011912":{"solarSystemId":30011912,"solarSystemName":"P:23IN","location":{"x":-12800000000000000000,"y":2550000000000000000,"z":-15800000000000000000}},"30011913":{"solarSystemId":30011913,"solarSystemName":"Y:2V2S","location":{"x":-11600000000000000000,"y":3060000000000000000,"z":-15200000000000000000}},"30011914":{"solarSystemId":30011914,"solarSystemName":"J:V05R","location":{"x":-11000000000000000000,"y":2740000000000000000,"z":-14900000000000000000}},"30011915":{"solarSystemId":30011915,"solarSystemName":"Z:3N27","location":{"x":-9370000000000000000,"y":7840000000000000000,"z":-15100000000000000000}},"30011916":{"solarSystemId":30011916,"solarSystemName":"M:3ART","location":{"x":-5600000000000000000,"y":7460000000000000000,"z":-13500000000000000000}},"30011917":{"solarSystemId":30011917,"solarSystemName":"U:3E7O","location":{"x":-8480000000000000000,"y":9490000000000000000,"z":-13100000000000000000}},"30011918":{"solarSystemId":30011918,"solarSystemName":"D:3896","location":{"x":-5040000000000000000,"y":9920000000000000000,"z":-13300000000000000000}},"30011919":{"solarSystemId":30011919,"solarSystemName":"D:4V00","location":{"x":-6000000000000000000,"y":7230000000000000000,"z":-14400000000000000000}},"30011920":{"solarSystemId":30011920,"solarSystemName":"U.PC6.9ES","location":{"x":-7510000000000000000,"y":-396000000000000000,"z":-27300000000000000000}},"30011921":{"solarSystemId":30011921,"solarSystemName":"R.C17.25B","location":{"x":-8130000000000000000,"y":-798000000000000000,"z":-28300000000000000000}},"30011922":{"solarSystemId":30011922,"solarSystemName":"D.7Z6.661","location":{"x":-7940000000000000000,"y":-1380000000000000000,"z":-28400000000000000000}},"30011923":{"solarSystemId":30011923,"solarSystemName":"T.HS7.GN7","location":{"x":-8460000000000000000,"y":-267000000000000000,"z":-28700000000000000000}},"30011924":{"solarSystemId":30011924,"solarSystemName":"U.MG7.JFH","location":{"x":-8920000000000000000,"y":-889000000000000000,"z":-27800000000000000000}},"30011925":{"solarSystemId":30011925,"solarSystemName":"I.NQ7.63P","location":{"x":-8810000000000000000,"y":-652000000000000000,"z":-27300000000000000000}},"30011926":{"solarSystemId":30011926,"solarSystemName":"R.1C6.4G5","location":{"x":-7500000000000000000,"y":-206000000000000000,"z":-24000000000000000000}},"30011927":{"solarSystemId":30011927,"solarSystemName":"S.5H6.PHD","location":{"x":-7790000000000000000,"y":-568000000000000000,"z":-24100000000000000000}},"30011928":{"solarSystemId":30011928,"solarSystemName":"N.1L6.NVW","location":{"x":-7420000000000000000,"y":-1070000000000000000,"z":-23700000000000000000}},"30011929":{"solarSystemId":30011929,"solarSystemName":"E.GM5.ET1","location":{"x":-6400000000000000000,"y":1580000000000000000,"z":-22900000000000000000}},"30011930":{"solarSystemId":30011930,"solarSystemName":"I.MW4.8C3","location":{"x":-5680000000000000000,"y":-126000000000000000,"z":-25700000000000000000}},"30011931":{"solarSystemId":30011931,"solarSystemName":"U.NT5.ZXP","location":{"x":-6170000000000000000,"y":-21200000000000000,"z":-25700000000000000000}},"30011932":{"solarSystemId":30011932,"solarSystemName":"U.YV6.G5K","location":{"x":-7630000000000000000,"y":-34000000000000000,"z":-24100000000000000000}},"30011933":{"solarSystemId":30011933,"solarSystemName":"T.2S3.H81","location":{"x":-3820000000000000000,"y":-1470000000000000000,"z":-26700000000000000000}},"30011934":{"solarSystemId":30011934,"solarSystemName":"N.PC2.DE6","location":{"x":-2900000000000000000,"y":-252000000000000000,"z":-26400000000000000000}},"30011935":{"solarSystemId":30011935,"solarSystemName":"R.B33.2D7","location":{"x":-3590000000000000000,"y":-269000000000000000,"z":-27200000000000000000}},"30011936":{"solarSystemId":30011936,"solarSystemName":"I.RH1.SBG","location":{"x":-2030000000000000000,"y":-854000000000000000,"z":-26300000000000000000}},"30011937":{"solarSystemId":30011937,"solarSystemName":"E.5N2.061","location":{"x":-2740000000000000000,"y":-1370000000000000000,"z":-26700000000000000000}},"30011938":{"solarSystemId":30011938,"solarSystemName":"E.TY2.BN1","location":{"x":-3290000000000000000,"y":-50300000000000000,"z":-25900000000000000000}},"30011939":{"solarSystemId":30011939,"solarSystemName":"H.VL1.DDX","location":{"x":-1680000000000000000,"y":-954000000000000000,"z":-27800000000000000000}},"30011940":{"solarSystemId":30011940,"solarSystemName":"U.3Z1.B3S","location":{"x":-2170000000000000000,"y":-364000000000000000,"z":-26700000000000000000}},"30011941":{"solarSystemId":30011941,"solarSystemName":"A.F36.K22","location":{"x":-7050000000000000000,"y":-75400000000000000,"z":-22400000000000000000}},"30011942":{"solarSystemId":30011942,"solarSystemName":"S.YT6.F41","location":{"x":-7340000000000000000,"y":-1320000000000000000,"z":-21400000000000000000}},"30011943":{"solarSystemId":30011943,"solarSystemName":"T.N87.1GD","location":{"x":-8370000000000000000,"y":-566000000000000000,"z":-22500000000000000000}},"30011944":{"solarSystemId":30011944,"solarSystemName":"H.DJ5.S58","location":{"x":-6680000000000000000,"y":-294000000000000000,"z":-21500000000000000000}},"30011945":{"solarSystemId":30011945,"solarSystemName":"H.7Z6.KKB","location":{"x":-7940000000000000000,"y":-827000000000000000,"z":-22200000000000000000}},"30011946":{"solarSystemId":30011946,"solarSystemName":"N.L17.Z31","location":{"x":-8120000000000000000,"y":-1290000000000000000,"z":-21600000000000000000}},"30011947":{"solarSystemId":30011947,"solarSystemName":"S.8Y6.9WF","location":{"x":-7900000000000000000,"y":-790000000000000000,"z":-21700000000000000000}},"30011948":{"solarSystemId":30011948,"solarSystemName":"R.8Z6.3VL","location":{"x":-7940000000000000000,"y":-526000000000000000,"z":-21800000000000000000}},"30011949":{"solarSystemId":30011949,"solarSystemName":"N.BD4.G1G","location":{"x":-5180000000000000000,"y":-831000000000000000,"z":-21800000000000000000}},"30011950":{"solarSystemId":30011950,"solarSystemName":"E.6T5.9F1","location":{"x":-6170000000000000000,"y":60000000000000000,"z":-21700000000000000000}},"30011951":{"solarSystemId":30011951,"solarSystemName":"T.L55.L3R","location":{"x":-5960000000000000000,"y":-472000000000000000,"z":-22400000000000000000}},"30011952":{"solarSystemId":30011952,"solarSystemName":"S.P35.CMH","location":{"x":-5890000000000000000,"y":-884000000000000000,"z":-21700000000000000000}},"30011953":{"solarSystemId":30011953,"solarSystemName":"E.LR5.M71","location":{"x":-6250000000000000000,"y":-1430000000000000000,"z":-21500000000000000000}},"30011954":{"solarSystemId":30011954,"solarSystemName":"D.H14.W41","location":{"x":-4680000000000000000,"y":-1330000000000000000,"z":-21800000000000000000}},"30011955":{"solarSystemId":30011955,"solarSystemName":"R.N25.8B6","location":{"x":-5850000000000000000,"y":241000000000000000,"z":-22300000000000000000}},"30011956":{"solarSystemId":30011956,"solarSystemName":"R.K24.H61","location":{"x":-4720000000000000000,"y":-1400000000000000000,"z":-25900000000000000000}},"30011957":{"solarSystemId":30011957,"solarSystemName":"D.XY4.3KX","location":{"x":-5610000000000000000,"y":-971000000000000000,"z":-25900000000000000000}},"30011958":{"solarSystemId":30011958,"solarSystemName":"H.FW4.PY6","location":{"x":-5680000000000000000,"y":-247000000000000000,"z":-25600000000000000000}},"30011959":{"solarSystemId":30011959,"solarSystemName":"R.0S4.E11","location":{"x":-4970000000000000000,"y":-1220000000000000000,"z":-25500000000000000000}},"30011960":{"solarSystemId":30011960,"solarSystemName":"S.FT4.Q0B","location":{"x":-5030000000000000000,"y":-793000000000000000,"z":-24600000000000000000}},"30011961":{"solarSystemId":30011961,"solarSystemName":"E.B64.S41","location":{"x":-4850000000000000000,"y":-40900000000000000,"z":-25500000000000000000}},"30011962":{"solarSystemId":30011962,"solarSystemName":"N.NL5.32P","location":{"x":-6280000000000000000,"y":-651000000000000000,"z":-24600000000000000000}},"30011963":{"solarSystemId":30011963,"solarSystemName":"U.WZ4.0T8","location":{"x":-5650000000000000000,"y":-301000000000000000,"z":-24800000000000000000}},"30011964":{"solarSystemId":30011964,"solarSystemName":"S.B95.YWV","location":{"x":-6110000000000000000,"y":-718000000000000000,"z":-23600000000000000000}},"30011965":{"solarSystemId":30011965,"solarSystemName":"D.XJ5.CMG","location":{"x":-6690000000000000000,"y":-848000000000000000,"z":-24500000000000000000}},"30011966":{"solarSystemId":30011966,"solarSystemName":"A.BN5.RVM","location":{"x":-6220000000000000000,"y":-634000000000000000,"z":-24700000000000000000}},"30011967":{"solarSystemId":30011967,"solarSystemName":"A.L95.H0Q","location":{"x":-6110000000000000000,"y":-721000000000000000,"z":-24300000000000000000}},"30011968":{"solarSystemId":30011968,"solarSystemName":"N.KQ4.5BM","location":{"x":-5370000000000000000,"y":-19900000000000000,"z":-24600000000000000000}},"30011969":{"solarSystemId":30011969,"solarSystemName":"Anitomy","location":{"x":-6220000000000000000,"y":-294000000000000000,"z":-25900000000000000000}},"30011970":{"solarSystemId":30011970,"solarSystemName":"S.ZZ5.JLD","location":{"x":-6810000000000000000,"y":-557000000000000000,"z":-26500000000000000000}},"30011971":{"solarSystemId":30011971,"solarSystemName":"T.QZ5.F2D","location":{"x":-6800000000000000000,"y":-543000000000000000,"z":-25800000000000000000}},"30011972":{"solarSystemId":30011972,"solarSystemName":"T.FX5.RLQ","location":{"x":-6730000000000000000,"y":-737000000000000000,"z":-25500000000000000000}},"30011973":{"solarSystemId":30011973,"solarSystemName":"S.ZG5.GF1","location":{"x":-6630000000000000000,"y":-60500000000000000,"z":-25800000000000000000}},"30011974":{"solarSystemId":30011974,"solarSystemName":"D.1E5.1QH","location":{"x":-6880000000000000000,"y":-887000000000000000,"z":-25700000000000000000}},"30011975":{"solarSystemId":30011975,"solarSystemName":"Z:33A9","location":{"x":-10800000000000000000,"y":3430000000000000000,"z":-4210000000000000000}},"30011976":{"solarSystemId":30011976,"solarSystemName":"B:360I","location":{"x":-12000000000000000000,"y":4100000000000000000,"z":-2280000000000000000}},"30011977":{"solarSystemId":30011977,"solarSystemName":"Q:2N15","location":{"x":-10700000000000000000,"y":3190000000000000000,"z":-4230000000000000000}},"30011978":{"solarSystemId":30011978,"solarSystemName":"H:1273","location":{"x":-10900000000000000000,"y":5230000000000000000,"z":-3540000000000000000}},"30011979":{"solarSystemId":30011979,"solarSystemName":"J:36IS","location":{"x":-11500000000000000000,"y":5620000000000000000,"z":-3180000000000000000}},"30011980":{"solarSystemId":30011980,"solarSystemName":"J:2T67","location":{"x":-10100000000000000000,"y":4720000000000000000,"z":-2620000000000000000}},"30011981":{"solarSystemId":30011981,"solarSystemName":"Q:1AE5","location":{"x":-10100000000000000000,"y":4080000000000000000,"z":-4950000000000000000}},"30011982":{"solarSystemId":30011982,"solarSystemName":"J:VL9O","location":{"x":-11000000000000000000,"y":4120000000000000000,"z":-3720000000000000000}},"30011983":{"solarSystemId":30011983,"solarSystemName":"U:30V9","location":{"x":-13500000000000000000,"y":4540000000000000000,"z":-8580000000000000000}},"30011984":{"solarSystemId":30011984,"solarSystemName":"Y:2A8I","location":{"x":-12500000000000000000,"y":6230000000000000000,"z":-8440000000000000000}},"30011985":{"solarSystemId":30011985,"solarSystemName":"M:30S2","location":{"x":-13600000000000000000,"y":4460000000000000000,"z":-7980000000000000000}},"30011986":{"solarSystemId":30011986,"solarSystemName":"J:3OEV","location":{"x":-13300000000000000000,"y":5440000000000000000,"z":-7720000000000000000}},"30011987":{"solarSystemId":30011987,"solarSystemName":"F:1OEA","location":{"x":-12700000000000000000,"y":4830000000000000000,"z":-8350000000000000000}},"30011988":{"solarSystemId":30011988,"solarSystemName":"Q:NEI7","location":{"x":-13500000000000000000,"y":5660000000000000000,"z":-6880000000000000000}},"30011989":{"solarSystemId":30011989,"solarSystemName":"P:2A26","location":{"x":-7820000000000000000,"y":3730000000000000000,"z":-4110000000000000000}},"30011990":{"solarSystemId":30011990,"solarSystemName":"D:3A02","location":{"x":-8870000000000000000,"y":3020000000000000000,"z":-4430000000000000000}},"30011991":{"solarSystemId":30011991,"solarSystemName":"P:2NI3","location":{"x":-7830000000000000000,"y":3380000000000000000,"z":-3780000000000000000}},"30011992":{"solarSystemId":30011992,"solarSystemName":"H:2RA9","location":{"x":-6730000000000000000,"y":2620000000000000000,"z":-4190000000000000000}},"30011993":{"solarSystemId":30011993,"solarSystemName":"P:36A6","location":{"x":-8030000000000000000,"y":2910000000000000000,"z":-4800000000000000000}},"30011994":{"solarSystemId":30011994,"solarSystemName":"U:2OKE","location":{"x":-6790000000000000000,"y":3300000000000000000,"z":-3970000000000000000}},"30011995":{"solarSystemId":30011995,"solarSystemName":"J:2L47","location":{"x":-7450000000000000000,"y":3820000000000000000,"z":-3320000000000000000}},"30011996":{"solarSystemId":30011996,"solarSystemName":"H:39L1","location":{"x":-7330000000000000000,"y":3600000000000000000,"z":-3610000000000000000}},"30011997":{"solarSystemId":30011997,"solarSystemName":"U:EK2V","location":{"x":-6970000000000000000,"y":2950000000000000000,"z":-4640000000000000000}},"30011998":{"solarSystemId":30011998,"solarSystemName":"D:123A","location":{"x":-8600000000000000000,"y":2870000000000000000,"z":-4050000000000000000}},"30011999":{"solarSystemId":30011999,"solarSystemName":"G:1I7N","location":{"x":-10400000000000000000,"y":3530000000000000000,"z":-8260000000000000000}},"30012000":{"solarSystemId":30012000,"solarSystemName":"D:26VE","location":{"x":-11200000000000000000,"y":4760000000000000000,"z":-6850000000000000000}},"30012001":{"solarSystemId":30012001,"solarSystemName":"D:1S1K","location":{"x":-11200000000000000000,"y":4740000000000000000,"z":-7910000000000000000}},"30012002":{"solarSystemId":30012002,"solarSystemName":"H:ER1A","location":{"x":-10400000000000000000,"y":3660000000000000000,"z":-7220000000000000000}},"30012003":{"solarSystemId":30012003,"solarSystemName":"Q:3T4A","location":{"x":-10500000000000000000,"y":3650000000000000000,"z":-8500000000000000000}},"30012004":{"solarSystemId":30012004,"solarSystemName":"J:4RSR","location":{"x":-11100000000000000000,"y":4090000000000000000,"z":-8170000000000000000}},"30012005":{"solarSystemId":30012005,"solarSystemName":"G:2485","location":{"x":-11600000000000000000,"y":3980000000000000000,"z":-7990000000000000000}},"30012006":{"solarSystemId":30012006,"solarSystemName":"J:3044","location":{"x":-9710000000000000000,"y":2070000000000000000,"z":-2520000000000000000}},"30012007":{"solarSystemId":30012007,"solarSystemName":"Z:1E6N","location":{"x":-10200000000000000000,"y":2190000000000000000,"z":-4330000000000000000}},"30012008":{"solarSystemId":30012008,"solarSystemName":"G:10L5","location":{"x":-10300000000000000000,"y":1720000000000000000,"z":-2160000000000000000}},"30012009":{"solarSystemId":30012009,"solarSystemName":"F:18EL","location":{"x":-10700000000000000000,"y":1790000000000000000,"z":-3570000000000000000}},"30012010":{"solarSystemId":30012010,"solarSystemName":"Q:37O9","location":{"x":-10500000000000000000,"y":2510000000000000000,"z":-3680000000000000000}},"30012011":{"solarSystemId":30012011,"solarSystemName":"Z:3TNE","location":{"x":-10600000000000000000,"y":2530000000000000000,"z":-3880000000000000000}},"30012012":{"solarSystemId":30012012,"solarSystemName":"B:28ER","location":{"x":-11000000000000000000,"y":3320000000000000000,"z":-2860000000000000000}},"30012013":{"solarSystemId":30012013,"solarSystemName":"Q:37A9","location":{"x":-9890000000000000000,"y":2260000000000000000,"z":-4090000000000000000}},"30012014":{"solarSystemId":30012014,"solarSystemName":"Y:32SS","location":{"x":-10500000000000000000,"y":2090000000000000000,"z":-1780000000000000000}},"30012015":{"solarSystemId":30012015,"solarSystemName":"Y:21A1","location":{"x":-10900000000000000000,"y":3170000000000000000,"z":-2760000000000000000}},"30012016":{"solarSystemId":30012016,"solarSystemName":"Y:2NLE","location":{"x":-11500000000000000000,"y":2130000000000000000,"z":-3550000000000000000}},"30012017":{"solarSystemId":30012017,"solarSystemName":"H:5148","location":{"x":-10700000000000000000,"y":2370000000000000000,"z":-3070000000000000000}},"30012018":{"solarSystemId":30012018,"solarSystemName":"P:2LS3","location":{"x":-11400000000000000000,"y":7340000000000000000,"z":-776000000000000000}},"30012019":{"solarSystemId":30012019,"solarSystemName":"G:10NR","location":{"x":-12200000000000000000,"y":6270000000000000000,"z":1090000000000000000}},"30012020":{"solarSystemId":30012020,"solarSystemName":"B:NOK7","location":{"x":-11300000000000000000,"y":5860000000000000000,"z":741000000000000000}},"30012021":{"solarSystemId":30012021,"solarSystemName":"J:10R4","location":{"x":-12700000000000000000,"y":6410000000000000000,"z":305000000000000000}},"30012022":{"solarSystemId":30012022,"solarSystemName":"D:1LS0","location":{"x":-11600000000000000000,"y":5240000000000000000,"z":167000000000000000}},"30012023":{"solarSystemId":30012023,"solarSystemName":"B:30VK","location":{"x":-11300000000000000000,"y":6850000000000000000,"z":1260000000000000000}},"30012024":{"solarSystemId":30012024,"solarSystemName":"B:30R9","location":{"x":-9970000000000000000,"y":3780000000000000000,"z":-989000000000000000}},"30012025":{"solarSystemId":30012025,"solarSystemName":"P:38RN","location":{"x":-10600000000000000000,"y":4460000000000000000,"z":-979000000000000000}},"30012026":{"solarSystemId":30012026,"solarSystemName":"J:30IE","location":{"x":-9960000000000000000,"y":3930000000000000000,"z":-2160000000000000000}},"30012027":{"solarSystemId":30012027,"solarSystemName":"Z:3A7K","location":{"x":-10200000000000000000,"y":4570000000000000000,"z":-903000000000000000}},"30012028":{"solarSystemId":30012028,"solarSystemName":"G:2I9N","location":{"x":-11400000000000000000,"y":4180000000000000000,"z":-995000000000000000}},"30012029":{"solarSystemId":30012029,"solarSystemName":"U:1VR7","location":{"x":-9890000000000000000,"y":3200000000000000000,"z":-765000000000000000}},"30012030":{"solarSystemId":30012030,"solarSystemName":"J:2EE5","location":{"x":-10300000000000000000,"y":4240000000000000000,"z":-232000000000000000}},"30012031":{"solarSystemId":30012031,"solarSystemName":"J:38NV","location":{"x":-14000000000000000000,"y":2300000000000000000,"z":-5630000000000000000}},"30012032":{"solarSystemId":30012032,"solarSystemName":"H:35KL","location":{"x":-13300000000000000000,"y":4140000000000000000,"z":-4680000000000000000}},"30012033":{"solarSystemId":30012033,"solarSystemName":"D:3T1A","location":{"x":-13200000000000000000,"y":4880000000000000000,"z":-5760000000000000000}},"30012034":{"solarSystemId":30012034,"solarSystemName":"F:20E3","location":{"x":-13600000000000000000,"y":2870000000000000000,"z":-6060000000000000000}},"30012035":{"solarSystemId":30012035,"solarSystemName":"P:T7T6","location":{"x":-13300000000000000000,"y":3240000000000000000,"z":-5200000000000000000}},"30012036":{"solarSystemId":30012036,"solarSystemName":"Z:1I3V","location":{"x":-14000000000000000000,"y":2350000000000000000,"z":-4220000000000000000}},"30012037":{"solarSystemId":30012037,"solarSystemName":"J:15AS","location":{"x":-11800000000000000000,"y":4350000000000000000,"z":-3970000000000000000}},"30012038":{"solarSystemId":30012038,"solarSystemName":"F:11ST","location":{"x":-13900000000000000000,"y":3060000000000000000,"z":-3720000000000000000}},"30012039":{"solarSystemId":30012039,"solarSystemName":"Z:37N0","location":{"x":-1470000000000000000,"y":-10600000000000000000,"z":-9030000000000000000}},"30012040":{"solarSystemId":30012040,"solarSystemName":"J:322A","location":{"x":-1690000000000000000,"y":-9360000000000000000,"z":-8360000000000000000}},"30012041":{"solarSystemId":30012041,"solarSystemName":"F:3O8K","location":{"x":-2010000000000000000,"y":-8480000000000000000,"z":-10700000000000000000}},"30012042":{"solarSystemId":30012042,"solarSystemName":"H:3T8E","location":{"x":-3860000000000000000,"y":-9840000000000000000,"z":-9150000000000000000}},"30012043":{"solarSystemId":30012043,"solarSystemName":"Z:3T6O","location":{"x":-256000000000000000,"y":-9490000000000000000,"z":-9830000000000000000}},"30012044":{"solarSystemId":30012044,"solarSystemName":"U:2OV4","location":{"x":-10100000000000000000,"y":-6370000000000000000,"z":-12800000000000000000}},"30012045":{"solarSystemId":30012045,"solarSystemName":"J:35TA","location":{"x":-8310000000000000000,"y":-8470000000000000000,"z":-12700000000000000000}},"30012046":{"solarSystemId":30012046,"solarSystemName":"B:3ELN","location":{"x":-8370000000000000000,"y":-7740000000000000000,"z":-13000000000000000000}},"30012047":{"solarSystemId":30012047,"solarSystemName":"G:11VK","location":{"x":-9220000000000000000,"y":-5430000000000000000,"z":-9390000000000000000}},"30012048":{"solarSystemId":30012048,"solarSystemName":"Z:1AEL","location":{"x":-9340000000000000000,"y":-6130000000000000000,"z":-9150000000000000000}},"30012049":{"solarSystemId":30012049,"solarSystemName":"U:35TL","location":{"x":-5170000000000000000,"y":-6810000000000000000,"z":-11900000000000000000}},"30012050":{"solarSystemId":30012050,"solarSystemName":"Z:3O44","location":{"x":-11000000000000000000,"y":-6860000000000000000,"z":-16300000000000000000}},"30012051":{"solarSystemId":30012051,"solarSystemName":"G:2K0V","location":{"x":-4900000000000000000,"y":-6300000000000000000,"z":-11200000000000000000}},"30012052":{"solarSystemId":30012052,"solarSystemName":"G:35N7","location":{"x":-8240000000000000000,"y":-7060000000000000000,"z":-16100000000000000000}},"30012053":{"solarSystemId":30012053,"solarSystemName":"Y:2OT6","location":{"x":-10900000000000000000,"y":-2470000000000000000,"z":-12100000000000000000}},"30012054":{"solarSystemId":30012054,"solarSystemName":"Q:3NLI","location":{"x":-2230000000000000000,"y":-2890000000000000000,"z":-14500000000000000000}},"30012055":{"solarSystemId":30012055,"solarSystemName":"J:2NNE","location":{"x":-6450000000000000000,"y":-6320000000000000000,"z":-15400000000000000000}},"30012056":{"solarSystemId":30012056,"solarSystemName":"D:3363","location":{"x":-3600000000000000000,"y":-4780000000000000000,"z":-11600000000000000000}},"30012057":{"solarSystemId":30012057,"solarSystemName":"F:3N61","location":{"x":-5170000000000000000,"y":-7720000000000000000,"z":-13500000000000000000}},"30012058":{"solarSystemId":30012058,"solarSystemName":"U:3ETS","location":{"x":-3420000000000000000,"y":-5540000000000000000,"z":-15000000000000000000}},"30012059":{"solarSystemId":30012059,"solarSystemName":"U:2TOE","location":{"x":-3890000000000000000,"y":-1790000000000000000,"z":-15400000000000000000}},"30012060":{"solarSystemId":30012060,"solarSystemName":"J:39V4","location":{"x":-7200000000000000000,"y":-3600000000000000000,"z":-14700000000000000000}},"30012061":{"solarSystemId":30012061,"solarSystemName":"D:35V1","location":{"x":-8730000000000000000,"y":-2120000000000000000,"z":-12900000000000000000}},"30012062":{"solarSystemId":30012062,"solarSystemName":"B:37N7","location":{"x":-8100000000000000000,"y":-3120000000000000000,"z":-12500000000000000000}},"30012063":{"solarSystemId":30012063,"solarSystemName":"Y:2IE4","location":{"x":-6070000000000000000,"y":-3790000000000000000,"z":-12900000000000000000}},"30012064":{"solarSystemId":30012064,"solarSystemName":"G:2AEV","location":{"x":-5460000000000000000,"y":-2430000000000000000,"z":-15300000000000000000}},"30012065":{"solarSystemId":30012065,"solarSystemName":"P:K05T","location":{"x":-4210000000000000000,"y":-1970000000000000000,"z":-14200000000000000000}},"30012066":{"solarSystemId":30012066,"solarSystemName":"Y:R512","location":{"x":-9440000000000000000,"y":-2040000000000000000,"z":-12700000000000000000}},"30012067":{"solarSystemId":30012067,"solarSystemName":"H:2I6S","location":{"x":-223000000000000000,"y":-8110000000000000000,"z":-17500000000000000000}},"30012068":{"solarSystemId":30012068,"solarSystemName":"F:2O68","location":{"x":1330000000000000000,"y":-8530000000000000000,"z":-13400000000000000000}},"30012069":{"solarSystemId":30012069,"solarSystemName":"G:2SNN","location":{"x":-162000000000000000,"y":-8800000000000000000,"z":-18200000000000000000}},"30012070":{"solarSystemId":30012070,"solarSystemName":"U:3A6K","location":{"x":2360000000000000000,"y":-8840000000000000000,"z":-14500000000000000000}},"30012071":{"solarSystemId":30012071,"solarSystemName":"H:3IL2","location":{"x":-3070000000000000000,"y":-7470000000000000000,"z":-13600000000000000000}},"30012072":{"solarSystemId":30012072,"solarSystemName":"E.2Y9.M1F","location":{"x":-11400000000000000000,"y":-758000000000000000,"z":-32200000000000000000}},"30012073":{"solarSystemId":30012073,"solarSystemName":"E.2RS.2MB","location":{"x":-12000000000000000000,"y":-812000000000000000,"z":-33200000000000000000}},"30012074":{"solarSystemId":30012074,"solarSystemName":"T.4H9.VXF","location":{"x":-11200000000000000000,"y":-787000000000000000,"z":-33800000000000000000}},"30012075":{"solarSystemId":30012075,"solarSystemName":"N.7FS.FLH","location":{"x":-12300000000000000000,"y":-881000000000000000,"z":-33000000000000000000}},"30012076":{"solarSystemId":30012076,"solarSystemName":"N.1RS.Y4L","location":{"x":-12000000000000000000,"y":-510000000000000000,"z":-33600000000000000000}},"30012077":{"solarSystemId":30012077,"solarSystemName":"U.6ET.K16","location":{"x":-13800000000000000000,"y":-218000000000000000,"z":-32800000000000000000}},"30012078":{"solarSystemId":30012078,"solarSystemName":"U.K1N.0ZR","location":{"x":-13900000000000000000,"y":-500000000000000000,"z":-30400000000000000000}},"30012079":{"solarSystemId":30012079,"solarSystemName":"I.CNT.VNQ","location":{"x":-13100000000000000000,"y":-735000000000000000,"z":-30100000000000000000}},"30012080":{"solarSystemId":30012080,"solarSystemName":"E.G9N.711","location":{"x":-14200000000000000000,"y":-1200000000000000000,"z":-30900000000000000000}},"30012081":{"solarSystemId":30012081,"solarSystemName":"T.L2N.7M1","location":{"x":-13900000000000000000,"y":-1770000000000000000,"z":-29900000000000000000}},"30012082":{"solarSystemId":30012082,"solarSystemName":"E.F2T.74Y","location":{"x":-12800000000000000000,"y":-978000000000000000,"z":-32000000000000000000}},"30012083":{"solarSystemId":30012083,"solarSystemName":"I.2PT.VC9","location":{"x":-13300000000000000000,"y":-343000000000000000,"z":-32900000000000000000}},"30012084":{"solarSystemId":30012084,"solarSystemName":"I.PTT.WL3","location":{"x":-13100000000000000000,"y":-125000000000000000,"z":-33900000000000000000}},"30012085":{"solarSystemId":30012085,"solarSystemName":"D.SPN.5E5","location":{"x":-14500000000000000000,"y":-215000000000000000,"z":-34700000000000000000}},"30012086":{"solarSystemId":30012086,"solarSystemName":"E.DYT.K11","location":{"x":-13700000000000000000,"y":-1220000000000000000,"z":-35700000000000000000}},"30012087":{"solarSystemId":30012087,"solarSystemName":"T.PGN.4GK","location":{"x":-14700000000000000000,"y":-1110000000000000000,"z":-36100000000000000000}},"30012088":{"solarSystemId":30012088,"solarSystemName":"L.JVT.V51","location":{"x":-13400000000000000000,"y":-1350000000000000000,"z":-34700000000000000000}},"30012089":{"solarSystemId":30012089,"solarSystemName":"E.859.HNJ","location":{"x":-10600000000000000000,"y":-915000000000000000,"z":-33100000000000000000}},"30012090":{"solarSystemId":30012090,"solarSystemName":"N.Z09.11K","location":{"x":-10400000000000000000,"y":-1080000000000000000,"z":-33300000000000000000}},"30012091":{"solarSystemId":30012091,"solarSystemName":"U.799.T9Y","location":{"x":-10700000000000000000,"y":-983000000000000000,"z":-33500000000000000000}},"30012092":{"solarSystemId":30012092,"solarSystemName":"R.TRS.T46","location":{"x":-12000000000000000000,"y":-221000000000000000,"z":-35000000000000000000}},"30012093":{"solarSystemId":30012093,"solarSystemName":"D.PM8.R51","location":{"x":-9860000000000000000,"y":-1350000000000000000,"z":-37400000000000000000}},"30012094":{"solarSystemId":30012094,"solarSystemName":"H.NH6.QT8","location":{"x":-7800000000000000000,"y":301000000000000000,"z":-34700000000000000000}},"30012095":{"solarSystemId":30012095,"solarSystemName":"D.348.S8M","location":{"x":-9370000000000000000,"y":-622000000000000000,"z":-33800000000000000000}},"30012096":{"solarSystemId":30012096,"solarSystemName":"I.L78.LHS","location":{"x":-9490000000000000000,"y":-388000000000000000,"z":-33400000000000000000}},"30012097":{"solarSystemId":30012097,"solarSystemName":"A.C57.94S","location":{"x":-8270000000000000000,"y":-365000000000000000,"z":-32900000000000000000}},"30012098":{"solarSystemId":30012098,"solarSystemName":"A.GK7.3ZZ","location":{"x":-9180000000000000000,"y":-1040000000000000000,"z":-34300000000000000000}},"30012099":{"solarSystemId":30012099,"solarSystemName":"R.LZ6.88D","location":{"x":-7940000000000000000,"y":-550000000000000000,"z":-33900000000000000000}},"30012100":{"solarSystemId":30012100,"solarSystemName":"E.3BR.9WZ","location":{"x":-15800000000000000000,"y":-1040000000000000000,"z":-33100000000000000000}},"30012101":{"solarSystemId":30012101,"solarSystemName":"U.KFN.S11","location":{"x":-14600000000000000000,"y":-1200000000000000000,"z":-32600000000000000000}},"30012102":{"solarSystemId":30012102,"solarSystemName":"N.3GN.Y01","location":{"x":-14700000000000000000,"y":-1180000000000000000,"z":-32400000000000000000}},"30012103":{"solarSystemId":30012103,"solarSystemName":"R.PQN.501","location":{"x":-14600000000000000000,"y":-1160000000000000000,"z":-33100000000000000000}},"30012104":{"solarSystemId":30012104,"solarSystemName":"N.56N.HTB","location":{"x":-14100000000000000000,"y":-806000000000000000,"z":-32200000000000000000}},"30012105":{"solarSystemId":30012105,"solarSystemName":"Geist","location":{"x":-14000000000000000000,"y":-824000000000000000,"z":-32600000000000000000}},"30012106":{"solarSystemId":30012106,"solarSystemName":"G:T26A","location":{"x":-803000000000000000,"y":2790000000000000000,"z":-12400000000000000000}},"30012107":{"solarSystemId":30012107,"solarSystemName":"G:3491","location":{"x":-689000000000000000,"y":2220000000000000000,"z":-12500000000000000000}},"30012108":{"solarSystemId":30012108,"solarSystemName":"B:2T5E","location":{"x":-131000000000000000,"y":3640000000000000000,"z":-12900000000000000000}},"30012109":{"solarSystemId":30012109,"solarSystemName":"D:1V0A","location":{"x":333000000000000000,"y":2360000000000000000,"z":-11500000000000000000}},"30012110":{"solarSystemId":30012110,"solarSystemName":"G:KK80","location":{"x":-713000000000000000,"y":2540000000000000000,"z":-12500000000000000000}},"30012111":{"solarSystemId":30012111,"solarSystemName":"Q:1T8T","location":{"x":-11800000000000000,"y":2730000000000000000,"z":-12400000000000000000}},"30012112":{"solarSystemId":30012112,"solarSystemName":"U:1L4O","location":{"x":-334000000000000000,"y":1710000000000000000,"z":-12200000000000000000}},"30012113":{"solarSystemId":30012113,"solarSystemName":"Q:O176","location":{"x":485000000000000000,"y":1810000000000000000,"z":-12000000000000000000}},"30012114":{"solarSystemId":30012114,"solarSystemName":"D:2V13","location":{"x":-1720000000000000000,"y":7420000000000000000,"z":-12900000000000000000}},"30012115":{"solarSystemId":30012115,"solarSystemName":"H:34RV","location":{"x":-2840000000000000000,"y":8530000000000000000,"z":-11000000000000000000}},"30012116":{"solarSystemId":30012116,"solarSystemName":"H:38OS","location":{"x":-4420000000000000000,"y":6990000000000000000,"z":-11000000000000000000}},"30012117":{"solarSystemId":30012117,"solarSystemName":"P:3TS8","location":{"x":-6230000000000000000,"y":6670000000000000000,"z":-13100000000000000000}},"30012118":{"solarSystemId":30012118,"solarSystemName":"Z:1VNS","location":{"x":-4430000000000000000,"y":7300000000000000000,"z":-14500000000000000000}},"30012119":{"solarSystemId":30012119,"solarSystemName":"Z:391N","location":{"x":4740000000000000000,"y":3690000000000000000,"z":-9480000000000000000}},"30012120":{"solarSystemId":30012120,"solarSystemName":"F:2ILI","location":{"x":3130000000000000000,"y":4580000000000000000,"z":-8740000000000000000}},"30012121":{"solarSystemId":30012121,"solarSystemName":"G:29AS","location":{"x":1730000000000000000,"y":1990000000000000000,"z":-10200000000000000000}},"30012122":{"solarSystemId":30012122,"solarSystemName":"G:359L","location":{"x":2990000000000000000,"y":4060000000000000000,"z":-12000000000000000000}},"30012123":{"solarSystemId":30012123,"solarSystemName":"Y:KV0O","location":{"x":738000000000000000,"y":2590000000000000000,"z":-8040000000000000000}},"30012124":{"solarSystemId":30012124,"solarSystemName":"D:1IIN","location":{"x":1770000000000000000,"y":1820000000000000000,"z":-9210000000000000000}},"30012125":{"solarSystemId":30012125,"solarSystemName":"P:2R48","location":{"x":1550000000000000000,"y":5840000000000000000,"z":-8340000000000000000}},"30012126":{"solarSystemId":30012126,"solarSystemName":"F:29ST","location":{"x":-39200000000000000,"y":4420000000000000000,"z":-8240000000000000000}},"30012127":{"solarSystemId":30012127,"solarSystemName":"M:2NT0","location":{"x":18500000000000000,"y":5180000000000000000,"z":-9780000000000000000}},"30012128":{"solarSystemId":30012128,"solarSystemName":"D:3245","location":{"x":473000000000000000,"y":3160000000000000000,"z":-10800000000000000000}},"30012129":{"solarSystemId":30012129,"solarSystemName":"H:1SIN","location":{"x":-338000000000000000,"y":5020000000000000000,"z":-10400000000000000000}},"30012130":{"solarSystemId":30012130,"solarSystemName":"U:3AR9","location":{"x":1150000000000000000,"y":4590000000000000000,"z":-9540000000000000000}},"30012131":{"solarSystemId":30012131,"solarSystemName":"P:3SOL","location":{"x":-1350000000000000000,"y":7320000000000000000,"z":-10600000000000000000}},"30012132":{"solarSystemId":30012132,"solarSystemName":"H:2964","location":{"x":-642000000000000000,"y":6530000000000000000,"z":-10500000000000000000}},"30012133":{"solarSystemId":30012133,"solarSystemName":"H:2LVT","location":{"x":-1450000000000000000,"y":7940000000000000000,"z":-12100000000000000000}},"30012134":{"solarSystemId":30012134,"solarSystemName":"H:R65O","location":{"x":-2450000000000000000,"y":6370000000000000000,"z":-9790000000000000000}},"30012135":{"solarSystemId":30012135,"solarSystemName":"Z:EO03","location":{"x":-3020000000000000000,"y":6650000000000000000,"z":-10300000000000000000}},"30012136":{"solarSystemId":30012136,"solarSystemName":"Y:2998","location":{"x":-1660000000000000000,"y":7180000000000000000,"z":-11000000000000000000}},"30012137":{"solarSystemId":30012137,"solarSystemName":"Y:34AT","location":{"x":-243000000000000000,"y":10800000000000000000,"z":-11200000000000000000}},"30012138":{"solarSystemId":30012138,"solarSystemName":"Q:330V","location":{"x":-174000000000000000,"y":12100000000000000000,"z":-10100000000000000000}},"30012139":{"solarSystemId":30012139,"solarSystemName":"Z:3297","location":{"x":254000000000000000,"y":8370000000000000000,"z":-9770000000000000000}},"30012140":{"solarSystemId":30012140,"solarSystemName":"H:2AA4","location":{"x":-439000000000000000,"y":8800000000000000000,"z":-8950000000000000000}},"30012141":{"solarSystemId":30012141,"solarSystemName":"H:3OR9","location":{"x":-988000000000000000,"y":11300000000000000000,"z":-10300000000000000000}},"30012142":{"solarSystemId":30012142,"solarSystemName":"Q:2N66","location":{"x":4820000000000000000,"y":9670000000000000000,"z":-11600000000000000000}},"30012143":{"solarSystemId":30012143,"solarSystemName":"Z:2S6K","location":{"x":6360000000000000000,"y":8480000000000000000,"z":-13400000000000000000}},"30012144":{"solarSystemId":30012144,"solarSystemName":"P:3OIT","location":{"x":3760000000000000000,"y":7290000000000000000,"z":-6810000000000000000}},"30012145":{"solarSystemId":30012145,"solarSystemName":"U:2LNK","location":{"x":3360000000000000000,"y":12700000000000000000,"z":-8800000000000000000}},"30012146":{"solarSystemId":30012146,"solarSystemName":"B:3TNR","location":{"x":5300000000000000000,"y":8880000000000000000,"z":-11900000000000000000}},"30012147":{"solarSystemId":30012147,"solarSystemName":"U:3S70","location":{"x":5410000000000000000,"y":7160000000000000000,"z":-14200000000000000000}},"30012148":{"solarSystemId":30012148,"solarSystemName":"Z:3V80","location":{"x":4870000000000000000,"y":5570000000000000000,"z":-10800000000000000000}},"30012149":{"solarSystemId":30012149,"solarSystemName":"P:2N8O","location":{"x":6620000000000000000,"y":5380000000000000000,"z":-15100000000000000000}},"30012150":{"solarSystemId":30012150,"solarSystemName":"M:35E0","location":{"x":9240000000000000000,"y":7510000000000000000,"z":-14300000000000000000}},"30012151":{"solarSystemId":30012151,"solarSystemName":"J:36AK","location":{"x":4580000000000000000,"y":5420000000000000000,"z":-12700000000000000000}},"30012152":{"solarSystemId":30012152,"solarSystemName":"Q:37V5","location":{"x":-8800000000000000000,"y":1140000000000000000,"z":-7770000000000000000}},"30012153":{"solarSystemId":30012153,"solarSystemName":"M:2LR2","location":{"x":-9220000000000000000,"y":2000000000000000000,"z":-7880000000000000000}},"30012154":{"solarSystemId":30012154,"solarSystemName":"Q:O4E4","location":{"x":-9740000000000000000,"y":1080000000000000000,"z":-8110000000000000000}},"30012155":{"solarSystemId":30012155,"solarSystemName":"D:NVN3","location":{"x":-10000000000000000000,"y":1320000000000000000,"z":-8270000000000000000}},"30012156":{"solarSystemId":30012156,"solarSystemName":"Y:21S2","location":{"x":-9760000000000000000,"y":1200000000000000000,"z":-9160000000000000000}},"30012157":{"solarSystemId":30012157,"solarSystemName":"D:28LV","location":{"x":-8660000000000000000,"y":1380000000000000000,"z":-9410000000000000000}},"30012158":{"solarSystemId":30012158,"solarSystemName":"B:TRR9","location":{"x":-8270000000000000000,"y":1130000000000000000,"z":-8800000000000000000}},"30012159":{"solarSystemId":30012159,"solarSystemName":"P:30SI","location":{"x":-8930000000000000000,"y":1010000000000000000,"z":-7730000000000000000}},"30012160":{"solarSystemId":30012160,"solarSystemName":"Y:12LR","location":{"x":-9460000000000000000,"y":1760000000000000000,"z":-7540000000000000000}},"30012161":{"solarSystemId":30012161,"solarSystemName":"H:2A59","location":{"x":-9080000000000000000,"y":1620000000000000000,"z":-8650000000000000000}},"30012162":{"solarSystemId":30012162,"solarSystemName":"Q:3SNA","location":{"x":-9400000000000000000,"y":1260000000000000000,"z":-8950000000000000000}},"30012163":{"solarSystemId":30012163,"solarSystemName":"J:1137","location":{"x":-8990000000000000000,"y":1420000000000000000,"z":-9650000000000000000}},"30012164":{"solarSystemId":30012164,"solarSystemName":"Y:111R","location":{"x":-9360000000000000000,"y":2110000000000000000,"z":-9510000000000000000}},"30012165":{"solarSystemId":30012165,"solarSystemName":"D:3AL6","location":{"x":-9250000000000000000,"y":2070000000000000000,"z":-7980000000000000000}},"30012166":{"solarSystemId":30012166,"solarSystemName":"B:2LR0","location":{"x":-10100000000000000000,"y":1150000000000000000,"z":-8540000000000000000}},"30012167":{"solarSystemId":30012167,"solarSystemName":"Y:24R7","location":{"x":-9880000000000000000,"y":1110000000000000000,"z":-8600000000000000000}},"30012168":{"solarSystemId":30012168,"solarSystemName":"Q:23AL","location":{"x":-10300000000000000000,"y":1280000000000000000,"z":-8560000000000000000}},"30012169":{"solarSystemId":30012169,"solarSystemName":"P:277L","location":{"x":-10800000000000000000,"y":395000000000000000,"z":-6740000000000000000}},"30012170":{"solarSystemId":30012170,"solarSystemName":"Y:3458","location":{"x":-10900000000000000000,"y":334000000000000000,"z":-6680000000000000000}},"30012171":{"solarSystemId":30012171,"solarSystemName":"M:190I","location":{"x":-11000000000000000000,"y":226000000000000000,"z":-6770000000000000000}},"30012172":{"solarSystemId":30012172,"solarSystemName":"U:KE9R","location":{"x":-10900000000000000000,"y":307000000000000000,"z":-6800000000000000000}},"30012173":{"solarSystemId":30012173,"solarSystemName":"Y:2SAK","location":{"x":-11000000000000000000,"y":463000000000000000,"z":-6830000000000000000}},"30012174":{"solarSystemId":30012174,"solarSystemName":"G:148E","location":{"x":-11000000000000000000,"y":259000000000000000,"z":-6740000000000000000}},"30012175":{"solarSystemId":30012175,"solarSystemName":"M:41L0","location":{"x":-11100000000000000000,"y":442000000000000000,"z":-6650000000000000000}},"30012176":{"solarSystemId":30012176,"solarSystemName":"J:1L9K","location":{"x":-10900000000000000000,"y":274000000000000000,"z":-6810000000000000000}},"30012177":{"solarSystemId":30012177,"solarSystemName":"B:15RT","location":{"x":-11000000000000000000,"y":406000000000000000,"z":-6660000000000000000}},"30012178":{"solarSystemId":30012178,"solarSystemName":"J:23TA","location":{"x":-10900000000000000000,"y":270000000000000000,"z":-6780000000000000000}},"30012179":{"solarSystemId":30012179,"solarSystemName":"Y:12I4","location":{"x":-10800000000000000000,"y":231000000000000000,"z":-6820000000000000000}},"30012180":{"solarSystemId":30012180,"solarSystemName":"G:297S","location":{"x":-11000000000000000000,"y":455000000000000000,"z":-6920000000000000000}},"30012181":{"solarSystemId":30012181,"solarSystemName":"D:2SN2","location":{"x":-10900000000000000000,"y":580000000000000000,"z":-6950000000000000000}},"30012182":{"solarSystemId":30012182,"solarSystemName":"G:1KO4","location":{"x":-10800000000000000000,"y":213000000000000000,"z":-6740000000000000000}},"30012183":{"solarSystemId":30012183,"solarSystemName":"D:4SI0","location":{"x":-10700000000000000000,"y":364000000000000000,"z":-6770000000000000000}},"30012184":{"solarSystemId":30012184,"solarSystemName":"P:2I4A","location":{"x":-11000000000000000000,"y":357000000000000000,"z":-6600000000000000000}},"30012185":{"solarSystemId":30012185,"solarSystemName":"B:2N4S","location":{"x":-10900000000000000000,"y":283000000000000000,"z":-6860000000000000000}},"30012186":{"solarSystemId":30012186,"solarSystemName":"Y:18NA","location":{"x":-10900000000000000000,"y":468000000000000000,"z":-6850000000000000000}},"30012187":{"solarSystemId":30012187,"solarSystemName":"F:2EN8","location":{"x":-11000000000000000000,"y":647000000000000000,"z":-6690000000000000000}},"30012188":{"solarSystemId":30012188,"solarSystemName":"P:195K","location":{"x":-10800000000000000000,"y":311000000000000000,"z":-6870000000000000000}},"30012189":{"solarSystemId":30012189,"solarSystemName":"H:2TTS","location":{"x":-11100000000000000000,"y":464000000000000000,"z":-6600000000000000000}},"30012190":{"solarSystemId":30012190,"solarSystemName":"B:27O5","location":{"x":-11000000000000000000,"y":399000000000000000,"z":-6820000000000000000}},"30012191":{"solarSystemId":30012191,"solarSystemName":"B:267V","location":{"x":-11000000000000000000,"y":501000000000000000,"z":-6870000000000000000}},"30012192":{"solarSystemId":30012192,"solarSystemName":"Q:248V","location":{"x":-11000000000000000000,"y":508000000000000000,"z":-6800000000000000000}},"30012193":{"solarSystemId":30012193,"solarSystemName":"G:24S3","location":{"x":-11000000000000000000,"y":659000000000000000,"z":-6860000000000000000}},"30012194":{"solarSystemId":30012194,"solarSystemName":"B:2341","location":{"x":-10800000000000000000,"y":413000000000000000,"z":-6760000000000000000}},"30012195":{"solarSystemId":30012195,"solarSystemName":"G:28O9","location":{"x":-10700000000000000000,"y":513000000000000000,"z":-6870000000000000000}},"30012196":{"solarSystemId":30012196,"solarSystemName":"H:33VN","location":{"x":-10700000000000000000,"y":103000000000000000,"z":-6800000000000000000}},"30012197":{"solarSystemId":30012197,"solarSystemName":"M:261I","location":{"x":-10800000000000000000,"y":192000000000000000,"z":-6780000000000000000}},"30012198":{"solarSystemId":30012198,"solarSystemName":"Q:11SK","location":{"x":-10700000000000000000,"y":169000000000000000,"z":-6690000000000000000}},"30012199":{"solarSystemId":30012199,"solarSystemName":"U:1EET","location":{"x":-10700000000000000000,"y":193000000000000000,"z":-6770000000000000000}},"30012200":{"solarSystemId":30012200,"solarSystemName":"P:1KS7","location":{"x":-10700000000000000000,"y":81600000000000000,"z":-6700000000000000000}},"30012201":{"solarSystemId":30012201,"solarSystemName":"G:1K30","location":{"x":-10800000000000000000,"y":101000000000000000,"z":-6730000000000000000}},"30012202":{"solarSystemId":30012202,"solarSystemName":"U:3S0E","location":{"x":-10700000000000000000,"y":215000000000000000,"z":-6700000000000000000}},"30012203":{"solarSystemId":30012203,"solarSystemName":"H:1NOL","location":{"x":-10800000000000000000,"y":191000000000000000,"z":-6740000000000000000}},"30012204":{"solarSystemId":30012204,"solarSystemName":"Q:2NR5","location":{"x":-10900000000000000000,"y":86100000000000000,"z":-6750000000000000000}},"30012205":{"solarSystemId":30012205,"solarSystemName":"Z:3KE5","location":{"x":-10700000000000000000,"y":143000000000000000,"z":-6720000000000000000}},"30012206":{"solarSystemId":30012206,"solarSystemName":"F:2T68","location":{"x":-10900000000000000000,"y":193000000000000000,"z":-6740000000000000000}},"30012207":{"solarSystemId":30012207,"solarSystemName":"M:301A","location":{"x":-10900000000000000000,"y":38400000000000000,"z":-6850000000000000000}},"30012208":{"solarSystemId":30012208,"solarSystemName":"B:2KN7","location":{"x":-10700000000000000000,"y":103000000000000000,"z":-6920000000000000000}},"30012209":{"solarSystemId":30012209,"solarSystemName":"B:TK17","location":{"x":-10900000000000000000,"y":121000000000000000,"z":-6710000000000000000}},"30012210":{"solarSystemId":30012210,"solarSystemName":"G:172S","location":{"x":-10800000000000000000,"y":123000000000000000,"z":-6820000000000000000}},"30012211":{"solarSystemId":30012211,"solarSystemName":"H:VK3I","location":{"x":-10800000000000000000,"y":45300000000000000,"z":-6690000000000000000}},"30012212":{"solarSystemId":30012212,"solarSystemName":"Q:22NT","location":{"x":-10700000000000000000,"y":214000000000000000,"z":-6710000000000000000}},"30012213":{"solarSystemId":30012213,"solarSystemName":"D:R3L3","location":{"x":-10800000000000000000,"y":169000000000000000,"z":-6720000000000000000}},"30012214":{"solarSystemId":30012214,"solarSystemName":"Y:2445","location":{"x":-10800000000000000000,"y":53600000000000000,"z":-6700000000000000000}},"30012215":{"solarSystemId":30012215,"solarSystemName":"Y:24V3","location":{"x":-10900000000000000000,"y":282000000000000000,"z":-7340000000000000000}},"30012216":{"solarSystemId":30012216,"solarSystemName":"M:32LT","location":{"x":-10900000000000000000,"y":401000000000000000,"z":-7380000000000000000}},"30012217":{"solarSystemId":30012217,"solarSystemName":"G:2TI7","location":{"x":-10800000000000000000,"y":348000000000000000,"z":-7360000000000000000}},"30012218":{"solarSystemId":30012218,"solarSystemName":"F:264V","location":{"x":-10900000000000000000,"y":424000000000000000,"z":-7300000000000000000}},"30012219":{"solarSystemId":30012219,"solarSystemName":"Y:305I","location":{"x":-10900000000000000000,"y":310000000000000000,"z":-7310000000000000000}},"30012220":{"solarSystemId":30012220,"solarSystemName":"F:1V8R","location":{"x":-10900000000000000000,"y":403000000000000000,"z":-7280000000000000000}},"30012221":{"solarSystemId":30012221,"solarSystemName":"B:2259","location":{"x":-11000000000000000000,"y":416000000000000000,"z":-7330000000000000000}},"30012222":{"solarSystemId":30012222,"solarSystemName":"B:2O9E","location":{"x":-11000000000000000000,"y":405000000000000000,"z":-7280000000000000000}},"30012223":{"solarSystemId":30012223,"solarSystemName":"Y:ROS7","location":{"x":-10900000000000000000,"y":423000000000000000,"z":-7280000000000000000}},"30012224":{"solarSystemId":30012224,"solarSystemName":"B:13VI","location":{"x":-10900000000000000000,"y":371000000000000000,"z":-7280000000000000000}},"30012225":{"solarSystemId":30012225,"solarSystemName":"U:23I2","location":{"x":-11000000000000000000,"y":330000000000000000,"z":-7250000000000000000}},"30012226":{"solarSystemId":30012226,"solarSystemName":"Z:2O1N","location":{"x":-11000000000000000000,"y":362000000000000000,"z":-7240000000000000000}},"30012227":{"solarSystemId":30012227,"solarSystemName":"P:2V0N","location":{"x":-11000000000000000000,"y":361000000000000000,"z":-7320000000000000000}},"30012228":{"solarSystemId":30012228,"solarSystemName":"U:2T3N","location":{"x":-11000000000000000000,"y":422000000000000000,"z":-7290000000000000000}},"30012229":{"solarSystemId":30012229,"solarSystemName":"P:2NT6","location":{"x":-11000000000000000000,"y":327000000000000000,"z":-7320000000000000000}},"30012230":{"solarSystemId":30012230,"solarSystemName":"B:2R3I","location":{"x":-11000000000000000000,"y":318000000000000000,"z":-7370000000000000000}},"30012231":{"solarSystemId":30012231,"solarSystemName":"B:23T8","location":{"x":-10900000000000000000,"y":358000000000000000,"z":-7270000000000000000}},"30012232":{"solarSystemId":30012232,"solarSystemName":"P:28R4","location":{"x":-11000000000000000000,"y":410000000000000000,"z":-7390000000000000000}},"30012233":{"solarSystemId":30012233,"solarSystemName":"U:25O7","location":{"x":-10400000000000000000,"y":402000000000000000,"z":-7320000000000000000}},"30012234":{"solarSystemId":30012234,"solarSystemName":"G:33KA","location":{"x":-10600000000000000000,"y":564000000000000000,"z":-7250000000000000000}},"30012235":{"solarSystemId":30012235,"solarSystemName":"Y:OT86","location":{"x":-10500000000000000000,"y":461000000000000000,"z":-7240000000000000000}},"30012236":{"solarSystemId":30012236,"solarSystemName":"U:1L3N","location":{"x":-10500000000000000000,"y":391000000000000000,"z":-7170000000000000000}},"30012237":{"solarSystemId":30012237,"solarSystemName":"H:1TO2","location":{"x":-10600000000000000000,"y":477000000000000000,"z":-7360000000000000000}},"30012238":{"solarSystemId":30012238,"solarSystemName":"U:1K17","location":{"x":-10500000000000000000,"y":360000000000000000,"z":-7210000000000000000}},"30012239":{"solarSystemId":30012239,"solarSystemName":"Z:1OTE","location":{"x":-10400000000000000000,"y":437000000000000000,"z":-7330000000000000000}},"30012240":{"solarSystemId":30012240,"solarSystemName":"D:2838","location":{"x":-10500000000000000000,"y":424000000000000000,"z":-7090000000000000000}},"30012241":{"solarSystemId":30012241,"solarSystemName":"Y:1K36","location":{"x":-10400000000000000000,"y":471000000000000000,"z":-7290000000000000000}},"30012242":{"solarSystemId":30012242,"solarSystemName":"H:AK23","location":{"x":-10600000000000000000,"y":444000000000000000,"z":-7110000000000000000}},"30012243":{"solarSystemId":30012243,"solarSystemName":"G:2T97","location":{"x":-10600000000000000000,"y":432000000000000000,"z":-7250000000000000000}},"30012244":{"solarSystemId":30012244,"solarSystemName":"D:2E03","location":{"x":-10300000000000000000,"y":489000000000000000,"z":-7230000000000000000}},"30012245":{"solarSystemId":30012245,"solarSystemName":"G:10SN","location":{"x":-10600000000000000000,"y":371000000000000000,"z":-7180000000000000000}},"30012246":{"solarSystemId":30012246,"solarSystemName":"G:1525","location":{"x":-10600000000000000000,"y":462000000000000000,"z":-7210000000000000000}},"30012247":{"solarSystemId":30012247,"solarSystemName":"Q:2OO1","location":{"x":-10400000000000000000,"y":467000000000000000,"z":-7350000000000000000}},"30012248":{"solarSystemId":30012248,"solarSystemName":"H:1179","location":{"x":-10400000000000000000,"y":370000000000000000,"z":-7210000000000000000}},"30012249":{"solarSystemId":30012249,"solarSystemName":"Y:1O56","location":{"x":-10600000000000000000,"y":481000000000000000,"z":-7220000000000000000}},"30012250":{"solarSystemId":30012250,"solarSystemName":"D:25RS","location":{"x":-10500000000000000000,"y":479000000000000000,"z":-7250000000000000000}},"30012251":{"solarSystemId":30012251,"solarSystemName":"M:2EOE","location":{"x":-9770000000000000000,"y":271000000000000000,"z":-6890000000000000000}},"30012252":{"solarSystemId":30012252,"solarSystemName":"Q:2NOE","location":{"x":-9180000000000000000,"y":296000000000000000,"z":-6550000000000000000}},"30012253":{"solarSystemId":30012253,"solarSystemName":"P:23LO","location":{"x":-9370000000000000000,"y":158000000000000000,"z":-6620000000000000000}},"30012254":{"solarSystemId":30012254,"solarSystemName":"Q:1760","location":{"x":-9460000000000000000,"y":432000000000000000,"z":-6890000000000000000}},"30012255":{"solarSystemId":30012255,"solarSystemName":"B:2N70","location":{"x":-9620000000000000000,"y":296000000000000000,"z":-6610000000000000000}},"30012256":{"solarSystemId":30012256,"solarSystemName":"F:1E15","location":{"x":-9740000000000000000,"y":205000000000000000,"z":-6880000000000000000}},"30012257":{"solarSystemId":30012257,"solarSystemName":"U:1NAS","location":{"x":-9480000000000000000,"y":162000000000000000,"z":-6640000000000000000}},"30012258":{"solarSystemId":30012258,"solarSystemName":"U:KR0N","location":{"x":-9490000000000000000,"y":506000000000000000,"z":-6940000000000000000}},"30012259":{"solarSystemId":30012259,"solarSystemName":"J:2202","location":{"x":-9870000000000000000,"y":252000000000000000,"z":-6860000000000000000}},"30012260":{"solarSystemId":30012260,"solarSystemName":"F:1RLS","location":{"x":-9530000000000000000,"y":101000000000000000,"z":-6490000000000000000}},"30012261":{"solarSystemId":30012261,"solarSystemName":"J:KIVS","location":{"x":-9220000000000000000,"y":85500000000000000,"z":-6760000000000000000}},"30012262":{"solarSystemId":30012262,"solarSystemName":"J:12N5","location":{"x":-9690000000000000000,"y":491000000000000000,"z":-6940000000000000000}},"30012263":{"solarSystemId":30012263,"solarSystemName":"Y:1752","location":{"x":-9680000000000000000,"y":335000000000000000,"z":-6680000000000000000}},"30012264":{"solarSystemId":30012264,"solarSystemName":"J:2582","location":{"x":-9540000000000000000,"y":211000000000000000,"z":-6680000000000000000}},"30012265":{"solarSystemId":30012265,"solarSystemName":"H:1K92","location":{"x":-9310000000000000000,"y":132000000000000000,"z":-6320000000000000000}},"30012266":{"solarSystemId":30012266,"solarSystemName":"Y:SNLA","location":{"x":-9310000000000000000,"y":378000000000000000,"z":-6750000000000000000}},"30012267":{"solarSystemId":30012267,"solarSystemName":"Z:KVVI","location":{"x":-9420000000000000000,"y":227000000000000000,"z":-6730000000000000000}},"30012268":{"solarSystemId":30012268,"solarSystemName":"H:305E","location":{"x":-9320000000000000000,"y":544000000000000000,"z":-6960000000000000000}},"30012269":{"solarSystemId":30012269,"solarSystemName":"B:2361","location":{"x":-9490000000000000000,"y":322000000000000000,"z":-6650000000000000000}},"30012270":{"solarSystemId":30012270,"solarSystemName":"J:1T6I","location":{"x":-9800000000000000000,"y":130000000000000000,"z":-6760000000000000000}},"30012271":{"solarSystemId":30012271,"solarSystemName":"G:319R","location":{"x":-10900000000000000000,"y":501000000000000000,"z":-7530000000000000000}},"30012272":{"solarSystemId":30012272,"solarSystemName":"G:32L8","location":{"x":-11000000000000000000,"y":371000000000000000,"z":-7550000000000000000}},"30012273":{"solarSystemId":30012273,"solarSystemName":"Y:273E","location":{"x":-10900000000000000000,"y":422000000000000000,"z":-7440000000000000000}},"30012274":{"solarSystemId":30012274,"solarSystemName":"B:32KO","location":{"x":-10800000000000000000,"y":324000000000000000,"z":-7500000000000000000}},"30012275":{"solarSystemId":30012275,"solarSystemName":"G:331T","location":{"x":-10900000000000000000,"y":403000000000000000,"z":-7560000000000000000}},"30012276":{"solarSystemId":30012276,"solarSystemName":"D:OES7","location":{"x":-10800000000000000000,"y":452000000000000000,"z":-7310000000000000000}},"30012277":{"solarSystemId":30012277,"solarSystemName":"P:23N1","location":{"x":-10800000000000000000,"y":443000000000000000,"z":-7420000000000000000}},"30012278":{"solarSystemId":30012278,"solarSystemName":"P:1OV1","location":{"x":-10800000000000000000,"y":461000000000000000,"z":-7300000000000000000}},"30012279":{"solarSystemId":30012279,"solarSystemName":"P:20KL","location":{"x":-10800000000000000000,"y":445000000000000000,"z":-7330000000000000000}},"30012280":{"solarSystemId":30012280,"solarSystemName":"Z:19I6","location":{"x":-10900000000000000000,"y":479000000000000000,"z":-7570000000000000000}},"30012281":{"solarSystemId":30012281,"solarSystemName":"M:2K3S","location":{"x":-11000000000000000000,"y":487000000000000000,"z":-7370000000000000000}},"30012282":{"solarSystemId":30012282,"solarSystemName":"J:24KO","location":{"x":-10800000000000000000,"y":444000000000000000,"z":-7400000000000000000}},"30012283":{"solarSystemId":30012283,"solarSystemName":"G:2SIL","location":{"x":-10800000000000000000,"y":464000000000000000,"z":-7440000000000000000}},"30012284":{"solarSystemId":30012284,"solarSystemName":"U:32RV","location":{"x":-11000000000000000000,"y":356000000000000000,"z":-7530000000000000000}},"30012285":{"solarSystemId":30012285,"solarSystemName":"G:2E87","location":{"x":-10900000000000000000,"y":398000000000000000,"z":-7500000000000000000}},"30012286":{"solarSystemId":30012286,"solarSystemName":"P:2V46","location":{"x":-10900000000000000000,"y":455000000000000000,"z":-7380000000000000000}},"30012287":{"solarSystemId":30012287,"solarSystemName":"Y:2872","location":{"x":-10800000000000000000,"y":448000000000000000,"z":-7410000000000000000}},"30012288":{"solarSystemId":30012288,"solarSystemName":"Z:229I","location":{"x":-10900000000000000000,"y":555000000000000000,"z":-7610000000000000000}},"30012289":{"solarSystemId":30012289,"solarSystemName":"H:2T21","location":{"x":-10900000000000000000,"y":466000000000000000,"z":-7510000000000000000}},"30012290":{"solarSystemId":30012290,"solarSystemName":"F:2O4K","location":{"x":-10300000000000000000,"y":-64400000000000000,"z":-7410000000000000000}},"30012291":{"solarSystemId":30012291,"solarSystemName":"P:2873","location":{"x":-10200000000000000000,"y":430000000000000000,"z":-7580000000000000000}},"30012292":{"solarSystemId":30012292,"solarSystemName":"P:316E","location":{"x":-10200000000000000000,"y":290000000000000000,"z":-7240000000000000000}},"30012293":{"solarSystemId":30012293,"solarSystemName":"B:1EN8","location":{"x":-10400000000000000000,"y":322000000000000000,"z":-7280000000000000000}},"30012294":{"solarSystemId":30012294,"solarSystemName":"J:2L14","location":{"x":-10300000000000000000,"y":246000000000000000,"z":-7200000000000000000}},"30012295":{"solarSystemId":30012295,"solarSystemName":"P:18R2","location":{"x":-10300000000000000000,"y":309000000000000000,"z":-7330000000000000000}},"30012296":{"solarSystemId":30012296,"solarSystemName":"H:1866","location":{"x":-10200000000000000000,"y":221000000000000000,"z":-7160000000000000000}},"30012297":{"solarSystemId":30012297,"solarSystemName":"Q:T54V","location":{"x":-10400000000000000000,"y":566000000000000000,"z":-7530000000000000000}},"30012298":{"solarSystemId":30012298,"solarSystemName":"Q:2L0N","location":{"x":-10300000000000000000,"y":435000000000000000,"z":-7550000000000000000}},"30012299":{"solarSystemId":30012299,"solarSystemName":"Z:3143","location":{"x":-10400000000000000000,"y":618000000000000000,"z":-7600000000000000000}},"30012300":{"solarSystemId":30012300,"solarSystemName":"Y:32IK","location":{"x":-10300000000000000000,"y":356000000000000000,"z":-7230000000000000000}},"30012301":{"solarSystemId":30012301,"solarSystemName":"Q:16RE","location":{"x":-10200000000000000000,"y":-6730000000000000,"z":-6950000000000000000}},"30012302":{"solarSystemId":30012302,"solarSystemName":"M:2E12","location":{"x":-10400000000000000000,"y":364000000000000000,"z":-7430000000000000000}},"30012303":{"solarSystemId":30012303,"solarSystemName":"B:1TK9","location":{"x":-10200000000000000000,"y":226000000000000000,"z":-7400000000000000000}},"30012304":{"solarSystemId":30012304,"solarSystemName":"J:2AL6","location":{"x":-10400000000000000000,"y":62300000000000000,"z":-7250000000000000000}},"30012305":{"solarSystemId":30012305,"solarSystemName":"D:28L1","location":{"x":-10300000000000000000,"y":-179000000000000000,"z":-7420000000000000000}},"30012306":{"solarSystemId":30012306,"solarSystemName":"D:310I","location":{"x":-10500000000000000000,"y":262000000000000000,"z":-7300000000000000000}},"30012307":{"solarSystemId":30012307,"solarSystemName":"Z:2V33","location":{"x":-10200000000000000000,"y":163000000000000000,"z":-7100000000000000000}},"30012308":{"solarSystemId":30012308,"solarSystemName":"B:2NVR","location":{"x":-10200000000000000000,"y":323000000000000000,"z":-7280000000000000000}},"30012309":{"solarSystemId":30012309,"solarSystemName":"U:2662","location":{"x":-10400000000000000000,"y":339000000000000000,"z":-7250000000000000000}},"30012310":{"solarSystemId":30012310,"solarSystemName":"Y:1RRK","location":{"x":-10400000000000000000,"y":174000000000000000,"z":-7160000000000000000}},"30012311":{"solarSystemId":30012311,"solarSystemName":"D:2VO0","location":{"x":-10800000000000000000,"y":455000000000000000,"z":-7260000000000000000}},"30012312":{"solarSystemId":30012312,"solarSystemName":"G:2R30","location":{"x":-10800000000000000000,"y":488000000000000000,"z":-7260000000000000000}},"30012313":{"solarSystemId":30012313,"solarSystemName":"M:1O93","location":{"x":-10800000000000000000,"y":416000000000000000,"z":-7250000000000000000}},"30012314":{"solarSystemId":30012314,"solarSystemName":"M:4V4K","location":{"x":-10700000000000000000,"y":422000000000000000,"z":-7180000000000000000}},"30012315":{"solarSystemId":30012315,"solarSystemName":"J:22R6","location":{"x":-10700000000000000000,"y":413000000000000000,"z":-7170000000000000000}},"30012316":{"solarSystemId":30012316,"solarSystemName":"F:1E72","location":{"x":-10800000000000000000,"y":417000000000000000,"z":-7200000000000000000}},"30012317":{"solarSystemId":30012317,"solarSystemName":"M:T796","location":{"x":-10800000000000000000,"y":408000000000000000,"z":-7210000000000000000}},"30012318":{"solarSystemId":30012318,"solarSystemName":"P:379O","location":{"x":-10800000000000000000,"y":407000000000000000,"z":-7220000000000000000}},"30012319":{"solarSystemId":30012319,"solarSystemName":"J:25R5","location":{"x":-10800000000000000000,"y":399000000000000000,"z":-7260000000000000000}},"30012320":{"solarSystemId":30012320,"solarSystemName":"G:E26A","location":{"x":-10800000000000000000,"y":494000000000000000,"z":-7200000000000000000}},"30012321":{"solarSystemId":30012321,"solarSystemName":"Z:1S3K","location":{"x":-10800000000000000000,"y":455000000000000000,"z":-7200000000000000000}},"30012322":{"solarSystemId":30012322,"solarSystemName":"Z:2121","location":{"x":-10900000000000000000,"y":438000000000000000,"z":-7200000000000000000}},"30012323":{"solarSystemId":30012323,"solarSystemName":"M:2TAS","location":{"x":-10800000000000000000,"y":420000000000000000,"z":-7250000000000000000}},"30012324":{"solarSystemId":30012324,"solarSystemName":"Z:1E88","location":{"x":-10800000000000000000,"y":413000000000000000,"z":-7170000000000000000}},"30012325":{"solarSystemId":30012325,"solarSystemName":"P:1N53","location":{"x":-10800000000000000000,"y":420000000000000000,"z":-7170000000000000000}},"30012326":{"solarSystemId":30012326,"solarSystemName":"H:34AO","location":{"x":-10800000000000000000,"y":492000000000000000,"z":-7280000000000000000}},"30012327":{"solarSystemId":30012327,"solarSystemName":"H:1TNO","location":{"x":-10800000000000000000,"y":404000000000000000,"z":-7240000000000000000}},"30012328":{"solarSystemId":30012328,"solarSystemName":"U:1K1V","location":{"x":-10700000000000000000,"y":420000000000000000,"z":-7250000000000000000}},"30012329":{"solarSystemId":30012329,"solarSystemName":"P:108V","location":{"x":-10800000000000000000,"y":518000000000000000,"z":-7120000000000000000}},"30012330":{"solarSystemId":30012330,"solarSystemName":"P:VT0T","location":{"x":-10800000000000000000,"y":417000000000000000,"z":-7180000000000000000}},"30012331":{"solarSystemId":30012331,"solarSystemName":"P:2T88","location":{"x":-10800000000000000000,"y":430000000000000000,"z":-7280000000000000000}},"30012332":{"solarSystemId":30012332,"solarSystemName":"Q:3EIO","location":{"x":-9430000000000000000,"y":855000000000000000,"z":-7290000000000000000}},"30012333":{"solarSystemId":30012333,"solarSystemName":"B:1SA8","location":{"x":-9620000000000000000,"y":84800000000000000,"z":-7650000000000000000}},"30012334":{"solarSystemId":30012334,"solarSystemName":"Q:1L3K","location":{"x":-9990000000000000000,"y":308000000000000000,"z":-7510000000000000000}},"30012335":{"solarSystemId":30012335,"solarSystemName":"P:1437","location":{"x":-9060000000000000000,"y":490000000000000000,"z":-7020000000000000000}},"30012336":{"solarSystemId":30012336,"solarSystemName":"B:3432","location":{"x":-9220000000000000000,"y":405000000000000000,"z":-7220000000000000000}},"30012337":{"solarSystemId":30012337,"solarSystemName":"Q:2591","location":{"x":-9350000000000000000,"y":487000000000000000,"z":-7470000000000000000}},"30012338":{"solarSystemId":30012338,"solarSystemName":"H:1A50","location":{"x":-9480000000000000000,"y":374000000000000000,"z":-7110000000000000000}},"30012339":{"solarSystemId":30012339,"solarSystemName":"G:1RNA","location":{"x":-8730000000000000000,"y":924000000000000000,"z":-7300000000000000000}},"30012340":{"solarSystemId":30012340,"solarSystemName":"J:1I49","location":{"x":-9520000000000000000,"y":390000000000000000,"z":-7180000000000000000}},"30012341":{"solarSystemId":30012341,"solarSystemName":"G:310S","location":{"x":-9500000000000000000,"y":522000000000000000,"z":-7010000000000000000}},"30012342":{"solarSystemId":30012342,"solarSystemName":"G:2AAO","location":{"x":-9800000000000000000,"y":214000000000000000,"z":-7390000000000000000}},"30012343":{"solarSystemId":30012343,"solarSystemName":"Z:247V","location":{"x":-9310000000000000000,"y":523000000000000000,"z":-7180000000000000000}},"30012344":{"solarSystemId":30012344,"solarSystemName":"D:4OK9","location":{"x":-9040000000000000000,"y":1270000000000000000,"z":-7130000000000000000}},"30012345":{"solarSystemId":30012345,"solarSystemName":"M:2N4S","location":{"x":-9290000000000000000,"y":597000000000000000,"z":-7470000000000000000}},"30012346":{"solarSystemId":30012346,"solarSystemName":"H:1K6N","location":{"x":-9620000000000000000,"y":496000000000000000,"z":-7540000000000000000}},"30012347":{"solarSystemId":30012347,"solarSystemName":"Q:2R97","location":{"x":-9680000000000000000,"y":420000000000000000,"z":-7400000000000000000}},"30012348":{"solarSystemId":30012348,"solarSystemName":"U:SVA7","location":{"x":-9090000000000000000,"y":661000000000000000,"z":-7250000000000000000}},"30012349":{"solarSystemId":30012349,"solarSystemName":"G:47I8","location":{"x":-9070000000000000000,"y":618000000000000000,"z":-7340000000000000000}},"30012350":{"solarSystemId":30012350,"solarSystemName":"M:K9VV","location":{"x":-9460000000000000000,"y":525000000000000000,"z":-7000000000000000000}},"30012351":{"solarSystemId":30012351,"solarSystemName":"Y:21VN","location":{"x":-9630000000000000000,"y":611000000000000000,"z":-7520000000000000000}},"30012352":{"solarSystemId":30012352,"solarSystemName":"D:324S","location":{"x":-8830000000000000000,"y":732000000000000000,"z":-7160000000000000000}},"30012353":{"solarSystemId":30012353,"solarSystemName":"G:2788","location":{"x":-9140000000000000000,"y":711000000000000000,"z":-7300000000000000000}},"30012354":{"solarSystemId":30012354,"solarSystemName":"P:2V9E","location":{"x":-9600000000000000000,"y":673000000000000000,"z":-7930000000000000000}},"30012355":{"solarSystemId":30012355,"solarSystemName":"Q:2293","location":{"x":-9050000000000000000,"y":767000000000000000,"z":-7530000000000000000}},"30012356":{"solarSystemId":30012356,"solarSystemName":"H:T8LT","location":{"x":-9420000000000000000,"y":593000000000000000,"z":-7450000000000000000}},"30012357":{"solarSystemId":30012357,"solarSystemName":"H:256N","location":{"x":-9640000000000000000,"y":274000000000000000,"z":-7430000000000000000}},"30012358":{"solarSystemId":30012358,"solarSystemName":"B:31LN","location":{"x":-9220000000000000000,"y":407000000000000000,"z":-7010000000000000000}},"30012359":{"solarSystemId":30012359,"solarSystemName":"Q:3895","location":{"x":-9690000000000000000,"y":844000000000000000,"z":-7950000000000000000}},"30012360":{"solarSystemId":30012360,"solarSystemName":"P:1SI9","location":{"x":-10200000000000000000,"y":581000000000000000,"z":-7830000000000000000}},"30012361":{"solarSystemId":30012361,"solarSystemName":"G:2567","location":{"x":-9990000000000000000,"y":691000000000000000,"z":-7840000000000000000}},"30012362":{"solarSystemId":30012362,"solarSystemName":"M:31N7","location":{"x":-9930000000000000000,"y":781000000000000000,"z":-7680000000000000000}},"30012363":{"solarSystemId":30012363,"solarSystemName":"P:21TS","location":{"x":-10300000000000000000,"y":679000000000000000,"z":-7730000000000000000}},"30012364":{"solarSystemId":30012364,"solarSystemName":"J:11TS","location":{"x":-10100000000000000000,"y":816000000000000000,"z":-7600000000000000000}},"30012365":{"solarSystemId":30012365,"solarSystemName":"Q:27ST","location":{"x":-9930000000000000000,"y":705000000000000000,"z":-7640000000000000000}},"30012366":{"solarSystemId":30012366,"solarSystemName":"Z:1TTO","location":{"x":-9990000000000000000,"y":468000000000000000,"z":-7560000000000000000}},"30012367":{"solarSystemId":30012367,"solarSystemName":"D:154N","location":{"x":-9810000000000000000,"y":702000000000000000,"z":-7950000000000000000}},"30012368":{"solarSystemId":30012368,"solarSystemName":"H:31EL","location":{"x":-10200000000000000000,"y":684000000000000000,"z":-7910000000000000000}},"30012369":{"solarSystemId":30012369,"solarSystemName":"B:229O","location":{"x":-10100000000000000000,"y":487000000000000000,"z":-7630000000000000000}},"30012370":{"solarSystemId":30012370,"solarSystemName":"F:2I5I","location":{"x":-9890000000000000000,"y":1410000000000000000,"z":-7430000000000000000}},"30012371":{"solarSystemId":30012371,"solarSystemName":"Z:1T28","location":{"x":-10100000000000000000,"y":610000000000000000,"z":-7960000000000000000}},"30012372":{"solarSystemId":30012372,"solarSystemName":"P:L5LR","location":{"x":-9930000000000000000,"y":718000000000000000,"z":-7850000000000000000}},"30012373":{"solarSystemId":30012373,"solarSystemName":"B:19TN","location":{"x":-9900000000000000000,"y":794000000000000000,"z":-7560000000000000000}},"30012374":{"solarSystemId":30012374,"solarSystemName":"B:2700","location":{"x":-9770000000000000000,"y":904000000000000000,"z":-7520000000000000000}},"30012375":{"solarSystemId":30012375,"solarSystemName":"Y:V7NA","location":{"x":-9880000000000000000,"y":716000000000000000,"z":-7770000000000000000}},"30012376":{"solarSystemId":30012376,"solarSystemName":"Z:1KSL","location":{"x":-10100000000000000000,"y":698000000000000000,"z":-7910000000000000000}},"30012377":{"solarSystemId":30012377,"solarSystemName":"Z:2KEA","location":{"x":-10700000000000000000,"y":-179000000000000000,"z":-7330000000000000000}},"30012378":{"solarSystemId":30012378,"solarSystemName":"J:2EK6","location":{"x":-10800000000000000000,"y":-210000000000000000,"z":-7670000000000000000}},"30012379":{"solarSystemId":30012379,"solarSystemName":"G:2301","location":{"x":-11000000000000000000,"y":141000000000000000,"z":-7480000000000000000}},"30012380":{"solarSystemId":30012380,"solarSystemName":"J:28S1","location":{"x":-10600000000000000000,"y":-29200000000000000,"z":-7220000000000000000}},"30012381":{"solarSystemId":30012381,"solarSystemName":"H:3179","location":{"x":-10900000000000000000,"y":-272000000000000000,"z":-7290000000000000000}},"30012382":{"solarSystemId":30012382,"solarSystemName":"U:27KI","location":{"x":-10600000000000000000,"y":243000000000000000,"z":-7510000000000000000}},"30012383":{"solarSystemId":30012383,"solarSystemName":"Z:33N9","location":{"x":-10800000000000000000,"y":326000000000000000,"z":-7630000000000000000}},"30012384":{"solarSystemId":30012384,"solarSystemName":"P:33VN","location":{"x":-11000000000000000000,"y":117000000000000000,"z":-7990000000000000000}},"30012385":{"solarSystemId":30012385,"solarSystemName":"U:2184","location":{"x":-10800000000000000000,"y":331000000000000000,"z":-7680000000000000000}},"30012386":{"solarSystemId":30012386,"solarSystemName":"B:4T55","location":{"x":-10700000000000000000,"y":-190000000000000000,"z":-7880000000000000000}},"30012387":{"solarSystemId":30012387,"solarSystemName":"G:EN7O","location":{"x":-10500000000000000000,"y":113000000000000000,"z":-7520000000000000000}},"30012388":{"solarSystemId":30012388,"solarSystemName":"U:23NA","location":{"x":-10800000000000000000,"y":219000000000000000,"z":-7950000000000000000}},"30012389":{"solarSystemId":30012389,"solarSystemName":"P:2V7R","location":{"x":-10700000000000000000,"y":248000000000000000,"z":-7480000000000000000}},"30012390":{"solarSystemId":30012390,"solarSystemName":"B:23AI","location":{"x":-10000000000000000000,"y":-841000000000000000,"z":-7510000000000000000}},"30012391":{"solarSystemId":30012391,"solarSystemName":"B:2N32","location":{"x":-10800000000000000000,"y":281000000000000000,"z":-7810000000000000000}},"30012392":{"solarSystemId":30012392,"solarSystemName":"D:25V3","location":{"x":-10400000000000000000,"y":-501000000000000000,"z":-7520000000000000000}},"30012393":{"solarSystemId":30012393,"solarSystemName":"D:32T8","location":{"x":-10600000000000000000,"y":-392000000000000000,"z":-7270000000000000000}},"30012394":{"solarSystemId":30012394,"solarSystemName":"Q:2R46","location":{"x":-10800000000000000000,"y":264000000000000000,"z":-7510000000000000000}},"30012395":{"solarSystemId":30012395,"solarSystemName":"P:3371","location":{"x":-11200000000000000000,"y":-94600000000000000,"z":-7600000000000000000}},"30012396":{"solarSystemId":30012396,"solarSystemName":"Y:201O","location":{"x":-10500000000000000000,"y":633000000000000000,"z":-9030000000000000000}},"30012397":{"solarSystemId":30012397,"solarSystemName":"D:171K","location":{"x":-10100000000000000000,"y":114000000000000000,"z":-8900000000000000000}},"30012398":{"solarSystemId":30012398,"solarSystemName":"B:23I4","location":{"x":-9740000000000000000,"y":-149000000000000000,"z":-8670000000000000000}},"30012399":{"solarSystemId":30012399,"solarSystemName":"Z:2O4I","location":{"x":-9820000000000000000,"y":-78400000000000000,"z":-8340000000000000000}},"30012400":{"solarSystemId":30012400,"solarSystemName":"H:30N3","location":{"x":-9950000000000000000,"y":-63300000000000000,"z":-8570000000000000000}},"30012401":{"solarSystemId":30012401,"solarSystemName":"J:24EA","location":{"x":-10600000000000000000,"y":710000000000000000,"z":-9120000000000000000}},"30012402":{"solarSystemId":30012402,"solarSystemName":"H:163A","location":{"x":-10700000000000000000,"y":236000000000000000,"z":-9280000000000000000}},"30012403":{"solarSystemId":30012403,"solarSystemName":"Z:11O0","location":{"x":-10700000000000000000,"y":363000000000000000,"z":-9000000000000000000}},"30012404":{"solarSystemId":30012404,"solarSystemName":"G:30R6","location":{"x":-10600000000000000000,"y":-166000000000000000,"z":-8660000000000000000}},"30012405":{"solarSystemId":30012405,"solarSystemName":"D:1VK5","location":{"x":-10800000000000000000,"y":218000000000000000,"z":-8930000000000000000}},"30012406":{"solarSystemId":30012406,"solarSystemName":"B:1A5V","location":{"x":-10400000000000000000,"y":-607000000000000000,"z":-8990000000000000000}},"30012407":{"solarSystemId":30012407,"solarSystemName":"B:16N5","location":{"x":-10500000000000000000,"y":-305000000000000000,"z":-8320000000000000000}},"30012408":{"solarSystemId":30012408,"solarSystemName":"M:16EN","location":{"x":-10800000000000000000,"y":63500000000000000,"z":-9320000000000000000}},"30012409":{"solarSystemId":30012409,"solarSystemName":"H:SA4N","location":{"x":-10300000000000000000,"y":-654000000000000000,"z":-9680000000000000000}},"30012410":{"solarSystemId":30012410,"solarSystemName":"H:44LA","location":{"x":-10600000000000000000,"y":-219000000000000000,"z":-8420000000000000000}},"30012411":{"solarSystemId":30012411,"solarSystemName":"G:149R","location":{"x":-10800000000000000000,"y":-472000000000000000,"z":-9180000000000000000}},"30012412":{"solarSystemId":30012412,"solarSystemName":"M:1EL6","location":{"x":-10700000000000000000,"y":212000000000000000,"z":-8850000000000000000}},"30012413":{"solarSystemId":30012413,"solarSystemName":"Y:1T9N","location":{"x":-10600000000000000000,"y":317000000000000000,"z":-9350000000000000000}},"30012414":{"solarSystemId":30012414,"solarSystemName":"D:169V","location":{"x":-10600000000000000000,"y":95900000000000000,"z":-8570000000000000000}},"30012415":{"solarSystemId":30012415,"solarSystemName":"Q:1EI0","location":{"x":-10700000000000000000,"y":-657000000000000000,"z":-9600000000000000000}},"30012416":{"solarSystemId":30012416,"solarSystemName":"F:36T6","location":{"x":-10700000000000000000,"y":658000000000000000,"z":-9370000000000000000}},"30012417":{"solarSystemId":30012417,"solarSystemName":"P:1R6V","location":{"x":-10400000000000000000,"y":-8270000000000000,"z":-9140000000000000000}},"30012418":{"solarSystemId":30012418,"solarSystemName":"B:31E0","location":{"x":-10300000000000000000,"y":44600000000000000,"z":-9240000000000000000}},"30012419":{"solarSystemId":30012419,"solarSystemName":"Z:4ORL","location":{"x":-9780000000000000000,"y":-181000000000000000,"z":-6630000000000000000}},"30012420":{"solarSystemId":30012420,"solarSystemName":"Y:287O","location":{"x":-9690000000000000000,"y":-194000000000000000,"z":-7270000000000000000}},"30012421":{"solarSystemId":30012421,"solarSystemName":"D:KA28","location":{"x":-10200000000000000000,"y":82200000000000000,"z":-7370000000000000000}},"30012422":{"solarSystemId":30012422,"solarSystemName":"G:26I1","location":{"x":-9970000000000000000,"y":159000000000000000,"z":-7130000000000000000}},"30012423":{"solarSystemId":30012423,"solarSystemName":"B:245O","location":{"x":-9840000000000000000,"y":-108000000000000000,"z":-7230000000000000000}},"30012424":{"solarSystemId":30012424,"solarSystemName":"D:I966","location":{"x":-9410000000000000000,"y":-210000000000000000,"z":-7400000000000000000}},"30012425":{"solarSystemId":30012425,"solarSystemName":"D:28SO","location":{"x":-9960000000000000000,"y":142000000000000000,"z":-6810000000000000000}},"30012426":{"solarSystemId":30012426,"solarSystemName":"G:117S","location":{"x":-9500000000000000000,"y":-82400000000000000,"z":-7750000000000000000}},"30012427":{"solarSystemId":30012427,"solarSystemName":"H:127V","location":{"x":-9840000000000000000,"y":-94000000000000000,"z":-7130000000000000000}},"30012428":{"solarSystemId":30012428,"solarSystemName":"Q:1K19","location":{"x":-10100000000000000000,"y":240000000000000000,"z":-7430000000000000000}},"30012429":{"solarSystemId":30012429,"solarSystemName":"J:1O01","location":{"x":-10100000000000000000,"y":-477000000000000000,"z":-7980000000000000000}},"30012430":{"solarSystemId":30012430,"solarSystemName":"Y:1ASS","location":{"x":-9790000000000000000,"y":255000000000000000,"z":-7040000000000000000}},"30012431":{"solarSystemId":30012431,"solarSystemName":"F:34RT","location":{"x":-9860000000000000000,"y":-42000000000000000,"z":-7570000000000000000}},"30012432":{"solarSystemId":30012432,"solarSystemName":"U:24AV","location":{"x":-9930000000000000000,"y":-287000000000000000,"z":-7560000000000000000}},"30012433":{"solarSystemId":30012433,"solarSystemName":"M:296E","location":{"x":-9880000000000000000,"y":186000000000000000,"z":-7170000000000000000}},"30012434":{"solarSystemId":30012434,"solarSystemName":"B:2A6V","location":{"x":-9960000000000000000,"y":57100000000000000,"z":-7090000000000000000}},"30012435":{"solarSystemId":30012435,"solarSystemName":"Z:NSN4","location":{"x":-9960000000000000000,"y":-464000000000000000,"z":-7920000000000000000}},"30012436":{"solarSystemId":30012436,"solarSystemName":"Y:E5EV","location":{"x":-9800000000000000000,"y":-118000000000000000,"z":-6930000000000000000}},"30012437":{"solarSystemId":30012437,"solarSystemName":"F:2588","location":{"x":-9790000000000000000,"y":392000000000000000,"z":-7010000000000000000}},"30012438":{"solarSystemId":30012438,"solarSystemName":"U:1I7T","location":{"x":-9610000000000000000,"y":-361000000000000000,"z":-7070000000000000000}},"30012439":{"solarSystemId":30012439,"solarSystemName":"U:2EAN","location":{"x":-9940000000000000000,"y":-28900000000000000,"z":-7210000000000000000}},"30012440":{"solarSystemId":30012440,"solarSystemName":"P:35K5","location":{"x":-10100000000000000000,"y":351000000000000000,"z":-7960000000000000000}},"30012441":{"solarSystemId":30012441,"solarSystemName":"J:3N89","location":{"x":-10200000000000000000,"y":79700000000000000,"z":-8250000000000000000}},"30012442":{"solarSystemId":30012442,"solarSystemName":"Q:1T90","location":{"x":-10600000000000000000,"y":435000000000000000,"z":-7770000000000000000}},"30012443":{"solarSystemId":30012443,"solarSystemName":"Q:1204","location":{"x":-10300000000000000000,"y":430000000000000000,"z":-7700000000000000000}},"30012444":{"solarSystemId":30012444,"solarSystemName":"Z:255E","location":{"x":-10400000000000000000,"y":215000000000000000,"z":-7900000000000000000}},"30012445":{"solarSystemId":30012445,"solarSystemName":"G:V641","location":{"x":-10100000000000000000,"y":285000000000000000,"z":-7760000000000000000}},"30012446":{"solarSystemId":30012446,"solarSystemName":"D:3275","location":{"x":-10300000000000000000,"y":327000000000000000,"z":-8080000000000000000}},"30012447":{"solarSystemId":30012447,"solarSystemName":"G:1RKK","location":{"x":-10700000000000000000,"y":332000000000000000,"z":-8080000000000000000}},"30012448":{"solarSystemId":30012448,"solarSystemName":"B:1IES","location":{"x":-10200000000000000000,"y":312000000000000000,"z":-7640000000000000000}},"30012449":{"solarSystemId":30012449,"solarSystemName":"Q:161R","location":{"x":-10300000000000000000,"y":427000000000000000,"z":-8160000000000000000}},"30012450":{"solarSystemId":30012450,"solarSystemName":"D:LS2V","location":{"x":-10300000000000000000,"y":-427000000000000000,"z":-8340000000000000000}},"30012451":{"solarSystemId":30012451,"solarSystemName":"F:4NRK","location":{"x":-10700000000000000000,"y":350000000000000000,"z":-7740000000000000000}},"30012452":{"solarSystemId":30012452,"solarSystemName":"G:1A84","location":{"x":-10200000000000000000,"y":362000000000000000,"z":-7890000000000000000}},"30012453":{"solarSystemId":30012453,"solarSystemName":"B:2869","location":{"x":-10500000000000000000,"y":394000000000000000,"z":-8130000000000000000}},"30012454":{"solarSystemId":30012454,"solarSystemName":"D:2NO0","location":{"x":-10500000000000000000,"y":376000000000000000,"z":-7590000000000000000}},"30012455":{"solarSystemId":30012455,"solarSystemName":"Y:2800","location":{"x":-10100000000000000000,"y":418000000000000000,"z":-7690000000000000000}},"30012456":{"solarSystemId":30012456,"solarSystemName":"Z:4S9O","location":{"x":-10400000000000000000,"y":483000000000000000,"z":-7760000000000000000}},"30012457":{"solarSystemId":30012457,"solarSystemName":"P:31IV","location":{"x":-10200000000000000000,"y":274000000000000000,"z":-7730000000000000000}},"30012458":{"solarSystemId":30012458,"solarSystemName":"B:113L","location":{"x":-10400000000000000000,"y":250000000000000000,"z":-7740000000000000000}},"30012459":{"solarSystemId":30012459,"solarSystemName":"F:37TV","location":{"x":-9670000000000000000,"y":539000000000000000,"z":-8580000000000000000}},"30012460":{"solarSystemId":30012460,"solarSystemName":"H:2AIT","location":{"x":-10100000000000000000,"y":620000000000000000,"z":-8540000000000000000}},"30012461":{"solarSystemId":30012461,"solarSystemName":"P:1EL3","location":{"x":-9850000000000000000,"y":542000000000000000,"z":-8120000000000000000}},"30012462":{"solarSystemId":30012462,"solarSystemName":"F:OOS8","location":{"x":-9910000000000000000,"y":524000000000000000,"z":-9060000000000000000}},"30012463":{"solarSystemId":30012463,"solarSystemName":"Q:1E26","location":{"x":-9750000000000000000,"y":542000000000000000,"z":-8830000000000000000}},"30012464":{"solarSystemId":30012464,"solarSystemName":"H:2L7K","location":{"x":-9550000000000000000,"y":519000000000000000,"z":-8240000000000000000}},"30012465":{"solarSystemId":30012465,"solarSystemName":"P:NA0K","location":{"x":-9990000000000000000,"y":535000000000000000,"z":-8940000000000000000}},"30012466":{"solarSystemId":30012466,"solarSystemName":"J:298I","location":{"x":-9620000000000000000,"y":366000000000000000,"z":-9020000000000000000}},"30012467":{"solarSystemId":30012467,"solarSystemName":"H:O245","location":{"x":-9620000000000000000,"y":949000000000000000,"z":-8340000000000000000}},"30012468":{"solarSystemId":30012468,"solarSystemName":"P:1RA2","location":{"x":-9730000000000000000,"y":863000000000000000,"z":-8720000000000000000}},"30012469":{"solarSystemId":30012469,"solarSystemName":"D:1R00","location":{"x":-10200000000000000000,"y":524000000000000000,"z":-8620000000000000000}},"30012470":{"solarSystemId":30012470,"solarSystemName":"U:3A8K","location":{"x":-9840000000000000000,"y":169000000000000000,"z":-8690000000000000000}},"30012471":{"solarSystemId":30012471,"solarSystemName":"D:33S6","location":{"x":-9460000000000000000,"y":867000000000000000,"z":-8690000000000000000}},"30012472":{"solarSystemId":30012472,"solarSystemName":"H:2L7L","location":{"x":-9820000000000000000,"y":662000000000000000,"z":-8530000000000000000}},"30012473":{"solarSystemId":30012473,"solarSystemName":"Z:2272","location":{"x":-9730000000000000000,"y":222000000000000000,"z":-8710000000000000000}},"30012474":{"solarSystemId":30012474,"solarSystemName":"F:1R7A","location":{"x":-9460000000000000000,"y":393000000000000000,"z":-8960000000000000000}},"30012475":{"solarSystemId":30012475,"solarSystemName":"U:13S2","location":{"x":-9810000000000000000,"y":639000000000000000,"z":-8940000000000000000}},"30012476":{"solarSystemId":30012476,"solarSystemName":"J:3R65","location":{"x":-8540000000000000000,"y":711000000000000000,"z":-8720000000000000000}},"30012477":{"solarSystemId":30012477,"solarSystemName":"Q:1NTS","location":{"x":-8960000000000000000,"y":1030000000000000000,"z":-8740000000000000000}},"30012478":{"solarSystemId":30012478,"solarSystemName":"B:2VT7","location":{"x":-9700000000000000000,"y":302000000000000000,"z":-7980000000000000000}},"30012479":{"solarSystemId":30012479,"solarSystemName":"U:1EN6","location":{"x":-9250000000000000000,"y":269000000000000000,"z":-8050000000000000000}},"30012480":{"solarSystemId":30012480,"solarSystemName":"U:2KR1","location":{"x":-8930000000000000000,"y":755000000000000000,"z":-8160000000000000000}},"30012481":{"solarSystemId":30012481,"solarSystemName":"B:1LK9","location":{"x":-8580000000000000000,"y":675000000000000000,"z":-8390000000000000000}},"30012482":{"solarSystemId":30012482,"solarSystemName":"F:3339","location":{"x":-9180000000000000000,"y":495000000000000000,"z":-7970000000000000000}},"30012483":{"solarSystemId":30012483,"solarSystemName":"J:154E","location":{"x":-9250000000000000000,"y":810000000000000000,"z":-8110000000000000000}},"30012484":{"solarSystemId":30012484,"solarSystemName":"H:1L2K","location":{"x":-9420000000000000000,"y":594000000000000000,"z":-7920000000000000000}},"30012485":{"solarSystemId":30012485,"solarSystemName":"Z:1097","location":{"x":-9320000000000000000,"y":-110000000000000000,"z":-8130000000000000000}},"30012486":{"solarSystemId":30012486,"solarSystemName":"Q:1N1V","location":{"x":-9680000000000000000,"y":287000000000000000,"z":-7980000000000000000}},"30012487":{"solarSystemId":30012487,"solarSystemName":"F:3554","location":{"x":-8550000000000000000,"y":995000000000000000,"z":-7970000000000000000}},"30012488":{"solarSystemId":30012488,"solarSystemName":"G:V0NT","location":{"x":-8640000000000000000,"y":810000000000000000,"z":-8870000000000000000}},"30012489":{"solarSystemId":30012489,"solarSystemName":"P:3ILS","location":{"x":-8440000000000000000,"y":624000000000000000,"z":-8790000000000000000}},"30012490":{"solarSystemId":30012490,"solarSystemName":"B:3SVA","location":{"x":-9520000000000000000,"y":198000000000000000,"z":-8130000000000000000}},"30012491":{"solarSystemId":30012491,"solarSystemName":"B:2L7A","location":{"x":-9260000000000000000,"y":171000000000000000,"z":-8390000000000000000}},"30012492":{"solarSystemId":30012492,"solarSystemName":"P:N98A","location":{"x":-8880000000000000000,"y":446000000000000000,"z":-8450000000000000000}},"30012493":{"solarSystemId":30012493,"solarSystemName":"D:11ET","location":{"x":-9190000000000000000,"y":296000000000000000,"z":-9080000000000000000}},"30012494":{"solarSystemId":30012494,"solarSystemName":"F:32I3","location":{"x":-9130000000000000000,"y":273000000000000000,"z":-8930000000000000000}},"30012495":{"solarSystemId":30012495,"solarSystemName":"H:2OE9","location":{"x":-8010000000000000000,"y":-696000000000000000,"z":-6730000000000000000}},"30012496":{"solarSystemId":30012496,"solarSystemName":"F:2K7O","location":{"x":-8190000000000000000,"y":-645000000000000000,"z":-6070000000000000000}},"30012497":{"solarSystemId":30012497,"solarSystemName":"U:2855","location":{"x":-9260000000000000000,"y":-207000000000000000,"z":-6720000000000000000}},"30012498":{"solarSystemId":30012498,"solarSystemName":"Y:4ASI","location":{"x":-8390000000000000000,"y":-341000000000000000,"z":-5960000000000000000}},"30012499":{"solarSystemId":30012499,"solarSystemName":"H:2096","location":{"x":-8790000000000000000,"y":307000000000000000,"z":-7450000000000000000}},"30012500":{"solarSystemId":30012500,"solarSystemName":"B:2NL6","location":{"x":-8500000000000000000,"y":287000000000000000,"z":-6600000000000000000}},"30012501":{"solarSystemId":30012501,"solarSystemName":"Q:51SK","location":{"x":-8000000000000000000,"y":-669000000000000000,"z":-5170000000000000000}},"30012502":{"solarSystemId":30012502,"solarSystemName":"J:42T2","location":{"x":-9000000000000000000,"y":-348000000000000000,"z":-6680000000000000000}},"30012503":{"solarSystemId":30012503,"solarSystemName":"H:2387","location":{"x":-8600000000000000000,"y":516000000000000000,"z":-6600000000000000000}},"30012504":{"solarSystemId":30012504,"solarSystemName":"Z:1E0L","location":{"x":-9050000000000000000,"y":-75100000000000000,"z":-7750000000000000000}},"30012505":{"solarSystemId":30012505,"solarSystemName":"Y:17IN","location":{"x":-8710000000000000000,"y":546000000000000000,"z":-6290000000000000000}},"30012506":{"solarSystemId":30012506,"solarSystemName":"P:33E4","location":{"x":-7770000000000000000,"y":489000000000000000,"z":-5850000000000000000}},"30012507":{"solarSystemId":30012507,"solarSystemName":"F:2V16","location":{"x":-8600000000000000000,"y":-400000000000000000,"z":-7130000000000000000}},"30012508":{"solarSystemId":30012508,"solarSystemName":"J:1TIV","location":{"x":-7190000000000000000,"y":-640000000000000000,"z":-5880000000000000000}},"30012509":{"solarSystemId":30012509,"solarSystemName":"Z:1T32","location":{"x":-7780000000000000000,"y":-350000000000000000,"z":-5760000000000000000}},"30012510":{"solarSystemId":30012510,"solarSystemName":"P:2S0K","location":{"x":-8460000000000000000,"y":-764000000000000000,"z":-5940000000000000000}},"30012511":{"solarSystemId":30012511,"solarSystemName":"U:OT0S","location":{"x":-7920000000000000000,"y":24000000000000000,"z":-5440000000000000000}},"30012512":{"solarSystemId":30012512,"solarSystemName":"M:1V7K","location":{"x":-7980000000000000000,"y":190000000000000000,"z":-5200000000000000000}},"30012513":{"solarSystemId":30012513,"solarSystemName":"H:2R86","location":{"x":-8920000000000000000,"y":-333000000000000000,"z":-6430000000000000000}},"30012514":{"solarSystemId":30012514,"solarSystemName":"Z:371S","location":{"x":-6220000000000000000,"y":1440000000000000000,"z":-11100000000000000000}},"30012515":{"solarSystemId":30012515,"solarSystemName":"B:1T4O","location":{"x":-7000000000000000000,"y":1130000000000000000,"z":-11000000000000000000}},"30012516":{"solarSystemId":30012516,"solarSystemName":"Q:3264","location":{"x":-7810000000000000000,"y":1310000000000000000,"z":-11200000000000000000}},"30012517":{"solarSystemId":30012517,"solarSystemName":"P:3543","location":{"x":-6340000000000000000,"y":688000000000000000,"z":-11600000000000000000}},"30012518":{"solarSystemId":30012518,"solarSystemName":"Y:152E","location":{"x":-6520000000000000000,"y":1590000000000000000,"z":-11600000000000000000}},"30012519":{"solarSystemId":30012519,"solarSystemName":"G:2KRT","location":{"x":-5610000000000000000,"y":773000000000000000,"z":-12000000000000000000}},"30012520":{"solarSystemId":30012520,"solarSystemName":"Z:3R6S","location":{"x":-7220000000000000000,"y":1940000000000000000,"z":-11900000000000000000}},"30012521":{"solarSystemId":30012521,"solarSystemName":"M:196O","location":{"x":-7710000000000000000,"y":1610000000000000000,"z":-11400000000000000000}},"30012522":{"solarSystemId":30012522,"solarSystemName":"Q:3N9S","location":{"x":-6700000000000000000,"y":2190000000000000000,"z":-12500000000000000000}},"30012523":{"solarSystemId":30012523,"solarSystemName":"G:22I0","location":{"x":-6130000000000000000,"y":953000000000000000,"z":-11600000000000000000}},"30012524":{"solarSystemId":30012524,"solarSystemName":"F:1L4I","location":{"x":-8070000000000000000,"y":3220000000000000000,"z":-11900000000000000000}},"30012525":{"solarSystemId":30012525,"solarSystemName":"Y:1ETV","location":{"x":-7120000000000000000,"y":1540000000000000000,"z":-11500000000000000000}},"30012526":{"solarSystemId":30012526,"solarSystemName":"F:23RR","location":{"x":-8590000000000000000,"y":1730000000000000000,"z":-11400000000000000000}},"30012527":{"solarSystemId":30012527,"solarSystemName":"M:1OKI","location":{"x":-8110000000000000000,"y":511000000000000000,"z":-12400000000000000000}},"30012528":{"solarSystemId":30012528,"solarSystemName":"M:162L","location":{"x":-7070000000000000000,"y":-151000000000000000,"z":-12200000000000000000}},"30012529":{"solarSystemId":30012529,"solarSystemName":"Q:308L","location":{"x":-8610000000000000000,"y":311000000000000000,"z":-11300000000000000000}},"30012530":{"solarSystemId":30012530,"solarSystemName":"Q:1307","location":{"x":-6870000000000000000,"y":107000000000000000,"z":-12300000000000000000}},"30012531":{"solarSystemId":30012531,"solarSystemName":"F:12L7","location":{"x":-6880000000000000000,"y":-108000000000000000,"z":-12300000000000000000}},"30012532":{"solarSystemId":30012532,"solarSystemName":"Y:V611","location":{"x":-8350000000000000000,"y":616000000000000000,"z":-11500000000000000000}},"30012533":{"solarSystemId":30012533,"solarSystemName":"F:1L56","location":{"x":-7570000000000000000,"y":393000000000000000,"z":-12800000000000000000}},"30012534":{"solarSystemId":30012534,"solarSystemName":"U:28IR","location":{"x":-7850000000000000000,"y":950000000000000000,"z":-11300000000000000000}},"30012535":{"solarSystemId":30012535,"solarSystemName":"J:2IL9","location":{"x":-8290000000000000000,"y":-111000000000000000,"z":-12600000000000000000}},"30012536":{"solarSystemId":30012536,"solarSystemName":"Z:17OK","location":{"x":-7020000000000000000,"y":313000000000000000,"z":-11900000000000000000}},"30012537":{"solarSystemId":30012537,"solarSystemName":"B:3S7O","location":{"x":-8470000000000000000,"y":630000000000000000,"z":-12400000000000000000}},"30012538":{"solarSystemId":30012538,"solarSystemName":"Q:1962","location":{"x":-7740000000000000000,"y":135000000000000000,"z":-12600000000000000000}},"30012539":{"solarSystemId":30012539,"solarSystemName":"J:27L5","location":{"x":-7590000000000000000,"y":427000000000000000,"z":-12000000000000000000}},"30012540":{"solarSystemId":30012540,"solarSystemName":"Z:ESIK","location":{"x":-7580000000000000000,"y":878000000000000000,"z":-11300000000000000000}},"30012541":{"solarSystemId":30012541,"solarSystemName":"Y:1RO4","location":{"x":-8540000000000000000,"y":419000000000000000,"z":-11200000000000000000}},"30012542":{"solarSystemId":30012542,"solarSystemName":"Q:376E","location":{"x":-6970000000000000000,"y":-320000000000000000,"z":-12300000000000000000}},"30012543":{"solarSystemId":30012543,"solarSystemName":"Z:N7L1","location":{"x":-8670000000000000000,"y":117000000000000000,"z":-12500000000000000000}},"30012544":{"solarSystemId":30012544,"solarSystemName":"B:2OS0","location":{"x":-6020000000000000000,"y":-1490000000000000000,"z":-11100000000000000000}},"30012545":{"solarSystemId":30012545,"solarSystemName":"Y:2588","location":{"x":-6870000000000000000,"y":-793000000000000000,"z":-11000000000000000000}},"30012546":{"solarSystemId":30012546,"solarSystemName":"B:239I","location":{"x":-6690000000000000000,"y":-904000000000000000,"z":-11600000000000000000}},"30012547":{"solarSystemId":30012547,"solarSystemName":"Z:1491","location":{"x":-7940000000000000000,"y":-84100000000000000,"z":-11100000000000000000}},"30012548":{"solarSystemId":30012548,"solarSystemName":"Y:E6T7","location":{"x":-6240000000000000000,"y":-607000000000000000,"z":-11000000000000000000}},"30012549":{"solarSystemId":30012549,"solarSystemName":"Z:NA6K","location":{"x":-6550000000000000000,"y":-854000000000000000,"z":-11700000000000000000}},"30012550":{"solarSystemId":30012550,"solarSystemName":"Y:2S5S","location":{"x":-8140000000000000000,"y":-430000000000000000,"z":-10400000000000000000}},"30012551":{"solarSystemId":30012551,"solarSystemName":"B:RN26","location":{"x":-7580000000000000000,"y":-352000000000000000,"z":-10500000000000000000}},"30012552":{"solarSystemId":30012552,"solarSystemName":"D:N2A5","location":{"x":-7680000000000000000,"y":-600000000000000000,"z":-11500000000000000000}},"30012553":{"solarSystemId":30012553,"solarSystemName":"G:3EI4","location":{"x":-7260000000000000000,"y":123000000000000000,"z":-10900000000000000000}},"30012554":{"solarSystemId":30012554,"solarSystemName":"F:3O21","location":{"x":-7130000000000000000,"y":-476000000000000000,"z":-11300000000000000000}},"30012555":{"solarSystemId":30012555,"solarSystemName":"B:1LLR","location":{"x":-7330000000000000000,"y":-362000000000000000,"z":-9910000000000000000}},"30012556":{"solarSystemId":30012556,"solarSystemName":"U:302I","location":{"x":-7170000000000000000,"y":-325000000000000000,"z":-10400000000000000000}},"30012557":{"solarSystemId":30012557,"solarSystemName":"U:EEEE","location":{"x":-7790000000000000000,"y":-501000000000000000,"z":-10900000000000000000}},"30012558":{"solarSystemId":30012558,"solarSystemName":"M:R45E","location":{"x":-7870000000000000000,"y":111000000000000000,"z":-11500000000000000000}},"30012559":{"solarSystemId":30012559,"solarSystemName":"F:2680","location":{"x":-7190000000000000000,"y":-455000000000000000,"z":-10900000000000000000}},"30012560":{"solarSystemId":30012560,"solarSystemName":"Z:3I50","location":{"x":-9330000000000000000,"y":4270000000000000000,"z":-11300000000000000000}},"30012561":{"solarSystemId":30012561,"solarSystemName":"H:3N21","location":{"x":-9650000000000000000,"y":2810000000000000000,"z":-9090000000000000000}},"30012562":{"solarSystemId":30012562,"solarSystemName":"Z:2R1T","location":{"x":-9310000000000000000,"y":1860000000000000000,"z":-11400000000000000000}},"30012563":{"solarSystemId":30012563,"solarSystemName":"Z:2SAK","location":{"x":-9310000000000000000,"y":2140000000000000000,"z":-12000000000000000000}},"30012564":{"solarSystemId":30012564,"solarSystemName":"U:285N","location":{"x":-10400000000000000000,"y":2170000000000000000,"z":-12700000000000000000}},"30012565":{"solarSystemId":30012565,"solarSystemName":"B:27L0","location":{"x":-9070000000000000000,"y":2890000000000000000,"z":-12300000000000000000}},"30012566":{"solarSystemId":30012566,"solarSystemName":"H:LR2L","location":{"x":-10300000000000000000,"y":1850000000000000000,"z":-12900000000000000000}},"30012567":{"solarSystemId":30012567,"solarSystemName":"B:3642","location":{"x":-7700000000000000000,"y":1780000000000000000,"z":-10100000000000000000}},"30012568":{"solarSystemId":30012568,"solarSystemName":"G:3NSV","location":{"x":-8050000000000000000,"y":1950000000000000000,"z":-10700000000000000000}},"30012569":{"solarSystemId":30012569,"solarSystemName":"P:1V77","location":{"x":-7950000000000000000,"y":984000000000000000,"z":-9940000000000000000}},"30012570":{"solarSystemId":30012570,"solarSystemName":"D:ROOS","location":{"x":-7150000000000000000,"y":1770000000000000000,"z":-9840000000000000000}},"30012571":{"solarSystemId":30012571,"solarSystemName":"D:348N","location":{"x":-7650000000000000000,"y":1810000000000000000,"z":-10000000000000000000}},"30012572":{"solarSystemId":30012572,"solarSystemName":"M:2VL7","location":{"x":-7770000000000000000,"y":897000000000000000,"z":-10600000000000000000}},"30012573":{"solarSystemId":30012573,"solarSystemName":"B:L3EV","location":{"x":-7290000000000000000,"y":1530000000000000000,"z":-10400000000000000000}},"30012574":{"solarSystemId":30012574,"solarSystemName":"J:273L","location":{"x":-8110000000000000000,"y":1200000000000000000,"z":-9790000000000000000}},"30012575":{"solarSystemId":30012575,"solarSystemName":"M:3R2L","location":{"x":-7800000000000000000,"y":786000000000000000,"z":-10700000000000000000}},"30012576":{"solarSystemId":30012576,"solarSystemName":"U:384R","location":{"x":-7520000000000000000,"y":1530000000000000000,"z":-10300000000000000000}},"30012577":{"solarSystemId":30012577,"solarSystemName":"J:4N9S","location":{"x":-7490000000000000000,"y":760000000000000000,"z":-10100000000000000000}},"30012578":{"solarSystemId":30012578,"solarSystemName":"H:1L0O","location":{"x":-7260000000000000000,"y":1970000000000000000,"z":-10900000000000000000}},"30012579":{"solarSystemId":30012579,"solarSystemName":"Y:2LN6","location":{"x":-7820000000000000000,"y":1400000000000000000,"z":-9620000000000000000}},"30012580":{"solarSystemId":30012580,"solarSystemName":"Q:2E1N","location":{"x":-8370000000000000000,"y":1430000000000000000,"z":-10200000000000000000}},"30012581":{"solarSystemId":30012581,"solarSystemName":"M:E995","location":{"x":-7070000000000000000,"y":1490000000000000000,"z":-10200000000000000000}},"30012582":{"solarSystemId":30012582,"solarSystemName":"P:3O32","location":{"x":-9610000000000000000,"y":847000000000000000,"z":-11000000000000000000}},"30012583":{"solarSystemId":30012583,"solarSystemName":"H:2NS1","location":{"x":-9370000000000000000,"y":-406000000000000000,"z":-11200000000000000000}},"30012584":{"solarSystemId":30012584,"solarSystemName":"G:2LK5","location":{"x":-9120000000000000000,"y":9550000000000000,"z":-12600000000000000000}},"30012585":{"solarSystemId":30012585,"solarSystemName":"Y:1ILT","location":{"x":-10200000000000000000,"y":922000000000000000,"z":-11000000000000000000}},"30012586":{"solarSystemId":30012586,"solarSystemName":"J:1LK0","location":{"x":-10000000000000000000,"y":-479000000000000000,"z":-11300000000000000000}},"30012587":{"solarSystemId":30012587,"solarSystemName":"P:13K9","location":{"x":-10100000000000000000,"y":126000000000000000,"z":-13200000000000000000}},"30012588":{"solarSystemId":30012588,"solarSystemName":"J:49KT","location":{"x":-10200000000000000000,"y":989000000000000000,"z":-10800000000000000000}},"30012589":{"solarSystemId":30012589,"solarSystemName":"J:3E43","location":{"x":-9810000000000000000,"y":1200000000000000000,"z":-11000000000000000000}},"30012590":{"solarSystemId":30012590,"solarSystemName":"Z:1EK4","location":{"x":-9300000000000000000,"y":960000000000000000,"z":-11300000000000000000}},"30012591":{"solarSystemId":30012591,"solarSystemName":"D:2E9L","location":{"x":-10000000000000000000,"y":149000000000000000,"z":-12700000000000000000}},"30012592":{"solarSystemId":30012592,"solarSystemName":"Z:LAO2","location":{"x":-10100000000000000000,"y":-934000000000000000,"z":-11600000000000000000}},"30012593":{"solarSystemId":30012593,"solarSystemName":"P:OI89","location":{"x":-10500000000000000000,"y":116000000000000000,"z":-12800000000000000000}},"30012594":{"solarSystemId":30012594,"solarSystemName":"M:EO93","location":{"x":-9110000000000000000,"y":164000000000000000,"z":-11500000000000000000}},"30012595":{"solarSystemId":30012595,"solarSystemName":"P:2765","location":{"x":-9730000000000000000,"y":-822000000000000000,"z":-11800000000000000000}},"30012596":{"solarSystemId":30012596,"solarSystemName":"Y:2A94","location":{"x":-9410000000000000000,"y":-1910000000000000000,"z":-11400000000000000000}},"30012597":{"solarSystemId":30012597,"solarSystemName":"F:1NK7","location":{"x":-9520000000000000000,"y":425000000000000000,"z":-11000000000000000000}},"30012598":{"solarSystemId":30012598,"solarSystemName":"M:1965","location":{"x":-9840000000000000000,"y":253000000000000000,"z":-11600000000000000000}},"30012599":{"solarSystemId":30012599,"solarSystemName":"H:379R","location":{"x":-10400000000000000000,"y":-918000000000000000,"z":-12200000000000000000}},"30012600":{"solarSystemId":30012600,"solarSystemName":"Z:1N0V","location":{"x":-9320000000000000000,"y":548000000000000000,"z":-11900000000000000000}},"30012601":{"solarSystemId":30012601,"solarSystemName":"B:24I5","location":{"x":-9370000000000000000,"y":-1040000000000000000,"z":-11700000000000000000}},"30012602":{"solarSystemId":30012602,"solarSystemName":"U:2VVR","location":{"x":-9480000000000000000,"y":285000000000000000,"z":-11300000000000000000}},"30012603":{"solarSystemId":30012603,"solarSystemName":"U:3NO6","location":{"x":-9790000000000000000,"y":347000000000000000,"z":-10900000000000000000}},"30012604":{"solarSystemId":30012604,"solarSystemName":"B:383A","location":{"x":-9030000000000000000,"y":-521000000000000000,"z":-11400000000000000000}},"30012605":{"solarSystemId":30012605,"solarSystemName":"B:27OL","location":{"x":-9230000000000000000,"y":566000000000000000,"z":-11900000000000000000}},"30012606":{"solarSystemId":30012606,"solarSystemName":"F:2L4E","location":{"x":-10100000000000000000,"y":1490000000000000000,"z":-9330000000000000000}},"30012607":{"solarSystemId":30012607,"solarSystemName":"Q:1122","location":{"x":-9660000000000000000,"y":928000000000000000,"z":-9760000000000000000}},"30012608":{"solarSystemId":30012608,"solarSystemName":"G:2734","location":{"x":-8530000000000000000,"y":1020000000000000000,"z":-10200000000000000000}},"30012609":{"solarSystemId":30012609,"solarSystemName":"P:1R09","location":{"x":-9550000000000000000,"y":882000000000000000,"z":-10300000000000000000}},"30012610":{"solarSystemId":30012610,"solarSystemName":"H:IKL7","location":{"x":-9420000000000000000,"y":1060000000000000000,"z":-10100000000000000000}},"30012611":{"solarSystemId":30012611,"solarSystemName":"U:302L","location":{"x":-10400000000000000000,"y":1700000000000000000,"z":-9160000000000000000}},"30012612":{"solarSystemId":30012612,"solarSystemName":"B:1NNE","location":{"x":-9940000000000000000,"y":786000000000000000,"z":-10400000000000000000}},"30012613":{"solarSystemId":30012613,"solarSystemName":"Q:1IV6","location":{"x":-9530000000000000000,"y":1030000000000000000,"z":-9700000000000000000}},"30012614":{"solarSystemId":30012614,"solarSystemName":"U:316A","location":{"x":-9000000000000000000,"y":1410000000000000000,"z":-10500000000000000000}},"30012615":{"solarSystemId":30012615,"solarSystemName":"P:22VO","location":{"x":-9930000000000000000,"y":1130000000000000000,"z":-10300000000000000000}},"30012616":{"solarSystemId":30012616,"solarSystemName":"G:3478","location":{"x":-10300000000000000000,"y":1980000000000000000,"z":-9460000000000000000}},"30012617":{"solarSystemId":30012617,"solarSystemName":"G:12S2","location":{"x":-8430000000000000000,"y":887000000000000000,"z":-9470000000000000000}},"30012618":{"solarSystemId":30012618,"solarSystemName":"J:3TR7","location":{"x":-9880000000000000000,"y":1080000000000000000,"z":-9860000000000000000}},"30012619":{"solarSystemId":30012619,"solarSystemName":"M:32KT","location":{"x":-9040000000000000000,"y":1040000000000000000,"z":-9650000000000000000}},"30012620":{"solarSystemId":30012620,"solarSystemName":"H:25O8","location":{"x":-9270000000000000000,"y":1210000000000000000,"z":-9880000000000000000}},"30012621":{"solarSystemId":30012621,"solarSystemName":"J:3EV5","location":{"x":-9020000000000000000,"y":-142000000000000000,"z":-9380000000000000000}},"30012622":{"solarSystemId":30012622,"solarSystemName":"H:2NNT","location":{"x":-8770000000000000000,"y":491000000000000000,"z":-9280000000000000000}},"30012623":{"solarSystemId":30012623,"solarSystemName":"D:E2OA","location":{"x":-9480000000000000000,"y":103000000000000000,"z":-10800000000000000000}},"30012624":{"solarSystemId":30012624,"solarSystemName":"M:4III","location":{"x":-8090000000000000000,"y":501000000000000000,"z":-9810000000000000000}},"30012625":{"solarSystemId":30012625,"solarSystemName":"Z:27EL","location":{"x":-7780000000000000000,"y":308000000000000000,"z":-9730000000000000000}},"30012626":{"solarSystemId":30012626,"solarSystemName":"F:2SLI","location":{"x":-8440000000000000000,"y":88300000000000000,"z":-9200000000000000000}},"30012627":{"solarSystemId":30012627,"solarSystemName":"J:OV3N","location":{"x":-8780000000000000000,"y":-192000000000000000,"z":-10200000000000000000}},"30012628":{"solarSystemId":30012628,"solarSystemName":"U:1L80","location":{"x":-8960000000000000000,"y":845000000000000000,"z":-10300000000000000000}},"30012629":{"solarSystemId":30012629,"solarSystemName":"U:12NN","location":{"x":-9160000000000000000,"y":-431000000000000000,"z":-10300000000000000000}},"30012630":{"solarSystemId":30012630,"solarSystemName":"Y:22OO","location":{"x":-9350000000000000000,"y":514000000000000000,"z":-10900000000000000000}},"30012631":{"solarSystemId":30012631,"solarSystemName":"J:14V8","location":{"x":-8290000000000000000,"y":354000000000000000,"z":-9770000000000000000}},"30012632":{"solarSystemId":30012632,"solarSystemName":"U:365R","location":{"x":-8730000000000000000,"y":779000000000000000,"z":-9810000000000000000}},"30012633":{"solarSystemId":30012633,"solarSystemName":"B:NR85","location":{"x":-8540000000000000000,"y":740000000000000000,"z":-10700000000000000000}},"30012634":{"solarSystemId":30012634,"solarSystemName":"B:23EE","location":{"x":-8560000000000000000,"y":205000000000000000,"z":-10600000000000000000}},"30012635":{"solarSystemId":30012635,"solarSystemName":"Q:1E9O","location":{"x":-8300000000000000000,"y":177000000000000000,"z":-9490000000000000000}},"30012636":{"solarSystemId":30012636,"solarSystemName":"M:2V3K","location":{"x":-9500000000000000000,"y":69800000000000000,"z":-9690000000000000000}},"30012637":{"solarSystemId":30012637,"solarSystemName":"Y:3IK2","location":{"x":-8330000000000000000,"y":1210000000000000000,"z":-10700000000000000000}},"30012638":{"solarSystemId":30012638,"solarSystemName":"Z:1T7T","location":{"x":-7450000000000000000,"y":1150000000000000000,"z":-9340000000000000000}},"30012639":{"solarSystemId":30012639,"solarSystemName":"H:REK6","location":{"x":-7930000000000000000,"y":785000000000000000,"z":-9290000000000000000}},"30012640":{"solarSystemId":30012640,"solarSystemName":"Q:33OV","location":{"x":-7510000000000000000,"y":1520000000000000000,"z":-8500000000000000000}},"30012641":{"solarSystemId":30012641,"solarSystemName":"B:1O09","location":{"x":-7610000000000000000,"y":567000000000000000,"z":-9450000000000000000}},"30012642":{"solarSystemId":30012642,"solarSystemName":"Z:K0NT","location":{"x":-7440000000000000000,"y":1430000000000000000,"z":-8730000000000000000}},"30012643":{"solarSystemId":30012643,"solarSystemName":"Z:2RL1","location":{"x":-7030000000000000000,"y":912000000000000000,"z":-8990000000000000000}},"30012644":{"solarSystemId":30012644,"solarSystemName":"Y:1V60","location":{"x":-7110000000000000000,"y":211000000000000000,"z":-8960000000000000000}},"30012645":{"solarSystemId":30012645,"solarSystemName":"F:2A8O","location":{"x":-8250000000000000000,"y":1090000000000000000,"z":-9350000000000000000}},"30012646":{"solarSystemId":30012646,"solarSystemName":"U:29L0","location":{"x":-7640000000000000000,"y":637000000000000000,"z":-10100000000000000000}},"30012647":{"solarSystemId":30012647,"solarSystemName":"Y:1SOS","location":{"x":-7900000000000000000,"y":12200000000000000,"z":-9260000000000000000}},"30012648":{"solarSystemId":30012648,"solarSystemName":"J:2N7O","location":{"x":-8270000000000000000,"y":901000000000000000,"z":-10000000000000000000}},"30012649":{"solarSystemId":30012649,"solarSystemName":"D:1RRR","location":{"x":-7420000000000000000,"y":650000000000000000,"z":-9670000000000000000}},"30012650":{"solarSystemId":30012650,"solarSystemName":"M:26S0","location":{"x":-7840000000000000000,"y":953000000000000000,"z":-9620000000000000000}},"30012651":{"solarSystemId":30012651,"solarSystemName":"D:3NT9","location":{"x":-7370000000000000000,"y":952000000000000000,"z":-8660000000000000000}},"30012652":{"solarSystemId":30012652,"solarSystemName":"B:1EAI","location":{"x":-8150000000000000000,"y":990000000000000000,"z":-9750000000000000000}},"30012653":{"solarSystemId":30012653,"solarSystemName":"P:1OES","location":{"x":-8190000000000000000,"y":912000000000000000,"z":-9870000000000000000}},"30012654":{"solarSystemId":30012654,"solarSystemName":"P:3685","location":{"x":-8080000000000000000,"y":1060000000000000000,"z":-9800000000000000000}},"30012655":{"solarSystemId":30012655,"solarSystemName":"U:29R2","location":{"x":-6810000000000000000,"y":895000000000000000,"z":-9200000000000000000}},"30012656":{"solarSystemId":30012656,"solarSystemName":"J:1N0E","location":{"x":-7160000000000000000,"y":836000000000000000,"z":-9830000000000000000}},"30012657":{"solarSystemId":30012657,"solarSystemName":"M:2SS5","location":{"x":-2470000000000000000,"y":1320000000000000000,"z":-13100000000000000000}},"30012658":{"solarSystemId":30012658,"solarSystemName":"H:3706","location":{"x":-3340000000000000000,"y":2440000000000000000,"z":-13000000000000000000}},"30012659":{"solarSystemId":30012659,"solarSystemName":"P:1ELT","location":{"x":-2890000000000000000,"y":1410000000000000000,"z":-12200000000000000000}},"30012660":{"solarSystemId":30012660,"solarSystemName":"Y:2111","location":{"x":-4010000000000000000,"y":2600000000000000000,"z":-14000000000000000000}},"30012661":{"solarSystemId":30012661,"solarSystemName":"Z:25N4","location":{"x":-3990000000000000000,"y":2280000000000000000,"z":-13900000000000000000}},"30012662":{"solarSystemId":30012662,"solarSystemName":"H:36L3","location":{"x":-4700000000000000000,"y":1600000000000000000,"z":-12100000000000000000}},"30012663":{"solarSystemId":30012663,"solarSystemName":"U:1TES","location":{"x":-4030000000000000000,"y":1540000000000000000,"z":-12400000000000000000}},"30012664":{"solarSystemId":30012664,"solarSystemName":"U:215I","location":{"x":-3340000000000000000,"y":1080000000000000000,"z":-13400000000000000000}},"30012665":{"solarSystemId":30012665,"solarSystemName":"U:1R5O","location":{"x":-1940000000000000000,"y":2190000000000000000,"z":-13000000000000000000}},"30012666":{"solarSystemId":30012666,"solarSystemName":"B:36S0","location":{"x":-3940000000000000000,"y":2100000000000000000,"z":-12200000000000000000}},"30012667":{"solarSystemId":30012667,"solarSystemName":"P:3197","location":{"x":-5010000000000000000,"y":-1550000000000000000,"z":-12600000000000000000}},"30012668":{"solarSystemId":30012668,"solarSystemName":"G:2VE4","location":{"x":-4780000000000000000,"y":-719000000000000000,"z":-13200000000000000000}},"30012669":{"solarSystemId":30012669,"solarSystemName":"H:1R9K","location":{"x":-6720000000000000000,"y":-1340000000000000000,"z":-13300000000000000000}},"30012670":{"solarSystemId":30012670,"solarSystemName":"D:259R","location":{"x":-5260000000000000000,"y":-691000000000000000,"z":-11700000000000000000}},"30012671":{"solarSystemId":30012671,"solarSystemName":"Z:R5IO","location":{"x":-5670000000000000000,"y":-320000000000000000,"z":-11500000000000000000}},"30012672":{"solarSystemId":30012672,"solarSystemName":"J:2O78","location":{"x":-6490000000000000000,"y":386000000000000000,"z":-13100000000000000000}},"30012673":{"solarSystemId":30012673,"solarSystemName":"H:2AAR","location":{"x":-5650000000000000000,"y":-418000000000000000,"z":-13500000000000000000}},"30012674":{"solarSystemId":30012674,"solarSystemName":"F:111A","location":{"x":-5370000000000000000,"y":-896000000000000000,"z":-13200000000000000000}},"30012675":{"solarSystemId":30012675,"solarSystemName":"F:2S3L","location":{"x":-5650000000000000000,"y":-521000000000000000,"z":-12900000000000000000}},"30012676":{"solarSystemId":30012676,"solarSystemName":"M:1K71","location":{"x":-6720000000000000000,"y":-518000000000000000,"z":-13000000000000000000}},"30012677":{"solarSystemId":30012677,"solarSystemName":"B:1318","location":{"x":-6620000000000000000,"y":247000000000000000,"z":-12700000000000000000}},"30012678":{"solarSystemId":30012678,"solarSystemName":"D:17K4","location":{"x":-5770000000000000000,"y":-422000000000000000,"z":-12500000000000000000}},"30012679":{"solarSystemId":30012679,"solarSystemName":"D:1843","location":{"x":-6560000000000000000,"y":484000000000000000,"z":-12400000000000000000}},"30012680":{"solarSystemId":30012680,"solarSystemName":"J:3EOE","location":{"x":-6410000000000000000,"y":212000000000000000,"z":-8930000000000000000}},"30012681":{"solarSystemId":30012681,"solarSystemName":"U:1EL1","location":{"x":-6360000000000000000,"y":82100000000000000,"z":-9780000000000000000}},"30012682":{"solarSystemId":30012682,"solarSystemName":"M:174I","location":{"x":-6080000000000000000,"y":683000000000000000,"z":-11300000000000000000}},"30012683":{"solarSystemId":30012683,"solarSystemName":"F:3I63","location":{"x":-6210000000000000000,"y":826000000000000000,"z":-9730000000000000000}},"30012684":{"solarSystemId":30012684,"solarSystemName":"F:4V8I","location":{"x":-6100000000000000000,"y":933000000000000000,"z":-9880000000000000000}},"30012685":{"solarSystemId":30012685,"solarSystemName":"Z:28RO","location":{"x":-5660000000000000000,"y":-1180000000000000000,"z":-10500000000000000000}},"30012686":{"solarSystemId":30012686,"solarSystemName":"B:1R88","location":{"x":-5910000000000000000,"y":-89400000000000000,"z":-10400000000000000000}},"30012687":{"solarSystemId":30012687,"solarSystemName":"J:2459","location":{"x":-5590000000000000000,"y":-418000000000000000,"z":-10800000000000000000}},"30012688":{"solarSystemId":30012688,"solarSystemName":"U:29KT","location":{"x":-6620000000000000000,"y":762000000000000000,"z":-10100000000000000000}},"30012689":{"solarSystemId":30012689,"solarSystemName":"U:2E3K","location":{"x":-5890000000000000000,"y":459000000000000000,"z":-10400000000000000000}},"30012690":{"solarSystemId":30012690,"solarSystemName":"G:1KOE","location":{"x":-5730000000000000000,"y":561000000000000000,"z":-10100000000000000000}},"30012691":{"solarSystemId":30012691,"solarSystemName":"B:45I6","location":{"x":-5690000000000000000,"y":1110000000000000000,"z":-10200000000000000000}},"30012692":{"solarSystemId":30012692,"solarSystemName":"H:1ETR","location":{"x":-5890000000000000000,"y":-687000000000000000,"z":-10700000000000000000}},"30012693":{"solarSystemId":30012693,"solarSystemName":"P:21K8","location":{"x":-5340000000000000000,"y":996000000000000000,"z":-11100000000000000000}},"30012694":{"solarSystemId":30012694,"solarSystemName":"U:3R0R","location":{"x":-6710000000000000000,"y":575000000000000000,"z":-10300000000000000000}},"30012695":{"solarSystemId":30012695,"solarSystemName":"Y:1K8S","location":{"x":-5250000000000000000,"y":910000000000000000,"z":-10600000000000000000}},"30012696":{"solarSystemId":30012696,"solarSystemName":"U:2885","location":{"x":-5920000000000000000,"y":565000000000000000,"z":-10200000000000000000}},"30012697":{"solarSystemId":30012697,"solarSystemName":"Q:I4O9","location":{"x":-7440000000000000000,"y":2040000000000000000,"z":-8850000000000000000}},"30012698":{"solarSystemId":30012698,"solarSystemName":"Z:3857","location":{"x":-6520000000000000000,"y":1920000000000000000,"z":-10000000000000000000}},"30012699":{"solarSystemId":30012699,"solarSystemName":"H:1807","location":{"x":-6240000000000000000,"y":2210000000000000000,"z":-9670000000000000000}},"30012700":{"solarSystemId":30012700,"solarSystemName":"B:27S8","location":{"x":-5460000000000000000,"y":2240000000000000000,"z":-9600000000000000000}},"30012701":{"solarSystemId":30012701,"solarSystemName":"M:3A0K","location":{"x":-7660000000000000000,"y":2110000000000000000,"z":-11100000000000000000}},"30012702":{"solarSystemId":30012702,"solarSystemName":"B:277A","location":{"x":-5690000000000000000,"y":1880000000000000000,"z":-10000000000000000000}},"30012703":{"solarSystemId":30012703,"solarSystemName":"Y:4KO4","location":{"x":-6430000000000000000,"y":3430000000000000000,"z":-9700000000000000000}},"30012704":{"solarSystemId":30012704,"solarSystemName":"H:34NO","location":{"x":-6800000000000000000,"y":2860000000000000000,"z":-9520000000000000000}},"30012705":{"solarSystemId":30012705,"solarSystemName":"B:32N5","location":{"x":-5950000000000000000,"y":2260000000000000000,"z":-10500000000000000000}},"30012706":{"solarSystemId":30012706,"solarSystemName":"Y:2VO9","location":{"x":-6690000000000000000,"y":2650000000000000000,"z":-10000000000000000000}},"30012707":{"solarSystemId":30012707,"solarSystemName":"F:3590","location":{"x":-6270000000000000000,"y":1310000000000000000,"z":-9300000000000000000}},"30012708":{"solarSystemId":30012708,"solarSystemName":"U:370O","location":{"x":-4050000000000000000,"y":1460000000000000000,"z":-11400000000000000000}},"30012709":{"solarSystemId":30012709,"solarSystemName":"J:3IR5","location":{"x":-3510000000000000000,"y":1990000000000000000,"z":-11600000000000000000}},"30012710":{"solarSystemId":30012710,"solarSystemName":"D:IEEE","location":{"x":-3150000000000000000,"y":1570000000000000000,"z":-10600000000000000000}},"30012711":{"solarSystemId":30012711,"solarSystemName":"Q:1TOI","location":{"x":-5340000000000000000,"y":1700000000000000000,"z":-11300000000000000000}},"30012712":{"solarSystemId":30012712,"solarSystemName":"J:2L5R","location":{"x":-2970000000000000000,"y":1930000000000000000,"z":-10700000000000000000}},"30012713":{"solarSystemId":30012713,"solarSystemName":"Z:383L","location":{"x":-3740000000000000000,"y":2300000000000000000,"z":-11700000000000000000}},"30012714":{"solarSystemId":30012714,"solarSystemName":"P:254E","location":{"x":-3880000000000000000,"y":1790000000000000000,"z":-11600000000000000000}},"30012715":{"solarSystemId":30012715,"solarSystemName":"U:3O8V","location":{"x":-4430000000000000000,"y":1380000000000000000,"z":-9350000000000000000}},"30012716":{"solarSystemId":30012716,"solarSystemName":"Z:1O8R","location":{"x":-4300000000000000000,"y":2140000000000000000,"z":-10400000000000000000}},"30012717":{"solarSystemId":30012717,"solarSystemName":"P:199N","location":{"x":-3540000000000000000,"y":1120000000000000000,"z":-10500000000000000000}},"30012718":{"solarSystemId":30012718,"solarSystemName":"U:27AS","location":{"x":-3230000000000000000,"y":2270000000000000000,"z":-10900000000000000000}},"30012719":{"solarSystemId":30012719,"solarSystemName":"Y:35RA","location":{"x":-4790000000000000000,"y":-491000000000000000,"z":-9720000000000000000}},"30012720":{"solarSystemId":30012720,"solarSystemName":"D:3E1V","location":{"x":-6590000000000000000,"y":-854000000000000000,"z":-9150000000000000000}},"30012721":{"solarSystemId":30012721,"solarSystemName":"H:2592","location":{"x":-5730000000000000000,"y":-470000000000000000,"z":-9270000000000000000}},"30012722":{"solarSystemId":30012722,"solarSystemName":"B:11NO","location":{"x":-5680000000000000000,"y":-300000000000000000,"z":-10500000000000000000}},"30012723":{"solarSystemId":30012723,"solarSystemName":"H:3N54","location":{"x":-4580000000000000000,"y":-1570000000000000000,"z":-10200000000000000000}},"30012724":{"solarSystemId":30012724,"solarSystemName":"B:115E","location":{"x":-5660000000000000000,"y":183000000000000000,"z":-10200000000000000000}},"30012725":{"solarSystemId":30012725,"solarSystemName":"J:1R51","location":{"x":-5800000000000000000,"y":-308000000000000000,"z":-8750000000000000000}},"30012726":{"solarSystemId":30012726,"solarSystemName":"J:1524","location":{"x":-4730000000000000000,"y":366000000000000000,"z":-8810000000000000000}},"30012727":{"solarSystemId":30012727,"solarSystemName":"Y:1VLS","location":{"x":-4640000000000000000,"y":410000000000000000,"z":-10400000000000000000}},"30012728":{"solarSystemId":30012728,"solarSystemName":"P:270E","location":{"x":-6040000000000000000,"y":-205000000000000000,"z":-8940000000000000000}},"30012729":{"solarSystemId":30012729,"solarSystemName":"G:2K83","location":{"x":-5610000000000000000,"y":-247000000000000000,"z":-10600000000000000000}},"30012730":{"solarSystemId":30012730,"solarSystemName":"Y:1ATA","location":{"x":-3860000000000000000,"y":-541000000000000000,"z":-9040000000000000000}},"30012731":{"solarSystemId":30012731,"solarSystemName":"M:280N","location":{"x":-4320000000000000000,"y":-696000000000000000,"z":-10600000000000000000}},"30012732":{"solarSystemId":30012732,"solarSystemName":"P:32OS","location":{"x":-4190000000000000000,"y":254000000000000000,"z":-9550000000000000000}},"30012733":{"solarSystemId":30012733,"solarSystemName":"Y:2O79","location":{"x":-3620000000000000000,"y":57800000000000000,"z":-9790000000000000000}},"30012734":{"solarSystemId":30012734,"solarSystemName":"Q:E1K0","location":{"x":-3690000000000000000,"y":161000000000000000,"z":-9420000000000000000}},"30012735":{"solarSystemId":30012735,"solarSystemName":"M:302A","location":{"x":-3880000000000000000,"y":-311000000000000000,"z":-10600000000000000000}},"30012736":{"solarSystemId":30012736,"solarSystemName":"B:2068","location":{"x":-3910000000000000000,"y":80000000000000000,"z":-9560000000000000000}},"30012737":{"solarSystemId":30012737,"solarSystemName":"Y:2R1V","location":{"x":-3390000000000000000,"y":-2090000000000000000,"z":-10600000000000000000}},"30012738":{"solarSystemId":30012738,"solarSystemName":"D:322L","location":{"x":-2730000000000000000,"y":1150000000000000000,"z":-10600000000000000000}},"30012739":{"solarSystemId":30012739,"solarSystemName":"M:IKIV","location":{"x":-4730000000000000000,"y":-713000000000000000,"z":-11600000000000000000}},"30012740":{"solarSystemId":30012740,"solarSystemName":"D:2I94","location":{"x":-4920000000000000000,"y":-1100000000000000000,"z":-11000000000000000000}},"30012741":{"solarSystemId":30012741,"solarSystemName":"J:3E24","location":{"x":-3550000000000000000,"y":301000000000000000,"z":-12100000000000000000}},"30012742":{"solarSystemId":30012742,"solarSystemName":"M:3NS8","location":{"x":-3790000000000000000,"y":-1190000000000000000,"z":-11000000000000000000}},"30012743":{"solarSystemId":30012743,"solarSystemName":"B:1S19","location":{"x":-2340000000000000000,"y":751000000000000000,"z":-10100000000000000000}},"30012744":{"solarSystemId":30012744,"solarSystemName":"F:3I61","location":{"x":-2760000000000000000,"y":1680000000000000000,"z":-10900000000000000000}},"30012745":{"solarSystemId":30012745,"solarSystemName":"M:1VK8","location":{"x":-4300000000000000000,"y":-1340000000000000000,"z":-10700000000000000000}},"30012746":{"solarSystemId":30012746,"solarSystemName":"M:1630","location":{"x":-3350000000000000000,"y":-569000000000000000,"z":-10700000000000000000}},"30012747":{"solarSystemId":30012747,"solarSystemName":"M:1R82","location":{"x":-1740000000000000000,"y":755000000000000000,"z":-10800000000000000000}},"30012748":{"solarSystemId":30012748,"solarSystemName":"D:1A2L","location":{"x":-4770000000000000000,"y":-1070000000000000000,"z":-11200000000000000000}},"30012749":{"solarSystemId":30012749,"solarSystemName":"P:39RR","location":{"x":-3510000000000000000,"y":-143000000000000000,"z":-10500000000000000000}},"30012750":{"solarSystemId":30012750,"solarSystemName":"P:28SA","location":{"x":-3300000000000000000,"y":560000000000000000,"z":-10600000000000000000}},"30012751":{"solarSystemId":30012751,"solarSystemName":"Y:25LO","location":{"x":-2730000000000000000,"y":665000000000000000,"z":-10300000000000000000}},"30012752":{"solarSystemId":30012752,"solarSystemName":"Q:2AO9","location":{"x":-4090000000000000000,"y":-30900000000000000,"z":-11600000000000000000}},"30012753":{"solarSystemId":30012753,"solarSystemName":"H:1L05","location":{"x":-4610000000000000000,"y":445000000000000000,"z":-11600000000000000000}},"30012754":{"solarSystemId":30012754,"solarSystemName":"Y:2S64","location":{"x":-4950000000000000000,"y":1120000000000000000,"z":-11200000000000000000}},"30012755":{"solarSystemId":30012755,"solarSystemName":"G:1TE5","location":{"x":-4870000000000000000,"y":-469000000000000000,"z":-11400000000000000000}},"30012756":{"solarSystemId":30012756,"solarSystemName":"Y:3V9T","location":{"x":-4560000000000000000,"y":444000000000000000,"z":-11800000000000000000}},"30012757":{"solarSystemId":30012757,"solarSystemName":"P:3691","location":{"x":-4540000000000000000,"y":-268000000000000000,"z":-12100000000000000000}},"30012758":{"solarSystemId":30012758,"solarSystemName":"B:2503","location":{"x":-5180000000000000000,"y":200000000000000000,"z":-11700000000000000000}},"30012759":{"solarSystemId":30012759,"solarSystemName":"F:3V65","location":{"x":-4040000000000000000,"y":1040000000000000000,"z":-11300000000000000000}},"30012760":{"solarSystemId":30012760,"solarSystemName":"D:3E93","location":{"x":-4440000000000000000,"y":354000000000000000,"z":-10900000000000000000}},"30012761":{"solarSystemId":30012761,"solarSystemName":"Q:26TO","location":{"x":-4670000000000000000,"y":-509000000000000000,"z":-11600000000000000000}},"30012762":{"solarSystemId":30012762,"solarSystemName":"M:2016","location":{"x":-5210000000000000000,"y":1110000000000000000,"z":-11500000000000000000}},"30012763":{"solarSystemId":30012763,"solarSystemName":"Q:VVTO","location":{"x":-5520000000000000000,"y":-15200000000000000,"z":-11600000000000000000}},"30012764":{"solarSystemId":30012764,"solarSystemName":"D:1TA5","location":{"x":-4410000000000000000,"y":95200000000000000,"z":-10800000000000000000}},"30012765":{"solarSystemId":30012765,"solarSystemName":"H:25VK","location":{"x":-4380000000000000000,"y":316000000000000000,"z":-11000000000000000000}},"30012766":{"solarSystemId":30012766,"solarSystemName":"B:OE58","location":{"x":-5280000000000000000,"y":200000000000000000,"z":-12200000000000000000}},"30012767":{"solarSystemId":30012767,"solarSystemName":"H:L0RK","location":{"x":-5320000000000000000,"y":209000000000000000,"z":-13500000000000000000}},"30012768":{"solarSystemId":30012768,"solarSystemName":"U:1R9S","location":{"x":-4360000000000000000,"y":445000000000000000,"z":-12400000000000000000}},"30012769":{"solarSystemId":30012769,"solarSystemName":"F:E3EK","location":{"x":-5240000000000000000,"y":100000000000000000,"z":-12500000000000000000}},"30012770":{"solarSystemId":30012770,"solarSystemName":"Y:2RNE","location":{"x":-4810000000000000000,"y":549000000000000000,"z":-12600000000000000000}},"30012771":{"solarSystemId":30012771,"solarSystemName":"J:2V19","location":{"x":-5750000000000000000,"y":403000000000000000,"z":-13200000000000000000}},"30012772":{"solarSystemId":30012772,"solarSystemName":"M:3T49","location":{"x":-4090000000000000000,"y":222000000000000000,"z":-12300000000000000000}},"30012773":{"solarSystemId":30012773,"solarSystemName":"Y:2KRL","location":{"x":-4460000000000000000,"y":483000000000000000,"z":-12200000000000000000}},"30012774":{"solarSystemId":30012774,"solarSystemName":"H:18V1","location":{"x":-4760000000000000000,"y":401000000000000000,"z":-13000000000000000000}},"30012775":{"solarSystemId":30012775,"solarSystemName":"D:1I58","location":{"x":-4370000000000000000,"y":-111000000000000000,"z":-12900000000000000000}},"30012776":{"solarSystemId":30012776,"solarSystemName":"D:2520","location":{"x":-5210000000000000000,"y":-335000000000000000,"z":-13300000000000000000}},"30012777":{"solarSystemId":30012777,"solarSystemName":"M:3TL7","location":{"x":-4310000000000000000,"y":1240000000000000000,"z":-12800000000000000000}},"30012778":{"solarSystemId":30012778,"solarSystemName":"J:215K","location":{"x":-4080000000000000000,"y":1130000000000000000,"z":-13000000000000000000}},"30012779":{"solarSystemId":30012779,"solarSystemName":"J:3ET1","location":{"x":-6440000000000000000,"y":-557000000000000000,"z":-18900000000000000000}},"30012780":{"solarSystemId":30012780,"solarSystemName":"U:343A","location":{"x":-5670000000000000000,"y":-1660000000000000000,"z":-19200000000000000000}},"30012781":{"solarSystemId":30012781,"solarSystemName":"U:1I9I","location":{"x":-6260000000000000000,"y":-540000000000000000,"z":-19300000000000000000}},"30012782":{"solarSystemId":30012782,"solarSystemName":"Q:ENEI","location":{"x":-6490000000000000000,"y":-479000000000000000,"z":-18500000000000000000}},"30012783":{"solarSystemId":30012783,"solarSystemName":"G:KI57","location":{"x":-6020000000000000000,"y":441000000000000000,"z":-17200000000000000000}},"30012784":{"solarSystemId":30012784,"solarSystemName":"U:258E","location":{"x":-6800000000000000000,"y":-564000000000000000,"z":-20100000000000000000}},"30012785":{"solarSystemId":30012785,"solarSystemName":"H:E3V9","location":{"x":-6870000000000000000,"y":-361000000000000000,"z":-20200000000000000000}},"30012786":{"solarSystemId":30012786,"solarSystemName":"B:283V","location":{"x":-6420000000000000000,"y":-939000000000000000,"z":-20700000000000000000}},"30012787":{"solarSystemId":30012787,"solarSystemName":"D:11I8","location":{"x":-5800000000000000000,"y":-120000000000000000,"z":-18900000000000000000}},"30012788":{"solarSystemId":30012788,"solarSystemName":"M:1O59","location":{"x":-6510000000000000000,"y":-81600000000000000,"z":-17900000000000000000}},"30012789":{"solarSystemId":30012789,"solarSystemName":"M:299L","location":{"x":-7080000000000000000,"y":-260000000000000000,"z":-17300000000000000000}},"30012790":{"solarSystemId":30012790,"solarSystemName":"P:217R","location":{"x":-7200000000000000000,"y":-1410000000000000000,"z":-16500000000000000000}},"30012791":{"solarSystemId":30012791,"solarSystemName":"Y:350N","location":{"x":-6180000000000000000,"y":128000000000000000,"z":-17100000000000000000}},"30012792":{"solarSystemId":30012792,"solarSystemName":"U:2609","location":{"x":-6330000000000000000,"y":237000000000000000,"z":-17700000000000000000}},"30012793":{"solarSystemId":30012793,"solarSystemName":"B:327K","location":{"x":-7270000000000000000,"y":-590000000000000000,"z":-16900000000000000000}},"30012794":{"solarSystemId":30012794,"solarSystemName":"F:VVI2","location":{"x":-5990000000000000000,"y":-591000000000000000,"z":-17000000000000000000}},"30012795":{"solarSystemId":30012795,"solarSystemName":"Z:1O6A","location":{"x":-6100000000000000000,"y":-748000000000000000,"z":-15900000000000000000}},"30012796":{"solarSystemId":30012796,"solarSystemName":"J:R016","location":{"x":-7190000000000000000,"y":61300000000000000,"z":-17200000000000000000}},"30012797":{"solarSystemId":30012797,"solarSystemName":"G:1R53","location":{"x":-6520000000000000000,"y":-394000000000000000,"z":-17200000000000000000}},"30012798":{"solarSystemId":30012798,"solarSystemName":"Y:268V","location":{"x":-7100000000000000000,"y":1660000000000000000,"z":-16900000000000000000}},"30012799":{"solarSystemId":30012799,"solarSystemName":"G:3ETN","location":{"x":-7960000000000000000,"y":2790000000000000000,"z":-16600000000000000000}},"30012800":{"solarSystemId":30012800,"solarSystemName":"P:VI9V","location":{"x":-7930000000000000000,"y":2980000000000000000,"z":-16700000000000000000}},"30012801":{"solarSystemId":30012801,"solarSystemName":"F:1T78","location":{"x":-8530000000000000000,"y":959000000000000000,"z":-17400000000000000000}},"30012802":{"solarSystemId":30012802,"solarSystemName":"G:3SA4","location":{"x":-8530000000000000000,"y":1760000000000000000,"z":-18200000000000000000}},"30012803":{"solarSystemId":30012803,"solarSystemName":"H:274N","location":{"x":-7030000000000000000,"y":926000000000000000,"z":-16500000000000000000}},"30012804":{"solarSystemId":30012804,"solarSystemName":"P:3T54","location":{"x":-7500000000000000000,"y":989000000000000000,"z":-16300000000000000000}},"30012805":{"solarSystemId":30012805,"solarSystemName":"Y:288S","location":{"x":-7960000000000000000,"y":2610000000000000000,"z":-17600000000000000000}},"30012806":{"solarSystemId":30012806,"solarSystemName":"J:S77R","location":{"x":-8040000000000000000,"y":2150000000000000000,"z":-17200000000000000000}},"30012807":{"solarSystemId":30012807,"solarSystemName":"H:1NI4","location":{"x":-7160000000000000000,"y":1770000000000000000,"z":-17000000000000000000}},"30012808":{"solarSystemId":30012808,"solarSystemName":"H:RT9T","location":{"x":-2490000000000000000,"y":-1570000000000000000,"z":-23300000000000000000}},"30012809":{"solarSystemId":30012809,"solarSystemName":"J:1O5R","location":{"x":-3170000000000000000,"y":-1920000000000000000,"z":-23500000000000000000}},"30012810":{"solarSystemId":30012810,"solarSystemName":"D:1L2T","location":{"x":-3390000000000000000,"y":-1410000000000000000,"z":-22100000000000000000}},"30012811":{"solarSystemId":30012811,"solarSystemName":"Y:E0TO","location":{"x":-3740000000000000000,"y":-1370000000000000000,"z":-20000000000000000000}},"30012812":{"solarSystemId":30012812,"solarSystemName":"F:4LT7","location":{"x":-2760000000000000000,"y":-1190000000000000000,"z":-22400000000000000000}},"30012813":{"solarSystemId":30012813,"solarSystemName":"U:2449","location":{"x":-8010000000000000000,"y":899000000000000000,"z":-18800000000000000000}},"30012814":{"solarSystemId":30012814,"solarSystemName":"U:16AL","location":{"x":-7830000000000000000,"y":450000000000000000,"z":-19300000000000000000}},"30012815":{"solarSystemId":30012815,"solarSystemName":"J:2TKI","location":{"x":-2760000000000000000,"y":-1400000000000000000,"z":-22600000000000000000}},"30012816":{"solarSystemId":30012816,"solarSystemName":"P:1IR3","location":{"x":-4720000000000000000,"y":-1510000000000000000,"z":-20100000000000000000}},"30012817":{"solarSystemId":30012817,"solarSystemName":"B:29VT","location":{"x":-6510000000000000000,"y":1870000000000000000,"z":-20000000000000000000}},"30012818":{"solarSystemId":30012818,"solarSystemName":"U:23EN","location":{"x":-4920000000000000000,"y":795000000000000000,"z":-20000000000000000000}},"30012819":{"solarSystemId":30012819,"solarSystemName":"Z:2AEO","location":{"x":-6200000000000000000,"y":2190000000000000000,"z":-18100000000000000000}},"30012820":{"solarSystemId":30012820,"solarSystemName":"Y:203I","location":{"x":-7060000000000000000,"y":995000000000000000,"z":-18700000000000000000}},"30012821":{"solarSystemId":30012821,"solarSystemName":"M:4REA","location":{"x":-6670000000000000000,"y":2410000000000000000,"z":-18000000000000000000}},"30012822":{"solarSystemId":30012822,"solarSystemName":"Z:3LS2","location":{"x":-6980000000000000000,"y":321000000000000000,"z":-18900000000000000000}},"30012823":{"solarSystemId":30012823,"solarSystemName":"F:3V1R","location":{"x":-5820000000000000000,"y":904000000000000000,"z":-19500000000000000000}},"30012824":{"solarSystemId":30012824,"solarSystemName":"Z:3549","location":{"x":-6360000000000000000,"y":406000000000000000,"z":-20300000000000000000}},"30012825":{"solarSystemId":30012825,"solarSystemName":"G:20TV","location":{"x":-7030000000000000000,"y":1160000000000000000,"z":-18600000000000000000}},"30012826":{"solarSystemId":30012826,"solarSystemName":"J:3OLV","location":{"x":-5850000000000000000,"y":-333000000000000000,"z":-17800000000000000000}},"30012827":{"solarSystemId":30012827,"solarSystemName":"D:3IVA","location":{"x":-4670000000000000000,"y":-688000000000000000,"z":-16800000000000000000}},"30012828":{"solarSystemId":30012828,"solarSystemName":"G:IS4A","location":{"x":-5380000000000000000,"y":-798000000000000000,"z":-15700000000000000000}},"30012829":{"solarSystemId":30012829,"solarSystemName":"B:1NO4","location":{"x":-5270000000000000000,"y":-833000000000000000,"z":-17600000000000000000}},"30012830":{"solarSystemId":30012830,"solarSystemName":"J:37S7","location":{"x":-4880000000000000000,"y":-1140000000000000000,"z":-18500000000000000000}},"30012831":{"solarSystemId":30012831,"solarSystemName":"P:31VN","location":{"x":-5650000000000000000,"y":-406000000000000000,"z":-18300000000000000000}},"30012832":{"solarSystemId":30012832,"solarSystemName":"Q:4E53","location":{"x":-4850000000000000000,"y":-832000000000000000,"z":-16900000000000000000}},"30012833":{"solarSystemId":30012833,"solarSystemName":"Q:2I5S","location":{"x":-5080000000000000000,"y":-855000000000000000,"z":-16300000000000000000}},"30012834":{"solarSystemId":30012834,"solarSystemName":"Z:255N","location":{"x":-5290000000000000000,"y":-1200000000000000000,"z":-16900000000000000000}},"30012835":{"solarSystemId":30012835,"solarSystemName":"Q:1O77","location":{"x":-6940000000000000000,"y":1180000000000000000,"z":-18100000000000000000}},"30012836":{"solarSystemId":30012836,"solarSystemName":"Z:3S8A","location":{"x":-7270000000000000000,"y":2060000000000000000,"z":-17500000000000000000}},"30012837":{"solarSystemId":30012837,"solarSystemName":"F:18E1","location":{"x":-7210000000000000000,"y":1890000000000000000,"z":-17700000000000000000}},"30012838":{"solarSystemId":30012838,"solarSystemName":"Y:1EK9","location":{"x":-7840000000000000000,"y":1480000000000000000,"z":-17900000000000000000}},"30012839":{"solarSystemId":30012839,"solarSystemName":"Z:3O48","location":{"x":-6160000000000000000,"y":1400000000000000000,"z":-17900000000000000000}},"30012840":{"solarSystemId":30012840,"solarSystemName":"G:37IO","location":{"x":-6650000000000000000,"y":1620000000000000000,"z":-18000000000000000000}},"30012841":{"solarSystemId":30012841,"solarSystemName":"U:218L","location":{"x":-7580000000000000000,"y":1070000000000000000,"z":-18000000000000000000}},"30012842":{"solarSystemId":30012842,"solarSystemName":"B:S0TA","location":{"x":-6780000000000000000,"y":952000000000000000,"z":-17200000000000000000}},"30012843":{"solarSystemId":30012843,"solarSystemName":"U:1VKE","location":{"x":-7330000000000000000,"y":1550000000000000000,"z":-17600000000000000000}},"30012844":{"solarSystemId":30012844,"solarSystemName":"J:239E","location":{"x":-8370000000000000000,"y":-442000000000000000,"z":-18900000000000000000}},"30012845":{"solarSystemId":30012845,"solarSystemName":"P:1R33","location":{"x":-8180000000000000000,"y":-660000000000000000,"z":-18200000000000000000}},"30012846":{"solarSystemId":30012846,"solarSystemName":"M:3E0V","location":{"x":-8360000000000000000,"y":-733000000000000000,"z":-19000000000000000000}},"30012847":{"solarSystemId":30012847,"solarSystemName":"G:345K","location":{"x":-8270000000000000000,"y":483000000000000000,"z":-17900000000000000000}},"30012848":{"solarSystemId":30012848,"solarSystemName":"M:2023","location":{"x":-7900000000000000000,"y":-190000000000000000,"z":-18100000000000000000}},"30012849":{"solarSystemId":30012849,"solarSystemName":"M:242V","location":{"x":-8620000000000000000,"y":-776000000000000000,"z":-18200000000000000000}},"30012850":{"solarSystemId":30012850,"solarSystemName":"B:36R8","location":{"x":-9010000000000000000,"y":-535000000000000000,"z":-18000000000000000000}},"30012851":{"solarSystemId":30012851,"solarSystemName":"Z:21R4","location":{"x":-7480000000000000000,"y":-831000000000000000,"z":-17700000000000000000}},"30012852":{"solarSystemId":30012852,"solarSystemName":"P:1600","location":{"x":-8410000000000000000,"y":-302000000000000000,"z":-17400000000000000000}},"30012853":{"solarSystemId":30012853,"solarSystemName":"H:2KA0","location":{"x":-7270000000000000000,"y":183000000000000000,"z":-18800000000000000000}},"30012854":{"solarSystemId":30012854,"solarSystemName":"Z:OSK4","location":{"x":-1410000000000000000,"y":-144000000000000000,"z":-12900000000000000000}},"30012855":{"solarSystemId":30012855,"solarSystemName":"U:1TVE","location":{"x":-1240000000000000000,"y":925000000000000000,"z":-13300000000000000000}},"30012856":{"solarSystemId":30012856,"solarSystemName":"P:1OK8","location":{"x":-621000000000000000,"y":164000000000000000,"z":-13400000000000000000}},"30012857":{"solarSystemId":30012857,"solarSystemName":"J:1830","location":{"x":-210000000000000000,"y":183000000000000000,"z":-12900000000000000000}},"30012858":{"solarSystemId":30012858,"solarSystemName":"Z:24A9","location":{"x":-693000000000000000,"y":627000000000000000,"z":-13700000000000000000}},"30012859":{"solarSystemId":30012859,"solarSystemName":"U:2266","location":{"x":-171000000000000000,"y":119000000000000000,"z":-13900000000000000000}},"30012860":{"solarSystemId":30012860,"solarSystemName":"P:221I","location":{"x":-583000000000000000,"y":-299000000000000000,"z":-14100000000000000000}},"30012861":{"solarSystemId":30012861,"solarSystemName":"Z:26O7","location":{"x":-1620000000000000000,"y":111000000000000000,"z":-13200000000000000000}},"30012862":{"solarSystemId":30012862,"solarSystemName":"D:SR8L","location":{"x":-825000000000000000,"y":184000000000000000,"z":-13300000000000000000}},"30012863":{"solarSystemId":30012863,"solarSystemName":"M:2E7K","location":{"x":-398000000000000000,"y":618000000000000000,"z":-12900000000000000000}},"30012864":{"solarSystemId":30012864,"solarSystemName":"Z:1TV4","location":{"x":-273000000000000000,"y":-511000000000000000,"z":-13300000000000000000}},"30012865":{"solarSystemId":30012865,"solarSystemName":"F:IE63","location":{"x":-625000000000000000,"y":-232000000000000000,"z":-13800000000000000000}},"30012866":{"solarSystemId":30012866,"solarSystemName":"Z:3IVR","location":{"x":-1450000000000000000,"y":845000000000000000,"z":-12100000000000000000}},"30012867":{"solarSystemId":30012867,"solarSystemName":"G:1EN2","location":{"x":-1760000000000000000,"y":1820000000000000000,"z":-12500000000000000000}},"30012868":{"solarSystemId":30012868,"solarSystemName":"H:286O","location":{"x":-599000000000000000,"y":31800000000000000,"z":-11400000000000000000}},"30012869":{"solarSystemId":30012869,"solarSystemName":"J:3A4S","location":{"x":-1530000000000000000,"y":2430000000000000000,"z":-12500000000000000000}},"30012870":{"solarSystemId":30012870,"solarSystemName":"Y:3R8V","location":{"x":-1550000000000000000,"y":1280000000000000000,"z":-12300000000000000000}},"30012871":{"solarSystemId":30012871,"solarSystemName":"G:31IA","location":{"x":-772000000000000000,"y":1160000000000000000,"z":-12100000000000000000}},"30012872":{"solarSystemId":30012872,"solarSystemName":"J:1928","location":{"x":-1840000000000000000,"y":818000000000000000,"z":-13100000000000000000}},"30012873":{"solarSystemId":30012873,"solarSystemName":"Q:2608","location":{"x":-1870000000000000000,"y":1300000000000000000,"z":-12800000000000000000}},"30012874":{"solarSystemId":30012874,"solarSystemName":"U:3ORT","location":{"x":-1780000000000000000,"y":1490000000000000000,"z":-11700000000000000000}},"30012875":{"solarSystemId":30012875,"solarSystemName":"F:O841","location":{"x":-1430000000000000000,"y":1150000000000000000,"z":-12200000000000000000}},"30012876":{"solarSystemId":30012876,"solarSystemName":"Q:1727","location":{"x":-877000000000000000,"y":422000000000000000,"z":-12200000000000000000}},"30012877":{"solarSystemId":30012877,"solarSystemName":"P:N543","location":{"x":-2030000000000000000,"y":2200000000000000000,"z":-12400000000000000000}},"30012878":{"solarSystemId":30012878,"solarSystemName":"U:27S5","location":{"x":-678000000000000000,"y":306000000000000000,"z":-12100000000000000000}},"30012879":{"solarSystemId":30012879,"solarSystemName":"D:28EO","location":{"x":-274000000000000000,"y":1730000000000000000,"z":-13200000000000000000}},"30012880":{"solarSystemId":30012880,"solarSystemName":"B:2R40","location":{"x":-1910000000000000000,"y":920000000000000000,"z":-13500000000000000000}},"30012881":{"solarSystemId":30012881,"solarSystemName":"Q:27E1","location":{"x":-1360000000000000000,"y":1480000000000000000,"z":-12600000000000000000}},"30012882":{"solarSystemId":30012882,"solarSystemName":"Z:2AL0","location":{"x":-118000000000000000,"y":916000000000000000,"z":-13900000000000000000}},"30012883":{"solarSystemId":30012883,"solarSystemName":"M:19LR","location":{"x":-940000000000000000,"y":1200000000000000000,"z":-12400000000000000000}},"30012884":{"solarSystemId":30012884,"solarSystemName":"B:17ST","location":{"x":309000000000000000,"y":1040000000000000000,"z":-14200000000000000000}},"30012885":{"solarSystemId":30012885,"solarSystemName":"Q:36L8","location":{"x":-264000000000000000,"y":1400000000000000000,"z":-13500000000000000000}},"30012886":{"solarSystemId":30012886,"solarSystemName":"Q:S468","location":{"x":232000000000000000,"y":883000000000000000,"z":-14100000000000000000}},"30012887":{"solarSystemId":30012887,"solarSystemName":"F:1KN4","location":{"x":-234000000000000000,"y":1310000000000000000,"z":-13700000000000000000}},"30012888":{"solarSystemId":30012888,"solarSystemName":"H:289V","location":{"x":-682000000000000000,"y":1350000000000000000,"z":-13500000000000000000}},"30012889":{"solarSystemId":30012889,"solarSystemName":"B:3TR4","location":{"x":-2260000000000000000,"y":-864000000000000000,"z":-12300000000000000000}},"30012890":{"solarSystemId":30012890,"solarSystemName":"Z:1TA8","location":{"x":-1320000000000000000,"y":18100000000000000,"z":-11500000000000000000}},"30012891":{"solarSystemId":30012891,"solarSystemName":"G:1OT8","location":{"x":-1680000000000000000,"y":441000000000000000,"z":-11900000000000000000}},"30012892":{"solarSystemId":30012892,"solarSystemName":"F:N62O","location":{"x":-2350000000000000000,"y":-1230000000000000000,"z":-12600000000000000000}},"30012893":{"solarSystemId":30012893,"solarSystemName":"M:SIEE","location":{"x":-1200000000000000000,"y":110000000000000000,"z":-12200000000000000000}},"30012894":{"solarSystemId":30012894,"solarSystemName":"Y:199O","location":{"x":-1550000000000000000,"y":-38000000000000000,"z":-11800000000000000000}},"30012895":{"solarSystemId":30012895,"solarSystemName":"B:1456","location":{"x":-547000000000000000,"y":-1260000000000000000,"z":-11900000000000000000}},"30012896":{"solarSystemId":30012896,"solarSystemName":"B:OVVN","location":{"x":-967000000000000000,"y":-1140000000000000000,"z":-13200000000000000000}},"30012897":{"solarSystemId":30012897,"solarSystemName":"P:32K2","location":{"x":-1190000000000000000,"y":-1130000000000000000,"z":-12600000000000000000}},"30012898":{"solarSystemId":30012898,"solarSystemName":"Q:1T3N","location":{"x":-1390000000000000000,"y":-1360000000000000000,"z":-13600000000000000000}},"30012899":{"solarSystemId":30012899,"solarSystemName":"B:4633","location":{"x":-2130000000000000000,"y":-452000000000000000,"z":-12100000000000000000}},"30012900":{"solarSystemId":30012900,"solarSystemName":"U:3TRN","location":{"x":-3370000000000000000,"y":-1230000000000000000,"z":-13900000000000000000}},"30012901":{"solarSystemId":30012901,"solarSystemName":"G:2134","location":{"x":-2690000000000000000,"y":-289000000000000000,"z":-14600000000000000000}},"30012902":{"solarSystemId":30012902,"solarSystemName":"H:263I","location":{"x":-2420000000000000000,"y":-376000000000000000,"z":-14300000000000000000}},"30012903":{"solarSystemId":30012903,"solarSystemName":"M:E280","location":{"x":-2770000000000000000,"y":-450000000000000000,"z":-14200000000000000000}},"30012904":{"solarSystemId":30012904,"solarSystemName":"J:NL6E","location":{"x":-2650000000000000000,"y":-301000000000000000,"z":-14500000000000000000}},"30012905":{"solarSystemId":30012905,"solarSystemName":"H:1K13","location":{"x":-3040000000000000000,"y":-663000000000000000,"z":-15100000000000000000}},"30012906":{"solarSystemId":30012906,"solarSystemName":"D:45S0","location":{"x":-3550000000000000000,"y":-296000000000000000,"z":-14800000000000000000}},"30012907":{"solarSystemId":30012907,"solarSystemName":"U:2OV7","location":{"x":-3640000000000000000,"y":-470000000000000000,"z":-13600000000000000000}},"30012908":{"solarSystemId":30012908,"solarSystemName":"F:3VNO","location":{"x":-3180000000000000000,"y":503000000000000000,"z":-14300000000000000000}},"30012909":{"solarSystemId":30012909,"solarSystemName":"M:15R2","location":{"x":-3700000000000000000,"y":258000000000000000,"z":-14200000000000000000}},"30012910":{"solarSystemId":30012910,"solarSystemName":"B:30L3","location":{"x":-3240000000000000000,"y":-877000000000000000,"z":-14100000000000000000}},"30012911":{"solarSystemId":30012911,"solarSystemName":"Q:3RO9","location":{"x":-2730000000000000000,"y":46900000000000000,"z":-13000000000000000000}},"30012912":{"solarSystemId":30012912,"solarSystemName":"Y:35R3","location":{"x":-3180000000000000000,"y":273000000000000000,"z":-12500000000000000000}},"30012913":{"solarSystemId":30012913,"solarSystemName":"Q:2KA7","location":{"x":-2620000000000000000,"y":138000000000000000,"z":-12700000000000000000}},"30012914":{"solarSystemId":30012914,"solarSystemName":"D:17E3","location":{"x":-2400000000000000000,"y":730000000000000000,"z":-12700000000000000000}},"30012915":{"solarSystemId":30012915,"solarSystemName":"M:28RV","location":{"x":-2490000000000000000,"y":1120000000000000000,"z":-12800000000000000000}},"30012916":{"solarSystemId":30012916,"solarSystemName":"U:17K6","location":{"x":-2870000000000000000,"y":820622000000000,"z":-12400000000000000000}},"30012917":{"solarSystemId":30012917,"solarSystemName":"G:2S8A","location":{"x":-3260000000000000000,"y":65000000000000000,"z":-12200000000000000000}},"30012918":{"solarSystemId":30012918,"solarSystemName":"Z:154K","location":{"x":-2100000000000000000,"y":960000000000000000,"z":-12900000000000000000}},"30012919":{"solarSystemId":30012919,"solarSystemName":"Y:30T0","location":{"x":-2990000000000000000,"y":424000000000000000,"z":-13700000000000000000}},"30012920":{"solarSystemId":30012920,"solarSystemName":"Y:LRIL","location":{"x":-2630000000000000000,"y":-211000000000000000,"z":-14000000000000000000}},"30012921":{"solarSystemId":30012921,"solarSystemName":"Z:13KE","location":{"x":-2640000000000000000,"y":14500000000000000,"z":-12500000000000000000}},"30012922":{"solarSystemId":30012922,"solarSystemName":"H:VTI4","location":{"x":-3370000000000000000,"y":602000000000000000,"z":-12700000000000000000}},"30012923":{"solarSystemId":30012923,"solarSystemName":"P:3797","location":{"x":-2480000000000000000,"y":1860000000000000000,"z":-15000000000000000000}},"30012924":{"solarSystemId":30012924,"solarSystemName":"D:275E","location":{"x":-2290000000000000000,"y":2290000000000000000,"z":-14600000000000000000}},"30012925":{"solarSystemId":30012925,"solarSystemName":"B:25I5","location":{"x":-270000000000000000,"y":2050000000000000000,"z":-15500000000000000000}},"30012926":{"solarSystemId":30012926,"solarSystemName":"G:I29I","location":{"x":271000000000000000,"y":467000000000000000,"z":-14100000000000000000}},"30012927":{"solarSystemId":30012927,"solarSystemName":"Z:2KE3","location":{"x":-2430000000000000000,"y":2140000000000000000,"z":-14500000000000000000}},"30012928":{"solarSystemId":30012928,"solarSystemName":"D:268K","location":{"x":-1520000000000000000,"y":2720000000000000000,"z":-16500000000000000000}},"30012929":{"solarSystemId":30012929,"solarSystemName":"H:20AK","location":{"x":529000000000000000,"y":971000000000000000,"z":-14700000000000000000}},"30012930":{"solarSystemId":30012930,"solarSystemName":"J:11OK","location":{"x":5680000000000000,"y":1740000000000000000,"z":-15200000000000000000}},"30012931":{"solarSystemId":30012931,"solarSystemName":"H:1K54","location":{"x":720000000000000000,"y":308000000000000000,"z":-13800000000000000000}},"30012932":{"solarSystemId":30012932,"solarSystemName":"Y:2EOK","location":{"x":-900000000000000000,"y":-500000000000000000,"z":-14500000000000000000}},"30012933":{"solarSystemId":30012933,"solarSystemName":"D:118O","location":{"x":-1020000000000000000,"y":-156000000000000000,"z":-14600000000000000000}},"30012934":{"solarSystemId":30012934,"solarSystemName":"M:2337","location":{"x":-2060000000000000000,"y":-257000000000000000,"z":-15400000000000000000}},"30012935":{"solarSystemId":30012935,"solarSystemName":"Z:3V34","location":{"x":-1040000000000000000,"y":-808000000000000000,"z":-13700000000000000000}},"30012936":{"solarSystemId":30012936,"solarSystemName":"M:2098","location":{"x":-1630000000000000000,"y":-340000000000000000,"z":-15400000000000000000}},"30012937":{"solarSystemId":30012937,"solarSystemName":"H:3O27","location":{"x":-1760000000000000000,"y":-280000000000000000,"z":-14800000000000000000}},"30012938":{"solarSystemId":30012938,"solarSystemName":"B:4RO1","location":{"x":-1550000000000000000,"y":-183000000000000000,"z":-14300000000000000000}},"30012939":{"solarSystemId":30012939,"solarSystemName":"P:264S","location":{"x":-1010000000000000000,"y":-366000000000000000,"z":-14100000000000000000}},"30012940":{"solarSystemId":30012940,"solarSystemName":"H:17EK","location":{"x":-1240000000000000000,"y":-1100000000000000000,"z":-13500000000000000000}},"30012941":{"solarSystemId":30012941,"solarSystemName":"Q:3047","location":{"x":-302000000000000000,"y":-500000000000000000,"z":-14300000000000000000}},"30012942":{"solarSystemId":30012942,"solarSystemName":"H:13TO","location":{"x":-1470000000000000000,"y":-573000000000000000,"z":-14200000000000000000}},"30012943":{"solarSystemId":30012943,"solarSystemName":"J:3NA5","location":{"x":-1580000000000000000,"y":-256000000000000000,"z":-15000000000000000000}},"30012944":{"solarSystemId":30012944,"solarSystemName":"J:3TL5","location":{"x":-14000000000000000000,"y":378000000000000000,"z":-10500000000000000000}},"30012945":{"solarSystemId":30012945,"solarSystemName":"H:30EO","location":{"x":-14400000000000000000,"y":215000000000000000,"z":-10400000000000000000}},"30012946":{"solarSystemId":30012946,"solarSystemName":"F:2LKT","location":{"x":-14000000000000000000,"y":22200000000000000,"z":-10500000000000000000}},"30012947":{"solarSystemId":30012947,"solarSystemName":"Q:NL22","location":{"x":-13800000000000000000,"y":289000000000000000,"z":-8630000000000000000}},"30012948":{"solarSystemId":30012948,"solarSystemName":"H:2TKS","location":{"x":-13000000000000000000,"y":262000000000000000,"z":-10200000000000000000}},"30012949":{"solarSystemId":30012949,"solarSystemName":"J:26S9","location":{"x":-14000000000000000000,"y":382000000000000000,"z":-11000000000000000000}},"30012950":{"solarSystemId":30012950,"solarSystemName":"B:1004","location":{"x":-12800000000000000000,"y":-473000000000000000,"z":-9140000000000000000}},"30012951":{"solarSystemId":30012951,"solarSystemName":"G:3KT8","location":{"x":-12900000000000000000,"y":195000000000000000,"z":-8910000000000000000}},"30012952":{"solarSystemId":30012952,"solarSystemName":"B:32T6","location":{"x":-13200000000000000000,"y":372000000000000000,"z":-8660000000000000000}},"30012953":{"solarSystemId":30012953,"solarSystemName":"P:1V4A","location":{"x":-13300000000000000000,"y":-588000000000000000,"z":-9560000000000000000}},"30012954":{"solarSystemId":30012954,"solarSystemName":"Y:SA93","location":{"x":-13700000000000000000,"y":377000000000000000,"z":-9070000000000000000}},"30012955":{"solarSystemId":30012955,"solarSystemName":"Q:N3R4","location":{"x":-13400000000000000000,"y":650000000000000000,"z":-9040000000000000000}},"30012956":{"solarSystemId":30012956,"solarSystemName":"G:288K","location":{"x":-13500000000000000000,"y":653000000000000000,"z":-9410000000000000000}},"30012957":{"solarSystemId":30012957,"solarSystemName":"D:3EI9","location":{"x":-13300000000000000000,"y":74100000000000000,"z":-9970000000000000000}},"30012958":{"solarSystemId":30012958,"solarSystemName":"M:1R3V","location":{"x":-12600000000000000000,"y":-20600000000000000,"z":-9610000000000000000}},"30012959":{"solarSystemId":30012959,"solarSystemName":"G:29IE","location":{"x":-14000000000000000000,"y":73300000000000000,"z":-10300000000000000000}},"30012960":{"solarSystemId":30012960,"solarSystemName":"M:1OO5","location":{"x":-13300000000000000000,"y":371205000000000,"z":-9490000000000000000}},"30012961":{"solarSystemId":30012961,"solarSystemName":"H:11I6","location":{"x":-13700000000000000000,"y":128000000000000000,"z":-9400000000000000000}},"30012962":{"solarSystemId":30012962,"solarSystemName":"B:2VL6","location":{"x":-13500000000000000000,"y":1080000000000000000,"z":-9090000000000000000}},"30012963":{"solarSystemId":30012963,"solarSystemName":"D:3729","location":{"x":-14600000000000000000,"y":30800000000000000,"z":-12300000000000000000}},"30012964":{"solarSystemId":30012964,"solarSystemName":"B:3961","location":{"x":-14300000000000000000,"y":117000000000000000,"z":-11800000000000000000}},"30012965":{"solarSystemId":30012965,"solarSystemName":"Y:2O3N","location":{"x":-13700000000000000000,"y":-225000000000000000,"z":-11800000000000000000}},"30012966":{"solarSystemId":30012966,"solarSystemName":"F:2T27","location":{"x":-14900000000000000000,"y":-378000000000000000,"z":-11500000000000000000}},"30012967":{"solarSystemId":30012967,"solarSystemName":"F:1T58","location":{"x":-14300000000000000000,"y":-214000000000000000,"z":-11000000000000000000}},"30012968":{"solarSystemId":30012968,"solarSystemName":"D:3RS5","location":{"x":-15800000000000000000,"y":-427000000000000000,"z":-11800000000000000000}},"30012969":{"solarSystemId":30012969,"solarSystemName":"J:3N62","location":{"x":-14900000000000000000,"y":164000000000000000,"z":-12000000000000000000}},"30012970":{"solarSystemId":30012970,"solarSystemName":"G:1A3V","location":{"x":-14100000000000000000,"y":-304000000000000000,"z":-12100000000000000000}},"30012971":{"solarSystemId":30012971,"solarSystemName":"Y:1R0R","location":{"x":-15100000000000000000,"y":334000000000000000,"z":-12000000000000000000}},"30012972":{"solarSystemId":30012972,"solarSystemName":"G:1450","location":{"x":-14000000000000000000,"y":-642000000000000000,"z":-10900000000000000000}},"30012973":{"solarSystemId":30012973,"solarSystemName":"Z:240V","location":{"x":-15600000000000000000,"y":-569000000000000000,"z":-11000000000000000000}},"30012974":{"solarSystemId":30012974,"solarSystemName":"D:K1KN","location":{"x":-15500000000000000000,"y":-202000000000000000,"z":-10900000000000000000}},"30012975":{"solarSystemId":30012975,"solarSystemName":"H:4KSV","location":{"x":-14600000000000000000,"y":-316000000000000000,"z":-12400000000000000000}},"30012976":{"solarSystemId":30012976,"solarSystemName":"H:25AA","location":{"x":-14300000000000000000,"y":-548000000000000000,"z":-12300000000000000000}},"30012977":{"solarSystemId":30012977,"solarSystemName":"Y:1OA2","location":{"x":-14400000000000000000,"y":52600000000000000,"z":-11400000000000000000}},"30012978":{"solarSystemId":30012978,"solarSystemName":"M:2AO7","location":{"x":-14200000000000000000,"y":-717000000000000000,"z":-12000000000000000000}},"30012979":{"solarSystemId":30012979,"solarSystemName":"U:1NEL","location":{"x":-14000000000000000000,"y":-20400000000000000,"z":-11400000000000000000}},"30012980":{"solarSystemId":30012980,"solarSystemName":"B:18A7","location":{"x":-13900000000000000000,"y":-40200000000000000,"z":-11500000000000000000}},"30012981":{"solarSystemId":30012981,"solarSystemName":"Y:13SK","location":{"x":-14400000000000000000,"y":161000000000000000,"z":-11200000000000000000}},"30012982":{"solarSystemId":30012982,"solarSystemName":"F:L894","location":{"x":-14700000000000000000,"y":-362000000000000000,"z":-11700000000000000000}},"30012983":{"solarSystemId":30012983,"solarSystemName":"U:2TL6","location":{"x":-15200000000000000000,"y":-511000000000000000,"z":-10100000000000000000}},"30012984":{"solarSystemId":30012984,"solarSystemName":"Q:3R2R","location":{"x":-16100000000000000000,"y":-200000000000000000,"z":-10600000000000000000}},"30012985":{"solarSystemId":30012985,"solarSystemName":"Y:370S","location":{"x":-14800000000000000000,"y":-54600000000000000,"z":-9880000000000000000}},"30012986":{"solarSystemId":30012986,"solarSystemName":"Q:23ON","location":{"x":-16200000000000000000,"y":-411000000000000000,"z":-10300000000000000000}},"30012987":{"solarSystemId":30012987,"solarSystemName":"Q:330L","location":{"x":-14800000000000000000,"y":-75200000000000000,"z":-9790000000000000000}},"30012988":{"solarSystemId":30012988,"solarSystemName":"M:ESR9","location":{"x":-16300000000000000000,"y":-458000000000000000,"z":-10200000000000000000}},"30012989":{"solarSystemId":30012989,"solarSystemName":"J:202V","location":{"x":-16300000000000000000,"y":514000000000000000,"z":-11400000000000000000}},"30012990":{"solarSystemId":30012990,"solarSystemName":"U:12K7","location":{"x":-15100000000000000000,"y":-106000000000000000,"z":-10500000000000000000}},"30012991":{"solarSystemId":30012991,"solarSystemName":"Y:VE9R","location":{"x":-16900000000000000000,"y":-800000000000000000,"z":-10600000000000000000}},"30012992":{"solarSystemId":30012992,"solarSystemName":"J:V52O","location":{"x":-15700000000000000000,"y":-621000000000000000,"z":-10000000000000000000}},"30012993":{"solarSystemId":30012993,"solarSystemName":"H:203O","location":{"x":-16300000000000000000,"y":-386000000000000000,"z":-9690000000000000000}},"30012994":{"solarSystemId":30012994,"solarSystemName":"P:1236","location":{"x":-16100000000000000000,"y":-594000000000000000,"z":-10900000000000000000}},"30012995":{"solarSystemId":30012995,"solarSystemName":"Q:31N7","location":{"x":-15600000000000000000,"y":-458000000000000000,"z":-10700000000000000000}},"30012996":{"solarSystemId":30012996,"solarSystemName":"G:28KV","location":{"x":-14900000000000000000,"y":-488000000000000000,"z":-9980000000000000000}},"30012997":{"solarSystemId":30012997,"solarSystemName":"U:1LOI","location":{"x":-17100000000000000000,"y":-606000000000000000,"z":-10600000000000000000}},"30012998":{"solarSystemId":30012998,"solarSystemName":"Z:15T8","location":{"x":-15700000000000000000,"y":-335000000000000000,"z":-10200000000000000000}},"30012999":{"solarSystemId":30012999,"solarSystemName":"G:K6A0","location":{"x":-16800000000000000000,"y":-594000000000000000,"z":-10100000000000000000}},"30013000":{"solarSystemId":30013000,"solarSystemName":"P:286S","location":{"x":-16800000000000000000,"y":-500000000000000000,"z":-9790000000000000000}},"30013001":{"solarSystemId":30013001,"solarSystemName":"Q:E637","location":{"x":-15300000000000000000,"y":137000000000000000,"z":-10200000000000000000}},"30013002":{"solarSystemId":30013002,"solarSystemName":"Z:42AS","location":{"x":-16300000000000000000,"y":-430000000000000000,"z":-10700000000000000000}},"30013003":{"solarSystemId":30013003,"solarSystemName":"B:3VEO","location":{"x":-12300000000000000000,"y":-497000000000000000,"z":-10600000000000000000}},"30013004":{"solarSystemId":30013004,"solarSystemName":"P:3V47","location":{"x":-12800000000000000000,"y":109000000000000000,"z":-11200000000000000000}},"30013005":{"solarSystemId":30013005,"solarSystemName":"P:1L6T","location":{"x":-12800000000000000000,"y":18200000000000000,"z":-11300000000000000000}},"30013006":{"solarSystemId":30013006,"solarSystemName":"P:2LA7","location":{"x":-13000000000000000000,"y":-32100000000000000,"z":-11200000000000000000}},"30013007":{"solarSystemId":30013007,"solarSystemName":"F:1S7I","location":{"x":-11700000000000000000,"y":86400000000000000,"z":-10100000000000000000}},"30013008":{"solarSystemId":30013008,"solarSystemName":"G:157N","location":{"x":-12500000000000000000,"y":299000000000000000,"z":-10400000000000000000}},"30013009":{"solarSystemId":30013009,"solarSystemName":"D:EKR7","location":{"x":-12400000000000000000,"y":-506000000000000000,"z":-10100000000000000000}},"30013010":{"solarSystemId":30013010,"solarSystemName":"D:2VOR","location":{"x":-12200000000000000000,"y":-960000000000000000,"z":-10800000000000000000}},"30013011":{"solarSystemId":30013011,"solarSystemName":"M:26LA","location":{"x":-12900000000000000000,"y":-912000000000000000,"z":-11200000000000000000}},"30013012":{"solarSystemId":30013012,"solarSystemName":"P:O4IN","location":{"x":-12500000000000000000,"y":-461000000000000000,"z":-10100000000000000000}},"30013013":{"solarSystemId":30013013,"solarSystemName":"P:10E9","location":{"x":-12900000000000000000,"y":-80300000000000000,"z":-10300000000000000000}},"30013014":{"solarSystemId":30013014,"solarSystemName":"U:2A9V","location":{"x":-12400000000000000000,"y":42300000000000000,"z":-10200000000000000000}},"30013015":{"solarSystemId":30013015,"solarSystemName":"U:I84S","location":{"x":-13300000000000000000,"y":-440000000000000000,"z":-11000000000000000000}},"30013016":{"solarSystemId":30013016,"solarSystemName":"D:1SN4","location":{"x":-12200000000000000000,"y":461000000000000000,"z":-11000000000000000000}},"30013017":{"solarSystemId":30013017,"solarSystemName":"F:1487","location":{"x":-12400000000000000000,"y":52400000000000000,"z":-10200000000000000000}},"30013018":{"solarSystemId":30013018,"solarSystemName":"M:1SNV","location":{"x":-12100000000000000000,"y":-218000000000000000,"z":-10300000000000000000}},"30013019":{"solarSystemId":30013019,"solarSystemName":"G:S19A","location":{"x":-13200000000000000000,"y":-445000000000000000,"z":-11100000000000000000}},"30013020":{"solarSystemId":30013020,"solarSystemName":"P:2LR5","location":{"x":-14800000000000000000,"y":-25600000000000000,"z":-8600000000000000000}},"30013021":{"solarSystemId":30013021,"solarSystemName":"H:1RNE","location":{"x":-14100000000000000000,"y":-85700000000000000,"z":-8860000000000000000}},"30013022":{"solarSystemId":30013022,"solarSystemName":"M:23LT","location":{"x":-14400000000000000000,"y":-191000000000000000,"z":-8630000000000000000}},"30013023":{"solarSystemId":30013023,"solarSystemName":"F:17LV","location":{"x":-15300000000000000000,"y":-910566000000000,"z":-8060000000000000000}},"30013024":{"solarSystemId":30013024,"solarSystemName":"G:SVKS","location":{"x":-14200000000000000000,"y":625000000000000000,"z":-8220000000000000000}},"30013025":{"solarSystemId":30013025,"solarSystemName":"Q:4I5S","location":{"x":-15200000000000000000,"y":-525000000000000000,"z":-7920000000000000000}},"30013026":{"solarSystemId":30013026,"solarSystemName":"Z:TL8V","location":{"x":-14900000000000000000,"y":32300000000000000,"z":-9300000000000000000}},"30013027":{"solarSystemId":30013027,"solarSystemName":"F:119V","location":{"x":-15500000000000000000,"y":-345000000000000000,"z":-8520000000000000000}},"30013028":{"solarSystemId":30013028,"solarSystemName":"Y:4KS4","location":{"x":-15400000000000000000,"y":-591000000000000000,"z":-8230000000000000000}},"30013029":{"solarSystemId":30013029,"solarSystemName":"M:225K","location":{"x":-14800000000000000000,"y":359000000000000000,"z":-8180000000000000000}},"30013030":{"solarSystemId":30013030,"solarSystemName":"G:1N9K","location":{"x":-14900000000000000000,"y":142000000000000000,"z":-8700000000000000000}},"30013031":{"solarSystemId":30013031,"solarSystemName":"U:45V9","location":{"x":-15500000000000000000,"y":-284000000000000000,"z":-8910000000000000000}},"30013032":{"solarSystemId":30013032,"solarSystemName":"M:SLR6","location":{"x":-15800000000000000000,"y":-4880000000000000,"z":-8260000000000000000}},"30013033":{"solarSystemId":30013033,"solarSystemName":"B:1SL6","location":{"x":-15700000000000000000,"y":-389000000000000000,"z":-8340000000000000000}},"30013034":{"solarSystemId":30013034,"solarSystemName":"P:3TE8","location":{"x":-15200000000000000000,"y":-810000000000000000,"z":-8090000000000000000}},"30013035":{"solarSystemId":30013035,"solarSystemName":"Y:2833","location":{"x":-15400000000000000000,"y":-77800000000000000,"z":-8890000000000000000}},"30013036":{"solarSystemId":30013036,"solarSystemName":"Q:2TN1","location":{"x":-14700000000000000000,"y":64900000000000000,"z":-7910000000000000000}},"30013037":{"solarSystemId":30013037,"solarSystemName":"P:1L83","location":{"x":-14100000000000000000,"y":-87300000000000000,"z":-13200000000000000000}},"30013038":{"solarSystemId":30013038,"solarSystemName":"J:1LKO","location":{"x":-14500000000000000000,"y":661000000000000000,"z":-12400000000000000000}},"30013039":{"solarSystemId":30013039,"solarSystemName":"P:KO86","location":{"x":-17000000000000000000,"y":698000000000000000,"z":-14500000000000000000}},"30013040":{"solarSystemId":30013040,"solarSystemName":"B:1937","location":{"x":-17100000000000000000,"y":809000000000000000,"z":-14700000000000000000}},"30013041":{"solarSystemId":30013041,"solarSystemName":"D:19V3","location":{"x":-15800000000000000000,"y":2270000000000000000,"z":-14900000000000000000}},"30013042":{"solarSystemId":30013042,"solarSystemName":"P:9KE0","location":{"x":-14200000000000000000,"y":-15900000000000000,"z":-12700000000000000000}},"30013043":{"solarSystemId":30013043,"solarSystemName":"D:3E2E","location":{"x":-14300000000000000000,"y":271000000000000000,"z":-12900000000000000000}},"30013044":{"solarSystemId":30013044,"solarSystemName":"U:10I6","location":{"x":-14900000000000000000,"y":1510000000000000000,"z":-11700000000000000000}},"30013045":{"solarSystemId":30013045,"solarSystemName":"H:1338","location":{"x":-15700000000000000000,"y":971000000000000000,"z":-14900000000000000000}},"30013046":{"solarSystemId":30013046,"solarSystemName":"P:1610","location":{"x":-14800000000000000000,"y":1050000000000000000,"z":-12100000000000000000}},"30013047":{"solarSystemId":30013047,"solarSystemName":"J:2721","location":{"x":-17100000000000000000,"y":842000000000000000,"z":-14400000000000000000}},"30013048":{"solarSystemId":30013048,"solarSystemName":"Q:2VL9","location":{"x":-15800000000000000000,"y":2150000000000000000,"z":-14700000000000000000}},"30013049":{"solarSystemId":30013049,"solarSystemName":"H:17VV","location":{"x":-15600000000000000000,"y":1180000000000000000,"z":-12300000000000000000}},"30013050":{"solarSystemId":30013050,"solarSystemName":"G:IRO0","location":{"x":-15500000000000000000,"y":1890000000000000000,"z":-12800000000000000000}},"30013051":{"solarSystemId":30013051,"solarSystemName":"D:2RLV","location":{"x":-14600000000000000000,"y":-275000000000000000,"z":-8910000000000000000}},"30013052":{"solarSystemId":30013052,"solarSystemName":"P:3AR0","location":{"x":-14700000000000000000,"y":-1610000000000000000,"z":-8410000000000000000}},"30013053":{"solarSystemId":30013053,"solarSystemName":"U:121O","location":{"x":-15000000000000000000,"y":-967000000000000000,"z":-9970000000000000000}},"30013054":{"solarSystemId":30013054,"solarSystemName":"G:1188","location":{"x":-15200000000000000000,"y":-547000000000000000,"z":-9030000000000000000}},"30013055":{"solarSystemId":30013055,"solarSystemName":"J:16SK","location":{"x":-13900000000000000000,"y":-929000000000000000,"z":-9820000000000000000}},"30013056":{"solarSystemId":30013056,"solarSystemName":"U:4E0V","location":{"x":-15200000000000000000,"y":-737000000000000000,"z":-9870000000000000000}},"30013057":{"solarSystemId":30013057,"solarSystemName":"Y:15NK","location":{"x":-13900000000000000000,"y":-1030000000000000000,"z":-10100000000000000000}},"30013058":{"solarSystemId":30013058,"solarSystemName":"U:1527","location":{"x":-14200000000000000000,"y":-1440000000000000000,"z":-10200000000000000000}},"30013059":{"solarSystemId":30013059,"solarSystemName":"H:160L","location":{"x":-14200000000000000000,"y":-404000000000000000,"z":-10300000000000000000}},"30013060":{"solarSystemId":30013060,"solarSystemName":"U:46O8","location":{"x":-14700000000000000000,"y":-705000000000000000,"z":-9130000000000000000}},"30013061":{"solarSystemId":30013061,"solarSystemName":"H:1V6K","location":{"x":-13900000000000000000,"y":-336000000000000000,"z":-8830000000000000000}},"30013062":{"solarSystemId":30013062,"solarSystemName":"H:22V4","location":{"x":-13900000000000000000,"y":-518000000000000000,"z":-9170000000000000000}},"30013063":{"solarSystemId":30013063,"solarSystemName":"J:305N","location":{"x":-14100000000000000000,"y":-1700000000000000000,"z":-8720000000000000000}},"30013064":{"solarSystemId":30013064,"solarSystemName":"B:230L","location":{"x":-13900000000000000000,"y":-401000000000000000,"z":-9190000000000000000}},"30013065":{"solarSystemId":30013065,"solarSystemName":"F:3SIA","location":{"x":-13700000000000000000,"y":-535000000000000000,"z":-8950000000000000000}},"30013066":{"solarSystemId":30013066,"solarSystemName":"B:1A0O","location":{"x":-14400000000000000000,"y":-513000000000000000,"z":-9860000000000000000}},"30013067":{"solarSystemId":30013067,"solarSystemName":"P:239R","location":{"x":-14400000000000000000,"y":-1230000000000000000,"z":-9180000000000000000}},"30013068":{"solarSystemId":30013068,"solarSystemName":"Q:3157","location":{"x":-11400000000000000000,"y":-2620000000000000000,"z":-9600000000000000000}},"30013069":{"solarSystemId":30013069,"solarSystemName":"D:34L9","location":{"x":-13500000000000000000,"y":-2740000000000000000,"z":-9710000000000000000}},"30013070":{"solarSystemId":30013070,"solarSystemName":"H:I23I","location":{"x":-13400000000000000000,"y":-987000000000000000,"z":-10500000000000000000}},"30013071":{"solarSystemId":30013071,"solarSystemName":"Y:383S","location":{"x":-13800000000000000000,"y":-1960000000000000000,"z":-7940000000000000000}},"30013072":{"solarSystemId":30013072,"solarSystemName":"M:2A40","location":{"x":-12000000000000000000,"y":-1900000000000000000,"z":-8620000000000000000}},"30013073":{"solarSystemId":30013073,"solarSystemName":"Y:23RI","location":{"x":-14000000000000000000,"y":-2640000000000000000,"z":-8270000000000000000}},"30013074":{"solarSystemId":30013074,"solarSystemName":"J:ON57","location":{"x":-12900000000000000000,"y":-1950000000000000000,"z":-8270000000000000000}},"30013075":{"solarSystemId":30013075,"solarSystemName":"H:24AT","location":{"x":-14900000000000000000,"y":-2700000000000000000,"z":-9300000000000000000}},"30013076":{"solarSystemId":30013076,"solarSystemName":"F:TR2K","location":{"x":-13900000000000000000,"y":-2530000000000000000,"z":-10100000000000000000}},"30013077":{"solarSystemId":30013077,"solarSystemName":"G:16KL","location":{"x":-12900000000000000000,"y":-4230000000000000000,"z":-9880000000000000000}},"30013078":{"solarSystemId":30013078,"solarSystemName":"D:109T","location":{"x":-13200000000000000000,"y":-1180000000000000000,"z":-10800000000000000000}},"30013079":{"solarSystemId":30013079,"solarSystemName":"D:337T","location":{"x":-13100000000000000000,"y":-549000000000000000,"z":-7930000000000000000}},"30013080":{"solarSystemId":30013080,"solarSystemName":"Q:2089","location":{"x":-14600000000000000000,"y":-271000000000000000,"z":-7690000000000000000}},"30013081":{"solarSystemId":30013081,"solarSystemName":"D:25S2","location":{"x":-13300000000000000000,"y":481000000000000000,"z":-7950000000000000000}},"30013082":{"solarSystemId":30013082,"solarSystemName":"M:28N7","location":{"x":-12800000000000000000,"y":-432000000000000000,"z":-7550000000000000000}},"30013083":{"solarSystemId":30013083,"solarSystemName":"D:279N","location":{"x":-12800000000000000000,"y":218000000000000000,"z":-8150000000000000000}},"30013084":{"solarSystemId":30013084,"solarSystemName":"J:20LA","location":{"x":-12800000000000000000,"y":-249000000000000000,"z":-7600000000000000000}},"30013085":{"solarSystemId":30013085,"solarSystemName":"D:2LL9","location":{"x":-13300000000000000000,"y":256000000000000000,"z":-7850000000000000000}},"30013086":{"solarSystemId":30013086,"solarSystemName":"Q:1L28","location":{"x":-13100000000000000000,"y":-43900000000000000,"z":-7300000000000000000}},"30013087":{"solarSystemId":30013087,"solarSystemName":"F:1V1T","location":{"x":-13300000000000000000,"y":-1270000000000000000,"z":-8440000000000000000}},"30013088":{"solarSystemId":30013088,"solarSystemName":"F:A8L1","location":{"x":-13500000000000000000,"y":-875000000000000000,"z":-7680000000000000000}},"30013089":{"solarSystemId":30013089,"solarSystemName":"G:15ET","location":{"x":-13400000000000000000,"y":-1120000000000000000,"z":-8440000000000000000}},"30013090":{"solarSystemId":30013090,"solarSystemName":"B:174K","location":{"x":-13900000000000000000,"y":-1050000000000000000,"z":-7270000000000000000}},"30013091":{"solarSystemId":30013091,"solarSystemName":"F:1EA2","location":{"x":-13200000000000000000,"y":-1010000000000000000,"z":-8580000000000000000}},"30013092":{"solarSystemId":30013092,"solarSystemName":"Z:392R","location":{"x":-13600000000000000000,"y":251000000000000000,"z":-7410000000000000000}},"30013093":{"solarSystemId":30013093,"solarSystemName":"B:ST8K","location":{"x":-14100000000000000000,"y":-178000000000000000,"z":-8700000000000000000}},"30013094":{"solarSystemId":30013094,"solarSystemName":"D:3N55","location":{"x":-13700000000000000000,"y":-600000000000000000,"z":-7880000000000000000}},"30013095":{"solarSystemId":30013095,"solarSystemName":"D:2865","location":{"x":-14100000000000000000,"y":93400000000000000,"z":-8010000000000000000}},"30013096":{"solarSystemId":30013096,"solarSystemName":"J:1LE6","location":{"x":-14000000000000000000,"y":266000000000000000,"z":-7820000000000000000}},"30013097":{"solarSystemId":30013097,"solarSystemName":"Y:39RR","location":{"x":-13400000000000000000,"y":-441000000000000000,"z":-8850000000000000000}},"30013098":{"solarSystemId":30013098,"solarSystemName":"Y:1RI8","location":{"x":-13500000000000000000,"y":267000000000000000,"z":-8290000000000000000}},"30013099":{"solarSystemId":30013099,"solarSystemName":"B:2321","location":{"x":-10900000000000000000,"y":432000000000000000,"z":-7140000000000000000}},"30013100":{"solarSystemId":30013100,"solarSystemName":"Z:3052","location":{"x":-11000000000000000000,"y":427000000000000000,"z":-7220000000000000000}},"30013101":{"solarSystemId":30013101,"solarSystemName":"B:1OIS","location":{"x":-10900000000000000000,"y":434000000000000000,"z":-7250000000000000000}},"30013102":{"solarSystemId":30013102,"solarSystemName":"Q:13NV","location":{"x":-11000000000000000000,"y":414000000000000000,"z":-7230000000000000000}},"30013103":{"solarSystemId":30013103,"solarSystemName":"Z:21V4","location":{"x":-10900000000000000000,"y":406000000000000000,"z":-7230000000000000000}},"30013104":{"solarSystemId":30013104,"solarSystemName":"Z:195T","location":{"x":-10900000000000000000,"y":418000000000000000,"z":-7250000000000000000}},"30013105":{"solarSystemId":30013105,"solarSystemName":"B:24S7","location":{"x":-10900000000000000000,"y":399000000000000000,"z":-7250000000000000000}},"30013106":{"solarSystemId":30013106,"solarSystemName":"M:1586","location":{"x":-10900000000000000000,"y":347000000000000000,"z":-7190000000000000000}},"30013107":{"solarSystemId":30013107,"solarSystemName":"D:2NS6","location":{"x":-11000000000000000000,"y":389000000000000000,"z":-7190000000000000000}},"30013108":{"solarSystemId":30013108,"solarSystemName":"J:21L2","location":{"x":-10900000000000000000,"y":336000000000000000,"z":-7150000000000000000}},"30013109":{"solarSystemId":30013109,"solarSystemName":"B:349I","location":{"x":-10900000000000000000,"y":412000000000000000,"z":-7130000000000000000}},"30013110":{"solarSystemId":30013110,"solarSystemName":"Y:358V","location":{"x":-10900000000000000000,"y":334000000000000000,"z":-7220000000000000000}},"30013111":{"solarSystemId":30013111,"solarSystemName":"U:1L6I","location":{"x":-10900000000000000000,"y":363000000000000000,"z":-7170000000000000000}},"30013112":{"solarSystemId":30013112,"solarSystemName":"U:I807","location":{"x":-10900000000000000000,"y":335000000000000000,"z":-7140000000000000000}},"30013113":{"solarSystemId":30013113,"solarSystemName":"U:1ERO","location":{"x":-10900000000000000000,"y":338000000000000000,"z":-7120000000000000000}},"30013114":{"solarSystemId":30013114,"solarSystemName":"Y:2O86","location":{"x":-10900000000000000000,"y":389000000000000000,"z":-7170000000000000000}},"30013115":{"solarSystemId":30013115,"solarSystemName":"Q:2IR9","location":{"x":-10900000000000000000,"y":374000000000000000,"z":-7170000000000000000}},"30013116":{"solarSystemId":30013116,"solarSystemName":"Z:2249","location":{"x":-11000000000000000000,"y":349000000000000000,"z":-7140000000000000000}},"30013117":{"solarSystemId":30013117,"solarSystemName":"P:27N2","location":{"x":-11700000000000000000,"y":116000000000000000,"z":-6610000000000000000}},"30013118":{"solarSystemId":30013118,"solarSystemName":"H:2K67","location":{"x":-11800000000000000000,"y":225000000000000000,"z":-6680000000000000000}},"30013119":{"solarSystemId":30013119,"solarSystemName":"Q:N6SO","location":{"x":-12000000000000000000,"y":368000000000000000,"z":-6680000000000000000}},"30013120":{"solarSystemId":30013120,"solarSystemName":"G:124R","location":{"x":-11900000000000000000,"y":309000000000000000,"z":-6840000000000000000}},"30013121":{"solarSystemId":30013121,"solarSystemName":"D:1EOS","location":{"x":-11900000000000000000,"y":30000000000000000,"z":-6590000000000000000}},"30013122":{"solarSystemId":30013122,"solarSystemName":"D:1N3O","location":{"x":-11900000000000000000,"y":360000000000000000,"z":-6740000000000000000}},"30013123":{"solarSystemId":30013123,"solarSystemName":"B:2388","location":{"x":-11700000000000000000,"y":322000000000000000,"z":-6530000000000000000}},"30013124":{"solarSystemId":30013124,"solarSystemName":"Q:17OO","location":{"x":-11900000000000000000,"y":324000000000000000,"z":-6760000000000000000}},"30013125":{"solarSystemId":30013125,"solarSystemName":"Q:1A6E","location":{"x":-11900000000000000000,"y":262000000000000000,"z":-6740000000000000000}},"30013126":{"solarSystemId":30013126,"solarSystemName":"D:2ST5","location":{"x":-11800000000000000000,"y":175000000000000000,"z":-7010000000000000000}},"30013127":{"solarSystemId":30013127,"solarSystemName":"J:277E","location":{"x":-11700000000000000000,"y":293000000000000000,"z":-6310000000000000000}},"30013128":{"solarSystemId":30013128,"solarSystemName":"D:2N0I","location":{"x":-11800000000000000000,"y":325000000000000000,"z":-6650000000000000000}},"30013129":{"solarSystemId":30013129,"solarSystemName":"G:2S8I","location":{"x":-11800000000000000000,"y":117000000000000000,"z":-6910000000000000000}},"30013130":{"solarSystemId":30013130,"solarSystemName":"Y:18NI","location":{"x":-11900000000000000000,"y":323000000000000000,"z":-6760000000000000000}},"30013131":{"solarSystemId":30013131,"solarSystemName":"D:11KE","location":{"x":-11800000000000000000,"y":374000000000000000,"z":-6460000000000000000}},"30013132":{"solarSystemId":30013132,"solarSystemName":"Y:1R98","location":{"x":-11800000000000000000,"y":229000000000000000,"z":-7030000000000000000}},"30013133":{"solarSystemId":30013133,"solarSystemName":"F:1566","location":{"x":-11800000000000000000,"y":318000000000000000,"z":-6480000000000000000}},"30013134":{"solarSystemId":30013134,"solarSystemName":"B:2AK7","location":{"x":-11800000000000000000,"y":442000000000000000,"z":-6520000000000000000}},"30013135":{"solarSystemId":30013135,"solarSystemName":"M:191K","location":{"x":-12000000000000000000,"y":150000000000000000,"z":-6700000000000000000}},"30013136":{"solarSystemId":30013136,"solarSystemName":"Y:28TT","location":{"x":-11900000000000000000,"y":6400000000000000,"z":-6640000000000000000}},"30013137":{"solarSystemId":30013137,"solarSystemName":"J:126L","location":{"x":-11700000000000000000,"y":190000000000000000,"z":-6570000000000000000}},"30013138":{"solarSystemId":30013138,"solarSystemName":"Y:2IER","location":{"x":-11900000000000000000,"y":257000000000000000,"z":-6640000000000000000}},"30013139":{"solarSystemId":30013139,"solarSystemName":"G:2N1O","location":{"x":-11000000000000000000,"y":461000000000000000,"z":-7230000000000000000}},"30013140":{"solarSystemId":30013140,"solarSystemName":"P:30E9","location":{"x":-11000000000000000000,"y":447000000000000000,"z":-7260000000000000000}},"30013141":{"solarSystemId":30013141,"solarSystemName":"D:2K6O","location":{"x":-11000000000000000000,"y":442000000000000000,"z":-7240000000000000000}},"30013142":{"solarSystemId":30013142,"solarSystemName":"B:2R8R","location":{"x":-11000000000000000000,"y":451000000000000000,"z":-7230000000000000000}},"30013143":{"solarSystemId":30013143,"solarSystemName":"Q:30I2","location":{"x":-11000000000000000000,"y":442000000000000000,"z":-7230000000000000000}},"30013144":{"solarSystemId":30013144,"solarSystemName":"D:2N1V","location":{"x":-11000000000000000000,"y":465000000000000000,"z":-7220000000000000000}},"30013145":{"solarSystemId":30013145,"solarSystemName":"F:2E3S","location":{"x":-11000000000000000000,"y":482000000000000000,"z":-7260000000000000000}},"30013146":{"solarSystemId":30013146,"solarSystemName":"G:26A6","location":{"x":-11000000000000000000,"y":454000000000000000,"z":-7210000000000000000}},"30013147":{"solarSystemId":30013147,"solarSystemName":"M:2RE7","location":{"x":-11000000000000000000,"y":492000000000000000,"z":-7240000000000000000}},"30013148":{"solarSystemId":30013148,"solarSystemName":"J:2VAE","location":{"x":-11000000000000000000,"y":478000000000000000,"z":-7240000000000000000}},"30013149":{"solarSystemId":30013149,"solarSystemName":"H:25K9","location":{"x":-11000000000000000000,"y":456000000000000000,"z":-7230000000000000000}},"30013150":{"solarSystemId":30013150,"solarSystemName":"Y:2ASE","location":{"x":-11000000000000000000,"y":451000000000000000,"z":-7250000000000000000}},"30013151":{"solarSystemId":30013151,"solarSystemName":"Z:2820","location":{"x":-11000000000000000000,"y":456000000000000000,"z":-7230000000000000000}},"30013152":{"solarSystemId":30013152,"solarSystemName":"F:265I","location":{"x":-11000000000000000000,"y":434000000000000000,"z":-7210000000000000000}},"30013153":{"solarSystemId":30013153,"solarSystemName":"Q:2NIE","location":{"x":-11000000000000000000,"y":483000000000000000,"z":-7250000000000000000}},"30013154":{"solarSystemId":30013154,"solarSystemName":"P:2554","location":{"x":-11000000000000000000,"y":427000000000000000,"z":-7220000000000000000}},"30013155":{"solarSystemId":30013155,"solarSystemName":"U:V89K","location":{"x":-11000000000000000000,"y":456000000000000000,"z":-7220000000000000000}},"30013156":{"solarSystemId":30013156,"solarSystemName":"U:2SS8","location":{"x":-11000000000000000000,"y":420000000000000000,"z":-7230000000000000000}},"30013157":{"solarSystemId":30013157,"solarSystemName":"M:31RV","location":{"x":-11000000000000000000,"y":484000000000000000,"z":-7260000000000000000}},"30013158":{"solarSystemId":30013158,"solarSystemName":"M:29RS","location":{"x":-11000000000000000000,"y":431000000000000000,"z":-7230000000000000000}},"30013159":{"solarSystemId":30013159,"solarSystemName":"Z:27K9","location":{"x":-11000000000000000000,"y":458000000000000000,"z":-7250000000000000000}},"30013160":{"solarSystemId":30013160,"solarSystemName":"M:30TN","location":{"x":-11000000000000000000,"y":463000000000000000,"z":-7240000000000000000}},"30013161":{"solarSystemId":30013161,"solarSystemName":"Z:2649","location":{"x":-11000000000000000000,"y":477000000000000000,"z":-7260000000000000000}},"30013162":{"solarSystemId":30013162,"solarSystemName":"Q:2E3R","location":{"x":-11000000000000000000,"y":439000000000000000,"z":-7260000000000000000}},"30013163":{"solarSystemId":30013163,"solarSystemName":"J:2A5T","location":{"x":-11000000000000000000,"y":456000000000000000,"z":-7240000000000000000}},"30013164":{"solarSystemId":30013164,"solarSystemName":"Q:23V8","location":{"x":-11100000000000000000,"y":455000000000000000,"z":-7260000000000000000}},"30013165":{"solarSystemId":30013165,"solarSystemName":"H:26A8","location":{"x":-11000000000000000000,"y":488000000000000000,"z":-7210000000000000000}},"30013166":{"solarSystemId":30013166,"solarSystemName":"M:2V67","location":{"x":-11100000000000000000,"y":493000000000000000,"z":-7190000000000000000}},"30013167":{"solarSystemId":30013167,"solarSystemName":"J:1708","location":{"x":-11100000000000000000,"y":494000000000000000,"z":-7210000000000000000}},"30013168":{"solarSystemId":30013168,"solarSystemName":"J:33N3","location":{"x":-11000000000000000000,"y":371000000000000000,"z":-7200000000000000000}},"30013169":{"solarSystemId":30013169,"solarSystemName":"B:N8A0","location":{"x":-11000000000000000000,"y":441000000000000000,"z":-7210000000000000000}},"30013170":{"solarSystemId":30013170,"solarSystemName":"D:1I99","location":{"x":-11000000000000000000,"y":413000000000000000,"z":-7220000000000000000}},"30013171":{"solarSystemId":30013171,"solarSystemName":"D:3AT0","location":{"x":-11100000000000000000,"y":496000000000000000,"z":-7230000000000000000}},"30013172":{"solarSystemId":30013172,"solarSystemName":"P:3N8T","location":{"x":-11000000000000000000,"y":526000000000000000,"z":-7210000000000000000}},"30013173":{"solarSystemId":30013173,"solarSystemName":"D:103O","location":{"x":-11100000000000000000,"y":489000000000000000,"z":-7210000000000000000}},"30013174":{"solarSystemId":30013174,"solarSystemName":"J:O1R6","location":{"x":-11100000000000000000,"y":425000000000000000,"z":-7180000000000000000}},"30013175":{"solarSystemId":30013175,"solarSystemName":"Q:30A8","location":{"x":-11100000000000000000,"y":479000000000000000,"z":-7210000000000000000}},"30013176":{"solarSystemId":30013176,"solarSystemName":"M:2KNO","location":{"x":-11000000000000000000,"y":433000000000000000,"z":-7250000000000000000}},"30013177":{"solarSystemId":30013177,"solarSystemName":"B:310N","location":{"x":-11200000000000000000,"y":466000000000000000,"z":-7180000000000000000}},"30013178":{"solarSystemId":30013178,"solarSystemName":"B:2ER3","location":{"x":-11000000000000000000,"y":509000000000000000,"z":-7210000000000000000}},"30013179":{"solarSystemId":30013179,"solarSystemName":"F:259E","location":{"x":-11000000000000000000,"y":410000000000000000,"z":-7200000000000000000}},"30013180":{"solarSystemId":30013180,"solarSystemName":"Y:1763","location":{"x":-11100000000000000000,"y":481000000000000000,"z":-7200000000000000000}},"30013181":{"solarSystemId":30013181,"solarSystemName":"D:2TSI","location":{"x":-11000000000000000000,"y":478000000000000000,"z":-7200000000000000000}},"30013182":{"solarSystemId":30013182,"solarSystemName":"J:219K","location":{"x":-11100000000000000000,"y":506000000000000000,"z":-7220000000000000000}},"30013183":{"solarSystemId":30013183,"solarSystemName":"U:30A8","location":{"x":-12800000000000000000,"y":227000000000000000,"z":-6360000000000000000}},"30013184":{"solarSystemId":30013184,"solarSystemName":"P:1T3O","location":{"x":-12200000000000000000,"y":-284000000000000000,"z":-6380000000000000000}},"30013185":{"solarSystemId":30013185,"solarSystemName":"J:1RN7","location":{"x":-12500000000000000000,"y":15700000000000000,"z":-6270000000000000000}},"30013186":{"solarSystemId":30013186,"solarSystemName":"Y:1N59","location":{"x":-11800000000000000000,"y":257000000000000000,"z":-5950000000000000000}},"30013187":{"solarSystemId":30013187,"solarSystemName":"F:23AR","location":{"x":-12400000000000000000,"y":717000000000000000,"z":-6210000000000000000}},"30013188":{"solarSystemId":30013188,"solarSystemName":"Q:1S28","location":{"x":-12300000000000000000,"y":286000000000000000,"z":-6150000000000000000}},"30013189":{"solarSystemId":30013189,"solarSystemName":"P:EALN","location":{"x":-11800000000000000000,"y":411000000000000000,"z":-6020000000000000000}},"30013190":{"solarSystemId":30013190,"solarSystemName":"Q:2761","location":{"x":-11800000000000000000,"y":374000000000000000,"z":-6320000000000000000}},"30013191":{"solarSystemId":30013191,"solarSystemName":"G:4A7I","location":{"x":-11900000000000000000,"y":294000000000000000,"z":-5990000000000000000}},"30013192":{"solarSystemId":30013192,"solarSystemName":"B:1N16","location":{"x":-11900000000000000000,"y":399000000000000000,"z":-6180000000000000000}},"30013193":{"solarSystemId":30013193,"solarSystemName":"P:1LKL","location":{"x":-12300000000000000000,"y":29300000000000000,"z":-6610000000000000000}},"30013194":{"solarSystemId":30013194,"solarSystemName":"H:2A08","location":{"x":-11900000000000000000,"y":401000000000000000,"z":-6550000000000000000}},"30013195":{"solarSystemId":30013195,"solarSystemName":"Y:253A","location":{"x":-12100000000000000000,"y":692000000000000000,"z":-6700000000000000000}},"30013196":{"solarSystemId":30013196,"solarSystemName":"U:1IA8","location":{"x":-12100000000000000000,"y":-21200000000000000,"z":-6190000000000000000}},"30013197":{"solarSystemId":30013197,"solarSystemName":"H:29I7","location":{"x":-12700000000000000000,"y":616000000000000000,"z":-6320000000000000000}},"30013198":{"solarSystemId":30013198,"solarSystemName":"Y:305S","location":{"x":-12200000000000000000,"y":511000000000000000,"z":-6100000000000000000}},"30013199":{"solarSystemId":30013199,"solarSystemName":"M:2N6S","location":{"x":-12000000000000000000,"y":275000000000000000,"z":-6430000000000000000}},"30013200":{"solarSystemId":30013200,"solarSystemName":"J:3526","location":{"x":-11700000000000000000,"y":369000000000000000,"z":-6190000000000000000}},"30013201":{"solarSystemId":30013201,"solarSystemName":"G:208V","location":{"x":-11900000000000000000,"y":338000000000000000,"z":-6290000000000000000}},"30013202":{"solarSystemId":30013202,"solarSystemName":"H:2T84","location":{"x":-11900000000000000000,"y":383000000000000000,"z":-6420000000000000000}},"30013203":{"solarSystemId":30013203,"solarSystemName":"Y:KV9O","location":{"x":-11800000000000000000,"y":356000000000000000,"z":-6130000000000000000}},"30013204":{"solarSystemId":30013204,"solarSystemName":"D:26AE","location":{"x":-11200000000000000000,"y":335000000000000000,"z":-7200000000000000000}},"30013205":{"solarSystemId":30013205,"solarSystemName":"B:2SSO","location":{"x":-11300000000000000000,"y":227000000000000000,"z":-7490000000000000000}},"30013206":{"solarSystemId":30013206,"solarSystemName":"U:317O","location":{"x":-11200000000000000000,"y":280000000000000000,"z":-7260000000000000000}},"30013207":{"solarSystemId":30013207,"solarSystemName":"Z:2KN6","location":{"x":-11300000000000000000,"y":363000000000000000,"z":-7460000000000000000}},"30013208":{"solarSystemId":30013208,"solarSystemName":"Q:2V5S","location":{"x":-11200000000000000000,"y":54700000000000000,"z":-7400000000000000000}},"30013209":{"solarSystemId":30013209,"solarSystemName":"M:238S","location":{"x":-11100000000000000000,"y":135000000000000000,"z":-7200000000000000000}},"30013210":{"solarSystemId":30013210,"solarSystemName":"Z:2716","location":{"x":-11200000000000000000,"y":374000000000000000,"z":-7350000000000000000}},"30013211":{"solarSystemId":30013211,"solarSystemName":"G:24ST","location":{"x":-11300000000000000000,"y":218000000000000000,"z":-7490000000000000000}},"30013212":{"solarSystemId":30013212,"solarSystemName":"D:NEVS","location":{"x":-11100000000000000000,"y":307000000000000000,"z":-7440000000000000000}},"30013213":{"solarSystemId":30013213,"solarSystemName":"M:18A0","location":{"x":-11000000000000000000,"y":268000000000000000,"z":-7330000000000000000}},"30013214":{"solarSystemId":30013214,"solarSystemName":"M:22E6","location":{"x":-11100000000000000000,"y":283000000000000000,"z":-7500000000000000000}},"30013215":{"solarSystemId":30013215,"solarSystemName":"H:2EE7","location":{"x":-11100000000000000000,"y":179000000000000000,"z":-7300000000000000000}},"30013216":{"solarSystemId":30013216,"solarSystemName":"U:26LA","location":{"x":-11200000000000000000,"y":225000000000000000,"z":-7370000000000000000}},"30013217":{"solarSystemId":30013217,"solarSystemName":"G:238L","location":{"x":-11200000000000000000,"y":363000000000000000,"z":-7330000000000000000}},"30013218":{"solarSystemId":30013218,"solarSystemName":"H:2AK3","location":{"x":-11200000000000000000,"y":368000000000000000,"z":-7230000000000000000}},"30013219":{"solarSystemId":30013219,"solarSystemName":"B:2432","location":{"x":-11100000000000000000,"y":361000000000000000,"z":-7230000000000000000}},"30013220":{"solarSystemId":30013220,"solarSystemName":"J:2I00","location":{"x":-11200000000000000000,"y":330000000000000000,"z":-7380000000000000000}},"30013221":{"solarSystemId":30013221,"solarSystemName":"Y:24IV","location":{"x":-11300000000000000000,"y":220000000000000000,"z":-7420000000000000000}},"30013222":{"solarSystemId":30013222,"solarSystemName":"J:24L1","location":{"x":-11000000000000000000,"y":486000000000000000,"z":-7330000000000000000}},"30013223":{"solarSystemId":30013223,"solarSystemName":"M:2764","location":{"x":-11000000000000000000,"y":462000000000000000,"z":-7300000000000000000}},"30013224":{"solarSystemId":30013224,"solarSystemName":"H:1NR1","location":{"x":-11000000000000000000,"y":458000000000000000,"z":-7260000000000000000}},"30013225":{"solarSystemId":30013225,"solarSystemName":"Z:2NA1","location":{"x":-11000000000000000000,"y":423000000000000000,"z":-7340000000000000000}},"30013226":{"solarSystemId":30013226,"solarSystemName":"J:259S","location":{"x":-11000000000000000000,"y":434000000000000000,"z":-7270000000000000000}},"30013227":{"solarSystemId":30013227,"solarSystemName":"U:1TEK","location":{"x":-11000000000000000000,"y":458000000000000000,"z":-7310000000000000000}},"30013228":{"solarSystemId":30013228,"solarSystemName":"Y:186R","location":{"x":-10900000000000000000,"y":424000000000000000,"z":-7280000000000000000}},"30013229":{"solarSystemId":30013229,"solarSystemName":"B:RO87","location":{"x":-10900000000000000000,"y":436000000000000000,"z":-7290000000000000000}},"30013230":{"solarSystemId":30013230,"solarSystemName":"U:1LL3","location":{"x":-10900000000000000000,"y":464000000000000000,"z":-7350000000000000000}},"30013231":{"solarSystemId":30013231,"solarSystemName":"F:1N4V","location":{"x":-11000000000000000000,"y":422000000000000000,"z":-7300000000000000000}},"30013232":{"solarSystemId":30013232,"solarSystemName":"H:24AV","location":{"x":-11000000000000000000,"y":430000000000000000,"z":-7270000000000000000}},"30013233":{"solarSystemId":30013233,"solarSystemName":"P:28I3","location":{"x":-10900000000000000000,"y":430000000000000000,"z":-7300000000000000000}},"30013234":{"solarSystemId":30013234,"solarSystemName":"Y:2S1N","location":{"x":-10900000000000000000,"y":437000000000000000,"z":-7310000000000000000}},"30013235":{"solarSystemId":30013235,"solarSystemName":"Q:23LS","location":{"x":-11000000000000000000,"y":453000000000000000,"z":-7270000000000000000}},"30013236":{"solarSystemId":30013236,"solarSystemName":"M:235S","location":{"x":-10900000000000000000,"y":444000000000000000,"z":-7260000000000000000}},"30013237":{"solarSystemId":30013237,"solarSystemName":"B:335R","location":{"x":-11000000000000000000,"y":491000000000000000,"z":-7340000000000000000}},"30013238":{"solarSystemId":30013238,"solarSystemName":"G:2SAN","location":{"x":-11000000000000000000,"y":398000000000000000,"z":-7260000000000000000}},"30013239":{"solarSystemId":30013239,"solarSystemName":"Y:2K28","location":{"x":-11000000000000000000,"y":443000000000000000,"z":-7250000000000000000}},"30013240":{"solarSystemId":30013240,"solarSystemName":"M:13K0","location":{"x":-11000000000000000000,"y":452000000000000000,"z":-7270000000000000000}},"30013241":{"solarSystemId":30013241,"solarSystemName":"Z:3353","location":{"x":-11000000000000000000,"y":437000000000000000,"z":-7070000000000000000}},"30013242":{"solarSystemId":30013242,"solarSystemName":"H:28O1","location":{"x":-11000000000000000000,"y":432000000000000000,"z":-7170000000000000000}},"30013243":{"solarSystemId":30013243,"solarSystemName":"M:2TL3","location":{"x":-11000000000000000000,"y":465000000000000000,"z":-7180000000000000000}},"30013244":{"solarSystemId":30013244,"solarSystemName":"D:2626","location":{"x":-11000000000000000000,"y":419000000000000000,"z":-7150000000000000000}},"30013245":{"solarSystemId":30013245,"solarSystemName":"Q:2K8T","location":{"x":-11000000000000000000,"y":438000000000000000,"z":-7190000000000000000}},"30013246":{"solarSystemId":30013246,"solarSystemName":"J:27RR","location":{"x":-10900000000000000000,"y":449000000000000000,"z":-7070000000000000000}},"30013247":{"solarSystemId":30013247,"solarSystemName":"J:2NTE","location":{"x":-10900000000000000000,"y":431000000000000000,"z":-7040000000000000000}},"30013248":{"solarSystemId":30013248,"solarSystemName":"D:352N","location":{"x":-11000000000000000000,"y":412000000000000000,"z":-7190000000000000000}},"30013249":{"solarSystemId":30013249,"solarSystemName":"Y:1823","location":{"x":-11000000000000000000,"y":475000000000000000,"z":-7160000000000000000}},"30013250":{"solarSystemId":30013250,"solarSystemName":"G:1TA2","location":{"x":-10900000000000000000,"y":428000000000000000,"z":-7080000000000000000}},"30013251":{"solarSystemId":30013251,"solarSystemName":"B:N0L6","location":{"x":-10900000000000000000,"y":483000000000000000,"z":-7130000000000000000}},"30013252":{"solarSystemId":30013252,"solarSystemName":"J:1OL7","location":{"x":-11000000000000000000,"y":401000000000000000,"z":-7150000000000000000}},"30013253":{"solarSystemId":30013253,"solarSystemName":"D:280K","location":{"x":-11000000000000000000,"y":505000000000000000,"z":-7030000000000000000}},"30013254":{"solarSystemId":30013254,"solarSystemName":"D:220I","location":{"x":-10900000000000000000,"y":410000000000000000,"z":-7080000000000000000}},"30013255":{"solarSystemId":30013255,"solarSystemName":"U:238R","location":{"x":-10900000000000000000,"y":424000000000000000,"z":-7010000000000000000}},"30013256":{"solarSystemId":30013256,"solarSystemName":"G:2IS5","location":{"x":-11000000000000000000,"y":475000000000000000,"z":-7100000000000000000}},"30013257":{"solarSystemId":30013257,"solarSystemName":"Y:253V","location":{"x":-10900000000000000000,"y":461000000000000000,"z":-6960000000000000000}},"30013258":{"solarSystemId":30013258,"solarSystemName":"J:28V4","location":{"x":-11000000000000000000,"y":417000000000000000,"z":-7150000000000000000}},"30013259":{"solarSystemId":30013259,"solarSystemName":"U:2SL8","location":{"x":-11000000000000000000,"y":503000000000000000,"z":-7040000000000000000}},"30013260":{"solarSystemId":30013260,"solarSystemName":"M:31I6","location":{"x":-11000000000000000000,"y":438000000000000000,"z":-7190000000000000000}},"30013261":{"solarSystemId":30013261,"solarSystemName":"G:2L4L","location":{"x":-11000000000000000000,"y":423000000000000000,"z":-7190000000000000000}},"30013262":{"solarSystemId":30013262,"solarSystemName":"Q:2EV2","location":{"x":-11500000000000000000,"y":-266000000000000000,"z":-8760000000000000000}},"30013263":{"solarSystemId":30013263,"solarSystemName":"F:2K3I","location":{"x":-11700000000000000000,"y":-50800000000000000,"z":-7170000000000000000}},"30013264":{"solarSystemId":30013264,"solarSystemName":"G:2LIK","location":{"x":-11400000000000000000,"y":-292000000000000000,"z":-7810000000000000000}},"30013265":{"solarSystemId":30013265,"solarSystemName":"Q:24N7","location":{"x":-11300000000000000000,"y":159000000000000000,"z":-7800000000000000000}},"30013266":{"solarSystemId":30013266,"solarSystemName":"B:2937","location":{"x":-10800000000000000000,"y":-1510000000000000000,"z":-8750000000000000000}},"30013267":{"solarSystemId":30013267,"solarSystemName":"F:3S4L","location":{"x":-11300000000000000000,"y":533000000000000000,"z":-7790000000000000000}},"30013268":{"solarSystemId":30013268,"solarSystemName":"G:1KRI","location":{"x":-11200000000000000000,"y":382000000000000000,"z":-7520000000000000000}},"30013269":{"solarSystemId":30013269,"solarSystemName":"U:18EK","location":{"x":-11300000000000000000,"y":522000000000000000,"z":-7810000000000000000}},"30013270":{"solarSystemId":30013270,"solarSystemName":"U:33N9","location":{"x":-11100000000000000000,"y":464000000000000000,"z":-7730000000000000000}},"30013271":{"solarSystemId":30013271,"solarSystemName":"B:1ILA","location":{"x":-11100000000000000000,"y":-275000000000000000,"z":-8170000000000000000}},"30013272":{"solarSystemId":30013272,"solarSystemName":"J:ELKV","location":{"x":-11400000000000000000,"y":-334000000000000000,"z":-7980000000000000000}},"30013273":{"solarSystemId":30013273,"solarSystemName":"J:LT8K","location":{"x":-11300000000000000000,"y":-140000000000000000,"z":-8210000000000000000}},"30013274":{"solarSystemId":30013274,"solarSystemName":"J:2TKN","location":{"x":-11000000000000000000,"y":-636000000000000000,"z":-8430000000000000000}},"30013275":{"solarSystemId":30013275,"solarSystemName":"D:2K02","location":{"x":-11200000000000000000,"y":532000000000000000,"z":-7850000000000000000}},"30013276":{"solarSystemId":30013276,"solarSystemName":"G:2KN9","location":{"x":-11800000000000000000,"y":19300000000000000,"z":-7270000000000000000}},"30013277":{"solarSystemId":30013277,"solarSystemName":"J:338A","location":{"x":-11500000000000000000,"y":-67100000000000000,"z":-7540000000000000000}},"30013278":{"solarSystemId":30013278,"solarSystemName":"H:31LK","location":{"x":-11300000000000000000,"y":263000000000000000,"z":-7620000000000000000}},"30013279":{"solarSystemId":30013279,"solarSystemName":"G:23SI","location":{"x":-10900000000000000000,"y":-122000000000000000,"z":-8480000000000000000}},"30013280":{"solarSystemId":30013280,"solarSystemName":"Z:2R20","location":{"x":-11200000000000000000,"y":157000000000000000,"z":-7650000000000000000}},"30013281":{"solarSystemId":30013281,"solarSystemName":"D:2355","location":{"x":-11600000000000000000,"y":-322000000000000000,"z":-8300000000000000000}},"30013282":{"solarSystemId":30013282,"solarSystemName":"D:28L4","location":{"x":-11000000000000000000,"y":535000000000000000,"z":-7350000000000000000}},"30013283":{"solarSystemId":30013283,"solarSystemName":"H:2S0A","location":{"x":-11000000000000000000,"y":485000000000000000,"z":-7320000000000000000}},"30013284":{"solarSystemId":30013284,"solarSystemName":"F:2ELT","location":{"x":-11000000000000000000,"y":491000000000000000,"z":-7340000000000000000}},"30013285":{"solarSystemId":30013285,"solarSystemName":"P:241K","location":{"x":-11000000000000000000,"y":531000000000000000,"z":-7330000000000000000}},"30013286":{"solarSystemId":30013286,"solarSystemName":"Z:2SN5","location":{"x":-11000000000000000000,"y":480000000000000000,"z":-7330000000000000000}},"30013287":{"solarSystemId":30013287,"solarSystemName":"Y:2SLT","location":{"x":-11000000000000000000,"y":505000000000000000,"z":-7320000000000000000}},"30013288":{"solarSystemId":30013288,"solarSystemName":"Z:244V","location":{"x":-11000000000000000000,"y":491000000000000000,"z":-7370000000000000000}},"30013289":{"solarSystemId":30013289,"solarSystemName":"Z:EA94","location":{"x":-11000000000000000000,"y":499000000000000000,"z":-7370000000000000000}},"30013290":{"solarSystemId":30013290,"solarSystemName":"Z:2R89","location":{"x":-11000000000000000000,"y":555000000000000000,"z":-7340000000000000000}},"30013291":{"solarSystemId":30013291,"solarSystemName":"M:1209","location":{"x":-11000000000000000000,"y":534000000000000000,"z":-7330000000000000000}},"30013292":{"solarSystemId":30013292,"solarSystemName":"Q:1NRL","location":{"x":-11100000000000000000,"y":491000000000000000,"z":-7350000000000000000}},"30013293":{"solarSystemId":30013293,"solarSystemName":"U:250O","location":{"x":-11000000000000000000,"y":464000000000000000,"z":-7350000000000000000}},"30013294":{"solarSystemId":30013294,"solarSystemName":"G:2SIS","location":{"x":-11000000000000000000,"y":529000000000000000,"z":-7350000000000000000}},"30013295":{"solarSystemId":30013295,"solarSystemName":"M:303N","location":{"x":-11000000000000000000,"y":526000000000000000,"z":-7340000000000000000}},"30013296":{"solarSystemId":30013296,"solarSystemName":"H:28K4","location":{"x":-11000000000000000000,"y":487000000000000000,"z":-7370000000000000000}},"30013297":{"solarSystemId":30013297,"solarSystemName":"P:28S6","location":{"x":-11100000000000000000,"y":508000000000000000,"z":-7330000000000000000}},"30013298":{"solarSystemId":30013298,"solarSystemName":"D:2802","location":{"x":-11000000000000000000,"y":521000000000000000,"z":-7350000000000000000}},"30013299":{"solarSystemId":30013299,"solarSystemName":"Y:247I","location":{"x":-11000000000000000000,"y":511000000000000000,"z":-7350000000000000000}},"30013300":{"solarSystemId":30013300,"solarSystemName":"Z:35IL","location":{"x":-11000000000000000000,"y":532000000000000000,"z":-7350000000000000000}},"30013301":{"solarSystemId":30013301,"solarSystemName":"U:2K3T","location":{"x":-11000000000000000000,"y":498000000000000000,"z":-7340000000000000000}},"30013302":{"solarSystemId":30013302,"solarSystemName":"G:22V7","location":{"x":-11000000000000000000,"y":445000000000000000,"z":-7340000000000000000}},"30013303":{"solarSystemId":30013303,"solarSystemName":"Y:31O1","location":{"x":-11000000000000000000,"y":517000000000000000,"z":-7340000000000000000}},"30013304":{"solarSystemId":30013304,"solarSystemName":"G:360A","location":{"x":-11900000000000000000,"y":1630000000000000000,"z":-7750000000000000000}},"30013305":{"solarSystemId":30013305,"solarSystemName":"B:3OL6","location":{"x":-11600000000000000000,"y":2040000000000000000,"z":-7350000000000000000}},"30013306":{"solarSystemId":30013306,"solarSystemName":"J:2NOT","location":{"x":-11500000000000000000,"y":1200000000000000000,"z":-7570000000000000000}},"30013307":{"solarSystemId":30013307,"solarSystemName":"Q:22L4","location":{"x":-11800000000000000000,"y":1010000000000000000,"z":-7980000000000000000}},"30013308":{"solarSystemId":30013308,"solarSystemName":"D:240V","location":{"x":-12300000000000000000,"y":1010000000000000000,"z":-7560000000000000000}},"30013309":{"solarSystemId":30013309,"solarSystemName":"F:1LLV","location":{"x":-11600000000000000000,"y":943000000000000000,"z":-8040000000000000000}},"30013310":{"solarSystemId":30013310,"solarSystemName":"M:1VSE","location":{"x":-12000000000000000000,"y":1030000000000000000,"z":-7560000000000000000}},"30013311":{"solarSystemId":30013311,"solarSystemName":"P:2K64","location":{"x":-12100000000000000000,"y":1100000000000000000,"z":-7530000000000000000}},"30013312":{"solarSystemId":30013312,"solarSystemName":"G:1L3T","location":{"x":-11800000000000000000,"y":1450000000000000000,"z":-7650000000000000000}},"30013313":{"solarSystemId":30013313,"solarSystemName":"Q:1NA8","location":{"x":-12300000000000000000,"y":977000000000000000,"z":-7730000000000000000}},"30013314":{"solarSystemId":30013314,"solarSystemName":"H:1EL4","location":{"x":-12200000000000000000,"y":1030000000000000000,"z":-7660000000000000000}},"30013315":{"solarSystemId":30013315,"solarSystemName":"M:24AK","location":{"x":-12200000000000000000,"y":1370000000000000000,"z":-7610000000000000000}},"30013316":{"solarSystemId":30013316,"solarSystemName":"Q:2V22","location":{"x":-11700000000000000000,"y":1580000000000000000,"z":-7410000000000000000}},"30013317":{"solarSystemId":30013317,"solarSystemName":"H:24N9","location":{"x":-12000000000000000000,"y":1010000000000000000,"z":-7710000000000000000}},"30013318":{"solarSystemId":30013318,"solarSystemName":"M:22TL","location":{"x":-11500000000000000000,"y":1640000000000000000,"z":-7710000000000000000}},"30013319":{"solarSystemId":30013319,"solarSystemName":"Z:3570","location":{"x":-11600000000000000000,"y":2010000000000000000,"z":-8170000000000000000}},"30013320":{"solarSystemId":30013320,"solarSystemName":"Y:2LLO","location":{"x":-11400000000000000000,"y":1490000000000000000,"z":-7890000000000000000}},"30013321":{"solarSystemId":30013321,"solarSystemName":"Q:27K3","location":{"x":-12100000000000000000,"y":1470000000000000000,"z":-7680000000000000000}},"30013322":{"solarSystemId":30013322,"solarSystemName":"H:309E","location":{"x":-10900000000000000000,"y":540000000000000000,"z":-7370000000000000000}},"30013323":{"solarSystemId":30013323,"solarSystemName":"Q:2572","location":{"x":-11000000000000000000,"y":549000000000000000,"z":-7350000000000000000}},"30013324":{"solarSystemId":30013324,"solarSystemName":"U:2VO3","location":{"x":-11000000000000000000,"y":567000000000000000,"z":-7400000000000000000}},"30013325":{"solarSystemId":30013325,"solarSystemName":"P:2309","location":{"x":-11000000000000000000,"y":533000000000000000,"z":-7370000000000000000}},"30013326":{"solarSystemId":30013326,"solarSystemName":"P:25KK","location":{"x":-11000000000000000000,"y":561000000000000000,"z":-7390000000000000000}},"30013327":{"solarSystemId":30013327,"solarSystemName":"G:2T08","location":{"x":-11000000000000000000,"y":558000000000000000,"z":-7370000000000000000}},"30013328":{"solarSystemId":30013328,"solarSystemName":"Y:2TEE","location":{"x":-11000000000000000000,"y":575000000000000000,"z":-7380000000000000000}},"30013329":{"solarSystemId":30013329,"solarSystemName":"Z:2LK3","location":{"x":-11000000000000000000,"y":528000000000000000,"z":-7370000000000000000}},"30013330":{"solarSystemId":30013330,"solarSystemName":"Q:26L0","location":{"x":-11000000000000000000,"y":543000000000000000,"z":-7360000000000000000}},"30013331":{"solarSystemId":30013331,"solarSystemName":"J:IA65","location":{"x":-11100000000000000000,"y":536000000000000000,"z":-7400000000000000000}},"30013332":{"solarSystemId":30013332,"solarSystemName":"Z:1ORI","location":{"x":-10900000000000000000,"y":541000000000000000,"z":-7380000000000000000}},"30013333":{"solarSystemId":30013333,"solarSystemName":"P:28V3","location":{"x":-11000000000000000000,"y":553000000000000000,"z":-7360000000000000000}},"30013334":{"solarSystemId":30013334,"solarSystemName":"H:24VA","location":{"x":-11000000000000000000,"y":541000000000000000,"z":-7370000000000000000}},"30013335":{"solarSystemId":30013335,"solarSystemName":"Q:28O4","location":{"x":-11000000000000000000,"y":529000000000000000,"z":-7360000000000000000}},"30013336":{"solarSystemId":30013336,"solarSystemName":"U:346A","location":{"x":-11000000000000000000,"y":544000000000000000,"z":-7340000000000000000}},"30013337":{"solarSystemId":30013337,"solarSystemName":"M:23AS","location":{"x":-11000000000000000000,"y":592000000000000000,"z":-7380000000000000000}},"30013338":{"solarSystemId":30013338,"solarSystemName":"J:29E5","location":{"x":-11000000000000000000,"y":568000000000000000,"z":-7380000000000000000}},"30013339":{"solarSystemId":30013339,"solarSystemName":"P:27RK","location":{"x":-11000000000000000000,"y":549000000000000000,"z":-7350000000000000000}},"30013340":{"solarSystemId":30013340,"solarSystemName":"U:296I","location":{"x":-11000000000000000000,"y":564000000000000000,"z":-7400000000000000000}},"30013341":{"solarSystemId":30013341,"solarSystemName":"Y:2767","location":{"x":-11000000000000000000,"y":535000000000000000,"z":-7300000000000000000}},"30013342":{"solarSystemId":30013342,"solarSystemName":"B:321S","location":{"x":-10900000000000000000,"y":683000000000000000,"z":-7300000000000000000}},"30013343":{"solarSystemId":30013343,"solarSystemName":"J:2L4R","location":{"x":-10900000000000000000,"y":589000000000000000,"z":-7310000000000000000}},"30013344":{"solarSystemId":30013344,"solarSystemName":"J:28I6","location":{"x":-11000000000000000000,"y":590000000000000000,"z":-7290000000000000000}},"30013345":{"solarSystemId":30013345,"solarSystemName":"M:32EK","location":{"x":-10900000000000000000,"y":573000000000000000,"z":-7380000000000000000}},"30013346":{"solarSystemId":30013346,"solarSystemName":"U:23TL","location":{"x":-11000000000000000000,"y":563000000000000000,"z":-7260000000000000000}},"30013347":{"solarSystemId":30013347,"solarSystemName":"M:22KO","location":{"x":-10900000000000000000,"y":684000000000000000,"z":-7370000000000000000}},"30013348":{"solarSystemId":30013348,"solarSystemName":"U:2VLR","location":{"x":-10900000000000000000,"y":615000000000000000,"z":-7460000000000000000}},"30013349":{"solarSystemId":30013349,"solarSystemName":"F:2OEO","location":{"x":-10900000000000000000,"y":643000000000000000,"z":-7430000000000000000}},"30013350":{"solarSystemId":30013350,"solarSystemName":"B:1ILR","location":{"x":-11000000000000000000,"y":626000000000000000,"z":-7340000000000000000}},"30013351":{"solarSystemId":30013351,"solarSystemName":"U:2O5S","location":{"x":-11000000000000000000,"y":556000000000000000,"z":-7270000000000000000}},"30013352":{"solarSystemId":30013352,"solarSystemName":"B:2N78","location":{"x":-11000000000000000000,"y":632000000000000000,"z":-7320000000000000000}},"30013353":{"solarSystemId":30013353,"solarSystemName":"H:35I1","location":{"x":-10900000000000000000,"y":573000000000000000,"z":-7250000000000000000}},"30013354":{"solarSystemId":30013354,"solarSystemName":"D:34OI","location":{"x":-11000000000000000000,"y":595000000000000000,"z":-7340000000000000000}},"30013355":{"solarSystemId":30013355,"solarSystemName":"B:2AR0","location":{"x":-11000000000000000000,"y":630000000000000000,"z":-7280000000000000000}},"30013356":{"solarSystemId":30013356,"solarSystemName":"D:351N","location":{"x":-11000000000000000000,"y":659000000000000000,"z":-7380000000000000000}},"30013357":{"solarSystemId":30013357,"solarSystemName":"J:2K08","location":{"x":-10900000000000000000,"y":615000000000000000,"z":-7310000000000000000}},"30013358":{"solarSystemId":30013358,"solarSystemName":"F:2T3E","location":{"x":-10900000000000000000,"y":581000000000000000,"z":-7330000000000000000}},"30013359":{"solarSystemId":30013359,"solarSystemName":"M:2VAL","location":{"x":-11000000000000000000,"y":553000000000000000,"z":-7310000000000000000}},"30013360":{"solarSystemId":30013360,"solarSystemName":"D:23O4","location":{"x":-11300000000000000000,"y":556000000000000000,"z":-7620000000000000000}},"30013361":{"solarSystemId":30013361,"solarSystemName":"Q:23N2","location":{"x":-11300000000000000000,"y":423000000000000000,"z":-7520000000000000000}},"30013362":{"solarSystemId":30013362,"solarSystemName":"U:248I","location":{"x":-11100000000000000000,"y":529000000000000000,"z":-7680000000000000000}},"30013363":{"solarSystemId":30013363,"solarSystemName":"Z:2VT1","location":{"x":-11200000000000000000,"y":510000000000000000,"z":-7460000000000000000}},"30013364":{"solarSystemId":30013364,"solarSystemName":"Z:1L42","location":{"x":-11100000000000000000,"y":546000000000000000,"z":-7600000000000000000}},"30013365":{"solarSystemId":30013365,"solarSystemName":"D:E151","location":{"x":-11200000000000000000,"y":656000000000000000,"z":-7550000000000000000}},"30013366":{"solarSystemId":30013366,"solarSystemName":"Z:RVN2","location":{"x":-11300000000000000000,"y":615000000000000000,"z":-7520000000000000000}},"30013367":{"solarSystemId":30013367,"solarSystemName":"H:1284","location":{"x":-11200000000000000000,"y":579000000000000000,"z":-7530000000000000000}},"30013368":{"solarSystemId":30013368,"solarSystemName":"H:4SR0","location":{"x":-11200000000000000000,"y":499000000000000000,"z":-7670000000000000000}},"30013369":{"solarSystemId":30013369,"solarSystemName":"Y:347A","location":{"x":-11300000000000000000,"y":646000000000000000,"z":-7480000000000000000}},"30013370":{"solarSystemId":30013370,"solarSystemName":"B:2V1S","location":{"x":-11300000000000000000,"y":638000000000000000,"z":-7510000000000000000}},"30013371":{"solarSystemId":30013371,"solarSystemName":"Z:2ENI","location":{"x":-11100000000000000000,"y":494000000000000000,"z":-7510000000000000000}},"30013372":{"solarSystemId":30013372,"solarSystemName":"U:243N","location":{"x":-11100000000000000000,"y":441000000000000000,"z":-7520000000000000000}},"30013373":{"solarSystemId":30013373,"solarSystemName":"D:28L3","location":{"x":-11200000000000000000,"y":538000000000000000,"z":-7580000000000000000}},"30013374":{"solarSystemId":30013374,"solarSystemName":"P:2VAO","location":{"x":-11100000000000000000,"y":475000000000000000,"z":-7500000000000000000}},"30013375":{"solarSystemId":30013375,"solarSystemName":"M:29LO","location":{"x":-11200000000000000000,"y":549000000000000000,"z":-7530000000000000000}},"30013376":{"solarSystemId":30013376,"solarSystemName":"Y:1O4A","location":{"x":-11200000000000000000,"y":580000000000000000,"z":-7540000000000000000}},"30013377":{"solarSystemId":30013377,"solarSystemName":"B:2AT0","location":{"x":-11200000000000000000,"y":648000000000000000,"z":-7510000000000000000}},"30013378":{"solarSystemId":30013378,"solarSystemName":"H:I0S2","location":{"x":-11300000000000000000,"y":634000000000000000,"z":-7520000000000000000}},"30013379":{"solarSystemId":30013379,"solarSystemName":"M:3520","location":{"x":-10800000000000000000,"y":709000000000000000,"z":-7350000000000000000}},"30013380":{"solarSystemId":30013380,"solarSystemName":"D:319L","location":{"x":-10800000000000000000,"y":543000000000000000,"z":-7420000000000000000}},"30013381":{"solarSystemId":30013381,"solarSystemName":"B:2K2I","location":{"x":-10800000000000000000,"y":554000000000000000,"z":-7440000000000000000}},"30013382":{"solarSystemId":30013382,"solarSystemName":"U:31L8","location":{"x":-10800000000000000000,"y":575000000000000000,"z":-7370000000000000000}},"30013383":{"solarSystemId":30013383,"solarSystemName":"P:2KER","location":{"x":-10700000000000000000,"y":559000000000000000,"z":-7330000000000000000}},"30013384":{"solarSystemId":30013384,"solarSystemName":"H:23I7","location":{"x":-10800000000000000000,"y":570000000000000000,"z":-7460000000000000000}},"30013385":{"solarSystemId":30013385,"solarSystemName":"Q:1R73","location":{"x":-10800000000000000000,"y":582000000000000000,"z":-7260000000000000000}},"30013386":{"solarSystemId":30013386,"solarSystemName":"Y:11T5","location":{"x":-10800000000000000000,"y":595000000000000000,"z":-7380000000000000000}},"30013387":{"solarSystemId":30013387,"solarSystemName":"Z:12S5","location":{"x":-10800000000000000000,"y":594000000000000000,"z":-7370000000000000000}},"30013388":{"solarSystemId":30013388,"solarSystemName":"Z:2NE3","location":{"x":-10800000000000000000,"y":709000000000000000,"z":-7290000000000000000}},"30013389":{"solarSystemId":30013389,"solarSystemName":"U:278N","location":{"x":-10700000000000000000,"y":602000000000000000,"z":-7270000000000000000}},"30013390":{"solarSystemId":30013390,"solarSystemName":"B:3048","location":{"x":-10800000000000000000,"y":575000000000000000,"z":-7340000000000000000}},"30013391":{"solarSystemId":30013391,"solarSystemName":"F:2S57","location":{"x":-10800000000000000000,"y":522000000000000000,"z":-7430000000000000000}},"30013392":{"solarSystemId":30013392,"solarSystemName":"F:2IRK","location":{"x":-10800000000000000000,"y":571000000000000000,"z":-7450000000000000000}},"30013393":{"solarSystemId":30013393,"solarSystemName":"Y:26N1","location":{"x":-10800000000000000000,"y":586000000000000000,"z":-7310000000000000000}},"30013394":{"solarSystemId":30013394,"solarSystemName":"Z:31N9","location":{"x":-10700000000000000000,"y":641000000000000000,"z":-7380000000000000000}},"30013395":{"solarSystemId":30013395,"solarSystemName":"U:2OIO","location":{"x":-10800000000000000000,"y":613000000000000000,"z":-7360000000000000000}},"30013396":{"solarSystemId":30013396,"solarSystemName":"P:260V","location":{"x":-10800000000000000000,"y":592000000000000000,"z":-7310000000000000000}},"30013397":{"solarSystemId":30013397,"solarSystemName":"D:2408","location":{"x":-10700000000000000000,"y":641000000000000000,"z":-7320000000000000000}},"30013398":{"solarSystemId":30013398,"solarSystemName":"F:272V","location":{"x":-11000000000000000000,"y":617000000000000000,"z":-7370000000000000000}},"30013399":{"solarSystemId":30013399,"solarSystemName":"Y:269T","location":{"x":-11100000000000000000,"y":706000000000000000,"z":-7390000000000000000}},"30013400":{"solarSystemId":30013400,"solarSystemName":"J:1EIO","location":{"x":-11100000000000000000,"y":607000000000000000,"z":-7480000000000000000}},"30013401":{"solarSystemId":30013401,"solarSystemName":"G:1T56","location":{"x":-11000000000000000000,"y":540000000000000000,"z":-7470000000000000000}},"30013402":{"solarSystemId":30013402,"solarSystemName":"Y:1V2A","location":{"x":-11000000000000000000,"y":565000000000000000,"z":-7470000000000000000}},"30013403":{"solarSystemId":30013403,"solarSystemName":"H:1LN7","location":{"x":-11100000000000000000,"y":700000000000000000,"z":-7490000000000000000}},"30013404":{"solarSystemId":30013404,"solarSystemName":"Q:31E9","location":{"x":-11100000000000000000,"y":586000000000000000,"z":-7400000000000000000}},"30013405":{"solarSystemId":30013405,"solarSystemName":"M:1L8I","location":{"x":-11000000000000000000,"y":635000000000000000,"z":-7410000000000000000}},"30013406":{"solarSystemId":30013406,"solarSystemName":"D:KRS3","location":{"x":-11200000000000000000,"y":623000000000000000,"z":-7430000000000000000}},"30013407":{"solarSystemId":30013407,"solarSystemName":"Z:2436","location":{"x":-11100000000000000000,"y":601000000000000000,"z":-7400000000000000000}},"30013408":{"solarSystemId":30013408,"solarSystemName":"P:I1TI","location":{"x":-11100000000000000000,"y":625000000000000000,"z":-7440000000000000000}},"30013409":{"solarSystemId":30013409,"solarSystemName":"Z:3427","location":{"x":-11100000000000000000,"y":709000000000000000,"z":-7410000000000000000}},"30013410":{"solarSystemId":30013410,"solarSystemName":"B:22VR","location":{"x":-11100000000000000000,"y":700000000000000000,"z":-7450000000000000000}},"30013411":{"solarSystemId":30013411,"solarSystemName":"P:1LNO","location":{"x":-11000000000000000000,"y":650000000000000000,"z":-7410000000000000000}},"30013412":{"solarSystemId":30013412,"solarSystemName":"D:1TAT","location":{"x":-11200000000000000000,"y":616000000000000000,"z":-7430000000000000000}},"30013413":{"solarSystemId":30013413,"solarSystemName":"J:271R","location":{"x":-11100000000000000000,"y":636000000000000000,"z":-7480000000000000000}},"30013414":{"solarSystemId":30013414,"solarSystemName":"M:25IS","location":{"x":-11000000000000000000,"y":620000000000000000,"z":-7490000000000000000}},"30013415":{"solarSystemId":30013415,"solarSystemName":"P:29N1","location":{"x":-11100000000000000000,"y":570000000000000000,"z":-7420000000000000000}},"30013416":{"solarSystemId":30013416,"solarSystemName":"D:2K15","location":{"x":-11000000000000000000,"y":539000000000000000,"z":-7450000000000000000}},"30013417":{"solarSystemId":30013417,"solarSystemName":"U:V68I","location":{"x":-11000000000000000000,"y":619000000000000000,"z":-7400000000000000000}},"30013418":{"solarSystemId":30013418,"solarSystemName":"D:3138","location":{"x":-11100000000000000000,"y":687000000000000000,"z":-7470000000000000000}},"30013419":{"solarSystemId":30013419,"solarSystemName":"M:1RVK","location":{"x":-11100000000000000000,"y":645000000000000000,"z":-7530000000000000000}},"30013420":{"solarSystemId":30013420,"solarSystemName":"P:2S87","location":{"x":-11000000000000000000,"y":546000000000000000,"z":-7740000000000000000}},"30013421":{"solarSystemId":30013421,"solarSystemName":"B:28K3","location":{"x":-11000000000000000000,"y":581000000000000000,"z":-7610000000000000000}},"30013422":{"solarSystemId":30013422,"solarSystemName":"Y:33VE","location":{"x":-11000000000000000000,"y":739000000000000000,"z":-7730000000000000000}},"30013423":{"solarSystemId":30013423,"solarSystemName":"M:22K7","location":{"x":-10900000000000000000,"y":608000000000000000,"z":-7590000000000000000}},"30013424":{"solarSystemId":30013424,"solarSystemName":"P:22O4","location":{"x":-11000000000000000000,"y":759000000000000000,"z":-7550000000000000000}},"30013425":{"solarSystemId":30013425,"solarSystemName":"J:26V9","location":{"x":-10900000000000000000,"y":700000000000000000,"z":-7740000000000000000}},"30013426":{"solarSystemId":30013426,"solarSystemName":"Z:1NOE","location":{"x":-10900000000000000000,"y":562000000000000000,"z":-7840000000000000000}},"30013427":{"solarSystemId":30013427,"solarSystemName":"D:I87S","location":{"x":-11100000000000000000,"y":708000000000000000,"z":-7630000000000000000}},"30013428":{"solarSystemId":30013428,"solarSystemName":"M:18V4","location":{"x":-11100000000000000000,"y":767000000000000000,"z":-7570000000000000000}},"30013429":{"solarSystemId":30013429,"solarSystemName":"F:237S","location":{"x":-11100000000000000000,"y":673000000000000000,"z":-7560000000000000000}},"30013430":{"solarSystemId":30013430,"solarSystemName":"G:3868","location":{"x":-11100000000000000000,"y":619000000000000000,"z":-7590000000000000000}},"30013431":{"solarSystemId":30013431,"solarSystemName":"P:43N2","location":{"x":-11000000000000000000,"y":640000000000000000,"z":-7650000000000000000}},"30013432":{"solarSystemId":30013432,"solarSystemName":"G:29LS","location":{"x":-11100000000000000000,"y":623000000000000000,"z":-7570000000000000000}},"30013433":{"solarSystemId":30013433,"solarSystemName":"Q:E9AT","location":{"x":-10900000000000000000,"y":605000000000000000,"z":-7550000000000000000}},"30013434":{"solarSystemId":30013434,"solarSystemName":"G:1LO0","location":{"x":-11100000000000000000,"y":648000000000000000,"z":-7560000000000000000}},"30013435":{"solarSystemId":30013435,"solarSystemName":"U:22KV","location":{"x":-11000000000000000000,"y":601000000000000000,"z":-7510000000000000000}},"30013436":{"solarSystemId":30013436,"solarSystemName":"M:2O20","location":{"x":-10800000000000000000,"y":567000000000000000,"z":-7670000000000000000}},"30013437":{"solarSystemId":30013437,"solarSystemName":"J:2E25","location":{"x":-11000000000000000000,"y":581000000000000000,"z":-7560000000000000000}},"30013438":{"solarSystemId":30013438,"solarSystemName":"U:L3RV","location":{"x":-11000000000000000000,"y":650000000000000000,"z":-7690000000000000000}},"30013439":{"solarSystemId":30013439,"solarSystemName":"J:2I9I","location":{"x":-11100000000000000000,"y":729000000000000000,"z":-7580000000000000000}},"30013440":{"solarSystemId":30013440,"solarSystemName":"M:2O3V","location":{"x":-11000000000000000000,"y":651000000000000000,"z":-7620000000000000000}},"30013441":{"solarSystemId":30013441,"solarSystemName":"Q:TKKS","location":{"x":-11000000000000000000,"y":706000000000000000,"z":-7760000000000000000}},"30013442":{"solarSystemId":30013442,"solarSystemName":"H:30T9","location":{"x":-11200000000000000000,"y":539000000000000000,"z":-7290000000000000000}},"30013443":{"solarSystemId":30013443,"solarSystemName":"B:304R","location":{"x":-11100000000000000000,"y":550000000000000000,"z":-7280000000000000000}},"30013444":{"solarSystemId":30013444,"solarSystemName":"G:12LL","location":{"x":-11200000000000000000,"y":529000000000000000,"z":-7240000000000000000}},"30013445":{"solarSystemId":30013445,"solarSystemName":"Y:1LR3","location":{"x":-11100000000000000000,"y":621000000000000000,"z":-7320000000000000000}},"30013446":{"solarSystemId":30013446,"solarSystemName":"Y:1K2O","location":{"x":-11100000000000000000,"y":604000000000000000,"z":-7290000000000000000}},"30013447":{"solarSystemId":30013447,"solarSystemName":"F:4946","location":{"x":-11100000000000000000,"y":559000000000000000,"z":-7330000000000000000}},"30013448":{"solarSystemId":30013448,"solarSystemName":"G:R3KE","location":{"x":-11100000000000000000,"y":563000000000000000,"z":-7270000000000000000}},"30013449":{"solarSystemId":30013449,"solarSystemName":"Y:2IKT","location":{"x":-11200000000000000000,"y":511000000000000000,"z":-7230000000000000000}},"30013450":{"solarSystemId":30013450,"solarSystemName":"Q:31AV","location":{"x":-11100000000000000000,"y":554000000000000000,"z":-7260000000000000000}},"30013451":{"solarSystemId":30013451,"solarSystemName":"F:1IVR","location":{"x":-11200000000000000000,"y":556000000000000000,"z":-7280000000000000000}},"30013452":{"solarSystemId":30013452,"solarSystemName":"U:135O","location":{"x":-11200000000000000000,"y":518000000000000000,"z":-7230000000000000000}},"30013453":{"solarSystemId":30013453,"solarSystemName":"B:2KN4","location":{"x":-11200000000000000000,"y":529000000000000000,"z":-7260000000000000000}},"30013454":{"solarSystemId":30013454,"solarSystemName":"P:28E3","location":{"x":-11200000000000000000,"y":575000000000000000,"z":-7290000000000000000}},"30013455":{"solarSystemId":30013455,"solarSystemName":"H:2ER0","location":{"x":-11100000000000000000,"y":527000000000000000,"z":-7240000000000000000}},"30013456":{"solarSystemId":30013456,"solarSystemName":"Q:21AE","location":{"x":-11000000000000000000,"y":584000000000000000,"z":-7270000000000000000}},"30013457":{"solarSystemId":30013457,"solarSystemName":"G:T964","location":{"x":-11200000000000000000,"y":580000000000000000,"z":-7380000000000000000}},"30013458":{"solarSystemId":30013458,"solarSystemName":"J:1OA5","location":{"x":-11200000000000000000,"y":628000000000000000,"z":-7350000000000000000}},"30013459":{"solarSystemId":30013459,"solarSystemName":"Z:1R8I","location":{"x":-11100000000000000000,"y":548000000000000000,"z":-7310000000000000000}},"30013460":{"solarSystemId":30013460,"solarSystemName":"B:2A49","location":{"x":-11100000000000000000,"y":591000000000000000,"z":-7310000000000000000}},"30013461":{"solarSystemId":30013461,"solarSystemName":"D:3T2V","location":{"x":-4270000000000000000,"y":-191000000000000000,"z":-8370000000000000000}},"30013462":{"solarSystemId":30013462,"solarSystemName":"G:289I","location":{"x":-4590000000000000000,"y":577000000000000000,"z":-7550000000000000000}},"30013463":{"solarSystemId":30013463,"solarSystemName":"Q:1VNI","location":{"x":-4600000000000000000,"y":395000000000000000,"z":-7580000000000000000}},"30013464":{"solarSystemId":30013464,"solarSystemName":"P:1IL6","location":{"x":-5230000000000000000,"y":440000000000000000,"z":-7690000000000000000}},"30013465":{"solarSystemId":30013465,"solarSystemName":"F:4NE8","location":{"x":-4950000000000000000,"y":516000000000000000,"z":-6780000000000000000}},"30013466":{"solarSystemId":30013466,"solarSystemName":"F:3908","location":{"x":-3880000000000000000,"y":126000000000000000,"z":-7910000000000000000}},"30013467":{"solarSystemId":30013467,"solarSystemName":"F:13AV","location":{"x":-3740000000000000000,"y":-65100000000000000,"z":-7180000000000000000}},"30013468":{"solarSystemId":30013468,"solarSystemName":"Z:183T","location":{"x":-4700000000000000000,"y":730000000000000000,"z":-6530000000000000000}},"30013469":{"solarSystemId":30013469,"solarSystemName":"P:3S2R","location":{"x":-4290000000000000000,"y":10100000000000000,"z":-7510000000000000000}},"30013470":{"solarSystemId":30013470,"solarSystemName":"U:3SA0","location":{"x":-3720000000000000000,"y":172000000000000000,"z":-7200000000000000000}},"30013471":{"solarSystemId":30013471,"solarSystemName":"G:1K1O","location":{"x":-4780000000000000000,"y":473000000000000000,"z":-7230000000000000000}},"30013472":{"solarSystemId":30013472,"solarSystemName":"M:1S79","location":{"x":-4230000000000000000,"y":-120000000000000000,"z":-7240000000000000000}},"30013473":{"solarSystemId":30013473,"solarSystemName":"Q:36RK","location":{"x":-4170000000000000000,"y":-101000000000000000,"z":-6900000000000000000}},"30013474":{"solarSystemId":30013474,"solarSystemName":"H:36SR","location":{"x":-5170000000000000000,"y":154000000000000000,"z":-7770000000000000000}},"30013475":{"solarSystemId":30013475,"solarSystemName":"D:1966","location":{"x":-4610000000000000000,"y":1290000000000000000,"z":-8350000000000000000}},"30013476":{"solarSystemId":30013476,"solarSystemName":"Q:313O","location":{"x":-4790000000000000000,"y":25800000000000000,"z":-7450000000000000000}},"30013477":{"solarSystemId":30013477,"solarSystemName":"Y:1RT1","location":{"x":-4670000000000000000,"y":29900000000000000,"z":-8030000000000000000}},"30013478":{"solarSystemId":30013478,"solarSystemName":"P:37L5","location":{"x":-958000000000000000,"y":-105000000000000000,"z":-6880000000000000000}},"30013479":{"solarSystemId":30013479,"solarSystemName":"D:3NSN","location":{"x":495000000000000000,"y":-1570000000000000000,"z":-7650000000000000000}},"30013480":{"solarSystemId":30013480,"solarSystemName":"H:3O8O","location":{"x":-1790000000000000000,"y":281000000000000000,"z":-8480000000000000000}},"30013481":{"solarSystemId":30013481,"solarSystemName":"M:2510","location":{"x":-2150000000000000000,"y":-834000000000000000,"z":-8940000000000000000}},"30013482":{"solarSystemId":30013482,"solarSystemName":"Q:1TT7","location":{"x":-1650000000000000000,"y":-453000000000000000,"z":-6380000000000000000}},"30013483":{"solarSystemId":30013483,"solarSystemName":"Q:3S4T","location":{"x":-2060000000000000000,"y":-437000000000000000,"z":-7170000000000000000}},"30013484":{"solarSystemId":30013484,"solarSystemName":"M:2N99","location":{"x":-1180000000000000000,"y":-1560000000000000000,"z":-8000000000000000000}},"30013485":{"solarSystemId":30013485,"solarSystemName":"P:2R6V","location":{"x":-2150000000000000000,"y":-678000000000000000,"z":-6850000000000000000}},"30013486":{"solarSystemId":30013486,"solarSystemName":"P:3R1S","location":{"x":-1980000000000000000,"y":-644000000000000000,"z":-6840000000000000000}},"30013487":{"solarSystemId":30013487,"solarSystemName":"M:2AN9","location":{"x":-500000000000000000,"y":-690000000000000000,"z":-6970000000000000000}},"30013488":{"solarSystemId":30013488,"solarSystemName":"D:4A36","location":{"x":-2310000000000000000,"y":-1470000000000000000,"z":-6730000000000000000}},"30013489":{"solarSystemId":30013489,"solarSystemName":"F:2665","location":{"x":-1870000000000000000,"y":-583000000000000000,"z":-6520000000000000000}},"30013490":{"solarSystemId":30013490,"solarSystemName":"Q:1680","location":{"x":-689000000000000000,"y":-474000000000000000,"z":-6300000000000000000}},"30013491":{"solarSystemId":30013491,"solarSystemName":"J:2T34","location":{"x":-1530000000000000000,"y":-264000000000000000,"z":-6520000000000000000}},"30013492":{"solarSystemId":30013492,"solarSystemName":"Z:296N","location":{"x":-1770000000000000000,"y":1040000000000000000,"z":-8030000000000000000}},"30013493":{"solarSystemId":30013493,"solarSystemName":"Z:17N8","location":{"x":-1370000000000000000,"y":214000000000000000,"z":-6580000000000000000}},"30013494":{"solarSystemId":30013494,"solarSystemName":"B:2N69","location":{"x":-1720000000000000000,"y":543000000000000000,"z":-7730000000000000000}},"30013495":{"solarSystemId":30013495,"solarSystemName":"H:ITO1","location":{"x":-1400000000000000000,"y":692000000000000000,"z":-7530000000000000000}},"30013496":{"solarSystemId":30013496,"solarSystemName":"Z:IAO5","location":{"x":-1710000000000000000,"y":726000000000000000,"z":-7230000000000000000}},"30013497":{"solarSystemId":30013497,"solarSystemName":"B:17AK","location":{"x":-1400000000000000000,"y":1400000000000000000,"z":-7750000000000000000}},"30013498":{"solarSystemId":30013498,"solarSystemName":"Q:1T9V","location":{"x":-1410000000000000000,"y":20100000000000000,"z":-6960000000000000000}},"30013499":{"solarSystemId":30013499,"solarSystemName":"Z:3OI9","location":{"x":-1440000000000000000,"y":1280000000000000000,"z":-8060000000000000000}},"30013500":{"solarSystemId":30013500,"solarSystemName":"D:2VL1","location":{"x":-1300000000000000000,"y":153000000000000000,"z":-6940000000000000000}},"30013501":{"solarSystemId":30013501,"solarSystemName":"Y:TIAE","location":{"x":-1450000000000000000,"y":1390000000000000000,"z":-7720000000000000000}},"30013502":{"solarSystemId":30013502,"solarSystemName":"Y:3RV2","location":{"x":-2500000000000000000,"y":-59900000000000000,"z":-6850000000000000000}},"30013503":{"solarSystemId":30013503,"solarSystemName":"D:1EIS","location":{"x":-1950000000000000000,"y":563000000000000000,"z":-7040000000000000000}},"30013504":{"solarSystemId":30013504,"solarSystemName":"P:1NII","location":{"x":-2330000000000000000,"y":174000000000000000,"z":-7200000000000000000}},"30013505":{"solarSystemId":30013505,"solarSystemName":"Y:2171","location":{"x":-2780000000000000000,"y":951000000000000000,"z":-6970000000000000000}},"30013506":{"solarSystemId":30013506,"solarSystemName":"D:37OT","location":{"x":-2530000000000000000,"y":225000000000000000,"z":-6630000000000000000}},"30013507":{"solarSystemId":30013507,"solarSystemName":"H:3NN6","location":{"x":-2310000000000000000,"y":1260000000000000000,"z":-7060000000000000000}},"30013508":{"solarSystemId":30013508,"solarSystemName":"Z:392L","location":{"x":-1580000000000000000,"y":2480000000000000000,"z":-9600000000000000000}},"30013509":{"solarSystemId":30013509,"solarSystemName":"D:3R0N","location":{"x":-1410000000000000000,"y":2340000000000000000,"z":-9660000000000000000}},"30013510":{"solarSystemId":30013510,"solarSystemName":"G:I4T9","location":{"x":-2070000000000000000,"y":2540000000000000000,"z":-11700000000000000000}},"30013511":{"solarSystemId":30013511,"solarSystemName":"F:2E03","location":{"x":-2850000000000000000,"y":1800000000000000000,"z":-10200000000000000000}},"30013512":{"solarSystemId":30013512,"solarSystemName":"Q:123V","location":{"x":85100000000000000,"y":1660000000000000000,"z":-10200000000000000000}},"30013513":{"solarSystemId":30013513,"solarSystemName":"G:361N","location":{"x":-2420000000000000000,"y":2520000000000000000,"z":-10300000000000000000}},"30013514":{"solarSystemId":30013514,"solarSystemName":"J:3RT9","location":{"x":-1780000000000000000,"y":1170000000000000000,"z":-10300000000000000000}},"30013515":{"solarSystemId":30013515,"solarSystemName":"H:1V5O","location":{"x":653000000000000000,"y":2090000000000000000,"z":-10200000000000000000}},"30013516":{"solarSystemId":30013516,"solarSystemName":"Q:N0E6","location":{"x":-59800000000000000,"y":2700000000000000000,"z":-9730000000000000000}},"30013517":{"solarSystemId":30013517,"solarSystemName":"F:S309","location":{"x":-1900000000000000000,"y":858000000000000000,"z":-9480000000000000000}},"30013518":{"solarSystemId":30013518,"solarSystemName":"F:1SSR","location":{"x":536000000000000000,"y":2650000000000000000,"z":-9040000000000000000}},"30013519":{"solarSystemId":30013519,"solarSystemName":"H:39E9","location":{"x":-1100000000000000000,"y":-421000000000000000,"z":-10100000000000000000}},"30013520":{"solarSystemId":30013520,"solarSystemName":"B:428T","location":{"x":-1150000000000000000,"y":585000000000000000,"z":-9980000000000000000}},"30013521":{"solarSystemId":30013521,"solarSystemName":"J:47O2","location":{"x":-930000000000000000,"y":-552000000000000000,"z":-10000000000000000000}},"30013522":{"solarSystemId":30013522,"solarSystemName":"P:1E80","location":{"x":-1700000000000000000,"y":64700000000000000,"z":-8980000000000000000}},"30013523":{"solarSystemId":30013523,"solarSystemName":"Z:39LN","location":{"x":-286000000000000000,"y":-355000000000000000,"z":-10800000000000000000}},"30013524":{"solarSystemId":30013524,"solarSystemName":"J:1E39","location":{"x":-2000000000000000000,"y":126000000000000000,"z":-9170000000000000000}},"30013525":{"solarSystemId":30013525,"solarSystemName":"U:31E6","location":{"x":-140000000000000000,"y":-322000000000000000,"z":-10400000000000000000}},"30013526":{"solarSystemId":30013526,"solarSystemName":"M:20T1","location":{"x":-1400000000000000000,"y":-93400000000000000,"z":-9240000000000000000}},"30013527":{"solarSystemId":30013527,"solarSystemName":"Y:285T","location":{"x":-1530000000000000000,"y":840000000000000000,"z":-10700000000000000000}},"30013528":{"solarSystemId":30013528,"solarSystemName":"B:1OS5","location":{"x":-2390000000000000000,"y":-136000000000000000,"z":-9350000000000000000}},"30013529":{"solarSystemId":30013529,"solarSystemName":"B:20TR","location":{"x":-1290000000000000000,"y":-94800000000000000,"z":-10500000000000000000}},"30013530":{"solarSystemId":30013530,"solarSystemName":"D:2I4N","location":{"x":-1600000000000000000,"y":77300000000000000,"z":-9220000000000000000}},"30013531":{"solarSystemId":30013531,"solarSystemName":"M:22AI","location":{"x":-1150000000000000000,"y":-227000000000000000,"z":-9680000000000000000}},"30013532":{"solarSystemId":30013532,"solarSystemName":"Y:E965","location":{"x":-258000000000000000,"y":-837000000000000000,"z":-10300000000000000000}},"30013533":{"solarSystemId":30013533,"solarSystemName":"U:2OA9","location":{"x":-3390000000000000000,"y":2700000000000000000,"z":-7340000000000000000}},"30013534":{"solarSystemId":30013534,"solarSystemName":"H:3E6T","location":{"x":-2890000000000000000,"y":2230000000000000000,"z":-6880000000000000000}},"30013535":{"solarSystemId":30013535,"solarSystemName":"H:2147","location":{"x":-3930000000000000000,"y":1620000000000000000,"z":-7780000000000000000}},"30013536":{"solarSystemId":30013536,"solarSystemName":"H:4566","location":{"x":-3940000000000000000,"y":2340000000000000000,"z":-7920000000000000000}},"30013537":{"solarSystemId":30013537,"solarSystemName":"U:3783","location":{"x":-3050000000000000000,"y":3100000000000000000,"z":-7510000000000000000}},"30013538":{"solarSystemId":30013538,"solarSystemName":"H:24VV","location":{"x":-3170000000000000000,"y":2530000000000000000,"z":-7240000000000000000}},"30013539":{"solarSystemId":30013539,"solarSystemName":"G:357V","location":{"x":-2180000000000000000,"y":2000000000000000000,"z":-8200000000000000000}},"30013540":{"solarSystemId":30013540,"solarSystemName":"Z:4923","location":{"x":-2910000000000000000,"y":1010000000000000000,"z":-7780000000000000000}},"30013541":{"solarSystemId":30013541,"solarSystemName":"F:36RV","location":{"x":-2560000000000000000,"y":2500000000000000000,"z":-6670000000000000000}},"30013542":{"solarSystemId":30013542,"solarSystemName":"P:1LAS","location":{"x":-2800000000000000000,"y":1200000000000000000,"z":-7760000000000000000}},"30013543":{"solarSystemId":30013543,"solarSystemName":"P:3RS6","location":{"x":-3560000000000000000,"y":2720000000000000000,"z":-6350000000000000000}},"30013544":{"solarSystemId":30013544,"solarSystemName":"Q:2840","location":{"x":-2220000000000000000,"y":1300000000000000000,"z":-8150000000000000000}},"30013545":{"solarSystemId":30013545,"solarSystemName":"Y:3O98","location":{"x":-2220000000000000000,"y":1700000000000000000,"z":-8850000000000000000}},"30013546":{"solarSystemId":30013546,"solarSystemName":"F:NVVE","location":{"x":-2110000000000000000,"y":269000000000000000,"z":-9140000000000000000}},"30013547":{"solarSystemId":30013547,"solarSystemName":"U:2T48","location":{"x":-3450000000000000000,"y":903000000000000000,"z":-8550000000000000000}},"30013548":{"solarSystemId":30013548,"solarSystemName":"M:2005","location":{"x":-3160000000000000000,"y":2320000000000000000,"z":-9320000000000000000}},"30013549":{"solarSystemId":30013549,"solarSystemName":"B:1SN6","location":{"x":-4270000000000000000,"y":450000000000000000,"z":-8710000000000000000}},"30013550":{"solarSystemId":30013550,"solarSystemName":"P:3RV6","location":{"x":-1740000000000000000,"y":1140000000000000000,"z":-8510000000000000000}},"30013551":{"solarSystemId":30013551,"solarSystemName":"Y:L10A","location":{"x":-3810000000000000000,"y":701000000000000000,"z":-8500000000000000000}},"30013552":{"solarSystemId":30013552,"solarSystemName":"G:L5RR","location":{"x":-4030000000000000000,"y":383000000000000000,"z":-8750000000000000000}},"30013553":{"solarSystemId":30013553,"solarSystemName":"M:3067","location":{"x":-2070000000000000000,"y":-29600000000000000,"z":-8810000000000000000}},"30013554":{"solarSystemId":30013554,"solarSystemName":"P:3R1L","location":{"x":-2780000000000000000,"y":392000000000000000,"z":-9730000000000000000}},"30013555":{"solarSystemId":30013555,"solarSystemName":"Q:O85I","location":{"x":-3290000000000000000,"y":1460000000000000000,"z":-9030000000000000000}},"30013556":{"solarSystemId":30013556,"solarSystemName":"D:238E","location":{"x":-2250000000000000000,"y":921000000000000000,"z":-8610000000000000000}},"30013557":{"solarSystemId":30013557,"solarSystemName":"G:35SN","location":{"x":-2450000000000000000,"y":27600000000000000,"z":-9160000000000000000}},"30013558":{"solarSystemId":30013558,"solarSystemName":"Q:1T22","location":{"x":-2760000000000000000,"y":62800000000000000,"z":-9180000000000000000}},"30013559":{"solarSystemId":30013559,"solarSystemName":"B:3OS2","location":{"x":-3730000000000000000,"y":407000000000000000,"z":-10100000000000000000}},"30013560":{"solarSystemId":30013560,"solarSystemName":"G:2L5I","location":{"x":-3600000000000000000,"y":-254000000000000000,"z":-7610000000000000000}},"30013561":{"solarSystemId":30013561,"solarSystemName":"J:340E","location":{"x":-2880000000000000000,"y":-952000000000000000,"z":-9040000000000000000}},"30013562":{"solarSystemId":30013562,"solarSystemName":"H:3AIS","location":{"x":-3630000000000000000,"y":128000000000000000,"z":-8160000000000000000}},"30013563":{"solarSystemId":30013563,"solarSystemName":"J:3S7T","location":{"x":-2890000000000000000,"y":392000000000000000,"z":-7850000000000000000}},"30013564":{"solarSystemId":30013564,"solarSystemName":"F:39NE","location":{"x":-3340000000000000000,"y":-436000000000000000,"z":-7970000000000000000}},"30013565":{"solarSystemId":30013565,"solarSystemName":"M:33T4","location":{"x":-2930000000000000000,"y":-533000000000000000,"z":-8090000000000000000}},"30013566":{"solarSystemId":30013566,"solarSystemName":"F:N612","location":{"x":-3990000000000000000,"y":-329000000000000000,"z":-8180000000000000000}},"30013567":{"solarSystemId":30013567,"solarSystemName":"G:10A7","location":{"x":-3720000000000000000,"y":-515000000000000000,"z":-8170000000000000000}},"30013568":{"solarSystemId":30013568,"solarSystemName":"F:347L","location":{"x":-3320000000000000000,"y":149000000000000000,"z":-8470000000000000000}},"30013569":{"solarSystemId":30013569,"solarSystemName":"M:1V2R","location":{"x":-3920000000000000000,"y":40700000000000000,"z":-8620000000000000000}},"30013570":{"solarSystemId":30013570,"solarSystemName":"Y:25N8","location":{"x":-3030000000000000000,"y":-298000000000000000,"z":-7060000000000000000}},"30013571":{"solarSystemId":30013571,"solarSystemName":"J:3512","location":{"x":-3410000000000000000,"y":-730000000000000000,"z":-8380000000000000000}},"30013572":{"solarSystemId":30013572,"solarSystemName":"H:2TS6","location":{"x":-2560000000000000000,"y":446000000000000000,"z":-8070000000000000000}},"30013573":{"solarSystemId":30013573,"solarSystemName":"Q:2K8L","location":{"x":-3040000000000000000,"y":52400000000000000,"z":-7470000000000000000}},"30013574":{"solarSystemId":30013574,"solarSystemName":"H:3IK1","location":{"x":-3030000000000000000,"y":-498000000000000000,"z":-8310000000000000000}},"30013575":{"solarSystemId":30013575,"solarSystemName":"M:19L3","location":{"x":-3110000000000000000,"y":606000000000000000,"z":-7980000000000000000}},"30013576":{"solarSystemId":30013576,"solarSystemName":"J:1E2K","location":{"x":-11700000000000000000,"y":-569000000000000000,"z":-17700000000000000000}},"30013577":{"solarSystemId":30013577,"solarSystemName":"P:389N","location":{"x":-11100000000000000000,"y":801000000000000000,"z":-16600000000000000000}},"30013578":{"solarSystemId":30013578,"solarSystemName":"Q:3566","location":{"x":-13200000000000000000,"y":2380000000000000000,"z":-18500000000000000000}},"30013579":{"solarSystemId":30013579,"solarSystemName":"U:1083","location":{"x":-11300000000000000000,"y":-351000000000000000,"z":-16500000000000000000}},"30013580":{"solarSystemId":30013580,"solarSystemName":"G:50RV","location":{"x":-11700000000000000000,"y":-642000000000000000,"z":-16100000000000000000}},"30013581":{"solarSystemId":30013581,"solarSystemName":"Q:VO9S","location":{"x":-11400000000000000000,"y":-678000000000000000,"z":-15800000000000000000}},"30013582":{"solarSystemId":30013582,"solarSystemName":"G:37SK","location":{"x":-10700000000000000000,"y":-412000000000000000,"z":-16400000000000000000}},"30013583":{"solarSystemId":30013583,"solarSystemName":"D:3S97","location":{"x":-11600000000000000000,"y":-877000000000000000,"z":-17500000000000000000}},"30013584":{"solarSystemId":30013584,"solarSystemName":"D:2O39","location":{"x":-13200000000000000000,"y":1970000000000000000,"z":-18400000000000000000}},"30013585":{"solarSystemId":30013585,"solarSystemName":"Q:2944","location":{"x":-13000000000000000000,"y":-370000000000000000,"z":-16200000000000000000}},"30013586":{"solarSystemId":30013586,"solarSystemName":"B:1148","location":{"x":-11300000000000000000,"y":-1000000000000000000,"z":-16200000000000000000}},"30013587":{"solarSystemId":30013587,"solarSystemName":"H:2T0E","location":{"x":-12000000000000000000,"y":753000000000000000,"z":-15400000000000000000}},"30013588":{"solarSystemId":30013588,"solarSystemName":"G:475N","location":{"x":-10900000000000000000,"y":1420000000000000000,"z":-14300000000000000000}},"30013589":{"solarSystemId":30013589,"solarSystemName":"M:2O49","location":{"x":-12000000000000000000,"y":1940000000000000000,"z":-13300000000000000000}},"30013590":{"solarSystemId":30013590,"solarSystemName":"H:KV22","location":{"x":-11600000000000000000,"y":1330000000000000000,"z":-13800000000000000000}},"30013591":{"solarSystemId":30013591,"solarSystemName":"P:11E8","location":{"x":-11300000000000000000,"y":162000000000000000,"z":-15700000000000000000}},"30013592":{"solarSystemId":30013592,"solarSystemName":"Z:1VVK","location":{"x":-10800000000000000000,"y":1430000000000000000,"z":-14200000000000000000}},"30013593":{"solarSystemId":30013593,"solarSystemName":"B:35S7","location":{"x":-11700000000000000000,"y":1350000000000000000,"z":-14600000000000000000}},"30013594":{"solarSystemId":30013594,"solarSystemName":"U:29A4","location":{"x":-11300000000000000000,"y":-234000000000000000,"z":-16000000000000000000}},"30013595":{"solarSystemId":30013595,"solarSystemName":"P:1S48","location":{"x":-11900000000000000000,"y":1500000000000000000,"z":-13800000000000000000}},"30013596":{"solarSystemId":30013596,"solarSystemName":"G:1LAV","location":{"x":-12100000000000000000,"y":1870000000000000000,"z":-13600000000000000000}},"30013597":{"solarSystemId":30013597,"solarSystemName":"Y:2N9L","location":{"x":-12300000000000000000,"y":751000000000000000,"z":-14900000000000000000}},"30013598":{"solarSystemId":30013598,"solarSystemName":"Q:2EVV","location":{"x":-11500000000000000000,"y":1230000000000000000,"z":-13700000000000000000}},"30013599":{"solarSystemId":30013599,"solarSystemName":"U:LI62","location":{"x":-11800000000000000000,"y":1860000000000000000,"z":-14400000000000000000}},"30013600":{"solarSystemId":30013600,"solarSystemName":"Q:1NEK","location":{"x":-11300000000000000000,"y":709000000000000000,"z":-11500000000000000000}},"30013601":{"solarSystemId":30013601,"solarSystemName":"H:22IT","location":{"x":-10900000000000000000,"y":145000000000000000,"z":-12600000000000000000}},"30013602":{"solarSystemId":30013602,"solarSystemName":"U:23E5","location":{"x":-12100000000000000000,"y":1420000000000000000,"z":-11500000000000000000}},"30013603":{"solarSystemId":30013603,"solarSystemName":"F:1R7S","location":{"x":-12400000000000000000,"y":1090000000000000000,"z":-12200000000000000000}},"30013604":{"solarSystemId":30013604,"solarSystemName":"P:OL0N","location":{"x":-11100000000000000000,"y":586000000000000000,"z":-11800000000000000000}},"30013605":{"solarSystemId":30013605,"solarSystemName":"P:2892","location":{"x":-13000000000000000000,"y":1710000000000000000,"z":-12200000000000000000}},"30013606":{"solarSystemId":30013606,"solarSystemName":"Z:2I92","location":{"x":-11900000000000000000,"y":1650000000000000000,"z":-11500000000000000000}},"30013607":{"solarSystemId":30013607,"solarSystemName":"J:KTN3","location":{"x":-12500000000000000000,"y":1160000000000000000,"z":-11500000000000000000}},"30013608":{"solarSystemId":30013608,"solarSystemName":"H:1O9I","location":{"x":-10900000000000000000,"y":784000000000000000,"z":-11300000000000000000}},"30013609":{"solarSystemId":30013609,"solarSystemName":"G:39NT","location":{"x":-11700000000000000000,"y":979000000000000000,"z":-10800000000000000000}},"30013610":{"solarSystemId":30013610,"solarSystemName":"M:1T0A","location":{"x":-11600000000000000000,"y":941000000000000000,"z":-11700000000000000000}},"30013611":{"solarSystemId":30013611,"solarSystemName":"H:3NNK","location":{"x":-11200000000000000000,"y":541000000000000000,"z":-11900000000000000000}},"30013612":{"solarSystemId":30013612,"solarSystemName":"H:2L88","location":{"x":-11500000000000000000,"y":874000000000000000,"z":-12300000000000000000}},"30013613":{"solarSystemId":30013613,"solarSystemName":"P:175K","location":{"x":-11100000000000000000,"y":522000000000000000,"z":-11800000000000000000}},"30013614":{"solarSystemId":30013614,"solarSystemName":"H:3R78","location":{"x":-12000000000000000000,"y":1260000000000000000,"z":-12400000000000000000}},"30013615":{"solarSystemId":30013615,"solarSystemName":"Z:2313","location":{"x":-12200000000000000000,"y":545000000000000000,"z":-11900000000000000000}},"30013616":{"solarSystemId":30013616,"solarSystemName":"F:2TT9","location":{"x":-12400000000000000000,"y":-2910000000000000000,"z":-12700000000000000000}},"30013617":{"solarSystemId":30013617,"solarSystemName":"J:3EAR","location":{"x":-12300000000000000000,"y":-2620000000000000000,"z":-13300000000000000000}},"30013618":{"solarSystemId":30013618,"solarSystemName":"F:1R14","location":{"x":-13000000000000000000,"y":-1060000000000000000,"z":-12200000000000000000}},"30013619":{"solarSystemId":30013619,"solarSystemName":"B:3ER2","location":{"x":-13600000000000000000,"y":15200000000000000,"z":-12500000000000000000}},"30013620":{"solarSystemId":30013620,"solarSystemName":"Q:1K5O","location":{"x":-13300000000000000000,"y":-328000000000000000,"z":-12300000000000000000}},"30013621":{"solarSystemId":30013621,"solarSystemName":"B:1588","location":{"x":-13900000000000000000,"y":-1150000000000000000,"z":-12200000000000000000}},"30013622":{"solarSystemId":30013622,"solarSystemName":"Y:1E73","location":{"x":-12100000000000000000,"y":-1490000000000000000,"z":-15500000000000000000}},"30013623":{"solarSystemId":30013623,"solarSystemName":"D:2STS","location":{"x":-12900000000000000000,"y":-440000000000000000,"z":-12300000000000000000}},"30013624":{"solarSystemId":30013624,"solarSystemName":"H:125A","location":{"x":-11700000000000000000,"y":-807000000000000000,"z":-12400000000000000000}},"30013625":{"solarSystemId":30013625,"solarSystemName":"P:22AS","location":{"x":-13100000000000000000,"y":-1200000000000000000,"z":-13600000000000000000}},"30013626":{"solarSystemId":30013626,"solarSystemName":"H:26AA","location":{"x":-10800000000000000000,"y":1230000000000000000,"z":-11900000000000000000}},"30013627":{"solarSystemId":30013627,"solarSystemName":"B:25K3","location":{"x":-9730000000000000000,"y":1280000000000000000,"z":-12500000000000000000}},"30013628":{"solarSystemId":30013628,"solarSystemName":"P:207K","location":{"x":-10500000000000000000,"y":602000000000000000,"z":-11800000000000000000}},"30013629":{"solarSystemId":30013629,"solarSystemName":"F:249K","location":{"x":-9630000000000000000,"y":864000000000000000,"z":-11800000000000000000}},"30013630":{"solarSystemId":30013630,"solarSystemName":"P:25SK","location":{"x":-9530000000000000000,"y":1480000000000000000,"z":-12500000000000000000}},"30013631":{"solarSystemId":30013631,"solarSystemName":"Q:2TN8","location":{"x":-10900000000000000000,"y":1490000000000000000,"z":-11600000000000000000}},"30013632":{"solarSystemId":30013632,"solarSystemName":"Brana","location":{"x":-10200000000000000000,"y":1230000000000000000,"z":-12100000000000000000}},"30013633":{"solarSystemId":30013633,"solarSystemName":"P:K5KI","location":{"x":-9660000000000000000,"y":946000000000000000,"z":-11400000000000000000}},"30013634":{"solarSystemId":30013634,"solarSystemName":"F:37SA","location":{"x":-10600000000000000000,"y":1340000000000000000,"z":-11700000000000000000}},"30013635":{"solarSystemId":30013635,"solarSystemName":"U:23IS","location":{"x":-9360000000000000000,"y":1220000000000000000,"z":-12600000000000000000}},"30013636":{"solarSystemId":30013636,"solarSystemName":"B:3I63","location":{"x":-10300000000000000000,"y":1820000000000000000,"z":-12100000000000000000}},"30013637":{"solarSystemId":30013637,"solarSystemName":"Q:1A5O","location":{"x":-9390000000000000000,"y":806000000000000000,"z":-12200000000000000000}},"30013638":{"solarSystemId":30013638,"solarSystemName":"U:V4L2","location":{"x":-10200000000000000000,"y":513000000000000000,"z":-12000000000000000000}},"30013639":{"solarSystemId":30013639,"solarSystemName":"J:2O6T","location":{"x":-10100000000000000000,"y":1170000000000000000,"z":-11600000000000000000}},"30013640":{"solarSystemId":30013640,"solarSystemName":"Y:12EE","location":{"x":-10700000000000000000,"y":758000000000000000,"z":-13100000000000000000}},"30013641":{"solarSystemId":30013641,"solarSystemName":"M:223S","location":{"x":-10600000000000000000,"y":2400000000000000000,"z":-14300000000000000000}},"30013642":{"solarSystemId":30013642,"solarSystemName":"B:22VV","location":{"x":-10500000000000000000,"y":1240000000000000000,"z":-15600000000000000000}},"30013643":{"solarSystemId":30013643,"solarSystemName":"D:24NA","location":{"x":-10300000000000000000,"y":1950000000000000000,"z":-14600000000000000000}},"30013644":{"solarSystemId":30013644,"solarSystemName":"Y:3VN9","location":{"x":-10200000000000000000,"y":1670000000000000000,"z":-15200000000000000000}},"30013645":{"solarSystemId":30013645,"solarSystemName":"M:297N","location":{"x":-10600000000000000000,"y":2320000000000000000,"z":-13500000000000000000}},"30013646":{"solarSystemId":30013646,"solarSystemName":"F:32SO","location":{"x":-10700000000000000000,"y":1690000000000000000,"z":-13600000000000000000}},"30013647":{"solarSystemId":30013647,"solarSystemName":"U:35KE","location":{"x":-10600000000000000000,"y":1670000000000000000,"z":-13200000000000000000}},"30013648":{"solarSystemId":30013648,"solarSystemName":"Z:1T92","location":{"x":-10300000000000000000,"y":1190000000000000000,"z":-14300000000000000000}},"30013649":{"solarSystemId":30013649,"solarSystemName":"F:231E","location":{"x":-11000000000000000000,"y":1320000000000000000,"z":-13300000000000000000}},"30013650":{"solarSystemId":30013650,"solarSystemName":"P:1N09","location":{"x":-8930000000000000000,"y":1150000000000000000,"z":-14300000000000000000}},"30013651":{"solarSystemId":30013651,"solarSystemName":"M:30E5","location":{"x":-10200000000000000000,"y":655000000000000000,"z":-13300000000000000000}},"30013652":{"solarSystemId":30013652,"solarSystemName":"J:261S","location":{"x":-10500000000000000000,"y":-852000000000000000,"z":-14300000000000000000}},"30013653":{"solarSystemId":30013653,"solarSystemName":"U:225S","location":{"x":-10500000000000000000,"y":-389000000000000000,"z":-14900000000000000000}},"30013654":{"solarSystemId":30013654,"solarSystemName":"Z:1RIN","location":{"x":-10400000000000000000,"y":-627000000000000000,"z":-14900000000000000000}},"30013655":{"solarSystemId":30013655,"solarSystemName":"Z:27K0","location":{"x":-10600000000000000000,"y":424000000000000000,"z":-15600000000000000000}},"30013656":{"solarSystemId":30013656,"solarSystemName":"H:33KS","location":{"x":-10000000000000000000,"y":757000000000000000,"z":-14100000000000000000}},"30013657":{"solarSystemId":30013657,"solarSystemName":"P:3A24","location":{"x":-10500000000000000000,"y":-301000000000000000,"z":-14100000000000000000}},"30013658":{"solarSystemId":30013658,"solarSystemName":"D:398L","location":{"x":-11000000000000000000,"y":-1570000000000000,"z":-14800000000000000000}},"30013659":{"solarSystemId":30013659,"solarSystemName":"Y:1IIK","location":{"x":-9590000000000000000,"y":-503000000000000000,"z":-14400000000000000000}},"30013660":{"solarSystemId":30013660,"solarSystemName":"G:TS8L","location":{"x":-9900000000000000000,"y":-68100000000000000,"z":-14800000000000000000}},"30013661":{"solarSystemId":30013661,"solarSystemName":"Y:1KTI","location":{"x":-9940000000000000000,"y":227000000000000000,"z":-14400000000000000000}},"30013662":{"solarSystemId":30013662,"solarSystemName":"D:12N4","location":{"x":-9310000000000000000,"y":-482000000000000000,"z":-14000000000000000000}},"30013663":{"solarSystemId":30013663,"solarSystemName":"G:1076","location":{"x":-9570000000000000000,"y":-649000000000000000,"z":-13400000000000000000}},"30013664":{"solarSystemId":30013664,"solarSystemName":"F:31T3","location":{"x":-10500000000000000000,"y":-238000000000000000,"z":-14500000000000000000}},"30013665":{"solarSystemId":30013665,"solarSystemName":"Q:21T5","location":{"x":-10300000000000000000,"y":108000000000000000,"z":-14600000000000000000}},"30013666":{"solarSystemId":30013666,"solarSystemName":"D:3544","location":{"x":-9860000000000000000,"y":72200000000000000,"z":-14100000000000000000}},"30013667":{"solarSystemId":30013667,"solarSystemName":"B:3IOE","location":{"x":-11300000000000000000,"y":-586000000000000000,"z":-14800000000000000000}},"30013668":{"solarSystemId":30013668,"solarSystemName":"U:37O3","location":{"x":-10900000000000000000,"y":-809000000000000000,"z":-14300000000000000000}},"30013669":{"solarSystemId":30013669,"solarSystemName":"B:26IV","location":{"x":-10800000000000000000,"y":-483000000000000000,"z":-15500000000000000000}},"30013670":{"solarSystemId":30013670,"solarSystemName":"P:28IT","location":{"x":-12000000000000000000,"y":-644000000000000000,"z":-14700000000000000000}},"30013671":{"solarSystemId":30013671,"solarSystemName":"Y:1S43","location":{"x":-11200000000000000000,"y":-1170000000000000000,"z":-13200000000000000000}},"30013672":{"solarSystemId":30013672,"solarSystemName":"B:1IRR","location":{"x":-11400000000000000000,"y":-809000000000000000,"z":-13000000000000000000}},"30013673":{"solarSystemId":30013673,"solarSystemName":"B:3O3N","location":{"x":-11300000000000000000,"y":-595000000000000000,"z":-14400000000000000000}},"30013674":{"solarSystemId":30013674,"solarSystemName":"H:39RA","location":{"x":-11400000000000000000,"y":-607000000000000000,"z":-15700000000000000000}},"30013675":{"solarSystemId":30013675,"solarSystemName":"P:I6T8","location":{"x":-11100000000000000000,"y":-96400000000000000,"z":-12700000000000000000}},"30013676":{"solarSystemId":30013676,"solarSystemName":"P:3V24","location":{"x":-11300000000000000000,"y":-295000000000000000,"z":-14900000000000000000}},"30013677":{"solarSystemId":30013677,"solarSystemName":"D:210L","location":{"x":-11800000000000000000,"y":-1010000000000000000,"z":-13700000000000000000}},"30013678":{"solarSystemId":30013678,"solarSystemName":"Q:36O5","location":{"x":-11300000000000000000,"y":-97800000000000000,"z":-14100000000000000000}},"30013679":{"solarSystemId":30013679,"solarSystemName":"Z:2858","location":{"x":-11700000000000000000,"y":-743000000000000000,"z":-14700000000000000000}},"30013680":{"solarSystemId":30013680,"solarSystemName":"Q:13O8","location":{"x":-11900000000000000000,"y":-1570000000000000000,"z":-15100000000000000000}},"30013681":{"solarSystemId":30013681,"solarSystemName":"H:VVS2","location":{"x":-4850000000000000000,"y":120000000000000000,"z":-15600000000000000000}},"30013682":{"solarSystemId":30013682,"solarSystemName":"U:1R2O","location":{"x":-5590000000000000000,"y":-168000000000000000,"z":-15800000000000000000}},"30013683":{"solarSystemId":30013683,"solarSystemName":"U:256I","location":{"x":-4850000000000000000,"y":1300000000000000000,"z":-15400000000000000000}},"30013684":{"solarSystemId":30013684,"solarSystemName":"Y:41RV","location":{"x":-5150000000000000000,"y":-395000000000000000,"z":-15100000000000000000}},"30013685":{"solarSystemId":30013685,"solarSystemName":"Q:1V11","location":{"x":-5100000000000000000,"y":-476000000000000000,"z":-15300000000000000000}},"30013686":{"solarSystemId":30013686,"solarSystemName":"Z:20R0","location":{"x":-4490000000000000000,"y":727000000000000000,"z":-14300000000000000000}},"30013687":{"solarSystemId":30013687,"solarSystemName":"Z:125O","location":{"x":-5550000000000000000,"y":90700000000000000,"z":-16000000000000000000}},"30013688":{"solarSystemId":30013688,"solarSystemName":"B:RVOE","location":{"x":-4190000000000000000,"y":508000000000000000,"z":-15000000000000000000}},"30013689":{"solarSystemId":30013689,"solarSystemName":"H:1OS8","location":{"x":-5360000000000000000,"y":-410000000000000000,"z":-16000000000000000000}},"30013690":{"solarSystemId":30013690,"solarSystemName":"Z:18S7","location":{"x":-4820000000000000000,"y":880000000000000000,"z":-15700000000000000000}},"30013691":{"solarSystemId":30013691,"solarSystemName":"G:1OI1","location":{"x":-4760000000000000000,"y":1770000000000000000,"z":-15400000000000000000}},"30013692":{"solarSystemId":30013692,"solarSystemName":"M:16A7","location":{"x":-4730000000000000000,"y":404000000000000000,"z":-16900000000000000000}},"30013693":{"solarSystemId":30013693,"solarSystemName":"U:3SKI","location":{"x":-3680000000000000000,"y":1040000000000000000,"z":-16100000000000000000}},"30013694":{"solarSystemId":30013694,"solarSystemName":"M:R2A4","location":{"x":-3520000000000000000,"y":1170000000000000000,"z":-15500000000000000000}},"30013695":{"solarSystemId":30013695,"solarSystemName":"G:3E7E","location":{"x":-3280000000000000000,"y":728000000000000000,"z":-14800000000000000000}},"30013696":{"solarSystemId":30013696,"solarSystemName":"Q:1515","location":{"x":-4220000000000000000,"y":1330000000000000000,"z":-15500000000000000000}},"30013697":{"solarSystemId":30013697,"solarSystemName":"J:145O","location":{"x":-3750000000000000000,"y":1660000000000000000,"z":-15100000000000000000}},"30013698":{"solarSystemId":30013698,"solarSystemName":"Z:1T86","location":{"x":-3490000000000000000,"y":1170000000000000000,"z":-15700000000000000000}},"30013699":{"solarSystemId":30013699,"solarSystemName":"Q:1OEN","location":{"x":-3810000000000000000,"y":1180000000000000000,"z":-15900000000000000000}},"30013700":{"solarSystemId":30013700,"solarSystemName":"G:28IL","location":{"x":-4000000000000000000,"y":1000000000000000000,"z":-14900000000000000000}},"30013701":{"solarSystemId":30013701,"solarSystemName":"G:3NIO","location":{"x":-3700000000000000000,"y":1370000000000000000,"z":-16100000000000000000}},"30013702":{"solarSystemId":30013702,"solarSystemName":"B:3624","location":{"x":-3730000000000000000,"y":1090000000000000000,"z":-15900000000000000000}},"30013703":{"solarSystemId":30013703,"solarSystemName":"D:25SN","location":{"x":-3370000000000000000,"y":2310000000000000000,"z":-16800000000000000000}},"30013704":{"solarSystemId":30013704,"solarSystemName":"H:1L5S","location":{"x":-2290000000000000000,"y":2200000000000000000,"z":-17900000000000000000}},"30013705":{"solarSystemId":30013705,"solarSystemName":"G:102O","location":{"x":-2640000000000000000,"y":2340000000000000000,"z":-17400000000000000000}},"30013706":{"solarSystemId":30013706,"solarSystemName":"B:111N","location":{"x":-1730000000000000000,"y":1870000000000000000,"z":-16500000000000000000}},"30013707":{"solarSystemId":30013707,"solarSystemName":"Y:36SV","location":{"x":-2330000000000000000,"y":1830000000000000000,"z":-17500000000000000000}},"30013708":{"solarSystemId":30013708,"solarSystemName":"M:2KNV","location":{"x":-2130000000000000000,"y":1710000000000000000,"z":-17600000000000000000}},"30013709":{"solarSystemId":30013709,"solarSystemName":"B:232A","location":{"x":-2270000000000000000,"y":1710000000000000000,"z":-16300000000000000000}},"30013710":{"solarSystemId":30013710,"solarSystemName":"H:3O5R","location":{"x":-1930000000000000000,"y":1900000000000000000,"z":-17200000000000000000}},"30013711":{"solarSystemId":30013711,"solarSystemName":"G:2416","location":{"x":-6200000000000000000,"y":3300000000000000000,"z":-14200000000000000000}},"30013712":{"solarSystemId":30013712,"solarSystemName":"Q:3148","location":{"x":-4770000000000000000,"y":2300000000000000000,"z":-14400000000000000000}},"30013713":{"solarSystemId":30013713,"solarSystemName":"U:OII9","location":{"x":-4810000000000000000,"y":3140000000000000000,"z":-14700000000000000000}},"30013714":{"solarSystemId":30013714,"solarSystemName":"H:2131","location":{"x":-5160000000000000000,"y":2460000000000000000,"z":-14600000000000000000}},"30013715":{"solarSystemId":30013715,"solarSystemName":"P:180E","location":{"x":-6590000000000000000,"y":4570000000000000000,"z":-14400000000000000000}},"30013716":{"solarSystemId":30013716,"solarSystemName":"M:30LN","location":{"x":-6640000000000000000,"y":3700000000000000000,"z":-14800000000000000000}},"30013717":{"solarSystemId":30013717,"solarSystemName":"G:1OEL","location":{"x":-5610000000000000000,"y":3130000000000000000,"z":-15000000000000000000}},"30013718":{"solarSystemId":30013718,"solarSystemName":"G:3604","location":{"x":-5150000000000000000,"y":4070000000000000000,"z":-15600000000000000000}},"30013719":{"solarSystemId":30013719,"solarSystemName":"Q:2164","location":{"x":-4340000000000000000,"y":3180000000000000000,"z":-15600000000000000000}},"30013720":{"solarSystemId":30013720,"solarSystemName":"F:1A7R","location":{"x":-4260000000000000000,"y":2230000000000000000,"z":-16400000000000000000}},"30013721":{"solarSystemId":30013721,"solarSystemName":"M:2N79","location":{"x":-5550000000000000000,"y":3440000000000000000,"z":-16500000000000000000}},"30013722":{"solarSystemId":30013722,"solarSystemName":"B:1ENO","location":{"x":-6560000000000000000,"y":2680000000000000000,"z":-17100000000000000000}},"30013723":{"solarSystemId":30013723,"solarSystemName":"B:15E8","location":{"x":-4550000000000000000,"y":2840000000000000000,"z":-17600000000000000000}},"30013724":{"solarSystemId":30013724,"solarSystemName":"B:R7KA","location":{"x":-6640000000000000000,"y":2770000000000000000,"z":-17000000000000000000}},"30013725":{"solarSystemId":30013725,"solarSystemName":"U:17A8","location":{"x":-4460000000000000000,"y":2740000000000000000,"z":-15800000000000000000}},"30013726":{"solarSystemId":30013726,"solarSystemName":"G:34E2","location":{"x":-5200000000000000000,"y":3280000000000000000,"z":-17100000000000000000}},"30013727":{"solarSystemId":30013727,"solarSystemName":"H:3756","location":{"x":-5560000000000000000,"y":2820000000000000000,"z":-16900000000000000000}},"30013728":{"solarSystemId":30013728,"solarSystemName":"F:2TII","location":{"x":-3060000000000000000,"y":1260000000000000000,"z":-18500000000000000000}},"30013729":{"solarSystemId":30013729,"solarSystemName":"H:3A93","location":{"x":-3060000000000000000,"y":47200000000000000,"z":-16900000000000000000}},"30013730":{"solarSystemId":30013730,"solarSystemName":"Z:20NA","location":{"x":-3570000000000000000,"y":3120000000000000000,"z":-17700000000000000000}},"30013731":{"solarSystemId":30013731,"solarSystemName":"B:2RIE","location":{"x":-4050000000000000000,"y":1670000000000000000,"z":-19700000000000000000}},"30013732":{"solarSystemId":30013732,"solarSystemName":"M:KS6E","location":{"x":-2510000000000000000,"y":-450000000000000000,"z":-19200000000000000000}},"30013733":{"solarSystemId":30013733,"solarSystemName":"U:EEAO","location":{"x":-4050000000000000000,"y":1980000000000000000,"z":-17900000000000000000}},"30013734":{"solarSystemId":30013734,"solarSystemName":"P:I0I2","location":{"x":-4410000000000000000,"y":-79700000000000000,"z":-17600000000000000000}},"30013735":{"solarSystemId":30013735,"solarSystemName":"H:43E8","location":{"x":-3490000000000000000,"y":997000000000000000,"z":-16500000000000000000}},"30013736":{"solarSystemId":30013736,"solarSystemName":"B:3O05","location":{"x":-4180000000000000000,"y":87100000000000000,"z":-17000000000000000000}},"30013737":{"solarSystemId":30013737,"solarSystemName":"H:2KR7","location":{"x":-3400000000000000000,"y":891000000000000000,"z":-16400000000000000000}},"30013738":{"solarSystemId":30013738,"solarSystemName":"F:11OS","location":{"x":-3380000000000000000,"y":-467000000000000000,"z":-16200000000000000000}},"30013739":{"solarSystemId":30013739,"solarSystemName":"G:211O","location":{"x":-3250000000000000000,"y":23200000000000000,"z":-15000000000000000000}},"30013740":{"solarSystemId":30013740,"solarSystemName":"Q:1KRN","location":{"x":-3590000000000000000,"y":518000000000000000,"z":-14600000000000000000}},"30013741":{"solarSystemId":30013741,"solarSystemName":"H:3AOS","location":{"x":-3450000000000000000,"y":306000000000000000,"z":-14900000000000000000}},"30013742":{"solarSystemId":30013742,"solarSystemName":"Q:21TE","location":{"x":-2720000000000000000,"y":-453000000000000000,"z":-17000000000000000000}},"30013743":{"solarSystemId":30013743,"solarSystemName":"M:3VIV","location":{"x":-2020000000000000000,"y":805000000000000000,"z":-15400000000000000000}},"30013744":{"solarSystemId":30013744,"solarSystemName":"M:1TIK","location":{"x":-2860000000000000000,"y":33000000000000000,"z":-15400000000000000000}},"30013745":{"solarSystemId":30013745,"solarSystemName":"F:1V8S","location":{"x":-3610000000000000000,"y":-151000000000000000,"z":-16700000000000000000}},"30013746":{"solarSystemId":30013746,"solarSystemName":"B:3AS3","location":{"x":-2580000000000000000,"y":-97400000000000000,"z":-15700000000000000000}},"30013747":{"solarSystemId":30013747,"solarSystemName":"Q:289L","location":{"x":-5530000000000000000,"y":-317000000000000000,"z":-15000000000000000000}},"30013748":{"solarSystemId":30013748,"solarSystemName":"H:2I0A","location":{"x":-4080000000000000000,"y":1310000000000000000,"z":-13400000000000000000}},"30013749":{"solarSystemId":30013749,"solarSystemName":"G:196I","location":{"x":-5240000000000000000,"y":728000000000000000,"z":-14100000000000000000}},"30013750":{"solarSystemId":30013750,"solarSystemName":"J:O6E2","location":{"x":-4730000000000000000,"y":-108000000000000000,"z":-14500000000000000000}},"30013751":{"solarSystemId":30013751,"solarSystemName":"P:3A08","location":{"x":-3380000000000000000,"y":1050000000000000000,"z":-14200000000000000000}},"30013752":{"solarSystemId":30013752,"solarSystemName":"F:257N","location":{"x":-6280000000000000000,"y":532000000000000000,"z":-14100000000000000000}},"30013753":{"solarSystemId":30013753,"solarSystemName":"G:3I94","location":{"x":-4260000000000000000,"y":-212000000000000000,"z":-14900000000000000000}},"30013754":{"solarSystemId":30013754,"solarSystemName":"U:3R44","location":{"x":-5420000000000000000,"y":-577000000000000000,"z":-14400000000000000000}},"30013755":{"solarSystemId":30013755,"solarSystemName":"D:15RS","location":{"x":-5460000000000000000,"y":-535000000000000000,"z":-14800000000000000000}},"30013756":{"solarSystemId":30013756,"solarSystemName":"D:25OL","location":{"x":-5210000000000000000,"y":-438000000000000000,"z":-14700000000000000000}},"30013757":{"solarSystemId":30013757,"solarSystemName":"B:1N2V","location":{"x":-3820000000000000000,"y":1260000000000000000,"z":-14100000000000000000}},"30013758":{"solarSystemId":30013758,"solarSystemName":"H:2VE3","location":{"x":-4220000000000000000,"y":552000000000000000,"z":-14000000000000000000}},"30013759":{"solarSystemId":30013759,"solarSystemName":"F:37T7","location":{"x":-5420000000000000000,"y":640000000000000000,"z":-14400000000000000000}},"30013760":{"solarSystemId":30013760,"solarSystemName":"J:19R3","location":{"x":-4610000000000000000,"y":1450000000000000000,"z":-13800000000000000000}},"30013761":{"solarSystemId":30013761,"solarSystemName":"D:T4AL","location":{"x":-4010000000000000000,"y":138000000000000000,"z":-14200000000000000000}},"30013762":{"solarSystemId":30013762,"solarSystemName":"F:3I1E","location":{"x":-6750000000000000000,"y":1180000000000000000,"z":-8090000000000000000}},"30013763":{"solarSystemId":30013763,"solarSystemName":"H:1154","location":{"x":-6180000000000000000,"y":1090000000000000000,"z":-7310000000000000000}},"30013764":{"solarSystemId":30013764,"solarSystemName":"U:20TE","location":{"x":-6700000000000000000,"y":1400000000000000000,"z":-8300000000000000000}},"30013765":{"solarSystemId":30013765,"solarSystemName":"B:V1L4","location":{"x":-6560000000000000000,"y":1530000000000000000,"z":-7760000000000000000}},"30013766":{"solarSystemId":30013766,"solarSystemName":"F:2EEI","location":{"x":-6630000000000000000,"y":1630000000000000000,"z":-6990000000000000000}},"30013767":{"solarSystemId":30013767,"solarSystemName":"Z:1VTR","location":{"x":-6220000000000000000,"y":946000000000000000,"z":-6580000000000000000}},"30013768":{"solarSystemId":30013768,"solarSystemName":"G:44TL","location":{"x":-6720000000000000000,"y":1600000000000000000,"z":-7420000000000000000}},"30013769":{"solarSystemId":30013769,"solarSystemName":"D:1OS7","location":{"x":-6770000000000000000,"y":2510000000000000000,"z":-6890000000000000000}},"30013770":{"solarSystemId":30013770,"solarSystemName":"J:1I32","location":{"x":-6730000000000000000,"y":1300000000000000000,"z":-7870000000000000000}},"30013771":{"solarSystemId":30013771,"solarSystemName":"D:37T6","location":{"x":-6170000000000000000,"y":1830000000000000000,"z":-6540000000000000000}},"30013772":{"solarSystemId":30013772,"solarSystemName":"G:1IO0","location":{"x":-7430000000000000000,"y":1210000000000000000,"z":-7020000000000000000}},"30013773":{"solarSystemId":30013773,"solarSystemName":"G:198K","location":{"x":-6830000000000000000,"y":991000000000000000,"z":-6970000000000000000}},"30013774":{"solarSystemId":30013774,"solarSystemName":"J:2NER","location":{"x":-5400000000000000000,"y":1500000000000000000,"z":-6790000000000000000}},"30013775":{"solarSystemId":30013775,"solarSystemName":"P:1VRI","location":{"x":-7000000000000000000,"y":706000000000000000,"z":-7960000000000000000}},"30013776":{"solarSystemId":30013776,"solarSystemName":"U:KR23","location":{"x":-6380000000000000000,"y":1690000000000000000,"z":-6810000000000000000}},"30013777":{"solarSystemId":30013777,"solarSystemName":"J:127L","location":{"x":-6970000000000000000,"y":1860000000000000000,"z":-7630000000000000000}},"30013778":{"solarSystemId":30013778,"solarSystemName":"J:3N70","location":{"x":-5750000000000000000,"y":1450000000000000000,"z":-7120000000000000000}},"30013779":{"solarSystemId":30013779,"solarSystemName":"F:2S2S","location":{"x":-6680000000000000000,"y":5440000000000000000,"z":-6040000000000000000}},"30013780":{"solarSystemId":30013780,"solarSystemName":"Q:3TK1","location":{"x":-6040000000000000000,"y":4460000000000000000,"z":-6410000000000000000}},"30013781":{"solarSystemId":30013781,"solarSystemName":"Y:2E92","location":{"x":-6600000000000000000,"y":2620000000000000000,"z":-5990000000000000000}},"30013782":{"solarSystemId":30013782,"solarSystemName":"P:21LV","location":{"x":-5470000000000000000,"y":6040000000000000000,"z":-5950000000000000000}},"30013783":{"solarSystemId":30013783,"solarSystemName":"H:3A81","location":{"x":-6890000000000000000,"y":2880000000000000000,"z":-6200000000000000000}},"30013784":{"solarSystemId":30013784,"solarSystemName":"B:3037","location":{"x":-5570000000000000000,"y":4640000000000000000,"z":-6780000000000000000}},"30013785":{"solarSystemId":30013785,"solarSystemName":"U:1TTT","location":{"x":-4490000000000000000,"y":4030000000000000000,"z":-7680000000000000000}},"30013786":{"solarSystemId":30013786,"solarSystemName":"Y:1S45","location":{"x":-7440000000000000000,"y":5460000000000000000,"z":-5600000000000000000}},"30013787":{"solarSystemId":30013787,"solarSystemName":"Z:38TT","location":{"x":-5170000000000000000,"y":3520000000000000000,"z":-7990000000000000000}},"30013788":{"solarSystemId":30013788,"solarSystemName":"U:313S","location":{"x":-6350000000000000000,"y":2760000000000000000,"z":-7000000000000000000}},"30013789":{"solarSystemId":30013789,"solarSystemName":"F:39O1","location":{"x":-4900000000000000000,"y":4160000000000000000,"z":-7560000000000000000}},"30013790":{"solarSystemId":30013790,"solarSystemName":"Y:3ESN","location":{"x":-6600000000000000000,"y":3480000000000000000,"z":-8020000000000000000}},"30013791":{"solarSystemId":30013791,"solarSystemName":"Y:20A3","location":{"x":-5450000000000000000,"y":3940000000000000000,"z":-6540000000000000000}},"30013792":{"solarSystemId":30013792,"solarSystemName":"Y:1257","location":{"x":-7440000000000000000,"y":4160000000000000000,"z":-6920000000000000000}},"30013793":{"solarSystemId":30013793,"solarSystemName":"H:2IK9","location":{"x":-7220000000000000000,"y":3890000000000000000,"z":-6740000000000000000}},"30013794":{"solarSystemId":30013794,"solarSystemName":"B:3VIT","location":{"x":-5460000000000000000,"y":2390000000000000000,"z":-7080000000000000000}},"30013795":{"solarSystemId":30013795,"solarSystemName":"B:2O90","location":{"x":-7960000000000000000,"y":3280000000000000000,"z":-7610000000000000000}},"30013796":{"solarSystemId":30013796,"solarSystemName":"Y:34TO","location":{"x":-4670000000000000000,"y":2100000000000000000,"z":-5450000000000000000}},"30013797":{"solarSystemId":30013797,"solarSystemName":"Y:35K2","location":{"x":-4940000000000000000,"y":2960000000000000000,"z":-5600000000000000000}},"30013798":{"solarSystemId":30013798,"solarSystemName":"H:1KKN","location":{"x":-5240000000000000000,"y":1860000000000000000,"z":-5340000000000000000}},"30013799":{"solarSystemId":30013799,"solarSystemName":"G:NSTN","location":{"x":-5630000000000000000,"y":2760000000000000000,"z":-5460000000000000000}},"30013800":{"solarSystemId":30013800,"solarSystemName":"G:16EL","location":{"x":-4990000000000000000,"y":2510000000000000000,"z":-6240000000000000000}},"30013801":{"solarSystemId":30013801,"solarSystemName":"Q:3525","location":{"x":-4300000000000000000,"y":2620000000000000000,"z":-5540000000000000000}},"30013802":{"solarSystemId":30013802,"solarSystemName":"F:2TL9","location":{"x":-4810000000000000000,"y":2520000000000000000,"z":-6160000000000000000}},"30013803":{"solarSystemId":30013803,"solarSystemName":"J:31I9","location":{"x":-5430000000000000000,"y":2820000000000000000,"z":-6930000000000000000}},"30013804":{"solarSystemId":30013804,"solarSystemName":"H:396A","location":{"x":-5720000000000000000,"y":2090000000000000000,"z":-6000000000000000000}},"30013805":{"solarSystemId":30013805,"solarSystemName":"H:3TSN","location":{"x":-5470000000000000000,"y":2650000000000000000,"z":-6330000000000000000}},"30013806":{"solarSystemId":30013806,"solarSystemName":"D:L834","location":{"x":-5410000000000000000,"y":1890000000000000000,"z":-6010000000000000000}},"30013807":{"solarSystemId":30013807,"solarSystemName":"H:I4AK","location":{"x":-4160000000000000000,"y":2960000000000000000,"z":-5880000000000000000}},"30013808":{"solarSystemId":30013808,"solarSystemName":"H:VN55","location":{"x":-4420000000000000000,"y":1630000000000000000,"z":-5480000000000000000}},"30013809":{"solarSystemId":30013809,"solarSystemName":"M:2RN9","location":{"x":-6180000000000000000,"y":858000000000000000,"z":-5180000000000000000}},"30013810":{"solarSystemId":30013810,"solarSystemName":"P:366R","location":{"x":-6530000000000000000,"y":16300000000000000,"z":-4970000000000000000}},"30013811":{"solarSystemId":30013811,"solarSystemName":"G:1OAL","location":{"x":-6520000000000000000,"y":219000000000000000,"z":-5600000000000000000}},"30013812":{"solarSystemId":30013812,"solarSystemName":"Q:2456","location":{"x":-4850000000000000000,"y":-147000000000000000,"z":-5800000000000000000}},"30013813":{"solarSystemId":30013813,"solarSystemName":"H:1TV6","location":{"x":-5670000000000000000,"y":295000000000000000,"z":-5450000000000000000}},"30013814":{"solarSystemId":30013814,"solarSystemName":"G:14NE","location":{"x":-5730000000000000000,"y":-16000000000000000,"z":-5530000000000000000}},"30013815":{"solarSystemId":30013815,"solarSystemName":"P:1243","location":{"x":-6030000000000000000,"y":62800000000000000,"z":-4520000000000000000}},"30013816":{"solarSystemId":30013816,"solarSystemName":"Z:2VR9","location":{"x":-4990000000000000000,"y":698000000000000000,"z":-5290000000000000000}},"30013817":{"solarSystemId":30013817,"solarSystemName":"F:2IT1","location":{"x":-6370000000000000000,"y":477000000000000000,"z":-5460000000000000000}},"30013818":{"solarSystemId":30013818,"solarSystemName":"M:1S4V","location":{"x":-5520000000000000000,"y":-659000000000000000,"z":-5220000000000000000}},"30013819":{"solarSystemId":30013819,"solarSystemName":"H:1IEK","location":{"x":-6280000000000000000,"y":248000000000000000,"z":-4910000000000000000}},"30013820":{"solarSystemId":30013820,"solarSystemName":"J:14TS","location":{"x":-5150000000000000000,"y":-95900000000000000,"z":-5490000000000000000}},"30013821":{"solarSystemId":30013821,"solarSystemName":"G:1S0O","location":{"x":-6600000000000000000,"y":179000000000000000,"z":-5500000000000000000}},"30013822":{"solarSystemId":30013822,"solarSystemName":"Z:3845","location":{"x":-5930000000000000000,"y":-449000000000000000,"z":-5450000000000000000}},"30013823":{"solarSystemId":30013823,"solarSystemName":"F:O9L0","location":{"x":-5460000000000000000,"y":490000000000000000,"z":-6250000000000000000}},"30013824":{"solarSystemId":30013824,"solarSystemName":"D:39T1","location":{"x":-5390000000000000000,"y":-322000000000000000,"z":-4740000000000000000}},"30013825":{"solarSystemId":30013825,"solarSystemName":"M:3EV8","location":{"x":-6390000000000000000,"y":634000000000000000,"z":-5080000000000000000}},"30013826":{"solarSystemId":30013826,"solarSystemName":"U:3VAN","location":{"x":-5030000000000000000,"y":-394000000000000000,"z":-4520000000000000000}},"30013827":{"solarSystemId":30013827,"solarSystemName":"P:31AR","location":{"x":-5220000000000000000,"y":782000000000000000,"z":-5470000000000000000}},"30013828":{"solarSystemId":30013828,"solarSystemName":"Q:33ET","location":{"x":-7690000000000000000,"y":760000000000000000,"z":-5190000000000000000}},"30013829":{"solarSystemId":30013829,"solarSystemName":"D:34V2","location":{"x":-7770000000000000000,"y":1840000000000000000,"z":-5520000000000000000}},"30013830":{"solarSystemId":30013830,"solarSystemName":"U:1E23","location":{"x":-8280000000000000000,"y":1440000000000000000,"z":-5730000000000000000}},"30013831":{"solarSystemId":30013831,"solarSystemName":"Y:3842","location":{"x":-6890000000000000000,"y":1270000000000000000,"z":-6180000000000000000}},"30013832":{"solarSystemId":30013832,"solarSystemName":"M:170R","location":{"x":-8290000000000000000,"y":1220000000000000000,"z":-5310000000000000000}},"30013833":{"solarSystemId":30013833,"solarSystemName":"F:IE03","location":{"x":-8800000000000000000,"y":1230000000000000000,"z":-6900000000000000000}},"30013834":{"solarSystemId":30013834,"solarSystemName":"U:41N0","location":{"x":-8540000000000000000,"y":1490000000000000000,"z":-5820000000000000000}},"30013835":{"solarSystemId":30013835,"solarSystemName":"P:341E","location":{"x":-8690000000000000000,"y":1200000000000000000,"z":-4910000000000000000}},"30013836":{"solarSystemId":30013836,"solarSystemName":"D:2SEV","location":{"x":-7400000000000000000,"y":2010000000000000000,"z":-5440000000000000000}},"30013837":{"solarSystemId":30013837,"solarSystemName":"F:27R1","location":{"x":-7480000000000000000,"y":1140000000000000000,"z":-5830000000000000000}},"30013838":{"solarSystemId":30013838,"solarSystemName":"Z:2V6A","location":{"x":-7610000000000000000,"y":1110000000000000000,"z":-6130000000000000000}},"30013839":{"solarSystemId":30013839,"solarSystemName":"Q:1ENS","location":{"x":-8460000000000000000,"y":805000000000000000,"z":-6430000000000000000}},"30013840":{"solarSystemId":30013840,"solarSystemName":"M:3I14","location":{"x":-7410000000000000000,"y":1200000000000000000,"z":-6320000000000000000}},"30013841":{"solarSystemId":30013841,"solarSystemName":"Y:260K","location":{"x":-7240000000000000000,"y":584000000000000000,"z":-4920000000000000000}},"30013842":{"solarSystemId":30013842,"solarSystemName":"Z:1TV7","location":{"x":-7760000000000000000,"y":528000000000000000,"z":-5720000000000000000}},"30013843":{"solarSystemId":30013843,"solarSystemName":"F:2AL4","location":{"x":-7670000000000000000,"y":1160000000000000000,"z":-5850000000000000000}},"30013844":{"solarSystemId":30013844,"solarSystemName":"Q:3I23","location":{"x":-8420000000000000000,"y":1530000000000000000,"z":-5800000000000000000}},"30013845":{"solarSystemId":30013845,"solarSystemName":"M:RTI5","location":{"x":-8880000000000000000,"y":1430000000000000000,"z":-5830000000000000000}},"30013846":{"solarSystemId":30013846,"solarSystemName":"D:27RL","location":{"x":-8700000000000000000,"y":1350000000000000000,"z":-5570000000000000000}},"30013847":{"solarSystemId":30013847,"solarSystemName":"Y:163T","location":{"x":-8730000000000000000,"y":1940000000000000000,"z":-5390000000000000000}},"30013848":{"solarSystemId":30013848,"solarSystemName":"Z:4LI1","location":{"x":-7320000000000000000,"y":2110000000000000000,"z":-5150000000000000000}},"30013849":{"solarSystemId":30013849,"solarSystemName":"B:1IS4","location":{"x":-7840000000000000000,"y":1350000000000000000,"z":-6020000000000000000}},"30013850":{"solarSystemId":30013850,"solarSystemName":"Z:1EVE","location":{"x":-5630000000000000000,"y":1180000000000000000,"z":-7340000000000000000}},"30013851":{"solarSystemId":30013851,"solarSystemName":"U:17KA","location":{"x":-4510000000000000000,"y":2510000000000000000,"z":-7350000000000000000}},"30013852":{"solarSystemId":30013852,"solarSystemName":"B:2KA4","location":{"x":-5870000000000000000,"y":1670000000000000000,"z":-8340000000000000000}},"30013853":{"solarSystemId":30013853,"solarSystemName":"D:26IO","location":{"x":-5920000000000000000,"y":2860000000000000000,"z":-8400000000000000000}},"30013854":{"solarSystemId":30013854,"solarSystemName":"F:2378","location":{"x":-5440000000000000000,"y":1820000000000000000,"z":-8900000000000000000}},"30013855":{"solarSystemId":30013855,"solarSystemName":"J:4IN7","location":{"x":-4490000000000000000,"y":2550000000000000000,"z":-7670000000000000000}},"30013856":{"solarSystemId":30013856,"solarSystemName":"P:27S9","location":{"x":-4730000000000000000,"y":934000000000000000,"z":-9110000000000000000}},"30013857":{"solarSystemId":30013857,"solarSystemName":"H:22L6","location":{"x":-6630000000000000000,"y":363000000000000000,"z":-8560000000000000000}},"30013858":{"solarSystemId":30013858,"solarSystemName":"J:23OR","location":{"x":-5570000000000000000,"y":601000000000000000,"z":-8500000000000000000}},"30013859":{"solarSystemId":30013859,"solarSystemName":"Z:11T3","location":{"x":-6670000000000000000,"y":2040000000000000000,"z":-8540000000000000000}},"30013860":{"solarSystemId":30013860,"solarSystemName":"B:213A","location":{"x":-6490000000000000000,"y":691000000000000000,"z":-8400000000000000000}},"30013861":{"solarSystemId":30013861,"solarSystemName":"Q:1SIV","location":{"x":-5420000000000000000,"y":2200000000000000000,"z":-7140000000000000000}},"30013862":{"solarSystemId":30013862,"solarSystemName":"U:14T8","location":{"x":-5620000000000000000,"y":588000000000000000,"z":-8330000000000000000}},"30013863":{"solarSystemId":30013863,"solarSystemName":"Q:48T7","location":{"x":-6460000000000000000,"y":639000000000000000,"z":-8520000000000000000}},"30013864":{"solarSystemId":30013864,"solarSystemName":"H:2A4I","location":{"x":-6390000000000000000,"y":938000000000000000,"z":-8370000000000000000}},"30013865":{"solarSystemId":30013865,"solarSystemName":"P:140E","location":{"x":6450000000000000000,"y":-1870000000000000000,"z":4950000000000000000}},"30013866":{"solarSystemId":30013866,"solarSystemName":"D:TRKK","location":{"x":6970000000000000000,"y":-1460000000000000000,"z":4580000000000000000}},"30013867":{"solarSystemId":30013867,"solarSystemName":"Q:17SN","location":{"x":7270000000000000000,"y":-1350000000000000000,"z":5290000000000000000}},"30013868":{"solarSystemId":30013868,"solarSystemName":"J:1OL4","location":{"x":6170000000000000000,"y":-1100000000000000000,"z":5820000000000000000}},"30013869":{"solarSystemId":30013869,"solarSystemName":"H:O613","location":{"x":6300000000000000000,"y":-1320000000000000000,"z":4530000000000000000}},"30013870":{"solarSystemId":30013870,"solarSystemName":"Q:NNN6","location":{"x":6450000000000000000,"y":-1310000000000000000,"z":4770000000000000000}},"30013871":{"solarSystemId":30013871,"solarSystemName":"P:47S1","location":{"x":6270000000000000000,"y":-1620000000000000000,"z":5880000000000000000}},"30013872":{"solarSystemId":30013872,"solarSystemName":"J:27KT","location":{"x":5800000000000000000,"y":-1490000000000000000,"z":4930000000000000000}},"30013873":{"solarSystemId":30013873,"solarSystemName":"U:18I5","location":{"x":6380000000000000000,"y":-1500000000000000000,"z":5120000000000000000}},"30013874":{"solarSystemId":30013874,"solarSystemName":"H:1NIS","location":{"x":5880000000000000000,"y":-2100000000000000000,"z":4800000000000000000}},"30013875":{"solarSystemId":30013875,"solarSystemName":"Z:3RAT","location":{"x":6840000000000000000,"y":-1560000000000000000,"z":5730000000000000000}},"30013876":{"solarSystemId":30013876,"solarSystemName":"Z:1V20","location":{"x":6570000000000000000,"y":-1670000000000000000,"z":5150000000000000000}},"30013877":{"solarSystemId":30013877,"solarSystemName":"D:K0E4","location":{"x":5950000000000000000,"y":-1040000000000000000,"z":5150000000000000000}},"30013878":{"solarSystemId":30013878,"solarSystemName":"J:39VN","location":{"x":4760000000000000000,"y":299000000000000000,"z":7180000000000000000}},"30013879":{"solarSystemId":30013879,"solarSystemName":"Z:39K5","location":{"x":5850000000000000000,"y":1280000000000000000,"z":7940000000000000000}},"30013880":{"solarSystemId":30013880,"solarSystemName":"M:1E4T","location":{"x":6980000000000000000,"y":-623000000000000000,"z":5230000000000000000}},"30013881":{"solarSystemId":30013881,"solarSystemName":"Q:2N8L","location":{"x":5430000000000000000,"y":-612000000000000000,"z":6610000000000000000}},"30013882":{"solarSystemId":30013882,"solarSystemName":"Z:233A","location":{"x":6200000000000000000,"y":-624000000000000000,"z":5330000000000000000}},"30013883":{"solarSystemId":30013883,"solarSystemName":"Y:4VOS","location":{"x":5660000000000000000,"y":244000000000000000,"z":6060000000000000000}},"30013884":{"solarSystemId":30013884,"solarSystemName":"P:341A","location":{"x":5940000000000000000,"y":-268000000000000000,"z":7350000000000000000}},"30013885":{"solarSystemId":30013885,"solarSystemName":"Y:38RI","location":{"x":5270000000000000000,"y":-407000000000000000,"z":5120000000000000000}},"30013886":{"solarSystemId":30013886,"solarSystemName":"D:35R9","location":{"x":5080000000000000000,"y":1090000000000000000,"z":7260000000000000000}},"30013887":{"solarSystemId":30013887,"solarSystemName":"Q:NETS","location":{"x":5090000000000000000,"y":-717000000000000000,"z":4890000000000000000}},"30013888":{"solarSystemId":30013888,"solarSystemName":"H:3V92","location":{"x":6970000000000000000,"y":-561000000000000000,"z":5630000000000000000}},"30013889":{"solarSystemId":30013889,"solarSystemName":"Y:4SA6","location":{"x":6370000000000000000,"y":-313000000000000000,"z":4900000000000000000}},"30013890":{"solarSystemId":30013890,"solarSystemName":"Y:309S","location":{"x":6200000000000000000,"y":-172000000000000000,"z":7470000000000000000}},"30013891":{"solarSystemId":30013891,"solarSystemName":"G:16TE","location":{"x":6960000000000000000,"y":-806000000000000000,"z":5880000000000000000}},"30013892":{"solarSystemId":30013892,"solarSystemName":"Y:330I","location":{"x":5050000000000000000,"y":-2020000000000000000,"z":8670000000000000000}},"30013893":{"solarSystemId":30013893,"solarSystemName":"Z:2NNR","location":{"x":6820000000000000000,"y":-5320000000000000000,"z":8770000000000000000}},"30013894":{"solarSystemId":30013894,"solarSystemName":"Z:32V2","location":{"x":6570000000000000000,"y":-3430000000000000000,"z":8000000000000000000}},"30013895":{"solarSystemId":30013895,"solarSystemName":"U:3I9O","location":{"x":6050000000000000000,"y":-2710000000000000000,"z":9670000000000000000}},"30013896":{"solarSystemId":30013896,"solarSystemName":"U:25V8","location":{"x":8470000000000000000,"y":-4160000000000000000,"z":8170000000000000000}},"30013897":{"solarSystemId":30013897,"solarSystemName":"B:247S","location":{"x":6120000000000000000,"y":-1280000000000000000,"z":8210000000000000000}},"30013898":{"solarSystemId":30013898,"solarSystemName":"B:1O0R","location":{"x":6870000000000000000,"y":-5130000000000000000,"z":7580000000000000000}},"30013899":{"solarSystemId":30013899,"solarSystemName":"B:7OT4","location":{"x":6930000000000000000,"y":-4990000000000000000,"z":7260000000000000000}},"30013900":{"solarSystemId":30013900,"solarSystemName":"P:40RA","location":{"x":5460000000000000000,"y":-3500000000000000000,"z":6960000000000000000}},"30013901":{"solarSystemId":30013901,"solarSystemName":"Y:2K8E","location":{"x":8100000000000000000,"y":-1160000000000000000,"z":6870000000000000000}},"30013902":{"solarSystemId":30013902,"solarSystemName":"F:398V","location":{"x":8070000000000000000,"y":-429000000000000000,"z":6000000000000000000}},"30013903":{"solarSystemId":30013903,"solarSystemName":"P:3N02","location":{"x":7670000000000000000,"y":-1390000000000000000,"z":6300000000000000000}},"30013904":{"solarSystemId":30013904,"solarSystemName":"D:LA4E","location":{"x":7120000000000000000,"y":-1460000000000000000,"z":5860000000000000000}},"30013905":{"solarSystemId":30013905,"solarSystemName":"P:KL6I","location":{"x":7890000000000000000,"y":-1260000000000000000,"z":6720000000000000000}},"30013906":{"solarSystemId":30013906,"solarSystemName":"D:1V17","location":{"x":7930000000000000000,"y":-774000000000000000,"z":5490000000000000000}},"30013907":{"solarSystemId":30013907,"solarSystemName":"Q:24SL","location":{"x":7470000000000000000,"y":-484000000000000000,"z":6250000000000000000}},"30013908":{"solarSystemId":30013908,"solarSystemName":"G:3ISI","location":{"x":7510000000000000000,"y":-1300000000000000000,"z":5790000000000000000}},"30013909":{"solarSystemId":30013909,"solarSystemName":"D:1K49","location":{"x":7470000000000000000,"y":-1200000000000000000,"z":6250000000000000000}},"30013910":{"solarSystemId":30013910,"solarSystemName":"F:26V6","location":{"x":7010000000000000000,"y":-1380000000000000000,"z":6070000000000000000}},"30013911":{"solarSystemId":30013911,"solarSystemName":"H:OA0K","location":{"x":7150000000000000000,"y":-771000000000000000,"z":6880000000000000000}},"30013912":{"solarSystemId":30013912,"solarSystemName":"Z:3ORO","location":{"x":7970000000000000000,"y":-1670000000000000000,"z":6480000000000000000}},"30013913":{"solarSystemId":30013913,"solarSystemName":"H:3N38","location":{"x":7730000000000000000,"y":-1070000000000000000,"z":5770000000000000000}},"30013914":{"solarSystemId":30013914,"solarSystemName":"J:2ORE","location":{"x":7650000000000000000,"y":-1070000000000000000,"z":8170000000000000000}},"30013915":{"solarSystemId":30013915,"solarSystemName":"Q:292I","location":{"x":8300000000000000000,"y":-1530000000000000000,"z":8850000000000000000}},"30013916":{"solarSystemId":30013916,"solarSystemName":"H:1821","location":{"x":7260000000000000000,"y":-550000000000000000,"z":8600000000000000000}},"30013917":{"solarSystemId":30013917,"solarSystemName":"M:3R88","location":{"x":6970000000000000000,"y":-1020000000000000000,"z":8290000000000000000}},"30013918":{"solarSystemId":30013918,"solarSystemName":"Z:356T","location":{"x":8560000000000000000,"y":-558000000000000000,"z":9040000000000000000}},"30013919":{"solarSystemId":30013919,"solarSystemName":"P:1S52","location":{"x":8180000000000000000,"y":-226000000000000000,"z":9900000000000000000}},"30013920":{"solarSystemId":30013920,"solarSystemName":"Z:1SVE","location":{"x":7570000000000000000,"y":-1160000000000000000,"z":7750000000000000000}},"30013921":{"solarSystemId":30013921,"solarSystemName":"U:38A8","location":{"x":8370000000000000000,"y":-695000000000000000,"z":8700000000000000000}},"30013922":{"solarSystemId":30013922,"solarSystemName":"U:14TL","location":{"x":8810000000000000000,"y":-646000000000000000,"z":8370000000000000000}},"30013923":{"solarSystemId":30013923,"solarSystemName":"F:1S08","location":{"x":8840000000000000000,"y":-545000000000000000,"z":8280000000000000000}},"30013924":{"solarSystemId":30013924,"solarSystemName":"Z:2IV8","location":{"x":8480000000000000000,"y":-1410000000000000000,"z":7820000000000000000}},"30013925":{"solarSystemId":30013925,"solarSystemName":"U:1II3","location":{"x":6940000000000000000,"y":-1240000000000000000,"z":6130000000000000000}},"30013926":{"solarSystemId":30013926,"solarSystemName":"U:3O0A","location":{"x":6040000000000000000,"y":-1690000000000000000,"z":6290000000000000000}},"30013927":{"solarSystemId":30013927,"solarSystemName":"U:10E1","location":{"x":6390000000000000000,"y":-901000000000000000,"z":7630000000000000000}},"30013928":{"solarSystemId":30013928,"solarSystemName":"D:1VNK","location":{"x":7200000000000000000,"y":-1580000000000000000,"z":6900000000000000000}},"30013929":{"solarSystemId":30013929,"solarSystemName":"H:2A83","location":{"x":6110000000000000000,"y":-1490000000000000000,"z":6250000000000000000}},"30013930":{"solarSystemId":30013930,"solarSystemName":"G:42L8","location":{"x":6390000000000000000,"y":-1380000000000000000,"z":6830000000000000000}},"30013931":{"solarSystemId":30013931,"solarSystemName":"Q:3V8T","location":{"x":5900000000000000000,"y":-1640000000000000000,"z":6800000000000000000}},"30013932":{"solarSystemId":30013932,"solarSystemName":"P:1KI7","location":{"x":6020000000000000000,"y":-1060000000000000000,"z":6880000000000000000}},"30013933":{"solarSystemId":30013933,"solarSystemName":"D:17L3","location":{"x":6320000000000000000,"y":-1330000000000000000,"z":6870000000000000000}},"30013934":{"solarSystemId":30013934,"solarSystemName":"B:24N4","location":{"x":5970000000000000000,"y":-570000000000000000,"z":6890000000000000000}},"30013935":{"solarSystemId":30013935,"solarSystemName":"Z:1T2K","location":{"x":5950000000000000000,"y":-1480000000000000000,"z":6690000000000000000}},"30013936":{"solarSystemId":30013936,"solarSystemName":"U:2R1K","location":{"x":6890000000000000000,"y":-1240000000000000000,"z":7350000000000000000}},"30013937":{"solarSystemId":30013937,"solarSystemName":"G:2A9A","location":{"x":4570000000000000000,"y":-4030000000000000000,"z":7930000000000000000}},"30013938":{"solarSystemId":30013938,"solarSystemName":"U:39V8","location":{"x":3060000000000000000,"y":-2590000000000000000,"z":8000000000000000000}},"30013939":{"solarSystemId":30013939,"solarSystemName":"P:29N5","location":{"x":4100000000000000000,"y":-2970000000000000000,"z":7520000000000000000}},"30013940":{"solarSystemId":30013940,"solarSystemName":"U:26RO","location":{"x":4060000000000000000,"y":-1650000000000000000,"z":6800000000000000000}},"30013941":{"solarSystemId":30013941,"solarSystemName":"J:5175","location":{"x":3990000000000000000,"y":-1920000000000000000,"z":7980000000000000000}},"30013942":{"solarSystemId":30013942,"solarSystemName":"P:1R7L","location":{"x":4950000000000000000,"y":-2190000000000000000,"z":6940000000000000000}},"30013943":{"solarSystemId":30013943,"solarSystemName":"J:3607","location":{"x":4980000000000000000,"y":-1790000000000000000,"z":7930000000000000000}},"30013944":{"solarSystemId":30013944,"solarSystemName":"Y:245K","location":{"x":3140000000000000000,"y":-2440000000000000000,"z":8280000000000000000}},"30013945":{"solarSystemId":30013945,"solarSystemName":"M:1NLR","location":{"x":4430000000000000000,"y":-1810000000000000000,"z":7180000000000000000}},"30013946":{"solarSystemId":30013946,"solarSystemName":"D:3SK8","location":{"x":3960000000000000000,"y":-1720000000000000000,"z":6730000000000000000}},"30013947":{"solarSystemId":30013947,"solarSystemName":"H.4RS.NX3","location":{"x":12000000000000000000,"y":138000000000000000,"z":1530000000000000000}},"30013948":{"solarSystemId":30013948,"solarSystemName":"E.E2N.7M8","location":{"x":13900000000000000000,"y":-308000000000000000,"z":1830000000000000000}},"30013949":{"solarSystemId":30013949,"solarSystemName":"T.7QT.TZG","location":{"x":13400000000000000000,"y":-861000000000000000,"z":1850000000000000000}},"30013950":{"solarSystemId":30013950,"solarSystemName":"I.2TT.VFG","location":{"x":13100000000000000000,"y":-853000000000000000,"z":1680000000000000000}},"30013951":{"solarSystemId":30013951,"solarSystemName":"R.TQS.0VY","location":{"x":12300000000000000000,"y":-994000000000000000,"z":2200000000000000000}},"30013952":{"solarSystemId":30013952,"solarSystemName":"C.JZS.6S5","location":{"x":12600000000000000000,"y":192000000000000000,"z":1670000000000000000}},"30013953":{"solarSystemId":30013953,"solarSystemName":"M.0TT.QK3","location":{"x":13100000000000000000,"y":-143000000000000000,"z":1680000000000000000}},"30013954":{"solarSystemId":30013954,"solarSystemName":"R.0MT.JF6","location":{"x":13300000000000000000,"y":-241000000000000000,"z":1850000000000000000}},"30013955":{"solarSystemId":30013955,"solarSystemName":"H.S5T.XN5","location":{"x":12900000000000000000,"y":-195000000000000000,"z":2110000000000000000}},"30013956":{"solarSystemId":30013956,"solarSystemName":"I.PMT.WQQ","location":{"x":13300000000000000000,"y":-744000000000000000,"z":2310000000000000000}},"30013957":{"solarSystemId":30013957,"solarSystemName":"S.VDT.J7F","location":{"x":13200000000000000000,"y":-765000000000000000,"z":1680000000000000000}},"30013958":{"solarSystemId":30013958,"solarSystemName":"T.Q5T.NPD","location":{"x":12900000000000000000,"y":-561000000000000000,"z":2200000000000000000}},"30013959":{"solarSystemId":30013959,"solarSystemName":"A.9YT.98P","location":{"x":13700000000000000000,"y":-658000000000000000,"z":2110000000000000000}},"30013960":{"solarSystemId":30013960,"solarSystemName":"R.V1T.CRJ","location":{"x":12700000000000000000,"y":-916000000000000000,"z":1910000000000000000}},"30013961":{"solarSystemId":30013961,"solarSystemName":"I.6CT.VJK","location":{"x":13300000000000000000,"y":-1110000000000000000,"z":2290000000000000000}},"30013962":{"solarSystemId":30013962,"solarSystemName":"E.PXS.8D1","location":{"x":12500000000000000000,"y":-1700000000000000000,"z":4650000000000000000}},"30013963":{"solarSystemId":30013963,"solarSystemName":"T.8RS.RSL","location":{"x":12000000000000000000,"y":-516000000000000000,"z":4180000000000000000}},"30013964":{"solarSystemId":30013964,"solarSystemName":"S.E9S.521","location":{"x":11900000000000000000,"y":-1230000000000000000,"z":3900000000000000000}},"30013965":{"solarSystemId":30013965,"solarSystemName":"R.NV9.771","location":{"x":11100000000000000000,"y":-1410000000000000000,"z":3950000000000000000}},"30013966":{"solarSystemId":30013966,"solarSystemName":"D.RY9.ZFP","location":{"x":11400000000000000000,"y":-673000000000000000,"z":3570000000000000000}},"30013967":{"solarSystemId":30013967,"solarSystemName":"D.3DS.4LZ","location":{"x":12100000000000000000,"y":-1020000000000000000,"z":4670000000000000000}},"30013968":{"solarSystemId":30013968,"solarSystemName":"H.QMS.CYE","location":{"x":12200000000000000000,"y":-1150000000000000000,"z":2980000000000000000}},"30013969":{"solarSystemId":30013969,"solarSystemName":"E.TDS.3YZ","location":{"x":12100000000000000000,"y":-1040000000000000000,"z":3300000000000000000}},"30013970":{"solarSystemId":30013970,"solarSystemName":"U.BFS.GZJ","location":{"x":12300000000000000000,"y":-933000000000000000,"z":3530000000000000000}},"30013971":{"solarSystemId":30013971,"solarSystemName":"T.82S.34V","location":{"x":11600000000000000000,"y":-689000000000000000,"z":3070000000000000000}},"30013972":{"solarSystemId":30013972,"solarSystemName":"L.0Z9.G79","location":{"x":11400000000000000000,"y":-333000000000000000,"z":3540000000000000000}},"30013973":{"solarSystemId":30013973,"solarSystemName":"R.4QN.VGT","location":{"x":14600000000000000000,"y":-423000000000000000,"z":3050000000000000000}},"30013974":{"solarSystemId":30013974,"solarSystemName":"E.6JN.QNR","location":{"x":14700000000000000000,"y":15100000000000000,"z":3300000000000000000}},"30013975":{"solarSystemId":30013975,"solarSystemName":"L.T6R.Y05","location":{"x":15200000000000000000,"y":-181000000000000000,"z":3200000000000000000}},"30013976":{"solarSystemId":30013976,"solarSystemName":"I.57N.2J9","location":{"x":14100000000000000000,"y":-352000000000000000,"z":3200000000000000000}},"30013977":{"solarSystemId":30013977,"solarSystemName":"T.8MN.699","location":{"x":14500000000000000000,"y":-335000000000000000,"z":3580000000000000000}},"30013978":{"solarSystemId":30013978,"solarSystemName":"E.ZYN.3E9","location":{"x":14800000000000000000,"y":-359000000000000000,"z":3500000000000000000}},"30013979":{"solarSystemId":30013979,"solarSystemName":"T.BBN.17M","location":{"x":14700000000000000000,"y":-620000000000000000,"z":2920000000000000000}},"30013980":{"solarSystemId":30013980,"solarSystemName":"A.C7R.316","location":{"x":15300000000000000000,"y":-217000000000000000,"z":3160000000000000000}},"30013981":{"solarSystemId":30013981,"solarSystemName":"N.D3R.LLC","location":{"x":15100000000000000000,"y":-593000000000000000,"z":2890000000000000000}},"30013982":{"solarSystemId":30013982,"solarSystemName":"N.V1R.77C","location":{"x":15000000000000000000,"y":-585000000000000000,"z":3720000000000000000}},"30013983":{"solarSystemId":30013983,"solarSystemName":"H.Y2N.HSB","location":{"x":13900000000000000000,"y":-805000000000000000,"z":2740000000000000000}},"30013984":{"solarSystemId":30013984,"solarSystemName":"E.JZN.6JM","location":{"x":14900000000000000000,"y":-641000000000000000,"z":5380000000000000000}},"30013985":{"solarSystemId":30013985,"solarSystemName":"I.BMR.H31","location":{"x":15600000000000000000,"y":-1290000000000000000,"z":4670000000000000000}},"30013986":{"solarSystemId":30013986,"solarSystemName":"E.ZRT.RQG","location":{"x":13200000000000000000,"y":-852000000000000000,"z":2810000000000000000}},"30013987":{"solarSystemId":30013987,"solarSystemName":"I.6CT.HGD","location":{"x":13300000000000000000,"y":-567000000000000000,"z":4740000000000000000}},"30013988":{"solarSystemId":30013988,"solarSystemName":"D.NWT.76F","location":{"x":13700000000000000000,"y":-764000000000000000,"z":2940000000000000000}},"30013989":{"solarSystemId":30013989,"solarSystemName":"T.46N.EPM","location":{"x":14100000000000000000,"y":-634000000000000000,"z":3840000000000000000}},"30013990":{"solarSystemId":30013990,"solarSystemName":"T.5XT.TEB","location":{"x":13600000000000000000,"y":-828000000000000000,"z":2670000000000000000}},"30013991":{"solarSystemId":30013991,"solarSystemName":"T.GCR.901","location":{"x":15600000000000000000,"y":-1160000000000000000,"z":4200000000000000000}},"30013992":{"solarSystemId":30013992,"solarSystemName":"T.HET.19P","location":{"x":13800000000000000000,"y":-659000000000000000,"z":4090000000000000000}},"30013993":{"solarSystemId":30013993,"solarSystemName":"E.DKT.PJK","location":{"x":13800000000000000000,"y":-1110000000000000000,"z":4110000000000000000}},"30013994":{"solarSystemId":30013994,"solarSystemName":"N.4EN.TDT","location":{"x":15000000000000000000,"y":-414000000000000000,"z":1750000000000000000}},"30013995":{"solarSystemId":30013995,"solarSystemName":"S.VFN.B3Q","location":{"x":14600000000000000000,"y":-725000000000000000,"z":1890000000000000000}},"30013996":{"solarSystemId":30013996,"solarSystemName":"T.QDN.WNX","location":{"x":14400000000000000000,"y":-951000000000000000,"z":1570000000000000000}},"30013997":{"solarSystemId":30013997,"solarSystemName":"I.2BT.TK8","location":{"x":13500000000000000000,"y":-322000000000000000,"z":798000000000000000}},"30013998":{"solarSystemId":30013998,"solarSystemName":"N.GWN.FRG","location":{"x":14900000000000000000,"y":-844000000000000000,"z":1700000000000000000}},"30013999":{"solarSystemId":30013999,"solarSystemName":"E.B3N.PM6","location":{"x":14000000000000000000,"y":-236000000000000000,"z":820000000000000000}},"30014000":{"solarSystemId":30014000,"solarSystemName":"S.2TN.EVT","location":{"x":14200000000000000000,"y":-419000000000000000,"z":1430000000000000000}},"30014001":{"solarSystemId":30014001,"solarSystemName":"E.WYT.BPM","location":{"x":13700000000000000000,"y":-634000000000000000,"z":684000000000000000}},"30014002":{"solarSystemId":30014002,"solarSystemName":"S.7SN.3YK","location":{"x":14200000000000000000,"y":-1110000000000000000,"z":2330000000000000000}},"30014003":{"solarSystemId":30014003,"solarSystemName":"S.88T.3S1","location":{"x":13000000000000000000,"y":-1520000000000000000,"z":1190000000000000000}},"30014004":{"solarSystemId":30014004,"solarSystemName":"S.TFT.99K","location":{"x":13500000000000000000,"y":-1090000000000000000,"z":1290000000000000000}},"30014005":{"solarSystemId":30014005,"solarSystemName":"S.46N.35J","location":{"x":14100000000000000000,"y":-906000000000000000,"z":2190000000000000000}},"30014006":{"solarSystemId":30014006,"solarSystemName":"S.PFT.PJJ","location":{"x":13500000000000000000,"y":-930000000000000000,"z":1480000000000000000}},"30014007":{"solarSystemId":30014007,"solarSystemName":"S.BVN.NYT","location":{"x":14500000000000000000,"y":-427000000000000000,"z":1520000000000000000}},"30014008":{"solarSystemId":30014008,"solarSystemName":"E.8M9.RW1","location":{"x":11000000000000000000,"y":-2210000000000000000,"z":1100000000000000000}},"30014009":{"solarSystemId":30014009,"solarSystemName":"H.QVS.PS1","location":{"x":12200000000000000000,"y":-1530000000000000000,"z":1700000000000000000}},"30014010":{"solarSystemId":30014010,"solarSystemName":"Plethora","location":{"x":11600000000000000000,"y":-1580000000000000000,"z":586000000000000000}},"30014011":{"solarSystemId":30014011,"solarSystemName":"D.WL9.5TJ","location":{"x":10900000000000000000,"y":-913000000000000000,"z":1280000000000000000}},"30014012":{"solarSystemId":30014012,"solarSystemName":"R.G4S.E3E","location":{"x":11700000000000000000,"y":-1120000000000000000,"z":1480000000000000000}},"30014013":{"solarSystemId":30014013,"solarSystemName":"A.8H9.MN1","location":{"x":11300000000000000000,"y":-1610000000000000000,"z":1340000000000000000}},"30014014":{"solarSystemId":30014014,"solarSystemName":"E.D59.XM1","location":{"x":10600000000000000000,"y":-1790000000000000000,"z":1980000000000000000}},"30014015":{"solarSystemId":30014015,"solarSystemName":"T.YX9.6LK","location":{"x":11300000000000000000,"y":-1100000000000000000,"z":468000000000000000}},"30014016":{"solarSystemId":30014016,"solarSystemName":"R.W3S.DB1","location":{"x":11700000000000000000,"y":-1960000000000000000,"z":591000000000000000}},"30014017":{"solarSystemId":30014017,"solarSystemName":"N.KR9.7X1","location":{"x":10900000000000000000,"y":-2100000000000000000,"z":1600000000000000000}},"30014018":{"solarSystemId":30014018,"solarSystemName":"R.909.L01","location":{"x":10400000000000000000,"y":-1170000000000000000,"z":1680000000000000000}},"30014019":{"solarSystemId":30014019,"solarSystemName":"L.PM9.FE1","location":{"x":11000000000000000000,"y":-2290000000000000000,"z":1690000000000000000}},"30014020":{"solarSystemId":30014020,"solarSystemName":"T.XCN.DC1","location":{"x":14400000000000000000,"y":1750000000000000000,"z":3460000000000000000}},"30014021":{"solarSystemId":30014021,"solarSystemName":"S.G4T.DMN","location":{"x":12900000000000000000,"y":452000000000000000,"z":3080000000000000000}},"30014022":{"solarSystemId":30014022,"solarSystemName":"H.T5N.JW6","location":{"x":14000000000000000000,"y":-250000000000000000,"z":2070000000000000000}},"30014023":{"solarSystemId":30014023,"solarSystemName":"I.GWR.X86","location":{"x":16100000000000000000,"y":-226000000000000000,"z":3890000000000000000}},"30014024":{"solarSystemId":30014024,"solarSystemName":"I.ZKN.2K1","location":{"x":14900000000000000000,"y":-69900000000000000,"z":2040000000000000000}},"30014025":{"solarSystemId":30014025,"solarSystemName":"R.TTT.508","location":{"x":13100000000000000000,"y":-288000000000000000,"z":2610000000000000000}},"30014026":{"solarSystemId":30014026,"solarSystemName":"E.H3N.346","location":{"x":14000000000000000000,"y":-221000000000000000,"z":1870000000000000000}},"30014027":{"solarSystemId":30014027,"solarSystemName":"H.JPR.JV2","location":{"x":15700000000000000000,"y":-94300000000000000,"z":2990000000000000000}},"30014028":{"solarSystemId":30014028,"solarSystemName":"B.D0N.NFC","location":{"x":13900000000000000000,"y":601000000000000000,"z":2750000000000000000}},"30014029":{"solarSystemId":30014029,"solarSystemName":"S.XHR.N8R","location":{"x":15900000000000000000,"y":-478000000000000000,"z":1580000000000000000}},"30014030":{"solarSystemId":30014030,"solarSystemName":"I.SPL.TW5","location":{"x":16800000000000000000,"y":-213000000000000000,"z":2750000000000000000}},"30014031":{"solarSystemId":30014031,"solarSystemName":"M.ZWL.SW2","location":{"x":17200000000000000000,"y":105000000000000000,"z":415000000000000000}},"30014032":{"solarSystemId":30014032,"solarSystemName":"O.RRL.PD8","location":{"x":16600000000000000000,"y":-306000000000000000,"z":2940000000000000000}},"30014033":{"solarSystemId":30014033,"solarSystemName":"A.DEL.5ZF","location":{"x":17300000000000000000,"y":-788000000000000000,"z":995000000000000000}},"30014034":{"solarSystemId":30014034,"solarSystemName":"I.0NR.E4T","location":{"x":15400000000000000000,"y":-402000000000000000,"z":1150000000000000000}},"30014035":{"solarSystemId":30014035,"solarSystemName":"D.65L.TWM","location":{"x":16300000000000000000,"y":-646000000000000000,"z":1260000000000000000}},"30014036":{"solarSystemId":30014036,"solarSystemName":"H.BRR.FYN","location":{"x":15500000000000000000,"y":-463000000000000000,"z":1900000000000000000}},"30014037":{"solarSystemId":30014037,"solarSystemName":"T.70L.73F","location":{"x":16100000000000000000,"y":-760000000000000000,"z":1980000000000000000}},"30014038":{"solarSystemId":30014038,"solarSystemName":"A.3LL.SMR","location":{"x":16600000000000000000,"y":-488000000000000000,"z":1440000000000000000}},"30014039":{"solarSystemId":30014039,"solarSystemName":"C.LSD.L5Q","location":{"x":17700000000000000000,"y":727000000000000000,"z":1880000000000000000}},"30014040":{"solarSystemId":30014040,"solarSystemName":"O.ELR.KWE","location":{"x":15500000000000000000,"y":-36000000000000000,"z":985000000000000000}},"30014041":{"solarSystemId":30014041,"solarSystemName":"A.TST.1R3","location":{"x":13100000000000000000,"y":3930000000000000000,"z":1200000000000000000}},"30014042":{"solarSystemId":30014042,"solarSystemName":"S.R48.JMY","location":{"x":9380000000000000000,"y":993000000000000000,"z":3060000000000000000}},"30014043":{"solarSystemId":30014043,"solarSystemName":"D.N69.BDX","location":{"x":10600000000000000000,"y":954000000000000000,"z":3720000000000000000}},"30014044":{"solarSystemId":30014044,"solarSystemName":"D.1B8.EV1","location":{"x":10000000000000000000,"y":1870000000000000000,"z":3600000000000000000}},"30014045":{"solarSystemId":30014045,"solarSystemName":"D.FLS.GZ2","location":{"x":12100000000000000000,"y":3340000000000000000,"z":2270000000000000000}},"30014046":{"solarSystemId":30014046,"solarSystemName":"A.MGS.E42","location":{"x":12400000000000000000,"y":2490000000000000000,"z":2690000000000000000}},"30014047":{"solarSystemId":30014047,"solarSystemName":"T.HP8.D21","location":{"x":9900000000000000000,"y":1240000000000000000,"z":2080000000000000000}},"30014048":{"solarSystemId":30014048,"solarSystemName":"M.QSS.CG1","location":{"x":11900000000000000000,"y":2000000000000000000,"z":4700000000000000000}},"30014049":{"solarSystemId":30014049,"solarSystemName":"Q:1T3I","location":{"x":9360000000000000000,"y":-1390000000000000000,"z":8430000000000000000}},"30014050":{"solarSystemId":30014050,"solarSystemName":"G:3T83","location":{"x":10200000000000000000,"y":-657000000000000000,"z":8370000000000000000}},"30014051":{"solarSystemId":30014051,"solarSystemName":"G:1RIR","location":{"x":10700000000000000000,"y":-1310000000000000000,"z":7540000000000000000}},"30014052":{"solarSystemId":30014052,"solarSystemName":"B:2836","location":{"x":11200000000000000000,"y":-3850000000000000000,"z":9730000000000000000}},"30014053":{"solarSystemId":30014053,"solarSystemName":"P:1K40","location":{"x":10100000000000000000,"y":-1420000000000000000,"z":7230000000000000000}},"30014054":{"solarSystemId":30014054,"solarSystemName":"B:2OOV","location":{"x":11300000000000000000,"y":-587000000000000000,"z":7730000000000000000}},"30014055":{"solarSystemId":30014055,"solarSystemName":"U:2N45","location":{"x":9690000000000000000,"y":-432000000000000000,"z":8440000000000000000}},"30014056":{"solarSystemId":30014056,"solarSystemName":"Y:139N","location":{"x":9860000000000000000,"y":-1480000000000000000,"z":6440000000000000000}},"30014057":{"solarSystemId":30014057,"solarSystemName":"Y:1KN7","location":{"x":10300000000000000000,"y":-2520000000000000000,"z":8550000000000000000}},"30014058":{"solarSystemId":30014058,"solarSystemName":"D:10E0","location":{"x":10100000000000000000,"y":-1690000000000000000,"z":8710000000000000000}},"30014059":{"solarSystemId":30014059,"solarSystemName":"M:1TK6","location":{"x":10700000000000000000,"y":-2160000000000000000,"z":7440000000000000000}},"30014060":{"solarSystemId":30014060,"solarSystemName":"F:375L","location":{"x":9300000000000000000,"y":567000000000000000,"z":4140000000000000000}},"30014061":{"solarSystemId":30014061,"solarSystemName":"P:364R","location":{"x":8290000000000000000,"y":-956000000000000000,"z":5170000000000000000}},"30014062":{"solarSystemId":30014062,"solarSystemName":"H:2R5N","location":{"x":8250000000000000000,"y":-752000000000000000,"z":3840000000000000000}},"30014063":{"solarSystemId":30014063,"solarSystemName":"U:1I82","location":{"x":8980000000000000000,"y":-873000000000000000,"z":5250000000000000000}},"30014064":{"solarSystemId":30014064,"solarSystemName":"Z:260S","location":{"x":9010000000000000000,"y":-908000000000000000,"z":4400000000000000000}},"30014065":{"solarSystemId":30014065,"solarSystemName":"H:25OE","location":{"x":9900000000000000000,"y":-245000000000000000,"z":4850000000000000000}},"30014066":{"solarSystemId":30014066,"solarSystemName":"P:255K","location":{"x":8920000000000000000,"y":-1510000000000000000,"z":3880000000000000000}},"30014067":{"solarSystemId":30014067,"solarSystemName":"M:1693","location":{"x":9070000000000000000,"y":119000000000000000,"z":4940000000000000000}},"30014068":{"solarSystemId":30014068,"solarSystemName":"G:3VA5","location":{"x":9440000000000000000,"y":-329000000000000000,"z":4940000000000000000}},"30014069":{"solarSystemId":30014069,"solarSystemName":"F:30A2","location":{"x":8950000000000000000,"y":-878000000000000000,"z":3840000000000000000}},"30014070":{"solarSystemId":30014070,"solarSystemName":"J:3O0E","location":{"x":8430000000000000000,"y":-1160000000000000000,"z":4910000000000000000}},"30014071":{"solarSystemId":30014071,"solarSystemName":"P:236I","location":{"x":8610000000000000000,"y":-651000000000000000,"z":5780000000000000000}},"30014072":{"solarSystemId":30014072,"solarSystemName":"Z:459V","location":{"x":8280000000000000000,"y":-326000000000000000,"z":3820000000000000000}},"30014073":{"solarSystemId":30014073,"solarSystemName":"H:1SET","location":{"x":9060000000000000000,"y":-527000000000000000,"z":4430000000000000000}},"30014074":{"solarSystemId":30014074,"solarSystemName":"B:1SE8","location":{"x":8100000000000000000,"y":385000000000000000,"z":3480000000000000000}},"30014075":{"solarSystemId":30014075,"solarSystemName":"D:20T0","location":{"x":9210000000000000000,"y":-1360000000000000000,"z":5780000000000000000}},"30014076":{"solarSystemId":30014076,"solarSystemName":"Y:O2E5","location":{"x":11300000000000000000,"y":-589000000000000000,"z":5580000000000000000}},"30014077":{"solarSystemId":30014077,"solarSystemName":"B:31A9","location":{"x":11800000000000000000,"y":-334000000000000000,"z":5110000000000000000}},"30014078":{"solarSystemId":30014078,"solarSystemName":"B:17RT","location":{"x":13000000000000000000,"y":505000000000000000,"z":4300000000000000000}},"30014079":{"solarSystemId":30014079,"solarSystemName":"U:2452","location":{"x":10700000000000000000,"y":-1030000000000000000,"z":4610000000000000000}},"30014080":{"solarSystemId":30014080,"solarSystemName":"G:2KLS","location":{"x":11300000000000000000,"y":-232000000000000000,"z":6140000000000000000}},"30014081":{"solarSystemId":30014081,"solarSystemName":"Y:1RR1","location":{"x":11200000000000000000,"y":-1560000000000000000,"z":5350000000000000000}},"30014082":{"solarSystemId":30014082,"solarSystemName":"U:14N5","location":{"x":11100000000000000000,"y":-420000000000000000,"z":6650000000000000000}},"30014083":{"solarSystemId":30014083,"solarSystemName":"B:2OL4","location":{"x":10500000000000000000,"y":-686000000000000000,"z":5220000000000000000}},"30014084":{"solarSystemId":30014084,"solarSystemName":"F:SERO","location":{"x":11300000000000000000,"y":448000000000000000,"z":6480000000000000000}},"30014085":{"solarSystemId":30014085,"solarSystemName":"J:1IR2","location":{"x":11700000000000000000,"y":542000000000000000,"z":5670000000000000000}},"30014086":{"solarSystemId":30014086,"solarSystemName":"G:32SO","location":{"x":12200000000000000000,"y":619000000000000000,"z":5400000000000000000}},"30014087":{"solarSystemId":30014087,"solarSystemName":"F:2OV9","location":{"x":7640000000000000000,"y":-2790000000000000000,"z":3550000000000000000}},"30014088":{"solarSystemId":30014088,"solarSystemName":"M:1S0K","location":{"x":7650000000000000000,"y":-1150000000000000000,"z":3260000000000000000}},"30014089":{"solarSystemId":30014089,"solarSystemName":"Z:201K","location":{"x":7340000000000000000,"y":-1790000000000000000,"z":3240000000000000000}},"30014090":{"solarSystemId":30014090,"solarSystemName":"U:4EIO","location":{"x":7320000000000000000,"y":-1940000000000000000,"z":3810000000000000000}},"30014091":{"solarSystemId":30014091,"solarSystemName":"P:E8RR","location":{"x":7510000000000000000,"y":-1330000000000000000,"z":2870000000000000000}},"30014092":{"solarSystemId":30014092,"solarSystemName":"B:1E3O","location":{"x":7310000000000000000,"y":-1410000000000000000,"z":3170000000000000000}},"30014093":{"solarSystemId":30014093,"solarSystemName":"F:3E0A","location":{"x":7380000000000000000,"y":-1700000000000000000,"z":2870000000000000000}},"30014094":{"solarSystemId":30014094,"solarSystemName":"M:SR19","location":{"x":7000000000000000000,"y":-1400000000000000000,"z":3440000000000000000}},"30014095":{"solarSystemId":30014095,"solarSystemName":"F:311V","location":{"x":7650000000000000000,"y":-1970000000000000000,"z":3320000000000000000}},"30014096":{"solarSystemId":30014096,"solarSystemName":"Y:VN85","location":{"x":8330000000000000000,"y":-1660000000000000000,"z":3730000000000000000}},"30014097":{"solarSystemId":30014097,"solarSystemName":"Z:4ONR","location":{"x":7220000000000000000,"y":-1470000000000000000,"z":3260000000000000000}},"30014098":{"solarSystemId":30014098,"solarSystemName":"M:1T9T","location":{"x":8100000000000000000,"y":-1970000000000000000,"z":2930000000000000000}},"30014099":{"solarSystemId":30014099,"solarSystemName":"M:2600","location":{"x":9370000000000000000,"y":-1220000000000000000,"z":2710000000000000000}},"30014100":{"solarSystemId":30014100,"solarSystemName":"F:2653","location":{"x":10200000000000000000,"y":-491000000000000000,"z":2780000000000000000}},"30014101":{"solarSystemId":30014101,"solarSystemName":"G:35OA","location":{"x":9380000000000000000,"y":-198000000000000000,"z":2130000000000000000}},"30014102":{"solarSystemId":30014102,"solarSystemName":"P:24L0","location":{"x":9660000000000000000,"y":-149000000000000000,"z":2640000000000000000}},"30014103":{"solarSystemId":30014103,"solarSystemName":"H:14EN","location":{"x":10200000000000000000,"y":-466000000000000000,"z":2790000000000000000}},"30014104":{"solarSystemId":30014104,"solarSystemName":"U:1N3R","location":{"x":9810000000000000000,"y":-868000000000000000,"z":2030000000000000000}},"30014105":{"solarSystemId":30014105,"solarSystemName":"G:39LA","location":{"x":10100000000000000000,"y":-961000000000000000,"z":2840000000000000000}},"30014106":{"solarSystemId":30014106,"solarSystemName":"F:VEVR","location":{"x":9700000000000000000,"y":-554000000000000000,"z":2040000000000000000}},"30014107":{"solarSystemId":30014107,"solarSystemName":"Z:1ON1","location":{"x":9720000000000000000,"y":-737000000000000000,"z":2700000000000000000}},"30014108":{"solarSystemId":30014108,"solarSystemName":"U:EE1E","location":{"x":9780000000000000000,"y":-1050000000000000000,"z":2270000000000000000}},"30014109":{"solarSystemId":30014109,"solarSystemName":"Q:306S","location":{"x":9170000000000000000,"y":-672000000000000000,"z":2420000000000000000}},"30014110":{"solarSystemId":30014110,"solarSystemName":"B:38R6","location":{"x":9490000000000000000,"y":-907000000000000000,"z":2660000000000000000}},"30014111":{"solarSystemId":30014111,"solarSystemName":"F:3N88","location":{"x":9980000000000000000,"y":-720000000000000000,"z":2650000000000000000}},"30014112":{"solarSystemId":30014112,"solarSystemName":"U:3SL2","location":{"x":10700000000000000000,"y":5290000000000000000,"z":6820000000000000000}},"30014113":{"solarSystemId":30014113,"solarSystemName":"D:3255","location":{"x":11600000000000000000,"y":4130000000000000000,"z":8090000000000000000}},"30014114":{"solarSystemId":30014114,"solarSystemName":"D:37AO","location":{"x":10100000000000000000,"y":5980000000000000000,"z":5750000000000000000}},"30014115":{"solarSystemId":30014115,"solarSystemName":"U:16T5","location":{"x":11900000000000000000,"y":-515000000000000000,"z":8900000000000000000}},"30014116":{"solarSystemId":30014116,"solarSystemName":"G:2ANE","location":{"x":9800000000000000000,"y":1560000000000000000,"z":12100000000000000000}},"30014117":{"solarSystemId":30014117,"solarSystemName":"P:2ERI","location":{"x":9850000000000000000,"y":1250000000000000000,"z":11000000000000000000}},"30014118":{"solarSystemId":30014118,"solarSystemName":"G:2AI0","location":{"x":11500000000000000000,"y":-227000000000000000,"z":797000000000000000}},"30014119":{"solarSystemId":30014119,"solarSystemName":"M:270L","location":{"x":10400000000000000000,"y":-511000000000000000,"z":1680000000000000000}},"30014120":{"solarSystemId":30014120,"solarSystemName":"J:1I0E","location":{"x":11300000000000000000,"y":-489000000000000000,"z":1980000000000000000}},"30014121":{"solarSystemId":30014121,"solarSystemName":"Q:1R70","location":{"x":10900000000000000000,"y":-503000000000000000,"z":1630000000000000000}},"30014122":{"solarSystemId":30014122,"solarSystemName":"B:N7KI","location":{"x":10100000000000000000,"y":-793000000000000000,"z":1670000000000000000}},"30014123":{"solarSystemId":30014123,"solarSystemName":"U:3TN7","location":{"x":10200000000000000000,"y":-280000000000000000,"z":1510000000000000000}},"30014124":{"solarSystemId":30014124,"solarSystemName":"Z:293L","location":{"x":11500000000000000000,"y":-425000000000000000,"z":1950000000000000000}},"30014125":{"solarSystemId":30014125,"solarSystemName":"P:2RRT","location":{"x":10400000000000000000,"y":-1310000000000000000,"z":1960000000000000000}},"30014126":{"solarSystemId":30014126,"solarSystemName":"G:1712","location":{"x":10700000000000000000,"y":-355000000000000000,"z":2510000000000000000}},"30014127":{"solarSystemId":30014127,"solarSystemName":"B:3AAT","location":{"x":11000000000000000000,"y":-440000000000000000,"z":2420000000000000000}},"30014128":{"solarSystemId":30014128,"solarSystemName":"P:3T0L","location":{"x":9910000000000000000,"y":-518000000000000000,"z":1800000000000000000}},"30014129":{"solarSystemId":30014129,"solarSystemName":"M:1LK7","location":{"x":9830000000000000000,"y":-655000000000000000,"z":1660000000000000000}},"30014130":{"solarSystemId":30014130,"solarSystemName":"F:2T1K","location":{"x":7490000000000000000,"y":-3170000000000000000,"z":6400000000000000000}},"30014131":{"solarSystemId":30014131,"solarSystemName":"J:2EIR","location":{"x":7320000000000000000,"y":-2170000000000000000,"z":5370000000000000000}},"30014132":{"solarSystemId":30014132,"solarSystemName":"U:2K8V","location":{"x":9620000000000000000,"y":-4680000000000000000,"z":4070000000000000000}},"30014133":{"solarSystemId":30014133,"solarSystemName":"Z:3E64","location":{"x":7370000000000000000,"y":-2450000000000000000,"z":4270000000000000000}},"30014134":{"solarSystemId":30014134,"solarSystemName":"Q:340I","location":{"x":7120000000000000000,"y":-1870000000000000000,"z":5540000000000000000}},"30014135":{"solarSystemId":30014135,"solarSystemName":"H:1KSE","location":{"x":7940000000000000000,"y":-2900000000000000000,"z":3380000000000000000}},"30014136":{"solarSystemId":30014136,"solarSystemName":"Z:2LS5","location":{"x":7150000000000000000,"y":-2320000000000000000,"z":4010000000000000000}},"30014137":{"solarSystemId":30014137,"solarSystemName":"Y:13SO","location":{"x":8790000000000000000,"y":-4470000000000000000,"z":6670000000000000000}},"30014138":{"solarSystemId":30014138,"solarSystemName":"H:51EN","location":{"x":8580000000000000000,"y":-3330000000000000000,"z":5200000000000000000}},"30014139":{"solarSystemId":30014139,"solarSystemName":"B:2L8E","location":{"x":9800000000000000000,"y":-2270000000000000000,"z":4200000000000000000}},"30014140":{"solarSystemId":30014140,"solarSystemName":"Z:2O3O","location":{"x":9640000000000000000,"y":-2320000000000000000,"z":4230000000000000000}},"30014141":{"solarSystemId":30014141,"solarSystemName":"J:N99K","location":{"x":8680000000000000000,"y":-2960000000000000000,"z":3960000000000000000}},"30014142":{"solarSystemId":30014142,"solarSystemName":"D:2N9E","location":{"x":9350000000000000000,"y":-1470000000000000000,"z":3790000000000000000}},"30014143":{"solarSystemId":30014143,"solarSystemName":"J:1V0R","location":{"x":8310000000000000000,"y":-2490000000000000000,"z":5140000000000000000}},"30014144":{"solarSystemId":30014144,"solarSystemName":"Z:1S6T","location":{"x":9390000000000000000,"y":-1350000000000000000,"z":3170000000000000000}},"30014145":{"solarSystemId":30014145,"solarSystemName":"P:256R","location":{"x":10500000000000000000,"y":-1180000000000000000,"z":4170000000000000000}},"30014146":{"solarSystemId":30014146,"solarSystemName":"Z:21NK","location":{"x":8440000000000000000,"y":-1810000000000000000,"z":4960000000000000000}},"30014147":{"solarSystemId":30014147,"solarSystemName":"B:344S","location":{"x":10200000000000000000,"y":-2590000000000000000,"z":3770000000000000000}},"30014148":{"solarSystemId":30014148,"solarSystemName":"Z:2LL6","location":{"x":9240000000000000000,"y":-1320000000000000000,"z":3180000000000000000}},"30014149":{"solarSystemId":30014149,"solarSystemName":"P:E9LT","location":{"x":9450000000000000000,"y":-2720000000000000000,"z":2910000000000000000}},"30014150":{"solarSystemId":30014150,"solarSystemName":"M:31K4","location":{"x":2730000000000000000,"y":-2330000000000000000,"z":10600000000000000000}},"30014151":{"solarSystemId":30014151,"solarSystemName":"J:30R3","location":{"x":3190000000000000000,"y":-2290000000000000000,"z":11300000000000000000}},"30014152":{"solarSystemId":30014152,"solarSystemName":"B:1K3T","location":{"x":2080000000000000000,"y":-2230000000000000000,"z":10800000000000000000}},"30014153":{"solarSystemId":30014153,"solarSystemName":"Q:3122","location":{"x":2770000000000000000,"y":-2630000000000000000,"z":11300000000000000000}},"30014154":{"solarSystemId":30014154,"solarSystemName":"Z:33SA","location":{"x":3380000000000000000,"y":-1550000000000000000,"z":11000000000000000000}},"30014155":{"solarSystemId":30014155,"solarSystemName":"M:2RKE","location":{"x":795000000000000000,"y":-3220000000000000000,"z":10600000000000000000}},"30014156":{"solarSystemId":30014156,"solarSystemName":"P:2RT7","location":{"x":2520000000000000000,"y":-3010000000000000000,"z":11400000000000000000}},"30014157":{"solarSystemId":30014157,"solarSystemName":"Y:309A","location":{"x":1700000000000000000,"y":-2450000000000000000,"z":10200000000000000000}},"30014158":{"solarSystemId":30014158,"solarSystemName":"M:4E26","location":{"x":3180000000000000000,"y":-2190000000000000000,"z":10300000000000000000}},"30014159":{"solarSystemId":30014159,"solarSystemName":"M:13E6","location":{"x":2090000000000000000,"y":-2010000000000000000,"z":12100000000000000000}},"30014160":{"solarSystemId":30014160,"solarSystemName":"U:382N","location":{"x":1210000000000000000,"y":501000000000000000,"z":7580000000000000000}},"30014161":{"solarSystemId":30014161,"solarSystemName":"G:2VE6","location":{"x":1790000000000000000,"y":1030000000000000000,"z":9700000000000000000}},"30014162":{"solarSystemId":30014162,"solarSystemName":"J:302K","location":{"x":3000000000000000000,"y":1720000000000000000,"z":9300000000000000000}},"30014163":{"solarSystemId":30014163,"solarSystemName":"M:34T3","location":{"x":1860000000000000000,"y":1060000000000000000,"z":8090000000000000000}},"30014164":{"solarSystemId":30014164,"solarSystemName":"B:3I29","location":{"x":2360000000000000000,"y":343000000000000000,"z":9340000000000000000}},"30014165":{"solarSystemId":30014165,"solarSystemName":"F:3912","location":{"x":2800000000000000000,"y":474000000000000000,"z":8310000000000000000}},"30014166":{"solarSystemId":30014166,"solarSystemName":"G:O811","location":{"x":1970000000000000000,"y":212000000000000000,"z":9280000000000000000}},"30014167":{"solarSystemId":30014167,"solarSystemName":"B:TN91","location":{"x":1730000000000000000,"y":652000000000000000,"z":7640000000000000000}},"30014168":{"solarSystemId":30014168,"solarSystemName":"J:11N6","location":{"x":1900000000000000000,"y":1220000000000000000,"z":8450000000000000000}},"30014169":{"solarSystemId":30014169,"solarSystemName":"B:1EN0","location":{"x":1420000000000000000,"y":754000000000000000,"z":8560000000000000000}},"30014170":{"solarSystemId":30014170,"solarSystemName":"B:2KIR","location":{"x":-361000000000000000,"y":1100000000000000000,"z":13100000000000000000}},"30014171":{"solarSystemId":30014171,"solarSystemName":"Y:3AA5","location":{"x":2050000000000000000,"y":-424000000000000000,"z":14100000000000000000}},"30014172":{"solarSystemId":30014172,"solarSystemName":"M:3RV0","location":{"x":1180000000000000000,"y":-605000000000000000,"z":13200000000000000000}},"30014173":{"solarSystemId":30014173,"solarSystemName":"H:LT19","location":{"x":1510000000000000000,"y":76300000000000000,"z":13200000000000000000}},"30014174":{"solarSystemId":30014174,"solarSystemName":"Z:10T7","location":{"x":1770000000000000000,"y":-724000000000000000,"z":11800000000000000000}},"30014175":{"solarSystemId":30014175,"solarSystemName":"Z:3A5E","location":{"x":1330000000000000000,"y":-947000000000000000,"z":11000000000000000000}},"30014176":{"solarSystemId":30014176,"solarSystemName":"P:AL83","location":{"x":1960000000000000000,"y":-1750000000000000000,"z":12600000000000000000}},"30014177":{"solarSystemId":30014177,"solarSystemName":"J:30SK","location":{"x":-5540000000000000,"y":-515000000000000000,"z":14700000000000000000}},"30014178":{"solarSystemId":30014178,"solarSystemName":"U:1NSK","location":{"x":1200000000000000000,"y":-124000000000000000,"z":13400000000000000000}},"30014179":{"solarSystemId":30014179,"solarSystemName":"Z:3791","location":{"x":1530000000000000000,"y":26500000000000000,"z":13200000000000000000}},"30014180":{"solarSystemId":30014180,"solarSystemName":"Z:2LVV","location":{"x":2830000000000000000,"y":-2360000000000000000,"z":9400000000000000000}},"30014181":{"solarSystemId":30014181,"solarSystemName":"D:2S7K","location":{"x":5090000000000000000,"y":-2280000000000000000,"z":11000000000000000000}},"30014182":{"solarSystemId":30014182,"solarSystemName":"U:22I6","location":{"x":5190000000000000000,"y":-1300000000000000000,"z":11000000000000000000}},"30014183":{"solarSystemId":30014183,"solarSystemName":"J:KKN0","location":{"x":5260000000000000000,"y":1040000000000000000,"z":12100000000000000000}},"30014184":{"solarSystemId":30014184,"solarSystemName":"J:20A0","location":{"x":5060000000000000000,"y":-1950000000000000000,"z":10900000000000000000}},"30014185":{"solarSystemId":30014185,"solarSystemName":"F:TLKS","location":{"x":5550000000000000000,"y":-613000000000000000,"z":11300000000000000000}},"30014186":{"solarSystemId":30014186,"solarSystemName":"B:1S1I","location":{"x":3900000000000000000,"y":-1760000000000000000,"z":10400000000000000000}},"30014187":{"solarSystemId":30014187,"solarSystemName":"U:3312","location":{"x":5170000000000000000,"y":-779000000000000000,"z":11500000000000000000}},"30014188":{"solarSystemId":30014188,"solarSystemName":"Q:1O86","location":{"x":4070000000000000000,"y":-1690000000000000000,"z":10100000000000000000}},"30014189":{"solarSystemId":30014189,"solarSystemName":"G:1K2R","location":{"x":4790000000000000000,"y":-1230000000000000000,"z":10700000000000000000}},"30014190":{"solarSystemId":30014190,"solarSystemName":"Y:3557","location":{"x":3770000000000000000,"y":-854000000000000000,"z":10800000000000000000}},"30014191":{"solarSystemId":30014191,"solarSystemName":"F:1OA1","location":{"x":5310000000000000000,"y":-569000000000000000,"z":11700000000000000000}},"30014192":{"solarSystemId":30014192,"solarSystemName":"D:32RI","location":{"x":5030000000000000000,"y":-1140000000000000000,"z":9550000000000000000}},"30014193":{"solarSystemId":30014193,"solarSystemName":"B:2RIT","location":{"x":5130000000000000000,"y":-1050000000000000000,"z":8540000000000000000}},"30014194":{"solarSystemId":30014194,"solarSystemName":"U:279I","location":{"x":5350000000000000000,"y":-1860000000000000000,"z":9500000000000000000}},"30014195":{"solarSystemId":30014195,"solarSystemName":"F:247O","location":{"x":5190000000000000000,"y":-1440000000000000000,"z":8770000000000000000}},"30014196":{"solarSystemId":30014196,"solarSystemName":"Q:27R2","location":{"x":4150000000000000000,"y":-772000000000000000,"z":9270000000000000000}},"30014197":{"solarSystemId":30014197,"solarSystemName":"F:T87R","location":{"x":5360000000000000000,"y":-842000000000000000,"z":8190000000000000000}},"30014198":{"solarSystemId":30014198,"solarSystemName":"D:1RLE","location":{"x":3690000000000000000,"y":-901000000000000000,"z":8770000000000000000}},"30014199":{"solarSystemId":30014199,"solarSystemName":"Y:1O9E","location":{"x":4870000000000000000,"y":-804000000000000000,"z":9300000000000000000}},"30014200":{"solarSystemId":30014200,"solarSystemName":"D:33SR","location":{"x":5060000000000000000,"y":-547000000000000000,"z":8810000000000000000}},"30014201":{"solarSystemId":30014201,"solarSystemName":"Q:12LE","location":{"x":5810000000000000000,"y":-978000000000000000,"z":9310000000000000000}},"30014202":{"solarSystemId":30014202,"solarSystemName":"G:1LIN","location":{"x":5810000000000000000,"y":-1270000000000000000,"z":9860000000000000000}},"30014203":{"solarSystemId":30014203,"solarSystemName":"H:37IV","location":{"x":2280000000000000000,"y":199000000000000000,"z":9210000000000000000}},"30014204":{"solarSystemId":30014204,"solarSystemName":"Y:2TVS","location":{"x":3140000000000000000,"y":-1180000000000000000,"z":9100000000000000000}},"30014205":{"solarSystemId":30014205,"solarSystemName":"Y:2V5N","location":{"x":2640000000000000000,"y":-2110000000000000000,"z":10100000000000000000}},"30014206":{"solarSystemId":30014206,"solarSystemName":"D:2523","location":{"x":1960000000000000000,"y":-1630000000000000000,"z":8730000000000000000}},"30014207":{"solarSystemId":30014207,"solarSystemName":"M:1N4T","location":{"x":2620000000000000000,"y":-970000000000000000,"z":10500000000000000000}},"30014208":{"solarSystemId":30014208,"solarSystemName":"Q:I8O6","location":{"x":3100000000000000000,"y":-1880000000000000000,"z":9060000000000000000}},"30014209":{"solarSystemId":30014209,"solarSystemName":"F:IR90","location":{"x":1280000000000000000,"y":-1060000000000000000,"z":9650000000000000000}},"30014210":{"solarSystemId":30014210,"solarSystemName":"H:RN0R","location":{"x":2520000000000000000,"y":-1030000000000000000,"z":9700000000000000000}},"30014211":{"solarSystemId":30014211,"solarSystemName":"H:3R3K","location":{"x":1580000000000000000,"y":-1370000000000000000,"z":8920000000000000000}},"30014212":{"solarSystemId":30014212,"solarSystemName":"G:25AR","location":{"x":1850000000000000000,"y":-1950000000000000000,"z":9620000000000000000}},"30014213":{"solarSystemId":30014213,"solarSystemName":"J:19EN","location":{"x":2570000000000000000,"y":-1880000000000000000,"z":8820000000000000000}},"30014214":{"solarSystemId":30014214,"solarSystemName":"M:3NT8","location":{"x":2350000000000000000,"y":-2030000000000000000,"z":10200000000000000000}},"30014215":{"solarSystemId":30014215,"solarSystemName":"F:3675","location":{"x":3450000000000000000,"y":-2440000000000000000,"z":8940000000000000000}},"30014216":{"solarSystemId":30014216,"solarSystemName":"H:2S3K","location":{"x":3090000000000000000,"y":1720000000000000000,"z":11900000000000000000}},"30014217":{"solarSystemId":30014217,"solarSystemName":"P:2LI8","location":{"x":682000000000000000,"y":4170000000000000000,"z":11100000000000000000}},"30014218":{"solarSystemId":30014218,"solarSystemName":"M:3485","location":{"x":2240000000000000000,"y":1180000000000000000,"z":11000000000000000000}},"30014219":{"solarSystemId":30014219,"solarSystemName":"D:3T90","location":{"x":1260000000000000000,"y":4130000000000000000,"z":11800000000000000000}},"30014220":{"solarSystemId":30014220,"solarSystemName":"J:3VR5","location":{"x":2870000000000000000,"y":1890000000000000000,"z":10500000000000000000}},"30014221":{"solarSystemId":30014221,"solarSystemName":"Z:2AV3","location":{"x":2130000000000000000,"y":3220000000000000000,"z":9220000000000000000}},"30014222":{"solarSystemId":30014222,"solarSystemName":"Z:3AKT","location":{"x":85100000000000000,"y":-729000000000000000,"z":10300000000000000000}},"30014223":{"solarSystemId":30014223,"solarSystemName":"U:2LVO","location":{"x":-52000000000000000,"y":-1490000000000000000,"z":10400000000000000000}},"30014224":{"solarSystemId":30014224,"solarSystemName":"B:3947","location":{"x":-47400000000000000,"y":-1250000000000000000,"z":10100000000000000000}},"30014225":{"solarSystemId":30014225,"solarSystemName":"Q:1RVE","location":{"x":331000000000000000,"y":-919000000000000000,"z":10900000000000000000}},"30014226":{"solarSystemId":30014226,"solarSystemName":"B:2TK0","location":{"x":1260000000000000000,"y":-1090000000000000000,"z":10300000000000000000}},"30014227":{"solarSystemId":30014227,"solarSystemName":"M:1VL7","location":{"x":204000000000000000,"y":-1620000000000000000,"z":10900000000000000000}},"30014228":{"solarSystemId":30014228,"solarSystemName":"Z:10E6","location":{"x":850000000000000000,"y":-1370000000000000000,"z":10200000000000000000}},"30014229":{"solarSystemId":30014229,"solarSystemName":"Y:28K0","location":{"x":-208000000000000000,"y":-1950000000000000000,"z":10900000000000000000}},"30014230":{"solarSystemId":30014230,"solarSystemName":"Z:2T0R","location":{"x":-550000000000000000,"y":-1520000000000000000,"z":10800000000000000000}},"30014231":{"solarSystemId":30014231,"solarSystemName":"H:3O85","location":{"x":582000000000000000,"y":-1470000000000000000,"z":9950000000000000000}},"30014232":{"solarSystemId":30014232,"solarSystemName":"Y:13I5","location":{"x":149000000000000000,"y":-1140000000000000000,"z":10800000000000000000}},"30014233":{"solarSystemId":30014233,"solarSystemName":"G:14EA","location":{"x":-476000000000000000,"y":-1070000000000000000,"z":10500000000000000000}},"30014234":{"solarSystemId":30014234,"solarSystemName":"Q:2L5E","location":{"x":8650000000000000000,"y":-7740000000000000000,"z":1310000000000000000}},"30014235":{"solarSystemId":30014235,"solarSystemName":"Z:3A0L","location":{"x":8950000000000000000,"y":-6340000000000000000,"z":954000000000000000}},"30014236":{"solarSystemId":30014236,"solarSystemName":"P:35NO","location":{"x":7830000000000000000,"y":-6230000000000000000,"z":1100000000000000000}},"30014237":{"solarSystemId":30014237,"solarSystemName":"F:3VTN","location":{"x":7440000000000000000,"y":-5450000000000000000,"z":3210000000000000000}},"30014238":{"solarSystemId":30014238,"solarSystemName":"H:2L78","location":{"x":7240000000000000000,"y":-4040000000000000000,"z":2950000000000000000}},"30014239":{"solarSystemId":30014239,"solarSystemName":"D:13R0","location":{"x":5530000000000000000,"y":-7430000000000000000,"z":922000000000000000}},"30014240":{"solarSystemId":30014240,"solarSystemName":"P:35V8","location":{"x":4160000000000000000,"y":-2910000000000000000,"z":2850000000000000000}},"30014241":{"solarSystemId":30014241,"solarSystemName":"Q:3EEL","location":{"x":5190000000000000000,"y":-5240000000000000000,"z":2420000000000000000}},"30014242":{"solarSystemId":30014242,"solarSystemName":"D:29S0","location":{"x":4410000000000000000,"y":-4900000000000000000,"z":2130000000000000000}},"30014243":{"solarSystemId":30014243,"solarSystemName":"D:3722","location":{"x":4420000000000000000,"y":-3560000000000000000,"z":2980000000000000000}},"30014244":{"solarSystemId":30014244,"solarSystemName":"M:3EVE","location":{"x":4850000000000000000,"y":-5920000000000000000,"z":2210000000000000000}},"30014245":{"solarSystemId":30014245,"solarSystemName":"P:2EEA","location":{"x":4290000000000000000,"y":-3650000000000000000,"z":2010000000000000000}},"30014246":{"solarSystemId":30014246,"solarSystemName":"Z:2E4S","location":{"x":4520000000000000000,"y":-6210000000000000000,"z":3520000000000000000}},"30014247":{"solarSystemId":30014247,"solarSystemName":"H:2KI7","location":{"x":5150000000000000000,"y":-3620000000000000000,"z":-258000000000000000}},"30014248":{"solarSystemId":30014248,"solarSystemName":"P:356R","location":{"x":5990000000000000000,"y":-3170000000000000000,"z":-1610000000000000000}},"30014249":{"solarSystemId":30014249,"solarSystemName":"G:342S","location":{"x":5920000000000000000,"y":-3070000000000000000,"z":909000000000000000}},"30014250":{"solarSystemId":30014250,"solarSystemName":"D:34VK","location":{"x":4680000000000000000,"y":-3520000000000000000,"z":1160000000000000000}},"30014251":{"solarSystemId":30014251,"solarSystemName":"H:3TIL","location":{"x":4050000000000000000,"y":-4580000000000000000,"z":921000000000000000}},"30014252":{"solarSystemId":30014252,"solarSystemName":"G:3953","location":{"x":5850000000000000000,"y":-3600000000000000000,"z":-1340000000000000000}},"30014253":{"solarSystemId":30014253,"solarSystemName":"J:3ASO","location":{"x":4780000000000000000,"y":-3880000000000000000,"z":-2550000000000000000}},"30014254":{"solarSystemId":30014254,"solarSystemName":"G:3T8V","location":{"x":5480000000000000000,"y":-3450000000000000000,"z":-2100000000000000000}},"30014255":{"solarSystemId":30014255,"solarSystemName":"D:1ONI","location":{"x":5280000000000000000,"y":-4340000000000000000,"z":-2140000000000000000}},"30014256":{"solarSystemId":30014256,"solarSystemName":"P:3ITI","location":{"x":2210000000000000000,"y":-9170000000000000000,"z":8010000000000000000}},"30014257":{"solarSystemId":30014257,"solarSystemName":"Q:2A23","location":{"x":4490000000000000000,"y":-7370000000000000000,"z":5380000000000000000}},"30014258":{"solarSystemId":30014258,"solarSystemName":"Q:39EO","location":{"x":467000000000000000,"y":-9800000000000000000,"z":3210000000000000000}},"30014259":{"solarSystemId":30014259,"solarSystemName":"Z:39R4","location":{"x":1570000000000000000,"y":-8060000000000000000,"z":5100000000000000000}},"30014260":{"solarSystemId":30014260,"solarSystemName":"D:37RK","location":{"x":3180000000000000000,"y":-9720000000000000000,"z":5410000000000000000}},"30014261":{"solarSystemId":30014261,"solarSystemName":"J:3996","location":{"x":3370000000000000000,"y":-5820000000000000000,"z":2940000000000000000}},"30014262":{"solarSystemId":30014262,"solarSystemName":"H:3IO4","location":{"x":3020000000000000000,"y":-7010000000000000000,"z":2760000000000000000}},"30014263":{"solarSystemId":30014263,"solarSystemName":"Y:2O18","location":{"x":3260000000000000000,"y":-6160000000000000000,"z":2690000000000000000}},"30014264":{"solarSystemId":30014264,"solarSystemName":"B:3ON5","location":{"x":2850000000000000000,"y":-6610000000000000000,"z":3890000000000000000}},"30014265":{"solarSystemId":30014265,"solarSystemName":"D:2VE0","location":{"x":3090000000000000000,"y":-6370000000000000000,"z":4060000000000000000}},"30014266":{"solarSystemId":30014266,"solarSystemName":"B:395L","location":{"x":7200000000000000000,"y":-4790000000000000000,"z":2290000000000000000}},"30014267":{"solarSystemId":30014267,"solarSystemName":"G:2OTO","location":{"x":7070000000000000000,"y":-4900000000000000000,"z":-311000000000000000}},"30014268":{"solarSystemId":30014268,"solarSystemName":"Z:2I1L","location":{"x":6910000000000000000,"y":-5220000000000000000,"z":2090000000000000000}},"30014269":{"solarSystemId":30014269,"solarSystemName":"G:3S80","location":{"x":6960000000000000000,"y":-3790000000000000000,"z":1530000000000000000}},"30014270":{"solarSystemId":30014270,"solarSystemName":"Y:3NK0","location":{"x":6190000000000000000,"y":-4880000000000000000,"z":823000000000000000}},"30014271":{"solarSystemId":30014271,"solarSystemName":"J:3851","location":{"x":4780000000000000000,"y":-4310000000000000000,"z":464000000000000000}},"30014272":{"solarSystemId":30014272,"solarSystemName":"Q:2K0O","location":{"x":5080000000000000000,"y":-5340000000000000000,"z":28500000000000000}},"30014273":{"solarSystemId":30014273,"solarSystemName":"U.KVR.QM1","location":{"x":15700000000000000000,"y":-1790000000000000000,"z":13900000000000000000}},"30014274":{"solarSystemId":30014274,"solarSystemName":"T.W6R.MD1","location":{"x":15200000000000000000,"y":-1710000000000000000,"z":12800000000000000000}},"30014275":{"solarSystemId":30014275,"solarSystemName":"D.41N.MH1","location":{"x":13900000000000000000,"y":-2040000000000000000,"z":14500000000000000000}},"30014276":{"solarSystemId":30014276,"solarSystemName":"H.68N.7R1","location":{"x":14100000000000000000,"y":-1630000000000000000,"z":15700000000000000000}},"30014277":{"solarSystemId":30014277,"solarSystemName":"S.VJT.3X1","location":{"x":13600000000000000000,"y":-2090000000000000000,"z":12800000000000000000}},"30014278":{"solarSystemId":30014278,"solarSystemName":"N.C3R.881","location":{"x":15100000000000000000,"y":-1450000000000000000,"z":13400000000000000000}},"30014279":{"solarSystemId":30014279,"solarSystemName":"H.T6R.WLY","location":{"x":15200000000000000000,"y":-990000000000000000,"z":16200000000000000000}},"30014280":{"solarSystemId":30014280,"solarSystemName":"A.H9R.1KV","location":{"x":15300000000000000000,"y":-718000000000000000,"z":17100000000000000000}},"30014281":{"solarSystemId":30014281,"solarSystemName":"T.09L.6WF","location":{"x":16500000000000000000,"y":-789000000000000000,"z":17200000000000000000}},"30014282":{"solarSystemId":30014282,"solarSystemName":"H.BBR.XWP","location":{"x":15800000000000000000,"y":-682000000000000000,"z":16900000000000000000}},"30014283":{"solarSystemId":30014283,"solarSystemName":"D.ZYR.MGC","location":{"x":16000000000000000000,"y":-603000000000000000,"z":17200000000000000000}},"30014284":{"solarSystemId":30014284,"solarSystemName":"R.B9R.8MM","location":{"x":15300000000000000000,"y":-632000000000000000,"z":17000000000000000000}},"30014285":{"solarSystemId":30014285,"solarSystemName":"D.18R.2FX","location":{"x":15300000000000000000,"y":-960000000000000000,"z":17000000000000000000}},"30014286":{"solarSystemId":30014286,"solarSystemName":"T.10R.0LF","location":{"x":15000000000000000000,"y":-772000000000000000,"z":16500000000000000000}},"30014287":{"solarSystemId":30014287,"solarSystemName":"A.KZN.PQC","location":{"x":14900000000000000000,"y":-600000000000000000,"z":16700000000000000000}},"30014288":{"solarSystemId":30014288,"solarSystemName":"U.05R.G3H","location":{"x":15200000000000000000,"y":-869000000000000000,"z":16400000000000000000}},"30014289":{"solarSystemId":30014289,"solarSystemName":"A.Q3R.7WV","location":{"x":15100000000000000000,"y":-717000000000000000,"z":17000000000000000000}},"30014290":{"solarSystemId":30014290,"solarSystemName":"T.44R.V8G","location":{"x":15100000000000000000,"y":-838000000000000000,"z":17100000000000000000}},"30014291":{"solarSystemId":30014291,"solarSystemName":"R.B7L.Q2Y","location":{"x":16400000000000000000,"y":-976000000000000000,"z":16500000000000000000}},"30014292":{"solarSystemId":30014292,"solarSystemName":"U.HKD.ZLX","location":{"x":18400000000000000000,"y":-954000000000000000,"z":17000000000000000000}},"30014293":{"solarSystemId":30014293,"solarSystemName":"I.W0R.7S2","location":{"x":15000000000000000000,"y":-2680000000000000000,"z":17300000000000000000}},"30014294":{"solarSystemId":30014294,"solarSystemName":"E.4XR.NH1","location":{"x":15900000000000000000,"y":-2030000000000000000,"z":17800000000000000000}},"30014295":{"solarSystemId":30014295,"solarSystemName":"I.CLL.D7K","location":{"x":16700000000000000000,"y":-1090000000000000000,"z":17400000000000000000}},"30014296":{"solarSystemId":30014296,"solarSystemName":"U.P4L.5B2","location":{"x":16300000000000000000,"y":-3100000000000000000,"z":18200000000000000000}},"30014297":{"solarSystemId":30014297,"solarSystemName":"I.HLL.BZG","location":{"x":16700000000000000000,"y":-861000000000000000,"z":17700000000000000000}},"30014298":{"solarSystemId":30014298,"solarSystemName":"N.JZR.P4Y","location":{"x":16000000000000000000,"y":-978000000000000000,"z":17700000000000000000}},"30014299":{"solarSystemId":30014299,"solarSystemName":"N.2QC.061","location":{"x":19200000000000000000,"y":-1370000000000000000,"z":16400000000000000000}},"30014300":{"solarSystemId":30014300,"solarSystemName":"I.QHT.2QQ","location":{"x":13600000000000000000,"y":-743000000000000000,"z":18700000000000000000}},"30014301":{"solarSystemId":30014301,"solarSystemName":"T.CDN.3QB","location":{"x":14400000000000000000,"y":-815000000000000000,"z":18100000000000000000}},"30014302":{"solarSystemId":30014302,"solarSystemName":"D.YQN.0XD","location":{"x":14600000000000000000,"y":-570000000000000000,"z":17800000000000000000}},"30014303":{"solarSystemId":30014303,"solarSystemName":"A.PWN.FWV","location":{"x":14900000000000000000,"y":-718000000000000000,"z":17300000000000000000}},"30014304":{"solarSystemId":30014304,"solarSystemName":"N.YBN.5FX","location":{"x":14700000000000000000,"y":-961000000000000000,"z":17600000000000000000}},"30014305":{"solarSystemId":30014305,"solarSystemName":"H.5DN.9QC","location":{"x":14400000000000000000,"y":-599000000000000000,"z":17800000000000000000}},"30014306":{"solarSystemId":30014306,"solarSystemName":"S.4MN.LP9","location":{"x":14500000000000000000,"y":-345000000000000000,"z":18400000000000000000}},"30014307":{"solarSystemId":30014307,"solarSystemName":"E.GQR.V5X","location":{"x":15700000000000000000,"y":-943000000000000000,"z":17400000000000000000}},"30014308":{"solarSystemId":30014308,"solarSystemName":"H.TTR.W6Z","location":{"x":15400000000000000000,"y":-1020000000000000000,"z":17600000000000000000}},"30014309":{"solarSystemId":30014309,"solarSystemName":"H.XDR.F9Y","location":{"x":15600000000000000000,"y":-984000000000000000,"z":17900000000000000000}},"30014310":{"solarSystemId":30014310,"solarSystemName":"T.D8R.M5X","location":{"x":15300000000000000000,"y":-943000000000000000,"z":17100000000000000000}},"30014311":{"solarSystemId":30014311,"solarSystemName":"S.9EN.4BB","location":{"x":15000000000000000000,"y":-818000000000000000,"z":17400000000000000000}},"30014312":{"solarSystemId":30014312,"solarSystemName":"Avarice","location":{"x":15200000000000000000,"y":-849000000000000000,"z":17400000000000000000}},"30014313":{"solarSystemId":30014313,"solarSystemName":"T.FZN.JFF","location":{"x":14900000000000000000,"y":-781000000000000000,"z":17000000000000000000}},"30014314":{"solarSystemId":30014314,"solarSystemName":"I.7MN.H4G","location":{"x":14500000000000000000,"y":-834000000000000000,"z":16300000000000000000}},"30014315":{"solarSystemId":30014315,"solarSystemName":"L.LHN.R9F","location":{"x":14700000000000000000,"y":-767000000000000000,"z":17000000000000000000}},"30014316":{"solarSystemId":30014316,"solarSystemName":"S.RDN.YXQ","location":{"x":14400000000000000000,"y":-751000000000000000,"z":16000000000000000000}},"30014317":{"solarSystemId":30014317,"solarSystemName":"D.YDN.J3J","location":{"x":14400000000000000000,"y":-905000000000000000,"z":16600000000000000000}},"30014318":{"solarSystemId":30014318,"solarSystemName":"R.0PN.1JH","location":{"x":14500000000000000000,"y":-893000000000000000,"z":17200000000000000000}},"30014319":{"solarSystemId":30014319,"solarSystemName":"U.LDN.RFV","location":{"x":14400000000000000000,"y":-709000000000000000,"z":17000000000000000000}},"30014320":{"solarSystemId":30014320,"solarSystemName":"L.JLN.KTG","location":{"x":14400000000000000000,"y":-842000000000000000,"z":17200000000000000000}},"30014321":{"solarSystemId":30014321,"solarSystemName":"Q:3E5R","location":{"x":6190000000000000000,"y":-2730000000000000000,"z":-6680000000000000000}},"30014322":{"solarSystemId":30014322,"solarSystemName":"M:2LL5","location":{"x":5290000000000000000,"y":-2530000000000000000,"z":-6600000000000000000}},"30014323":{"solarSystemId":30014323,"solarSystemName":"P:1E6S","location":{"x":4550000000000000000,"y":-1150000000000000000,"z":-7210000000000000000}},"30014324":{"solarSystemId":30014324,"solarSystemName":"G:380I","location":{"x":5420000000000000000,"y":-1800000000000000000,"z":-6630000000000000000}},"30014325":{"solarSystemId":30014325,"solarSystemName":"U:344I","location":{"x":5200000000000000000,"y":-2800000000000000000,"z":-6770000000000000000}},"30014326":{"solarSystemId":30014326,"solarSystemName":"G:2II2","location":{"x":6000000000000000000,"y":-2460000000000000000,"z":-6500000000000000000}},"30014327":{"solarSystemId":30014327,"solarSystemName":"F:3A9S","location":{"x":5040000000000000000,"y":-1220000000000000000,"z":-6630000000000000000}},"30014328":{"solarSystemId":30014328,"solarSystemName":"H:2SN3","location":{"x":4330000000000000000,"y":-2010000000000000000,"z":-5980000000000000000}},"30014329":{"solarSystemId":30014329,"solarSystemName":"U:T9V4","location":{"x":5980000000000000000,"y":-1540000000000000000,"z":-6960000000000000000}},"30014330":{"solarSystemId":30014330,"solarSystemName":"Z:308N","location":{"x":5630000000000000000,"y":-1330000000000000000,"z":-7210000000000000000}},"30014331":{"solarSystemId":30014331,"solarSystemName":"D:1ARL","location":{"x":5460000000000000000,"y":-1750000000000000000,"z":-5640000000000000000}},"30014332":{"solarSystemId":30014332,"solarSystemName":"U:3684","location":{"x":4360000000000000000,"y":-6280000000000000000,"z":-8500000000000000000}},"30014333":{"solarSystemId":30014333,"solarSystemName":"M:3EAE","location":{"x":3970000000000000000,"y":-3400000000000000000,"z":-5980000000000000000}},"30014334":{"solarSystemId":30014334,"solarSystemName":"G:30T6","location":{"x":2480000000000000000,"y":-2840000000000000000,"z":-8510000000000000000}},"30014335":{"solarSystemId":30014335,"solarSystemName":"U:3NL8","location":{"x":4210000000000000000,"y":-2170000000000000000,"z":-8640000000000000000}},"30014336":{"solarSystemId":30014336,"solarSystemName":"G:3OLS","location":{"x":3430000000000000000,"y":-4690000000000000000,"z":-5910000000000000000}},"30014337":{"solarSystemId":30014337,"solarSystemName":"U:2V9R","location":{"x":2880000000000000000,"y":-4530000000000000000,"z":-9560000000000000000}},"30014338":{"solarSystemId":30014338,"solarSystemName":"Q:35SA","location":{"x":4200000000000000000,"y":-3900000000000000000,"z":-8340000000000000000}},"30014339":{"solarSystemId":30014339,"solarSystemName":"F:N8NA","location":{"x":6700000000000000000,"y":-538000000000000000,"z":-7720000000000000000}},"30014340":{"solarSystemId":30014340,"solarSystemName":"G:37TT","location":{"x":6480000000000000000,"y":-446000000000000000,"z":-6600000000000000000}},"30014341":{"solarSystemId":30014341,"solarSystemName":"Z:218N","location":{"x":6280000000000000000,"y":-671000000000000000,"z":-7150000000000000000}},"30014342":{"solarSystemId":30014342,"solarSystemName":"Y:1SS7","location":{"x":6780000000000000000,"y":-703000000000000000,"z":-6530000000000000000}},"30014343":{"solarSystemId":30014343,"solarSystemName":"D:24KE","location":{"x":6410000000000000000,"y":-505000000000000000,"z":-7030000000000000000}},"30014344":{"solarSystemId":30014344,"solarSystemName":"D:3979","location":{"x":6020000000000000000,"y":-655000000000000000,"z":-6970000000000000000}},"30014345":{"solarSystemId":30014345,"solarSystemName":"D:1IS1","location":{"x":6400000000000000000,"y":-860000000000000000,"z":-6900000000000000000}},"30014346":{"solarSystemId":30014346,"solarSystemName":"M:IKSV","location":{"x":6710000000000000000,"y":-1270000000000000000,"z":-7730000000000000000}},"30014347":{"solarSystemId":30014347,"solarSystemName":"Y:10A3","location":{"x":5980000000000000000,"y":-420000000000000000,"z":-6460000000000000000}},"30014348":{"solarSystemId":30014348,"solarSystemName":"G:26N0","location":{"x":5070000000000000000,"y":-219000000000000000,"z":-6990000000000000000}},"30014349":{"solarSystemId":30014349,"solarSystemName":"H:1V71","location":{"x":6850000000000000000,"y":-554000000000000000,"z":-7250000000000000000}},"30014350":{"solarSystemId":30014350,"solarSystemName":"D:30EK","location":{"x":6340000000000000000,"y":-1120000000000000000,"z":-6680000000000000000}},"30014351":{"solarSystemId":30014351,"solarSystemName":"F:2T64","location":{"x":5550000000000000000,"y":-703000000000000000,"z":-7110000000000000000}},"30014352":{"solarSystemId":30014352,"solarSystemName":"Z:1T8I","location":{"x":5700000000000000000,"y":-458000000000000000,"z":-7040000000000000000}},"30014353":{"solarSystemId":30014353,"solarSystemName":"P:3NAT","location":{"x":6340000000000000000,"y":-930000000000000000,"z":-7270000000000000000}},"30014354":{"solarSystemId":30014354,"solarSystemName":"U:340N","location":{"x":6800000000000000000,"y":-760000000000000000,"z":-5800000000000000000}},"30014355":{"solarSystemId":30014355,"solarSystemName":"B:303A","location":{"x":6800000000000000000,"y":86300000000000000,"z":-6420000000000000000}},"30014356":{"solarSystemId":30014356,"solarSystemName":"P:23IK","location":{"x":6990000000000000000,"y":-306000000000000000,"z":-5720000000000000000}},"30014357":{"solarSystemId":30014357,"solarSystemName":"P:3VAT","location":{"x":7260000000000000000,"y":-465000000000000000,"z":-5870000000000000000}},"30014358":{"solarSystemId":30014358,"solarSystemName":"G:O3IT","location":{"x":6420000000000000000,"y":-625000000000000000,"z":-6040000000000000000}},"30014359":{"solarSystemId":30014359,"solarSystemName":"H:1E7O","location":{"x":6400000000000000000,"y":-772000000000000000,"z":-5750000000000000000}},"30014360":{"solarSystemId":30014360,"solarSystemName":"B:I0VO","location":{"x":5880000000000000000,"y":-5330000000000000,"z":-6770000000000000000}},"30014361":{"solarSystemId":30014361,"solarSystemName":"U:2NO4","location":{"x":6690000000000000000,"y":-328000000000000000,"z":-5620000000000000000}},"30014362":{"solarSystemId":30014362,"solarSystemName":"G:1VRN","location":{"x":6500000000000000000,"y":-545000000000000000,"z":-5920000000000000000}},"30014363":{"solarSystemId":30014363,"solarSystemName":"H:26EV","location":{"x":7230000000000000000,"y":-327000000000000000,"z":-5700000000000000000}},"30014364":{"solarSystemId":30014364,"solarSystemName":"Q:1A86","location":{"x":7200000000000000000,"y":-389000000000000000,"z":-5630000000000000000}},"30014365":{"solarSystemId":30014365,"solarSystemName":"Z:33L4","location":{"x":7030000000000000000,"y":66900000000000000,"z":-5870000000000000000}},"30014366":{"solarSystemId":30014366,"solarSystemName":"U:3O1I","location":{"x":5960000000000000000,"y":-52900000000000000,"z":-6330000000000000000}},"30014367":{"solarSystemId":30014367,"solarSystemName":"D:26RL","location":{"x":6090000000000000000,"y":-671000000000000000,"z":-6330000000000000000}},"30014368":{"solarSystemId":30014368,"solarSystemName":"Y:334T","location":{"x":6370000000000000000,"y":-1640000000000000000,"z":-4480000000000000000}},"30014369":{"solarSystemId":30014369,"solarSystemName":"M:1EIK","location":{"x":5970000000000000000,"y":-2950000000000000000,"z":-3020000000000000000}},"30014370":{"solarSystemId":30014370,"solarSystemName":"Z:236N","location":{"x":6680000000000000000,"y":-2350000000000000000,"z":-4730000000000000000}},"30014371":{"solarSystemId":30014371,"solarSystemName":"G:1NSA","location":{"x":6810000000000000000,"y":-2170000000000000000,"z":-4730000000000000000}},"30014372":{"solarSystemId":30014372,"solarSystemName":"D:1KRK","location":{"x":6340000000000000000,"y":-2690000000000000000,"z":-2860000000000000000}},"30014373":{"solarSystemId":30014373,"solarSystemName":"Z:24IA","location":{"x":5950000000000000000,"y":-2050000000000000000,"z":-4680000000000000000}},"30014374":{"solarSystemId":30014374,"solarSystemName":"Y:3V7T","location":{"x":6420000000000000000,"y":-2700000000000000000,"z":-3630000000000000000}},"30014375":{"solarSystemId":30014375,"solarSystemName":"H:1RLA","location":{"x":6080000000000000000,"y":-1950000000000000000,"z":-4110000000000000000}},"30014376":{"solarSystemId":30014376,"solarSystemName":"J:11O3","location":{"x":6520000000000000000,"y":-2480000000000000000,"z":-3700000000000000000}},"30014377":{"solarSystemId":30014377,"solarSystemName":"Y:4NLS","location":{"x":6800000000000000000,"y":-2990000000000000000,"z":-3420000000000000000}},"30014378":{"solarSystemId":30014378,"solarSystemName":"Z:3S06","location":{"x":6050000000000000000,"y":-1270000000000000000,"z":-4680000000000000000}},"30014379":{"solarSystemId":30014379,"solarSystemName":"J:214O","location":{"x":5470000000000000000,"y":-648000000000000000,"z":-6440000000000000000}},"30014380":{"solarSystemId":30014380,"solarSystemName":"P:1TRL","location":{"x":6310000000000000000,"y":-1480000000000000000,"z":-5360000000000000000}},"30014381":{"solarSystemId":30014381,"solarSystemName":"H:218A","location":{"x":6640000000000000000,"y":-1300000000000000000,"z":-4710000000000000000}},"30014382":{"solarSystemId":30014382,"solarSystemName":"F:34N9","location":{"x":7050000000000000000,"y":-2090000000000000000,"z":-5190000000000000000}},"30014383":{"solarSystemId":30014383,"solarSystemName":"Z:1E2V","location":{"x":6730000000000000000,"y":-942000000000000000,"z":-5200000000000000000}},"30014384":{"solarSystemId":30014384,"solarSystemName":"J:KNI4","location":{"x":5880000000000000000,"y":-1320000000000000000,"z":-5280000000000000000}},"30014385":{"solarSystemId":30014385,"solarSystemName":"D:3OSV","location":{"x":4390000000000000000,"y":-1070000000000000000,"z":-5430000000000000000}},"30014386":{"solarSystemId":30014386,"solarSystemName":"B:1OL2","location":{"x":6850000000000000000,"y":-1070000000000000000,"z":-4880000000000000000}},"30014387":{"solarSystemId":30014387,"solarSystemName":"M:14A7","location":{"x":5540000000000000000,"y":-1460000000000000000,"z":-5410000000000000000}},"30014388":{"solarSystemId":30014388,"solarSystemName":"F:OATK","location":{"x":5630000000000000000,"y":-2170000000000000000,"z":-4830000000000000000}},"30014389":{"solarSystemId":30014389,"solarSystemName":"Z:I8LR","location":{"x":6410000000000000000,"y":-1570000000000000000,"z":-5000000000000000000}},"30014390":{"solarSystemId":30014390,"solarSystemName":"G:1L1K","location":{"x":6050000000000000000,"y":-1910000000000000000,"z":-5400000000000000000}},"30014391":{"solarSystemId":30014391,"solarSystemName":"F:32I1","location":{"x":3750000000000000000,"y":-558000000000000000,"z":-4140000000000000000}},"30014392":{"solarSystemId":30014392,"solarSystemName":"B:1TS6","location":{"x":4010000000000000000,"y":62100000000000000,"z":-5480000000000000000}},"30014393":{"solarSystemId":30014393,"solarSystemName":"D:26SO","location":{"x":3160000000000000000,"y":466000000000000000,"z":-4480000000000000000}},"30014394":{"solarSystemId":30014394,"solarSystemName":"P:24A0","location":{"x":4250000000000000000,"y":-188000000000000000,"z":-5130000000000000000}},"30014395":{"solarSystemId":30014395,"solarSystemName":"J:2772","location":{"x":3390000000000000000,"y":317000000000000000,"z":-4300000000000000000}},"30014396":{"solarSystemId":30014396,"solarSystemName":"M:3R62","location":{"x":2510000000000000000,"y":-50400000000000000,"z":-3920000000000000000}},"30014397":{"solarSystemId":30014397,"solarSystemName":"M:1IK4","location":{"x":4290000000000000000,"y":-660000000000000000,"z":-3390000000000000000}},"30014398":{"solarSystemId":30014398,"solarSystemName":"B:31L1","location":{"x":3890000000000000000,"y":135000000000000000,"z":-4790000000000000000}},"30014399":{"solarSystemId":30014399,"solarSystemName":"Q:1L7T","location":{"x":3980000000000000000,"y":-525000000000000000,"z":-5250000000000000000}},"30014400":{"solarSystemId":30014400,"solarSystemName":"B:O077","location":{"x":3830000000000000000,"y":-123000000000000000,"z":-3610000000000000000}},"30014401":{"solarSystemId":30014401,"solarSystemName":"B:2LN5","location":{"x":3860000000000000000,"y":-1840000000000000000,"z":-4670000000000000000}},"30014402":{"solarSystemId":30014402,"solarSystemName":"F:3OAO","location":{"x":3950000000000000000,"y":95300000000000000,"z":-4100000000000000000}},"30014403":{"solarSystemId":30014403,"solarSystemName":"P:1221","location":{"x":2560000000000000000,"y":41800000000000000,"z":-4410000000000000000}},"30014404":{"solarSystemId":30014404,"solarSystemName":"F:N275","location":{"x":4030000000000000000,"y":79800000000000000,"z":-5270000000000000000}},"30014405":{"solarSystemId":30014405,"solarSystemName":"P:1T6V","location":{"x":3070000000000000000,"y":90800000000000000,"z":-3840000000000000000}},"30014406":{"solarSystemId":30014406,"solarSystemName":"Y:39NR","location":{"x":2770000000000000000,"y":-5710000000000000000,"z":-6270000000000000000}},"30014407":{"solarSystemId":30014407,"solarSystemName":"G:2L6R","location":{"x":2570000000000000000,"y":-5770000000000000000,"z":-6910000000000000000}},"30014408":{"solarSystemId":30014408,"solarSystemName":"B:3RS3","location":{"x":2230000000000000000,"y":-5270000000000000000,"z":-6820000000000000000}},"30014409":{"solarSystemId":30014409,"solarSystemName":"U:2VS0","location":{"x":3400000000000000000,"y":-5770000000000000000,"z":-6470000000000000000}},"30014410":{"solarSystemId":30014410,"solarSystemName":"Z:3O67","location":{"x":2830000000000000000,"y":-4820000000000000000,"z":-7400000000000000000}},"30014411":{"solarSystemId":30014411,"solarSystemName":"D:3167","location":{"x":2000000000000000000,"y":-4300000000000000000,"z":-6940000000000000000}},"30014412":{"solarSystemId":30014412,"solarSystemName":"B:363N","location":{"x":5010000000000000000,"y":-4680000000000000000,"z":-6410000000000000000}},"30014413":{"solarSystemId":30014413,"solarSystemName":"Q:3330","location":{"x":3820000000000000000,"y":-4290000000000000000,"z":-6030000000000000000}},"30014414":{"solarSystemId":30014414,"solarSystemName":"P:2I8N","location":{"x":4820000000000000000,"y":-4800000000000000000,"z":-5180000000000000000}},"30014415":{"solarSystemId":30014415,"solarSystemName":"M:2VKT","location":{"x":4440000000000000000,"y":-4320000000000000000,"z":-6330000000000000000}},"30014416":{"solarSystemId":30014416,"solarSystemName":"H:2RSV","location":{"x":4210000000000000000,"y":-5530000000000000000,"z":-6500000000000000000}},"30014417":{"solarSystemId":30014417,"solarSystemName":"Y:38K0","location":{"x":4480000000000000000,"y":-3940000000000000000,"z":-5620000000000000000}},"30014418":{"solarSystemId":30014418,"solarSystemName":"Z:2NLT","location":{"x":1650000000000000000,"y":-10100000000000000000,"z":-8330000000000000000}},"30014419":{"solarSystemId":30014419,"solarSystemName":"Q:3O62","location":{"x":3100000000000000000,"y":-12100000000000000000,"z":-8620000000000000000}},"30014420":{"solarSystemId":30014420,"solarSystemName":"U:3ALI","location":{"x":1870000000000000000,"y":-7450000000000000000,"z":-5090000000000000000}},"30014421":{"solarSystemId":30014421,"solarSystemName":"F:2A93","location":{"x":-1650000000000000000,"y":-7470000000000000000,"z":-8920000000000000000}},"30014422":{"solarSystemId":30014422,"solarSystemName":"Y:3E10","location":{"x":528000000000000000,"y":-11800000000000000000,"z":-6110000000000000000}},"30014423":{"solarSystemId":30014423,"solarSystemName":"B:3058","location":{"x":4570000000000000000,"y":-5110000000000000000,"z":-3550000000000000000}},"30014424":{"solarSystemId":30014424,"solarSystemName":"D:2R7E","location":{"x":6310000000000000000,"y":-5040000000000000000,"z":-4760000000000000000}},"30014425":{"solarSystemId":30014425,"solarSystemName":"F:2E72","location":{"x":7410000000000000000,"y":-5130000000000000000,"z":-3430000000000000000}},"30014426":{"solarSystemId":30014426,"solarSystemName":"P:2RS1","location":{"x":5930000000000000000,"y":-5230000000000000000,"z":-3930000000000000000}},"30014427":{"solarSystemId":30014427,"solarSystemName":"Q:2IE5","location":{"x":6530000000000000000,"y":-4770000000000000000,"z":-3060000000000000000}},"30014428":{"solarSystemId":30014428,"solarSystemName":"Z:2292","location":{"x":6310000000000000000,"y":-4180000000000000000,"z":-4640000000000000000}},"30014429":{"solarSystemId":30014429,"solarSystemName":"G:22SV","location":{"x":7090000000000000000,"y":-5430000000000000000,"z":-3260000000000000000}},"30014430":{"solarSystemId":30014430,"solarSystemName":"J:35R4","location":{"x":4510000000000000000,"y":-4730000000000000000,"z":-5060000000000000000}},"30014431":{"solarSystemId":30014431,"solarSystemName":"Q:39ET","location":{"x":4740000000000000000,"y":-7280000000000000000,"z":-5560000000000000000}},"30014432":{"solarSystemId":30014432,"solarSystemName":"U:2NTT","location":{"x":4700000000000000000,"y":-6110000000000000000,"z":-4880000000000000000}},"30014433":{"solarSystemId":30014433,"solarSystemName":"M:3990","location":{"x":3670000000000000000,"y":-6630000000000000000,"z":-3790000000000000000}},"30014434":{"solarSystemId":30014434,"solarSystemName":"B:2TTV","location":{"x":5240000000000000000,"y":-4840000000000000000,"z":-5030000000000000000}},"30014435":{"solarSystemId":30014435,"solarSystemName":"A.EDN.BC4","location":{"x":14400000000000000000,"y":-5210000000000000000,"z":-1710000000000000000}},"30014436":{"solarSystemId":30014436,"solarSystemName":"D.R1R.S35","location":{"x":15000000000000000000,"y":-5880000000000000000,"z":-2320000000000000000}},"30014437":{"solarSystemId":30014437,"solarSystemName":"N.2XR.SK4","location":{"x":15900000000000000000,"y":-5700000000000000000,"z":146000000000000000}},"30014438":{"solarSystemId":30014438,"solarSystemName":"U.MLN.1X4","location":{"x":14400000000000000000,"y":-5550000000000000000,"z":-282000000000000000}},"30014439":{"solarSystemId":30014439,"solarSystemName":"O.6HN.065","location":{"x":14700000000000000000,"y":-5980000000000000000,"z":-831000000000000000}},"30014440":{"solarSystemId":30014440,"solarSystemName":"I.PJT.K98","location":{"x":13600000000000000000,"y":-9580000000000000000,"z":581000000000000000}},"30014441":{"solarSystemId":30014441,"solarSystemName":"E.G28.3H7","location":{"x":9320000000000000000,"y":-8940000000000000000,"z":174000000000000000}},"30014442":{"solarSystemId":30014442,"solarSystemName":"L.2P8.7H9","location":{"x":9880000000000000000,"y":-11200000000000000000,"z":-1320000000000000000}},"30014443":{"solarSystemId":30014443,"solarSystemName":"A.RG9.HQ9","location":{"x":11200000000000000000,"y":-11100000000000000000,"z":948000000000000000}},"30014444":{"solarSystemId":30014444,"solarSystemName":"E.C8T.2W8","location":{"x":13000000000000000000,"y":-10300000000000000000,"z":2920000000000000000}},"30014445":{"solarSystemId":30014445,"solarSystemName":"T.LE9.876","location":{"x":11500000000000000000,"y":-7180000000000000000,"z":-2140000000000000000}},"30014446":{"solarSystemId":30014446,"solarSystemName":"L.34N.E47","location":{"x":14000000000000000000,"y":-8250000000000000000,"z":-1030000000000000000}},"30014447":{"solarSystemId":30014447,"solarSystemName":"Aperture","location":{"x":10600000000000000000,"y":-7400000000000000000,"z":-549000000000000000}},"30014448":{"solarSystemId":30014448,"solarSystemName":"L.8K7.LF7","location":{"x":9160000000000000000,"y":-8840000000000000000,"z":118000000000000000}},"30014449":{"solarSystemId":30014449,"solarSystemName":"H.9B9.V26","location":{"x":11200000000000000000,"y":-7010000000000000000,"z":-1570000000000000000}},"30014450":{"solarSystemId":30014450,"solarSystemName":"H.LHT.0S8","location":{"x":13600000000000000000,"y":-9580000000000000000,"z":4060000000000000000}},"30014451":{"solarSystemId":30014451,"solarSystemName":"E.Y7T.NC9","location":{"x":13000000000000000000,"y":-11000000000000000000,"z":3600000000000000000}},"30014452":{"solarSystemId":30014452,"solarSystemName":"H.QVT.9K6","location":{"x":13400000000000000000,"y":-8010000000000000000,"z":3330000000000000000}},"30014453":{"solarSystemId":30014453,"solarSystemName":"T.72S.1Q6","location":{"x":11600000000000000000,"y":-7640000000000000000,"z":459000000000000000}},"30014454":{"solarSystemId":30014454,"solarSystemName":"M.Y5R.6Y5","location":{"x":15200000000000000000,"y":-6750000000000000000,"z":1430000000000000000}},"30014455":{"solarSystemId":30014455,"solarSystemName":"T.VBT.B25","location":{"x":13500000000000000000,"y":-5860000000000000000,"z":-985000000000000000}},"30014456":{"solarSystemId":30014456,"solarSystemName":"L.BCT.9E4","location":{"x":13300000000000000000,"y":-5740000000000000000,"z":-1160000000000000000}},"30014457":{"solarSystemId":30014457,"solarSystemName":"H.ZGT.SM5","location":{"x":13500000000000000000,"y":-6390000000000000000,"z":-2090000000000000000}},"30014458":{"solarSystemId":30014458,"solarSystemName":"I.CGS.8F5","location":{"x":12400000000000000000,"y":-6530000000000000000,"z":-1370000000000000000}},"30014459":{"solarSystemId":30014459,"solarSystemName":"M.6TT.215","location":{"x":13100000000000000000,"y":-5800000000000000000,"z":165000000000000000}},"30014460":{"solarSystemId":30014460,"solarSystemName":"S.51L.S39","location":{"x":16200000000000000000,"y":-10500000000000000000,"z":3090000000000000000}},"30014461":{"solarSystemId":30014461,"solarSystemName":"E.GGL.4C9","location":{"x":17000000000000000000,"y":-11000000000000000000,"z":4790000000000000000}},"30014462":{"solarSystemId":30014462,"solarSystemName":"T.86L.S5S","location":{"x":16400000000000000000,"y":-11700000000000000000,"z":6860000000000000000}},"30014463":{"solarSystemId":30014463,"solarSystemName":"E.3TL.D4S","location":{"x":16500000000000000000,"y":-11700000000000000000,"z":5860000000000000000}},"30014464":{"solarSystemId":30014464,"solarSystemName":"R.6BN.EQ8","location":{"x":14600000000000000000,"y":-9980000000000000000,"z":3880000000000000000}},"30014465":{"solarSystemId":30014465,"solarSystemName":"L.H48.D27","location":{"x":9400000000000000000,"y":-8160000000000000000,"z":-2560000000000000000}},"30014466":{"solarSystemId":30014466,"solarSystemName":"L.479.T77","location":{"x":10600000000000000000,"y":-8340000000000000000,"z":-3650000000000000000}},"30014467":{"solarSystemId":30014467,"solarSystemName":"A.WC8.G46","location":{"x":9830000000000000000,"y":-7090000000000000000,"z":-1160000000000000000}},"30014468":{"solarSystemId":30014468,"solarSystemName":"D.DL9.T58","location":{"x":10900000000000000000,"y":-9420000000000000000,"z":-2510000000000000000}},"30014469":{"solarSystemId":30014469,"solarSystemName":"B.B27.PT7","location":{"x":8170000000000000000,"y":-8490000000000000000,"z":-1200000000000000000}},"30014470":{"solarSystemId":30014470,"solarSystemName":"A.Z38.RZT","location":{"x":9360000000000000000,"y":-13700000000000000000,"z":4870000000000000000}},"30014471":{"solarSystemId":30014471,"solarSystemName":"R.YZ8.4HS","location":{"x":10300000000000000000,"y":-12400000000000000000,"z":3510000000000000000}},"30014472":{"solarSystemId":30014472,"solarSystemName":"A.BR9.4LR","location":{"x":10900000000000000000,"y":-15500000000000000000,"z":2990000000000000000}},"30014473":{"solarSystemId":30014473,"solarSystemName":"A.MF8.H0L","location":{"x":10000000000000000000,"y":-16200000000000000000,"z":4750000000000000000}},"30014474":{"solarSystemId":30014474,"solarSystemName":"E.9Y8.M8L","location":{"x":10200000000000000000,"y":-16400000000000000000,"z":4780000000000000000}},"30014475":{"solarSystemId":30014475,"solarSystemName":"N.828.7DT","location":{"x":9310000000000000000,"y":-13200000000000000000,"z":5380000000000000000}},"30014476":{"solarSystemId":30014476,"solarSystemName":"E.QYS.6VN","location":{"x":12500000000000000000,"y":-14500000000000000000,"z":1350000000000000000}},"30014477":{"solarSystemId":30014477,"solarSystemName":"S.CXC.F6R","location":{"x":19400000000000000000,"y":-15200000000000000000,"z":6120000000000000000}},"30014478":{"solarSystemId":30014478,"solarSystemName":"H.8BD.8DN","location":{"x":18100000000000000000,"y":-14400000000000000000,"z":4400000000000000000}},"30014479":{"solarSystemId":30014479,"solarSystemName":"D.WLM.67N","location":{"x":20100000000000000000,"y":-14100000000000000000,"z":5730000000000000000}},"30014480":{"solarSystemId":30014480,"solarSystemName":"I.BVD.FDN","location":{"x":18000000000000000000,"y":-14400000000000000000,"z":2510000000000000000}},"30014481":{"solarSystemId":30014481,"solarSystemName":"U.VJC.S1N","location":{"x":19400000000000000000,"y":-13900000000000000000,"z":4080000000000000000}},"30014482":{"solarSystemId":30014482,"solarSystemName":"U.027.6DT","location":{"x":8140000000000000000,"y":-13200000000000000000,"z":-1320000000000000000}},"30014483":{"solarSystemId":30014483,"solarSystemName":"A.8S6.W77","location":{"x":7290000000000000000,"y":-8360000000000000000,"z":-151000000000000000}},"30014484":{"solarSystemId":30014484,"solarSystemName":"N.8N6.GH9","location":{"x":7360000000000000000,"y":-11300000000000000000,"z":-538000000000000000}},"30014485":{"solarSystemId":30014485,"solarSystemName":"N.6F6.839","location":{"x":7680000000000000000,"y":-10500000000000000000,"z":981000000000000000}},"30014486":{"solarSystemId":30014486,"solarSystemName":"U.NE6.J9S","location":{"x":8050000000000000000,"y":-11900000000000000000,"z":-2630000000000000000}},"30014487":{"solarSystemId":30014487,"solarSystemName":"R.LJ7.02S","location":{"x":8990000000000000000,"y":-11600000000000000000,"z":-7040000000000000000}},"30014488":{"solarSystemId":30014488,"solarSystemName":"N.JE7.RE9","location":{"x":9220000000000000000,"y":-11500000000000000000,"z":-7120000000000000000}},"30014489":{"solarSystemId":30014489,"solarSystemName":"H.HN8.L39","location":{"x":9680000000000000000,"y":-10500000000000000000,"z":-5960000000000000000}},"30014490":{"solarSystemId":30014490,"solarSystemName":"H.G7S.4X9","location":{"x":11800000000000000000,"y":-11300000000000000000,"z":-3490000000000000000}},"30014491":{"solarSystemId":30014491,"solarSystemName":"S.HS9.PVT","location":{"x":10800000000000000000,"y":-13400000000000000000,"z":-2320000000000000000}},"30014492":{"solarSystemId":30014492,"solarSystemName":"I.LK9.NKS","location":{"x":11500000000000000000,"y":-12600000000000000000,"z":-2150000000000000000}},"30014493":{"solarSystemId":30014493,"solarSystemName":"H.XQT.2PS","location":{"x":13400000000000000000,"y":-12200000000000000000,"z":-1160000000000000000}},"30014494":{"solarSystemId":30014494,"solarSystemName":"Q:3166","location":{"x":-3980000000000000000,"y":-5950000000000000000,"z":4920000000000000000}},"30014495":{"solarSystemId":30014495,"solarSystemName":"U:310O","location":{"x":-3650000000000000000,"y":-5390000000000000000,"z":5050000000000000000}},"30014496":{"solarSystemId":30014496,"solarSystemName":"Y:2TIN","location":{"x":-4760000000000000000,"y":-4970000000000000000,"z":4990000000000000000}},"30014497":{"solarSystemId":30014497,"solarSystemName":"H:323N","location":{"x":-4610000000000000000,"y":-5530000000000000000,"z":4840000000000000000}},"30014498":{"solarSystemId":30014498,"solarSystemName":"M:350V","location":{"x":-3630000000000000000,"y":-6670000000000000000,"z":4260000000000000000}},"30014499":{"solarSystemId":30014499,"solarSystemName":"F:32R9","location":{"x":-2960000000000000000,"y":-6630000000000000000,"z":4540000000000000000}},"30014500":{"solarSystemId":30014500,"solarSystemName":"D:3V54","location":{"x":-1160000000000000000,"y":-7220000000000000000,"z":6770000000000000000}},"30014501":{"solarSystemId":30014501,"solarSystemName":"M:2V74","location":{"x":-3580000000000000000,"y":-5480000000000000000,"z":6910000000000000000}},"30014502":{"solarSystemId":30014502,"solarSystemName":"D:3NA0","location":{"x":-3630000000000000000,"y":-5810000000000000000,"z":7060000000000000000}},"30014503":{"solarSystemId":30014503,"solarSystemName":"Z:320L","location":{"x":-23600000000000000,"y":-4970000000000000000,"z":7660000000000000000}},"30014504":{"solarSystemId":30014504,"solarSystemName":"F:363L","location":{"x":-2780000000000000000,"y":-5860000000000000000,"z":7940000000000000000}},"30014505":{"solarSystemId":30014505,"solarSystemName":"B:3V9N","location":{"x":-368000000000000000,"y":-4880000000000000000,"z":5930000000000000000}},"30014506":{"solarSystemId":30014506,"solarSystemName":"M:3A5A","location":{"x":-3470000000000000000,"y":-6220000000000000000,"z":6340000000000000000}},"30014507":{"solarSystemId":30014507,"solarSystemName":"D:2R2T","location":{"x":-6140000000000000000,"y":-8970000000000000000,"z":2660000000000000000}},"30014508":{"solarSystemId":30014508,"solarSystemName":"M:2K0N","location":{"x":-5210000000000000000,"y":-7200000000000000000,"z":5170000000000000000}},"30014509":{"solarSystemId":30014509,"solarSystemName":"B:2AK6","location":{"x":-6280000000000000000,"y":-7330000000000000000,"z":3630000000000000000}},"30014510":{"solarSystemId":30014510,"solarSystemName":"J:3NRV","location":{"x":-5970000000000000000,"y":-7390000000000000000,"z":4220000000000000000}},"30014511":{"solarSystemId":30014511,"solarSystemName":"D:EE02","location":{"x":-4190000000000000000,"y":-7810000000000000000,"z":2950000000000000000}},"30014512":{"solarSystemId":30014512,"solarSystemName":"Q:2OR0","location":{"x":-1230000000000000000,"y":-8210000000000000000,"z":9380000000000000000}},"30014513":{"solarSystemId":30014513,"solarSystemName":"Z:29VK","location":{"x":1010000000000000000,"y":-5280000000000000000,"z":7620000000000000000}},"30014514":{"solarSystemId":30014514,"solarSystemName":"F:29RT","location":{"x":700000000000000000,"y":-5430000000000000000,"z":8490000000000000000}},"30014515":{"solarSystemId":30014515,"solarSystemName":"G:35AV","location":{"x":42400000000000000,"y":-4620000000000000000,"z":8270000000000000000}},"30014516":{"solarSystemId":30014516,"solarSystemName":"Z:N7R1","location":{"x":-2190000000000000000,"y":-10600000000000000000,"z":8730000000000000000}},"30014517":{"solarSystemId":30014517,"solarSystemName":"B:2SN6","location":{"x":2970000000000000000,"y":-5000000000000000000,"z":7920000000000000000}},"30014518":{"solarSystemId":30014518,"solarSystemName":"U:2I8K","location":{"x":2110000000000000000,"y":-4070000000000000000,"z":5480000000000000000}},"30014519":{"solarSystemId":30014519,"solarSystemName":"G:3780","location":{"x":1950000000000000000,"y":-3730000000000000000,"z":6150000000000000000}},"30014520":{"solarSystemId":30014520,"solarSystemName":"D:30SV","location":{"x":3160000000000000000,"y":-4270000000000000000,"z":6320000000000000000}},"30014521":{"solarSystemId":30014521,"solarSystemName":"Y:2A05","location":{"x":2280000000000000000,"y":-4100000000000000000,"z":5470000000000000000}},"30014522":{"solarSystemId":30014522,"solarSystemName":"B:2N10","location":{"x":2550000000000000000,"y":-4660000000000000000,"z":6450000000000000000}},"30014523":{"solarSystemId":30014523,"solarSystemName":"H:3EKL","location":{"x":1710000000000000000,"y":-4680000000000000000,"z":7570000000000000000}},"30014524":{"solarSystemId":30014524,"solarSystemName":"Y:3RK4","location":{"x":-3170000000000000000,"y":-3520000000000000000,"z":5950000000000000000}},"30014525":{"solarSystemId":30014525,"solarSystemName":"H:34N3","location":{"x":-2500000000000000000,"y":-4490000000000000000,"z":6870000000000000000}},"30014526":{"solarSystemId":30014526,"solarSystemName":"G:2N91","location":{"x":-1590000000000000000,"y":-4690000000000000000,"z":5250000000000000000}},"30014527":{"solarSystemId":30014527,"solarSystemName":"P:2N72","location":{"x":-2430000000000000000,"y":-3240000000000000000,"z":5350000000000000000}},"30014528":{"solarSystemId":30014528,"solarSystemName":"B:37T1","location":{"x":-1810000000000000000,"y":-4340000000000000000,"z":5520000000000000000}},"30014529":{"solarSystemId":30014529,"solarSystemName":"Y:2IRO","location":{"x":-2920000000000000000,"y":-5150000000000000000,"z":5240000000000000000}},"30014530":{"solarSystemId":30014530,"solarSystemName":"J:3505","location":{"x":-2780000000000000000,"y":-3250000000000000000,"z":6170000000000000000}},"30014531":{"solarSystemId":30014531,"solarSystemName":"M:2ANE","location":{"x":-3230000000000000000,"y":-4080000000000000000,"z":5970000000000000000}},"30014532":{"solarSystemId":30014532,"solarSystemName":"D:2924","location":{"x":-3280000000000000000,"y":-3860000000000000000,"z":5660000000000000000}},"30014533":{"solarSystemId":30014533,"solarSystemName":"F:3A99","location":{"x":1090000000000000000,"y":-6230000000000000000,"z":6010000000000000000}},"30014534":{"solarSystemId":30014534,"solarSystemName":"Q:3RL2","location":{"x":1980000000000000000,"y":-5800000000000000000,"z":5040000000000000000}},"30014535":{"solarSystemId":30014535,"solarSystemName":"G:2VAA","location":{"x":604000000000000000,"y":-5690000000000000000,"z":7100000000000000000}},"30014536":{"solarSystemId":30014536,"solarSystemName":"H:3361","location":{"x":2070000000000000000,"y":-5020000000000000000,"z":6580000000000000000}},"30014537":{"solarSystemId":30014537,"solarSystemName":"Y:3E3O","location":{"x":-42700000000000000,"y":-5210000000000000000,"z":7040000000000000000}},"30014538":{"solarSystemId":30014538,"solarSystemName":"M:34IO","location":{"x":658000000000000000,"y":-5570000000000000000,"z":4510000000000000000}},"30014539":{"solarSystemId":30014539,"solarSystemName":"B:375V","location":{"x":-1490000000000000000,"y":-5220000000000000000,"z":9800000000000000000}},"30014540":{"solarSystemId":30014540,"solarSystemName":"H:37TA","location":{"x":-1760000000000000000,"y":-3560000000000000000,"z":9460000000000000000}},"30014541":{"solarSystemId":30014541,"solarSystemName":"J:3N65","location":{"x":-1720000000000000000,"y":-4160000000000000000,"z":9970000000000000000}},"30014542":{"solarSystemId":30014542,"solarSystemName":"H:3864","location":{"x":-605000000000000000,"y":-6230000000000000000,"z":9040000000000000000}},"30014543":{"solarSystemId":30014543,"solarSystemName":"F:36A2","location":{"x":-2360000000000000000,"y":-4370000000000000000,"z":9210000000000000000}},"30014544":{"solarSystemId":30014544,"solarSystemName":"Y:2929","location":{"x":-2110000000000000000,"y":-4020000000000000000,"z":10100000000000000000}},"30014545":{"solarSystemId":30014545,"solarSystemName":"OML-CM8","location":{"x":21100000000000000000,"y":-1230000000000000000,"z":16600000000000000000}},"30014546":{"solarSystemId":30014546,"solarSystemName":"U6J-SL8","location":{"x":20700000000000000000,"y":-1180000000000000000,"z":16500000000000000000}},"30014547":{"solarSystemId":30014547,"solarSystemName":"O39-CL8","location":{"x":20400000000000000000,"y":-1240000000000000000,"z":16200000000000000000}},"30014548":{"solarSystemId":30014548,"solarSystemName":"E2T-GL8","location":{"x":20500000000000000000,"y":-1580000000000000000,"z":16200000000000000000}},"30014549":{"solarSystemId":30014549,"solarSystemName":"E0L-JM8","location":{"x":21600000000000000000,"y":-1360000000000000000,"z":16400000000000000000}},"30014550":{"solarSystemId":30014550,"solarSystemName":"OVK-QL8","location":{"x":20500000000000000000,"y":-1260000000000000000,"z":16600000000000000000}},"30014551":{"solarSystemId":30014551,"solarSystemName":"EDG-2Q8","location":{"x":23400000000000000000,"y":-1390000000000000000,"z":18200000000000000000}},"30014552":{"solarSystemId":30014552,"solarSystemName":"ICM-3R8","location":{"x":25100000000000000000,"y":-1080000000000000000,"z":17300000000000000000}},"30014553":{"solarSystemId":30014553,"solarSystemName":"INS-SQ8","location":{"x":23100000000000000000,"y":-1350000000000000000,"z":19600000000000000000}},"30014554":{"solarSystemId":30014554,"solarSystemName":"Cydias","location":{"x":24700000000000000000,"y":-1270000000000000000,"z":17500000000000000000}},"30014555":{"solarSystemId":30014555,"solarSystemName":"E7Q-4R8","location":{"x":24300000000000000000,"y":-1170000000000000000,"z":18600000000000000000}},"30014556":{"solarSystemId":30014556,"solarSystemName":"O23-MQ8","location":{"x":24700000000000000000,"y":-3430000000000000000,"z":16900000000000000000}},"30014557":{"solarSystemId":30014557,"solarSystemName":"I4N-MR8","location":{"x":27500000000000000000,"y":-1670000000000000000,"z":14900000000000000000}},"30014558":{"solarSystemId":30014558,"solarSystemName":"IK6-PP8","location":{"x":26100000000000000000,"y":-1510000000000000000,"z":13400000000000000000}},"30014559":{"solarSystemId":30014559,"solarSystemName":"EB2-3Q8","location":{"x":25300000000000000000,"y":-1900000000000000000,"z":15300000000000000000}},"30014560":{"solarSystemId":30014560,"solarSystemName":"E76-TM8","location":{"x":24000000000000000000,"y":-1640000000000000000,"z":13500000000000000000}},"30014561":{"solarSystemId":30014561,"solarSystemName":"IT5-NQ8","location":{"x":26500000000000000000,"y":-2310000000000000000,"z":14100000000000000000}},"30014562":{"solarSystemId":30014562,"solarSystemName":"E97-QN8","location":{"x":22300000000000000000,"y":-501000000000000000,"z":17500000000000000000}},"30014563":{"solarSystemId":30014563,"solarSystemName":"I5V-NP8","location":{"x":21400000000000000000,"y":-979000000000000000,"z":20200000000000000000}},"30014564":{"solarSystemId":30014564,"solarSystemName":"ETC-6M8","location":{"x":20500000000000000000,"y":-822000000000000000,"z":17200000000000000000}},"30014565":{"solarSystemId":30014565,"solarSystemName":"O0F-9M8","location":{"x":19900000000000000000,"y":-921000000000000000,"z":18200000000000000000}},"30014566":{"solarSystemId":30014566,"solarSystemName":"E23-BN8","location":{"x":21000000000000000000,"y":-718000000000000000,"z":18500000000000000000}},"30014567":{"solarSystemId":30014567,"solarSystemName":"ENS-LR8","location":{"x":22200000000000000000,"y":-536000000000000000,"z":22100000000000000000}},"30014568":{"solarSystemId":30014568,"solarSystemName":"IC8-7R8","location":{"x":21900000000000000000,"y":104000000000000000,"z":21800000000000000000}},"30014569":{"solarSystemId":30014569,"solarSystemName":"IDT-BN8","location":{"x":21900000000000000000,"y":-2080000000000000000,"z":17400000000000000000}},"30014570":{"solarSystemId":30014570,"solarSystemName":"AK6-HQ8","location":{"x":22500000000000000000,"y":-674000000000000000,"z":19800000000000000000}},"30014571":{"solarSystemId":30014571,"solarSystemName":"IDM-SR8","location":{"x":23400000000000000000,"y":-4030000000000000000,"z":20900000000000000000}},"30014572":{"solarSystemId":30014572,"solarSystemName":"ORH-4N8","location":{"x":22600000000000000000,"y":-2170000000000000000,"z":16000000000000000000}},"30014573":{"solarSystemId":30014573,"solarSystemName":"USV-HP8","location":{"x":24100000000000000000,"y":-1090000000000000000,"z":16300000000000000000}},"30014574":{"solarSystemId":30014574,"solarSystemName":"U3T-KP8","location":{"x":23900000000000000000,"y":-1420000000000000000,"z":16600000000000000000}},"30014575":{"solarSystemId":30014575,"solarSystemName":"A81-0Q8","location":{"x":24500000000000000000,"y":-1330000000000000000,"z":16300000000000000000}},"30014576":{"solarSystemId":30014576,"solarSystemName":"I9L-DP8","location":{"x":23700000000000000000,"y":-929000000000000000,"z":16400000000000000000}},"30014577":{"solarSystemId":30014577,"solarSystemName":"E2G-PP8","location":{"x":24600000000000000000,"y":-1740000000000000000,"z":15900000000000000000}},"30014578":{"solarSystemId":30014578,"solarSystemName":"AG4-LS8","location":{"x":25900000000000000000,"y":-3750000000000000000,"z":19300000000000000000}},"30014579":{"solarSystemId":30014579,"solarSystemName":"U9D-VS8","location":{"x":26600000000000000000,"y":-3230000000000000000,"z":19200000000000000000}},"30014580":{"solarSystemId":30014580,"solarSystemName":"EM7-0T8","location":{"x":26800000000000000000,"y":-3210000000000000000,"z":19000000000000000000}},"30014581":{"solarSystemId":30014581,"solarSystemName":"EDG-5T8","location":{"x":27100000000000000000,"y":-3510000000000000000,"z":19000000000000000000}},"30014582":{"solarSystemId":30014582,"solarSystemName":"IKQ-0T8","location":{"x":26700000000000000000,"y":-1160000000000000000,"z":19500000000000000000}},"30014583":{"solarSystemId":30014583,"solarSystemName":"IGN-HT8","location":{"x":29500000000000000000,"y":-2890000000000000000,"z":16600000000000000000}},"30014584":{"solarSystemId":30014584,"solarSystemName":"UF9-TS8","location":{"x":28200000000000000000,"y":-2640000000000000000,"z":16700000000000000000}},"30014585":{"solarSystemId":30014585,"solarSystemName":"ICS-FV8","location":{"x":29700000000000000000,"y":-1180000000000000000,"z":19500000000000000000}},"30014586":{"solarSystemId":30014586,"solarSystemName":"E28-2V8","location":{"x":29200000000000000000,"y":-1480000000000000000,"z":19000000000000000000}},"30014587":{"solarSystemId":30014587,"solarSystemName":"I0L-1T8","location":{"x":28200000000000000000,"y":-3000000000000000000,"z":17000000000000000000}},"30014588":{"solarSystemId":30014588,"solarSystemName":"H:337L","location":{"x":7140000000000000000,"y":-2280000000000000000,"z":-837000000000000000}},"30014589":{"solarSystemId":30014589,"solarSystemName":"Y:38EV","location":{"x":6990000000000000000,"y":-2430000000000000000,"z":-1360000000000000000}},"30014590":{"solarSystemId":30014590,"solarSystemName":"Y:N05S","location":{"x":7000000000000000000,"y":-1820000000000000000,"z":-676000000000000000}},"30014591":{"solarSystemId":30014591,"solarSystemName":"Y:39R1","location":{"x":6480000000000000000,"y":-1320000000000000000,"z":-712000000000000000}},"30014592":{"solarSystemId":30014592,"solarSystemName":"P:R870","location":{"x":7200000000000000000,"y":-1270000000000000000,"z":-262000000000000000}},"30014593":{"solarSystemId":30014593,"solarSystemName":"Y:280S","location":{"x":7140000000000000000,"y":-1170000000000000000,"z":-963000000000000000}},"30014594":{"solarSystemId":30014594,"solarSystemName":"Q:373E","location":{"x":6320000000000000000,"y":-2050000000000000000,"z":-296000000000000000}},"30014595":{"solarSystemId":30014595,"solarSystemName":"J:2NR3","location":{"x":7070000000000000000,"y":-2350000000000000000,"z":-561000000000000000}},"30014596":{"solarSystemId":30014596,"solarSystemName":"D:355O","location":{"x":6850000000000000000,"y":-2330000000000000000,"z":-540000000000000000}},"30014597":{"solarSystemId":30014597,"solarSystemName":"Z:1660","location":{"x":6990000000000000000,"y":-1220000000000000000,"z":-866000000000000000}},"30014598":{"solarSystemId":30014598,"solarSystemName":"G:L3AV","location":{"x":6780000000000000000,"y":-1710000000000000000,"z":-277000000000000000}},"30014599":{"solarSystemId":30014599,"solarSystemName":"Y:2NV9","location":{"x":7020000000000000000,"y":-1830000000000000000,"z":633000000000000000}},"30014600":{"solarSystemId":30014600,"solarSystemName":"Z:2NAL","location":{"x":6850000000000000000,"y":-1500000000000000000,"z":-776000000000000000}},"30014601":{"solarSystemId":30014601,"solarSystemName":"D:23TA","location":{"x":7250000000000000000,"y":-1570000000000000000,"z":-246000000000000000}},"30014602":{"solarSystemId":30014602,"solarSystemName":"H:3895","location":{"x":6890000000000000000,"y":-1570000000000000000,"z":-2990000000000000000}},"30014603":{"solarSystemId":30014603,"solarSystemName":"Y:46T5","location":{"x":7700000000000000000,"y":-1800000000000000000,"z":-3160000000000000000}},"30014604":{"solarSystemId":30014604,"solarSystemName":"F:RT85","location":{"x":7610000000000000000,"y":-1810000000000000000,"z":-3400000000000000000}},"30014605":{"solarSystemId":30014605,"solarSystemName":"G:RA9L","location":{"x":7240000000000000000,"y":-1730000000000000000,"z":-3870000000000000000}},"30014606":{"solarSystemId":30014606,"solarSystemName":"D:134L","location":{"x":7560000000000000000,"y":-890000000000000000,"z":-3870000000000000000}},"30014607":{"solarSystemId":30014607,"solarSystemName":"J:1OSL","location":{"x":7170000000000000000,"y":-1540000000000000000,"z":-3620000000000000000}},"30014608":{"solarSystemId":30014608,"solarSystemName":"Y:OE87","location":{"x":7620000000000000000,"y":-1390000000000000000,"z":-3670000000000000000}},"30014609":{"solarSystemId":30014609,"solarSystemName":"B:268O","location":{"x":7100000000000000000,"y":-1940000000000000000,"z":-3800000000000000000}},"30014610":{"solarSystemId":30014610,"solarSystemName":"F:1EA9","location":{"x":7440000000000000000,"y":-1810000000000000000,"z":-3870000000000000000}},"30014611":{"solarSystemId":30014611,"solarSystemName":"G:5SEI","location":{"x":7250000000000000000,"y":-1020000000000000000,"z":-3930000000000000000}},"30014612":{"solarSystemId":30014612,"solarSystemName":"U:N5E2","location":{"x":7200000000000000000,"y":-1810000000000000000,"z":-3930000000000000000}},"30014613":{"solarSystemId":30014613,"solarSystemName":"P:4N89","location":{"x":7030000000000000000,"y":-2070000000000000000,"z":-3380000000000000000}},"30014614":{"solarSystemId":30014614,"solarSystemName":"M:390K","location":{"x":7470000000000000000,"y":-2100000000000000000,"z":-2190000000000000000}},"30014615":{"solarSystemId":30014615,"solarSystemName":"B:EKIS","location":{"x":8010000000000000000,"y":-1990000000000000000,"z":-2090000000000000000}},"30014616":{"solarSystemId":30014616,"solarSystemName":"G:2O5N","location":{"x":6870000000000000000,"y":-1630000000000000000,"z":-1430000000000000000}},"30014617":{"solarSystemId":30014617,"solarSystemName":"J:1779","location":{"x":7350000000000000000,"y":-1730000000000000000,"z":-1800000000000000000}},"30014618":{"solarSystemId":30014618,"solarSystemName":"Y:270E","location":{"x":7480000000000000000,"y":-1150000000000000000,"z":-2180000000000000000}},"30014619":{"solarSystemId":30014619,"solarSystemName":"F:215N","location":{"x":8260000000000000000,"y":-1630000000000000000,"z":-2090000000000000000}},"30014620":{"solarSystemId":30014620,"solarSystemName":"P:34KI","location":{"x":7980000000000000000,"y":-1540000000000000000,"z":-2310000000000000000}},"30014621":{"solarSystemId":30014621,"solarSystemName":"J:121V","location":{"x":8110000000000000000,"y":-1560000000000000000,"z":-2330000000000000000}},"30014622":{"solarSystemId":30014622,"solarSystemName":"Y:24V4","location":{"x":7570000000000000000,"y":-1090000000000000000,"z":-1680000000000000000}},"30014623":{"solarSystemId":30014623,"solarSystemName":"Y:15L3","location":{"x":7890000000000000000,"y":-1520000000000000000,"z":-1850000000000000000}},"30014624":{"solarSystemId":30014624,"solarSystemName":"F:313T","location":{"x":8110000000000000000,"y":-2330000000000000000,"z":-2250000000000000000}},"30014625":{"solarSystemId":30014625,"solarSystemName":"J:38A6","location":{"x":6920000000000000000,"y":-1680000000000000000,"z":-1630000000000000000}},"30014626":{"solarSystemId":30014626,"solarSystemName":"J:1E69","location":{"x":7550000000000000000,"y":-1000000000000000000,"z":-1740000000000000000}},"30014627":{"solarSystemId":30014627,"solarSystemName":"J:1E8T","location":{"x":8010000000000000000,"y":-2040000000000000000,"z":-2200000000000000000}},"30014628":{"solarSystemId":30014628,"solarSystemName":"G:4969","location":{"x":7740000000000000000,"y":-1190000000000000000,"z":-1410000000000000000}},"30014629":{"solarSystemId":30014629,"solarSystemName":"H:3O2K","location":{"x":7960000000000000000,"y":-1420000000000000000,"z":-1750000000000000000}},"30014630":{"solarSystemId":30014630,"solarSystemName":"J:3EAT","location":{"x":8240000000000000000,"y":-3640000000000000000,"z":-1370000000000000000}},"30014631":{"solarSystemId":30014631,"solarSystemName":"F:3V08","location":{"x":9020000000000000000,"y":-4280000000000000000,"z":-1950000000000000000}},"30014632":{"solarSystemId":30014632,"solarSystemName":"U:3A0N","location":{"x":9130000000000000000,"y":-4410000000000000000,"z":-1290000000000000000}},"30014633":{"solarSystemId":30014633,"solarSystemName":"D:2KE1","location":{"x":8500000000000000000,"y":-4050000000000000000,"z":-751000000000000000}},"30014634":{"solarSystemId":30014634,"solarSystemName":"D:170N","location":{"x":8290000000000000000,"y":-2900000000000000000,"z":-594000000000000000}},"30014635":{"solarSystemId":30014635,"solarSystemName":"J:490R","location":{"x":8190000000000000000,"y":-2700000000000000000,"z":-954000000000000000}},"30014636":{"solarSystemId":30014636,"solarSystemName":"Q:3IV8","location":{"x":8740000000000000000,"y":-3390000000000000000,"z":-742000000000000000}},"30014637":{"solarSystemId":30014637,"solarSystemName":"Y:155I","location":{"x":8070000000000000000,"y":-2850000000000000000,"z":-2180000000000000000}},"30014638":{"solarSystemId":30014638,"solarSystemName":"P:3SR1","location":{"x":5780000000000000000,"y":-708000000000000000,"z":-3320000000000000000}},"30014639":{"solarSystemId":30014639,"solarSystemName":"G:3956","location":{"x":5960000000000000000,"y":-369000000000000000,"z":-2960000000000000000}},"30014640":{"solarSystemId":30014640,"solarSystemName":"J:1OI4","location":{"x":5400000000000000000,"y":-264000000000000000,"z":-3660000000000000000}},"30014641":{"solarSystemId":30014641,"solarSystemName":"Q:3NSS","location":{"x":5970000000000000000,"y":-180000000000000000,"z":-2780000000000000000}},"30014642":{"solarSystemId":30014642,"solarSystemName":"Z:3L5T","location":{"x":5410000000000000000,"y":-781000000000000000,"z":-3090000000000000000}},"30014643":{"solarSystemId":30014643,"solarSystemName":"M:3TI0","location":{"x":6150000000000000000,"y":-520000000000000000,"z":-3770000000000000000}},"30014644":{"solarSystemId":30014644,"solarSystemName":"U:1A07","location":{"x":5720000000000000000,"y":-840000000000000000,"z":-3780000000000000000}},"30014645":{"solarSystemId":30014645,"solarSystemName":"F:1T0I","location":{"x":5680000000000000000,"y":-904000000000000000,"z":-3540000000000000000}},"30014646":{"solarSystemId":30014646,"solarSystemName":"H:286K","location":{"x":5490000000000000000,"y":-290000000000000000,"z":-3490000000000000000}},"30014647":{"solarSystemId":30014647,"solarSystemName":"F:3OAV","location":{"x":5530000000000000000,"y":-1240000000000000000,"z":-2870000000000000000}},"30014648":{"solarSystemId":30014648,"solarSystemName":"D:23E1","location":{"x":5770000000000000000,"y":-432000000000000000,"z":-3730000000000000000}},"30014649":{"solarSystemId":30014649,"solarSystemName":"U:3OSI","location":{"x":5960000000000000000,"y":-734000000000000000,"z":-3290000000000000000}},"30014650":{"solarSystemId":30014650,"solarSystemName":"M:2SVK","location":{"x":5720000000000000000,"y":-590000000000000000,"z":-3800000000000000000}},"30014651":{"solarSystemId":30014651,"solarSystemName":"G:4L7I","location":{"x":5550000000000000000,"y":-698000000000000000,"z":-3040000000000000000}},"30014652":{"solarSystemId":30014652,"solarSystemName":"D:2K5L","location":{"x":6250000000000000000,"y":-252000000000000000,"z":-3790000000000000000}},"30014653":{"solarSystemId":30014653,"solarSystemName":"D:1OVI","location":{"x":6430000000000000000,"y":-447000000000000000,"z":-4020000000000000000}},"30014654":{"solarSystemId":30014654,"solarSystemName":"Y:3IVS","location":{"x":9110000000000000000,"y":-3390000000000000000,"z":-3170000000000000000}},"30014655":{"solarSystemId":30014655,"solarSystemName":"H:398A","location":{"x":9070000000000000000,"y":-4100000000000000000,"z":-4150000000000000000}},"30014656":{"solarSystemId":30014656,"solarSystemName":"M:4AA8","location":{"x":8840000000000000000,"y":-2310000000000000000,"z":-3190000000000000000}},"30014657":{"solarSystemId":30014657,"solarSystemName":"Z:147V","location":{"x":8750000000000000000,"y":-2800000000000000000,"z":-2860000000000000000}},"30014658":{"solarSystemId":30014658,"solarSystemName":"P:2LTO","location":{"x":9180000000000000000,"y":-2820000000000000000,"z":-4460000000000000000}},"30014659":{"solarSystemId":30014659,"solarSystemName":"P:1N61","location":{"x":9430000000000000000,"y":-2850000000000000000,"z":-3770000000000000000}},"30014660":{"solarSystemId":30014660,"solarSystemName":"G:S2V9","location":{"x":8770000000000000000,"y":-2200000000000000000,"z":-2950000000000000000}},"30014661":{"solarSystemId":30014661,"solarSystemName":"U:19SA","location":{"x":8980000000000000000,"y":-2060000000000000000,"z":-3420000000000000000}},"30014662":{"solarSystemId":30014662,"solarSystemName":"G:T051","location":{"x":9630000000000000000,"y":-3940000000000000000,"z":-3950000000000000000}},"30014663":{"solarSystemId":30014663,"solarSystemName":"D:OA6K","location":{"x":8760000000000000000,"y":-3370000000000000000,"z":-3880000000000000000}},"30014664":{"solarSystemId":30014664,"solarSystemName":"B:4T0K","location":{"x":8850000000000000000,"y":-4800000000000000000,"z":-3750000000000000000}},"30014665":{"solarSystemId":30014665,"solarSystemName":"Y:2843","location":{"x":7810000000000000000,"y":-5020000000000000000,"z":-2610000000000000000}},"30014666":{"solarSystemId":30014666,"solarSystemName":"Z:1R1A","location":{"x":7430000000000000000,"y":-4750000000000000000,"z":-2480000000000000000}},"30014667":{"solarSystemId":30014667,"solarSystemName":"B:2V45","location":{"x":9880000000000000000,"y":-7020000000000000000,"z":-3160000000000000000}},"30014668":{"solarSystemId":30014668,"solarSystemName":"P:22EO","location":{"x":10600000000000000000,"y":-5930000000000000000,"z":-1660000000000000000}},"30014669":{"solarSystemId":30014669,"solarSystemName":"J:47TE","location":{"x":9090000000000000000,"y":-5530000000000000000,"z":-2490000000000000000}},"30014670":{"solarSystemId":30014670,"solarSystemName":"B:38R0","location":{"x":8780000000000000000,"y":-5470000000000000000,"z":-3040000000000000000}},"30014671":{"solarSystemId":30014671,"solarSystemName":"M:3AVN","location":{"x":8150000000000000000,"y":542000000000000000,"z":-2670000000000000000}},"30014672":{"solarSystemId":30014672,"solarSystemName":"G:310K","location":{"x":7140000000000000000,"y":1010000000000000000,"z":-2000000000000000000}},"30014673":{"solarSystemId":30014673,"solarSystemName":"M:1L46","location":{"x":8020000000000000000,"y":-322000000000000000,"z":-2710000000000000000}},"30014674":{"solarSystemId":30014674,"solarSystemName":"P:V86K","location":{"x":6730000000000000000,"y":1020000000000000000,"z":-2040000000000000000}},"30014675":{"solarSystemId":30014675,"solarSystemName":"U:3R8O","location":{"x":8370000000000000000,"y":-142000000000000000,"z":-2710000000000000000}},"30014676":{"solarSystemId":30014676,"solarSystemName":"M:22E4","location":{"x":7610000000000000000,"y":-304000000000000000,"z":-2710000000000000000}},"30014677":{"solarSystemId":30014677,"solarSystemName":"D:3T61","location":{"x":7310000000000000000,"y":439000000000000000,"z":-2440000000000000000}},"30014678":{"solarSystemId":30014678,"solarSystemName":"H:382R","location":{"x":7530000000000000000,"y":252444000000000,"z":-2940000000000000000}},"30014679":{"solarSystemId":30014679,"solarSystemName":"H:17T3","location":{"x":7010000000000000000,"y":581000000000000000,"z":-2590000000000000000}},"30014680":{"solarSystemId":30014680,"solarSystemName":"Z:22OE","location":{"x":7350000000000000000,"y":383000000000000000,"z":-2210000000000000000}},"30014681":{"solarSystemId":30014681,"solarSystemName":"J:1EVT","location":{"x":7410000000000000000,"y":-79100000000000000,"z":-2090000000000000000}},"30014682":{"solarSystemId":30014682,"solarSystemName":"U:216R","location":{"x":8000000000000000000,"y":777000000000000000,"z":-2190000000000000000}},"30014683":{"solarSystemId":30014683,"solarSystemName":"S.L7S.B41","location":{"x":11800000000000000000,"y":-1320000000000000000,"z":12000000000000000000}},"30014684":{"solarSystemId":30014684,"solarSystemName":"D.1W9.2R1","location":{"x":11400000000000000000,"y":-1620000000000000000,"z":16800000000000000000}},"30014685":{"solarSystemId":30014685,"solarSystemName":"H.LZS.742","location":{"x":12600000000000000000,"y":-2460000000000000000,"z":13600000000000000000}},"30014686":{"solarSystemId":30014686,"solarSystemName":"T.CRT.K32","location":{"x":13200000000000000000,"y":-2450000000000000000,"z":11400000000000000000}},"30014687":{"solarSystemId":30014687,"solarSystemName":"A.1ET.LT1","location":{"x":13800000000000000000,"y":-1570000000000000000,"z":15800000000000000000}},"30014688":{"solarSystemId":30014688,"solarSystemName":"N.SXS.V31","location":{"x":12500000000000000000,"y":-1280000000000000000,"z":16700000000000000000}},"30014689":{"solarSystemId":30014689,"solarSystemName":"T.WNT.Z81","location":{"x":13100000000000000000,"y":-1470000000000000000,"z":12500000000000000000}},"30014690":{"solarSystemId":30014690,"solarSystemName":"R.DSL.FN1","location":{"x":16500000000000000000,"y":-1610000000000000000,"z":10500000000000000000}},"30014691":{"solarSystemId":30014691,"solarSystemName":"R.D6N.2C1","location":{"x":14100000000000000000,"y":-1730000000000000000,"z":9580000000000000000}},"30014692":{"solarSystemId":30014692,"solarSystemName":"R.NMD.BH1","location":{"x":17900000000000000000,"y":-2040000000000000000,"z":11200000000000000000}},"30014693":{"solarSystemId":30014693,"solarSystemName":"I.DCL.FM1","location":{"x":16700000000000000000,"y":-1790000000000000000,"z":10700000000000000000}},"30014694":{"solarSystemId":30014694,"solarSystemName":"L.DXN.M51","location":{"x":14800000000000000000,"y":-1350000000000000000,"z":10600000000000000000}},"30014695":{"solarSystemId":30014695,"solarSystemName":"S.5HL.1P1","location":{"x":17000000000000000000,"y":-1800000000000000000,"z":10900000000000000000}},"30014696":{"solarSystemId":30014696,"solarSystemName":"S.CKR.JP1","location":{"x":16100000000000000000,"y":-1830000000000000000,"z":10100000000000000000}},"30014697":{"solarSystemId":30014697,"solarSystemName":"T.VGN.C21","location":{"x":14700000000000000000,"y":-1240000000000000000,"z":12000000000000000000}},"30014698":{"solarSystemId":30014698,"solarSystemName":"A.KN9.551","location":{"x":10800000000000000000,"y":-1340000000000000000,"z":11400000000000000000}},"30014699":{"solarSystemId":30014699,"solarSystemName":"T.2Z9.561","location":{"x":11400000000000000000,"y":-1380000000000000000,"z":11000000000000000000}},"30014700":{"solarSystemId":30014700,"solarSystemName":"H.YW8.P4Z","location":{"x":10300000000000000000,"y":-1010000000000000000,"z":10500000000000000000}},"30014701":{"solarSystemId":30014701,"solarSystemName":"U.4D9.R61","location":{"x":10900000000000000000,"y":-1380000000000000000,"z":11100000000000000000}},"30014702":{"solarSystemId":30014702,"solarSystemName":"T.HX9.ZXG","location":{"x":11300000000000000000,"y":-859000000000000000,"z":11200000000000000000}},"30014703":{"solarSystemId":30014703,"solarSystemName":"L.MJ9.KT1","location":{"x":11300000000000000000,"y":-1580000000000000000,"z":10300000000000000000}},"30014704":{"solarSystemId":30014704,"solarSystemName":"E.9K8.5EZ","location":{"x":10300000000000000000,"y":-1040000000000000000,"z":10500000000000000000}},"30014705":{"solarSystemId":30014705,"solarSystemName":"E.199.ES1","location":{"x":10700000000000000000,"y":-1550000000000000000,"z":10500000000000000000}},"30014706":{"solarSystemId":30014706,"solarSystemName":"S.DT9.D81","location":{"x":10800000000000000000,"y":-1460000000000000000,"z":11200000000000000000}},"30014707":{"solarSystemId":30014707,"solarSystemName":"U.Y2T.N21","location":{"x":12800000000000000000,"y":-1240000000000000000,"z":6490000000000000000}},"30014708":{"solarSystemId":30014708,"solarSystemName":"H.W9N.851","location":{"x":14200000000000000000,"y":-1340000000000000000,"z":5950000000000000000}},"30014709":{"solarSystemId":30014709,"solarSystemName":"S.RJS.SCQ","location":{"x":12400000000000000000,"y":-739000000000000000,"z":6040000000000000000}},"30014710":{"solarSystemId":30014710,"solarSystemName":"R.26S.151","location":{"x":11700000000000000000,"y":-1330000000000000000,"z":6930000000000000000}},"30014711":{"solarSystemId":30014711,"solarSystemName":"R.E8S.LJ1","location":{"x":11900000000000000000,"y":-2070000000000000000,"z":8130000000000000000}},"30014712":{"solarSystemId":30014712,"solarSystemName":"T.BDT.3LH","location":{"x":13200000000000000000,"y":-881000000000000000,"z":5070000000000000000}},"30014713":{"solarSystemId":30014713,"solarSystemName":"H.EBT.GHY","location":{"x":13500000000000000000,"y":-1000000000000000000,"z":7140000000000000000}},"30014714":{"solarSystemId":30014714,"solarSystemName":"A.29S.N49","location":{"x":11900000000000000000,"y":-329000000000000000,"z":6820000000000000000}},"30014715":{"solarSystemId":30014715,"solarSystemName":"E.WET.JJT","location":{"x":13800000000000000000,"y":-425000000000000000,"z":5300000000000000000}},"30014716":{"solarSystemId":30014716,"solarSystemName":"A.8JT.4Q2","location":{"x":13600000000000000000,"y":-3030000000000000000,"z":6690000000000000000}},"30014717":{"solarSystemId":30014717,"solarSystemName":"N.EW9.RZ3","location":{"x":11500000000000000000,"y":-4480000000000000000,"z":3730000000000000000}},"30014718":{"solarSystemId":30014718,"solarSystemName":"S.H5R.FM3","location":{"x":15200000000000000000,"y":-4100000000000000000,"z":8580000000000000000}},"30014719":{"solarSystemId":30014719,"solarSystemName":"U.MFT.173","location":{"x":13500000000000000000,"y":-3710000000000000000,"z":9440000000000000000}},"30014720":{"solarSystemId":30014720,"solarSystemName":"N.VZS.4D2","location":{"x":12600000000000000000,"y":-2850000000000000000,"z":5500000000000000000}},"30014721":{"solarSystemId":30014721,"solarSystemName":"I.KWS.ZW3","location":{"x":12600000000000000000,"y":-4540000000000000000,"z":3930000000000000000}},"30014722":{"solarSystemId":30014722,"solarSystemName":"S.1WT.YT3","location":{"x":13700000000000000000,"y":-3890000000000000000,"z":3780000000000000000}},"30014723":{"solarSystemId":30014723,"solarSystemName":"O.7J8.ND3","location":{"x":10100000000000000000,"y":-4010000000000000000,"z":6750000000000000000}},"30014724":{"solarSystemId":30014724,"solarSystemName":"M.46T.3R3","location":{"x":12900000000000000000,"y":-3930000000000000000,"z":6690000000000000000}},"30014725":{"solarSystemId":30014725,"solarSystemName":"S.8P9.LL8","location":{"x":11000000000000000000,"y":304000000000000000,"z":6610000000000000000}},"30014726":{"solarSystemId":30014726,"solarSystemName":"T.5H7.BK9","location":{"x":8940000000000000000,"y":359000000000000000,"z":6150000000000000000}},"30014727":{"solarSystemId":30014727,"solarSystemName":"S.SZ7.H7T","location":{"x":9090000000000000000,"y":-405000000000000000,"z":8120000000000000000}},"30014728":{"solarSystemId":30014728,"solarSystemName":"N.T38.DMS","location":{"x":9340000000000000000,"y":380000000000000000,"z":6650000000000000000}},"30014729":{"solarSystemId":30014729,"solarSystemName":"A.638.02T","location":{"x":9340000000000000000,"y":-399000000000000000,"z":6840000000000000000}},"30014730":{"solarSystemId":30014730,"solarSystemName":"A.6B8.8GN","location":{"x":10000000000000000000,"y":-459000000000000000,"z":8190000000000000000}},"30014731":{"solarSystemId":30014731,"solarSystemName":"I.RQ8.Y98","location":{"x":9960000000000000000,"y":-299000000000000000,"z":7540000000000000000}},"30014732":{"solarSystemId":30014732,"solarSystemName":"M.419.519","location":{"x":10400000000000000000,"y":326000000000000000,"z":6690000000000000000}},"30014733":{"solarSystemId":30014733,"solarSystemName":"O.KR9.2QR","location":{"x":10900000000000000000,"y":491000000000000000,"z":6480000000000000000}},"30014734":{"solarSystemId":30014734,"solarSystemName":"C.RS8.8R9","location":{"x":9600000000000000000,"y":339000000000000000,"z":6830000000000000000}},"30014735":{"solarSystemId":30014735,"solarSystemName":"R.HW6.FD4","location":{"x":7990000000000000000,"y":-5180000000000000000,"z":9490000000000000000}},"30014736":{"solarSystemId":30014736,"solarSystemName":"U.MF7.3D6","location":{"x":8850000000000000000,"y":-7460000000000000000,"z":8860000000000000000}},"30014737":{"solarSystemId":30014737,"solarSystemName":"B.9S8.FM7","location":{"x":9590000000000000000,"y":-8710000000000000000,"z":8480000000000000000}},"30014738":{"solarSystemId":30014738,"solarSystemName":"Arcana","location":{"x":10100000000000000000,"y":-5460000000000000000,"z":8450000000000000000}},"30014739":{"solarSystemId":30014739,"solarSystemName":"C.EH8.Y34","location":{"x":10100000000000000000,"y":-4750000000000000000,"z":9580000000000000000}},"30014740":{"solarSystemId":30014740,"solarSystemName":"D.RP6.JNF","location":{"x":7580000000000000000,"y":-771000000000000000,"z":10200000000000000000}},"30014741":{"solarSystemId":30014741,"solarSystemName":"S.6G6.ED1","location":{"x":7750000000000000000,"y":-1730000000000000000,"z":9220000000000000000}},"30014742":{"solarSystemId":30014742,"solarSystemName":"I.976.F51","location":{"x":7180000000000000000,"y":-1360000000000000000,"z":10000000000000000000}},"30014743":{"solarSystemId":30014743,"solarSystemName":"A.EP6.THD","location":{"x":7600000000000000000,"y":-568000000000000000,"z":9760000000000000000}},"30014744":{"solarSystemId":30014744,"solarSystemName":"T.287.MVZ","location":{"x":8360000000000000000,"y":-1030000000000000000,"z":9530000000000000000}},"30014745":{"solarSystemId":30014745,"solarSystemName":"N.XM6.QD1","location":{"x":7560000000000000000,"y":-1720000000000000000,"z":9180000000000000000}},"30014746":{"solarSystemId":30014746,"solarSystemName":"H.1W6.M3Q","location":{"x":7960000000000000000,"y":-725000000000000000,"z":9770000000000000000}},"30014747":{"solarSystemId":30014747,"solarSystemName":"S.TF6.L81","location":{"x":7690000000000000000,"y":-1460000000000000000,"z":9810000000000000000}},"30014748":{"solarSystemId":30014748,"solarSystemName":"A.HC6.ZRL","location":{"x":7520000000000000000,"y":-520000000000000000,"z":9390000000000000000}},"30014749":{"solarSystemId":30014749,"solarSystemName":"A.0X6.HNT","location":{"x":7850000000000000000,"y":-411000000000000000,"z":9550000000000000000}},"30014750":{"solarSystemId":30014750,"solarSystemName":"D.QT6.5PT","location":{"x":7340000000000000000,"y":-417000000000000000,"z":12900000000000000000}},"30014751":{"solarSystemId":30014751,"solarSystemName":"I.BC7.1ZS","location":{"x":8670000000000000000,"y":392000000000000000,"z":12100000000000000000}},"30014752":{"solarSystemId":30014752,"solarSystemName":"U.CJ6.LV4","location":{"x":7840000000000000000,"y":166000000000000000,"z":10500000000000000000}},"30014753":{"solarSystemId":30014753,"solarSystemName":"R.1J6.2CY","location":{"x":7820000000000000000,"y":-991000000000000000,"z":10800000000000000000}},"30014754":{"solarSystemId":30014754,"solarSystemName":"E.QR7.KZF","location":{"x":8560000000000000000,"y":-789000000000000000,"z":11700000000000000000}},"30014755":{"solarSystemId":30014755,"solarSystemName":"S.F47.1Z1","location":{"x":8240000000000000000,"y":-2160000000000000000,"z":10700000000000000000}},"30014756":{"solarSystemId":30014756,"solarSystemName":"D.047.ND1","location":{"x":8210000000000000000,"y":-1710000000000000000,"z":12600000000000000000}},"30014757":{"solarSystemId":30014757,"solarSystemName":"H.7C8.ED1","location":{"x":9810000000000000000,"y":-1730000000000000000,"z":11400000000000000000}},"30014758":{"solarSystemId":30014758,"solarSystemName":"D.L28.W81","location":{"x":9310000000000000000,"y":-1470000000000000000,"z":13400000000000000000}},"30014759":{"solarSystemId":30014759,"solarSystemName":"T.5T7.DE1","location":{"x":8470000000000000000,"y":-2290000000000000000,"z":12900000000000000000}},"30014760":{"solarSystemId":30014760,"solarSystemName":"E.LZ6.H71","location":{"x":7940000000000000000,"y":-1430000000000000000,"z":12700000000000000000}},"30014761":{"solarSystemId":30014761,"solarSystemName":"H.5V6.C31","location":{"x":7610000000000000000,"y":-1280000000000000000,"z":13200000000000000000}},"30014762":{"solarSystemId":30014762,"solarSystemName":"Armature","location":{"x":7390000000000000000,"y":-1760000000000000000,"z":14200000000000000000}},"30014763":{"solarSystemId":30014763,"solarSystemName":"N.X96.QK1","location":{"x":7270000000000000000,"y":-2260000000000000000,"z":12700000000000000000}},"30014764":{"solarSystemId":30014764,"solarSystemName":"R.3J5.SQ2","location":{"x":6670000000000000000,"y":-3040000000000000000,"z":14900000000000000000}},"30014765":{"solarSystemId":30014765,"solarSystemName":"H.557.8YW","location":{"x":8260000000000000000,"y":-1080000000000000000,"z":14200000000000000000}},"30014766":{"solarSystemId":30014766,"solarSystemName":"D.EC6.0ZY","location":{"x":7530000000000000000,"y":-1000000000000000000,"z":12700000000000000000}},"30014767":{"solarSystemId":30014767,"solarSystemName":"I.009.QLF","location":{"x":10400000000000000000,"y":-773000000000000000,"z":13400000000000000000}},"30014768":{"solarSystemId":30014768,"solarSystemName":"T.VTS.C01","location":{"x":11900000000000000000,"y":-1170000000000000000,"z":12100000000000000000}},"30014769":{"solarSystemId":30014769,"solarSystemName":"S.LT9.0VX","location":{"x":10800000000000000000,"y":-958000000000000000,"z":14600000000000000000}},"30014770":{"solarSystemId":30014770,"solarSystemName":"E.K69.7KV","location":{"x":10600000000000000000,"y":-719000000000000000,"z":13000000000000000000}},"30014771":{"solarSystemId":30014771,"solarSystemName":"E.71T.K5E","location":{"x":12700000000000000000,"y":-1120000000000000000,"z":15000000000000000000}},"30014772":{"solarSystemId":30014772,"solarSystemName":"S.7SS.BWN","location":{"x":11900000000000000000,"y":-466000000000000000,"z":13100000000000000000}},"30014773":{"solarSystemId":30014773,"solarSystemName":"C.4VS.CDT","location":{"x":12200000000000000000,"y":414000000000000000,"z":13600000000000000000}},"30014774":{"solarSystemId":30014774,"solarSystemName":"T.S56.NVL","location":{"x":7110000000000000000,"y":-526000000000000000,"z":16300000000000000000}},"30014775":{"solarSystemId":30014775,"solarSystemName":"U.RN4.5D1","location":{"x":5060000000000000000,"y":-1700000000000000000,"z":16000000000000000000}},"30014776":{"solarSystemId":30014776,"solarSystemName":"A.G25.YDF","location":{"x":5860000000000000000,"y":-774000000000000000,"z":15200000000000000000}},"30014777":{"solarSystemId":30014777,"solarSystemName":"U.5E4.2P1","location":{"x":5730000000000000000,"y":-1800000000000000000,"z":15700000000000000000}},"30014778":{"solarSystemId":30014778,"solarSystemName":"N.M84.FM1","location":{"x":4920000000000000000,"y":-1790000000000000000,"z":16400000000000000000}},"30014779":{"solarSystemId":30014779,"solarSystemName":"E.6E5.YV2","location":{"x":6890000000000000000,"y":-3020000000000000000,"z":15400000000000000000}},"30014780":{"solarSystemId":30014780,"solarSystemName":"G.3R5.NDB","location":{"x":6240000000000000000,"y":-810000000000000000,"z":15100000000000000000}},"30014781":{"solarSystemId":30014781,"solarSystemName":"U.PT5.YP1","location":{"x":6180000000000000000,"y":-1830000000000000000,"z":15800000000000000000}},"30014782":{"solarSystemId":30014782,"solarSystemName":"E.3Y3.MF1","location":{"x":4440000000000000000,"y":-1930000000000000000,"z":12400000000000000000}},"30014783":{"solarSystemId":30014783,"solarSystemName":"S.024.0MY","location":{"x":4680000000000000000,"y":-992000000000000000,"z":12000000000000000000}},"30014784":{"solarSystemId":30014784,"solarSystemName":"S.GC3.T11","location":{"x":4060000000000000000,"y":-1200000000000000000,"z":13100000000000000000}},"30014785":{"solarSystemId":30014785,"solarSystemName":"H.HR3.C91","location":{"x":3950000000000000000,"y":-1500000000000000000,"z":12400000000000000000}},"30014786":{"solarSystemId":30014786,"solarSystemName":"E.XV4.PMP","location":{"x":5330000000000000000,"y":-668000000000000000,"z":12800000000000000000}},"30014787":{"solarSystemId":30014787,"solarSystemName":"I.9W3.GB1","location":{"x":4510000000000000000,"y":-1970000000000000000,"z":12700000000000000000}},"30014788":{"solarSystemId":30014788,"solarSystemName":"A.LK2.Y4G","location":{"x":3400000000000000000,"y":-834000000000000000,"z":12900000000000000000}},"30014789":{"solarSystemId":30014789,"solarSystemName":"U.EQ2.90Z","location":{"x":3060000000000000000,"y":-1010000000000000000,"z":14200000000000000000}},"30014790":{"solarSystemId":30014790,"solarSystemName":"U.YS4.DW1","location":{"x":5000000000000000000,"y":-2220000000000000000,"z":12400000000000000000}},"30014791":{"solarSystemId":30014791,"solarSystemName":"T.4G2.Y1M","location":{"x":3140000000000000000,"y":-615000000000000000,"z":15000000000000000000}},"30014792":{"solarSystemId":30014792,"solarSystemName":"S.XZ3.LT1","location":{"x":4500000000000000000,"y":-1570000000000000000,"z":11600000000000000000}},"30014793":{"solarSystemId":30014793,"solarSystemName":"S.MS5.7ZC","location":{"x":6140000000000000000,"y":-608000000000000000,"z":12300000000000000000}},"30014794":{"solarSystemId":30014794,"solarSystemName":"H.Y05.5Y1","location":{"x":5800000000000000000,"y":-2130000000000000000,"z":11800000000000000000}},"30014795":{"solarSystemId":30014795,"solarSystemName":"D.D55.Z21","location":{"x":5960000000000000000,"y":-1260000000000000000,"z":12100000000000000000}},"30014796":{"solarSystemId":30014796,"solarSystemName":"R.TV5.391","location":{"x":6460000000000000000,"y":-1480000000000000000,"z":12000000000000000000}},"30014797":{"solarSystemId":30014797,"solarSystemName":"S.5M4.1ZY","location":{"x":5230000000000000000,"y":-1000000000000000000,"z":11800000000000000000}},"30014798":{"solarSystemId":30014798,"solarSystemName":"N.WM6.9EH","location":{"x":7560000000000000000,"y":-900000000000000000,"z":12400000000000000000}},"30014799":{"solarSystemId":30014799,"solarSystemName":"A.W35.4VB","location":{"x":5910000000000000000,"y":-814000000000000000,"z":12000000000000000000}},"30014800":{"solarSystemId":30014800,"solarSystemName":"N.MM5.Y9M","location":{"x":6400000000000000000,"y":-624000000000000000,"z":12600000000000000000}},"30014801":{"solarSystemId":30014801,"solarSystemName":"H.SH5.WEB","location":{"x":6640000000000000000,"y":-829000000000000000,"z":11000000000000000000}},"30014802":{"solarSystemId":30014802,"solarSystemName":"R.F75.42B","location":{"x":6040000000000000000,"y":-795000000000000000,"z":13200000000000000000}},"30014803":{"solarSystemId":30014803,"solarSystemName":"H.FP4.8L1","location":{"x":5280000000000000000,"y":-1670000000000000000,"z":14100000000000000000}},"30014804":{"solarSystemId":30014804,"solarSystemName":"H.KD4.DCQ","location":{"x":5190000000000000000,"y":-739000000000000000,"z":14500000000000000000}},"30014805":{"solarSystemId":30014805,"solarSystemName":"N.5S4.562","location":{"x":4980000000000000000,"y":-2530000000000000000,"z":13600000000000000000}},"30014806":{"solarSystemId":30014806,"solarSystemName":"U.HP4.9RC","location":{"x":5290000000000000000,"y":-591000000000000000,"z":14200000000000000000}},"30014807":{"solarSystemId":30014807,"solarSystemName":"H.Y14.772","location":{"x":4680000000000000000,"y":-2570000000000000000,"z":15300000000000000000}},"30014808":{"solarSystemId":30014808,"solarSystemName":"N.ZM4.C9M","location":{"x":5260000000000000000,"y":-623000000000000000,"z":14600000000000000000}},"30014809":{"solarSystemId":30014809,"solarSystemName":"I.JZ4.D0F","location":{"x":5650000000000000000,"y":-757000000000000000,"z":14700000000000000000}},"30014810":{"solarSystemId":30014810,"solarSystemName":"C.6L4.WP2","location":{"x":5120000000000000000,"y":-2990000000000000000,"z":12700000000000000000}},"30014811":{"solarSystemId":30014811,"solarSystemName":"H.7B8.FP1","location":{"x":10000000000000000000,"y":-1830000000000000000,"z":15100000000000000000}},"30014812":{"solarSystemId":30014812,"solarSystemName":"U.XD9.ZG1","location":{"x":10900000000000000000,"y":-2010000000000000000,"z":16500000000000000000}},"30014813":{"solarSystemId":30014813,"solarSystemName":"R.SG8.87E","location":{"x":10100000000000000000,"y":-1130000000000000000,"z":14400000000000000000}},"30014814":{"solarSystemId":30014814,"solarSystemName":"R.JZ8.041","location":{"x":10300000000000000000,"y":-1300000000000000000,"z":14800000000000000000}},"30014815":{"solarSystemId":30014815,"solarSystemName":"H.HB7.0VJ","location":{"x":8890000000000000000,"y":-922000000000000000,"z":15900000000000000000}},"30014816":{"solarSystemId":30014816,"solarSystemName":"L.3V8.PBP","location":{"x":9910000000000000000,"y":-674000000000000000,"z":16000000000000000000}},"30014817":{"solarSystemId":30014817,"solarSystemName":"T.EW8.3D1","location":{"x":10300000000000000000,"y":-1700000000000000000,"z":15000000000000000000}},"30014818":{"solarSystemId":30014818,"solarSystemName":"U.PY8.PPL","location":{"x":10200000000000000000,"y":-525000000000000000,"z":19200000000000000000}},"30014819":{"solarSystemId":30014819,"solarSystemName":"D.N47.PS1","location":{"x":8230000000000000000,"y":-1530000000000000000,"z":17100000000000000000}},"30014820":{"solarSystemId":30014820,"solarSystemName":"D.N68.YH1","location":{"x":9450000000000000000,"y":-64000000000000000,"z":20100000000000000000}},"30014821":{"solarSystemId":30014821,"solarSystemName":"E.TJ7.QMP","location":{"x":8980000000000000000,"y":-668000000000000000,"z":17800000000000000000}},"30014822":{"solarSystemId":30014822,"solarSystemName":"A.N29.SD1","location":{"x":10500000000000000000,"y":-1710000000000000000,"z":19000000000000000000}},"30014823":{"solarSystemId":30014823,"solarSystemName":"S.0T7.W91","location":{"x":8470000000000000000,"y":-1510000000000000000,"z":16500000000000000000}},"30014824":{"solarSystemId":30014824,"solarSystemName":"L.YW7.HTC","location":{"x":9150000000000000000,"y":-590000000000000000,"z":19500000000000000000}},"30014825":{"solarSystemId":30014825,"solarSystemName":"ENL-V09","location":{"x":32800000000000000000,"y":-3380000000000000000,"z":20400000000000000000}},"30014826":{"solarSystemId":30014826,"solarSystemName":"I33-419","location":{"x":34300000000000000000,"y":-1460000000000000000,"z":19100000000000000000}},"30014827":{"solarSystemId":30014827,"solarSystemName":"ELQ-319","location":{"x":33100000000000000000,"y":-3240000000000000000,"z":20900000000000000000}},"30014828":{"solarSystemId":30014828,"solarSystemName":"O6V-N19","location":{"x":34000000000000000000,"y":-3260000000000000000,"z":22900000000000000000}},"30014829":{"solarSystemId":30014829,"solarSystemName":"Dhanab","location":{"x":33800000000000000000,"y":-2810000000000000000,"z":21400000000000000000}},"30014830":{"solarSystemId":30014830,"solarSystemName":"O33-T19","location":{"x":35400000000000000000,"y":-3360000000000000000,"z":21800000000000000000}},"30014831":{"solarSystemId":30014831,"solarSystemName":"EPS-PV8","location":{"x":22800000000000000000,"y":-4860000000000000000,"z":28400000000000000000}},"30014832":{"solarSystemId":30014832,"solarSystemName":"ENL-509","location":{"x":22700000000000000000,"y":-4290000000000000000,"z":29400000000000000000}},"30014833":{"solarSystemId":30014833,"solarSystemName":"O5V-509","location":{"x":24300000000000000000,"y":-4350000000000000000,"z":27800000000000000000}},"30014834":{"solarSystemId":30014834,"solarSystemName":"ITP-NV8","location":{"x":23900000000000000000,"y":-3650000000000000000,"z":27300000000000000000}},"30014835":{"solarSystemId":30014835,"solarSystemName":"IPF-TV8","location":{"x":22400000000000000000,"y":-4780000000000000000,"z":29000000000000000000}},"30014836":{"solarSystemId":30014836,"solarSystemName":"EHV-129","location":{"x":28500000000000000000,"y":-5020000000000000000,"z":30800000000000000000}},"30014837":{"solarSystemId":30014837,"solarSystemName":"I86-BT8","location":{"x":23600000000000000000,"y":-4610000000000000000,"z":23800000000000000000}},"30014838":{"solarSystemId":30014838,"solarSystemName":"OHH-529","location":{"x":31100000000000000000,"y":-4260000000000000000,"z":29100000000000000000}},"30014839":{"solarSystemId":30014839,"solarSystemName":"IN7-S19","location":{"x":33800000000000000000,"y":-4090000000000000000,"z":24100000000000000000}},"30014840":{"solarSystemId":30014840,"solarSystemName":"ED8-F29","location":{"x":33600000000000000000,"y":-4210000000000000000,"z":28400000000000000000}},"30014841":{"solarSystemId":30014841,"solarSystemName":"IGN-L19","location":{"x":32300000000000000000,"y":-4330000000000000000,"z":24800000000000000000}},"30014842":{"solarSystemId":30014842,"solarSystemName":"IFT-B09","location":{"x":28500000000000000000,"y":-3830000000000000000,"z":23900000000000000000}},"30014843":{"solarSystemId":30014843,"solarSystemName":"AT5-KV8","location":{"x":27500000000000000000,"y":-4120000000000000000,"z":22500000000000000000}},"30014844":{"solarSystemId":30014844,"solarSystemName":"EGN-S09","location":{"x":29200000000000000000,"y":-3930000000000000000,"z":25100000000000000000}},"30014845":{"solarSystemId":30014845,"solarSystemName":"U1L-419","location":{"x":31500000000000000000,"y":-3680000000000000000,"z":23300000000000000000}},"30014846":{"solarSystemId":30014846,"solarSystemName":"OVJ-J29","location":{"x":40500000000000000000,"y":-2430000000000000000,"z":19200000000000000000}},"30014847":{"solarSystemId":30014847,"solarSystemName":"IV5-N29","location":{"x":41400000000000000000,"y":-2590000000000000000,"z":19000000000000000000}},"30014848":{"solarSystemId":30014848,"solarSystemName":"OM1-829","location":{"x":38000000000000000000,"y":-2650000000000000000,"z":20700000000000000000}},"30014849":{"solarSystemId":30014849,"solarSystemName":"EG9-J29","location":{"x":40700000000000000000,"y":-2410000000000000000,"z":18800000000000000000}},"30014850":{"solarSystemId":30014850,"solarSystemName":"IPS-329","location":{"x":38300000000000000000,"y":-2500000000000000000,"z":18000000000000000000}},"30014851":{"solarSystemId":30014851,"solarSystemName":"AJC-FN8","location":{"x":26900000000000000000,"y":-2310000000000000000,"z":8750000000000000000}},"30014852":{"solarSystemId":30014852,"solarSystemName":"EC3-LN8","location":{"x":27400000000000000000,"y":-1030000000000000000,"z":8140000000000000000}},"30014853":{"solarSystemId":30014853,"solarSystemName":"OT5-5P8","location":{"x":27500000000000000000,"y":-1430000000000000000,"z":8970000000000000000}},"30014854":{"solarSystemId":30014854,"solarSystemName":"ER4-CR8","location":{"x":29100000000000000000,"y":-1610000000000000000,"z":10800000000000000000}},"30014855":{"solarSystemId":30014855,"solarSystemName":"I7Q-BQ8","location":{"x":28500000000000000000,"y":-1590000000000000000,"z":9690000000000000000}},"30014856":{"solarSystemId":30014856,"solarSystemName":"OT0-MP8","location":{"x":27800000000000000000,"y":-943000000000000000,"z":9790000000000000000}},"30014857":{"solarSystemId":30014857,"solarSystemName":"I2M-QQ8","location":{"x":28400000000000000000,"y":-2260000000000000000,"z":10600000000000000000}},"30014858":{"solarSystemId":30014858,"solarSystemName":"I1F-LP8","location":{"x":26900000000000000000,"y":-2690000000000000000,"z":11600000000000000000}},"30014859":{"solarSystemId":30014859,"solarSystemName":"O1S-NN8","location":{"x":25200000000000000000,"y":-1730000000000000000,"z":12700000000000000000}},"30014860":{"solarSystemId":30014860,"solarSystemName":"EL1-NN8","location":{"x":25700000000000000000,"y":-2110000000000000000,"z":11800000000000000000}},"30014861":{"solarSystemId":30014861,"solarSystemName":"INF-FP8","location":{"x":25700000000000000000,"y":-3120000000000000000,"z":13100000000000000000}},"30014862":{"solarSystemId":30014862,"solarSystemName":"UDT-TP8","location":{"x":26400000000000000000,"y":-2710000000000000000,"z":13100000000000000000}},"30014863":{"solarSystemId":30014863,"solarSystemName":"O1M-FN8","location":{"x":25100000000000000000,"y":-1490000000000000000,"z":12500000000000000000}},"30014864":{"solarSystemId":30014864,"solarSystemName":"UGV-FN8","location":{"x":25000000000000000000,"y":-1890000000000000000,"z":12700000000000000000}},"30014865":{"solarSystemId":30014865,"solarSystemName":"I6J-0Q8","location":{"x":27200000000000000000,"y":-2020000000000000000,"z":11800000000000000000}},"30014866":{"solarSystemId":30014866,"solarSystemName":"E4V-5N8","location":{"x":25200000000000000000,"y":-2090000000000000000,"z":11800000000000000000}},"30014867":{"solarSystemId":30014867,"solarSystemName":"EQT-3M8","location":{"x":24700000000000000000,"y":-2070000000000000000,"z":10200000000000000000}},"30014868":{"solarSystemId":30014868,"solarSystemName":"AVQ-RM8","location":{"x":24000000000000000000,"y":-2000000000000000000,"z":13300000000000000000}},"30014869":{"solarSystemId":30014869,"solarSystemName":"OQG-4R8","location":{"x":28300000000000000000,"y":-2090000000000000000,"z":11900000000000000000}},"30014870":{"solarSystemId":30014870,"solarSystemName":"ARN-NQ8","location":{"x":28100000000000000000,"y":-1900000000000000000,"z":11300000000000000000}},"30014871":{"solarSystemId":30014871,"solarSystemName":"E97-BQ8","location":{"x":29000000000000000000,"y":-1440000000000000000,"z":8360000000000000000}},"30014872":{"solarSystemId":30014872,"solarSystemName":"ARN-GR8","location":{"x":28600000000000000000,"y":-1620000000000000000,"z":12200000000000000000}},"30014873":{"solarSystemId":30014873,"solarSystemName":"ID3-PR8","location":{"x":29800000000000000000,"y":-2450000000000000000,"z":10200000000000000000}},"30014874":{"solarSystemId":30014874,"solarSystemName":"IPM-CR8","location":{"x":28500000000000000000,"y":-2140000000000000000,"z":12000000000000000000}},"30014875":{"solarSystemId":30014875,"solarSystemName":"ASB-PR8","location":{"x":30700000000000000000,"y":-1190000000000000000,"z":8250000000000000000}},"30014876":{"solarSystemId":30014876,"solarSystemName":"EM7-SP8","location":{"x":28700000000000000000,"y":-1290000000000000000,"z":8190000000000000000}},"30014877":{"solarSystemId":30014877,"solarSystemName":"IJC-QQ8","location":{"x":29500000000000000000,"y":-1400000000000000000,"z":8170000000000000000}},"30014878":{"solarSystemId":30014878,"solarSystemName":"UKQ-6S8","location":{"x":31400000000000000000,"y":-1180000000000000000,"z":8150000000000000000}},"30014879":{"solarSystemId":30014879,"solarSystemName":"IPM-KQ8","location":{"x":29400000000000000000,"y":-1510000000000000000,"z":8060000000000000000}},"30014880":{"solarSystemId":30014880,"solarSystemName":"IQG-MS8","location":{"x":32700000000000000000,"y":-565000000000000000,"z":6340000000000000000}},"30014881":{"solarSystemId":30014881,"solarSystemName":"AG4-SR8","location":{"x":31200000000000000000,"y":-1240000000000000000,"z":7370000000000000000}},"30014882":{"solarSystemId":30014882,"solarSystemName":"I13-MH8","location":{"x":21900000000000000000,"y":-1670000000000000000,"z":8970000000000000000}},"30014883":{"solarSystemId":30014883,"solarSystemName":"I97-FL8","location":{"x":24200000000000000000,"y":-2410000000000000000,"z":9990000000000000000}},"30014884":{"solarSystemId":30014884,"solarSystemName":"AG5-DH8","location":{"x":21300000000000000000,"y":-594000000000000000,"z":9650000000000000000}},"30014885":{"solarSystemId":30014885,"solarSystemName":"EFH-KF8","location":{"x":21600000000000000000,"y":-690000000000000000,"z":5700000000000000000}},"30014886":{"solarSystemId":30014886,"solarSystemName":"IC3-6H8","location":{"x":22100000000000000000,"y":-2010000000000000000,"z":7530000000000000000}},"30014887":{"solarSystemId":30014887,"solarSystemName":"I7K-LJ8","location":{"x":23500000000000000000,"y":-997000000000000000,"z":7700000000000000000}},"30014888":{"solarSystemId":30014888,"solarSystemName":"UP9-9G8","location":{"x":22000000000000000000,"y":-491000000000000000,"z":6080000000000000000}},"30014889":{"solarSystemId":30014889,"solarSystemName":"E12-MT8","location":{"x":33600000000000000000,"y":-2510000000000000000,"z":8410000000000000000}},"30014890":{"solarSystemId":30014890,"solarSystemName":"ETP-VT8","location":{"x":34600000000000000000,"y":-2080000000000000000,"z":7070000000000000000}},"30014891":{"solarSystemId":30014891,"solarSystemName":"EM7-PT8","location":{"x":33600000000000000000,"y":-1430000000000000000,"z":8710000000000000000}},"30014892":{"solarSystemId":30014892,"solarSystemName":"ILK-GT8","location":{"x":33600000000000000000,"y":-1660000000000000000,"z":7730000000000000000}},"30014893":{"solarSystemId":30014893,"solarSystemName":"I28-8T8","location":{"x":33400000000000000000,"y":-3050000000000000000,"z":6440000000000000000}},"30014894":{"solarSystemId":30014894,"solarSystemName":"I54-MV8","location":{"x":34400000000000000000,"y":-2240000000000000000,"z":11500000000000000000}},"30014895":{"solarSystemId":30014895,"solarSystemName":"E07-NV8","location":{"x":34400000000000000000,"y":-2050000000000000000,"z":11600000000000000000}},"30014896":{"solarSystemId":30014896,"solarSystemName":"ESH-409","location":{"x":35700000000000000000,"y":-2040000000000000000,"z":10100000000000000000}},"30014897":{"solarSystemId":30014897,"solarSystemName":"IBL-SV8","location":{"x":34700000000000000000,"y":-2150000000000000000,"z":11600000000000000000}},"30014898":{"solarSystemId":30014898,"solarSystemName":"OTB-SV8","location":{"x":34900000000000000000,"y":-2000000000000000000,"z":11200000000000000000}},"30014899":{"solarSystemId":30014899,"solarSystemName":"ERN-2T8","location":{"x":31500000000000000000,"y":-2040000000000000000,"z":10900000000000000000}},"30014900":{"solarSystemId":30014900,"solarSystemName":"E2M-BS8","location":{"x":30500000000000000000,"y":-2360000000000000000,"z":10800000000000000000}},"30014901":{"solarSystemId":30014901,"solarSystemName":"OVJ-TS8","location":{"x":30900000000000000000,"y":-2110000000000000000,"z":11700000000000000000}},"30014902":{"solarSystemId":30014902,"solarSystemName":"EV0-QS8","location":{"x":31700000000000000000,"y":-1810000000000000000,"z":9440000000000000000}},"30014903":{"solarSystemId":30014903,"solarSystemName":"OFN-PS8","location":{"x":31100000000000000000,"y":-1610000000000000000,"z":10900000000000000000}},"30014904":{"solarSystemId":30014904,"solarSystemName":"IJ5-0S8","location":{"x":28800000000000000000,"y":-2260000000000000000,"z":13100000000000000000}},"30014905":{"solarSystemId":30014905,"solarSystemName":"IR9-6T8","location":{"x":28900000000000000000,"y":-2840000000000000000,"z":16400000000000000000}},"30014906":{"solarSystemId":30014906,"solarSystemName":"EJJ-CT8","location":{"x":30100000000000000000,"y":-2490000000000000000,"z":15200000000000000000}},"30014907":{"solarSystemId":30014907,"solarSystemName":"EQ3-2S8","location":{"x":28700000000000000000,"y":-2250000000000000000,"z":13500000000000000000}},"30014908":{"solarSystemId":30014908,"solarSystemName":"Waqi","location":{"x":28300000000000000000,"y":-2030000000000000000,"z":13700000000000000000}},"30014909":{"solarSystemId":30014909,"solarSystemName":"O1F-PS8","location":{"x":28000000000000000000,"y":-2760000000000000000,"z":16600000000000000000}},"30014910":{"solarSystemId":30014910,"solarSystemName":"E12-TS8","location":{"x":28200000000000000000,"y":-2790000000000000000,"z":16600000000000000000}},"30014911":{"solarSystemId":30014911,"solarSystemName":"ERT-3V8","location":{"x":31700000000000000000,"y":-1680000000000000000,"z":14700000000000000000}},"30014912":{"solarSystemId":30014912,"solarSystemName":"E9R-QS8","location":{"x":29700000000000000000,"y":-1740000000000000000,"z":14000000000000000000}},"30014913":{"solarSystemId":30014913,"solarSystemName":"IL6-LT8","location":{"x":31600000000000000000,"y":-1570000000000000000,"z":13100000000000000000}},"30014914":{"solarSystemId":30014914,"solarSystemName":"INF-4V8","location":{"x":32500000000000000000,"y":-1520000000000000000,"z":13400000000000000000}},"30014915":{"solarSystemId":30014915,"solarSystemName":"EKQ-PT8","location":{"x":32200000000000000000,"y":-1590000000000000000,"z":12400000000000000000}},"30014916":{"solarSystemId":30014916,"solarSystemName":"EF9-MT8","location":{"x":32100000000000000000,"y":-2020000000000000000,"z":12200000000000000000}},"30014917":{"solarSystemId":30014917,"solarSystemName":"ANF-7Q8","location":{"x":30000000000000000000,"y":-1630000000000000000,"z":5350000000000000000}},"30014918":{"solarSystemId":30014918,"solarSystemName":"I39-GP8","location":{"x":29700000000000000000,"y":-3040000000000000000,"z":3290000000000000000}},"30014919":{"solarSystemId":30014919,"solarSystemName":"E97-JP8","location":{"x":29900000000000000000,"y":-1860000000000000000,"z":3110000000000000000}},"30014920":{"solarSystemId":30014920,"solarSystemName":"EN2-VR8","location":{"x":31700000000000000000,"y":-2670000000000000000,"z":5760000000000000000}},"30014921":{"solarSystemId":30014921,"solarSystemName":"UVQ-VQ8","location":{"x":30900000000000000000,"y":-2730000000000000000,"z":4240000000000000000}},"30014922":{"solarSystemId":30014922,"solarSystemName":"O2F-L19","location":{"x":37000000000000000000,"y":-2380000000000000000,"z":17500000000000000000}},"30014923":{"solarSystemId":30014923,"solarSystemName":"EFT-419","location":{"x":37300000000000000000,"y":-3180000000000000000,"z":13100000000000000000}},"30014924":{"solarSystemId":30014924,"solarSystemName":"E12-Q19","location":{"x":38900000000000000000,"y":-1990000000000000000,"z":14200000000000000000}},"30014925":{"solarSystemId":30014925,"solarSystemName":"IFG-G09","location":{"x":33700000000000000000,"y":-1820000000000000000,"z":16700000000000000000}},"30014926":{"solarSystemId":30014926,"solarSystemName":"ON7-909","location":{"x":34000000000000000000,"y":-2430000000000000000,"z":15400000000000000000}},"30014927":{"solarSystemId":30014927,"solarSystemName":"M:377V","location":{"x":1090000000000000000,"y":4160000000000000000,"z":6870000000000000000}},"30014928":{"solarSystemId":30014928,"solarSystemName":"D:39L4","location":{"x":2130000000000000000,"y":3600000000000000000,"z":6330000000000000000}},"30014929":{"solarSystemId":30014929,"solarSystemName":"G:2N52","location":{"x":838000000000000000,"y":3150000000000000000,"z":5580000000000000000}},"30014930":{"solarSystemId":30014930,"solarSystemName":"F:3O25","location":{"x":2640000000000000000,"y":2900000000000000000,"z":5840000000000000000}},"30014931":{"solarSystemId":30014931,"solarSystemName":"H:3OKI","location":{"x":1780000000000000000,"y":2710000000000000000,"z":6590000000000000000}},"30014932":{"solarSystemId":30014932,"solarSystemName":"Q:3V21","location":{"x":1790000000000000000,"y":1760000000000000000,"z":6330000000000000000}},"30014933":{"solarSystemId":30014933,"solarSystemName":"P:32SI","location":{"x":1870000000000000000,"y":2200000000000000000,"z":5390000000000000000}},"30014934":{"solarSystemId":30014934,"solarSystemName":"J:2ON3","location":{"x":867000000000000000,"y":4560000000000000000,"z":6490000000000000000}},"30014935":{"solarSystemId":30014935,"solarSystemName":"M:3SI9","location":{"x":6420000000000000000,"y":988000000000000000,"z":2050000000000000000}},"30014936":{"solarSystemId":30014936,"solarSystemName":"Z:2IEK","location":{"x":6810000000000000000,"y":-110000000000000000,"z":3270000000000000000}},"30014937":{"solarSystemId":30014937,"solarSystemName":"U:2LK6","location":{"x":6370000000000000000,"y":-105000000000000000,"z":2680000000000000000}},"30014938":{"solarSystemId":30014938,"solarSystemName":"Y:2KO7","location":{"x":6860000000000000000,"y":277000000000000000,"z":4170000000000000000}},"30014939":{"solarSystemId":30014939,"solarSystemName":"Z:3AN6","location":{"x":6250000000000000000,"y":669000000000000000,"z":1700000000000000000}},"30014940":{"solarSystemId":30014940,"solarSystemName":"U:2IVK","location":{"x":5860000000000000000,"y":463000000000000000,"z":2890000000000000000}},"30014941":{"solarSystemId":30014941,"solarSystemName":"F:35IA","location":{"x":7200000000000000000,"y":3220000000000000000,"z":2450000000000000000}},"30014942":{"solarSystemId":30014942,"solarSystemName":"P:3N79","location":{"x":6430000000000000000,"y":-53700000000000000,"z":3990000000000000000}},"30014943":{"solarSystemId":30014943,"solarSystemName":"Q:210V","location":{"x":6040000000000000000,"y":-181000000000000000,"z":3000000000000000000}},"30014944":{"solarSystemId":30014944,"solarSystemName":"U:2A5O","location":{"x":6590000000000000000,"y":516000000000000000,"z":1930000000000000000}},"30014945":{"solarSystemId":30014945,"solarSystemName":"J:128V","location":{"x":6110000000000000000,"y":1810000000000000000,"z":3430000000000000000}},"30014946":{"solarSystemId":30014946,"solarSystemName":"Q:3235","location":{"x":4180000000000000000,"y":2820000000000000000,"z":7960000000000000000}},"30014947":{"solarSystemId":30014947,"solarSystemName":"U:3STS","location":{"x":4590000000000000000,"y":2810000000000000000,"z":6470000000000000000}},"30014948":{"solarSystemId":30014948,"solarSystemName":"J:35EO","location":{"x":3770000000000000000,"y":4430000000000000000,"z":5590000000000000000}},"30014949":{"solarSystemId":30014949,"solarSystemName":"Q:3ILK","location":{"x":4170000000000000000,"y":2770000000000000000,"z":6410000000000000000}},"30014950":{"solarSystemId":30014950,"solarSystemName":"P:3N5N","location":{"x":4480000000000000000,"y":4640000000000000000,"z":7990000000000000000}},"30014951":{"solarSystemId":30014951,"solarSystemName":"D:39TE","location":{"x":4510000000000000000,"y":3700000000000000000,"z":6260000000000000000}},"30014952":{"solarSystemId":30014952,"solarSystemName":"Y:363E","location":{"x":3420000000000000000,"y":1930000000000000000,"z":8180000000000000000}},"30014953":{"solarSystemId":30014953,"solarSystemName":"U:3VR9","location":{"x":4420000000000000000,"y":3750000000000000000,"z":8150000000000000000}},"30014954":{"solarSystemId":30014954,"solarSystemName":"Z:3190","location":{"x":7430000000000000000,"y":2630000000000000000,"z":5320000000000000000}},"30014955":{"solarSystemId":30014955,"solarSystemName":"Z:33K1","location":{"x":7050000000000000000,"y":899000000000000000,"z":3770000000000000000}},"30014956":{"solarSystemId":30014956,"solarSystemName":"Y:386R","location":{"x":8410000000000000000,"y":3090000000000000000,"z":6730000000000000000}},"30014957":{"solarSystemId":30014957,"solarSystemName":"P:2O3T","location":{"x":6870000000000000000,"y":2960000000000000000,"z":6200000000000000000}},"30014958":{"solarSystemId":30014958,"solarSystemName":"G:33V2","location":{"x":7050000000000000000,"y":648000000000000000,"z":4130000000000000000}},"30014959":{"solarSystemId":30014959,"solarSystemName":"G:2T85","location":{"x":5360000000000000000,"y":3530000000000000000,"z":5480000000000000000}},"30014960":{"solarSystemId":30014960,"solarSystemName":"P:33E0","location":{"x":5740000000000000000,"y":3000000000000000000,"z":6820000000000000000}},"30014961":{"solarSystemId":30014961,"solarSystemName":"P:32R8","location":{"x":7930000000000000000,"y":1490000000000000000,"z":6870000000000000000}},"30014962":{"solarSystemId":30014962,"solarSystemName":"Z:2LR9","location":{"x":6240000000000000000,"y":5220000000000000000,"z":2500000000000000000}},"30014963":{"solarSystemId":30014963,"solarSystemName":"J:3O0S","location":{"x":7430000000000000000,"y":6680000000000000000,"z":3010000000000000000}},"30014964":{"solarSystemId":30014964,"solarSystemName":"D:2RR6","location":{"x":6410000000000000000,"y":3660000000000000000,"z":2720000000000000000}},"30014965":{"solarSystemId":30014965,"solarSystemName":"F:2EN7","location":{"x":7970000000000000000,"y":7270000000000000000,"z":5160000000000000000}},"30014966":{"solarSystemId":30014966,"solarSystemName":"Z:35AK","location":{"x":7740000000000000000,"y":4310000000000000000,"z":2220000000000000000}},"30014967":{"solarSystemId":30014967,"solarSystemName":"B:3N5K","location":{"x":7470000000000000000,"y":5610000000000000000,"z":3290000000000000000}},"30014968":{"solarSystemId":30014968,"solarSystemName":"H:2I07","location":{"x":6180000000000000000,"y":4840000000000000000,"z":5030000000000000000}},"30014969":{"solarSystemId":30014969,"solarSystemName":"Y:398L","location":{"x":4840000000000000000,"y":7220000000000000000,"z":2110000000000000000}},"30014970":{"solarSystemId":30014970,"solarSystemName":"Z:39I7","location":{"x":5110000000000000000,"y":7340000000000000000,"z":-478000000000000000}},"30014971":{"solarSystemId":30014971,"solarSystemName":"P:30S8","location":{"x":9740000000000000000,"y":5070000000000000000,"z":1120000000000000000}},"30014972":{"solarSystemId":30014972,"solarSystemName":"G:3R9T","location":{"x":5280000000000000000,"y":5660000000000000000,"z":4370000000000000000}},"30014973":{"solarSystemId":30014973,"solarSystemName":"F:2T9K","location":{"x":5960000000000000000,"y":6550000000000000000,"z":420000000000000000}},"30014974":{"solarSystemId":30014974,"solarSystemName":"P:3672","location":{"x":4960000000000000000,"y":9670000000000000000,"z":6560000000000000000}},"30014975":{"solarSystemId":30014975,"solarSystemName":"D:3AAT","location":{"x":3910000000000000000,"y":9430000000000000000,"z":3850000000000000000}},"30014976":{"solarSystemId":30014976,"solarSystemName":"Z:33R7","location":{"x":5870000000000000000,"y":9710000000000000000,"z":1140000000000000000}},"30014977":{"solarSystemId":30014977,"solarSystemName":"D:3REN","location":{"x":6810000000000000000,"y":10200000000000000000,"z":3800000000000000000}},"30014978":{"solarSystemId":30014978,"solarSystemName":"B:LTIK","location":{"x":5530000000000000000,"y":7390000000000000000,"z":2910000000000000000}},"30014979":{"solarSystemId":30014979,"solarSystemName":"B:2SK8","location":{"x":3980000000000000000,"y":6600000000000000000,"z":3090000000000000000}},"30014980":{"solarSystemId":30014980,"solarSystemName":"H:29KN","location":{"x":5160000000000000000,"y":6010000000000000000,"z":3300000000000000000}},"30014981":{"solarSystemId":30014981,"solarSystemName":"Z:35O4","location":{"x":4260000000000000000,"y":6920000000000000000,"z":2330000000000000000}},"30014982":{"solarSystemId":30014982,"solarSystemName":"Q:3IOL","location":{"x":4740000000000000000,"y":6550000000000000000,"z":3060000000000000000}},"30014983":{"solarSystemId":30014983,"solarSystemName":"Z:3EN4","location":{"x":3840000000000000000,"y":6560000000000000000,"z":2890000000000000000}},"30014984":{"solarSystemId":30014984,"solarSystemName":"J:37LE","location":{"x":-4280000000000000000,"y":-11000000000000000000,"z":-10400000000000000000}},"30014985":{"solarSystemId":30014985,"solarSystemName":"Z:32AI","location":{"x":-3440000000000000000,"y":-10500000000000000000,"z":-2940000000000000000}},"30014986":{"solarSystemId":30014986,"solarSystemName":"D:3RVO","location":{"x":-1320000000000000000,"y":-12000000000000000000,"z":-3810000000000000000}},"30014987":{"solarSystemId":30014987,"solarSystemName":"F:2L54","location":{"x":-1710000000000000000,"y":-9310000000000000000,"z":-4920000000000000000}},"30014988":{"solarSystemId":30014988,"solarSystemName":"B:2L0R","location":{"x":-2040000000000000000,"y":-11300000000000000000,"z":-3940000000000000000}},"30014989":{"solarSystemId":30014989,"solarSystemName":"Q:31I4","location":{"x":1130000000000000000,"y":-8150000000000000000,"z":1070000000000000000}},"30014990":{"solarSystemId":30014990,"solarSystemName":"F:36L5","location":{"x":2060000000000000000,"y":-8710000000000000000,"z":401000000000000000}},"30014991":{"solarSystemId":30014991,"solarSystemName":"M:2IV9","location":{"x":1380000000000000000,"y":-9260000000000000000,"z":238000000000000000}},"30014992":{"solarSystemId":30014992,"solarSystemName":"D:2T4R","location":{"x":786000000000000000,"y":-8840000000000000000,"z":-705000000000000000}},"30014993":{"solarSystemId":30014993,"solarSystemName":"F:179I","location":{"x":1350000000000000000,"y":-9410000000000000000,"z":-230000000000000000}},"30014994":{"solarSystemId":30014994,"solarSystemName":"G:3V04","location":{"x":-709000000000000000,"y":-9490000000000000000,"z":-3300000000000000000}},"30014995":{"solarSystemId":30014995,"solarSystemName":"F:352T","location":{"x":-1350000000000000000,"y":-8970000000000000000,"z":-4060000000000000000}},"30014996":{"solarSystemId":30014996,"solarSystemName":"D:32A4","location":{"x":-1630000000000000000,"y":-8900000000000000000,"z":-1360000000000000000}},"30014997":{"solarSystemId":30014997,"solarSystemName":"U:2EEL","location":{"x":-1670000000000000000,"y":-9050000000000000000,"z":-2030000000000000000}},"30014998":{"solarSystemId":30014998,"solarSystemName":"P:3ONS","location":{"x":590000000000000000,"y":-8520000000000000000,"z":-1820000000000000000}},"30014999":{"solarSystemId":30014999,"solarSystemName":"B:2IR8","location":{"x":1960000000000000000,"y":-6660000000000000000,"z":-1710000000000000000}},"30015000":{"solarSystemId":30015000,"solarSystemName":"M:3TO1","location":{"x":2300000000000000000,"y":-7570000000000000000,"z":-1470000000000000000}},"30015001":{"solarSystemId":30015001,"solarSystemName":"M:1S70","location":{"x":2790000000000000000,"y":-8750000000000000000,"z":-203000000000000000}},"30015002":{"solarSystemId":30015002,"solarSystemName":"G:4570","location":{"x":2180000000000000000,"y":-7850000000000000000,"z":-1040000000000000000}},"30015003":{"solarSystemId":30015003,"solarSystemName":"F:1ONK","location":{"x":2040000000000000000,"y":-6360000000000000000,"z":-1260000000000000000}},"30015004":{"solarSystemId":30015004,"solarSystemName":"B:29IK","location":{"x":3440000000000000000,"y":-5680000000000000000,"z":262000000000000000}},"30015005":{"solarSystemId":30015005,"solarSystemName":"P:3A9V","location":{"x":3550000000000000000,"y":-6880000000000000000,"z":-366000000000000000}},"30015006":{"solarSystemId":30015006,"solarSystemName":"H:3I02","location":{"x":3510000000000000000,"y":-6760000000000000000,"z":-742000000000000000}},"30015007":{"solarSystemId":30015007,"solarSystemName":"F:3SSK","location":{"x":3770000000000000000,"y":-5510000000000000000,"z":748000000000000000}},"30015008":{"solarSystemId":30015008,"solarSystemName":"J:3NR0","location":{"x":4330000000000000000,"y":-6680000000000000000,"z":-479000000000000000}},"30015009":{"solarSystemId":30015009,"solarSystemName":"J:36R6","location":{"x":4500000000000000000,"y":-6600000000000000000,"z":617000000000000000}},"30015010":{"solarSystemId":30015010,"solarSystemName":"Z:3SS5","location":{"x":4900000000000000000,"y":-10300000000000000000,"z":-116000000000000000}},"30015011":{"solarSystemId":30015011,"solarSystemName":"B:3132","location":{"x":5710000000000000000,"y":-11100000000000000000,"z":1270000000000000000}},"30015012":{"solarSystemId":30015012,"solarSystemName":"P:1NKA","location":{"x":4810000000000000000,"y":-11300000000000000000,"z":1010000000000000000}},"30015013":{"solarSystemId":30015013,"solarSystemName":"J:1803","location":{"x":3810000000000000000,"y":-10700000000000000000,"z":630000000000000000}},"30015014":{"solarSystemId":30015014,"solarSystemName":"D:24A3","location":{"x":4470000000000000000,"y":-9550000000000000000,"z":133000000000000000}},"30015015":{"solarSystemId":30015015,"solarSystemName":"F:3N5I","location":{"x":2020000000000000000,"y":-14700000000000000000,"z":2690000000000000000}},"30015016":{"solarSystemId":30015016,"solarSystemName":"B:34NK","location":{"x":1360000000000000000,"y":-14300000000000000000,"z":-256000000000000000}},"30015017":{"solarSystemId":30015017,"solarSystemName":"B:3RIO","location":{"x":3280000000000000000,"y":-13000000000000000000,"z":820000000000000000}},"30015018":{"solarSystemId":30015018,"solarSystemName":"H:2V6E","location":{"x":2890000000000000000,"y":-13700000000000000000,"z":4960000000000000000}},"30015019":{"solarSystemId":30015019,"solarSystemName":"Q:RTK4","location":{"x":2480000000000000000,"y":-12800000000000000000,"z":3630000000000000000}},"30015020":{"solarSystemId":30015020,"solarSystemName":"Q:3O9K","location":{"x":8190000000000000000,"y":-6560000000000000000,"z":-9040000000000000000}},"30015021":{"solarSystemId":30015021,"solarSystemName":"H:3RN0","location":{"x":8890000000000000000,"y":-4100000000000000000,"z":-10900000000000000000}},"30015022":{"solarSystemId":30015022,"solarSystemName":"D:3NLV","location":{"x":7290000000000000000,"y":-5880000000000000000,"z":-10400000000000000000}},"30015023":{"solarSystemId":30015023,"solarSystemName":"D:RIS7","location":{"x":5970000000000000000,"y":-4780000000000000000,"z":-11000000000000000000}},"30015024":{"solarSystemId":30015024,"solarSystemName":"Y:1I6S","location":{"x":8560000000000000000,"y":-7820000000000000000,"z":-10100000000000000000}},"30015025":{"solarSystemId":30015025,"solarSystemName":"U:35AT","location":{"x":9640000000000000000,"y":-4950000000000000000,"z":-6200000000000000000}},"30015026":{"solarSystemId":30015026,"solarSystemName":"J:3T4T","location":{"x":10700000000000000000,"y":-4220000000000000000,"z":-5190000000000000000}},"30015027":{"solarSystemId":30015027,"solarSystemName":"P:2KTL","location":{"x":10100000000000000000,"y":-4130000000000000000,"z":-5730000000000000000}},"30015028":{"solarSystemId":30015028,"solarSystemName":"J:1NLN","location":{"x":9950000000000000000,"y":-2560000000000000000,"z":-5080000000000000000}},"30015029":{"solarSystemId":30015029,"solarSystemName":"P:19EK","location":{"x":9880000000000000000,"y":-2390000000000000000,"z":-5120000000000000000}},"30015030":{"solarSystemId":30015030,"solarSystemName":"U:10ER","location":{"x":10800000000000000000,"y":-2860000000000000000,"z":-5870000000000000000}},"30015031":{"solarSystemId":30015031,"solarSystemName":"B:4KS0","location":{"x":10700000000000000000,"y":-3740000000000000000,"z":-4670000000000000000}},"30015032":{"solarSystemId":30015032,"solarSystemName":"B:1T9S","location":{"x":9920000000000000000,"y":-2740000000000000000,"z":-6150000000000000000}},"30015033":{"solarSystemId":30015033,"solarSystemName":"Q:3NO8","location":{"x":10800000000000000000,"y":-1760000000000000000,"z":-5940000000000000000}},"30015034":{"solarSystemId":30015034,"solarSystemName":"Y:259I","location":{"x":10300000000000000000,"y":-1530000000000000000,"z":-5300000000000000000}},"30015035":{"solarSystemId":30015035,"solarSystemName":"Y:1EO0","location":{"x":10900000000000000000,"y":-1490000000000000000,"z":-5710000000000000000}},"30015036":{"solarSystemId":30015036,"solarSystemName":"J:1T6K","location":{"x":11300000000000000000,"y":-2130000000000000000,"z":-5900000000000000000}},"30015037":{"solarSystemId":30015037,"solarSystemName":"M:3994","location":{"x":11200000000000000000,"y":-2560000000000000000,"z":-6090000000000000000}},"30015038":{"solarSystemId":30015038,"solarSystemName":"F:3E40","location":{"x":11800000000000000000,"y":-1940000000000000000,"z":-5690000000000000000}},"30015039":{"solarSystemId":30015039,"solarSystemName":"U:1979","location":{"x":11000000000000000000,"y":-2230000000000000000,"z":-5900000000000000000}},"30015040":{"solarSystemId":30015040,"solarSystemName":"P:2S84","location":{"x":11700000000000000000,"y":-1890000000000000000,"z":-4720000000000000000}},"30015041":{"solarSystemId":30015041,"solarSystemName":"D:29KV","location":{"x":11400000000000000000,"y":-1870000000000000000,"z":-5770000000000000000}},"30015042":{"solarSystemId":30015042,"solarSystemName":"J:26T6","location":{"x":10800000000000000000,"y":-2110000000000000000,"z":-5970000000000000000}},"30015043":{"solarSystemId":30015043,"solarSystemName":"D:S299","location":{"x":10700000000000000000,"y":-1850000000000000000,"z":-5500000000000000000}},"30015044":{"solarSystemId":30015044,"solarSystemName":"Q:287V","location":{"x":10400000000000000000,"y":-1780000000000000000,"z":-4550000000000000000}},"30015045":{"solarSystemId":30015045,"solarSystemName":"Z:1403","location":{"x":10400000000000000000,"y":-2200000000000000000,"z":-4980000000000000000}},"30015046":{"solarSystemId":30015046,"solarSystemName":"Q:2368","location":{"x":10700000000000000000,"y":-1470000000000000000,"z":-4230000000000000000}},"30015047":{"solarSystemId":30015047,"solarSystemName":"U:2AKR","location":{"x":10900000000000000000,"y":-2200000000000000000,"z":-4230000000000000000}},"30015048":{"solarSystemId":30015048,"solarSystemName":"F:2LAI","location":{"x":10600000000000000000,"y":-1980000000000000000,"z":-3840000000000000000}},"30015049":{"solarSystemId":30015049,"solarSystemName":"P:16K5","location":{"x":10600000000000000000,"y":-1700000000000000000,"z":-4430000000000000000}},"30015050":{"solarSystemId":30015050,"solarSystemName":"P:KEK5","location":{"x":10700000000000000000,"y":-1650000000000000000,"z":-4990000000000000000}},"30015051":{"solarSystemId":30015051,"solarSystemName":"G:1T96","location":{"x":10600000000000000000,"y":-2270000000000000000,"z":-4090000000000000000}},"30015052":{"solarSystemId":30015052,"solarSystemName":"H:4024","location":{"x":10500000000000000000,"y":-1140000000000000000,"z":-4400000000000000000}},"30015053":{"solarSystemId":30015053,"solarSystemName":"Z:3986","location":{"x":10200000000000000000,"y":-1500000000000000000,"z":-4660000000000000000}},"30015054":{"solarSystemId":30015054,"solarSystemName":"M:354E","location":{"x":9480000000000000000,"y":-7130000000000000000,"z":-7830000000000000000}},"30015055":{"solarSystemId":30015055,"solarSystemName":"Y:2LKV","location":{"x":11000000000000000000,"y":-8370000000000000000,"z":-9320000000000000000}},"30015056":{"solarSystemId":30015056,"solarSystemName":"Q:3498","location":{"x":10200000000000000000,"y":-7730000000000000000,"z":-6790000000000000000}},"30015057":{"solarSystemId":30015057,"solarSystemName":"B:2I71","location":{"x":10100000000000000000,"y":-8180000000000000000,"z":-7070000000000000000}},"30015058":{"solarSystemId":30015058,"solarSystemName":"H:1O07","location":{"x":9920000000000000000,"y":-7790000000000000000,"z":-8370000000000000000}},"30015059":{"solarSystemId":30015059,"solarSystemName":"Y:2795","location":{"x":9470000000000000000,"y":-9370000000000000000,"z":-8170000000000000000}},"30015060":{"solarSystemId":30015060,"solarSystemName":"P:27II","location":{"x":10700000000000000000,"y":-9020000000000000000,"z":-7970000000000000000}},"30015061":{"solarSystemId":30015061,"solarSystemName":"H:302R","location":{"x":8220000000000000000,"y":-6270000000000000000,"z":-6260000000000000000}},"30015062":{"solarSystemId":30015062,"solarSystemName":"H:297S","location":{"x":9500000000000000000,"y":-6080000000000000000,"z":-5770000000000000000}},"30015063":{"solarSystemId":30015063,"solarSystemName":"Q:39R2","location":{"x":7730000000000000000,"y":-4590000000000000000,"z":-5520000000000000000}},"30015064":{"solarSystemId":30015064,"solarSystemName":"P:2957","location":{"x":7400000000000000000,"y":-5310000000000000000,"z":-7500000000000000000}},"30015065":{"solarSystemId":30015065,"solarSystemName":"Q:343L","location":{"x":8520000000000000000,"y":-7990000000000000000,"z":-7050000000000000000}},"30015066":{"solarSystemId":30015066,"solarSystemName":"Q:3SR5","location":{"x":6810000000000000000,"y":-4470000000000000000,"z":-7700000000000000000}},"30015067":{"solarSystemId":30015067,"solarSystemName":"Z:2TS0","location":{"x":6650000000000000000,"y":-5270000000000000000,"z":-8000000000000000000}},"30015068":{"solarSystemId":30015068,"solarSystemName":"P:2K36","location":{"x":8030000000000000000,"y":-4340000000000000000,"z":-6180000000000000000}},"30015069":{"solarSystemId":30015069,"solarSystemName":"Q:504T","location":{"x":6910000000000000000,"y":-4920000000000000000,"z":-7110000000000000000}},"30015070":{"solarSystemId":30015070,"solarSystemName":"Y:19A3","location":{"x":8770000000000000000,"y":-3350000000000000000,"z":-4930000000000000000}},"30015071":{"solarSystemId":30015071,"solarSystemName":"F:L10A","location":{"x":8730000000000000000,"y":-2290000000000000000,"z":-5860000000000000000}},"30015072":{"solarSystemId":30015072,"solarSystemName":"U:19RS","location":{"x":5870000000000000000,"y":-939000000000000000,"z":1040000000000000000}},"30015073":{"solarSystemId":30015073,"solarSystemName":"G:25KT","location":{"x":5630000000000000000,"y":-1230000000000000000,"z":1690000000000000000}},"30015074":{"solarSystemId":30015074,"solarSystemName":"Y:48E4","location":{"x":5790000000000000000,"y":-1250000000000000000,"z":1470000000000000000}},"30015075":{"solarSystemId":30015075,"solarSystemName":"G:299K","location":{"x":5520000000000000000,"y":-1070000000000000000,"z":1350000000000000000}},"30015076":{"solarSystemId":30015076,"solarSystemName":"G:48NE","location":{"x":5810000000000000000,"y":-1610000000000000000,"z":1760000000000000000}},"30015077":{"solarSystemId":30015077,"solarSystemName":"Z:K3L2","location":{"x":5750000000000000000,"y":-773000000000000000,"z":1710000000000000000}},"30015078":{"solarSystemId":30015078,"solarSystemName":"U:280V","location":{"x":5920000000000000000,"y":-436000000000000000,"z":822000000000000000}},"30015079":{"solarSystemId":30015079,"solarSystemName":"D:1KRS","location":{"x":5250000000000000000,"y":-1270000000000000000,"z":1360000000000000000}},"30015080":{"solarSystemId":30015080,"solarSystemName":"F:1K56","location":{"x":5500000000000000000,"y":-384000000000000000,"z":1040000000000000000}},"30015081":{"solarSystemId":30015081,"solarSystemName":"Y:2RKR","location":{"x":5510000000000000000,"y":-838000000000000000,"z":1390000000000000000}},"30015082":{"solarSystemId":30015082,"solarSystemName":"M:1SE6","location":{"x":5540000000000000000,"y":-1220000000000000000,"z":1080000000000000000}},"30015083":{"solarSystemId":30015083,"solarSystemName":"J:16E1","location":{"x":5520000000000000000,"y":-882000000000000000,"z":1460000000000000000}},"30015084":{"solarSystemId":30015084,"solarSystemName":"H:37NE","location":{"x":5710000000000000000,"y":-608000000000000000,"z":1750000000000000000}},"30015085":{"solarSystemId":30015085,"solarSystemName":"H:3LVI","location":{"x":5880000000000000000,"y":-1250000000000000000,"z":1110000000000000000}},"30015086":{"solarSystemId":30015086,"solarSystemName":"F:2S27","location":{"x":5550000000000000000,"y":-402000000000000000,"z":1210000000000000000}},"30015087":{"solarSystemId":30015087,"solarSystemName":"U:2955","location":{"x":5180000000000000000,"y":-1120000000000000000,"z":1120000000000000000}},"30015088":{"solarSystemId":30015088,"solarSystemName":"F:191R","location":{"x":8460000000000000000,"y":-3110000000000000000,"z":2980000000000000000}},"30015089":{"solarSystemId":30015089,"solarSystemName":"B:1E2S","location":{"x":8620000000000000000,"y":-1390000000000000000,"z":1940000000000000000}},"30015090":{"solarSystemId":30015090,"solarSystemName":"G:26E6","location":{"x":9470000000000000000,"y":-2870000000000000000,"z":1440000000000000000}},"30015091":{"solarSystemId":30015091,"solarSystemName":"G:2NA3","location":{"x":9320000000000000000,"y":-2160000000000000000,"z":2310000000000000000}},"30015092":{"solarSystemId":30015092,"solarSystemName":"Y:TN61","location":{"x":9440000000000000000,"y":-2030000000000000000,"z":2270000000000000000}},"30015093":{"solarSystemId":30015093,"solarSystemName":"G:26KT","location":{"x":8690000000000000000,"y":-2710000000000000000,"z":2880000000000000000}},"30015094":{"solarSystemId":30015094,"solarSystemName":"G:1K03","location":{"x":6780000000000000000,"y":-2790000000000000000,"z":3470000000000000000}},"30015095":{"solarSystemId":30015095,"solarSystemName":"Q:224T","location":{"x":9620000000000000000,"y":-2850000000000000000,"z":1960000000000000000}},"30015096":{"solarSystemId":30015096,"solarSystemName":"J:3E4V","location":{"x":8700000000000000000,"y":-1830000000000000000,"z":2880000000000000000}},"30015097":{"solarSystemId":30015097,"solarSystemName":"Z:3ELS","location":{"x":8160000000000000000,"y":576000000000000000,"z":828000000000000000}},"30015098":{"solarSystemId":30015098,"solarSystemName":"M:30E6","location":{"x":7540000000000000000,"y":820000000000000000,"z":281000000000000000}},"30015099":{"solarSystemId":30015099,"solarSystemName":"B:VT54","location":{"x":8350000000000000000,"y":-484000000000000000,"z":-37100000000000000}},"30015100":{"solarSystemId":30015100,"solarSystemName":"G:48V4","location":{"x":6510000000000000000,"y":-658000000000000000,"z":1250000000000000000}},"30015101":{"solarSystemId":30015101,"solarSystemName":"Y:2175","location":{"x":7310000000000000000,"y":-551000000000000000,"z":1230000000000000000}},"30015102":{"solarSystemId":30015102,"solarSystemName":"G:28O7","location":{"x":7880000000000000000,"y":-162000000000000000,"z":696000000000000000}},"30015103":{"solarSystemId":30015103,"solarSystemName":"F:28K6","location":{"x":6380000000000000000,"y":-632000000000000000,"z":1330000000000000000}},"30015104":{"solarSystemId":30015104,"solarSystemName":"H:2I0E","location":{"x":7600000000000000000,"y":345000000000000000,"z":270000000000000000}},"30015105":{"solarSystemId":30015105,"solarSystemName":"Y:25E5","location":{"x":7260000000000000000,"y":-525000000000000000,"z":1410000000000000000}},"30015106":{"solarSystemId":30015106,"solarSystemName":"Y:287I","location":{"x":8110000000000000000,"y":14600000000000000,"z":1470000000000000000}},"30015107":{"solarSystemId":30015107,"solarSystemName":"P:1KKO","location":{"x":7670000000000000000,"y":-68700000000000000,"z":685000000000000000}},"30015108":{"solarSystemId":30015108,"solarSystemName":"Z:2095","location":{"x":6640000000000000000,"y":85300000000000000,"z":1600000000000000000}},"30015109":{"solarSystemId":30015109,"solarSystemName":"Y:377T","location":{"x":7200000000000000000,"y":342000000000000000,"z":404000000000000000}},"30015110":{"solarSystemId":30015110,"solarSystemName":"B:1697","location":{"x":7920000000000000000,"y":-397000000000000000,"z":-113000000000000000}},"30015111":{"solarSystemId":30015111,"solarSystemName":"Z:2EOA","location":{"x":5810000000000000000,"y":266000000000000000,"z":1660000000000000000}},"30015112":{"solarSystemId":30015112,"solarSystemName":"Z:35T7","location":{"x":5410000000000000000,"y":276000000000000000,"z":1540000000000000000}},"30015113":{"solarSystemId":30015113,"solarSystemName":"M:38AO","location":{"x":4820000000000000000,"y":-869000000000000000,"z":2790000000000000000}},"30015114":{"solarSystemId":30015114,"solarSystemName":"U:3T44","location":{"x":4700000000000000000,"y":-419000000000000000,"z":1460000000000000000}},"30015115":{"solarSystemId":30015115,"solarSystemName":"D:3VI8","location":{"x":5500000000000000000,"y":-779000000000000000,"z":2310000000000000000}},"30015116":{"solarSystemId":30015116,"solarSystemName":"Q:34T5","location":{"x":4340000000000000000,"y":-987000000000000000,"z":1580000000000000000}},"30015117":{"solarSystemId":30015117,"solarSystemName":"U:1I0L","location":{"x":5840000000000000000,"y":-401000000000000000,"z":2510000000000000000}},"30015118":{"solarSystemId":30015118,"solarSystemName":"D:2E1I","location":{"x":5750000000000000000,"y":-322000000000000000,"z":1470000000000000000}},"30015119":{"solarSystemId":30015119,"solarSystemName":"D:1AL2","location":{"x":4700000000000000000,"y":-706000000000000000,"z":1620000000000000000}},"30015120":{"solarSystemId":30015120,"solarSystemName":"U:3NV0","location":{"x":5520000000000000000,"y":-167000000000000000,"z":2650000000000000000}},"30015121":{"solarSystemId":30015121,"solarSystemName":"Q:3OO5","location":{"x":5330000000000000000,"y":708000000000000000,"z":1200000000000000000}},"30015122":{"solarSystemId":30015122,"solarSystemName":"H:1S40","location":{"x":5430000000000000000,"y":-690000000000000000,"z":2690000000000000000}},"30015123":{"solarSystemId":30015123,"solarSystemName":"D:1T2O","location":{"x":5920000000000000000,"y":-824000000000000000,"z":2090000000000000000}},"30015124":{"solarSystemId":30015124,"solarSystemName":"B:2E7S","location":{"x":5340000000000000000,"y":-314000000000000000,"z":2140000000000000000}},"30015125":{"solarSystemId":30015125,"solarSystemName":"Z:25SE","location":{"x":5190000000000000000,"y":-649000000000000000,"z":2730000000000000000}},"30015126":{"solarSystemId":30015126,"solarSystemName":"P:263S","location":{"x":4980000000000000000,"y":-1030000000000000000,"z":2570000000000000000}},"30015127":{"solarSystemId":30015127,"solarSystemName":"F:1R8S","location":{"x":5670000000000000000,"y":-825000000000000000,"z":2750000000000000000}},"30015128":{"solarSystemId":30015128,"solarSystemName":"P:208I","location":{"x":4410000000000000000,"y":-754000000000000000,"z":1780000000000000000}},"30015129":{"solarSystemId":30015129,"solarSystemName":"P:3N31","location":{"x":7520000000000000000,"y":887000000000000000,"z":2170000000000000000}},"30015130":{"solarSystemId":30015130,"solarSystemName":"Q:33E9","location":{"x":8070000000000000000,"y":921000000000000000,"z":2240000000000000000}},"30015131":{"solarSystemId":30015131,"solarSystemName":"B:LIO2","location":{"x":6990000000000000000,"y":-449000000000000000,"z":1680000000000000000}},"30015132":{"solarSystemId":30015132,"solarSystemName":"F:R7E0","location":{"x":7450000000000000000,"y":133000000000000000,"z":2080000000000000000}},"30015133":{"solarSystemId":30015133,"solarSystemName":"Q:2AL1","location":{"x":7390000000000000000,"y":-576000000000000000,"z":2550000000000000000}},"30015134":{"solarSystemId":30015134,"solarSystemName":"Z:1V24","location":{"x":7610000000000000000,"y":-597000000000000000,"z":1930000000000000000}},"30015135":{"solarSystemId":30015135,"solarSystemName":"F:19LT","location":{"x":7190000000000000000,"y":-373000000000000000,"z":2270000000000000000}},"30015136":{"solarSystemId":30015136,"solarSystemName":"J:3VE3","location":{"x":7420000000000000000,"y":-748000000000000000,"z":1900000000000000000}},"30015137":{"solarSystemId":30015137,"solarSystemName":"F:S17K","location":{"x":7060000000000000000,"y":-721000000000000000,"z":1840000000000000000}},"30015138":{"solarSystemId":30015138,"solarSystemName":"B:211L","location":{"x":6850000000000000000,"y":-426000000000000000,"z":2800000000000000000}},"30015139":{"solarSystemId":30015139,"solarSystemName":"D:30KT","location":{"x":6810000000000000000,"y":-522000000000000000,"z":1580000000000000000}},"30015140":{"solarSystemId":30015140,"solarSystemName":"H:2019","location":{"x":7430000000000000000,"y":-393000000000000000,"z":1950000000000000000}},"30015141":{"solarSystemId":30015141,"solarSystemName":"B:481R","location":{"x":6450000000000000000,"y":-432000000000000000,"z":2570000000000000000}},"30015142":{"solarSystemId":30015142,"solarSystemName":"J:1OV8","location":{"x":7120000000000000000,"y":-907000000000000000,"z":1870000000000000000}},"30015143":{"solarSystemId":30015143,"solarSystemName":"U:361E","location":{"x":6180000000000000000,"y":-509000000000000000,"z":2840000000000000000}},"30015144":{"solarSystemId":30015144,"solarSystemName":"F:18A1","location":{"x":6680000000000000000,"y":-561000000000000000,"z":2450000000000000000}},"30015145":{"solarSystemId":30015145,"solarSystemName":"Z:3E0A","location":{"x":7390000000000000000,"y":-751000000000000000,"z":1810000000000000000}},"30015146":{"solarSystemId":30015146,"solarSystemName":"B:EREA","location":{"x":6410000000000000000,"y":-429000000000000000,"z":1620000000000000000}},"30015147":{"solarSystemId":30015147,"solarSystemName":"Z:36NO","location":{"x":6850000000000000000,"y":-1150000000000000000,"z":1300000000000000000}},"30015148":{"solarSystemId":30015148,"solarSystemName":"F:3NK6","location":{"x":5660000000000000000,"y":-2780000000000000000,"z":1900000000000000000}},"30015149":{"solarSystemId":30015149,"solarSystemName":"U:213E","location":{"x":6440000000000000000,"y":-1610000000000000000,"z":1440000000000000000}},"30015150":{"solarSystemId":30015150,"solarSystemName":"H:1N21","location":{"x":6410000000000000000,"y":-1200000000000000000,"z":1660000000000000000}},"30015151":{"solarSystemId":30015151,"solarSystemName":"Q:1KEL","location":{"x":5910000000000000000,"y":-1960000000000000000,"z":1870000000000000000}},"30015152":{"solarSystemId":30015152,"solarSystemName":"D:S5O7","location":{"x":6570000000000000000,"y":-917000000000000000,"z":1640000000000000000}},"30015153":{"solarSystemId":30015153,"solarSystemName":"Z:24R0","location":{"x":6770000000000000000,"y":-1520000000000000000,"z":1710000000000000000}},"30015154":{"solarSystemId":30015154,"solarSystemName":"H:210T","location":{"x":6890000000000000000,"y":-1660000000000000000,"z":1510000000000000000}},"30015155":{"solarSystemId":30015155,"solarSystemName":"M:348K","location":{"x":5960000000000000000,"y":-2110000000000000000,"z":1690000000000000000}},"30015156":{"solarSystemId":30015156,"solarSystemName":"G:3I0K","location":{"x":6970000000000000000,"y":-1600000000000000000,"z":1270000000000000000}},"30015157":{"solarSystemId":30015157,"solarSystemName":"J:501V","location":{"x":4970000000000000000,"y":-1910000000000000000,"z":2170000000000000000}},"30015158":{"solarSystemId":30015158,"solarSystemName":"U:3NR9","location":{"x":6500000000000000000,"y":-1530000000000000000,"z":1470000000000000000}},"30015159":{"solarSystemId":30015159,"solarSystemName":"Z:IREA","location":{"x":5840000000000000000,"y":-1300000000000000000,"z":2130000000000000000}},"30015160":{"solarSystemId":30015160,"solarSystemName":"G:29O4","location":{"x":6120000000000000000,"y":-1300000000000000000,"z":2080000000000000000}},"30015161":{"solarSystemId":30015161,"solarSystemName":"Q:1EEV","location":{"x":5710000000000000000,"y":-2850000000000000000,"z":2030000000000000000}},"30015162":{"solarSystemId":30015162,"solarSystemName":"F:3I70","location":{"x":6170000000000000000,"y":-876000000000000000,"z":-45300000000000000}},"30015163":{"solarSystemId":30015163,"solarSystemName":"P:2VK4","location":{"x":6350000000000000000,"y":-1160000000000000000,"z":821000000000000000}},"30015164":{"solarSystemId":30015164,"solarSystemName":"P:33T3","location":{"x":6580000000000000000,"y":-1170000000000000000,"z":797000000000000000}},"30015165":{"solarSystemId":30015165,"solarSystemName":"P:21E4","location":{"x":7080000000000000000,"y":-1250000000000000000,"z":412000000000000000}},"30015166":{"solarSystemId":30015166,"solarSystemName":"Y:181A","location":{"x":6950000000000000000,"y":-134000000000000000,"z":506000000000000000}},"30015167":{"solarSystemId":30015167,"solarSystemName":"Z:10TE","location":{"x":6010000000000000000,"y":-1040000000000000000,"z":-291000000000000000}},"30015168":{"solarSystemId":30015168,"solarSystemName":"U:I469","location":{"x":7420000000000000000,"y":-660000000000000000,"z":618000000000000000}},"30015169":{"solarSystemId":30015169,"solarSystemName":"M:44O7","location":{"x":7340000000000000000,"y":-845000000000000000,"z":-56200000000000000}},"30015170":{"solarSystemId":30015170,"solarSystemName":"D:12RS","location":{"x":7170000000000000000,"y":-641000000000000000,"z":840000000000000000}},"30015171":{"solarSystemId":30015171,"solarSystemName":"Y:221V","location":{"x":6010000000000000000,"y":-660000000000000000,"z":560000000000000000}},"30015172":{"solarSystemId":30015172,"solarSystemName":"H:I707","location":{"x":6850000000000000000,"y":-1300000000000000000,"z":814000000000000000}},"30015173":{"solarSystemId":30015173,"solarSystemName":"J:49AT","location":{"x":6030000000000000000,"y":-870000000000000000,"z":699000000000000000}},"30015174":{"solarSystemId":30015174,"solarSystemName":"H:3SRL","location":{"x":6320000000000000000,"y":-1040000000000000000,"z":776000000000000000}},"30015175":{"solarSystemId":30015175,"solarSystemName":"P:1978","location":{"x":6740000000000000000,"y":-830000000000000000,"z":338000000000000000}},"30015176":{"solarSystemId":30015176,"solarSystemName":"Q:1562","location":{"x":7440000000000000000,"y":-751000000000000000,"z":189000000000000000}},"30015177":{"solarSystemId":30015177,"solarSystemName":"J:2VOL","location":{"x":7140000000000000000,"y":-1220000000000000000,"z":425000000000000000}},"30015178":{"solarSystemId":30015178,"solarSystemName":"U:2283","location":{"x":6860000000000000000,"y":-1150000000000000000,"z":-258000000000000000}},"30015179":{"solarSystemId":30015179,"solarSystemName":"J:3T3L","location":{"x":4580000000000000000,"y":-1210000000000000000,"z":103000000000000000}},"30015180":{"solarSystemId":30015180,"solarSystemName":"F:2T1A","location":{"x":5110000000000000000,"y":-1960000000000000000,"z":-153000000000000000}},"30015181":{"solarSystemId":30015181,"solarSystemName":"P:I00E","location":{"x":6120000000000000000,"y":-1930000000000000000,"z":654000000000000000}},"30015182":{"solarSystemId":30015182,"solarSystemName":"M:449A","location":{"x":6030000000000000000,"y":-2000000000000000000,"z":233000000000000000}},"30015183":{"solarSystemId":30015183,"solarSystemName":"D:13V3","location":{"x":5750000000000000000,"y":-1990000000000000000,"z":734000000000000000}},"30015184":{"solarSystemId":30015184,"solarSystemName":"D:3VRN","location":{"x":4790000000000000000,"y":-1260000000000000000,"z":-117000000000000000}},"30015185":{"solarSystemId":30015185,"solarSystemName":"M:2IOE","location":{"x":5290000000000000000,"y":-1820000000000000000,"z":-614000000000000000}},"30015186":{"solarSystemId":30015186,"solarSystemName":"D:38EK","location":{"x":5090000000000000000,"y":-2130000000000000000,"z":570000000000000000}},"30015187":{"solarSystemId":30015187,"solarSystemName":"G:3075","location":{"x":4400000000000000000,"y":-1990000000000000000,"z":894000000000000000}},"30015188":{"solarSystemId":30015188,"solarSystemName":"M:2L0E","location":{"x":5040000000000000000,"y":-2560000000000000000,"z":1180000000000000000}},"30015189":{"solarSystemId":30015189,"solarSystemName":"G:2TV2","location":{"x":5350000000000000000,"y":-1890000000000000000,"z":107000000000000000}},"30015190":{"solarSystemId":30015190,"solarSystemName":"F:241T","location":{"x":5160000000000000000,"y":-1110000000000000000,"z":644000000000000000}},"30015191":{"solarSystemId":30015191,"solarSystemName":"Q:1K97","location":{"x":5510000000000000000,"y":-1350000000000000000,"z":529000000000000000}},"30015192":{"solarSystemId":30015192,"solarSystemName":"F:10E7","location":{"x":4820000000000000000,"y":-931000000000000000,"z":3710000000000000000}},"30015193":{"solarSystemId":30015193,"solarSystemName":"H:1SSV","location":{"x":5260000000000000000,"y":-1230000000000000000,"z":4330000000000000000}},"30015194":{"solarSystemId":30015194,"solarSystemName":"G:N5A2","location":{"x":4400000000000000000,"y":-1080000000000000000,"z":3720000000000000000}},"30015195":{"solarSystemId":30015195,"solarSystemName":"U:17T5","location":{"x":4950000000000000000,"y":-856000000000000000,"z":4630000000000000000}},"30015196":{"solarSystemId":30015196,"solarSystemName":"F:1O8T","location":{"x":4960000000000000000,"y":-1420000000000000000,"z":3980000000000000000}},"30015197":{"solarSystemId":30015197,"solarSystemName":"B:1VVA","location":{"x":5480000000000000000,"y":-620000000000000000,"z":4580000000000000000}},"30015198":{"solarSystemId":30015198,"solarSystemName":"D:2426","location":{"x":4450000000000000000,"y":-1750000000000000000,"z":4500000000000000000}},"30015199":{"solarSystemId":30015199,"solarSystemName":"P:1LL4","location":{"x":4910000000000000000,"y":-954000000000000000,"z":3820000000000000000}},"30015200":{"solarSystemId":30015200,"solarSystemName":"F:4R7R","location":{"x":4580000000000000000,"y":-1290000000000000000,"z":3750000000000000000}},"30015201":{"solarSystemId":30015201,"solarSystemName":"B:2906","location":{"x":5550000000000000000,"y":-807000000000000000,"z":4390000000000000000}},"30015202":{"solarSystemId":30015202,"solarSystemName":"P:26O1","location":{"x":4490000000000000000,"y":-1600000000000000000,"z":3820000000000000000}},"30015203":{"solarSystemId":30015203,"solarSystemName":"U:31ST","location":{"x":4980000000000000000,"y":-1280000000000000000,"z":4260000000000000000}},"30015204":{"solarSystemId":30015204,"solarSystemName":"J:3AS0","location":{"x":4770000000000000000,"y":-864000000000000000,"z":4940000000000000000}},"30015205":{"solarSystemId":30015205,"solarSystemName":"Q:1TKO","location":{"x":4480000000000000000,"y":-1030000000000000000,"z":4230000000000000000}},"30015206":{"solarSystemId":30015206,"solarSystemName":"Y:14I9","location":{"x":4620000000000000000,"y":-1060000000000000000,"z":4590000000000000000}},"30015207":{"solarSystemId":30015207,"solarSystemName":"D:2577","location":{"x":5450000000000000000,"y":-1170000000000000000,"z":5600000000000000000}},"30015208":{"solarSystemId":30015208,"solarSystemName":"H:3274","location":{"x":4460000000000000000,"y":-1350000000000000000,"z":5610000000000000000}},"30015209":{"solarSystemId":30015209,"solarSystemName":"P:1O67","location":{"x":4630000000000000000,"y":-1650000000000000000,"z":5700000000000000000}},"30015210":{"solarSystemId":30015210,"solarSystemName":"Z:31I3","location":{"x":5230000000000000000,"y":-811000000000000000,"z":5450000000000000000}},"30015211":{"solarSystemId":30015211,"solarSystemName":"U:363R","location":{"x":5860000000000000000,"y":-1280000000000000000,"z":5080000000000000000}},"30015212":{"solarSystemId":30015212,"solarSystemName":"M:145T","location":{"x":5830000000000000000,"y":-1470000000000000000,"z":5700000000000000000}},"30015213":{"solarSystemId":30015213,"solarSystemName":"M:1N7V","location":{"x":4960000000000000000,"y":-787000000000000000,"z":5650000000000000000}},"30015214":{"solarSystemId":30015214,"solarSystemName":"J:3S87","location":{"x":5270000000000000000,"y":-1360000000000000000,"z":5580000000000000000}},"30015215":{"solarSystemId":30015215,"solarSystemName":"M:2SI4","location":{"x":4810000000000000000,"y":-1320000000000000000,"z":5900000000000000000}},"30015216":{"solarSystemId":30015216,"solarSystemName":"P:1E83","location":{"x":5240000000000000000,"y":-1030000000000000000,"z":5450000000000000000}},"30015217":{"solarSystemId":30015217,"solarSystemName":"Q:3151","location":{"x":5040000000000000000,"y":-1700000000000000000,"z":5690000000000000000}},"30015218":{"solarSystemId":30015218,"solarSystemName":"Z:27N7","location":{"x":5620000000000000000,"y":-807000000000000000,"z":5130000000000000000}},"30015219":{"solarSystemId":30015219,"solarSystemName":"U:20ET","location":{"x":5740000000000000000,"y":-1050000000000000000,"z":5900000000000000000}},"30015220":{"solarSystemId":30015220,"solarSystemName":"F:3AT3","location":{"x":4050000000000000000,"y":-1420000000000000000,"z":5370000000000000000}},"30015221":{"solarSystemId":30015221,"solarSystemName":"P:V274","location":{"x":4070000000000000000,"y":-1120000000000000000,"z":5620000000000000000}},"30015222":{"solarSystemId":30015222,"solarSystemName":"Z:189L","location":{"x":3560000000000000000,"y":-1340000000000000000,"z":5090000000000000000}},"30015223":{"solarSystemId":30015223,"solarSystemName":"F:2S7I","location":{"x":4080000000000000000,"y":-1280000000000000000,"z":5040000000000000000}},"30015224":{"solarSystemId":30015224,"solarSystemName":"Z:27KK","location":{"x":3940000000000000000,"y":-1640000000000000000,"z":5490000000000000000}},"30015225":{"solarSystemId":30015225,"solarSystemName":"Y:240N","location":{"x":3750000000000000000,"y":-914000000000000000,"z":5360000000000000000}},"30015226":{"solarSystemId":30015226,"solarSystemName":"Q:16I3","location":{"x":3570000000000000000,"y":-1170000000000000000,"z":5440000000000000000}},"30015227":{"solarSystemId":30015227,"solarSystemName":"H:2KAR","location":{"x":3830000000000000000,"y":-1740000000000000000,"z":4760000000000000000}},"30015228":{"solarSystemId":30015228,"solarSystemName":"D:3T1R","location":{"x":3380000000000000000,"y":-1200000000000000000,"z":5230000000000000000}},"30015229":{"solarSystemId":30015229,"solarSystemName":"G:24VT","location":{"x":4590000000000000000,"y":-1010000000000000000,"z":4950000000000000000}},"30015230":{"solarSystemId":30015230,"solarSystemName":"Q:286I","location":{"x":4570000000000000000,"y":-1400000000000000000,"z":5280000000000000000}},"30015231":{"solarSystemId":30015231,"solarSystemName":"P:2KS1","location":{"x":3670000000000000000,"y":-1720000000000000000,"z":5070000000000000000}},"30015232":{"solarSystemId":30015232,"solarSystemName":"B:38TN","location":{"x":3770000000000000000,"y":-1260000000000000000,"z":4700000000000000000}},"30015233":{"solarSystemId":30015233,"solarSystemName":"B:204I","location":{"x":3680000000000000000,"y":-755000000000000000,"z":4660000000000000000}},"30015234":{"solarSystemId":30015234,"solarSystemName":"Q:268S","location":{"x":3480000000000000000,"y":-1210000000000000000,"z":5070000000000000000}},"30015235":{"solarSystemId":30015235,"solarSystemName":"Z:2RR7","location":{"x":4440000000000000000,"y":-1780000000000000000,"z":5140000000000000000}},"30015236":{"solarSystemId":30015236,"solarSystemName":"U:33RA","location":{"x":2980000000000000000,"y":-1290000000000000000,"z":5620000000000000000}},"30015237":{"solarSystemId":30015237,"solarSystemName":"G:3786","location":{"x":2790000000000000000,"y":-514000000000000000,"z":5680000000000000000}},"30015238":{"solarSystemId":30015238,"solarSystemName":"B:2013","location":{"x":2700000000000000000,"y":-728000000000000000,"z":4990000000000000000}},"30015239":{"solarSystemId":30015239,"solarSystemName":"Q:1EN0","location":{"x":2630000000000000000,"y":-1320000000000000000,"z":5550000000000000000}},"30015240":{"solarSystemId":30015240,"solarSystemName":"B:24E9","location":{"x":3020000000000000000,"y":-830000000000000000,"z":5750000000000000000}},"30015241":{"solarSystemId":30015241,"solarSystemName":"B:2T44","location":{"x":2660000000000000000,"y":-926000000000000000,"z":5260000000000000000}},"30015242":{"solarSystemId":30015242,"solarSystemName":"B:15S5","location":{"x":1900000000000000000,"y":-1360000000000000000,"z":5050000000000000000}},"30015243":{"solarSystemId":30015243,"solarSystemName":"Z:331V","location":{"x":2930000000000000000,"y":-1130000000000000000,"z":5240000000000000000}},"30015244":{"solarSystemId":30015244,"solarSystemName":"D:3417","location":{"x":2260000000000000000,"y":-1260000000000000000,"z":5050000000000000000}},"30015245":{"solarSystemId":30015245,"solarSystemName":"H:38R8","location":{"x":2850000000000000000,"y":-653000000000000000,"z":5290000000000000000}},"30015246":{"solarSystemId":30015246,"solarSystemName":"J:22K6","location":{"x":2390000000000000000,"y":-1060000000000000000,"z":4740000000000000000}},"30015247":{"solarSystemId":30015247,"solarSystemName":"D:3RV8","location":{"x":2150000000000000000,"y":-1010000000000000000,"z":4420000000000000000}},"30015248":{"solarSystemId":30015248,"solarSystemName":"H:S269","location":{"x":3010000000000000000,"y":-1120000000000000000,"z":5720000000000000000}},"30015249":{"solarSystemId":30015249,"solarSystemName":"Z:16O1","location":{"x":2770000000000000000,"y":-1380000000000000000,"z":4900000000000000000}},"30015250":{"solarSystemId":30015250,"solarSystemName":"H:4834","location":{"x":3210000000000000000,"y":-934000000000000000,"z":5190000000000000000}},"30015251":{"solarSystemId":30015251,"solarSystemName":"B:3ERS","location":{"x":2260000000000000000,"y":-1050000000000000000,"z":5480000000000000000}},"30015252":{"solarSystemId":30015252,"solarSystemName":"F:343R","location":{"x":6290000000000000000,"y":-9840000000000000000,"z":4150000000000000000}},"30015253":{"solarSystemId":30015253,"solarSystemName":"P:3AIT","location":{"x":4650000000000000000,"y":-8610000000000000000,"z":4990000000000000000}},"30015254":{"solarSystemId":30015254,"solarSystemName":"Y:3OK9","location":{"x":4070000000000000000,"y":-9850000000000000000,"z":4570000000000000000}},"30015255":{"solarSystemId":30015255,"solarSystemName":"H:30K9","location":{"x":7930000000000000000,"y":-9790000000000000000,"z":5260000000000000000}},"30015256":{"solarSystemId":30015256,"solarSystemName":"G:384L","location":{"x":4190000000000000000,"y":-10700000000000000000,"z":3090000000000000000}},"30015257":{"solarSystemId":30015257,"solarSystemName":"U:2ANT","location":{"x":1830000000000000000,"y":-11800000000000000000,"z":6410000000000000000}},"30015258":{"solarSystemId":30015258,"solarSystemName":"Q:2E2R","location":{"x":4410000000000000000,"y":-11300000000000000000,"z":1620000000000000000}},"30015259":{"solarSystemId":30015259,"solarSystemName":"Z:3EOA","location":{"x":3400000000000000000,"y":-11500000000000000000,"z":5430000000000000000}},"30015260":{"solarSystemId":30015260,"solarSystemName":"F:3V8N","location":{"x":5550000000000000000,"y":-13800000000000000000,"z":4410000000000000000}},"30015261":{"solarSystemId":30015261,"solarSystemName":"Z:20SE","location":{"x":3630000000000000000,"y":-12100000000000000000,"z":2380000000000000000}},"30015262":{"solarSystemId":30015262,"solarSystemName":"U:1ER3","location":{"x":5220000000000000000,"y":-12200000000000000000,"z":3640000000000000000}},"30015263":{"solarSystemId":30015263,"solarSystemName":"Z:38A0","location":{"x":4350000000000000000,"y":-5250000000000000000,"z":6610000000000000000}},"30015264":{"solarSystemId":30015264,"solarSystemName":"Y:3NR8","location":{"x":5730000000000000000,"y":-5000000000000000000,"z":8160000000000000000}},"30015265":{"solarSystemId":30015265,"solarSystemName":"B:3NL3","location":{"x":3870000000000000000,"y":-3840000000000000000,"z":9120000000000000000}},"30015266":{"solarSystemId":30015266,"solarSystemName":"Y:349A","location":{"x":4090000000000000000,"y":-5030000000000000000,"z":8190000000000000000}},"30015267":{"solarSystemId":30015267,"solarSystemName":"D:3N6N","location":{"x":4060000000000000000,"y":-5370000000000000000,"z":6190000000000000000}},"30015268":{"solarSystemId":30015268,"solarSystemName":"H:3R07","location":{"x":5050000000000000000,"y":-5290000000000000000,"z":7960000000000000000}},"30015269":{"solarSystemId":30015269,"solarSystemName":"D:333T","location":{"x":4010000000000000000,"y":-8970000000000000000,"z":8030000000000000000}},"30015270":{"solarSystemId":30015270,"solarSystemName":"D:2IN1","location":{"x":3800000000000000000,"y":-6820000000000000000,"z":7590000000000000000}},"30015271":{"solarSystemId":30015271,"solarSystemName":"U:33L7","location":{"x":6070000000000000000,"y":-7850000000000000000,"z":9440000000000000000}},"30015272":{"solarSystemId":30015272,"solarSystemName":"J:2IVS","location":{"x":5370000000000000000,"y":-9230000000000000000,"z":8570000000000000000}},"30015273":{"solarSystemId":30015273,"solarSystemName":"F:36T8","location":{"x":4550000000000000000,"y":-8850000000000000000,"z":7760000000000000000}},"30015274":{"solarSystemId":30015274,"solarSystemName":"G:3N86","location":{"x":5050000000000000000,"y":-7420000000000000000,"z":8500000000000000000}},"30015275":{"solarSystemId":30015275,"solarSystemName":"D:366A","location":{"x":5100000000000000000,"y":-8060000000000000000,"z":6260000000000000000}},"30015276":{"solarSystemId":30015276,"solarSystemName":"Z:2KS3","location":{"x":8050000000000000000,"y":-7700000000000000000,"z":6240000000000000000}},"30015277":{"solarSystemId":30015277,"solarSystemName":"J:3NK8","location":{"x":6590000000000000000,"y":-8170000000000000000,"z":7110000000000000000}},"30015278":{"solarSystemId":30015278,"solarSystemName":"H:3AN9","location":{"x":7220000000000000000,"y":-6900000000000000000,"z":5620000000000000000}},"30015279":{"solarSystemId":30015279,"solarSystemName":"H:35NT","location":{"x":6010000000000000000,"y":-6040000000000000000,"z":5620000000000000000}},"30015280":{"solarSystemId":30015280,"solarSystemName":"B:2EA7","location":{"x":2060000000000000000,"y":-7230000000000000000,"z":7570000000000000000}},"30015281":{"solarSystemId":30015281,"solarSystemName":"F:3IR1","location":{"x":2710000000000000000,"y":-7090000000000000000,"z":7580000000000000000}},"30015282":{"solarSystemId":30015282,"solarSystemName":"G:2E7I","location":{"x":3050000000000000000,"y":-7580000000000000000,"z":8980000000000000000}},"30015283":{"solarSystemId":30015283,"solarSystemName":"J:3EKR","location":{"x":2030000000000000000,"y":-6290000000000000000,"z":7520000000000000000}},"30015284":{"solarSystemId":30015284,"solarSystemName":"P:3SNL","location":{"x":3170000000000000000,"y":-7000000000000000000,"z":6760000000000000000}},"30015285":{"solarSystemId":30015285,"solarSystemName":"T.ZEM.W51","location":{"x":20700000000000000000,"y":-1370000000000000000,"z":16100000000000000000}},"30015286":{"solarSystemId":30015286,"solarSystemName":"N.G7P.T61","location":{"x":21000000000000000000,"y":-1380000000000000000,"z":16100000000000000000}},"30015287":{"solarSystemId":30015287,"solarSystemName":"S.SDP.G41","location":{"x":21300000000000000000,"y":-1320000000000000000,"z":15800000000000000000}},"30015288":{"solarSystemId":30015288,"solarSystemName":"R.JRP.331","location":{"x":21200000000000000000,"y":-1260000000000000000,"z":15900000000000000000}},"30015289":{"solarSystemId":30015289,"solarSystemName":"N.2YP.721","location":{"x":21700000000000000000,"y":-1230000000000000000,"z":16100000000000000000}},"30015290":{"solarSystemId":30015290,"solarSystemName":"U.N5P.YXJ","location":{"x":20900000000000000000,"y":-931000000000000000,"z":16000000000000000000}},"30015291":{"solarSystemId":30015291,"solarSystemName":"I.VEC.JK1","location":{"x":19600000000000000000,"y":-2260000000000000000,"z":10100000000000000000}},"30015292":{"solarSystemId":30015292,"solarSystemName":"U.52M.5M1","location":{"x":19700000000000000000,"y":-1770000000000000000,"z":10300000000000000000}},"30015293":{"solarSystemId":30015293,"solarSystemName":"D.2ZM.6VJ","location":{"x":20600000000000000000,"y":-922000000000000000,"z":8420000000000000000}},"30015294":{"solarSystemId":30015294,"solarSystemName":"S.52P.EW1","location":{"x":20800000000000000000,"y":-2230000000000000000,"z":8870000000000000000}},"30015295":{"solarSystemId":30015295,"solarSystemName":"E.7RC.H91","location":{"x":18900000000000000000,"y":-1500000000000000000,"z":13000000000000000000}},"30015296":{"solarSystemId":30015296,"solarSystemName":"T.HTM.JG1","location":{"x":20000000000000000000,"y":-2010000000000000000,"z":9590000000000000000}},"30015297":{"solarSystemId":30015297,"solarSystemName":"H.CGM.8H1","location":{"x":20400000000000000000,"y":-2030000000000000000,"z":11700000000000000000}},"30015298":{"solarSystemId":30015298,"solarSystemName":"A.CKD.4Y1","location":{"x":18400000000000000000,"y":-2130000000000000000,"z":12900000000000000000}},"30015299":{"solarSystemId":30015299,"solarSystemName":"N.EHD.Z81","location":{"x":18200000000000000000,"y":-1470000000000000000,"z":13200000000000000000}},"30015300":{"solarSystemId":30015300,"solarSystemName":"T.HTC.R41","location":{"x":18900000000000000000,"y":-1310000000000000000,"z":13000000000000000000}},"30015301":{"solarSystemId":30015301,"solarSystemName":"N.MNM.J01","location":{"x":20100000000000000000,"y":-1180000000000000000,"z":15600000000000000000}},"30015302":{"solarSystemId":30015302,"solarSystemName":"E.H3C.C41","location":{"x":18600000000000000000,"y":-1320000000000000000,"z":12900000000000000000}},"30015303":{"solarSystemId":30015303,"solarSystemName":"U.Z9P.V32","location":{"x":21100000000000000000,"y":-2440000000000000000,"z":13900000000000000000}},"30015304":{"solarSystemId":30015304,"solarSystemName":"I.2CC.0D1","location":{"x":19000000000000000000,"y":-1690000000000000000,"z":14400000000000000000}},"30015305":{"solarSystemId":30015305,"solarSystemName":"A.7HV.QD2","location":{"x":22800000000000000000,"y":-2870000000000000000,"z":13500000000000000000}},"30015306":{"solarSystemId":30015306,"solarSystemName":"I.16V.NDE","location":{"x":22100000000000000000,"y":-1130000000000000000,"z":15000000000000000000}},"30015307":{"solarSystemId":30015307,"solarSystemName":"N.JHP.P51","location":{"x":21600000000000000000,"y":-1350000000000000000,"z":15200000000000000000}},"30015308":{"solarSystemId":30015308,"solarSystemName":"R.4VV.NJ2","location":{"x":22600000000000000000,"y":-3220000000000000000,"z":13100000000000000000}},"30015309":{"solarSystemId":30015309,"solarSystemName":"E.8NV.V51","location":{"x":22300000000000000000,"y":-1350000000000000000,"z":15200000000000000000}},"30015310":{"solarSystemId":30015310,"solarSystemName":"N.29V.Y3X","location":{"x":22200000000000000000,"y":-941000000000000000,"z":16300000000000000000}},"30015311":{"solarSystemId":30015311,"solarSystemName":"Finitude","location":{"x":21600000000000000000,"y":-1240000000000000000,"z":15000000000000000000}},"30015312":{"solarSystemId":30015312,"solarSystemName":"IFG-NV8","location":{"x":21100000000000000000,"y":-5270000000000000000,"z":29700000000000000000}},"30015313":{"solarSystemId":30015313,"solarSystemName":"EJJ-N09","location":{"x":20800000000000000000,"y":-7330000000000000000,"z":32500000000000000000}},"30015314":{"solarSystemId":30015314,"solarSystemName":"IGN-309","location":{"x":22800000000000000000,"y":-7290000000000000000,"z":28600000000000000000}},"30015315":{"solarSystemId":30015315,"solarSystemName":"OQ3-509","location":{"x":21700000000000000000,"y":-7590000000000000000,"z":29600000000000000000}},"30015316":{"solarSystemId":30015316,"solarSystemName":"O5V-CV8","location":{"x":21100000000000000000,"y":-6990000000000000000,"z":28400000000000000000}},"30015317":{"solarSystemId":30015317,"solarSystemName":"E1L-JV8","location":{"x":17300000000000000000,"y":-4650000000000000000,"z":32300000000000000000}},"30015318":{"solarSystemId":30015318,"solarSystemName":"OLK-8V8","location":{"x":15900000000000000000,"y":-7660000000000000000,"z":32100000000000000000}},"30015319":{"solarSystemId":30015319,"solarSystemName":"ER4-VS8","location":{"x":16400000000000000000,"y":-6410000000000000000,"z":29100000000000000000}},"30015320":{"solarSystemId":30015320,"solarSystemName":"EBL-3V8","location":{"x":17200000000000000000,"y":-7300000000000000000,"z":30900000000000000000}},"30015321":{"solarSystemId":30015321,"solarSystemName":"IJ0-NR8","location":{"x":16700000000000000000,"y":-6610000000000000000,"z":26700000000000000000}},"30015322":{"solarSystemId":30015322,"solarSystemName":"EG9-709","location":{"x":24400000000000000000,"y":-6040000000000000000,"z":27700000000000000000}},"30015323":{"solarSystemId":30015323,"solarSystemName":"U8Q-109","location":{"x":25000000000000000000,"y":-5320000000000000000,"z":26500000000000000000}},"30015324":{"solarSystemId":30015324,"solarSystemName":"A7J-LV8","location":{"x":23400000000000000000,"y":-6700000000000000000,"z":27100000000000000000}},"30015325":{"solarSystemId":30015325,"solarSystemName":"UL6-609","location":{"x":24500000000000000000,"y":-4020000000000000000,"z":27700000000000000000}},"30015326":{"solarSystemId":30015326,"solarSystemName":"IQM-809","location":{"x":24500000000000000000,"y":-4000000000000000000,"z":28200000000000000000}},"30015327":{"solarSystemId":30015327,"solarSystemName":"OLR-3L8","location":{"x":14400000000000000000,"y":-543000000000000000,"z":22300000000000000000}},"30015328":{"solarSystemId":30015328,"solarSystemName":"E3N-7L8","location":{"x":12600000000000000000,"y":-754000000000000000,"z":23900000000000000000}},"30015329":{"solarSystemId":30015329,"solarSystemName":"IHP-6N8","location":{"x":14900000000000000000,"y":-578000000000000000,"z":24500000000000000000}},"30015330":{"solarSystemId":30015330,"solarSystemName":"O02-7N8","location":{"x":14900000000000000000,"y":-466000000000000000,"z":24500000000000000000}},"30015331":{"solarSystemId":30015331,"solarSystemName":"EN8-LM8","location":{"x":15000000000000000000,"y":-564000000000000000,"z":23600000000000000000}},"30015332":{"solarSystemId":30015332,"solarSystemName":"Charmides","location":{"x":18100000000000000000,"y":-4320000000000000000,"z":26300000000000000000}},"30015333":{"solarSystemId":30015333,"solarSystemName":"I18-VQ8","location":{"x":16900000000000000000,"y":-696000000000000000,"z":26100000000000000000}},"30015334":{"solarSystemId":30015334,"solarSystemName":"UHB-MQ8","location":{"x":16700000000000000000,"y":-865000000000000000,"z":26000000000000000000}},"30015335":{"solarSystemId":30015335,"solarSystemName":"E65-MR8","location":{"x":16100000000000000000,"y":77700000000000000,"z":27900000000000000000}},"30015336":{"solarSystemId":30015336,"solarSystemName":"EJJ-8Q8","location":{"x":15900000000000000000,"y":-602000000000000000,"z":26200000000000000000}},"30015337":{"solarSystemId":30015337,"solarSystemName":"E8K-HN8","location":{"x":15000000000000000000,"y":-4720000000000000000,"z":24300000000000000000}},"30015338":{"solarSystemId":30015338,"solarSystemName":"O86-QR8","location":{"x":20600000000000000000,"y":-3250000000000000000,"z":24000000000000000000}},"30015339":{"solarSystemId":30015339,"solarSystemName":"D.MBL.CBV","location":{"x":17000000000000000000,"y":-710000000000000000,"z":20400000000000000000}},"30015340":{"solarSystemId":30015340,"solarSystemName":"T.1ND.B99","location":{"x":17700000000000000000,"y":-335000000000000000,"z":19900000000000000000}},"30015341":{"solarSystemId":30015341,"solarSystemName":"I.J9C.TX1","location":{"x":18800000000000000000,"y":-2100000000000000000,"z":18900000000000000000}},"30015342":{"solarSystemId":30015342,"solarSystemName":"I.M9R.F44","location":{"x":15300000000000000000,"y":149000000000000000,"z":20200000000000000000}},"30015343":{"solarSystemId":30015343,"solarSystemName":"E.7PD.LVC","location":{"x":18000000000000000000,"y":-598000000000000000,"z":19800000000000000000}},"30015344":{"solarSystemId":30015344,"solarSystemName":"D.PHD.TNH","location":{"x":18200000000000000000,"y":-879000000000000000,"z":20800000000000000000}},"30015345":{"solarSystemId":30015345,"solarSystemName":"I.G1V.8X1","location":{"x":22000000000000000000,"y":-2100000000000000000,"z":20100000000000000000}},"30015346":{"solarSystemId":30015346,"solarSystemName":"D.Z3C.684","location":{"x":18600000000000000000,"y":-4910000000000000000,"z":21700000000000000000}},"30015347":{"solarSystemId":30015347,"solarSystemName":"H.XLM.BN2","location":{"x":20100000000000000000,"y":-2760000000000000000,"z":22000000000000000000}},"30015348":{"solarSystemId":30015348,"solarSystemName":"N.THP.093","location":{"x":21600000000000000000,"y":-3780000000000000000,"z":20200000000000000000}},"30015349":{"solarSystemId":30015349,"solarSystemName":"S.79P.JSL","location":{"x":21100000000000000000,"y":-517000000000000000,"z":22700000000000000000}},"30015350":{"solarSystemId":30015350,"solarSystemName":"N.25B.811","location":{"x":25500000000000000000,"y":-1200000000000000000,"z":19600000000000000000}},"30015351":{"solarSystemId":30015351,"solarSystemName":"N.YPF.L41","location":{"x":24900000000000000000,"y":41100000000000000,"z":19700000000000000000}},"30015352":{"solarSystemId":30015352,"solarSystemName":"E.LNB.BQF","location":{"x":25800000000000000000,"y":-780000000000000000,"z":20700000000000000000}},"30015353":{"solarSystemId":30015353,"solarSystemName":"Skúmaskot","location":{"x":25200000000000000000,"y":-900000000000000000,"z":20500000000000000000}},"30015354":{"solarSystemId":30015354,"solarSystemName":"I.KEF.NWP","location":{"x":25400000000000000000,"y":-682000000000000000,"z":20400000000000000000}},"30015355":{"solarSystemId":30015355,"solarSystemName":"I.TQC.S0L","location":{"x":19200000000000000000,"y":-505000000000000000,"z":21600000000000000000}},"30015356":{"solarSystemId":30015356,"solarSystemName":"U.HVC.4TT","location":{"x":19200000000000000000,"y":-409000000000000000,"z":21500000000000000000}},"30015357":{"solarSystemId":30015357,"solarSystemName":"A.SZP.0JW","location":{"x":21800000000000000000,"y":-1070000000000000000,"z":21500000000000000000}},"30015358":{"solarSystemId":30015358,"solarSystemName":"T.QTM.85C","location":{"x":20000000000000000000,"y":-582000000000000000,"z":21100000000000000000}},"30015359":{"solarSystemId":30015359,"solarSystemName":"S.PJM.0F5","location":{"x":20500000000000000000,"y":-204000000000000000,"z":20500000000000000000}},"30015360":{"solarSystemId":30015360,"solarSystemName":"S.PZV.K9E","location":{"x":22900000000000000000,"y":-1130000000000000000,"z":22300000000000000000}},"30015361":{"solarSystemId":30015361,"solarSystemName":"I.MZB.CFV","location":{"x":26400000000000000000,"y":-709000000000000000,"z":22700000000000000000}},"30015362":{"solarSystemId":30015362,"solarSystemName":"T.GJV.15G","location":{"x":22800000000000000000,"y":-834000000000000000,"z":22400000000000000000}},"30015363":{"solarSystemId":30015363,"solarSystemName":"T.1EF.G83","location":{"x":25300000000000000000,"y":-3770000000000000000,"z":21600000000000000000}},"30015364":{"solarSystemId":30015364,"solarSystemName":"H.E1Q.7SB","location":{"x":23100000000000000000,"y":-804000000000000000,"z":22300000000000000000}},"30015365":{"solarSystemId":30015365,"solarSystemName":"N.4H8.FNR","location":{"x":10100000000000000000,"y":-15400000000000000000,"z":20000000000000000000}},"30015366":{"solarSystemId":30015366,"solarSystemName":"T.K2N.3JL","location":{"x":13900000000000000000,"y":-17000000000000000000,"z":16200000000000000000}},"30015367":{"solarSystemId":30015367,"solarSystemName":"S.1K8.4KR","location":{"x":10300000000000000000,"y":-16100000000000000000,"z":6700000000000000000}},"30015368":{"solarSystemId":30015368,"solarSystemName":"R.KJ8.V1L","location":{"x":10200000000000000000,"y":-16200000000000000000,"z":20600000000000000000}},"30015369":{"solarSystemId":30015369,"solarSystemName":"B.T0S.VHR","location":{"x":11500000000000000000,"y":-15900000000000000000,"z":11200000000000000000}},"30015370":{"solarSystemId":30015370,"solarSystemName":"N.5B8.CZL","location":{"x":10000000000000000000,"y":-17200000000000000000,"z":13300000000000000000}},"30015371":{"solarSystemId":30015371,"solarSystemName":"U.NC6.4XR","location":{"x":7510000000000000000,"y":-15900000000000000000,"z":11600000000000000000}},"30015372":{"solarSystemId":30015372,"solarSystemName":"E.RL6.97L","location":{"x":7440000000000000000,"y":-16400000000000000000,"z":9510000000000000000}},"30015373":{"solarSystemId":30015373,"solarSystemName":"L.VZ6.GLL","location":{"x":7950000000000000000,"y":-16700000000000000000,"z":13100000000000000000}},"30015374":{"solarSystemId":30015374,"solarSystemName":"D.S37.1SL","location":{"x":8190000000000000000,"y":-16500000000000000000,"z":7850000000000000000}},"30015375":{"solarSystemId":30015375,"solarSystemName":"R.PF9.9FR","location":{"x":11200000000000000000,"y":-15800000000000000000,"z":16900000000000000000}},"30015376":{"solarSystemId":30015376,"solarSystemName":"R.T09.HBD","location":{"x":10400000000000000000,"y":-18100000000000000000,"z":17000000000000000000}},"30015377":{"solarSystemId":30015377,"solarSystemName":"L.0C9.EDN","location":{"x":11000000000000000000,"y":-14400000000000000000,"z":19600000000000000000}},"30015378":{"solarSystemId":30015378,"solarSystemName":"Afkimi","location":{"x":10300000000000000000,"y":-16800000000000000000,"z":16100000000000000000}},"30015379":{"solarSystemId":30015379,"solarSystemName":"T.Q59.YZD","location":{"x":10600000000000000000,"y":-18300000000000000000,"z":18400000000000000000}},"30015380":{"solarSystemId":30015380,"solarSystemName":"U.GP8.YEL","location":{"x":9900000000000000000,"y":-17300000000000000000,"z":22000000000000000000}},"30015381":{"solarSystemId":30015381,"solarSystemName":"D.E2T.X1C","location":{"x":12800000000000000000,"y":-18500000000000000000,"z":21400000000000000000}},"30015382":{"solarSystemId":30015382,"solarSystemName":"U.KLN.5ZD","location":{"x":14400000000000000000,"y":-18300000000000000000,"z":24400000000000000000}},"30015383":{"solarSystemId":30015383,"solarSystemName":"D.DK9.P1M","location":{"x":11500000000000000000,"y":-19700000000000000000,"z":22700000000000000000}},"30015384":{"solarSystemId":30015384,"solarSystemName":"D.PHN.7DL","location":{"x":14700000000000000000,"y":-16700000000000000000,"z":23600000000000000000}},"30015385":{"solarSystemId":30015385,"solarSystemName":"G:39IA","location":{"x":4410000000000000000,"y":445000000000000000,"z":-7180000000000000000}},"30015386":{"solarSystemId":30015386,"solarSystemName":"H:37L4","location":{"x":3950000000000000000,"y":-971000000000000000,"z":-5780000000000000000}},"30015387":{"solarSystemId":30015387,"solarSystemName":"Q:3IAR","location":{"x":3810000000000000000,"y":-233000000000000000,"z":-6580000000000000000}},"30015388":{"solarSystemId":30015388,"solarSystemName":"Y:1OLK","location":{"x":3350000000000000000,"y":119000000000000000,"z":-7110000000000000000}},"30015389":{"solarSystemId":30015389,"solarSystemName":"G:235L","location":{"x":3420000000000000000,"y":69600000000000000,"z":-7400000000000000000}},"30015390":{"solarSystemId":30015390,"solarSystemName":"U:2E5N","location":{"x":2910000000000000000,"y":470000000000000000,"z":-6380000000000000000}},"30015391":{"solarSystemId":30015391,"solarSystemName":"D:3O8T","location":{"x":3340000000000000000,"y":63600000000000000,"z":-7260000000000000000}},"30015392":{"solarSystemId":30015392,"solarSystemName":"P:VO86","location":{"x":3940000000000000000,"y":-489000000000000000,"z":-7140000000000000000}},"30015393":{"solarSystemId":30015393,"solarSystemName":"Y:3A2A","location":{"x":4480000000000000000,"y":-547000000000000000,"z":-6360000000000000000}},"30015394":{"solarSystemId":30015394,"solarSystemName":"P:3RA6","location":{"x":3580000000000000000,"y":138000000000000000,"z":-7470000000000000000}},"30015395":{"solarSystemId":30015395,"solarSystemName":"D:E1VI","location":{"x":4770000000000000000,"y":-870000000000000000,"z":-6500000000000000000}},"30015396":{"solarSystemId":30015396,"solarSystemName":"Z:3A4R","location":{"x":3970000000000000000,"y":-227000000000000000,"z":-7380000000000000000}},"30015397":{"solarSystemId":30015397,"solarSystemName":"H:1OO1","location":{"x":4150000000000000000,"y":37200000000000000,"z":-6780000000000000000}},"30015398":{"solarSystemId":30015398,"solarSystemName":"P:2RSO","location":{"x":4480000000000000000,"y":-136000000000000000,"z":-6620000000000000000}},"30015399":{"solarSystemId":30015399,"solarSystemName":"H:2AI1","location":{"x":3840000000000000000,"y":581000000000000000,"z":-6100000000000000000}},"30015400":{"solarSystemId":30015400,"solarSystemName":"G:328I","location":{"x":4810000000000000000,"y":452000000000000000,"z":-6970000000000000000}},"30015401":{"solarSystemId":30015401,"solarSystemName":"U:2E3E","location":{"x":2790000000000000000,"y":822000000000000000,"z":-5510000000000000000}},"30015402":{"solarSystemId":30015402,"solarSystemName":"G:2L6E","location":{"x":4310000000000000000,"y":2050000000000000000,"z":-4390000000000000000}},"30015403":{"solarSystemId":30015403,"solarSystemName":"J:T597","location":{"x":5850000000000000000,"y":2050000000000000000,"z":-3380000000000000000}},"30015404":{"solarSystemId":30015404,"solarSystemName":"H:3O04","location":{"x":4340000000000000000,"y":3740000000000000000,"z":-5960000000000000000}},"30015405":{"solarSystemId":30015405,"solarSystemName":"F:299I","location":{"x":6230000000000000000,"y":2970000000000000000,"z":-4540000000000000000}},"30015406":{"solarSystemId":30015406,"solarSystemName":"B:37T3","location":{"x":3730000000000000000,"y":3690000000000000000,"z":-4280000000000000000}},"30015407":{"solarSystemId":30015407,"solarSystemName":"Y:3T19","location":{"x":5550000000000000000,"y":663000000000000000,"z":-3270000000000000000}},"30015408":{"solarSystemId":30015408,"solarSystemName":"B:2K3N","location":{"x":4390000000000000000,"y":771000000000000000,"z":-3490000000000000000}},"30015409":{"solarSystemId":30015409,"solarSystemName":"G:1OTN","location":{"x":2930000000000000000,"y":416000000000000000,"z":-5110000000000000000}},"30015410":{"solarSystemId":30015410,"solarSystemName":"U:27R7","location":{"x":4680000000000000000,"y":910000000000000000,"z":-4540000000000000000}},"30015411":{"solarSystemId":30015411,"solarSystemName":"G:O3L4","location":{"x":5390000000000000000,"y":29900000000000000,"z":-3490000000000000000}},"30015412":{"solarSystemId":30015412,"solarSystemName":"P:2ELV","location":{"x":4430000000000000000,"y":-674000000000000000,"z":-5520000000000000000}},"30015413":{"solarSystemId":30015413,"solarSystemName":"Y:1T79","location":{"x":5390000000000000000,"y":-76100000000000000,"z":-5200000000000000000}},"30015414":{"solarSystemId":30015414,"solarSystemName":"U:4L9N","location":{"x":5260000000000000000,"y":-68500000000000000,"z":-5520000000000000000}},"30015415":{"solarSystemId":30015415,"solarSystemName":"M:163E","location":{"x":5800000000000000000,"y":-376000000000000000,"z":-5950000000000000000}},"30015416":{"solarSystemId":30015416,"solarSystemName":"F:1O8O","location":{"x":5940000000000000000,"y":-269000000000000000,"z":-5500000000000000000}},"30015417":{"solarSystemId":30015417,"solarSystemName":"D:VKTI","location":{"x":5350000000000000000,"y":-916000000000000000,"z":-4970000000000000000}},"30015418":{"solarSystemId":30015418,"solarSystemName":"B:3A9K","location":{"x":4990000000000000000,"y":-290000000000000000,"z":-5340000000000000000}},"30015419":{"solarSystemId":30015419,"solarSystemName":"P:1T53","location":{"x":5050000000000000000,"y":-245000000000000000,"z":-5130000000000000000}},"30015420":{"solarSystemId":30015420,"solarSystemName":"M:T021","location":{"x":4740000000000000000,"y":-740000000000000000,"z":-5270000000000000000}},"30015421":{"solarSystemId":30015421,"solarSystemName":"H:1E42","location":{"x":5520000000000000000,"y":-248000000000000000,"z":-6300000000000000000}},"30015422":{"solarSystemId":30015422,"solarSystemName":"G:3T79","location":{"x":4960000000000000000,"y":-563000000000000000,"z":-5440000000000000000}},"30015423":{"solarSystemId":30015423,"solarSystemName":"J:1REN","location":{"x":5790000000000000000,"y":-17800000000000000,"z":-5750000000000000000}},"30015424":{"solarSystemId":30015424,"solarSystemName":"U:17SS","location":{"x":5450000000000000000,"y":-491000000000000000,"z":-4290000000000000000}},"30015425":{"solarSystemId":30015425,"solarSystemName":"B:3NLK","location":{"x":5770000000000000000,"y":-574000000000000000,"z":-4920000000000000000}},"30015426":{"solarSystemId":30015426,"solarSystemName":"F:3I7O","location":{"x":3290000000000000000,"y":-3680000000000000000,"z":-5740000000000000000}},"30015427":{"solarSystemId":30015427,"solarSystemName":"G:3EA0","location":{"x":2090000000000000000,"y":-1890000000000000000,"z":-5200000000000000000}},"30015428":{"solarSystemId":30015428,"solarSystemName":"Y:236E","location":{"x":3660000000000000000,"y":-1950000000000000000,"z":-4980000000000000000}},"30015429":{"solarSystemId":30015429,"solarSystemName":"U:1KSK","location":{"x":1760000000000000000,"y":607000000000000000,"z":-5330000000000000000}},"30015430":{"solarSystemId":30015430,"solarSystemName":"H:1L89","location":{"x":2440000000000000000,"y":511000000000000000,"z":-5160000000000000000}},"30015431":{"solarSystemId":30015431,"solarSystemName":"G:279R","location":{"x":577000000000000000,"y":-361000000000000000,"z":-4050000000000000000}},"30015432":{"solarSystemId":30015432,"solarSystemName":"G:364E","location":{"x":1040000000000000000,"y":-506000000000000000,"z":-4800000000000000000}},"30015433":{"solarSystemId":30015433,"solarSystemName":"Y:38ES","location":{"x":1940000000000000000,"y":-3000000000000000000,"z":-5770000000000000000}},"30015434":{"solarSystemId":30015434,"solarSystemName":"Q:30NO","location":{"x":2090000000000000000,"y":-2690000000000000000,"z":-5390000000000000000}},"30015435":{"solarSystemId":30015435,"solarSystemName":"Q:3S8O","location":{"x":1750000000000000000,"y":-2770000000000000000,"z":-6800000000000000000}},"30015436":{"solarSystemId":30015436,"solarSystemName":"Y:3RA0","location":{"x":842000000000000000,"y":-495000000000000000,"z":-4230000000000000000}},"30015437":{"solarSystemId":30015437,"solarSystemName":"P:1K20","location":{"x":1660000000000000000,"y":-82600000000000000,"z":-3690000000000000000}},"30015438":{"solarSystemId":30015438,"solarSystemName":"D:3T31","location":{"x":779000000000000000,"y":-1330000000000000000,"z":-5110000000000000000}},"30015439":{"solarSystemId":30015439,"solarSystemName":"U:SS8L","location":{"x":1490000000000000000,"y":-32900000000000000,"z":-5520000000000000000}},"30015440":{"solarSystemId":30015440,"solarSystemName":"J:3764","location":{"x":3090000000000000000,"y":-240000000000000000,"z":-6600000000000000000}},"30015441":{"solarSystemId":30015441,"solarSystemName":"D:2RO3","location":{"x":2050000000000000000,"y":108000000000000000,"z":-6680000000000000000}},"30015442":{"solarSystemId":30015442,"solarSystemName":"B:1O70","location":{"x":3190000000000000000,"y":-403000000000000000,"z":-6950000000000000000}},"30015443":{"solarSystemId":30015443,"solarSystemName":"M:1E45","location":{"x":3550000000000000000,"y":-422000000000000000,"z":-6650000000000000000}},"30015444":{"solarSystemId":30015444,"solarSystemName":"Y:1RAR","location":{"x":2000000000000000000,"y":-302000000000000000,"z":-7180000000000000000}},"30015445":{"solarSystemId":30015445,"solarSystemName":"J:1L0K","location":{"x":2130000000000000000,"y":-714000000000000000,"z":-8000000000000000000}},"30015446":{"solarSystemId":30015446,"solarSystemName":"Y:1SII","location":{"x":2470000000000000000,"y":-1080000000000000000,"z":-6870000000000000000}},"30015447":{"solarSystemId":30015447,"solarSystemName":"D:34T6","location":{"x":3110000000000000000,"y":-10600000000000000,"z":-6830000000000000000}},"30015448":{"solarSystemId":30015448,"solarSystemName":"M:2TR6","location":{"x":2430000000000000000,"y":-210000000000000000,"z":-6410000000000000000}},"30015449":{"solarSystemId":30015449,"solarSystemName":"Z:498O","location":{"x":2960000000000000000,"y":-1060000000000000000,"z":-7790000000000000000}},"30015450":{"solarSystemId":30015450,"solarSystemName":"U:383R","location":{"x":2000000000000000000,"y":-541000000000000000,"z":-8010000000000000000}},"30015451":{"solarSystemId":30015451,"solarSystemName":"G:1V1E","location":{"x":2650000000000000000,"y":-69000000000000000,"z":-7170000000000000000}},"30015452":{"solarSystemId":30015452,"solarSystemName":"H:344L","location":{"x":2890000000000000000,"y":-175000000000000000,"z":-6470000000000000000}},"30015453":{"solarSystemId":30015453,"solarSystemName":"M:1N95","location":{"x":1370000000000000000,"y":-268000000000000000,"z":-6650000000000000000}},"30015454":{"solarSystemId":30015454,"solarSystemName":"U:2SAA","location":{"x":6640000000000000000,"y":2910000000000000000,"z":-9190000000000000000}},"30015455":{"solarSystemId":30015455,"solarSystemName":"H:2IL2","location":{"x":5550000000000000000,"y":931000000000000000,"z":-7310000000000000000}},"30015456":{"solarSystemId":30015456,"solarSystemName":"P:2V89","location":{"x":7640000000000000000,"y":4820000000000000000,"z":-6550000000000000000}},"30015457":{"solarSystemId":30015457,"solarSystemName":"J:38KO","location":{"x":9440000000000000000,"y":4400000000000000000,"z":-9580000000000000000}},"30015458":{"solarSystemId":30015458,"solarSystemName":"M:2OLL","location":{"x":6330000000000000000,"y":813000000000000000,"z":-6710000000000000000}},"30015459":{"solarSystemId":30015459,"solarSystemName":"Z:2VER","location":{"x":8760000000000000000,"y":1200000000000000000,"z":-7700000000000000000}},"30015460":{"solarSystemId":30015460,"solarSystemName":"Y:3E20","location":{"x":3850000000000000000,"y":5880000000000000000,"z":-7870000000000000000}},"30015461":{"solarSystemId":30015461,"solarSystemName":"U:1KN8","location":{"x":6700000000000000000,"y":664000000000000000,"z":-7300000000000000000}},"30015462":{"solarSystemId":30015462,"solarSystemName":"H:2ARA","location":{"x":5250000000000000000,"y":-1140000000000000000,"z":-1190000000000000000}},"30015463":{"solarSystemId":30015463,"solarSystemName":"Z:3SON","location":{"x":5370000000000000000,"y":-1690000000000000000,"z":-1990000000000000000}},"30015464":{"solarSystemId":30015464,"solarSystemName":"P:3K2I","location":{"x":5530000000000000000,"y":-1010000000000000000,"z":-2240000000000000000}},"30015465":{"solarSystemId":30015465,"solarSystemName":"H:3VR0","location":{"x":5060000000000000000,"y":-440000000000000000,"z":-1990000000000000000}},"30015466":{"solarSystemId":30015466,"solarSystemName":"Q:20L9","location":{"x":5660000000000000000,"y":-248000000000000000,"z":-1230000000000000000}},"30015467":{"solarSystemId":30015467,"solarSystemName":"H:41SO","location":{"x":5690000000000000000,"y":-457000000000000000,"z":-1340000000000000000}},"30015468":{"solarSystemId":30015468,"solarSystemName":"Z:2243","location":{"x":5590000000000000000,"y":-601000000000000000,"z":-1600000000000000000}},"30015469":{"solarSystemId":30015469,"solarSystemName":"M:ON6S","location":{"x":5370000000000000000,"y":-483000000000000000,"z":-1090000000000000000}},"30015470":{"solarSystemId":30015470,"solarSystemName":"G:31EE","location":{"x":5760000000000000000,"y":-78400000000000000,"z":-832000000000000000}},"30015471":{"solarSystemId":30015471,"solarSystemName":"M:1831","location":{"x":5260000000000000000,"y":-803000000000000000,"z":-1100000000000000000}},"30015472":{"solarSystemId":30015472,"solarSystemName":"Y:1301","location":{"x":6050000000000000000,"y":-410000000000000000,"z":-2030000000000000000}},"30015473":{"solarSystemId":30015473,"solarSystemName":"F:4AV5","location":{"x":5350000000000000000,"y":-552000000000000000,"z":-1950000000000000000}},"30015474":{"solarSystemId":30015474,"solarSystemName":"Q:2S6I","location":{"x":5630000000000000000,"y":-885000000000000000,"z":-1410000000000000000}},"30015475":{"solarSystemId":30015475,"solarSystemName":"G:3TVK","location":{"x":5430000000000000000,"y":-255000000000000000,"z":-1890000000000000000}},"30015476":{"solarSystemId":30015476,"solarSystemName":"D:2689","location":{"x":5270000000000000000,"y":-235000000000000000,"z":-1650000000000000000}},"30015477":{"solarSystemId":30015477,"solarSystemName":"D:RO27","location":{"x":5580000000000000000,"y":-329000000000000000,"z":-1610000000000000000}},"30015478":{"solarSystemId":30015478,"solarSystemName":"G:3RS9","location":{"x":6160000000000000000,"y":-243000000000000000,"z":-1960000000000000000}},"30015479":{"solarSystemId":30015479,"solarSystemName":"F:34E3","location":{"x":5390000000000000000,"y":-238000000000000000,"z":-1000000000000000000}},"30015480":{"solarSystemId":30015480,"solarSystemName":"Q:3AAK","location":{"x":4870000000000000000,"y":605000000000000000,"z":-1490000000000000000}},"30015481":{"solarSystemId":30015481,"solarSystemName":"Q:2I4L","location":{"x":3950000000000000000,"y":-1630000000000000000,"z":-2130000000000000000}},"30015482":{"solarSystemId":30015482,"solarSystemName":"G:222T","location":{"x":4820000000000000000,"y":205000000000000000,"z":-1530000000000000000}},"30015483":{"solarSystemId":30015483,"solarSystemName":"H:293N","location":{"x":4080000000000000000,"y":-385000000000000000,"z":-1650000000000000000}},"30015484":{"solarSystemId":30015484,"solarSystemName":"M:R48E","location":{"x":4150000000000000000,"y":-217000000000000000,"z":-3180000000000000000}},"30015485":{"solarSystemId":30015485,"solarSystemName":"U:3903","location":{"x":4870000000000000000,"y":-769000000000000000,"z":-1170000000000000000}},"30015486":{"solarSystemId":30015486,"solarSystemName":"P:S74R","location":{"x":4520000000000000000,"y":-1060000000000000000,"z":-2470000000000000000}},"30015487":{"solarSystemId":30015487,"solarSystemName":"D:1L3O","location":{"x":4270000000000000000,"y":-407000000000000000,"z":-2110000000000000000}},"30015488":{"solarSystemId":30015488,"solarSystemName":"M:2SE9","location":{"x":5280000000000000000,"y":-484000000000000000,"z":-2880000000000000000}},"30015489":{"solarSystemId":30015489,"solarSystemName":"P:11L8","location":{"x":4870000000000000000,"y":-274000000000000000,"z":-1820000000000000000}},"30015490":{"solarSystemId":30015490,"solarSystemName":"U:KKS0","location":{"x":4030000000000000000,"y":-933000000000000000,"z":-1180000000000000000}},"30015491":{"solarSystemId":30015491,"solarSystemName":"B:1O98","location":{"x":4730000000000000000,"y":-514000000000000000,"z":-1360000000000000000}},"30015492":{"solarSystemId":30015492,"solarSystemName":"Y:3VE3","location":{"x":4580000000000000000,"y":1250000000000000000,"z":-1570000000000000000}},"30015493":{"solarSystemId":30015493,"solarSystemName":"U:2N9T","location":{"x":3330000000000000000,"y":-1540000000000000000,"z":-1970000000000000000}},"30015494":{"solarSystemId":30015494,"solarSystemName":"Z:3SNI","location":{"x":4900000000000000000,"y":31200000000000000,"z":-1870000000000000000}},"30015495":{"solarSystemId":30015495,"solarSystemName":"F:37NT","location":{"x":4070000000000000000,"y":-1660000000000000000,"z":-2760000000000000000}},"30015496":{"solarSystemId":30015496,"solarSystemName":"P:2INI","location":{"x":4700000000000000000,"y":-845000000000000000,"z":-803000000000000000}},"30015497":{"solarSystemId":30015497,"solarSystemName":"D:37TO","location":{"x":4250000000000000000,"y":54900000000000000,"z":-2630000000000000000}},"30015498":{"solarSystemId":30015498,"solarSystemName":"U:50L0","location":{"x":4840000000000000000,"y":-798000000000000000,"z":-1270000000000000000}},"30015499":{"solarSystemId":30015499,"solarSystemName":"J:1788","location":{"x":3410000000000000000,"y":-808000000000000000,"z":-2710000000000000000}},"30015500":{"solarSystemId":30015500,"solarSystemName":"Z:2VA4","location":{"x":6160000000000000000,"y":-889000000000000000,"z":-3400000000000000000}},"30015501":{"solarSystemId":30015501,"solarSystemName":"M:294A","location":{"x":7150000000000000000,"y":-682000000000000000,"z":-3130000000000000000}},"30015502":{"solarSystemId":30015502,"solarSystemName":"H:24A8","location":{"x":6880000000000000000,"y":-815000000000000000,"z":-3270000000000000000}},"30015503":{"solarSystemId":30015503,"solarSystemName":"M:1O3L","location":{"x":7490000000000000000,"y":-1180000000000000000,"z":-2870000000000000000}},"30015504":{"solarSystemId":30015504,"solarSystemName":"U:1ILL","location":{"x":6960000000000000000,"y":-1030000000000000000,"z":-2760000000000000000}},"30015505":{"solarSystemId":30015505,"solarSystemName":"M:15N0","location":{"x":6070000000000000000,"y":-568000000000000000,"z":-2910000000000000000}},"30015506":{"solarSystemId":30015506,"solarSystemName":"Q:24E3","location":{"x":6630000000000000000,"y":-1090000000000000000,"z":-1990000000000000000}},"30015507":{"solarSystemId":30015507,"solarSystemName":"M:1AR4","location":{"x":6870000000000000000,"y":-1680000000000000000,"z":-2270000000000000000}},"30015508":{"solarSystemId":30015508,"solarSystemName":"M:3NKV","location":{"x":6240000000000000000,"y":-562000000000000000,"z":-3070000000000000000}},"30015509":{"solarSystemId":30015509,"solarSystemName":"J:3343","location":{"x":5860000000000000000,"y":-787000000000000000,"z":-3130000000000000000}},"30015510":{"solarSystemId":30015510,"solarSystemName":"M:21N8","location":{"x":5840000000000000000,"y":-602000000000000000,"z":-2530000000000000000}},"30015511":{"solarSystemId":30015511,"solarSystemName":"M:2V53","location":{"x":7220000000000000000,"y":-904000000000000000,"z":-2970000000000000000}},"30015512":{"solarSystemId":30015512,"solarSystemName":"F:271O","location":{"x":6250000000000000000,"y":-642000000000000000,"z":-3120000000000000000}},"30015513":{"solarSystemId":30015513,"solarSystemName":"H:367N","location":{"x":6270000000000000000,"y":-790000000000000000,"z":-2700000000000000000}},"30015514":{"solarSystemId":30015514,"solarSystemName":"M:3ENL","location":{"x":7140000000000000000,"y":-1820000000000000000,"z":-2130000000000000000}},"30015515":{"solarSystemId":30015515,"solarSystemName":"P:3O3E","location":{"x":7050000000000000000,"y":-1590000000000000000,"z":-2120000000000000000}},"30015516":{"solarSystemId":30015516,"solarSystemName":"H:4768","location":{"x":6530000000000000000,"y":-1140000000000000000,"z":-2730000000000000000}},"30015517":{"solarSystemId":30015517,"solarSystemName":"J:3E07","location":{"x":4200000000000000000,"y":358000000000000000,"z":-254000000000000000}},"30015518":{"solarSystemId":30015518,"solarSystemName":"Y:3A8S","location":{"x":4530000000000000000,"y":116000000000000000,"z":-940000000000000000}},"30015519":{"solarSystemId":30015519,"solarSystemName":"Q:27T4","location":{"x":5560000000000000000,"y":-813000000000000000,"z":-121000000000000000}},"30015520":{"solarSystemId":30015520,"solarSystemName":"Z:20T4","location":{"x":3760000000000000000,"y":-593000000000000000,"z":562000000000000000}},"30015521":{"solarSystemId":30015521,"solarSystemName":"J:318V","location":{"x":3900000000000000000,"y":-208000000000000000,"z":-757000000000000000}},"30015522":{"solarSystemId":30015522,"solarSystemName":"Z:V62I","location":{"x":3320000000000000000,"y":-79300000000000000,"z":393000000000000000}},"30015523":{"solarSystemId":30015523,"solarSystemName":"J:16T4","location":{"x":5730000000000000000,"y":-683000000000000000,"z":-8840000000000000}},"30015524":{"solarSystemId":30015524,"solarSystemName":"B:1R1L","location":{"x":5240000000000000000,"y":-388000000000000000,"z":552000000000000000}},"30015525":{"solarSystemId":30015525,"solarSystemName":"Q:3E14","location":{"x":5050000000000000000,"y":-414000000000000000,"z":40200000000000000}},"30015526":{"solarSystemId":30015526,"solarSystemName":"J:L169","location":{"x":5700000000000000000,"y":-1110000000000000000,"z":-259000000000000000}},"30015527":{"solarSystemId":30015527,"solarSystemName":"H:RA3L","location":{"x":5440000000000000000,"y":-125000000000000000,"z":88400000000000000}},"30015528":{"solarSystemId":30015528,"solarSystemName":"D:I866","location":{"x":3950000000000000000,"y":-378000000000000000,"z":-23500000000000000}},"30015529":{"solarSystemId":30015529,"solarSystemName":"J:31LL","location":{"x":3070000000000000000,"y":1130000000000000000,"z":-1380000000000000000}},"30015530":{"solarSystemId":30015530,"solarSystemName":"Q:190R","location":{"x":5130000000000000000,"y":-664000000000000000,"z":-491000000000000000}},"30015531":{"solarSystemId":30015531,"solarSystemName":"F:3TI4","location":{"x":3030000000000000000,"y":194000000000000000,"z":-966000000000000000}},"30015532":{"solarSystemId":30015532,"solarSystemName":"J:2T3I","location":{"x":4320000000000000000,"y":1540000000000000000,"z":-363000000000000000}},"30015533":{"solarSystemId":30015533,"solarSystemName":"B:1V61","location":{"x":4830000000000000000,"y":-484000000000000000,"z":365000000000000000}},"30015534":{"solarSystemId":30015534,"solarSystemName":"P:31R1","location":{"x":3330000000000000000,"y":206000000000000000,"z":668000000000000000}},"30015535":{"solarSystemId":30015535,"solarSystemName":"Q:27AN","location":{"x":3370000000000000000,"y":672000000000000000,"z":-955000000000000000}},"30015536":{"solarSystemId":30015536,"solarSystemName":"Y:1NL8","location":{"x":4220000000000000000,"y":-556000000000000000,"z":211000000000000000}},"30015537":{"solarSystemId":30015537,"solarSystemName":"B:202O","location":{"x":5360000000000000000,"y":-740000000000000000,"z":-241000000000000000}},"30015538":{"solarSystemId":30015538,"solarSystemName":"Z:270R","location":{"x":7240000000000000000,"y":-197000000000000000,"z":-148000000000000000}},"30015539":{"solarSystemId":30015539,"solarSystemName":"M:11EK","location":{"x":7020000000000000000,"y":-632000000000000000,"z":-1530000000000000000}},"30015540":{"solarSystemId":30015540,"solarSystemName":"J:2391","location":{"x":6240000000000000000,"y":-158000000000000000,"z":60800000000000000}},"30015541":{"solarSystemId":30015541,"solarSystemName":"J:1IE0","location":{"x":6730000000000000000,"y":-561000000000000000,"z":-1070000000000000000}},"30015542":{"solarSystemId":30015542,"solarSystemName":"M:2SO8","location":{"x":6910000000000000000,"y":-189000000000000000,"z":-557000000000000000}},"30015543":{"solarSystemId":30015543,"solarSystemName":"B:N25T","location":{"x":7120000000000000000,"y":-1030000000000000000,"z":-905000000000000000}},"30015544":{"solarSystemId":30015544,"solarSystemName":"Q:3899","location":{"x":7180000000000000000,"y":-70100000000000000,"z":-476000000000000000}},"30015545":{"solarSystemId":30015545,"solarSystemName":"U:1KVK","location":{"x":7760000000000000000,"y":41300000000000000,"z":29700000000000000}},"30015546":{"solarSystemId":30015546,"solarSystemName":"J:1R8L","location":{"x":6090000000000000000,"y":-884000000000000000,"z":-637000000000000000}},"30015547":{"solarSystemId":30015547,"solarSystemName":"Q:202T","location":{"x":6180000000000000000,"y":-1040000000000000000,"z":-672000000000000000}},"30015548":{"solarSystemId":30015548,"solarSystemName":"Q:3NL5","location":{"x":7100000000000000000,"y":-486000000000000000,"z":-230000000000000000}},"30015549":{"solarSystemId":30015549,"solarSystemName":"Z:1N76","location":{"x":7200000000000000000,"y":-513000000000000000,"z":-667000000000000000}},"30015550":{"solarSystemId":30015550,"solarSystemName":"B:259S","location":{"x":7410000000000000000,"y":-601000000000000000,"z":-1340000000000000000}},"30015551":{"solarSystemId":30015551,"solarSystemName":"Q:2K4I","location":{"x":7660000000000000000,"y":-420000000000000000,"z":-226000000000000000}},"30015552":{"solarSystemId":30015552,"solarSystemName":"H:1SNT","location":{"x":5930000000000000000,"y":-688000000000000000,"z":-865000000000000000}},"30015553":{"solarSystemId":30015553,"solarSystemName":"P:37T9","location":{"x":8800000000000000000,"y":5680000000000000000,"z":549000000000000000}},"30015554":{"solarSystemId":30015554,"solarSystemName":"U:3011","location":{"x":7720000000000000000,"y":1760000000000000000,"z":1460000000000000000}},"30015555":{"solarSystemId":30015555,"solarSystemName":"Z:2LIL","location":{"x":8040000000000000000,"y":3400000000000000000,"z":-1780000000000000000}},"30015556":{"solarSystemId":30015556,"solarSystemName":"F:3NS5","location":{"x":8180000000000000000,"y":2300000000000000000,"z":-2100000000000000000}},"30015557":{"solarSystemId":30015557,"solarSystemName":"F:2EV0","location":{"x":7880000000000000000,"y":2170000000000000000,"z":-1230000000000000000}},"30015558":{"solarSystemId":30015558,"solarSystemName":"J:3112","location":{"x":9330000000000000000,"y":399000000000000000,"z":-915000000000000000}},"30015559":{"solarSystemId":30015559,"solarSystemName":"Q:23R8","location":{"x":6040000000000000000,"y":310000000000000000,"z":-1140000000000000000}},"30015560":{"solarSystemId":30015560,"solarSystemName":"U:1IT2","location":{"x":7390000000000000000,"y":1290000000000000000,"z":1540000000000000000}},"30015561":{"solarSystemId":30015561,"solarSystemName":"Q:2KO3","location":{"x":6010000000000000000,"y":-1480000000000000000,"z":-1490000000000000000}},"30015562":{"solarSystemId":30015562,"solarSystemName":"J:3A3A","location":{"x":6850000000000000000,"y":-1160000000000000000,"z":-1500000000000000000}},"30015563":{"solarSystemId":30015563,"solarSystemName":"D:3VRT","location":{"x":6380000000000000000,"y":-950000000000000000,"z":-1440000000000000000}},"30015564":{"solarSystemId":30015564,"solarSystemName":"G:3777","location":{"x":6340000000000000000,"y":-115000000000000000,"z":-2610000000000000000}},"30015565":{"solarSystemId":30015565,"solarSystemName":"Z:3EN1","location":{"x":7110000000000000000,"y":-335000000000000000,"z":-2480000000000000000}},"30015566":{"solarSystemId":30015566,"solarSystemName":"Q:3224","location":{"x":7510000000000000000,"y":-1570000000000000000,"z":-2470000000000000000}},"30015567":{"solarSystemId":30015567,"solarSystemName":"H:3ON9","location":{"x":6550000000000000000,"y":-152000000000000000,"z":-3050000000000000000}},"30015568":{"solarSystemId":30015568,"solarSystemName":"B:2213","location":{"x":7570000000000000000,"y":-511000000000000000,"z":-2610000000000000000}},"30015569":{"solarSystemId":30015569,"solarSystemName":"Q:1SSE","location":{"x":7260000000000000000,"y":-268000000000000000,"z":-1880000000000000000}},"30015570":{"solarSystemId":30015570,"solarSystemName":"Q:2V05","location":{"x":6800000000000000000,"y":324000000000000000,"z":-2820000000000000000}},"30015571":{"solarSystemId":30015571,"solarSystemName":"J:SA03","location":{"x":7580000000000000000,"y":-408000000000000000,"z":-1640000000000000000}},"30015572":{"solarSystemId":30015572,"solarSystemName":"Z:2686","location":{"x":7320000000000000000,"y":-600000000000000000,"z":-1800000000000000000}},"30015573":{"solarSystemId":30015573,"solarSystemName":"J:3T0A","location":{"x":6910000000000000000,"y":-334000000000000000,"z":-2610000000000000000}},"30015574":{"solarSystemId":30015574,"solarSystemName":"G:326L","location":{"x":7410000000000000000,"y":-1240000000000000000,"z":-2280000000000000000}},"30015575":{"solarSystemId":30015575,"solarSystemName":"H:31SL","location":{"x":7470000000000000000,"y":-742000000000000000,"z":-1670000000000000000}},"30015576":{"solarSystemId":30015576,"solarSystemName":"H:19VT","location":{"x":6910000000000000000,"y":-1150000000000000000,"z":-1710000000000000000}},"30015577":{"solarSystemId":30015577,"solarSystemName":"J:1L62","location":{"x":7040000000000000000,"y":-341000000000000000,"z":-2470000000000000000}},"30015578":{"solarSystemId":30015578,"solarSystemName":"U:3SSA","location":{"x":4050000000000000000,"y":-1390000000000000000,"z":3680000000000000000}},"30015579":{"solarSystemId":30015579,"solarSystemName":"F:2KLE","location":{"x":3820000000000000000,"y":-1030000000000000000,"z":4290000000000000000}},"30015580":{"solarSystemId":30015580,"solarSystemName":"G:22KT","location":{"x":3970000000000000000,"y":-1350000000000000000,"z":4330000000000000000}},"30015581":{"solarSystemId":30015581,"solarSystemName":"J:27I5","location":{"x":4080000000000000000,"y":-909000000000000000,"z":3840000000000000000}},"30015582":{"solarSystemId":30015582,"solarSystemName":"F:REOS","location":{"x":4470000000000000000,"y":-1130000000000000000,"z":3110000000000000000}},"30015583":{"solarSystemId":30015583,"solarSystemName":"U:3REI","location":{"x":4570000000000000000,"y":-819000000000000000,"z":3500000000000000000}},"30015584":{"solarSystemId":30015584,"solarSystemName":"Q:1LT9","location":{"x":3760000000000000000,"y":-1180000000000000000,"z":2880000000000000000}},"30015585":{"solarSystemId":30015585,"solarSystemName":"B:1ESA","location":{"x":4340000000000000000,"y":-747000000000000000,"z":2860000000000000000}},"30015586":{"solarSystemId":30015586,"solarSystemName":"J:OE28","location":{"x":3890000000000000000,"y":-213000000000000000,"z":3020000000000000000}},"30015587":{"solarSystemId":30015587,"solarSystemName":"D:1TSO","location":{"x":4270000000000000000,"y":-935000000000000000,"z":4010000000000000000}},"30015588":{"solarSystemId":30015588,"solarSystemName":"F:23OI","location":{"x":4430000000000000000,"y":-1320000000000000000,"z":3150000000000000000}},"30015589":{"solarSystemId":30015589,"solarSystemName":"H:3831","location":{"x":3940000000000000000,"y":-275000000000000000,"z":3160000000000000000}},"30015590":{"solarSystemId":30015590,"solarSystemName":"B:TN31","location":{"x":3810000000000000000,"y":-728000000000000000,"z":3120000000000000000}},"30015591":{"solarSystemId":30015591,"solarSystemName":"H:EE4E","location":{"x":4440000000000000000,"y":-1090000000000000000,"z":3430000000000000000}},"30015592":{"solarSystemId":30015592,"solarSystemName":"B:2AT9","location":{"x":4250000000000000000,"y":-983000000000000000,"z":2580000000000000000}},"30015593":{"solarSystemId":30015593,"solarSystemName":"Q:3R29","location":{"x":4250000000000000000,"y":-1320000000000000000,"z":3020000000000000000}},"30015594":{"solarSystemId":30015594,"solarSystemName":"G:V6R0","location":{"x":4370000000000000000,"y":-1460000000000000000,"z":3440000000000000000}},"30015595":{"solarSystemId":30015595,"solarSystemName":"U:3ORV","location":{"x":3070000000000000000,"y":-1100000000000000000,"z":4490000000000000000}},"30015596":{"solarSystemId":30015596,"solarSystemName":"U:35NA","location":{"x":3140000000000000000,"y":-1940000000000000000,"z":5290000000000000000}},"30015597":{"solarSystemId":30015597,"solarSystemName":"F:3VIT","location":{"x":2780000000000000000,"y":-1190000000000000000,"z":3980000000000000000}},"30015598":{"solarSystemId":30015598,"solarSystemName":"U:1VT8","location":{"x":2800000000000000000,"y":-1220000000000000000,"z":4560000000000000000}},"30015599":{"solarSystemId":30015599,"solarSystemName":"J:1360","location":{"x":2930000000000000000,"y":-1900000000000000000,"z":3690000000000000000}},"30015600":{"solarSystemId":30015600,"solarSystemName":"G:2O9A","location":{"x":3160000000000000000,"y":-1270000000000000000,"z":4600000000000000000}},"30015601":{"solarSystemId":30015601,"solarSystemName":"H:311I","location":{"x":2580000000000000000,"y":-1660000000000000000,"z":5120000000000000000}},"30015602":{"solarSystemId":30015602,"solarSystemName":"F:24K7","location":{"x":2750000000000000000,"y":-1370000000000000000,"z":4280000000000000000}},"30015603":{"solarSystemId":30015603,"solarSystemName":"H:4O0A","location":{"x":3400000000000000000,"y":-1580000000000000000,"z":4130000000000000000}},"30015604":{"solarSystemId":30015604,"solarSystemName":"P:E9O5","location":{"x":2810000000000000000,"y":-1750000000000000000,"z":4920000000000000000}},"30015605":{"solarSystemId":30015605,"solarSystemName":"G:ERKK","location":{"x":2860000000000000000,"y":-1900000000000000000,"z":4400000000000000000}},"30015606":{"solarSystemId":30015606,"solarSystemName":"B:2O0S","location":{"x":2870000000000000000,"y":-1550000000000000000,"z":4480000000000000000}},"30015607":{"solarSystemId":30015607,"solarSystemName":"Z:2V49","location":{"x":3540000000000000000,"y":-1260000000000000000,"z":4060000000000000000}},"30015608":{"solarSystemId":30015608,"solarSystemName":"M:3197","location":{"x":2980000000000000000,"y":-1420000000000000000,"z":3860000000000000000}},"30015609":{"solarSystemId":30015609,"solarSystemName":"Q:21R7","location":{"x":2580000000000000000,"y":-1400000000000000000,"z":3990000000000000000}},"30015610":{"solarSystemId":30015610,"solarSystemName":"H:12EI","location":{"x":2340000000000000000,"y":-1510000000000000000,"z":4610000000000000000}},"30015611":{"solarSystemId":30015611,"solarSystemName":"Z:23ER","location":{"x":3180000000000000000,"y":-974000000000000000,"z":4660000000000000000}},"30015612":{"solarSystemId":30015612,"solarSystemName":"U:3AN3","location":{"x":2790000000000000000,"y":-1500000000000000000,"z":3360000000000000000}},"30015613":{"solarSystemId":30015613,"solarSystemName":"B:3A89","location":{"x":2290000000000000000,"y":-1400000000000000000,"z":2670000000000000000}},"30015614":{"solarSystemId":30015614,"solarSystemName":"P:328K","location":{"x":2370000000000000000,"y":-1340000000000000000,"z":3150000000000000000}},"30015615":{"solarSystemId":30015615,"solarSystemName":"B:O1A6","location":{"x":2970000000000000000,"y":-1550000000000000000,"z":3440000000000000000}},"30015616":{"solarSystemId":30015616,"solarSystemName":"Z:32S3","location":{"x":2640000000000000000,"y":-1130000000000000000,"z":2910000000000000000}},"30015617":{"solarSystemId":30015617,"solarSystemName":"H:27L3","location":{"x":2710000000000000000,"y":-1710000000000000000,"z":2660000000000000000}},"30015618":{"solarSystemId":30015618,"solarSystemName":"F:1S5K","location":{"x":1930000000000000000,"y":-1480000000000000000,"z":2940000000000000000}},"30015619":{"solarSystemId":30015619,"solarSystemName":"Q:2K00","location":{"x":2380000000000000000,"y":-1240000000000000000,"z":2960000000000000000}},"30015620":{"solarSystemId":30015620,"solarSystemName":"H:3632","location":{"x":2870000000000000000,"y":-1400000000000000000,"z":2680000000000000000}},"30015621":{"solarSystemId":30015621,"solarSystemName":"F:2LR3","location":{"x":2490000000000000000,"y":-1620000000000000000,"z":3150000000000000000}},"30015622":{"solarSystemId":30015622,"solarSystemName":"D:TT7A","location":{"x":2880000000000000000,"y":-1550000000000000000,"z":3200000000000000000}},"30015623":{"solarSystemId":30015623,"solarSystemName":"D:36T0","location":{"x":2830000000000000000,"y":-1850000000000000000,"z":2540000000000000000}},"30015624":{"solarSystemId":30015624,"solarSystemName":"Q:1AV8","location":{"x":2510000000000000000,"y":-1310000000000000000,"z":2660000000000000000}},"30015625":{"solarSystemId":30015625,"solarSystemName":"H:30IS","location":{"x":2190000000000000000,"y":-1820000000000000000,"z":3420000000000000000}},"30015626":{"solarSystemId":30015626,"solarSystemName":"F:28I1","location":{"x":2930000000000000000,"y":-1610000000000000000,"z":3540000000000000000}},"30015627":{"solarSystemId":30015627,"solarSystemName":"F:32R3","location":{"x":2560000000000000000,"y":-955000000000000000,"z":3180000000000000000}},"30015628":{"solarSystemId":30015628,"solarSystemName":"P:336T","location":{"x":3920000000000000000,"y":-1380000000000000000,"z":1460000000000000000}},"30015629":{"solarSystemId":30015629,"solarSystemName":"F:2OAT","location":{"x":3130000000000000000,"y":-1460000000000000000,"z":2550000000000000000}},"30015630":{"solarSystemId":30015630,"solarSystemName":"Z:1VKA","location":{"x":3580000000000000000,"y":-513000000000000000,"z":2420000000000000000}},"30015631":{"solarSystemId":30015631,"solarSystemName":"D:RE56","location":{"x":3890000000000000000,"y":-868000000000000000,"z":1960000000000000000}},"30015632":{"solarSystemId":30015632,"solarSystemName":"H:2A38","location":{"x":3890000000000000000,"y":-2490000000000000000,"z":1850000000000000000}},"30015633":{"solarSystemId":30015633,"solarSystemName":"Z:38O0","location":{"x":3550000000000000000,"y":-1070000000000000000,"z":2250000000000000000}},"30015634":{"solarSystemId":30015634,"solarSystemName":"Y:3IA9","location":{"x":3940000000000000000,"y":-1410000000000000000,"z":2000000000000000000}},"30015635":{"solarSystemId":30015635,"solarSystemName":"Y:1SKL","location":{"x":3360000000000000000,"y":-1660000000000000000,"z":1930000000000000000}},"30015636":{"solarSystemId":30015636,"solarSystemName":"Q:TV18","location":{"x":3120000000000000000,"y":-2080000000000000000,"z":1820000000000000000}},"30015637":{"solarSystemId":30015637,"solarSystemName":"B:3933","location":{"x":3560000000000000000,"y":-1410000000000000000,"z":2060000000000000000}},"30015638":{"solarSystemId":30015638,"solarSystemName":"P:2ON4","location":{"x":3550000000000000000,"y":-1180000000000000000,"z":2330000000000000000}},"30015639":{"solarSystemId":30015639,"solarSystemName":"G:N6KO","location":{"x":2840000000000000000,"y":-1150000000000000000,"z":1830000000000000000}},"30015640":{"solarSystemId":30015640,"solarSystemName":"F:32I2","location":{"x":3920000000000000000,"y":-730000000000000000,"z":2270000000000000000}},"30015641":{"solarSystemId":30015641,"solarSystemName":"P:2LST","location":{"x":4380000000000000000,"y":-1460000000000000000,"z":2040000000000000000}},"30015642":{"solarSystemId":30015642,"solarSystemName":"H:3V85","location":{"x":4000000000000000000,"y":-1910000000000000000,"z":2330000000000000000}},"30015643":{"solarSystemId":30015643,"solarSystemName":"F:4097","location":{"x":2800000000000000000,"y":-1210000000000000000,"z":2220000000000000000}},"30015644":{"solarSystemId":30015644,"solarSystemName":"F:2R26","location":{"x":4420000000000000000,"y":-2240000000000000000,"z":2140000000000000000}},"30015645":{"solarSystemId":30015645,"solarSystemName":"J:14IO","location":{"x":4360000000000000000,"y":-1370000000000000000,"z":2400000000000000000}},"30015646":{"solarSystemId":30015646,"solarSystemName":"J:238N","location":{"x":3520000000000000000,"y":-1310000000000000000,"z":2610000000000000000}},"30015647":{"solarSystemId":30015647,"solarSystemName":"H:IA7T","location":{"x":4680000000000000000,"y":-1530000000000000000,"z":1810000000000000000}},"30015648":{"solarSystemId":30015648,"solarSystemName":"U:3E14","location":{"x":3890000000000000000,"y":140000000000000000,"z":4010000000000000000}},"30015649":{"solarSystemId":30015649,"solarSystemName":"M:2AVV","location":{"x":3260000000000000000,"y":-321000000000000000,"z":3740000000000000000}},"30015650":{"solarSystemId":30015650,"solarSystemName":"U:2LIE","location":{"x":2870000000000000000,"y":-643000000000000000,"z":3790000000000000000}},"30015651":{"solarSystemId":30015651,"solarSystemName":"Q:3N47","location":{"x":2510000000000000000,"y":-875000000000000000,"z":3590000000000000000}},"30015652":{"solarSystemId":30015652,"solarSystemName":"D:30E2","location":{"x":2280000000000000000,"y":-672000000000000000,"z":3890000000000000000}},"30015653":{"solarSystemId":30015653,"solarSystemName":"J:3O1L","location":{"x":3500000000000000000,"y":-420000000000000000,"z":4050000000000000000}},"30015654":{"solarSystemId":30015654,"solarSystemName":"F:27IL","location":{"x":2650000000000000000,"y":-677000000000000000,"z":3650000000000000000}},"30015655":{"solarSystemId":30015655,"solarSystemName":"Q:SELI","location":{"x":3340000000000000000,"y":-383000000000000000,"z":4070000000000000000}},"30015656":{"solarSystemId":30015656,"solarSystemName":"Q:25R6","location":{"x":3410000000000000000,"y":-49800000000000000,"z":2600000000000000000}},"30015657":{"solarSystemId":30015657,"solarSystemName":"B:11R5","location":{"x":3260000000000000000,"y":-30600000000000000,"z":2940000000000000000}},"30015658":{"solarSystemId":30015658,"solarSystemName":"D:EK17","location":{"x":3060000000000000000,"y":-55100000000000000,"z":4390000000000000000}},"30015659":{"solarSystemId":30015659,"solarSystemName":"M:3E73","location":{"x":3500000000000000000,"y":-224000000000000000,"z":3970000000000000000}},"30015660":{"solarSystemId":30015660,"solarSystemName":"H:2ERI","location":{"x":3040000000000000000,"y":3740000000000000,"z":4310000000000000000}},"30015661":{"solarSystemId":30015661,"solarSystemName":"Z:32OK","location":{"x":2460000000000000000,"y":-627000000000000000,"z":3930000000000000000}},"30015662":{"solarSystemId":30015662,"solarSystemName":"H:3V34","location":{"x":2790000000000000000,"y":-547000000000000000,"z":3510000000000000000}},"30015663":{"solarSystemId":30015663,"solarSystemName":"J:50NT","location":{"x":3790000000000000000,"y":-839000000000000000,"z":3390000000000000000}},"30015664":{"solarSystemId":30015664,"solarSystemName":"Y:132L","location":{"x":3490000000000000000,"y":-951000000000000000,"z":3420000000000000000}},"30015665":{"solarSystemId":30015665,"solarSystemName":"B:1NEA","location":{"x":2460000000000000000,"y":-252000000000000000,"z":3700000000000000000}},"30015666":{"solarSystemId":30015666,"solarSystemName":"Y:15E0","location":{"x":3070000000000000000,"y":-1080000000000000000,"z":3790000000000000000}},"30015667":{"solarSystemId":30015667,"solarSystemName":"Z:2V10","location":{"x":2970000000000000000,"y":-3410000000000000000,"z":2070000000000000000}},"30015668":{"solarSystemId":30015668,"solarSystemName":"D:36EO","location":{"x":2170000000000000000,"y":-4410000000000000000,"z":2600000000000000000}},"30015669":{"solarSystemId":30015669,"solarSystemName":"B:1S80","location":{"x":1770000000000000000,"y":-2350000000000000000,"z":2330000000000000000}},"30015670":{"solarSystemId":30015670,"solarSystemName":"J:2KOO","location":{"x":1780000000000000000,"y":-2750000000000000000,"z":2290000000000000000}},"30015671":{"solarSystemId":30015671,"solarSystemName":"D:2I3E","location":{"x":1420000000000000000,"y":-3700000000000000000,"z":3040000000000000000}},"30015672":{"solarSystemId":30015672,"solarSystemName":"Y:3S9L","location":{"x":2870000000000000000,"y":-2760000000000000000,"z":1930000000000000000}},"30015673":{"solarSystemId":30015673,"solarSystemName":"Q:2K84","location":{"x":2540000000000000000,"y":-2430000000000000000,"z":1870000000000000000}},"30015674":{"solarSystemId":30015674,"solarSystemName":"D:3584","location":{"x":2270000000000000000,"y":-3320000000000000000,"z":2490000000000000000}},"30015675":{"solarSystemId":30015675,"solarSystemName":"B:2ET2","location":{"x":2650000000000000000,"y":-4070000000000000000,"z":3060000000000000000}},"30015676":{"solarSystemId":30015676,"solarSystemName":"M:O78O","location":{"x":2480000000000000000,"y":-2590000000000000000,"z":2790000000000000000}},"30015677":{"solarSystemId":30015677,"solarSystemName":"U:37TR","location":{"x":2620000000000000000,"y":-2160000000000000000,"z":2780000000000000000}},"30015678":{"solarSystemId":30015678,"solarSystemName":"J:3789","location":{"x":2140000000000000000,"y":-1210000000000000000,"z":2430000000000000000}},"30015679":{"solarSystemId":30015679,"solarSystemName":"M:2982","location":{"x":2280000000000000000,"y":-336000000000000000,"z":3150000000000000000}},"30015680":{"solarSystemId":30015680,"solarSystemName":"M:15AO","location":{"x":2920000000000000000,"y":-1090000000000000000,"z":2910000000000000000}},"30015681":{"solarSystemId":30015681,"solarSystemName":"G:IAAT","location":{"x":2060000000000000000,"y":-729000000000000000,"z":2050000000000000000}},"30015682":{"solarSystemId":30015682,"solarSystemName":"J:26K4","location":{"x":2990000000000000000,"y":-803000000000000000,"z":2390000000000000000}},"30015683":{"solarSystemId":30015683,"solarSystemName":"Z:1O5E","location":{"x":2150000000000000000,"y":-547000000000000000,"z":2360000000000000000}},"30015684":{"solarSystemId":30015684,"solarSystemName":"G:1LSE","location":{"x":2590000000000000000,"y":-981000000000000000,"z":2060000000000000000}},"30015685":{"solarSystemId":30015685,"solarSystemName":"B:NA29","location":{"x":2430000000000000000,"y":-423000000000000000,"z":3420000000000000000}},"30015686":{"solarSystemId":30015686,"solarSystemName":"P:14I1","location":{"x":2640000000000000000,"y":-896000000000000000,"z":3000000000000000000}},"30015687":{"solarSystemId":30015687,"solarSystemName":"B:N870","location":{"x":1940000000000000000,"y":-331000000000000000,"z":2020000000000000000}},"30015688":{"solarSystemId":30015688,"solarSystemName":"Q:I19O","location":{"x":1680000000000000000,"y":-783000000000000000,"z":2560000000000000000}},"30015689":{"solarSystemId":30015689,"solarSystemName":"Q:2K61","location":{"x":2760000000000000000,"y":-798000000000000000,"z":3100000000000000000}},"30015690":{"solarSystemId":30015690,"solarSystemName":"F:161E","location":{"x":2460000000000000000,"y":-862000000000000000,"z":2580000000000000000}},"30015691":{"solarSystemId":30015691,"solarSystemName":"P:2NL0","location":{"x":2750000000000000000,"y":-1000000000000000000,"z":2980000000000000000}},"30015692":{"solarSystemId":30015692,"solarSystemName":"F:1TI9","location":{"x":3290000000000000000,"y":-552000000000000000,"z":2650000000000000000}},"30015693":{"solarSystemId":30015693,"solarSystemName":"Z:3VI2","location":{"x":2350000000000000000,"y":-1020000000000000000,"z":1810000000000000000}},"30015694":{"solarSystemId":30015694,"solarSystemName":"Z:17KT","location":{"x":2920000000000000000,"y":-569000000000000000,"z":2140000000000000000}},"30015695":{"solarSystemId":30015695,"solarSystemName":"M:3S36","location":{"x":1810000000000000000,"y":-721000000000000000,"z":2860000000000000000}},"30015696":{"solarSystemId":30015696,"solarSystemName":"F:3951","location":{"x":1660000000000000000,"y":-1060000000000000000,"z":2700000000000000000}},"30015697":{"solarSystemId":30015697,"solarSystemName":"M:3TSK","location":{"x":5430000000000000000,"y":-3740000000000000000,"z":5320000000000000000}},"30015698":{"solarSystemId":30015698,"solarSystemName":"U:2OVL","location":{"x":5170000000000000000,"y":-2180000000000000000,"z":6690000000000000000}},"30015699":{"solarSystemId":30015699,"solarSystemName":"H:32IO","location":{"x":3800000000000000000,"y":-2810000000000000000,"z":4510000000000000000}},"30015700":{"solarSystemId":30015700,"solarSystemName":"P:36K8","location":{"x":5590000000000000000,"y":-2890000000000000000,"z":2710000000000000000}},"30015701":{"solarSystemId":30015701,"solarSystemName":"U:23VS","location":{"x":5580000000000000000,"y":-2800000000000000000,"z":2820000000000000000}},"30015702":{"solarSystemId":30015702,"solarSystemName":"B:22T1","location":{"x":3890000000000000000,"y":-2660000000000000000,"z":5620000000000000000}},"30015703":{"solarSystemId":30015703,"solarSystemName":"H:2E5I","location":{"x":3890000000000000000,"y":-2480000000000000000,"z":4800000000000000000}},"30015704":{"solarSystemId":30015704,"solarSystemName":"P:298I","location":{"x":5740000000000000000,"y":-2220000000000000000,"z":4720000000000000000}},"30015705":{"solarSystemId":30015705,"solarSystemName":"F:2OK9","location":{"x":4430000000000000000,"y":-2630000000000000000,"z":3980000000000000000}},"30015706":{"solarSystemId":30015706,"solarSystemName":"Q:3346","location":{"x":8860000000000000000,"y":-2270000000000000000,"z":-2310000000000000000}},"30015707":{"solarSystemId":30015707,"solarSystemName":"Y:1T6S","location":{"x":8940000000000000000,"y":-2150000000000000000,"z":-2600000000000000000}},"30015708":{"solarSystemId":30015708,"solarSystemName":"U:3S9T","location":{"x":8950000000000000000,"y":-1350000000000000000,"z":-2270000000000000000}},"30015709":{"solarSystemId":30015709,"solarSystemName":"B:1ROL","location":{"x":9830000000000000000,"y":-2160000000000000000,"z":-2160000000000000000}},"30015710":{"solarSystemId":30015710,"solarSystemName":"G:1RTN","location":{"x":9070000000000000000,"y":-1480000000000000000,"z":-2360000000000000000}},"30015711":{"solarSystemId":30015711,"solarSystemName":"P:LN60","location":{"x":8680000000000000000,"y":-1490000000000000000,"z":-2560000000000000000}},"30015712":{"solarSystemId":30015712,"solarSystemName":"Q:1V3E","location":{"x":9340000000000000000,"y":-2320000000000000000,"z":-2450000000000000000}},"30015713":{"solarSystemId":30015713,"solarSystemName":"H:2O85","location":{"x":9010000000000000000,"y":-2160000000000000000,"z":-2290000000000000000}},"30015714":{"solarSystemId":30015714,"solarSystemName":"F:IK48","location":{"x":8460000000000000000,"y":-2000000000000000000,"z":-2020000000000000000}},"30015715":{"solarSystemId":30015715,"solarSystemName":"Y:1NTN","location":{"x":9070000000000000000,"y":-2150000000000000000,"z":-2940000000000000000}},"30015716":{"solarSystemId":30015716,"solarSystemName":"Q:2ASL","location":{"x":9310000000000000000,"y":-1690000000000000000,"z":-2030000000000000000}},"30015717":{"solarSystemId":30015717,"solarSystemName":"Q:1521","location":{"x":9560000000000000000,"y":-1880000000000000000,"z":-2820000000000000000}},"30015718":{"solarSystemId":30015718,"solarSystemName":"B:1TO9","location":{"x":9440000000000000000,"y":-1680000000000000000,"z":-1140000000000000000}},"30015719":{"solarSystemId":30015719,"solarSystemName":"Z:4R0E","location":{"x":9240000000000000000,"y":-2730000000000000000,"z":-1290000000000000000}},"30015720":{"solarSystemId":30015720,"solarSystemName":"J:3611","location":{"x":9690000000000000000,"y":-2000000000000000000,"z":-1160000000000000000}},"30015721":{"solarSystemId":30015721,"solarSystemName":"G:1L15","location":{"x":9510000000000000000,"y":-2230000000000000000,"z":-723000000000000000}},"30015722":{"solarSystemId":30015722,"solarSystemName":"Y:1LII","location":{"x":9760000000000000000,"y":-1980000000000000000,"z":-1130000000000000000}},"30015723":{"solarSystemId":30015723,"solarSystemName":"D:27T1","location":{"x":9380000000000000000,"y":-2530000000000000000,"z":-1450000000000000000}},"30015724":{"solarSystemId":30015724,"solarSystemName":"D:2879","location":{"x":9920000000000000000,"y":-1390000000000000000,"z":-1120000000000000000}},"30015725":{"solarSystemId":30015725,"solarSystemName":"G:1IKL","location":{"x":9990000000000000000,"y":-2460000000000000000,"z":-788000000000000000}},"30015726":{"solarSystemId":30015726,"solarSystemName":"F:2620","location":{"x":9040000000000000000,"y":-1490000000000000000,"z":-1080000000000000000}},"30015727":{"solarSystemId":30015727,"solarSystemName":"H:1S6N","location":{"x":9060000000000000000,"y":-2060000000000000000,"z":-717000000000000000}},"30015728":{"solarSystemId":30015728,"solarSystemName":"M:2K13","location":{"x":9620000000000000000,"y":-1700000000000000000,"z":-814000000000000000}},"30015729":{"solarSystemId":30015729,"solarSystemName":"G:2751","location":{"x":9720000000000000000,"y":-2550000000000000000,"z":-781000000000000000}},"30015730":{"solarSystemId":30015730,"solarSystemName":"B:3V22","location":{"x":9090000000000000000,"y":-2820000000000000000,"z":-1370000000000000000}},"30015731":{"solarSystemId":30015731,"solarSystemName":"F:1735","location":{"x":10200000000000000000,"y":-268000000000000000,"z":-3110000000000000000}},"30015732":{"solarSystemId":30015732,"solarSystemName":"M:2OL1","location":{"x":9730000000000000000,"y":245000000000000000,"z":-1450000000000000000}},"30015733":{"solarSystemId":30015733,"solarSystemName":"F:SL5S","location":{"x":9020000000000000000,"y":-511000000000000000,"z":-2150000000000000000}},"30015734":{"solarSystemId":30015734,"solarSystemName":"H:E935","location":{"x":8920000000000000000,"y":-874000000000000000,"z":-2520000000000000000}},"30015735":{"solarSystemId":30015735,"solarSystemName":"H:1I40","location":{"x":9420000000000000000,"y":-863000000000000000,"z":-2760000000000000000}},"30015736":{"solarSystemId":30015736,"solarSystemName":"M:2571","location":{"x":9190000000000000000,"y":-1090000000000000000,"z":-2360000000000000000}},"30015737":{"solarSystemId":30015737,"solarSystemName":"F:1SAN","location":{"x":9290000000000000000,"y":-579000000000000000,"z":-2470000000000000000}},"30015738":{"solarSystemId":30015738,"solarSystemName":"G:488L","location":{"x":9550000000000000000,"y":-683000000000000000,"z":-1910000000000000000}},"30015739":{"solarSystemId":30015739,"solarSystemName":"Z:14T1","location":{"x":9840000000000000000,"y":-509000000000000000,"z":-2290000000000000000}},"30015740":{"solarSystemId":30015740,"solarSystemName":"F:252R","location":{"x":9650000000000000000,"y":-564000000000000000,"z":-2040000000000000000}},"30015741":{"solarSystemId":30015741,"solarSystemName":"Y:330K","location":{"x":10000000000000000000,"y":-710000000000000000,"z":-2780000000000000000}},"30015742":{"solarSystemId":30015742,"solarSystemName":"B:2I4K","location":{"x":9410000000000000000,"y":-90700000000000000,"z":-2410000000000000000}},"30015743":{"solarSystemId":30015743,"solarSystemName":"H:2KKK","location":{"x":8290000000000000000,"y":-488000000000000000,"z":-475000000000000000}},"30015744":{"solarSystemId":30015744,"solarSystemName":"G:2882","location":{"x":9780000000000000000,"y":-558000000000000000,"z":-1260000000000000000}},"30015745":{"solarSystemId":30015745,"solarSystemName":"P:216A","location":{"x":9710000000000000000,"y":-904000000000000000,"z":-1140000000000000000}},"30015746":{"solarSystemId":30015746,"solarSystemName":"F:14SI","location":{"x":8700000000000000000,"y":-849000000000000000,"z":-1530000000000000000}},"30015747":{"solarSystemId":30015747,"solarSystemName":"F:3OK0","location":{"x":8730000000000000000,"y":-637000000000000000,"z":-584000000000000000}},"30015748":{"solarSystemId":30015748,"solarSystemName":"D:3N41","location":{"x":9530000000000000000,"y":-1050000000000000000,"z":-922000000000000000}},"30015749":{"solarSystemId":30015749,"solarSystemName":"Z:2L2K","location":{"x":9000000000000000000,"y":-1390000000000000000,"z":-1470000000000000000}},"30015750":{"solarSystemId":30015750,"solarSystemName":"F:34II","location":{"x":9140000000000000000,"y":-1220000000000000000,"z":-1320000000000000000}},"30015751":{"solarSystemId":30015751,"solarSystemName":"J:2TN6","location":{"x":9420000000000000000,"y":-1180000000000000000,"z":-842000000000000000}},"30015752":{"solarSystemId":30015752,"solarSystemName":"G:2T32","location":{"x":8490000000000000000,"y":-370000000000000000,"z":-1200000000000000000}},"30015753":{"solarSystemId":30015753,"solarSystemName":"Q:31R3","location":{"x":9200000000000000000,"y":-1450000000000000000,"z":-1690000000000000000}},"30015754":{"solarSystemId":30015754,"solarSystemName":"J:15I3","location":{"x":8760000000000000000,"y":-885000000000000000,"z":-1220000000000000000}},"30015755":{"solarSystemId":30015755,"solarSystemName":"P:24O7","location":{"x":9420000000000000000,"y":-490000000000000000,"z":-1070000000000000000}},"30015756":{"solarSystemId":30015756,"solarSystemName":"Y:KON6","location":{"x":10400000000000000000,"y":-893000000000000000,"z":-2060000000000000000}},"30015757":{"solarSystemId":30015757,"solarSystemName":"B:3EI7","location":{"x":10400000000000000000,"y":-1920000000000000000,"z":-2420000000000000000}},"30015758":{"solarSystemId":30015758,"solarSystemName":"Z:26EE","location":{"x":9670000000000000000,"y":-1440000000000000000,"z":-2570000000000000000}},"30015759":{"solarSystemId":30015759,"solarSystemName":"G:3S4A","location":{"x":10100000000000000000,"y":-1210000000000000000,"z":-2910000000000000000}},"30015760":{"solarSystemId":30015760,"solarSystemName":"D:21OL","location":{"x":10200000000000000000,"y":-1290000000000000000,"z":-2230000000000000000}},"30015761":{"solarSystemId":30015761,"solarSystemName":"U:T9LN","location":{"x":9620000000000000000,"y":-1330000000000000000,"z":-2640000000000000000}},"30015762":{"solarSystemId":30015762,"solarSystemName":"P:1S1S","location":{"x":9610000000000000000,"y":-1060000000000000000,"z":-1760000000000000000}},"30015763":{"solarSystemId":30015763,"solarSystemName":"P:1TI0","location":{"x":10000000000000000000,"y":-941000000000000000,"z":-2910000000000000000}},"30015764":{"solarSystemId":30015764,"solarSystemName":"Q:S9V3","location":{"x":9970000000000000000,"y":-1130000000000000000,"z":-2260000000000000000}},"30015765":{"solarSystemId":30015765,"solarSystemName":"F:22I8","location":{"x":9710000000000000000,"y":-1250000000000000000,"z":-2060000000000000000}},"30015766":{"solarSystemId":30015766,"solarSystemName":"M:1AI2","location":{"x":9270000000000000000,"y":-1490000000000000000,"z":-1940000000000000000}},"30015767":{"solarSystemId":30015767,"solarSystemName":"G:3T24","location":{"x":9640000000000000000,"y":-1530000000000000000,"z":-2630000000000000000}},"30015768":{"solarSystemId":30015768,"solarSystemName":"Q:31VE","location":{"x":8240000000000000000,"y":-727000000000000000,"z":-2450000000000000000}},"30015769":{"solarSystemId":30015769,"solarSystemName":"J:2IT5","location":{"x":8530000000000000000,"y":-1200000000000000000,"z":-2300000000000000000}},"30015770":{"solarSystemId":30015770,"solarSystemName":"H:T895","location":{"x":8330000000000000000,"y":-772000000000000000,"z":-2220000000000000000}},"30015771":{"solarSystemId":30015771,"solarSystemName":"M:L497","location":{"x":7970000000000000000,"y":-470000000000000000,"z":-2620000000000000000}},"30015772":{"solarSystemId":30015772,"solarSystemName":"P:3R32","location":{"x":8740000000000000000,"y":-642000000000000000,"z":-2420000000000000000}},"30015773":{"solarSystemId":30015773,"solarSystemName":"J:3SEA","location":{"x":8540000000000000000,"y":-989000000000000000,"z":-2280000000000000000}},"30015774":{"solarSystemId":30015774,"solarSystemName":"P:2E27","location":{"x":8540000000000000000,"y":-1060000000000000000,"z":-2030000000000000000}},"30015775":{"solarSystemId":30015775,"solarSystemName":"H:1RR7","location":{"x":8400000000000000000,"y":-1080000000000000000,"z":-2570000000000000000}},"30015776":{"solarSystemId":30015776,"solarSystemName":"H:3T2O","location":{"x":8910000000000000000,"y":-856000000000000000,"z":-1950000000000000000}},"30015777":{"solarSystemId":30015777,"solarSystemName":"M:2314","location":{"x":7940000000000000000,"y":-929000000000000000,"z":-2050000000000000000}},"30015778":{"solarSystemId":30015778,"solarSystemName":"D:1EVV","location":{"x":8560000000000000000,"y":-246000000000000000,"z":-2320000000000000000}},"30015779":{"solarSystemId":30015779,"solarSystemName":"G:1O1L","location":{"x":8320000000000000000,"y":-303000000000000000,"z":-1940000000000000000}},"30015780":{"solarSystemId":30015780,"solarSystemName":"J:2303","location":{"x":8070000000000000000,"y":-736000000000000000,"z":-2050000000000000000}},"30015781":{"solarSystemId":30015781,"solarSystemName":"Z:1S5V","location":{"x":9800000000000000000,"y":-1520000000000000000,"z":-3270000000000000000}},"30015782":{"solarSystemId":30015782,"solarSystemName":"Q:1433","location":{"x":11100000000000000000,"y":-612000000000000000,"z":-4460000000000000000}},"30015783":{"solarSystemId":30015783,"solarSystemName":"D:SVL7","location":{"x":10800000000000000000,"y":-1270000000000000000,"z":-3040000000000000000}},"30015784":{"solarSystemId":30015784,"solarSystemName":"F:2L4N","location":{"x":10600000000000000000,"y":36800000000000000,"z":-4350000000000000000}},"30015785":{"solarSystemId":30015785,"solarSystemName":"B:2LEV","location":{"x":9870000000000000000,"y":-1640000000000000000,"z":-3100000000000000000}},"30015786":{"solarSystemId":30015786,"solarSystemName":"Y:32TT","location":{"x":11000000000000000000,"y":-1490000000000000000,"z":-2100000000000000000}},"30015787":{"solarSystemId":30015787,"solarSystemName":"J:164V","location":{"x":11500000000000000000,"y":-935000000000000000,"z":-4200000000000000000}},"30015788":{"solarSystemId":30015788,"solarSystemName":"Y:3TIR","location":{"x":10900000000000000000,"y":-1150000000000000000,"z":-3380000000000000000}},"30015789":{"solarSystemId":30015789,"solarSystemName":"F:3STE","location":{"x":10600000000000000000,"y":-881000000000000000,"z":-3840000000000000000}},"30015790":{"solarSystemId":30015790,"solarSystemName":"F:1L4V","location":{"x":10400000000000000000,"y":-590000000000000000,"z":-3040000000000000000}},"30015791":{"solarSystemId":30015791,"solarSystemName":"Q:3S3T","location":{"x":11000000000000000000,"y":-1430000000000000000,"z":-2350000000000000000}},"30015792":{"solarSystemId":30015792,"solarSystemName":"Z:1R9A","location":{"x":9590000000000000000,"y":-1910000000000000000,"z":-3450000000000000000}},"30015793":{"solarSystemId":30015793,"solarSystemName":"Y:132N","location":{"x":9800000000000000000,"y":-1430000000000000000,"z":-4260000000000000000}},"30015794":{"solarSystemId":30015794,"solarSystemName":"B:I57L","location":{"x":10200000000000000000,"y":-995000000000000000,"z":-4260000000000000000}},"30015795":{"solarSystemId":30015795,"solarSystemName":"H:39SL","location":{"x":10000000000000000000,"y":-1380000000000000000,"z":-3870000000000000000}},"30015796":{"solarSystemId":30015796,"solarSystemName":"Q:335O","location":{"x":8300000000000000000,"y":-1800000000000000000,"z":-108000000000000000}},"30015797":{"solarSystemId":30015797,"solarSystemName":"Q:3I2L","location":{"x":8640000000000000000,"y":-1310000000000000000,"z":-1460000000000000000}},"30015798":{"solarSystemId":30015798,"solarSystemName":"G:1OVR","location":{"x":7290000000000000000,"y":-1410000000000000000,"z":-1440000000000000000}},"30015799":{"solarSystemId":30015799,"solarSystemName":"Z:V55O","location":{"x":7300000000000000000,"y":-1350000000000000000,"z":-1220000000000000000}},"30015800":{"solarSystemId":30015800,"solarSystemName":"G:2165","location":{"x":8540000000000000000,"y":-1080000000000000000,"z":-1510000000000000000}},"30015801":{"solarSystemId":30015801,"solarSystemName":"P:3441","location":{"x":9020000000000000000,"y":-1640000000000000000,"z":-801000000000000000}},"30015802":{"solarSystemId":30015802,"solarSystemName":"U:2T92","location":{"x":8840000000000000000,"y":-1540000000000000000,"z":-347000000000000000}},"30015803":{"solarSystemId":30015803,"solarSystemName":"H:2VT0","location":{"x":7480000000000000000,"y":-1460000000000000000,"z":-1320000000000000000}},"30015804":{"solarSystemId":30015804,"solarSystemName":"M:1LN9","location":{"x":7810000000000000000,"y":-1770000000000000000,"z":-784000000000000000}},"30015805":{"solarSystemId":30015805,"solarSystemName":"Q:352S","location":{"x":8130000000000000000,"y":-1630000000000000000,"z":-861000000000000000}},"30015806":{"solarSystemId":30015806,"solarSystemName":"Y:2O19","location":{"x":8550000000000000000,"y":-1890000000000000000,"z":-1550000000000000000}},"30015807":{"solarSystemId":30015807,"solarSystemName":"D:271T","location":{"x":7800000000000000000,"y":-1520000000000000000,"z":-159000000000000000}},"30015808":{"solarSystemId":30015808,"solarSystemName":"B:LNIK","location":{"x":7810000000000000000,"y":-1930000000000000000,"z":-13000000000000000}},"30015809":{"solarSystemId":30015809,"solarSystemName":"Z:1N46","location":{"x":8560000000000000000,"y":-1470000000000000000,"z":-2780000000000000000}},"30015810":{"solarSystemId":30015810,"solarSystemName":"U:1T0I","location":{"x":9120000000000000000,"y":-1120000000000000000,"z":-2870000000000000000}},"30015811":{"solarSystemId":30015811,"solarSystemName":"F:IL5L","location":{"x":8340000000000000000,"y":-1510000000000000000,"z":-2490000000000000000}},"30015812":{"solarSystemId":30015812,"solarSystemName":"Y:189L","location":{"x":9380000000000000000,"y":-1400000000000000000,"z":-3460000000000000000}},"30015813":{"solarSystemId":30015813,"solarSystemName":"M:3S43","location":{"x":9020000000000000000,"y":-1090000000000000000,"z":-2820000000000000000}},"30015814":{"solarSystemId":30015814,"solarSystemName":"P:NA3K","location":{"x":8490000000000000000,"y":-199000000000000000,"z":-3090000000000000000}},"30015815":{"solarSystemId":30015815,"solarSystemName":"B:2T4L","location":{"x":8020000000000000000,"y":-663000000000000000,"z":-3300000000000000000}},"30015816":{"solarSystemId":30015816,"solarSystemName":"H:1L82","location":{"x":8790000000000000000,"y":-1140000000000000000,"z":-2840000000000000000}},"30015817":{"solarSystemId":30015817,"solarSystemName":"D:1VK4","location":{"x":8470000000000000000,"y":-174000000000000000,"z":-3210000000000000000}},"30015818":{"solarSystemId":30015818,"solarSystemName":"U:3R9S","location":{"x":8300000000000000000,"y":-1370000000000000000,"z":-3300000000000000000}},"30015819":{"solarSystemId":30015819,"solarSystemName":"J:S3AL","location":{"x":9270000000000000000,"y":-1420000000000000000,"z":-3360000000000000000}},"30015820":{"solarSystemId":30015820,"solarSystemName":"Y:2723","location":{"x":8390000000000000000,"y":-813000000000000000,"z":-3340000000000000000}},"30015821":{"solarSystemId":30015821,"solarSystemName":"Z:3O41","location":{"x":3450000000000000000,"y":-1400000000000000000,"z":6800000000000000000}},"30015822":{"solarSystemId":30015822,"solarSystemName":"M:1IS3","location":{"x":4030000000000000000,"y":-842000000000000000,"z":5600000000000000000}},"30015823":{"solarSystemId":30015823,"solarSystemName":"B:1S2I","location":{"x":4130000000000000000,"y":-1590000000000000000,"z":5750000000000000000}},"30015824":{"solarSystemId":30015824,"solarSystemName":"J:1E7T","location":{"x":4820000000000000000,"y":-1090000000000000000,"z":7410000000000000000}},"30015825":{"solarSystemId":30015825,"solarSystemName":"H:2NEL","location":{"x":4210000000000000000,"y":-1090000000000000000,"z":6260000000000000000}},"30015826":{"solarSystemId":30015826,"solarSystemName":"F:179O","location":{"x":4130000000000000000,"y":-820000000000000000,"z":6400000000000000000}},"30015827":{"solarSystemId":30015827,"solarSystemName":"F:L54S","location":{"x":3600000000000000000,"y":-1680000000000000000,"z":6530000000000000000}},"30015828":{"solarSystemId":30015828,"solarSystemName":"B:3878","location":{"x":5050000000000000000,"y":-1500000000000000000,"z":6360000000000000000}},"30015829":{"solarSystemId":30015829,"solarSystemName":"M:3A0E","location":{"x":4270000000000000000,"y":-1350000000000000000,"z":5670000000000000000}},"30015830":{"solarSystemId":30015830,"solarSystemName":"M:4230","location":{"x":4200000000000000000,"y":-996000000000000000,"z":5760000000000000000}},"30015831":{"solarSystemId":30015831,"solarSystemName":"G:1NIE","location":{"x":4340000000000000000,"y":-1000000000000000000,"z":7360000000000000000}},"30015832":{"solarSystemId":30015832,"solarSystemName":"D:1V3A","location":{"x":4640000000000000000,"y":-1560000000000000000,"z":6720000000000000000}},"30015833":{"solarSystemId":30015833,"solarSystemName":"B:3A38","location":{"x":3900000000000000000,"y":-1990000000000000000,"z":6300000000000000000}},"30015834":{"solarSystemId":30015834,"solarSystemName":"J:2072","location":{"x":4680000000000000000,"y":-943000000000000000,"z":6830000000000000000}},"30015835":{"solarSystemId":30015835,"solarSystemName":"Y:2RLT","location":{"x":4080000000000000000,"y":-3390000000000000000,"z":10200000000000000000}},"30015836":{"solarSystemId":30015836,"solarSystemName":"Y:337O","location":{"x":5020000000000000000,"y":-4070000000000000000,"z":10400000000000000000}},"30015837":{"solarSystemId":30015837,"solarSystemName":"Y:262N","location":{"x":6800000000000000000,"y":-1420000000000000000,"z":10600000000000000000}},"30015838":{"solarSystemId":30015838,"solarSystemName":"H:2RI1","location":{"x":6450000000000000000,"y":-577000000000000000,"z":10200000000000000000}},"30015839":{"solarSystemId":30015839,"solarSystemName":"M:1ONL","location":{"x":6890000000000000000,"y":-110000000000000000,"z":8700000000000000000}},"30015840":{"solarSystemId":30015840,"solarSystemName":"J:3I8R","location":{"x":5660000000000000000,"y":-992000000000000000,"z":8130000000000000000}},"30015841":{"solarSystemId":30015841,"solarSystemName":"J:2ATE","location":{"x":4820000000000000000,"y":-3390000000000000000,"z":10400000000000000000}},"30015842":{"solarSystemId":30015842,"solarSystemName":"Z:V1IT","location":{"x":5060000000000000000,"y":-1520000000000000000,"z":7160000000000000000}},"30015843":{"solarSystemId":30015843,"solarSystemName":"D:OV0N","location":{"x":6680000000000000000,"y":-635000000000000000,"z":10800000000000000000}},"30015844":{"solarSystemId":30015844,"solarSystemName":"B:3NA3","location":{"x":7070000000000000000,"y":-148000000000000000,"z":7420000000000000000}},"30015845":{"solarSystemId":30015845,"solarSystemName":"D:11II","location":{"x":6490000000000000000,"y":-1160000000000000000,"z":9950000000000000000}},"30015846":{"solarSystemId":30015846,"solarSystemName":"M:1I43","location":{"x":6190000000000000000,"y":-4100000000000000,"z":7850000000000000000}},"30015847":{"solarSystemId":30015847,"solarSystemName":"F:258N","location":{"x":5320000000000000000,"y":-1440000000000000000,"z":7470000000000000000}},"30015848":{"solarSystemId":30015848,"solarSystemName":"P:271V","location":{"x":7320000000000000000,"y":-365000000000000000,"z":10100000000000000000}},"30015849":{"solarSystemId":30015849,"solarSystemName":"H:3TEI","location":{"x":2650000000000000000,"y":-1230000000000000000,"z":7410000000000000000}},"30015850":{"solarSystemId":30015850,"solarSystemName":"F:3R04","location":{"x":3010000000000000000,"y":-834000000000000000,"z":7540000000000000000}},"30015851":{"solarSystemId":30015851,"solarSystemName":"J:3SAV","location":{"x":2740000000000000000,"y":-2010000000000000000,"z":7110000000000000000}},"30015852":{"solarSystemId":30015852,"solarSystemName":"M:3AKT","location":{"x":2540000000000000000,"y":-824000000000000000,"z":7500000000000000000}},"30015853":{"solarSystemId":30015853,"solarSystemName":"M:252O","location":{"x":3300000000000000000,"y":-1260000000000000000,"z":7380000000000000000}},"30015854":{"solarSystemId":30015854,"solarSystemName":"J:364A","location":{"x":2440000000000000000,"y":-1090000000000000000,"z":7710000000000000000}},"30015855":{"solarSystemId":30015855,"solarSystemName":"Q:3OT6","location":{"x":3170000000000000000,"y":-1070000000000000000,"z":7440000000000000000}},"30015856":{"solarSystemId":30015856,"solarSystemName":"B:2043","location":{"x":2630000000000000000,"y":-1130000000000000000,"z":7630000000000000000}},"30015857":{"solarSystemId":30015857,"solarSystemName":"Z:3ESL","location":{"x":2740000000000000000,"y":-1330000000000000000,"z":7600000000000000000}},"30015858":{"solarSystemId":30015858,"solarSystemName":"U:1TAV","location":{"x":3610000000000000000,"y":-1540000000000000000,"z":7780000000000000000}},"30015859":{"solarSystemId":30015859,"solarSystemName":"F:285V","location":{"x":2930000000000000000,"y":-1570000000000000000,"z":7360000000000000000}},"30015860":{"solarSystemId":30015860,"solarSystemName":"Q:273R","location":{"x":3070000000000000000,"y":-1140000000000000000,"z":7330000000000000000}},"30015861":{"solarSystemId":30015861,"solarSystemName":"G:R115","location":{"x":3040000000000000000,"y":-1220000000000000000,"z":8280000000000000000}},"30015862":{"solarSystemId":30015862,"solarSystemName":"G:1V82","location":{"x":3290000000000000000,"y":-1260000000000000000,"z":7990000000000000000}},"30015863":{"solarSystemId":30015863,"solarSystemName":"D:2TKO","location":{"x":3960000000000000000,"y":54500000000000000,"z":8970000000000000000}},"30015864":{"solarSystemId":30015864,"solarSystemName":"H:2O35","location":{"x":3040000000000000000,"y":-180000000000000000,"z":8140000000000000000}},"30015865":{"solarSystemId":30015865,"solarSystemName":"H:1A51","location":{"x":5010000000000000000,"y":318000000000000000,"z":8220000000000000000}},"30015866":{"solarSystemId":30015866,"solarSystemName":"M:1124","location":{"x":3850000000000000000,"y":725000000000000000,"z":9150000000000000000}},"30015867":{"solarSystemId":30015867,"solarSystemName":"Q:2OET","location":{"x":4170000000000000000,"y":288000000000000000,"z":8820000000000000000}},"30015868":{"solarSystemId":30015868,"solarSystemName":"M:V4A2","location":{"x":4240000000000000000,"y":369000000000000000,"z":8860000000000000000}},"30015869":{"solarSystemId":30015869,"solarSystemName":"H:2K30","location":{"x":4650000000000000000,"y":124000000000000000,"z":7260000000000000000}},"30015870":{"solarSystemId":30015870,"solarSystemName":"G:1IE8","location":{"x":4940000000000000000,"y":-654000000000000000,"z":7670000000000000000}},"30015871":{"solarSystemId":30015871,"solarSystemName":"Z:O9NA","location":{"x":4710000000000000000,"y":197000000000000000,"z":7870000000000000000}},"30015872":{"solarSystemId":30015872,"solarSystemName":"M:180E","location":{"x":4260000000000000000,"y":199000000000000000,"z":8650000000000000000}},"30015873":{"solarSystemId":30015873,"solarSystemName":"Q:1NRI","location":{"x":2670000000000000000,"y":-48500000000000000,"z":8000000000000000000}},"30015874":{"solarSystemId":30015874,"solarSystemName":"Z:S4EV","location":{"x":3570000000000000000,"y":82000000000000000,"z":8580000000000000000}},"30015875":{"solarSystemId":30015875,"solarSystemName":"Z:356O","location":{"x":1460000000000000000,"y":-1150000000000000000,"z":5600000000000000000}},"30015876":{"solarSystemId":30015876,"solarSystemName":"M:2S44","location":{"x":2030000000000000000,"y":1030000000000000000,"z":6600000000000000000}},"30015877":{"solarSystemId":30015877,"solarSystemName":"Y:1T5N","location":{"x":1990000000000000000,"y":-529000000000000000,"z":5710000000000000000}},"30015878":{"solarSystemId":30015878,"solarSystemName":"Z:47L4","location":{"x":2310000000000000000,"y":-779000000000000000,"z":5930000000000000000}},"30015879":{"solarSystemId":30015879,"solarSystemName":"H:349N","location":{"x":2210000000000000000,"y":-67500000000000000,"z":5720000000000000000}},"30015880":{"solarSystemId":30015880,"solarSystemName":"P:1TAI","location":{"x":2440000000000000000,"y":779000000000000000,"z":6090000000000000000}},"30015881":{"solarSystemId":30015881,"solarSystemName":"F:44NA","location":{"x":1980000000000000000,"y":-443000000000000000,"z":6150000000000000000}},"30015882":{"solarSystemId":30015882,"solarSystemName":"Y:21A9","location":{"x":2750000000000000000,"y":-143000000000000000,"z":5390000000000000000}},"30015883":{"solarSystemId":30015883,"solarSystemName":"J:33IV","location":{"x":3010000000000000000,"y":-293000000000000000,"z":5580000000000000000}},"30015884":{"solarSystemId":30015884,"solarSystemName":"J:31S6","location":{"x":2110000000000000000,"y":-324000000000000000,"z":5320000000000000000}},"30015885":{"solarSystemId":30015885,"solarSystemName":"J:2EN1","location":{"x":2600000000000000000,"y":982000000000000000,"z":6680000000000000000}},"30015886":{"solarSystemId":30015886,"solarSystemName":"B:3681","location":{"x":2080000000000000000,"y":-1210000000000000000,"z":5560000000000000000}},"30015887":{"solarSystemId":30015887,"solarSystemName":"G:IALT","location":{"x":1800000000000000000,"y":-1170000000000000000,"z":5610000000000000000}},"30015888":{"solarSystemId":30015888,"solarSystemName":"Q:19OO","location":{"x":2450000000000000000,"y":238000000000000000,"z":6290000000000000000}},"30015889":{"solarSystemId":30015889,"solarSystemName":"G:ESA9","location":{"x":3180000000000000000,"y":-245000000000000000,"z":4900000000000000000}},"30015890":{"solarSystemId":30015890,"solarSystemName":"Z:28OT","location":{"x":2490000000000000000,"y":-6250000000000000,"z":6140000000000000000}},"30015891":{"solarSystemId":30015891,"solarSystemName":"Q:2K9L","location":{"x":3240000000000000000,"y":528000000000000000,"z":7220000000000000000}},"30015892":{"solarSystemId":30015892,"solarSystemName":"H:4O6L","location":{"x":3090000000000000000,"y":-559000000000000000,"z":6320000000000000000}},"30015893":{"solarSystemId":30015893,"solarSystemName":"Y:41IV","location":{"x":2590000000000000000,"y":327000000000000000,"z":6660000000000000000}},"30015894":{"solarSystemId":30015894,"solarSystemName":"J:279L","location":{"x":2460000000000000000,"y":154000000000000000,"z":6910000000000000000}},"30015895":{"solarSystemId":30015895,"solarSystemName":"Y:4SK6","location":{"x":2490000000000000000,"y":115000000000000000,"z":7080000000000000000}},"30015896":{"solarSystemId":30015896,"solarSystemName":"G:1I65","location":{"x":3330000000000000000,"y":-899000000000000000,"z":6270000000000000000}},"30015897":{"solarSystemId":30015897,"solarSystemName":"M:2A96","location":{"x":3320000000000000000,"y":-671000000000000000,"z":7180000000000000000}},"30015898":{"solarSystemId":30015898,"solarSystemName":"U:3678","location":{"x":4100000000000000000,"y":-562000000000000000,"z":6420000000000000000}},"30015899":{"solarSystemId":30015899,"solarSystemName":"Q:2R4N","location":{"x":3380000000000000000,"y":-784000000000000000,"z":7250000000000000000}},"30015900":{"solarSystemId":30015900,"solarSystemName":"M:22RA","location":{"x":3310000000000000000,"y":-125000000000000000,"z":6690000000000000000}},"30015901":{"solarSystemId":30015901,"solarSystemName":"F:1KI4","location":{"x":2790000000000000000,"y":266000000000000000,"z":6370000000000000000}},"30015902":{"solarSystemId":30015902,"solarSystemName":"B:3V1K","location":{"x":3820000000000000000,"y":-433000000000000000,"z":6420000000000000000}},"30015903":{"solarSystemId":30015903,"solarSystemName":"U:3T2R","location":{"x":3580000000000000000,"y":-408000000000000000,"z":7020000000000000000}},"30015904":{"solarSystemId":30015904,"solarSystemName":"M:3281","location":{"x":3160000000000000000,"y":-1550000000000000000,"z":6010000000000000000}},"30015905":{"solarSystemId":30015905,"solarSystemName":"P:2242","location":{"x":3360000000000000000,"y":-1620000000000000000,"z":5890000000000000000}},"30015906":{"solarSystemId":30015906,"solarSystemName":"Q:2R77","location":{"x":3520000000000000000,"y":-1100000000000000000,"z":6080000000000000000}},"30015907":{"solarSystemId":30015907,"solarSystemName":"M:19LA","location":{"x":3700000000000000000,"y":-1370000000000000000,"z":6150000000000000000}},"30015908":{"solarSystemId":30015908,"solarSystemName":"Y:42N8","location":{"x":3070000000000000000,"y":-1630000000000000000,"z":6240000000000000000}},"30015909":{"solarSystemId":30015909,"solarSystemName":"M:28SR","location":{"x":3160000000000000000,"y":-1510000000000000000,"z":5650000000000000000}},"30015910":{"solarSystemId":30015910,"solarSystemName":"H:3VNI","location":{"x":3350000000000000000,"y":-1300000000000000000,"z":6450000000000000000}},"30015911":{"solarSystemId":30015911,"solarSystemName":"D:1O69","location":{"x":3110000000000000000,"y":-1140000000000000000,"z":5990000000000000000}},"30015912":{"solarSystemId":30015912,"solarSystemName":"M:1LLA","location":{"x":3430000000000000000,"y":-1390000000000000000,"z":5500000000000000000}},"30015913":{"solarSystemId":30015913,"solarSystemName":"G:3RA3","location":{"x":2570000000000000000,"y":-1540000000000000000,"z":6150000000000000000}},"30015914":{"solarSystemId":30015914,"solarSystemName":"G:2RK0","location":{"x":3290000000000000000,"y":-1130000000000000000,"z":5830000000000000000}},"30015915":{"solarSystemId":30015915,"solarSystemName":"B:349R","location":{"x":2660000000000000000,"y":-1400000000000000000,"z":5870000000000000000}},"30015916":{"solarSystemId":30015916,"solarSystemName":"M:223O","location":{"x":2920000000000000000,"y":-1890000000000000000,"z":6380000000000000000}},"30015917":{"solarSystemId":30015917,"solarSystemName":"M:1AI1","location":{"x":3140000000000000000,"y":-1630000000000000000,"z":5770000000000000000}},"30015918":{"solarSystemId":30015918,"solarSystemName":"B:24OA","location":{"x":3150000000000000000,"y":-1100000000000000000,"z":6400000000000000000}},"30015919":{"solarSystemId":30015919,"solarSystemName":"J:3TOL","location":{"x":3950000000000000000,"y":1050000000000000000,"z":6360000000000000000}},"30015920":{"solarSystemId":30015920,"solarSystemName":"J:2IVN","location":{"x":4800000000000000000,"y":661000000000000000,"z":6450000000000000000}},"30015921":{"solarSystemId":30015921,"solarSystemName":"M:1R6E","location":{"x":3030000000000000000,"y":193000000000000000,"z":5420000000000000000}},"30015922":{"solarSystemId":30015922,"solarSystemName":"D:3N9N","location":{"x":3390000000000000000,"y":-282000000000000000,"z":5300000000000000000}},"30015923":{"solarSystemId":30015923,"solarSystemName":"M:2A0I","location":{"x":3740000000000000000,"y":1840000000000000000,"z":5770000000000000000}},"30015924":{"solarSystemId":30015924,"solarSystemName":"D:36S8","location":{"x":3970000000000000000,"y":1060000000000000000,"z":5780000000000000000}},"30015925":{"solarSystemId":30015925,"solarSystemName":"D:2AI9","location":{"x":4380000000000000000,"y":269000000000000000,"z":5040000000000000000}},"30015926":{"solarSystemId":30015926,"solarSystemName":"G:16N1","location":{"x":3600000000000000000,"y":-429000000000000000,"z":5420000000000000000}},"30015927":{"solarSystemId":30015927,"solarSystemName":"D:12R1","location":{"x":4050000000000000000,"y":21000000000000000,"z":4810000000000000000}},"30015928":{"solarSystemId":30015928,"solarSystemName":"M:E181","location":{"x":3480000000000000000,"y":446000000000000000,"z":5140000000000000000}},"30015929":{"solarSystemId":30015929,"solarSystemName":"M:13K2","location":{"x":4390000000000000000,"y":122000000000000000,"z":6910000000000000000}},"30015930":{"solarSystemId":30015930,"solarSystemName":"Z:1E9N","location":{"x":2320000000000000000,"y":-1410000000000000000,"z":5820000000000000000}},"30015931":{"solarSystemId":30015931,"solarSystemName":"B:207O","location":{"x":2640000000000000000,"y":-1330000000000000000,"z":6610000000000000000}},"30015932":{"solarSystemId":30015932,"solarSystemName":"U:1K75","location":{"x":2040000000000000000,"y":-1410000000000000000,"z":6360000000000000000}},"30015933":{"solarSystemId":30015933,"solarSystemName":"Q:1V0V","location":{"x":1750000000000000000,"y":-818000000000000000,"z":5990000000000000000}},"30015934":{"solarSystemId":30015934,"solarSystemName":"Q:257E","location":{"x":1870000000000000000,"y":-710000000000000000,"z":6650000000000000000}},"30015935":{"solarSystemId":30015935,"solarSystemName":"Z:278R","location":{"x":1640000000000000000,"y":-1570000000000000000,"z":6560000000000000000}},"30015936":{"solarSystemId":30015936,"solarSystemName":"M:2008","location":{"x":1700000000000000000,"y":-1690000000000000000,"z":6000000000000000000}},"30015937":{"solarSystemId":30015937,"solarSystemName":"H:I36A","location":{"x":2520000000000000000,"y":-1050000000000000000,"z":6350000000000000000}},"30015938":{"solarSystemId":30015938,"solarSystemName":"F:1N77","location":{"x":1400000000000000000,"y":-1160000000000000000,"z":6210000000000000000}},"30015939":{"solarSystemId":30015939,"solarSystemName":"B:11T0","location":{"x":2010000000000000000,"y":-1180000000000000000,"z":5600000000000000000}},"30015940":{"solarSystemId":30015940,"solarSystemName":"D:1S92","location":{"x":1490000000000000000,"y":-1350000000000000000,"z":6440000000000000000}},"30015941":{"solarSystemId":30015941,"solarSystemName":"Y:3R8S","location":{"x":2190000000000000000,"y":-954000000000000000,"z":6360000000000000000}},"30015942":{"solarSystemId":30015942,"solarSystemName":"F:IRV0","location":{"x":2250000000000000000,"y":-1180000000000000000,"z":6330000000000000000}},"30015943":{"solarSystemId":30015943,"solarSystemName":"F:1S4V","location":{"x":1600000000000000000,"y":-963000000000000000,"z":6620000000000000000}},"30015944":{"solarSystemId":30015944,"solarSystemName":"H:36NV","location":{"x":8830000000000000000,"y":-1300000000000000000,"z":-7920000000000000000}},"30015945":{"solarSystemId":30015945,"solarSystemName":"B:1TIT","location":{"x":9750000000000000000,"y":-1130000000000000000,"z":-8320000000000000000}},"30015946":{"solarSystemId":30015946,"solarSystemName":"B:29A5","location":{"x":10500000000000000000,"y":-1050000000000000000,"z":-9140000000000000000}},"30015947":{"solarSystemId":30015947,"solarSystemName":"U:1KS8","location":{"x":8690000000000000000,"y":-1290000000000000000,"z":-7740000000000000000}},"30015948":{"solarSystemId":30015948,"solarSystemName":"Q:1OOA","location":{"x":10800000000000000000,"y":-1330000000000000000,"z":-8750000000000000000}},"30015949":{"solarSystemId":30015949,"solarSystemName":"J:27EE","location":{"x":10200000000000000000,"y":-550000000000000000,"z":-8090000000000000000}},"30015950":{"solarSystemId":30015950,"solarSystemName":"M:2OKR","location":{"x":9870000000000000000,"y":-1030000000000000000,"z":-8190000000000000000}},"30015951":{"solarSystemId":30015951,"solarSystemName":"P:184R","location":{"x":8420000000000000000,"y":-1530000000000000000,"z":-8640000000000000000}},"30015952":{"solarSystemId":30015952,"solarSystemName":"Q:STL9","location":{"x":8980000000000000000,"y":-1330000000000000000,"z":-8050000000000000000}},"30015953":{"solarSystemId":30015953,"solarSystemName":"Q:VEN6","location":{"x":8550000000000000000,"y":-1250000000000000000,"z":-8940000000000000000}},"30015954":{"solarSystemId":30015954,"solarSystemName":"M:33V1","location":{"x":8020000000000000000,"y":41200000000000000,"z":-7000000000000000000}},"30015955":{"solarSystemId":30015955,"solarSystemName":"F:1IAI","location":{"x":7470000000000000000,"y":5380000000000000,"z":-7230000000000000000}},"30015956":{"solarSystemId":30015956,"solarSystemName":"Q:24OV","location":{"x":7930000000000000000,"y":-217000000000000000,"z":-7210000000000000000}},"30015957":{"solarSystemId":30015957,"solarSystemName":"M:277K","location":{"x":7090000000000000000,"y":-47100000000000000,"z":-7110000000000000000}},"30015958":{"solarSystemId":30015958,"solarSystemName":"H:2852","location":{"x":7690000000000000000,"y":247000000000000000,"z":-8410000000000000000}},"30015959":{"solarSystemId":30015959,"solarSystemName":"G:3SES","location":{"x":8710000000000000000,"y":-92100000000000000,"z":-6860000000000000000}},"30015960":{"solarSystemId":30015960,"solarSystemName":"Q:VI6V","location":{"x":8110000000000000000,"y":-790000000000000000,"z":-7430000000000000000}},"30015961":{"solarSystemId":30015961,"solarSystemName":"P:1AEI","location":{"x":7940000000000000000,"y":-392000000000000000,"z":-7890000000000000000}},"30015962":{"solarSystemId":30015962,"solarSystemName":"H:1KRE","location":{"x":8530000000000000000,"y":-338000000000000000,"z":-7150000000000000000}},"30015963":{"solarSystemId":30015963,"solarSystemName":"Y:20I8","location":{"x":8350000000000000000,"y":-16900000000000000,"z":-8120000000000000000}},"30015964":{"solarSystemId":30015964,"solarSystemName":"G:207S","location":{"x":8330000000000000000,"y":-508000000000000000,"z":-7320000000000000000}},"30015965":{"solarSystemId":30015965,"solarSystemName":"P:254R","location":{"x":7720000000000000000,"y":-705000000000000000,"z":-7810000000000000000}},"30015966":{"solarSystemId":30015966,"solarSystemName":"B:1V5R","location":{"x":7420000000000000000,"y":-9630000000000000,"z":-7260000000000000000}},"30015967":{"solarSystemId":30015967,"solarSystemName":"M:267S","location":{"x":7910000000000000000,"y":-494000000000000000,"z":-8750000000000000000}},"30015968":{"solarSystemId":30015968,"solarSystemName":"G:1ASN","location":{"x":7210000000000000000,"y":-189000000000000000,"z":-7680000000000000000}},"30015969":{"solarSystemId":30015969,"solarSystemName":"G:1I62","location":{"x":7630000000000000000,"y":-528000000000000000,"z":-7060000000000000000}},"30015970":{"solarSystemId":30015970,"solarSystemName":"F:3021","location":{"x":9700000000000000000,"y":-923000000000000000,"z":-6830000000000000000}},"30015971":{"solarSystemId":30015971,"solarSystemName":"P:38VN","location":{"x":9980000000000000000,"y":-780000000000000000,"z":-7650000000000000000}},"30015972":{"solarSystemId":30015972,"solarSystemName":"H:20TT","location":{"x":9460000000000000000,"y":-1850000000000000000,"z":-7580000000000000000}},"30015973":{"solarSystemId":30015973,"solarSystemName":"U:13O3","location":{"x":9300000000000000000,"y":-1010000000000000000,"z":-6770000000000000000}},"30015974":{"solarSystemId":30015974,"solarSystemName":"B:VAK8","location":{"x":9560000000000000000,"y":-1410000000000000000,"z":-7130000000000000000}},"30015975":{"solarSystemId":30015975,"solarSystemName":"D:2L48","location":{"x":8860000000000000000,"y":-851000000000000000,"z":-7780000000000000000}},"30015976":{"solarSystemId":30015976,"solarSystemName":"D:1NAR","location":{"x":9650000000000000000,"y":-1560000000000000000,"z":-6800000000000000000}},"30015977":{"solarSystemId":30015977,"solarSystemName":"Z:39S7","location":{"x":9050000000000000000,"y":-470000000000000000,"z":-6750000000000000000}},"30015978":{"solarSystemId":30015978,"solarSystemName":"J:1O4E","location":{"x":9410000000000000000,"y":-1710000000000000000,"z":-7190000000000000000}},"30015979":{"solarSystemId":30015979,"solarSystemName":"Q:39SA","location":{"x":9360000000000000000,"y":-1110000000000000000,"z":-7260000000000000000}},"30015980":{"solarSystemId":30015980,"solarSystemName":"H:3I3V","location":{"x":8740000000000000000,"y":-1080000000000000000,"z":-7590000000000000000}},"30015981":{"solarSystemId":30015981,"solarSystemName":"D:3STA","location":{"x":8980000000000000000,"y":-691000000000000000,"z":-6850000000000000000}},"30015982":{"solarSystemId":30015982,"solarSystemName":"G:1SR1","location":{"x":8860000000000000000,"y":-154000000000000000,"z":-6600000000000000000}},"30015983":{"solarSystemId":30015983,"solarSystemName":"F:1E59","location":{"x":7640000000000000000,"y":-750000000000000000,"z":-6980000000000000000}},"30015984":{"solarSystemId":30015984,"solarSystemName":"P:3822","location":{"x":7220000000000000000,"y":-427000000000000000,"z":-7080000000000000000}},"30015985":{"solarSystemId":30015985,"solarSystemName":"J:1L1O","location":{"x":8110000000000000000,"y":-1140000000000000000,"z":-7300000000000000000}},"30015986":{"solarSystemId":30015986,"solarSystemName":"P:308E","location":{"x":7440000000000000000,"y":-54500000000000000,"z":-6550000000000000000}},"30015987":{"solarSystemId":30015987,"solarSystemName":"J:1LKE","location":{"x":7570000000000000000,"y":-427000000000000000,"z":-6570000000000000000}},"30015988":{"solarSystemId":30015988,"solarSystemName":"M:1914","location":{"x":7520000000000000000,"y":-1420000000000000000,"z":-7050000000000000000}},"30015989":{"solarSystemId":30015989,"solarSystemName":"D:1OOR","location":{"x":7840000000000000000,"y":-617000000000000000,"z":-6400000000000000000}},"30015990":{"solarSystemId":30015990,"solarSystemName":"J:1S98","location":{"x":7330000000000000000,"y":-571000000000000000,"z":-6730000000000000000}},"30015991":{"solarSystemId":30015991,"solarSystemName":"B:27NE","location":{"x":7800000000000000000,"y":-443000000000000000,"z":-6840000000000000000}},"30015992":{"solarSystemId":30015992,"solarSystemName":"U:1E1I","location":{"x":8040000000000000000,"y":-708000000000000000,"z":-6500000000000000000}},"30015993":{"solarSystemId":30015993,"solarSystemName":"J:2VSL","location":{"x":7210000000000000000,"y":-292000000000000000,"z":-6610000000000000000}},"30015994":{"solarSystemId":30015994,"solarSystemName":"B:2K22","location":{"x":8380000000000000000,"y":-1220000000000000000,"z":-7520000000000000000}},"30015995":{"solarSystemId":30015995,"solarSystemName":"M:35LA","location":{"x":7430000000000000000,"y":-259000000000000000,"z":-6900000000000000000}},"30015996":{"solarSystemId":30015996,"solarSystemName":"J:3O5N","location":{"x":8300000000000000000,"y":-1260000000000000000,"z":-7170000000000000000}},"30015997":{"solarSystemId":30015997,"solarSystemName":"J:1T39","location":{"x":7670000000000000000,"y":-451000000000000000,"z":-6800000000000000000}},"30015998":{"solarSystemId":30015998,"solarSystemName":"P:403E","location":{"x":7250000000000000000,"y":-104000000000000000,"z":-6720000000000000000}},"30015999":{"solarSystemId":30015999,"solarSystemName":"B:3AAN","location":{"x":7950000000000000000,"y":-566000000000000000,"z":-6630000000000000000}},"30016000":{"solarSystemId":30016000,"solarSystemName":"Y:25OS","location":{"x":7940000000000000000,"y":-1010000000000000000,"z":-9110000000000000000}},"30016001":{"solarSystemId":30016001,"solarSystemName":"D:3S07","location":{"x":7850000000000000000,"y":-1700000000000000000,"z":-8340000000000000000}},"30016002":{"solarSystemId":30016002,"solarSystemName":"Y:1AOA","location":{"x":7070000000000000000,"y":-725000000000000000,"z":-7950000000000000000}},"30016003":{"solarSystemId":30016003,"solarSystemName":"F:37AV","location":{"x":7030000000000000000,"y":-1280000000000000000,"z":-8840000000000000000}},"30016004":{"solarSystemId":30016004,"solarSystemName":"H:38LK","location":{"x":7360000000000000000,"y":-638000000000000000,"z":-8470000000000000000}},"30016005":{"solarSystemId":30016005,"solarSystemName":"G:3V4E","location":{"x":7000000000000000000,"y":-387000000000000000,"z":-8130000000000000000}},"30016006":{"solarSystemId":30016006,"solarSystemName":"P:1K3E","location":{"x":7650000000000000000,"y":-1360000000000000000,"z":-9050000000000000000}},"30016007":{"solarSystemId":30016007,"solarSystemName":"M:1LT0","location":{"x":6960000000000000000,"y":-1350000000000000000,"z":-7500000000000000000}},"30016008":{"solarSystemId":30016008,"solarSystemName":"J:3IKK","location":{"x":8110000000000000000,"y":-1740000000000000000,"z":-7820000000000000000}},"30016009":{"solarSystemId":30016009,"solarSystemName":"Z:1OON","location":{"x":7630000000000000000,"y":-1210000000000000000,"z":-9370000000000000000}},"30016010":{"solarSystemId":30016010,"solarSystemName":"Q:2KIL","location":{"x":7470000000000000000,"y":-1250000000000000000,"z":-7890000000000000000}},"30016011":{"solarSystemId":30016011,"solarSystemName":"Z:VV6O","location":{"x":6550000000000000000,"y":-457000000000000000,"z":-8210000000000000000}},"30016012":{"solarSystemId":30016012,"solarSystemName":"B:1KOS","location":{"x":7570000000000000000,"y":-964000000000000000,"z":-7980000000000000000}},"30016013":{"solarSystemId":30016013,"solarSystemName":"B:2K4N","location":{"x":10100000000000000000,"y":-3370000000000000000,"z":-10300000000000000000}},"30016014":{"solarSystemId":30016014,"solarSystemName":"G:3ET7","location":{"x":9310000000000000000,"y":-4340000000000000000,"z":-10000000000000000000}},"30016015":{"solarSystemId":30016015,"solarSystemName":"U:3NKT","location":{"x":8800000000000000000,"y":-1750000000000000000,"z":-9290000000000000000}},"30016016":{"solarSystemId":30016016,"solarSystemName":"D:1K8A","location":{"x":8210000000000000000,"y":-1610000000000000000,"z":-11100000000000000000}},"30016017":{"solarSystemId":30016017,"solarSystemName":"H:2167","location":{"x":10200000000000000000,"y":-6240000000000000000,"z":-8820000000000000000}},"30016018":{"solarSystemId":30016018,"solarSystemName":"Q:25K2","location":{"x":9760000000000000000,"y":-5190000000000000000,"z":-8210000000000000000}},"30016019":{"solarSystemId":30016019,"solarSystemName":"F:38TO","location":{"x":8510000000000000000,"y":-1660000000000000000,"z":-9080000000000000000}},"30016020":{"solarSystemId":30016020,"solarSystemName":"P:N413","location":{"x":11700000000000000000,"y":-4430000000000000000,"z":-10000000000000000000}},"30016021":{"solarSystemId":30016021,"solarSystemName":"J:1A7E","location":{"x":8740000000000000000,"y":-1390000000000000000,"z":-9850000000000000000}},"30016022":{"solarSystemId":30016022,"solarSystemName":"J:22L1","location":{"x":8840000000000000000,"y":-1040000000000000000,"z":-10100000000000000000}},"30016023":{"solarSystemId":30016023,"solarSystemName":"H:1A79","location":{"x":9590000000000000000,"y":-1770000000000000000,"z":-9920000000000000000}},"30016024":{"solarSystemId":30016024,"solarSystemName":"B:354T","location":{"x":9170000000000000000,"y":-1660000000000000000,"z":-10400000000000000000}},"30016025":{"solarSystemId":30016025,"solarSystemName":"U:21EL","location":{"x":9420000000000000000,"y":-1660000000000000000,"z":-9660000000000000000}},"30016026":{"solarSystemId":30016026,"solarSystemName":"B:S3LV","location":{"x":9320000000000000000,"y":-1180000000000000000,"z":-9760000000000000000}},"30016027":{"solarSystemId":30016027,"solarSystemName":"G:2I81","location":{"x":8800000000000000000,"y":-1140000000000000000,"z":-10200000000000000000}},"30016028":{"solarSystemId":30016028,"solarSystemName":"G:1E0I","location":{"x":9270000000000000000,"y":-1570000000000000000,"z":-10000000000000000000}},"30016029":{"solarSystemId":30016029,"solarSystemName":"F:12SA","location":{"x":8900000000000000000,"y":-984000000000000000,"z":-9980000000000000000}},"30016030":{"solarSystemId":30016030,"solarSystemName":"B:3A21","location":{"x":8950000000000000000,"y":-129000000000000000,"z":-9600000000000000000}},"30016031":{"solarSystemId":30016031,"solarSystemName":"D:5292","location":{"x":8290000000000000000,"y":115000000000000000,"z":-8880000000000000000}},"30016032":{"solarSystemId":30016032,"solarSystemName":"Q:2AA1","location":{"x":8020000000000000000,"y":-510000000000000000,"z":-10000000000000000000}},"30016033":{"solarSystemId":30016033,"solarSystemName":"P:1OT5","location":{"x":8550000000000000000,"y":-318000000000000000,"z":-8650000000000000000}},"30016034":{"solarSystemId":30016034,"solarSystemName":"F:22A3","location":{"x":8370000000000000000,"y":-429000000000000000,"z":-8800000000000000000}},"30016035":{"solarSystemId":30016035,"solarSystemName":"Y:3TLL","location":{"x":8400000000000000000,"y":-318000000000000000,"z":-9230000000000000000}},"30016036":{"solarSystemId":30016036,"solarSystemName":"D:3S9E","location":{"x":9060000000000000000,"y":-255000000000000000,"z":-8900000000000000000}},"30016037":{"solarSystemId":30016037,"solarSystemName":"H:22E3","location":{"x":8970000000000000000,"y":-241000000000000000,"z":-9390000000000000000}},"30016038":{"solarSystemId":30016038,"solarSystemName":"F:1NVS","location":{"x":8360000000000000000,"y":-848000000000000000,"z":-9750000000000000000}},"30016039":{"solarSystemId":30016039,"solarSystemName":"P:3ON3","location":{"x":9060000000000000000,"y":-567000000000000000,"z":-8730000000000000000}},"30016040":{"solarSystemId":30016040,"solarSystemName":"G:1EVL","location":{"x":8430000000000000000,"y":-84800000000000000,"z":-8780000000000000000}},"30016041":{"solarSystemId":30016041,"solarSystemName":"Z:29AT","location":{"x":6670000000000000000,"y":-2020000000000000000,"z":3170000000000000000}},"30016042":{"solarSystemId":30016042,"solarSystemName":"G:3V4A","location":{"x":6940000000000000000,"y":-1070000000000000000,"z":2880000000000000000}},"30016043":{"solarSystemId":30016043,"solarSystemName":"F:NE87","location":{"x":6960000000000000000,"y":-1220000000000000000,"z":2880000000000000000}},"30016044":{"solarSystemId":30016044,"solarSystemName":"M:1ARA","location":{"x":6400000000000000000,"y":-1600000000000000000,"z":2910000000000000000}},"30016045":{"solarSystemId":30016045,"solarSystemName":"D:21A4","location":{"x":5870000000000000000,"y":-1410000000000000000,"z":2400000000000000000}},"30016046":{"solarSystemId":30016046,"solarSystemName":"Q:2AO6","location":{"x":6640000000000000000,"y":-1310000000000000000,"z":2020000000000000000}},"30016047":{"solarSystemId":30016047,"solarSystemName":"M:1L6N","location":{"x":6750000000000000000,"y":-1040000000000000000,"z":3000000000000000000}},"30016048":{"solarSystemId":30016048,"solarSystemName":"Z:23A4","location":{"x":6440000000000000000,"y":-1950000000000000000,"z":2460000000000000000}},"30016049":{"solarSystemId":30016049,"solarSystemName":"J:1E63","location":{"x":7220000000000000000,"y":-1710000000000000000,"z":2370000000000000000}},"30016050":{"solarSystemId":30016050,"solarSystemName":"J:117L","location":{"x":5900000000000000000,"y":-1680000000000000000,"z":2320000000000000000}},"30016051":{"solarSystemId":30016051,"solarSystemName":"Z:1T0E","location":{"x":6550000000000000000,"y":-1700000000000000000,"z":2640000000000000000}},"30016052":{"solarSystemId":30016052,"solarSystemName":"D:V512","location":{"x":6640000000000000000,"y":-1370000000000000000,"z":3310000000000000000}},"30016053":{"solarSystemId":30016053,"solarSystemName":"H:1RTL","location":{"x":7180000000000000000,"y":-1190000000000000000,"z":2630000000000000000}},"30016054":{"solarSystemId":30016054,"solarSystemName":"J:3V60","location":{"x":5910000000000000000,"y":-2120000000000000000,"z":2560000000000000000}},"30016055":{"solarSystemId":30016055,"solarSystemName":"P:117T","location":{"x":7040000000000000000,"y":-1420000000000000000,"z":2590000000000000000}},"30016056":{"solarSystemId":30016056,"solarSystemName":"H:3322","location":{"x":7470000000000000000,"y":-948000000000000000,"z":3960000000000000000}},"30016057":{"solarSystemId":30016057,"solarSystemName":"Y:1I66","location":{"x":6830000000000000000,"y":-1110000000000000000,"z":3760000000000000000}},"30016058":{"solarSystemId":30016058,"solarSystemName":"H:1VNA","location":{"x":7270000000000000000,"y":-868000000000000000,"z":3720000000000000000}},"30016059":{"solarSystemId":30016059,"solarSystemName":"Q:KS52","location":{"x":7550000000000000000,"y":-388000000000000000,"z":4300000000000000000}},"30016060":{"solarSystemId":30016060,"solarSystemName":"P:2531","location":{"x":7140000000000000000,"y":-469000000000000000,"z":4360000000000000000}},"30016061":{"solarSystemId":30016061,"solarSystemName":"H:28V1","location":{"x":8120000000000000000,"y":-1430000000000000000,"z":4400000000000000000}},"30016062":{"solarSystemId":30016062,"solarSystemName":"Z:30RI","location":{"x":7650000000000000000,"y":-854000000000000000,"z":4730000000000000000}},"30016063":{"solarSystemId":30016063,"solarSystemName":"Z:SE01","location":{"x":7760000000000000000,"y":-1330000000000000000,"z":4110000000000000000}},"30016064":{"solarSystemId":30016064,"solarSystemName":"Z:1244","location":{"x":7900000000000000000,"y":-1110000000000000000,"z":3710000000000000000}},"30016065":{"solarSystemId":30016065,"solarSystemName":"Z:3356","location":{"x":8330000000000000000,"y":-1170000000000000000,"z":3700000000000000000}},"30016066":{"solarSystemId":30016066,"solarSystemName":"U:231V","location":{"x":7070000000000000000,"y":-762000000000000000,"z":4200000000000000000}},"30016067":{"solarSystemId":30016067,"solarSystemName":"Z:246O","location":{"x":6750000000000000000,"y":-624000000000000000,"z":3800000000000000000}},"30016068":{"solarSystemId":30016068,"solarSystemName":"H:3329","location":{"x":7550000000000000000,"y":-706000000000000000,"z":4610000000000000000}},"30016069":{"solarSystemId":30016069,"solarSystemName":"J:1O6T","location":{"x":6880000000000000000,"y":-1150000000000000000,"z":3400000000000000000}},"30016070":{"solarSystemId":30016070,"solarSystemName":"G:35LI","location":{"x":7530000000000000000,"y":-1070000000000000000,"z":4610000000000000000}},"30016071":{"solarSystemId":30016071,"solarSystemName":"J:1K04","location":{"x":7870000000000000000,"y":-963000000000000000,"z":3600000000000000000}},"30016072":{"solarSystemId":30016072,"solarSystemName":"J:334R","location":{"x":8010000000000000000,"y":-3000000000000000000,"z":1940000000000000000}},"30016073":{"solarSystemId":30016073,"solarSystemName":"Z:2LES","location":{"x":6400000000000000000,"y":-2170000000000000000,"z":1830000000000000000}},"30016074":{"solarSystemId":30016074,"solarSystemName":"J:2AN6","location":{"x":7560000000000000000,"y":-2550000000000000000,"z":1700000000000000000}},"30016075":{"solarSystemId":30016075,"solarSystemName":"Q:11RK","location":{"x":7280000000000000000,"y":-2440000000000000000,"z":2590000000000000000}},"30016076":{"solarSystemId":30016076,"solarSystemName":"J:1KNA","location":{"x":6850000000000000000,"y":-2140000000000000000,"z":1650000000000000000}},"30016077":{"solarSystemId":30016077,"solarSystemName":"Z:1RK1","location":{"x":7520000000000000000,"y":-2040000000000000000,"z":1150000000000000000}},"30016078":{"solarSystemId":30016078,"solarSystemName":"J:22NV","location":{"x":6560000000000000000,"y":-2580000000000000000,"z":2340000000000000000}},"30016079":{"solarSystemId":30016079,"solarSystemName":"J:1A6V","location":{"x":6720000000000000000,"y":-3370000000000000000,"z":2430000000000000000}},"30016080":{"solarSystemId":30016080,"solarSystemName":"Q:3E4O","location":{"x":8280000000000000000,"y":-2060000000000000000,"z":1580000000000000000}},"30016081":{"solarSystemId":30016081,"solarSystemName":"J:IA35","location":{"x":8420000000000000000,"y":-2590000000000000000,"z":2050000000000000000}},"30016082":{"solarSystemId":30016082,"solarSystemName":"M:1388","location":{"x":7500000000000000000,"y":-2550000000000000000,"z":2260000000000000000}},"30016083":{"solarSystemId":30016083,"solarSystemName":"B:36E0","location":{"x":5790000000000000000,"y":-1640000000000000000,"z":4020000000000000000}},"30016084":{"solarSystemId":30016084,"solarSystemName":"H:2IEI","location":{"x":6180000000000000000,"y":-1880000000000000000,"z":4350000000000000000}},"30016085":{"solarSystemId":30016085,"solarSystemName":"D:2230","location":{"x":6110000000000000000,"y":-1900000000000000000,"z":4140000000000000000}},"30016086":{"solarSystemId":30016086,"solarSystemName":"Q:OI9L","location":{"x":5750000000000000000,"y":-1520000000000000000,"z":4210000000000000000}},"30016087":{"solarSystemId":30016087,"solarSystemName":"U:2499","location":{"x":6260000000000000000,"y":-1370000000000000000,"z":3640000000000000000}},"30016088":{"solarSystemId":30016088,"solarSystemName":"D:39O0","location":{"x":5800000000000000000,"y":-1700000000000000000,"z":4020000000000000000}},"30016089":{"solarSystemId":30016089,"solarSystemName":"H:3838","location":{"x":5500000000000000000,"y":-1420000000000000000,"z":4010000000000000000}},"30016090":{"solarSystemId":30016090,"solarSystemName":"F:1161","location":{"x":6410000000000000000,"y":-1630000000000000000,"z":4120000000000000000}},"30016091":{"solarSystemId":30016091,"solarSystemName":"Q:1N07","location":{"x":5330000000000000000,"y":-1710000000000000000,"z":3710000000000000000}},"30016092":{"solarSystemId":30016092,"solarSystemName":"H:1NE7","location":{"x":5350000000000000000,"y":-1960000000000000000,"z":3900000000000000000}},"30016093":{"solarSystemId":30016093,"solarSystemName":"Q:1OV5","location":{"x":5340000000000000000,"y":-1960000000000000000,"z":3900000000000000000}},"30016094":{"solarSystemId":30016094,"solarSystemName":"Z:1SK1","location":{"x":5360000000000000000,"y":-1290000000000000000,"z":4170000000000000000}},"30016095":{"solarSystemId":30016095,"solarSystemName":"H:2TK5","location":{"x":5230000000000000000,"y":-2030000000000000000,"z":3880000000000000000}},"30016096":{"solarSystemId":30016096,"solarSystemName":"B:3V82","location":{"x":5240000000000000000,"y":-1920000000000000000,"z":3370000000000000000}},"30016097":{"solarSystemId":30016097,"solarSystemName":"G:208O","location":{"x":4680000000000000000,"y":-1610000000000000000,"z":2950000000000000000}},"30016098":{"solarSystemId":30016098,"solarSystemName":"Q:1S8S","location":{"x":4690000000000000000,"y":-1800000000000000000,"z":3320000000000000000}},"30016099":{"solarSystemId":30016099,"solarSystemName":"H:18KL","location":{"x":5030000000000000000,"y":-2080000000000000000,"z":3810000000000000000}},"30016100":{"solarSystemId":30016100,"solarSystemName":"F:20IV","location":{"x":5030000000000000000,"y":-1060000000000000000,"z":2860000000000000000}},"30016101":{"solarSystemId":30016101,"solarSystemName":"B:19ON","location":{"x":6180000000000000000,"y":-1030000000000000000,"z":3280000000000000000}},"30016102":{"solarSystemId":30016102,"solarSystemName":"M:386A","location":{"x":6000000000000000000,"y":-1080000000000000000,"z":3080000000000000000}},"30016103":{"solarSystemId":30016103,"solarSystemName":"G:3T8T","location":{"x":5880000000000000000,"y":-1660000000000000000,"z":3160000000000000000}},"30016104":{"solarSystemId":30016104,"solarSystemName":"Z:3844","location":{"x":5350000000000000000,"y":-1540000000000000000,"z":3230000000000000000}},"30016105":{"solarSystemId":30016105,"solarSystemName":"Y:21L5","location":{"x":6240000000000000000,"y":-977000000000000000,"z":2940000000000000000}},"30016106":{"solarSystemId":30016106,"solarSystemName":"P:2TE2","location":{"x":5840000000000000000,"y":-1440000000000000000,"z":3130000000000000000}},"30016107":{"solarSystemId":30016107,"solarSystemName":"Q:1TO8","location":{"x":5050000000000000000,"y":-1880000000000000000,"z":3500000000000000000}},"30016108":{"solarSystemId":30016108,"solarSystemName":"F:3SE1","location":{"x":5600000000000000000,"y":-2330000000000000000,"z":3450000000000000000}},"30016109":{"solarSystemId":30016109,"solarSystemName":"F:337R","location":{"x":5080000000000000000,"y":-1070000000000000000,"z":2820000000000000000}},"30016110":{"solarSystemId":30016110,"solarSystemName":"M:3I2O","location":{"x":4690000000000000000,"y":-1550000000000000000,"z":3080000000000000000}},"30016111":{"solarSystemId":30016111,"solarSystemName":"M:1L1N","location":{"x":4650000000000000000,"y":-1820000000000000000,"z":3140000000000000000}},"30016112":{"solarSystemId":30016112,"solarSystemName":"G:3SS1","location":{"x":6130000000000000000,"y":-3030000000000000000,"z":3960000000000000000}},"30016113":{"solarSystemId":30016113,"solarSystemName":"G:3VIS","location":{"x":6710000000000000000,"y":-2100000000000000000,"z":3670000000000000000}},"30016114":{"solarSystemId":30016114,"solarSystemName":"Q:2446","location":{"x":7200000000000000000,"y":-1760000000000000000,"z":4090000000000000000}},"30016115":{"solarSystemId":30016115,"solarSystemName":"H:16S7","location":{"x":6450000000000000000,"y":-1160000000000000000,"z":3900000000000000000}},"30016116":{"solarSystemId":30016116,"solarSystemName":"J:O1KR","location":{"x":6750000000000000000,"y":-2740000000000000000,"z":4220000000000000000}},"30016117":{"solarSystemId":30016117,"solarSystemName":"Q:1299","location":{"x":6870000000000000000,"y":-1390000000000000000,"z":3730000000000000000}},"30016118":{"solarSystemId":30016118,"solarSystemName":"J:2O83","location":{"x":6390000000000000000,"y":-2970000000000000000,"z":4190000000000000000}},"30016119":{"solarSystemId":30016119,"solarSystemName":"H:2V8T","location":{"x":6520000000000000000,"y":-1360000000000000000,"z":3660000000000000000}},"30016120":{"solarSystemId":30016120,"solarSystemName":"Y:3SLS","location":{"x":6860000000000000000,"y":-2010000000000000000,"z":4160000000000000000}},"30016121":{"solarSystemId":30016121,"solarSystemName":"B:1ENI","location":{"x":6350000000000000000,"y":-2290000000000000000,"z":4210000000000000000}},"30016122":{"solarSystemId":30016122,"solarSystemName":"Y:42K2","location":{"x":6950000000000000000,"y":-1910000000000000000,"z":3900000000000000000}},"30016123":{"solarSystemId":30016123,"solarSystemName":"Q:281N","location":{"x":6400000000000000000,"y":-2270000000000000000,"z":3640000000000000000}},"30016124":{"solarSystemId":30016124,"solarSystemName":"B:1TTE","location":{"x":5840000000000000000,"y":-1610000000000000000,"z":2170000000000000000}},"30016125":{"solarSystemId":30016125,"solarSystemName":"M:220S","location":{"x":4720000000000000000,"y":-2380000000000000000,"z":2620000000000000000}},"30016126":{"solarSystemId":30016126,"solarSystemName":"J:16EK","location":{"x":5150000000000000000,"y":-1250000000000000000,"z":2690000000000000000}},"30016127":{"solarSystemId":30016127,"solarSystemName":"Y:18S4","location":{"x":5240000000000000000,"y":-1350000000000000000,"z":2080000000000000000}},"30016128":{"solarSystemId":30016128,"solarSystemName":"B:2S0S","location":{"x":5700000000000000000,"y":-1340000000000000000,"z":2540000000000000000}},"30016129":{"solarSystemId":30016129,"solarSystemName":"J:22RV","location":{"x":5080000000000000000,"y":-1580000000000000000,"z":2420000000000000000}},"30016130":{"solarSystemId":30016130,"solarSystemName":"B:1LAO","location":{"x":5050000000000000000,"y":-1780000000000000000,"z":2280000000000000000}},"30016131":{"solarSystemId":30016131,"solarSystemName":"Q:V045","location":{"x":5420000000000000000,"y":-1390000000000000000,"z":2470000000000000000}},"30016132":{"solarSystemId":30016132,"solarSystemName":"B:4ETV","location":{"x":4930000000000000000,"y":-1890000000000000000,"z":2230000000000000000}},"30016133":{"solarSystemId":30016133,"solarSystemName":"H:37SI","location":{"x":5460000000000000000,"y":-2160000000000000000,"z":2330000000000000000}},"30016134":{"solarSystemId":30016134,"solarSystemName":"M:L37V","location":{"x":5470000000000000000,"y":-1710000000000000000,"z":2520000000000000000}},"30016135":{"solarSystemId":30016135,"solarSystemName":"Z:3227","location":{"x":5290000000000000000,"y":-1900000000000000000,"z":2710000000000000000}},"30016136":{"solarSystemId":30016136,"solarSystemName":"H:I995","location":{"x":5270000000000000000,"y":-2100000000000000000,"z":2360000000000000000}},"30016137":{"solarSystemId":30016137,"solarSystemName":"B:2K63","location":{"x":5120000000000000000,"y":-1920000000000000000,"z":2890000000000000000}},"30016138":{"solarSystemId":30016138,"solarSystemName":"H:3OSN","location":{"x":4560000000000000000,"y":-181000000000000000,"z":3040000000000000000}},"30016139":{"solarSystemId":30016139,"solarSystemName":"Q:3OL5","location":{"x":5940000000000000000,"y":-800000000000000000,"z":4280000000000000000}},"30016140":{"solarSystemId":30016140,"solarSystemName":"Z:119N","location":{"x":5470000000000000000,"y":-535000000000000000,"z":3670000000000000000}},"30016141":{"solarSystemId":30016141,"solarSystemName":"F:LR49","location":{"x":5080000000000000000,"y":-738000000000000000,"z":3330000000000000000}},"30016142":{"solarSystemId":30016142,"solarSystemName":"Y:24O4","location":{"x":5070000000000000000,"y":-449000000000000000,"z":3820000000000000000}},"30016143":{"solarSystemId":30016143,"solarSystemName":"H:41R3","location":{"x":5050000000000000000,"y":-1140000000000000000,"z":3300000000000000000}},"30016144":{"solarSystemId":30016144,"solarSystemName":"G:14LR","location":{"x":5170000000000000000,"y":-110000000000000000,"z":4270000000000000000}},"30016145":{"solarSystemId":30016145,"solarSystemName":"H:2TN3","location":{"x":6000000000000000000,"y":-286000000000000000,"z":4060000000000000000}},"30016146":{"solarSystemId":30016146,"solarSystemName":"Q:1773","location":{"x":5960000000000000000,"y":-924000000000000000,"z":3760000000000000000}},"30016147":{"solarSystemId":30016147,"solarSystemName":"H:35ET","location":{"x":5670000000000000000,"y":-51400000000000000,"z":3820000000000000000}},"30016148":{"solarSystemId":30016148,"solarSystemName":"H:35A6","location":{"x":4940000000000000000,"y":-273000000000000000,"z":3080000000000000000}},"30016149":{"solarSystemId":30016149,"solarSystemName":"Y:2I88","location":{"x":5600000000000000000,"y":-502000000000000000,"z":4320000000000000000}},"30016150":{"solarSystemId":30016150,"solarSystemName":"G:1SK0","location":{"x":5530000000000000000,"y":110000000000000000,"z":3320000000000000000}},"30016151":{"solarSystemId":30016151,"solarSystemName":"G:3I5O","location":{"x":4640000000000000000,"y":-341000000000000000,"z":3970000000000000000}},"30016152":{"solarSystemId":30016152,"solarSystemName":"D:4NI5","location":{"x":5540000000000000000,"y":-1110000000000000000,"z":3120000000000000000}},"30016153":{"solarSystemId":30016153,"solarSystemName":"Y:2714","location":{"x":7790000000000000000,"y":-1030000000000000000,"z":-6350000000000000000}},"30016154":{"solarSystemId":30016154,"solarSystemName":"P:4T8S","location":{"x":7750000000000000000,"y":-966000000000000000,"z":-5680000000000000000}},"30016155":{"solarSystemId":30016155,"solarSystemName":"D:1AAL","location":{"x":9210000000000000000,"y":-2250000000000000000,"z":-5880000000000000000}},"30016156":{"solarSystemId":30016156,"solarSystemName":"D:1V5L","location":{"x":8450000000000000000,"y":-1480000000000000000,"z":-5700000000000000000}},"30016157":{"solarSystemId":30016157,"solarSystemName":"Z:2T0K","location":{"x":8780000000000000000,"y":-393000000000000000,"z":-5960000000000000000}},"30016158":{"solarSystemId":30016158,"solarSystemName":"D:25I2","location":{"x":7470000000000000000,"y":-1470000000000000000,"z":-6700000000000000000}},"30016159":{"solarSystemId":30016159,"solarSystemName":"Q:151L","location":{"x":8100000000000000000,"y":-1590000000000000000,"z":-6420000000000000000}},"30016160":{"solarSystemId":30016160,"solarSystemName":"P:3AT0","location":{"x":9170000000000000000,"y":-676000000000000000,"z":-6140000000000000000}},"30016161":{"solarSystemId":30016161,"solarSystemName":"Q:3N3K","location":{"x":7990000000000000000,"y":-990000000000000000,"z":-5530000000000000000}},"30016162":{"solarSystemId":30016162,"solarSystemName":"D:214E","location":{"x":9390000000000000000,"y":-2300000000000000000,"z":-5780000000000000000}},"30016163":{"solarSystemId":30016163,"solarSystemName":"H:V9OL","location":{"x":8420000000000000000,"y":-1210000000000000000,"z":-6260000000000000000}},"30016164":{"solarSystemId":30016164,"solarSystemName":"M:1874","location":{"x":8800000000000000000,"y":-1500000000000000000,"z":-4660000000000000000}},"30016165":{"solarSystemId":30016165,"solarSystemName":"B:1484","location":{"x":9680000000000000000,"y":-1320000000000000000,"z":-5960000000000000000}},"30016166":{"solarSystemId":30016166,"solarSystemName":"Y:1T7S","location":{"x":9940000000000000000,"y":-758000000000000000,"z":-5370000000000000000}},"30016167":{"solarSystemId":30016167,"solarSystemName":"Q:3974","location":{"x":9190000000000000000,"y":-1920000000000000000,"z":-5570000000000000000}},"30016168":{"solarSystemId":30016168,"solarSystemName":"Y:3325","location":{"x":9880000000000000000,"y":-1070000000000000000,"z":-5790000000000000000}},"30016169":{"solarSystemId":30016169,"solarSystemName":"G:47OS","location":{"x":9000000000000000000,"y":-1850000000000000000,"z":-4850000000000000000}},"30016170":{"solarSystemId":30016170,"solarSystemName":"Z:222S","location":{"x":9370000000000000000,"y":-1780000000000000000,"z":-4720000000000000000}},"30016171":{"solarSystemId":30016171,"solarSystemName":"P:31AA","location":{"x":9100000000000000000,"y":-1180000000000000000,"z":-5410000000000000000}},"30016172":{"solarSystemId":30016172,"solarSystemName":"Y:25NA","location":{"x":8920000000000000000,"y":-1300000000000000000,"z":-5110000000000000000}},"30016173":{"solarSystemId":30016173,"solarSystemName":"U:3OO2","location":{"x":9970000000000000000,"y":-1290000000000000000,"z":-5700000000000000000}},"30016174":{"solarSystemId":30016174,"solarSystemName":"M:3A3K","location":{"x":9760000000000000000,"y":-1550000000000000000,"z":-5460000000000000000}},"30016175":{"solarSystemId":30016175,"solarSystemName":"Y:15ST","location":{"x":9300000000000000000,"y":-1320000000000000000,"z":-5140000000000000000}},"30016176":{"solarSystemId":30016176,"solarSystemName":"B:1001","location":{"x":7500000000000000000,"y":-529000000000000000,"z":-4120000000000000000}},"30016177":{"solarSystemId":30016177,"solarSystemName":"Q:20E9","location":{"x":7430000000000000000,"y":-546000000000000000,"z":-4140000000000000000}},"30016178":{"solarSystemId":30016178,"solarSystemName":"H:3A88","location":{"x":8150000000000000000,"y":72800000000000000,"z":-4140000000000000000}},"30016179":{"solarSystemId":30016179,"solarSystemName":"J:2932","location":{"x":8680000000000000000,"y":-148000000000000000,"z":-3750000000000000000}},"30016180":{"solarSystemId":30016180,"solarSystemName":"G:4S6T","location":{"x":7530000000000000000,"y":-632000000000000000,"z":-2850000000000000000}},"30016181":{"solarSystemId":30016181,"solarSystemName":"J:1E25","location":{"x":8630000000000000000,"y":-282000000000000000,"z":-4230000000000000000}},"30016182":{"solarSystemId":30016182,"solarSystemName":"D:1REE","location":{"x":8410000000000000000,"y":129000000000000000,"z":-3930000000000000000}},"30016183":{"solarSystemId":30016183,"solarSystemName":"Z:1LT7","location":{"x":7440000000000000000,"y":-111000000000000000,"z":-3730000000000000000}},"30016184":{"solarSystemId":30016184,"solarSystemName":"H:E8T5","location":{"x":8040000000000000000,"y":-239000000000000000,"z":-3470000000000000000}},"30016185":{"solarSystemId":30016185,"solarSystemName":"J:1OA7","location":{"x":7330000000000000000,"y":-487000000000000000,"z":-3990000000000000000}},"30016186":{"solarSystemId":30016186,"solarSystemName":"F:27E7","location":{"x":7100000000000000000,"y":-508000000000000000,"z":-3640000000000000000}},"30016187":{"solarSystemId":30016187,"solarSystemName":"F:1OS4","location":{"x":7790000000000000000,"y":-286000000000000000,"z":-3910000000000000000}},"30016188":{"solarSystemId":30016188,"solarSystemName":"F:3OVV","location":{"x":7780000000000000000,"y":-615000000000000000,"z":-3880000000000000000}},"30016189":{"solarSystemId":30016189,"solarSystemName":"U:277I","location":{"x":7720000000000000000,"y":-753000000000000000,"z":-5970000000000000000}},"30016190":{"solarSystemId":30016190,"solarSystemName":"B:2652","location":{"x":7800000000000000000,"y":-123000000000000000,"z":-5800000000000000000}},"30016191":{"solarSystemId":30016191,"solarSystemName":"F:N870","location":{"x":7860000000000000000,"y":-746000000000000000,"z":-6050000000000000000}},"30016192":{"solarSystemId":30016192,"solarSystemName":"G:28ST","location":{"x":7860000000000000000,"y":-445000000000000000,"z":-6390000000000000000}},"30016193":{"solarSystemId":30016193,"solarSystemName":"P:39O3","location":{"x":8030000000000000000,"y":-131000000000000000,"z":-5790000000000000000}},"30016194":{"solarSystemId":30016194,"solarSystemName":"J:T4T8","location":{"x":8440000000000000000,"y":-361000000000000000,"z":-6070000000000000000}},"30016195":{"solarSystemId":30016195,"solarSystemName":"B:I698","location":{"x":8490000000000000000,"y":-541000000000000000,"z":-6090000000000000000}},"30016196":{"solarSystemId":30016196,"solarSystemName":"B:2O94","location":{"x":8010000000000000000,"y":485000000000000000,"z":-6480000000000000000}},"30016197":{"solarSystemId":30016197,"solarSystemName":"U:4VKN","location":{"x":7980000000000000000,"y":-338000000000000000,"z":-6110000000000000000}},"30016198":{"solarSystemId":30016198,"solarSystemName":"B:2S3I","location":{"x":8340000000000000000,"y":238000000000000000,"z":-6050000000000000000}},"30016199":{"solarSystemId":30016199,"solarSystemName":"Y:NAOL","location":{"x":8470000000000000000,"y":-410000000000000000,"z":-5880000000000000000}},"30016200":{"solarSystemId":30016200,"solarSystemName":"B:3ASI","location":{"x":8280000000000000000,"y":-13800000000000000,"z":-6460000000000000000}},"30016201":{"solarSystemId":30016201,"solarSystemName":"M:K65I","location":{"x":7820000000000000000,"y":-257000000000000000,"z":-6080000000000000000}},"30016202":{"solarSystemId":30016202,"solarSystemName":"B:2T52","location":{"x":9070000000000000000,"y":-292000000000000000,"z":-4780000000000000000}},"30016203":{"solarSystemId":30016203,"solarSystemName":"Q:R15R","location":{"x":8900000000000000000,"y":-726000000000000000,"z":-4150000000000000000}},"30016204":{"solarSystemId":30016204,"solarSystemName":"U:3NES","location":{"x":9020000000000000000,"y":-781000000000000000,"z":-4130000000000000000}},"30016205":{"solarSystemId":30016205,"solarSystemName":"J:3N73","location":{"x":9160000000000000000,"y":-296000000000000000,"z":-3780000000000000000}},"30016206":{"solarSystemId":30016206,"solarSystemName":"D:40T1","location":{"x":9240000000000000000,"y":-799000000000000000,"z":-4530000000000000000}},"30016207":{"solarSystemId":30016207,"solarSystemName":"P:2TOA","location":{"x":9310000000000000000,"y":-435000000000000000,"z":-4290000000000000000}},"30016208":{"solarSystemId":30016208,"solarSystemName":"D:36E8","location":{"x":9060000000000000000,"y":-1290000000000000000,"z":-4130000000000000000}},"30016209":{"solarSystemId":30016209,"solarSystemName":"F:1KTA","location":{"x":9110000000000000000,"y":-513000000000000000,"z":-4700000000000000000}},"30016210":{"solarSystemId":30016210,"solarSystemName":"H:2K33","location":{"x":9670000000000000000,"y":-63500000000000000,"z":-4120000000000000000}},"30016211":{"solarSystemId":30016211,"solarSystemName":"D:38ON","location":{"x":8990000000000000000,"y":-1090000000000000000,"z":-3990000000000000000}},"30016212":{"solarSystemId":30016212,"solarSystemName":"B:R641","location":{"x":9350000000000000000,"y":-276000000000000000,"z":-4900000000000000000}},"30016213":{"solarSystemId":30016213,"solarSystemName":"Z:114N","location":{"x":9670000000000000000,"y":-84000000000000000,"z":-4620000000000000000}},"30016214":{"solarSystemId":30016214,"solarSystemName":"M:268N","location":{"x":9330000000000000000,"y":-504000000000000000,"z":-4410000000000000000}},"30016215":{"solarSystemId":30016215,"solarSystemName":"G:346R","location":{"x":9030000000000000000,"y":-476000000000000000,"z":-3830000000000000000}},"30016216":{"solarSystemId":30016216,"solarSystemName":"M:39L2","location":{"x":6830000000000000000,"y":754000000000000000,"z":-5680000000000000000}},"30016217":{"solarSystemId":30016217,"solarSystemName":"M:2974","location":{"x":6550000000000000000,"y":-50600000000000000,"z":-4040000000000000000}},"30016218":{"solarSystemId":30016218,"solarSystemName":"Q:47R7","location":{"x":6810000000000000000,"y":-589000000000000000,"z":-3760000000000000000}},"30016219":{"solarSystemId":30016219,"solarSystemName":"F:1K7L","location":{"x":6660000000000000000,"y":-490000000000000000,"z":-4230000000000000000}},"30016220":{"solarSystemId":30016220,"solarSystemName":"M:2I13","location":{"x":7070000000000000000,"y":-422000000000000000,"z":-4210000000000000000}},"30016221":{"solarSystemId":30016221,"solarSystemName":"U:21K3","location":{"x":6320000000000000000,"y":-78600000000000000,"z":-4300000000000000000}},"30016222":{"solarSystemId":30016222,"solarSystemName":"J:2OIL","location":{"x":7990000000000000000,"y":251000000000000000,"z":-5280000000000000000}},"30016223":{"solarSystemId":30016223,"solarSystemName":"J:34V3","location":{"x":7230000000000000000,"y":261000000000000000,"z":-4880000000000000000}},"30016224":{"solarSystemId":30016224,"solarSystemName":"D:2S68","location":{"x":7170000000000000000,"y":-383000000000000000,"z":-4790000000000000000}},"30016225":{"solarSystemId":30016225,"solarSystemName":"Y:3O78","location":{"x":6220000000000000000,"y":744000000000000000,"z":-5460000000000000000}},"30016226":{"solarSystemId":30016226,"solarSystemName":"D:I9T5","location":{"x":6840000000000000000,"y":190000000000000000,"z":-5050000000000000000}},"30016227":{"solarSystemId":30016227,"solarSystemName":"B:1TO0","location":{"x":7010000000000000000,"y":-478000000000000000,"z":-3770000000000000000}},"30016228":{"solarSystemId":30016228,"solarSystemName":"G:28S3","location":{"x":6810000000000000000,"y":588000000000000000,"z":-6000000000000000000}},"30016229":{"solarSystemId":30016229,"solarSystemName":"F:1R5A","location":{"x":6600000000000000000,"y":363000000000000000,"z":-5110000000000000000}},"30016230":{"solarSystemId":30016230,"solarSystemName":"B:3V89","location":{"x":8110000000000000000,"y":-1470000000000000000,"z":-4950000000000000000}},"30016231":{"solarSystemId":30016231,"solarSystemName":"B:1057","location":{"x":7950000000000000000,"y":-959000000000000000,"z":-4440000000000000000}},"30016232":{"solarSystemId":30016232,"solarSystemName":"Y:104E","location":{"x":7510000000000000000,"y":-1990000000000000000,"z":-4470000000000000000}},"30016233":{"solarSystemId":30016233,"solarSystemName":"M:26K6","location":{"x":7870000000000000000,"y":-1440000000000000000,"z":-4570000000000000000}},"30016234":{"solarSystemId":30016234,"solarSystemName":"P:231T","location":{"x":8390000000000000000,"y":-1460000000000000000,"z":-4930000000000000000}},"30016235":{"solarSystemId":30016235,"solarSystemName":"Q:4I52","location":{"x":8010000000000000000,"y":-1300000000000000000,"z":-5640000000000000000}},"30016236":{"solarSystemId":30016236,"solarSystemName":"Q:3N25","location":{"x":7530000000000000000,"y":-949000000000000000,"z":-4050000000000000000}},"30016237":{"solarSystemId":30016237,"solarSystemName":"B:2154","location":{"x":8120000000000000000,"y":-1340000000000000000,"z":-4220000000000000000}},"30016238":{"solarSystemId":30016238,"solarSystemName":"B:SSKV","location":{"x":8330000000000000000,"y":-1250000000000000000,"z":-3850000000000000000}},"30016239":{"solarSystemId":30016239,"solarSystemName":"P:3621","location":{"x":8530000000000000000,"y":-2020000000000000000,"z":-5150000000000000000}},"30016240":{"solarSystemId":30016240,"solarSystemName":"H:2NNR","location":{"x":8240000000000000000,"y":-2010000000000000000,"z":-4960000000000000000}},"30016241":{"solarSystemId":30016241,"solarSystemName":"Q:37IR","location":{"x":8320000000000000000,"y":179000000000000000,"z":-5160000000000000000}},"30016242":{"solarSystemId":30016242,"solarSystemName":"Q:2K49","location":{"x":8830000000000000000,"y":290000000000000000,"z":-4680000000000000000}},"30016243":{"solarSystemId":30016243,"solarSystemName":"J:VTK4","location":{"x":8790000000000000000,"y":-264000000000000000,"z":-5000000000000000000}},"30016244":{"solarSystemId":30016244,"solarSystemName":"G:1ASK","location":{"x":8380000000000000000,"y":-766000000000000000,"z":-5670000000000000000}},"30016245":{"solarSystemId":30016245,"solarSystemName":"M:2R89","location":{"x":8300000000000000000,"y":-1020000000000000000,"z":-5270000000000000000}},"30016246":{"solarSystemId":30016246,"solarSystemName":"J:2R73","location":{"x":8840000000000000000,"y":-302000000000000000,"z":-5770000000000000000}},"30016247":{"solarSystemId":30016247,"solarSystemName":"Q:2EL2","location":{"x":8340000000000000000,"y":-391000000000000000,"z":-5240000000000000000}},"30016248":{"solarSystemId":30016248,"solarSystemName":"M:309L","location":{"x":8550000000000000000,"y":-368000000000000000,"z":-5370000000000000000}},"30016249":{"solarSystemId":30016249,"solarSystemName":"U:OAVK","location":{"x":8620000000000000000,"y":-45000000000000000,"z":-4750000000000000000}},"30016250":{"solarSystemId":30016250,"solarSystemName":"P:1799","location":{"x":8070000000000000000,"y":-25500000000000000,"z":-4540000000000000000}},"30016251":{"solarSystemId":30016251,"solarSystemName":"B:3E4T","location":{"x":9210000000000000000,"y":-83700000000000000,"z":-5600000000000000000}},"30016252":{"solarSystemId":30016252,"solarSystemName":"D:15V5","location":{"x":8710000000000000000,"y":-506000000000000000,"z":-4950000000000000000}},"30016253":{"solarSystemId":30016253,"solarSystemName":"G:377L","location":{"x":7040000000000000000,"y":2670000000000000000,"z":-4480000000000000000}},"30016254":{"solarSystemId":30016254,"solarSystemName":"P:35T4","location":{"x":7980000000000000000,"y":3320000000000000000,"z":-4800000000000000000}},"30016255":{"solarSystemId":30016255,"solarSystemName":"D:313N","location":{"x":7870000000000000000,"y":1900000000000000000,"z":-4310000000000000000}},"30016256":{"solarSystemId":30016256,"solarSystemName":"F:2TON","location":{"x":6630000000000000000,"y":1800000000000000000,"z":-5180000000000000000}},"30016257":{"solarSystemId":30016257,"solarSystemName":"F:19L4","location":{"x":8160000000000000000,"y":138000000000000000,"z":-4470000000000000000}},"30016258":{"solarSystemId":30016258,"solarSystemName":"Q:26V4","location":{"x":8140000000000000000,"y":320000000000000000,"z":-4790000000000000000}},"30016259":{"solarSystemId":30016259,"solarSystemName":"D:149E","location":{"x":8240000000000000000,"y":575000000000000000,"z":-3460000000000000000}},"30016260":{"solarSystemId":30016260,"solarSystemName":"B:1L39","location":{"x":6990000000000000000,"y":633000000000000000,"z":-3420000000000000000}},"30016261":{"solarSystemId":30016261,"solarSystemName":"F:ARS5","location":{"x":7530000000000000000,"y":949000000000000000,"z":-4090000000000000000}},"30016262":{"solarSystemId":30016262,"solarSystemName":"D:131N","location":{"x":6600000000000000000,"y":1030000000000000000,"z":-4990000000000000000}},"30016263":{"solarSystemId":30016263,"solarSystemName":"F:1VLE","location":{"x":8450000000000000000,"y":-1510000000000000000,"z":2600000000000000000}},"30016264":{"solarSystemId":30016264,"solarSystemName":"F:1VSR","location":{"x":8270000000000000000,"y":-625000000000000000,"z":1940000000000000000}},"30016265":{"solarSystemId":30016265,"solarSystemName":"D:N0SR","location":{"x":7600000000000000000,"y":-925000000000000000,"z":2360000000000000000}},"30016266":{"solarSystemId":30016266,"solarSystemName":"U:2EOS","location":{"x":7660000000000000000,"y":-664000000000000000,"z":2760000000000000000}},"30016267":{"solarSystemId":30016267,"solarSystemName":"Q:48RR","location":{"x":8210000000000000000,"y":-1040000000000000000,"z":2690000000000000000}},"30016268":{"solarSystemId":30016268,"solarSystemName":"F:3694","location":{"x":8490000000000000000,"y":-758000000000000000,"z":3160000000000000000}},"30016269":{"solarSystemId":30016269,"solarSystemName":"B:20A2","location":{"x":8170000000000000000,"y":-1040000000000000000,"z":2580000000000000000}},"30016270":{"solarSystemId":30016270,"solarSystemName":"B:12VA","location":{"x":8520000000000000000,"y":-1340000000000000000,"z":2680000000000000000}},"30016271":{"solarSystemId":30016271,"solarSystemName":"J:1EVR","location":{"x":7770000000000000000,"y":-618000000000000000,"z":2430000000000000000}},"30016272":{"solarSystemId":30016272,"solarSystemName":"F:2K81","location":{"x":8420000000000000000,"y":-1440000000000000000,"z":3490000000000000000}},"30016273":{"solarSystemId":30016273,"solarSystemName":"J:2394","location":{"x":8320000000000000000,"y":-1270000000000000000,"z":3560000000000000000}},"30016274":{"solarSystemId":30016274,"solarSystemName":"Q:E30A","location":{"x":7490000000000000000,"y":-1260000000000000000,"z":2710000000000000000}},"30016275":{"solarSystemId":30016275,"solarSystemName":"P:1R6O","location":{"x":8270000000000000000,"y":-1350000000000000000,"z":2440000000000000000}},"30016276":{"solarSystemId":30016276,"solarSystemName":"G:1V33","location":{"x":9390000000000000000,"y":-1580000000000000000,"z":643000000000000000}},"30016277":{"solarSystemId":30016277,"solarSystemName":"G:23S2","location":{"x":8820000000000000000,"y":-1200000000000000000,"z":-18168100000000}},"30016278":{"solarSystemId":30016278,"solarSystemName":"B:37IT","location":{"x":8760000000000000000,"y":-2280000000000000000,"z":338000000000000000}},"30016279":{"solarSystemId":30016279,"solarSystemName":"G:2E28","location":{"x":8690000000000000000,"y":-1390000000000000000,"z":1330000000000000}},"30016280":{"solarSystemId":30016280,"solarSystemName":"M:12KN","location":{"x":9090000000000000000,"y":-1950000000000000000,"z":637000000000000000}},"30016281":{"solarSystemId":30016281,"solarSystemName":"Y:242N","location":{"x":9100000000000000000,"y":-1090000000000000000,"z":-356000000000000000}},"30016282":{"solarSystemId":30016282,"solarSystemName":"D:3T3R","location":{"x":8790000000000000000,"y":-978000000000000000,"z":-78600000000000000}},"30016283":{"solarSystemId":30016283,"solarSystemName":"F:AV9T","location":{"x":9070000000000000000,"y":-1610000000000000000,"z":809000000000000000}},"30016284":{"solarSystemId":30016284,"solarSystemName":"Q:13A2","location":{"x":9250000000000000000,"y":-1150000000000000000,"z":-449000000000000000}},"30016285":{"solarSystemId":30016285,"solarSystemName":"U:397A","location":{"x":8480000000000000000,"y":-1320000000000000000,"z":676000000000000000}},"30016286":{"solarSystemId":30016286,"solarSystemName":"F:30O6","location":{"x":8420000000000000000,"y":-592000000000000000,"z":-68600000000000000}},"30016287":{"solarSystemId":30016287,"solarSystemName":"F:26VL","location":{"x":8830000000000000000,"y":-1090000000000000000,"z":-333000000000000000}},"30016288":{"solarSystemId":30016288,"solarSystemName":"D:18RK","location":{"x":8760000000000000000,"y":-1410000000000000000,"z":123000000000000000}},"30016289":{"solarSystemId":30016289,"solarSystemName":"J:3NE2","location":{"x":9420000000000000000,"y":-3490000000000000000,"z":-202000000000000000}},"30016290":{"solarSystemId":30016290,"solarSystemName":"M:30II","location":{"x":9920000000000000000,"y":-2960000000000000000,"z":-860000000000000000}},"30016291":{"solarSystemId":30016291,"solarSystemName":"J:2O3K","location":{"x":8740000000000000000,"y":-2350000000000000000,"z":-726000000000000000}},"30016292":{"solarSystemId":30016292,"solarSystemName":"J:3N31","location":{"x":9310000000000000000,"y":-2240000000000000000,"z":1280000000000000000}},"30016293":{"solarSystemId":30016293,"solarSystemName":"P:N017","location":{"x":9990000000000000000,"y":-1860000000000000000,"z":-222000000000000000}},"30016294":{"solarSystemId":30016294,"solarSystemName":"M:2060","location":{"x":10100000000000000000,"y":-2210000000000000000,"z":146000000000000000}},"30016295":{"solarSystemId":30016295,"solarSystemName":"P:KOVR","location":{"x":9380000000000000000,"y":-2610000000000000000,"z":-564000000000000000}},"30016296":{"solarSystemId":30016296,"solarSystemName":"Y:1OK7","location":{"x":9890000000000000000,"y":-2260000000000000000,"z":781000000000000000}},"30016297":{"solarSystemId":30016297,"solarSystemName":"B:378O","location":{"x":9610000000000000000,"y":-2730000000000000000,"z":123000000000000000}},"30016298":{"solarSystemId":30016298,"solarSystemName":"U:1KE4","location":{"x":9700000000000000000,"y":-3650000000000000000,"z":48500000000000000}},"30016299":{"solarSystemId":30016299,"solarSystemName":"Q:3583","location":{"x":9470000000000000000,"y":-817000000000000000,"z":1470000000000000000}},"30016300":{"solarSystemId":30016300,"solarSystemName":"U:1S3S","location":{"x":8950000000000000000,"y":-856000000000000000,"z":1580000000000000000}},"30016301":{"solarSystemId":30016301,"solarSystemName":"Z:314T","location":{"x":9780000000000000000,"y":-808000000000000000,"z":998000000000000000}},"30016302":{"solarSystemId":30016302,"solarSystemName":"D:246K","location":{"x":9500000000000000000,"y":-1550000000000000000,"z":2140000000000000000}},"30016303":{"solarSystemId":30016303,"solarSystemName":"F:34IK","location":{"x":9340000000000000000,"y":-911000000000000000,"z":1810000000000000000}},"30016304":{"solarSystemId":30016304,"solarSystemName":"H:1N4A","location":{"x":9300000000000000000,"y":-977000000000000000,"z":1550000000000000000}},"30016305":{"solarSystemId":30016305,"solarSystemName":"Y:3316","location":{"x":8970000000000000000,"y":-1070000000000000000,"z":1470000000000000000}},"30016306":{"solarSystemId":30016306,"solarSystemName":"Y:1RO8","location":{"x":9150000000000000000,"y":-857000000000000000,"z":2240000000000000000}},"30016307":{"solarSystemId":30016307,"solarSystemName":"Z:1ORE","location":{"x":8950000000000000000,"y":-741000000000000000,"z":1670000000000000000}},"30016308":{"solarSystemId":30016308,"solarSystemName":"J:1E46","location":{"x":9530000000000000000,"y":-789000000000000000,"z":1860000000000000000}},"30016309":{"solarSystemId":30016309,"solarSystemName":"D:1902","location":{"x":9150000000000000000,"y":-1210000000000000000,"z":948000000000000000}},"30016310":{"solarSystemId":30016310,"solarSystemName":"Q:14I3","location":{"x":10100000000000000000,"y":-2250000000000000000,"z":1710000000000000000}},"30016311":{"solarSystemId":30016311,"solarSystemName":"H:1KR2","location":{"x":10000000000000000000,"y":-2400000000000000000,"z":1700000000000000000}},"30016312":{"solarSystemId":30016312,"solarSystemName":"H:21TR","location":{"x":8980000000000000000,"y":-338000000000000000,"z":-9040000000000000}},"30016313":{"solarSystemId":30016313,"solarSystemName":"B:19O8","location":{"x":8670000000000000000,"y":-538000000000000000,"z":-16600000000000000}},"30016314":{"solarSystemId":30016314,"solarSystemName":"G:185A","location":{"x":8760000000000000000,"y":-737000000000000000,"z":107000000000000000}},"30016315":{"solarSystemId":30016315,"solarSystemName":"D:164O","location":{"x":9020000000000000000,"y":-710000000000000000,"z":-11700000000000000}},"30016316":{"solarSystemId":30016316,"solarSystemName":"U:1V4E","location":{"x":9160000000000000000,"y":-666000000000000000,"z":754000000000000000}},"30016317":{"solarSystemId":30016317,"solarSystemName":"J:3R70","location":{"x":8840000000000000000,"y":-952000000000000000,"z":463000000000000000}},"30016318":{"solarSystemId":30016318,"solarSystemName":"U:20I3","location":{"x":8180000000000000000,"y":-11200000000000000,"z":1110000000000000000}},"30016319":{"solarSystemId":30016319,"solarSystemName":"P:3T60","location":{"x":8850000000000000000,"y":-250000000000000000,"z":-195000000000000000}},"30016320":{"solarSystemId":30016320,"solarSystemName":"G:23TE","location":{"x":8840000000000000000,"y":-383000000000000000,"z":743000000000000000}},"30016321":{"solarSystemId":30016321,"solarSystemName":"G:2IS2","location":{"x":8050000000000000000,"y":-446000000000000000,"z":584000000000000000}},"30016322":{"solarSystemId":30016322,"solarSystemName":"B:3AL2","location":{"x":8730000000000000000,"y":-1090000000000000000,"z":808000000000000000}},"30016323":{"solarSystemId":30016323,"solarSystemName":"D:2252","location":{"x":9600000000000000000,"y":-534000000000000000,"z":725000000000000000}},"30016324":{"solarSystemId":30016324,"solarSystemName":"D:3RON","location":{"x":9120000000000000000,"y":-351000000000000000,"z":140000000000000000}},"30016325":{"solarSystemId":30016325,"solarSystemName":"D:LSKV","location":{"x":9200000000000000000,"y":-111000000000000000,"z":-508000000000000000}},"30016326":{"solarSystemId":30016326,"solarSystemName":"B:33T9","location":{"x":8890000000000000000,"y":-709000000000000000,"z":1220000000000000000}},"30016327":{"solarSystemId":30016327,"solarSystemName":"B:20K1","location":{"x":7800000000000000000,"y":-992000000000000000,"z":-693000000000000000}},"30016328":{"solarSystemId":30016328,"solarSystemName":"H:2KI9","location":{"x":7130000000000000000,"y":-1010000000000000000,"z":-477000000000000000}},"30016329":{"solarSystemId":30016329,"solarSystemName":"U:2TS5","location":{"x":7590000000000000000,"y":-1240000000000000000,"z":-345000000000000000}},"30016330":{"solarSystemId":30016330,"solarSystemName":"Z:39TN","location":{"x":7370000000000000000,"y":-1100000000000000000,"z":-472000000000000000}},"30016331":{"solarSystemId":30016331,"solarSystemName":"Q:2191","location":{"x":8240000000000000000,"y":-785000000000000000,"z":-371000000000000000}},"30016332":{"solarSystemId":30016332,"solarSystemName":"G:1N9E","location":{"x":8080000000000000000,"y":-1300000000000000000,"z":-695000000000000000}},"30016333":{"solarSystemId":30016333,"solarSystemName":"B:36LV","location":{"x":8310000000000000000,"y":-1060000000000000000,"z":-776000000000000000}},"30016334":{"solarSystemId":30016334,"solarSystemName":"M:24K0","location":{"x":7980000000000000000,"y":-639000000000000000,"z":-1220000000000000000}},"30016335":{"solarSystemId":30016335,"solarSystemName":"H:278S","location":{"x":7300000000000000000,"y":-1220000000000000000,"z":-761000000000000000}},"30016336":{"solarSystemId":30016336,"solarSystemName":"B:1OTS","location":{"x":7830000000000000000,"y":-1470000000000000000,"z":-288000000000000000}},"30016337":{"solarSystemId":30016337,"solarSystemName":"J:3O6I","location":{"x":7830000000000000000,"y":-1040000000000000000,"z":-833000000000000000}},"30016338":{"solarSystemId":30016338,"solarSystemName":"G:28AV","location":{"x":8160000000000000000,"y":-884000000000000000,"z":-469000000000000000}},"30016339":{"solarSystemId":30016339,"solarSystemName":"Y:19V7","location":{"x":8340000000000000000,"y":-992000000000000000,"z":-1080000000000000000}},"30016340":{"solarSystemId":30016340,"solarSystemName":"G:3NON","location":{"x":8340000000000000000,"y":-2450000000000000000,"z":535000000000000000}},"30016341":{"solarSystemId":30016341,"solarSystemName":"Z:341R","location":{"x":6660000000000000000,"y":-2480000000000000000,"z":268000000000000000}},"30016342":{"solarSystemId":30016342,"solarSystemName":"B:1R30","location":{"x":7540000000000000000,"y":-1920000000000000000,"z":958000000000000000}},"30016343":{"solarSystemId":30016343,"solarSystemName":"Y:3TV4","location":{"x":8090000000000000000,"y":-3150000000000000000,"z":1060000000000000000}},"30016344":{"solarSystemId":30016344,"solarSystemName":"M:1R8A","location":{"x":7100000000000000000,"y":-3030000000000000000,"z":665000000000000000}},"30016345":{"solarSystemId":30016345,"solarSystemName":"D:1NSR","location":{"x":8530000000000000000,"y":-3290000000000000000,"z":840000000000000000}},"30016346":{"solarSystemId":30016346,"solarSystemName":"B:3IEO","location":{"x":8020000000000000000,"y":-2550000000000000000,"z":193000000000000000}},"30016347":{"solarSystemId":30016347,"solarSystemName":"G:4249","location":{"x":7530000000000000000,"y":-2720000000000000000,"z":70300000000000000}},"30016348":{"solarSystemId":30016348,"solarSystemName":"Y:2S7A","location":{"x":7450000000000000000,"y":-1900000000000000000,"z":562000000000000000}},"30016349":{"solarSystemId":30016349,"solarSystemName":"Z:2L6R","location":{"x":7400000000000000000,"y":-3020000000000000000,"z":1020000000000000000}},"30016350":{"solarSystemId":30016350,"solarSystemName":"B:3V1A","location":{"x":8020000000000000000,"y":-688000000000000000,"z":874000000000000000}},"30016351":{"solarSystemId":30016351,"solarSystemName":"Z:1LE3","location":{"x":8010000000000000000,"y":-1430000000000000000,"z":1120000000000000000}},"30016352":{"solarSystemId":30016352,"solarSystemName":"Y:3415","location":{"x":7700000000000000000,"y":-1250000000000000000,"z":1200000000000000000}},"30016353":{"solarSystemId":30016353,"solarSystemName":"M:S0S0","location":{"x":7920000000000000000,"y":-310000000000000000,"z":1530000000000000000}},"30016354":{"solarSystemId":30016354,"solarSystemName":"D:117O","location":{"x":8210000000000000000,"y":-1220000000000000000,"z":873000000000000000}},"30016355":{"solarSystemId":30016355,"solarSystemName":"Y:4KAR","location":{"x":7410000000000000000,"y":-1680000000000000000,"z":1170000000000000000}},"30016356":{"solarSystemId":30016356,"solarSystemName":"F:1NR5","location":{"x":7470000000000000000,"y":-1320000000000000000,"z":390000000000000000}},"30016357":{"solarSystemId":30016357,"solarSystemName":"H:1EII","location":{"x":7730000000000000000,"y":-1480000000000000000,"z":611000000000000000}},"30016358":{"solarSystemId":30016358,"solarSystemName":"F:2OVV","location":{"x":8310000000000000000,"y":-1170000000000000000,"z":1130000000000000000}},"30016359":{"solarSystemId":30016359,"solarSystemName":"H:1OLL","location":{"x":7560000000000000000,"y":-1360000000000000000,"z":1080000000000000000}},"30016360":{"solarSystemId":30016360,"solarSystemName":"Z:3TS4","location":{"x":8130000000000000000,"y":-804000000000000000,"z":1300000000000000000}},"30016361":{"solarSystemId":30016361,"solarSystemName":"B:2V35","location":{"x":7560000000000000000,"y":-1340000000000000000,"z":1380000000000000000}},"30016362":{"solarSystemId":30016362,"solarSystemName":"J:25OI","location":{"x":8000000000000000000,"y":-832000000000000000,"z":1080000000000000000}},"30016363":{"solarSystemId":30016363,"solarSystemName":"Q:21VK","location":{"x":7730000000000000000,"y":-1620000000000000000,"z":1130000000000000000}},"30016364":{"solarSystemId":30016364,"solarSystemName":"Y:4ROR","location":{"x":7700000000000000000,"y":-1340000000000000000,"z":386000000000000000}},"30016365":{"solarSystemId":30016365,"solarSystemName":"Q:IN62","location":{"x":7760000000000000000,"y":-561000000000000000,"z":1330000000000000000}},"30016366":{"solarSystemId":30016366,"solarSystemName":"Z:2AI6","location":{"x":11500000000000000000,"y":-4800000000000000000,"z":1890000000000000000}},"30016367":{"solarSystemId":30016367,"solarSystemName":"Q:2A2K","location":{"x":10700000000000000000,"y":-3490000000000000000,"z":415000000000000000}},"30016368":{"solarSystemId":30016368,"solarSystemName":"U:3139","location":{"x":10200000000000000000,"y":-5100000000000000000,"z":2480000000000000000}},"30016369":{"solarSystemId":30016369,"solarSystemName":"Q:39TR","location":{"x":11700000000000000000,"y":-4540000000000000000,"z":1640000000000000000}},"30016370":{"solarSystemId":30016370,"solarSystemName":"D:3NOI","location":{"x":10200000000000000000,"y":-4570000000000000000,"z":1590000000000000000}},"30016371":{"solarSystemId":30016371,"solarSystemName":"U:326L","location":{"x":11900000000000000000,"y":-4300000000000000000,"z":2060000000000000000}},"30016372":{"solarSystemId":30016372,"solarSystemName":"Q:17OT","location":{"x":11300000000000000000,"y":-4490000000000000000,"z":2290000000000000000}},"30016373":{"solarSystemId":30016373,"solarSystemName":"H:4543","location":{"x":9890000000000000000,"y":-4040000000000000000,"z":943000000000000000}},"30016374":{"solarSystemId":30016374,"solarSystemName":"H:2NRO","location":{"x":565000000000000000,"y":-1410000000000000000,"z":9060000000000000000}},"30016375":{"solarSystemId":30016375,"solarSystemName":"H:348I","location":{"x":291000000000000000,"y":-604000000000000000,"z":9250000000000000000}},"30016376":{"solarSystemId":30016376,"solarSystemName":"Z:T2T9","location":{"x":600000000000000000,"y":-1040000000000000000,"z":8850000000000000000}},"30016377":{"solarSystemId":30016377,"solarSystemName":"Y:1407","location":{"x":971000000000000000,"y":-948000000000000000,"z":9700000000000000000}},"30016378":{"solarSystemId":30016378,"solarSystemName":"D:3ITA","location":{"x":-40200000000000000,"y":-1140000000000000000,"z":9370000000000000000}},"30016379":{"solarSystemId":30016379,"solarSystemName":"Z:264K","location":{"x":630000000000000000,"y":-1480000000000000000,"z":9540000000000000000}},"30016380":{"solarSystemId":30016380,"solarSystemName":"M:44ER","location":{"x":451000000000000000,"y":-1400000000000000000,"z":7930000000000000000}},"30016381":{"solarSystemId":30016381,"solarSystemName":"G:2ORL","location":{"x":68400000000000000,"y":-1530000000000000000,"z":8920000000000000000}},"30016382":{"solarSystemId":30016382,"solarSystemName":"G:1SE0","location":{"x":796000000000000000,"y":-1610000000000000000,"z":9440000000000000000}},"30016383":{"solarSystemId":30016383,"solarSystemName":"M:3A2E","location":{"x":425000000000000000,"y":-1480000000000000000,"z":8290000000000000000}},"30016384":{"solarSystemId":30016384,"solarSystemName":"B:I7O7","location":{"x":-27100000000000000,"y":-1280000000000000000,"z":9460000000000000000}},"30016385":{"solarSystemId":30016385,"solarSystemName":"D:36NT","location":{"x":985000000000000000,"y":-1930000000000000000,"z":10000000000000000000}},"30016386":{"solarSystemId":30016386,"solarSystemName":"D:4R21","location":{"x":-1350000000000000000,"y":-1020000000000000000,"z":8210000000000000000}},"30016387":{"solarSystemId":30016387,"solarSystemName":"H:1ONS","location":{"x":-453000000000000000,"y":-1480000000000000000,"z":7500000000000000000}},"30016388":{"solarSystemId":30016388,"solarSystemName":"D:14VI","location":{"x":-573000000000000000,"y":-1050000000000000000,"z":7790000000000000000}},"30016389":{"solarSystemId":30016389,"solarSystemName":"Z:1731","location":{"x":-844000000000000000,"y":-1530000000000000000,"z":8220000000000000000}},"30016390":{"solarSystemId":30016390,"solarSystemName":"F:1O7A","location":{"x":-443000000000000000,"y":-1200000000000000000,"z":7340000000000000000}},"30016391":{"solarSystemId":30016391,"solarSystemName":"D:2935","location":{"x":-391000000000000000,"y":-1130000000000000000,"z":7840000000000000000}},"30016392":{"solarSystemId":30016392,"solarSystemName":"Z:254S","location":{"x":-1050000000000000000,"y":-1030000000000000000,"z":8440000000000000000}},"30016393":{"solarSystemId":30016393,"solarSystemName":"Z:1S1O","location":{"x":-499000000000000000,"y":-1210000000000000000,"z":8510000000000000000}},"30016394":{"solarSystemId":30016394,"solarSystemName":"G:11ES","location":{"x":-1010000000000000000,"y":-1250000000000000000,"z":7930000000000000000}},"30016395":{"solarSystemId":30016395,"solarSystemName":"B:3ISA","location":{"x":-511000000000000000,"y":-1490000000000000000,"z":8170000000000000000}},"30016396":{"solarSystemId":30016396,"solarSystemName":"M:20RT","location":{"x":-844000000000000000,"y":-811000000000000000,"z":7640000000000000000}},"30016397":{"solarSystemId":30016397,"solarSystemName":"D:18AA","location":{"x":-1500000000000000000,"y":-888000000000000000,"z":8050000000000000000}},"30016398":{"solarSystemId":30016398,"solarSystemName":"F:3TLS","location":{"x":-1640000000000000000,"y":-1470000000000000000,"z":7960000000000000000}},"30016399":{"solarSystemId":30016399,"solarSystemName":"G:3RR8","location":{"x":-220000000000000000,"y":-972000000000000000,"z":7740000000000000000}},"30016400":{"solarSystemId":30016400,"solarSystemName":"Z:I1OI","location":{"x":-593000000000000000,"y":-1460000000000000000,"z":7580000000000000000}},"30016401":{"solarSystemId":30016401,"solarSystemName":"M:347I","location":{"x":-579000000000000000,"y":-1190000000000000000,"z":7790000000000000000}},"30016402":{"solarSystemId":30016402,"solarSystemName":"Z:1K50","location":{"x":-1500000000000000000,"y":-1130000000000000000,"z":7970000000000000000}},"30016403":{"solarSystemId":30016403,"solarSystemName":"U:2SI8","location":{"x":-2170000000000000000,"y":-266000000000000000,"z":7480000000000000000}},"30016404":{"solarSystemId":30016404,"solarSystemName":"M:3T94","location":{"x":-1540000000000000000,"y":1200000000000000000,"z":8100000000000000000}},"30016405":{"solarSystemId":30016405,"solarSystemName":"Q:1289","location":{"x":-2410000000000000000,"y":28000000000000000,"z":7960000000000000000}},"30016406":{"solarSystemId":30016406,"solarSystemName":"B:A4E4","location":{"x":-2410000000000000000,"y":549000000000000000,"z":8330000000000000000}},"30016407":{"solarSystemId":30016407,"solarSystemName":"J:52I4","location":{"x":-2090000000000000000,"y":807000000000000000,"z":8540000000000000000}},"30016408":{"solarSystemId":30016408,"solarSystemName":"F:3INL","location":{"x":-2790000000000000000,"y":-86300000000000000,"z":7790000000000000000}},"30016409":{"solarSystemId":30016409,"solarSystemName":"D:2V0S","location":{"x":-2140000000000000000,"y":558000000000000000,"z":7470000000000000000}},"30016410":{"solarSystemId":30016410,"solarSystemName":"Z:2RA6","location":{"x":-1910000000000000000,"y":429000000000000000,"z":8180000000000000000}},"30016411":{"solarSystemId":30016411,"solarSystemName":"M:1ITT","location":{"x":-1250000000000000000,"y":-406000000000000000,"z":7570000000000000000}},"30016412":{"solarSystemId":30016412,"solarSystemName":"M:5040","location":{"x":-1150000000000000000,"y":26900000000000000,"z":7570000000000000000}},"30016413":{"solarSystemId":30016413,"solarSystemName":"B:1LAK","location":{"x":-2520000000000000000,"y":241000000000000000,"z":8590000000000000000}},"30016414":{"solarSystemId":30016414,"solarSystemName":"B:1IEN","location":{"x":-2580000000000000000,"y":-510000000000000000,"z":8280000000000000000}},"30016415":{"solarSystemId":30016415,"solarSystemName":"Q:4996","location":{"x":-2390000000000000000,"y":-297000000000000000,"z":7750000000000000000}},"30016416":{"solarSystemId":30016416,"solarSystemName":"B:29IS","location":{"x":-2470000000000000000,"y":-1440000000000000000,"z":8600000000000000000}},"30016417":{"solarSystemId":30016417,"solarSystemName":"Y:3051","location":{"x":-2100000000000000000,"y":-1520000000000000000,"z":9210000000000000000}},"30016418":{"solarSystemId":30016418,"solarSystemName":"H:2OTE","location":{"x":-1700000000000000000,"y":-1810000000000000000,"z":9260000000000000000}},"30016419":{"solarSystemId":30016419,"solarSystemName":"B:T9AT","location":{"x":-2060000000000000000,"y":-1300000000000000000,"z":9030000000000000000}},"30016420":{"solarSystemId":30016420,"solarSystemName":"Z:2EE4","location":{"x":-1880000000000000000,"y":-1380000000000000000,"z":9450000000000000000}},"30016421":{"solarSystemId":30016421,"solarSystemName":"H:1I3T","location":{"x":-2630000000000000000,"y":-1510000000000000000,"z":8400000000000000000}},"30016422":{"solarSystemId":30016422,"solarSystemName":"B:3A61","location":{"x":-2840000000000000000,"y":-1670000000000000000,"z":9170000000000000000}},"30016423":{"solarSystemId":30016423,"solarSystemName":"Z:3R5R","location":{"x":-2060000000000000000,"y":-1730000000000000000,"z":9120000000000000000}},"30016424":{"solarSystemId":30016424,"solarSystemName":"Y:2S9R","location":{"x":-2000000000000000000,"y":-981000000000000000,"z":8490000000000000000}},"30016425":{"solarSystemId":30016425,"solarSystemName":"M:3A52","location":{"x":-1830000000000000000,"y":-1410000000000000000,"z":9160000000000000000}},"30016426":{"solarSystemId":30016426,"solarSystemName":"G:3ETK","location":{"x":-3180000000000000000,"y":-1550000000000000000,"z":9580000000000000000}},"30016427":{"solarSystemId":30016427,"solarSystemName":"H:3SI3","location":{"x":-3230000000000000000,"y":-1690000000000000000,"z":9760000000000000000}},"30016428":{"solarSystemId":30016428,"solarSystemName":"G:3E9V","location":{"x":384000000000000000,"y":1350000000000000000,"z":8880000000000000000}},"30016429":{"solarSystemId":30016429,"solarSystemName":"B:36V8","location":{"x":-1350000000000000000,"y":1050000000000000000,"z":8380000000000000000}},"30016430":{"solarSystemId":30016430,"solarSystemName":"Q:3R4I","location":{"x":-71000000000000000,"y":1090000000000000000,"z":9380000000000000000}},"30016431":{"solarSystemId":30016431,"solarSystemName":"Y:293E","location":{"x":1080000000000000000,"y":2160000000000000000,"z":9550000000000000000}},"30016432":{"solarSystemId":30016432,"solarSystemName":"F:30IR","location":{"x":751000000000000000,"y":816000000000000000,"z":7960000000000000000}},"30016433":{"solarSystemId":30016433,"solarSystemName":"P:2RER","location":{"x":1050000000000000000,"y":1200000000000000000,"z":8360000000000000000}},"30016434":{"solarSystemId":30016434,"solarSystemName":"F:2LAR","location":{"x":-461000000000000000,"y":-364000000000000000,"z":9340000000000000000}},"30016435":{"solarSystemId":30016435,"solarSystemName":"H:2717","location":{"x":-1140000000000000000,"y":898000000000000000,"z":8120000000000000000}},"30016436":{"solarSystemId":30016436,"solarSystemName":"P:1AL5","location":{"x":454000000000000000,"y":1130000000000000000,"z":8410000000000000000}},"30016437":{"solarSystemId":30016437,"solarSystemName":"Z:2S78","location":{"x":1210000000000000000,"y":232000000000000000,"z":9270000000000000000}},"30016438":{"solarSystemId":30016438,"solarSystemName":"B:3E0L","location":{"x":244000000000000000,"y":-1190000000000000000,"z":7260000000000000000}},"30016439":{"solarSystemId":30016439,"solarSystemName":"B:2O1V","location":{"x":688000000000000000,"y":-1170000000000000000,"z":7370000000000000000}},"30016440":{"solarSystemId":30016440,"solarSystemName":"Y:23R7","location":{"x":802000000000000000,"y":-1580000000000000000,"z":7190000000000000000}},"30016441":{"solarSystemId":30016441,"solarSystemName":"H:K075","location":{"x":127000000000000000,"y":-1210000000000000000,"z":7940000000000000000}},"30016442":{"solarSystemId":30016442,"solarSystemName":"D:3OKS","location":{"x":139000000000000000,"y":-1440000000000000000,"z":7480000000000000000}},"30016443":{"solarSystemId":30016443,"solarSystemName":"U:22K9","location":{"x":-103000000000000000,"y":-556000000000000000,"z":8320000000000000000}},"30016444":{"solarSystemId":30016444,"solarSystemName":"J:4679","location":{"x":30800000000000000,"y":-1020000000000000000,"z":7480000000000000000}},"30016445":{"solarSystemId":30016445,"solarSystemName":"G:1TV9","location":{"x":-68600000000000000,"y":-1340000000000000000,"z":7660000000000000000}},"30016446":{"solarSystemId":30016446,"solarSystemName":"G:1K57","location":{"x":233000000000000000,"y":-1200000000000000000,"z":7070000000000000000}},"30016447":{"solarSystemId":30016447,"solarSystemName":"Y:15K1","location":{"x":527000000000000000,"y":-1220000000000000000,"z":7230000000000000000}},"30016448":{"solarSystemId":30016448,"solarSystemName":"Y:34R2","location":{"x":320000000000000000,"y":-1440000000000000000,"z":7680000000000000000}},"30016449":{"solarSystemId":30016449,"solarSystemName":"H:1L60","location":{"x":-78600000000000000,"y":-1680000000000000000,"z":7610000000000000000}},"30016450":{"solarSystemId":30016450,"solarSystemName":"J:3NV6","location":{"x":90000000000000000,"y":-963000000000000000,"z":7810000000000000000}},"30016451":{"solarSystemId":30016451,"solarSystemName":"Y:1OSA","location":{"x":90400000000000000,"y":-2030000000000000000,"z":7370000000000000000}},"30016452":{"solarSystemId":30016452,"solarSystemName":"Z:1AKK","location":{"x":-301000000000000000,"y":-1730000000000000000,"z":7550000000000000000}},"30016453":{"solarSystemId":30016453,"solarSystemName":"M:3A64","location":{"x":-200000000000000000,"y":-1810000000000000000,"z":7900000000000000000}},"30016454":{"solarSystemId":30016454,"solarSystemName":"Q:2850","location":{"x":-206000000000000000,"y":-1140000000000000000,"z":7070000000000000000}},"30016455":{"solarSystemId":30016455,"solarSystemName":"F:3T4V","location":{"x":451000000000000000,"y":-1270000000000000000,"z":7820000000000000000}},"30016456":{"solarSystemId":30016456,"solarSystemName":"J:3586","location":{"x":-400000000000000000,"y":-431000000000000000,"z":10900000000000000000}},"30016457":{"solarSystemId":30016457,"solarSystemName":"F:325E","location":{"x":-699000000000000000,"y":-636000000000000000,"z":8800000000000000000}},"30016458":{"solarSystemId":30016458,"solarSystemName":"P:3SOS","location":{"x":-1240000000000000000,"y":-1420000000000000000,"z":10500000000000000000}},"30016459":{"solarSystemId":30016459,"solarSystemName":"H:3VS5","location":{"x":-542000000000000000,"y":-573000000000000000,"z":10400000000000000000}},"30016460":{"solarSystemId":30016460,"solarSystemName":"U:23L0","location":{"x":-1340000000000000000,"y":-1040000000000000000,"z":9070000000000000000}},"30016461":{"solarSystemId":30016461,"solarSystemName":"U:O2IR","location":{"x":-113000000000000000,"y":-384000000000000000,"z":11100000000000000000}},"30016462":{"solarSystemId":30016462,"solarSystemName":"D:3386","location":{"x":-1180000000000000000,"y":-1820000000000000000,"z":10800000000000000000}},"30016463":{"solarSystemId":30016463,"solarSystemName":"F:23V1","location":{"x":-1500000000000000000,"y":-1110000000000000000,"z":10500000000000000000}},"30016464":{"solarSystemId":30016464,"solarSystemName":"Q:1N14","location":{"x":-1060000000000000000,"y":-1760000000000000000,"z":11100000000000000000}},"30016465":{"solarSystemId":30016465,"solarSystemName":"M:15I0","location":{"x":-1730000000000000000,"y":-1310000000000000000,"z":9710000000000000000}},"30016466":{"solarSystemId":30016466,"solarSystemName":"D:24TA","location":{"x":-1150000000000000000,"y":-844000000000000000,"z":10600000000000000000}},"30016467":{"solarSystemId":30016467,"solarSystemName":"Y:19L7","location":{"x":-697000000000000000,"y":-717000000000000000,"z":8750000000000000000}},"30016468":{"solarSystemId":30016468,"solarSystemName":"Z:2K96","location":{"x":-2130000000000000000,"y":-1750000000000000000,"z":6880000000000000000}},"30016469":{"solarSystemId":30016469,"solarSystemName":"J:3RTN","location":{"x":-1310000000000000000,"y":-1940000000000000000,"z":8310000000000000000}},"30016470":{"solarSystemId":30016470,"solarSystemName":"Z:36N3","location":{"x":-1910000000000000000,"y":-1290000000000000000,"z":7500000000000000000}},"30016471":{"solarSystemId":30016471,"solarSystemName":"Z:3O47","location":{"x":-1540000000000000000,"y":-1370000000000000000,"z":7160000000000000000}},"30016472":{"solarSystemId":30016472,"solarSystemName":"Z:3OO9","location":{"x":-1550000000000000000,"y":-2230000000000000000,"z":7670000000000000000}},"30016473":{"solarSystemId":30016473,"solarSystemName":"H:3919","location":{"x":-2200000000000000000,"y":-1800000000000000000,"z":7280000000000000000}},"30016474":{"solarSystemId":30016474,"solarSystemName":"J:1T89","location":{"x":-1570000000000000000,"y":-1150000000000000000,"z":7580000000000000000}},"30016475":{"solarSystemId":30016475,"solarSystemName":"P:3014","location":{"x":-769000000000000000,"y":-2250000000000000000,"z":7090000000000000000}},"30016476":{"solarSystemId":30016476,"solarSystemName":"U:2O9V","location":{"x":-953000000000000000,"y":-2250000000000000000,"z":6660000000000000000}},"30016477":{"solarSystemId":30016477,"solarSystemName":"J:2RST","location":{"x":-553000000000000000,"y":-1940000000000000000,"z":7440000000000000000}},"30016478":{"solarSystemId":30016478,"solarSystemName":"H:3268","location":{"x":-2000000000000000000,"y":-1740000000000000000,"z":7720000000000000000}},"30016479":{"solarSystemId":30016479,"solarSystemName":"D:16OR","location":{"x":-1040000000000000000,"y":-1670000000000000000,"z":7250000000000000000}},"30016480":{"solarSystemId":30016480,"solarSystemName":"J:3V6T","location":{"x":-829000000000000000,"y":-1400000000000000000,"z":7300000000000000000}},"30016481":{"solarSystemId":30016481,"solarSystemName":"D:1KNK","location":{"x":-1890000000000000000,"y":-1890000000000000000,"z":7620000000000000000}},"30016482":{"solarSystemId":30016482,"solarSystemName":"G:OVON","location":{"x":-1430000000000000000,"y":-2300000000000000000,"z":7400000000000000000}},"30016483":{"solarSystemId":30016483,"solarSystemName":"Z:36O6","location":{"x":-1910000000000000000,"y":-1780000000000000000,"z":7950000000000000000}},"30016484":{"solarSystemId":30016484,"solarSystemName":"D:28AT","location":{"x":1060000000000000000,"y":-979000000000000000,"z":8690000000000000000}},"30016485":{"solarSystemId":30016485,"solarSystemName":"Q:3TEE","location":{"x":1500000000000000000,"y":-1240000000000000000,"z":7860000000000000000}},"30016486":{"solarSystemId":30016486,"solarSystemName":"H:I469","location":{"x":1520000000000000000,"y":-554000000000000000,"z":7880000000000000000}},"30016487":{"solarSystemId":30016487,"solarSystemName":"G:R58O","location":{"x":2060000000000000000,"y":-906000000000000000,"z":8130000000000000000}},"30016488":{"solarSystemId":30016488,"solarSystemName":"Q:3VEI","location":{"x":1120000000000000000,"y":-1480000000000000000,"z":8000000000000000000}},"30016489":{"solarSystemId":30016489,"solarSystemName":"Z:3225","location":{"x":1480000000000000000,"y":-882000000000000000,"z":8350000000000000000}},"30016490":{"solarSystemId":30016490,"solarSystemName":"Q:2N8V","location":{"x":2380000000000000000,"y":-784000000000000000,"z":7940000000000000000}},"30016491":{"solarSystemId":30016491,"solarSystemName":"J:3428","location":{"x":1890000000000000000,"y":-984000000000000000,"z":8330000000000000000}},"30016492":{"solarSystemId":30016492,"solarSystemName":"B:36S6","location":{"x":1660000000000000000,"y":-1830000000000000000,"z":8250000000000000000}},"30016493":{"solarSystemId":30016493,"solarSystemName":"Y:L1T9","location":{"x":638000000000000000,"y":-1300000000000000000,"z":8040000000000000000}},"30016494":{"solarSystemId":30016494,"solarSystemName":"J:L2RL","location":{"x":1200000000000000000,"y":-1350000000000000000,"z":9170000000000000000}},"30016495":{"solarSystemId":30016495,"solarSystemName":"D:18V2","location":{"x":1010000000000000000,"y":-964000000000000000,"z":8970000000000000000}},"30016496":{"solarSystemId":30016496,"solarSystemName":"G:3TRR","location":{"x":1250000000000000000,"y":-1240000000000000000,"z":7870000000000000000}},"30016497":{"solarSystemId":30016497,"solarSystemName":"H:2T3L","location":{"x":-2160000000000000000,"y":-3330000000000000000,"z":8520000000000000000}},"30016498":{"solarSystemId":30016498,"solarSystemName":"Q:3RE8","location":{"x":-2070000000000000000,"y":-2160000000000000000,"z":9220000000000000000}},"30016499":{"solarSystemId":30016499,"solarSystemName":"Y:K2E3","location":{"x":-1280000000000000000,"y":-1780000000000000000,"z":8650000000000000000}},"30016500":{"solarSystemId":30016500,"solarSystemName":"H:37T4","location":{"x":-1170000000000000000,"y":-2800000000000000000,"z":8480000000000000000}},"30016501":{"solarSystemId":30016501,"solarSystemName":"J:32I9","location":{"x":-2090000000000000000,"y":-3320000000000000000,"z":8070000000000000000}},"30016502":{"solarSystemId":30016502,"solarSystemName":"Z:2LV3","location":{"x":-659000000000000000,"y":-1680000000000000000,"z":8590000000000000000}},"30016503":{"solarSystemId":30016503,"solarSystemName":"Y:4A9N","location":{"x":-1730000000000000000,"y":-2060000000000000000,"z":9320000000000000000}},"30016504":{"solarSystemId":30016504,"solarSystemName":"Q:1VRK","location":{"x":-783000000000000000,"y":-1860000000000000000,"z":8270000000000000000}},"30016505":{"solarSystemId":30016505,"solarSystemName":"U:132A","location":{"x":-1000000000000000000,"y":-2090000000000000000,"z":8950000000000000000}},"30016506":{"solarSystemId":30016506,"solarSystemName":"G:3TO7","location":{"x":-1610000000000000000,"y":-2160000000000000000,"z":9210000000000000000}},"30016507":{"solarSystemId":30016507,"solarSystemName":"U:1RV1","location":{"x":-513000000000000000,"y":-2590000000000000000,"z":9650000000000000000}},"30016508":{"solarSystemId":30016508,"solarSystemName":"D:2TIE","location":{"x":3830000000000000000,"y":-4890000000000000000,"z":271000000000000000}},"30016509":{"solarSystemId":30016509,"solarSystemName":"Q:2S74","location":{"x":1400000000000000000,"y":-3790000000000000000,"z":-673000000000000000}},"30016510":{"solarSystemId":30016510,"solarSystemName":"B:2IS3","location":{"x":2570000000000000000,"y":-5010000000000000000,"z":-272000000000000000}},"30016511":{"solarSystemId":30016511,"solarSystemName":"U:2L7A","location":{"x":3900000000000000000,"y":-5800000000000000000,"z":-1270000000000000000}},"30016512":{"solarSystemId":30016512,"solarSystemName":"B:25SS","location":{"x":1690000000000000000,"y":-5530000000000000000,"z":-1880000000000000000}},"30016513":{"solarSystemId":30016513,"solarSystemName":"Q:1SAI","location":{"x":3600000000000000000,"y":-5510000000000000000,"z":-1780000000000000000}},"30016514":{"solarSystemId":30016514,"solarSystemName":"U:224K","location":{"x":3220000000000000000,"y":-6460000000000000000,"z":-1230000000000000000}},"30016515":{"solarSystemId":30016515,"solarSystemName":"U:2ISK","location":{"x":7190000000000000000,"y":-6180000000000000000,"z":-3530000000000000000}},"30016516":{"solarSystemId":30016516,"solarSystemName":"J:2I27","location":{"x":6910000000000000000,"y":-7690000000000000000,"z":-5050000000000000000}},"30016517":{"solarSystemId":30016517,"solarSystemName":"J:2965","location":{"x":6420000000000000000,"y":-8210000000000000000,"z":-1780000000000000000}},"30016518":{"solarSystemId":30016518,"solarSystemName":"U:2LKS","location":{"x":4620000000000000000,"y":-8050000000000000000,"z":1000000000000000000}},"30016519":{"solarSystemId":30016519,"solarSystemName":"M:35VS","location":{"x":3820000000000000000,"y":-7040000000000000000,"z":-1400000000000000000}},"30016520":{"solarSystemId":30016520,"solarSystemName":"J:2IK8","location":{"x":1690000000000000000,"y":-7600000000000000000,"z":-2670000000000000000}},"30016521":{"solarSystemId":30016521,"solarSystemName":"F:2E17","location":{"x":3110000000000000000,"y":-6690000000000000000,"z":-4670000000000000000}},"30016522":{"solarSystemId":30016522,"solarSystemName":"H:29VV","location":{"x":1100000000000000000,"y":-7930000000000000000,"z":-3150000000000000000}},"30016523":{"solarSystemId":30016523,"solarSystemName":"G:32T2","location":{"x":3620000000000000000,"y":-7360000000000000000,"z":-2420000000000000000}},"30016524":{"solarSystemId":30016524,"solarSystemName":"B:3SR7","location":{"x":1540000000000000000,"y":-8210000000000000000,"z":-3430000000000000000}},"30016525":{"solarSystemId":30016525,"solarSystemName":"U:3KA8","location":{"x":2090000000000000000,"y":-7900000000000000000,"z":-2840000000000000000}},"30016526":{"solarSystemId":30016526,"solarSystemName":"P:33A3","location":{"x":4930000000000000000,"y":-4320000000000000000,"z":-2680000000000000000}},"30016527":{"solarSystemId":30016527,"solarSystemName":"D:3IKN","location":{"x":4840000000000000000,"y":-6470000000000000000,"z":-2490000000000000000}},"30016528":{"solarSystemId":30016528,"solarSystemName":"J:SNEA","location":{"x":4750000000000000000,"y":-6130000000000000000,"z":-1940000000000000000}},"30016529":{"solarSystemId":30016529,"solarSystemName":"Z:E91R","location":{"x":4840000000000000000,"y":-5470000000000000000,"z":-2540000000000000000}},"30016530":{"solarSystemId":30016530,"solarSystemName":"B:2433","location":{"x":4190000000000000000,"y":-5000000000000000000,"z":-2740000000000000000}},"30016531":{"solarSystemId":30016531,"solarSystemName":"M:2036","location":{"x":4840000000000000000,"y":-6450000000000000000,"z":-2020000000000000000}},"30016532":{"solarSystemId":30016532,"solarSystemName":"D:2O28","location":{"x":6100000000000000000,"y":-3360000000000000000,"z":-5730000000000000000}},"30016533":{"solarSystemId":30016533,"solarSystemName":"M:3T6A","location":{"x":3720000000000000000,"y":-2820000000000000000,"z":-4100000000000000000}},"30016534":{"solarSystemId":30016534,"solarSystemName":"Q:2VSE","location":{"x":5050000000000000000,"y":-3850000000000000000,"z":-4040000000000000000}},"30016535":{"solarSystemId":30016535,"solarSystemName":"F:3TRE","location":{"x":4620000000000000000,"y":-4370000000000000000,"z":-2990000000000000000}},"30016536":{"solarSystemId":30016536,"solarSystemName":"Q:168T","location":{"x":4060000000000000000,"y":-2310000000000000000,"z":-5210000000000000000}},"30016537":{"solarSystemId":30016537,"solarSystemName":"B:K8OL","location":{"x":3560000000000000000,"y":-2310000000000000000,"z":-4640000000000000000}},"30016538":{"solarSystemId":30016538,"solarSystemName":"Q:3177","location":{"x":5020000000000000000,"y":-2460000000000000000,"z":-2370000000000000000}},"30016539":{"solarSystemId":30016539,"solarSystemName":"G:19VA","location":{"x":4700000000000000000,"y":-2880000000000000000,"z":-5050000000000000000}},"30016540":{"solarSystemId":30016540,"solarSystemName":"P:3OKV","location":{"x":3090000000000000000,"y":-6610000000000000000,"z":-3600000000000000000}},"30016541":{"solarSystemId":30016541,"solarSystemName":"U:3OAS","location":{"x":3720000000000000000,"y":-4700000000000000000,"z":-2010000000000000000}},"30016542":{"solarSystemId":30016542,"solarSystemName":"Y:32RO","location":{"x":2820000000000000000,"y":-5450000000000000000,"z":-3720000000000000000}},"30016543":{"solarSystemId":30016543,"solarSystemName":"U:3RIV","location":{"x":2820000000000000000,"y":-5050000000000000000,"z":-3920000000000000000}},"30016544":{"solarSystemId":30016544,"solarSystemName":"D:32E9","location":{"x":2690000000000000000,"y":-6340000000000000000,"z":-3230000000000000000}},"30016545":{"solarSystemId":30016545,"solarSystemName":"B:39SS","location":{"x":3270000000000000000,"y":-6060000000000000000,"z":-3120000000000000000}},"30016546":{"solarSystemId":30016546,"solarSystemName":"H:V115","location":{"x":3740000000000000000,"y":-4760000000000000000,"z":-2720000000000000000}},"30016547":{"solarSystemId":30016547,"solarSystemName":"J:32L6","location":{"x":5390000000000000000,"y":-6000000000000000000,"z":-1450000000000000000}},"30016548":{"solarSystemId":30016548,"solarSystemName":"J:2T3R","location":{"x":6480000000000000000,"y":-5840000000000000000,"z":-1280000000000000000}},"30016549":{"solarSystemId":30016549,"solarSystemName":"D:2A09","location":{"x":7350000000000000000,"y":-6660000000000000000,"z":-955000000000000000}},"30016550":{"solarSystemId":30016550,"solarSystemName":"F:180R","location":{"x":5090000000000000000,"y":-6290000000000000000,"z":-2030000000000000000}},"30016551":{"solarSystemId":30016551,"solarSystemName":"H:2492","location":{"x":7350000000000000000,"y":-6380000000000000000,"z":-2550000000000000000}},"30016552":{"solarSystemId":30016552,"solarSystemName":"B:EAO4","location":{"x":6670000000000000000,"y":-6700000000000000000,"z":-1130000000000000000}},"30016553":{"solarSystemId":30016553,"solarSystemName":"P:3ST5","location":{"x":2990000000000000000,"y":-4170000000000000000,"z":2690000000000000000}},"30016554":{"solarSystemId":30016554,"solarSystemName":"F:39V2","location":{"x":7730000000000000000,"y":-5770000000000000000,"z":4000000000000000000}},"30016555":{"solarSystemId":30016555,"solarSystemName":"B:3261","location":{"x":4590000000000000000,"y":-6910000000000000000,"z":3220000000000000000}},"30016556":{"solarSystemId":30016556,"solarSystemName":"B:2I6R","location":{"x":2500000000000000000,"y":-7510000000000000000,"z":1370000000000000000}},"30016557":{"solarSystemId":30016557,"solarSystemName":"D:2I44","location":{"x":5480000000000000000,"y":-6590000000000000000,"z":3990000000000000000}},"30016558":{"solarSystemId":30016558,"solarSystemName":"B:2AVE","location":{"x":1740000000000000000,"y":-7630000000000000000,"z":1390000000000000000}},"30016559":{"solarSystemId":30016559,"solarSystemName":"Y:2I85","location":{"x":1460000000000000000,"y":-3140000000000000000,"z":4200000000000000000}},"30016560":{"solarSystemId":30016560,"solarSystemName":"D:2I04","location":{"x":805000000000000000,"y":-4300000000000000000,"z":3980000000000000000}},"30016561":{"solarSystemId":30016561,"solarSystemName":"P:1O10","location":{"x":1000000000000000000,"y":-3510000000000000000,"z":2180000000000000000}},"30016562":{"solarSystemId":30016562,"solarSystemName":"Q:2O7V","location":{"x":1300000000000000000,"y":-2530000000000000000,"z":2770000000000000000}},"30016563":{"solarSystemId":30016563,"solarSystemName":"P:1V3L","location":{"x":1020000000000000000,"y":-3070000000000000000,"z":2890000000000000000}},"30016564":{"solarSystemId":30016564,"solarSystemName":"Z:2OST","location":{"x":1440000000000000000,"y":-3130000000000000000,"z":3940000000000000000}},"30016565":{"solarSystemId":30016565,"solarSystemName":"F:38E6","location":{"x":2490000000000000000,"y":-4060000000000000000,"z":4440000000000000000}},"30016566":{"solarSystemId":30016566,"solarSystemName":"J:3RTS","location":{"x":1060000000000000000,"y":-3750000000000000000,"z":3650000000000000000}},"30016567":{"solarSystemId":30016567,"solarSystemName":"U:36IO","location":{"x":136000000000000000,"y":-3540000000000000000,"z":4300000000000000000}},"30016568":{"solarSystemId":30016568,"solarSystemName":"J:2S82","location":{"x":831000000000000000,"y":-3460000000000000000,"z":2520000000000000000}},"30016569":{"solarSystemId":30016569,"solarSystemName":"Y:3IL4","location":{"x":2520000000000000000,"y":-3580000000000000000,"z":4130000000000000000}},"30016570":{"solarSystemId":30016570,"solarSystemName":"F:3A0S","location":{"x":1830000000000000000,"y":-4120000000000000000,"z":4250000000000000000}},"30016571":{"solarSystemId":30016571,"solarSystemName":"J:29O7","location":{"x":997000000000000000,"y":-4410000000000000000,"z":2990000000000000000}},"30016572":{"solarSystemId":30016572,"solarSystemName":"Q:3VT6","location":{"x":2210000000000000000,"y":-2100000000000000000,"z":109000000000000000}},"30016573":{"solarSystemId":30016573,"solarSystemName":"M:2KI1","location":{"x":1800000000000000000,"y":-1820000000000000000,"z":1080000000000000000}},"30016574":{"solarSystemId":30016574,"solarSystemName":"J:3NEO","location":{"x":474000000000000000,"y":-1430000000000000000,"z":-15200000000000000}},"30016575":{"solarSystemId":30016575,"solarSystemName":"B:TTAA","location":{"x":746000000000000000,"y":-1840000000000000000,"z":-1030000000000000000}},"30016576":{"solarSystemId":30016576,"solarSystemName":"B:24O9","location":{"x":1630000000000000000,"y":-1280000000000000000,"z":1060000000000000000}},"30016577":{"solarSystemId":30016577,"solarSystemName":"H:21L6","location":{"x":402000000000000000,"y":-1890000000000000000,"z":682000000000000000}},"30016578":{"solarSystemId":30016578,"solarSystemName":"P:2V1K","location":{"x":162000000000000000,"y":-1840000000000000000,"z":-54200000000000000}},"30016579":{"solarSystemId":30016579,"solarSystemName":"P:1SN9","location":{"x":155000000000000000,"y":-1980000000000000000,"z":840000000000000000}},"30016580":{"solarSystemId":30016580,"solarSystemName":"M:31NO","location":{"x":1360000000000000000,"y":-2530000000000000000,"z":369000000000000000}},"30016581":{"solarSystemId":30016581,"solarSystemName":"U:3T67","location":{"x":54500000000000000,"y":-2780000000000000000,"z":116000000000000000}},"30016582":{"solarSystemId":30016582,"solarSystemName":"F:39R7","location":{"x":558000000000000000,"y":-2150000000000000000,"z":-591000000000000000}},"30016583":{"solarSystemId":30016583,"solarSystemName":"Z:2ITV","location":{"x":714000000000000000,"y":-3700000000000000000,"z":476000000000000000}},"30016584":{"solarSystemId":30016584,"solarSystemName":"Q:3241","location":{"x":847000000000000000,"y":-2210000000000000000,"z":654000000000000000}},"30016585":{"solarSystemId":30016585,"solarSystemName":"M:32VK","location":{"x":216000000000000000,"y":-1430000000000000000,"z":605000000000000000}},"30016586":{"solarSystemId":30016586,"solarSystemName":"D:2K40","location":{"x":617000000000000000,"y":-1260000000000000000,"z":357000000000000000}},"30016587":{"solarSystemId":30016587,"solarSystemName":"Y:2OE6","location":{"x":925000000000000000,"y":-2650000000000000000,"z":-417000000000000000}},"30016588":{"solarSystemId":30016588,"solarSystemName":"Q:3S8A","location":{"x":1930000000000000000,"y":-1360000000000000000,"z":-295000000000000000}},"30016589":{"solarSystemId":30016589,"solarSystemName":"F:3RE3","location":{"x":1220000000000000000,"y":-800000000000000000,"z":-865000000000000000}},"30016590":{"solarSystemId":30016590,"solarSystemName":"J:105T","location":{"x":2000000000000000000,"y":-1330000000000000000,"z":431000000000000000}},"30016591":{"solarSystemId":30016591,"solarSystemName":"Q:2TSS","location":{"x":1610000000000000000,"y":-1230000000000000000,"z":-182000000000000000}},"30016592":{"solarSystemId":30016592,"solarSystemName":"G:2O99","location":{"x":844000000000000000,"y":-721000000000000000,"z":237000000000000000}},"30016593":{"solarSystemId":30016593,"solarSystemName":"J:1TLL","location":{"x":1970000000000000000,"y":-988000000000000000,"z":-1050000000000000000}},"30016594":{"solarSystemId":30016594,"solarSystemName":"B:173K","location":{"x":1980000000000000000,"y":-978000000000000000,"z":-628000000000000000}},"30016595":{"solarSystemId":30016595,"solarSystemName":"J:NAN9","location":{"x":1260000000000000000,"y":-1040000000000000000,"z":-778000000000000000}},"30016596":{"solarSystemId":30016596,"solarSystemName":"G:LKSR","location":{"x":1900000000000000000,"y":-863000000000000000,"z":397000000000000000}},"30016597":{"solarSystemId":30016597,"solarSystemName":"P:3T64","location":{"x":2030000000000000000,"y":-1810000000000000000,"z":-627000000000000000}},"30016598":{"solarSystemId":30016598,"solarSystemName":"Z:2L4A","location":{"x":472000000000000000,"y":-1160000000000000000,"z":-333000000000000000}},"30016599":{"solarSystemId":30016599,"solarSystemName":"U:3882","location":{"x":1130000000000000000,"y":-1030000000000000000,"z":-117000000000000000}},"30016600":{"solarSystemId":30016600,"solarSystemName":"Y:30EI","location":{"x":1080000000000000000,"y":-944000000000000000,"z":-1030000000000000000}},"30016601":{"solarSystemId":30016601,"solarSystemName":"D:3SAE","location":{"x":2020000000000000000,"y":-1050000000000000000,"z":552000000000000000}},"30016602":{"solarSystemId":30016602,"solarSystemName":"Q:K12T","location":{"x":1220000000000000000,"y":-559000000000000000,"z":-64500000000000000}},"30016603":{"solarSystemId":30016603,"solarSystemName":"M:198T","location":{"x":1720000000000000000,"y":-988000000000000000,"z":-588000000000000000}},"30016604":{"solarSystemId":30016604,"solarSystemName":"D:204O","location":{"x":564000000000000000,"y":-1120000000000000000,"z":-157000000000000000}},"30016605":{"solarSystemId":30016605,"solarSystemName":"U:2RIR","location":{"x":3870000000000000000,"y":-1820000000000000000,"z":1220000000000000000}},"30016606":{"solarSystemId":30016606,"solarSystemName":"M:2NN6","location":{"x":4080000000000000000,"y":-1380000000000000000,"z":689000000000000000}},"30016607":{"solarSystemId":30016607,"solarSystemName":"H:269K","location":{"x":1650000000000000000,"y":-1290000000000000000,"z":1150000000000000000}},"30016608":{"solarSystemId":30016608,"solarSystemName":"U:NKS1","location":{"x":4080000000000000000,"y":-1420000000000000000,"z":385000000000000000}},"30016609":{"solarSystemId":30016609,"solarSystemName":"B:112A","location":{"x":2550000000000000000,"y":-1650000000000000000,"z":947000000000000000}},"30016610":{"solarSystemId":30016610,"solarSystemName":"Q:3ENI","location":{"x":4220000000000000000,"y":-1190000000000000000,"z":-84600000000000000}},"30016611":{"solarSystemId":30016611,"solarSystemName":"U:2E06","location":{"x":2840000000000000000,"y":-1340000000000000000,"z":1470000000000000000}},"30016612":{"solarSystemId":30016612,"solarSystemName":"J:RNS5","location":{"x":4120000000000000000,"y":-1040000000000000000,"z":-856000000000000000}},"30016613":{"solarSystemId":30016613,"solarSystemName":"J:35N9","location":{"x":3500000000000000000,"y":-1910000000000000000,"z":592000000000000000}},"30016614":{"solarSystemId":30016614,"solarSystemName":"B:30A7","location":{"x":2050000000000000000,"y":-612000000000000000,"z":655000000000000000}},"30016615":{"solarSystemId":30016615,"solarSystemName":"M:3537","location":{"x":2800000000000000000,"y":-1260000000000000000,"z":485000000000000000}},"30016616":{"solarSystemId":30016616,"solarSystemName":"F:3A5I","location":{"x":4220000000000000000,"y":-1200000000000000000,"z":-323000000000000000}},"30016617":{"solarSystemId":30016617,"solarSystemName":"B:36AS","location":{"x":3210000000000000000,"y":-816000000000000000,"z":1240000000000000000}},"30016618":{"solarSystemId":30016618,"solarSystemName":"Z:1VO1","location":{"x":2890000000000000000,"y":-1630000000000000000,"z":766000000000000000}},"30016619":{"solarSystemId":30016619,"solarSystemName":"U:4SIT","location":{"x":3070000000000000000,"y":-53800000000000000,"z":515000000000000000}},"30016620":{"solarSystemId":30016620,"solarSystemName":"D:2LL2","location":{"x":2610000000000000000,"y":-1770000000000000000,"z":1160000000000000000}},"30016621":{"solarSystemId":30016621,"solarSystemName":"Z:2EV8","location":{"x":1320000000000000000,"y":-4580000000000000000,"z":2500000000000000000}},"30016622":{"solarSystemId":30016622,"solarSystemName":"D:2I2S","location":{"x":898000000000000000,"y":-5620000000000000000,"z":1960000000000000000}},"30016623":{"solarSystemId":30016623,"solarSystemName":"B:3494","location":{"x":2690000000000000000,"y":-5800000000000000000,"z":1090000000000000000}},"30016624":{"solarSystemId":30016624,"solarSystemName":"D:3424","location":{"x":1380000000000000000,"y":-4700000000000000000,"z":1500000000000000000}},"30016625":{"solarSystemId":30016625,"solarSystemName":"F:2O97","location":{"x":2670000000000000000,"y":-4730000000000000000,"z":1300000000000000000}},"30016626":{"solarSystemId":30016626,"solarSystemName":"Q:2913","location":{"x":2240000000000000000,"y":-5120000000000000000,"z":1610000000000000000}},"30016627":{"solarSystemId":30016627,"solarSystemName":"J:2129","location":{"x":2760000000000000000,"y":-4980000000000000000,"z":615000000000000000}},"30016628":{"solarSystemId":30016628,"solarSystemName":"Y:325L","location":{"x":3140000000000000000,"y":-3240000000000000000,"z":-1620000000000000000}},"30016629":{"solarSystemId":30016629,"solarSystemName":"Q:3S1E","location":{"x":3650000000000000000,"y":-3650000000000000000,"z":-930000000000000000}},"30016630":{"solarSystemId":30016630,"solarSystemName":"B:2VST","location":{"x":2130000000000000000,"y":-2410000000000000000,"z":-1570000000000000000}},"30016631":{"solarSystemId":30016631,"solarSystemName":"G:19IS","location":{"x":2710000000000000000,"y":-1580000000000000000,"z":169000000000000000}},"30016632":{"solarSystemId":30016632,"solarSystemName":"P:25I1","location":{"x":2550000000000000000,"y":-1650000000000000000,"z":552000000000000000}},"30016633":{"solarSystemId":30016633,"solarSystemName":"J:1OT1","location":{"x":1920000000000000000,"y":-1980000000000000000,"z":-1080000000000000000}},"30016634":{"solarSystemId":30016634,"solarSystemName":"D:38V8","location":{"x":2340000000000000000,"y":-3230000000000000000,"z":-1370000000000000000}},"30016635":{"solarSystemId":30016635,"solarSystemName":"D:2NO3","location":{"x":2990000000000000000,"y":-1410000000000000000,"z":-895000000000000000}},"30016636":{"solarSystemId":30016636,"solarSystemName":"J:2NR0","location":{"x":2590000000000000000,"y":-2730000000000000000,"z":-440000000000000000}},"30016637":{"solarSystemId":30016637,"solarSystemName":"F:2I8S","location":{"x":2550000000000000000,"y":-3550000000000000000,"z":-1200000000000000000}},"30016638":{"solarSystemId":30016638,"solarSystemName":"B:IOAN","location":{"x":1960000000000000000,"y":-2120000000000000000,"z":-1450000000000000000}},"30016639":{"solarSystemId":30016639,"solarSystemName":"H:4KT1","location":{"x":1340000000000000000,"y":-2160000000000000000,"z":-1360000000000000000}},"30016640":{"solarSystemId":30016640,"solarSystemName":"H:V5R1","location":{"x":3360000000000000000,"y":-2980000000000000000,"z":-1850000000000000000}},"30016641":{"solarSystemId":30016641,"solarSystemName":"Z:4S8V","location":{"x":3650000000000000000,"y":-2120000000000000000,"z":-470000000000000000}},"30016642":{"solarSystemId":30016642,"solarSystemName":"U:2K12","location":{"x":12600000000000000000,"y":-722000000000000000,"z":-2690000000000000000}},"30016643":{"solarSystemId":30016643,"solarSystemName":"J:1L9O","location":{"x":12600000000000000000,"y":-1480000000000000000,"z":-2780000000000000000}},"30016644":{"solarSystemId":30016644,"solarSystemName":"J:1L8I","location":{"x":11300000000000000000,"y":1470000000000000,"z":-1460000000000000000}},"30016645":{"solarSystemId":30016645,"solarSystemName":"Y:3SK2","location":{"x":11300000000000000000,"y":-228000000000000000,"z":-1870000000000000000}},"30016646":{"solarSystemId":30016646,"solarSystemName":"H:1L68","location":{"x":11500000000000000000,"y":-540000000000000000,"z":-1800000000000000000}},"30016647":{"solarSystemId":30016647,"solarSystemName":"Y:398T","location":{"x":11200000000000000000,"y":-237000000000000000,"z":-1780000000000000000}},"30016648":{"solarSystemId":30016648,"solarSystemName":"P:3VTO","location":{"x":11800000000000000000,"y":-1100000000000000000,"z":-1650000000000000000}},"30016649":{"solarSystemId":30016649,"solarSystemName":"U:2704","location":{"x":11000000000000000000,"y":-368000000000000000,"z":-1820000000000000000}},"30016650":{"solarSystemId":30016650,"solarSystemName":"D:3SLN","location":{"x":11300000000000000000,"y":229000000000000000,"z":-2460000000000000000}},"30016651":{"solarSystemId":30016651,"solarSystemName":"P:30I2","location":{"x":11100000000000000000,"y":-893000000000000000,"z":-1630000000000000000}},"30016652":{"solarSystemId":30016652,"solarSystemName":"G:1L68","location":{"x":12300000000000000000,"y":-524000000000000000,"z":-2160000000000000000}},"30016653":{"solarSystemId":30016653,"solarSystemName":"G:12N8","location":{"x":10800000000000000000,"y":-1070000000000000000,"z":68100000000000000}},"30016654":{"solarSystemId":30016654,"solarSystemName":"M:2INS","location":{"x":9980000000000000000,"y":-786000000000000000,"z":66600000000000000}},"30016655":{"solarSystemId":30016655,"solarSystemName":"M:2IK2","location":{"x":10200000000000000000,"y":-925000000000000000,"z":398000000000000000}},"30016656":{"solarSystemId":30016656,"solarSystemName":"F:10SL","location":{"x":9320000000000000000,"y":-1110000000000000000,"z":305000000000000000}},"30016657":{"solarSystemId":30016657,"solarSystemName":"U:2T8K","location":{"x":9350000000000000000,"y":-858000000000000000,"z":-519000000000000000}},"30016658":{"solarSystemId":30016658,"solarSystemName":"M:O4L3","location":{"x":10000000000000000000,"y":-1120000000000000000,"z":-90600000000000000}},"30016659":{"solarSystemId":30016659,"solarSystemName":"B:3SNE","location":{"x":9800000000000000000,"y":-563000000000000000,"z":-141000000000000000}},"30016660":{"solarSystemId":30016660,"solarSystemName":"M:1T0R","location":{"x":9820000000000000000,"y":-1080000000000000000,"z":718000000000000000}},"30016661":{"solarSystemId":30016661,"solarSystemName":"G:1768","location":{"x":10200000000000000000,"y":-148000000000000000,"z":163000000000000000}},"30016662":{"solarSystemId":30016662,"solarSystemName":"M:23T1","location":{"x":9890000000000000000,"y":-661000000000000000,"z":-775000000000000000}},"30016663":{"solarSystemId":30016663,"solarSystemName":"M:3164","location":{"x":9850000000000000000,"y":-547000000000000000,"z":-219000000000000000}},"30016664":{"solarSystemId":30016664,"solarSystemName":"F:26N4","location":{"x":9780000000000000000,"y":-909000000000000000,"z":804000000000000000}},"30016665":{"solarSystemId":30016665,"solarSystemName":"Y:1N79","location":{"x":11000000000000000000,"y":-555000000000000000,"z":-1370000000000000000}},"30016666":{"solarSystemId":30016666,"solarSystemName":"P:1KSR","location":{"x":10600000000000000000,"y":-203000000000000000,"z":-1970000000000000000}},"30016667":{"solarSystemId":30016667,"solarSystemName":"D:E9RT","location":{"x":10500000000000000000,"y":-125000000000000000,"z":-2710000000000000000}},"30016668":{"solarSystemId":30016668,"solarSystemName":"U:VIK7","location":{"x":10600000000000000000,"y":751000000000000000,"z":-2130000000000000000}},"30016669":{"solarSystemId":30016669,"solarSystemName":"J:3O5S","location":{"x":10300000000000000000,"y":-1010000000000000000,"z":-1310000000000000000}},"30016670":{"solarSystemId":30016670,"solarSystemName":"U:3VON","location":{"x":10500000000000000000,"y":-123000000000000000,"z":-2540000000000000000}},"30016671":{"solarSystemId":30016671,"solarSystemName":"B:1E35","location":{"x":11100000000000000000,"y":65900000000000000,"z":-2370000000000000000}},"30016672":{"solarSystemId":30016672,"solarSystemName":"M:2KLR","location":{"x":10500000000000000000,"y":-57800000000000000,"z":-2590000000000000000}},"30016673":{"solarSystemId":30016673,"solarSystemName":"G:22K0","location":{"x":10100000000000000000,"y":-252000000000000000,"z":-1060000000000000000}},"30016674":{"solarSystemId":30016674,"solarSystemName":"Y:1RL8","location":{"x":10800000000000000000,"y":157000000000000000,"z":-2060000000000000000}},"30016675":{"solarSystemId":30016675,"solarSystemName":"Y:2002","location":{"x":10800000000000000000,"y":-91800000000000000,"z":-2600000000000000000}},"30016676":{"solarSystemId":30016676,"solarSystemName":"D:3032","location":{"x":10200000000000000000,"y":-1100000000000000000,"z":-945000000000000000}},"30016677":{"solarSystemId":30016677,"solarSystemName":"P:10R8","location":{"x":11400000000000000000,"y":-863000000000000000,"z":-77200000000000000}},"30016678":{"solarSystemId":30016678,"solarSystemName":"D:37O4","location":{"x":11000000000000000000,"y":-1330000000000000000,"z":193000000000000000}},"30016679":{"solarSystemId":30016679,"solarSystemName":"H:1348","location":{"x":12200000000000000000,"y":-1100000000000000000,"z":554000000000000000}},"30016680":{"solarSystemId":30016680,"solarSystemName":"U:1VE2","location":{"x":11500000000000000000,"y":-962000000000000000,"z":-938000000000000000}},"30016681":{"solarSystemId":30016681,"solarSystemName":"H:2812","location":{"x":11400000000000000000,"y":-1410000000000000000,"z":-6820000000000000}},"30016682":{"solarSystemId":30016682,"solarSystemName":"U:1V84","location":{"x":10100000000000000000,"y":371000000000000000,"z":-544000000000000000}},"30016683":{"solarSystemId":30016683,"solarSystemName":"F:SN30","location":{"x":11400000000000000000,"y":-956000000000000000,"z":516000000000000000}},"30016684":{"solarSystemId":30016684,"solarSystemName":"Z:2L0L","location":{"x":11800000000000000000,"y":-314000000000000000,"z":593000000000000000}},"30016685":{"solarSystemId":30016685,"solarSystemName":"B:20LT","location":{"x":10700000000000000000,"y":-2020000000000000000,"z":-878000000000000000}},"30016686":{"solarSystemId":30016686,"solarSystemName":"Q:LK5R","location":{"x":10900000000000000000,"y":95200000000000000,"z":-838000000000000000}},"30016687":{"solarSystemId":30016687,"solarSystemName":"H:SK46","location":{"x":11000000000000000000,"y":-1480000000000000000,"z":-589000000000000000}},"30016688":{"solarSystemId":30016688,"solarSystemName":"G:2E62","location":{"x":11300000000000000000,"y":-477000000000000000,"z":-244000000000000000}},"30016689":{"solarSystemId":30016689,"solarSystemName":"Q:1NTR","location":{"x":10300000000000000000,"y":-208000000000000000,"z":-600000000000000000}},"30016690":{"solarSystemId":30016690,"solarSystemName":"D:1L26","location":{"x":11200000000000000000,"y":-411000000000000000,"z":49900000000000000}},"30016691":{"solarSystemId":30016691,"solarSystemName":"U:36O3","location":{"x":12600000000000000000,"y":-2300000000000000000,"z":-941000000000000000}},"30016692":{"solarSystemId":30016692,"solarSystemName":"J:36KI","location":{"x":13500000000000000000,"y":-2240000000000000000,"z":-863000000000000000}},"30016693":{"solarSystemId":30016693,"solarSystemName":"H:1R2L","location":{"x":13300000000000000000,"y":-1640000000000000000,"z":-103000000000000000}},"30016694":{"solarSystemId":30016694,"solarSystemName":"Z:EK47","location":{"x":12500000000000000000,"y":-2030000000000000000,"z":-250000000000000000}},"30016695":{"solarSystemId":30016695,"solarSystemName":"Z:2SOE","location":{"x":12000000000000000000,"y":-2410000000000000000,"z":-934000000000000000}},"30016696":{"solarSystemId":30016696,"solarSystemName":"D:IR7I","location":{"x":10800000000000000000,"y":-2310000000000000000,"z":-239000000000000000}},"30016697":{"solarSystemId":30016697,"solarSystemName":"M:3SEE","location":{"x":12500000000000000000,"y":-1860000000000000000,"z":521000000000000000}},"30016698":{"solarSystemId":30016698,"solarSystemName":"M:3106","location":{"x":12100000000000000000,"y":-2240000000000000000,"z":-1740000000000000000}},"30016699":{"solarSystemId":30016699,"solarSystemName":"Q:3402","location":{"x":12200000000000000000,"y":-2180000000000000000,"z":631000000000000000}},"30016700":{"solarSystemId":30016700,"solarSystemName":"H:K0ST","location":{"x":11300000000000000000,"y":-1730000000000000000,"z":-313000000000000000}},"30016701":{"solarSystemId":30016701,"solarSystemName":"G:322I","location":{"x":11700000000000000000,"y":-2300000000000000000,"z":601000000000000000}},"30016702":{"solarSystemId":30016702,"solarSystemName":"J:377O","location":{"x":10500000000000000000,"y":-2330000000000000000,"z":-3570000000000000000}},"30016703":{"solarSystemId":30016703,"solarSystemName":"P:AK83","location":{"x":11300000000000000000,"y":-3360000000000000000,"z":-4410000000000000000}},"30016704":{"solarSystemId":30016704,"solarSystemName":"P:32N0","location":{"x":12000000000000000000,"y":-5710000000000000000,"z":-1780000000000000000}},"30016705":{"solarSystemId":30016705,"solarSystemName":"Q:11T0","location":{"x":11400000000000000000,"y":-4370000000000000000,"z":-3580000000000000000}},"30016706":{"solarSystemId":30016706,"solarSystemName":"Z:LV2V","location":{"x":10700000000000000000,"y":-2090000000000000000,"z":-3710000000000000000}},"30016707":{"solarSystemId":30016707,"solarSystemName":"F:T5RV","location":{"x":10500000000000000000,"y":-3660000000000000000,"z":-3670000000000000000}},"30016708":{"solarSystemId":30016708,"solarSystemName":"F:1V40","location":{"x":11800000000000000000,"y":-350000000000000000,"z":-4690000000000000000}},"30016709":{"solarSystemId":30016709,"solarSystemName":"D:AK53","location":{"x":11500000000000000000,"y":-123000000000000000,"z":-3720000000000000000}},"30016710":{"solarSystemId":30016710,"solarSystemName":"G:1I12","location":{"x":11600000000000000000,"y":-103000000000000000,"z":-3920000000000000000}},"30016711":{"solarSystemId":30016711,"solarSystemName":"G:EL5V","location":{"x":11200000000000000000,"y":-347000000000000000,"z":-5120000000000000000}},"30016712":{"solarSystemId":30016712,"solarSystemName":"P:IT91","location":{"x":11000000000000000000,"y":35000000000000000,"z":-4580000000000000000}},"30016713":{"solarSystemId":30016713,"solarSystemName":"H:3TRK","location":{"x":11200000000000000000,"y":-647000000000000000,"z":-4940000000000000000}},"30016714":{"solarSystemId":30016714,"solarSystemName":"Y:35V2","location":{"x":12300000000000000000,"y":-304000000000000000,"z":-4030000000000000000}},"30016715":{"solarSystemId":30016715,"solarSystemName":"Z:1331","location":{"x":11300000000000000000,"y":-12600000000000000,"z":-4220000000000000000}},"30016716":{"solarSystemId":30016716,"solarSystemName":"B:2I09","location":{"x":11500000000000000000,"y":-485000000000000000,"z":-5220000000000000000}},"30016717":{"solarSystemId":30016717,"solarSystemName":"P:3S0T","location":{"x":10700000000000000000,"y":342000000000000000,"z":-4180000000000000000}},"30016718":{"solarSystemId":30016718,"solarSystemName":"B:320S","location":{"x":11600000000000000000,"y":-414000000000000000,"z":-3500000000000000000}},"30016719":{"solarSystemId":30016719,"solarSystemName":"D:2I21","location":{"x":13400000000000000000,"y":-2610000000000000000,"z":-2850000000000000000}},"30016720":{"solarSystemId":30016720,"solarSystemName":"P:2080","location":{"x":12000000000000000000,"y":-2270000000000000000,"z":-2590000000000000000}},"30016721":{"solarSystemId":30016721,"solarSystemName":"B:48R1","location":{"x":12300000000000000000,"y":-2820000000000000000,"z":-2990000000000000000}},"30016722":{"solarSystemId":30016722,"solarSystemName":"M:19OV","location":{"x":12400000000000000000,"y":-1920000000000000000,"z":-3820000000000000000}},"30016723":{"solarSystemId":30016723,"solarSystemName":"Y:EIT3","location":{"x":11100000000000000000,"y":-1930000000000000000,"z":-2180000000000000000}},"30016724":{"solarSystemId":30016724,"solarSystemName":"F:1039","location":{"x":11700000000000000000,"y":-2190000000000000000,"z":-1950000000000000000}},"30016725":{"solarSystemId":30016725,"solarSystemName":"Q:1L9S","location":{"x":12900000000000000000,"y":-2420000000000000000,"z":-2070000000000000000}},"30016726":{"solarSystemId":30016726,"solarSystemName":"Q:1INS","location":{"x":13400000000000000000,"y":-2560000000000000000,"z":-2240000000000000000}},"30016727":{"solarSystemId":30016727,"solarSystemName":"G:1OA4","location":{"x":12800000000000000000,"y":-3000000000000000000,"z":-3840000000000000000}},"30016728":{"solarSystemId":30016728,"solarSystemName":"U:1KN2","location":{"x":12700000000000000000,"y":-2340000000000000000,"z":-5660000000000000000}},"30016729":{"solarSystemId":30016729,"solarSystemName":"M:2OS7","location":{"x":12300000000000000000,"y":-294000000000000000,"z":-5330000000000000000}},"30016730":{"solarSystemId":30016730,"solarSystemName":"B:2SNI","location":{"x":12800000000000000000,"y":-1580000000000000000,"z":-5140000000000000000}},"30016731":{"solarSystemId":30016731,"solarSystemName":"J:18OL","location":{"x":12100000000000000000,"y":-102000000000000000,"z":-6160000000000000000}},"30016732":{"solarSystemId":30016732,"solarSystemName":"M:2688","location":{"x":13600000000000000000,"y":-127000000000000000,"z":-4210000000000000000}},"30016733":{"solarSystemId":30016733,"solarSystemName":"Z:1I17","location":{"x":12300000000000000000,"y":-552000000000000000,"z":-5820000000000000000}},"30016734":{"solarSystemId":30016734,"solarSystemName":"J:251R","location":{"x":12900000000000000000,"y":-31700000000000000,"z":-3630000000000000000}},"30016735":{"solarSystemId":30016735,"solarSystemName":"J:25EK","location":{"x":13500000000000000000,"y":632000000000000000,"z":-5450000000000000000}},"30016736":{"solarSystemId":30016736,"solarSystemName":"G:3RL0","location":{"x":13100000000000000000,"y":262000000000000000,"z":-3740000000000000000}},"30016737":{"solarSystemId":30016737,"solarSystemName":"Z:4539","location":{"x":12400000000000000000,"y":-479000000000000000,"z":-4380000000000000000}},"30016738":{"solarSystemId":30016738,"solarSystemName":"H:3577","location":{"x":12800000000000000000,"y":-53000000000000000,"z":-4890000000000000000}},"30016739":{"solarSystemId":30016739,"solarSystemName":"Y:3SEA","location":{"x":-24800000000000000000,"y":144000000000000000,"z":5320000000000000000}},"30016740":{"solarSystemId":30016740,"solarSystemName":"P:274I","location":{"x":-25200000000000000000,"y":321000000000000000,"z":6030000000000000000}},"30016741":{"solarSystemId":30016741,"solarSystemName":"M:164T","location":{"x":-25100000000000000000,"y":226000000000000000,"z":4340000000000000000}},"30016742":{"solarSystemId":30016742,"solarSystemName":"J:2S83","location":{"x":-25000000000000000000,"y":-259000000000000000,"z":5500000000000000000}},"30016743":{"solarSystemId":30016743,"solarSystemName":"D:AVN4","location":{"x":-25400000000000000000,"y":316000000000000000,"z":5090000000000000000}},"30016744":{"solarSystemId":30016744,"solarSystemName":"F:177I","location":{"x":-24400000000000000000,"y":32900000000000000,"z":4500000000000000000}},"30016745":{"solarSystemId":30016745,"solarSystemName":"B:223N","location":{"x":-25000000000000000000,"y":-256000000000000000,"z":4500000000000000000}},"30016746":{"solarSystemId":30016746,"solarSystemName":"B:49S3","location":{"x":-24700000000000000000,"y":177000000000000000,"z":5160000000000000000}},"30016747":{"solarSystemId":30016747,"solarSystemName":"H:2202","location":{"x":-24900000000000000000,"y":110000000000000000,"z":4640000000000000000}},"30016748":{"solarSystemId":30016748,"solarSystemName":"G:20T0","location":{"x":-25400000000000000000,"y":-565000000000000000,"z":4900000000000000000}},"30016749":{"solarSystemId":30016749,"solarSystemName":"B:1ON4","location":{"x":-23300000000000000000,"y":-262000000000000000,"z":6240000000000000000}},"30016750":{"solarSystemId":30016750,"solarSystemName":"H:14E7","location":{"x":-23100000000000000000,"y":-2150000000000000000,"z":6470000000000000000}},"30016751":{"solarSystemId":30016751,"solarSystemName":"U:1K9E","location":{"x":-23300000000000000000,"y":-512000000000000000,"z":6440000000000000000}},"30016752":{"solarSystemId":30016752,"solarSystemName":"Y:188A","location":{"x":-22200000000000000000,"y":-539000000000000000,"z":6020000000000000000}},"30016753":{"solarSystemId":30016753,"solarSystemName":"P:RLS1","location":{"x":-24200000000000000000,"y":-854000000000000000,"z":7230000000000000000}},"30016754":{"solarSystemId":30016754,"solarSystemName":"F:3TO0","location":{"x":-24000000000000000000,"y":-577000000000000000,"z":7260000000000000000}},"30016755":{"solarSystemId":30016755,"solarSystemName":"G:2O2O","location":{"x":-22000000000000000000,"y":-615000000000000000,"z":6710000000000000000}},"30016756":{"solarSystemId":30016756,"solarSystemName":"Q:10NE","location":{"x":-24300000000000000000,"y":-1010000000000000000,"z":6780000000000000000}},"30016757":{"solarSystemId":30016757,"solarSystemName":"F:1ANR","location":{"x":-23600000000000000000,"y":-571000000000000000,"z":5340000000000000000}},"30016758":{"solarSystemId":30016758,"solarSystemName":"M:EORE","location":{"x":-21900000000000000000,"y":382000000000000000,"z":4640000000000000000}},"30016759":{"solarSystemId":30016759,"solarSystemName":"D:1L5T","location":{"x":-23000000000000000000,"y":-136000000000000000,"z":5030000000000000000}},"30016760":{"solarSystemId":30016760,"solarSystemName":"J:2KKN","location":{"x":-21700000000000000000,"y":241000000000000000,"z":4300000000000000000}},"30016761":{"solarSystemId":30016761,"solarSystemName":"P:15LE","location":{"x":-23000000000000000000,"y":-677000000000000000,"z":3730000000000000000}},"30016762":{"solarSystemId":30016762,"solarSystemName":"Q:K610","location":{"x":-21800000000000000000,"y":97400000000000000,"z":4100000000000000000}},"30016763":{"solarSystemId":30016763,"solarSystemName":"Q:3TR5","location":{"x":-22100000000000000000,"y":361000000000000000,"z":4840000000000000000}},"30016764":{"solarSystemId":30016764,"solarSystemName":"U:1IST","location":{"x":-22900000000000000000,"y":-966000000000000000,"z":4000000000000000000}},"30016765":{"solarSystemId":30016765,"solarSystemName":"J:SI03","location":{"x":-23300000000000000000,"y":-726000000000000000,"z":4070000000000000000}},"30016766":{"solarSystemId":30016766,"solarSystemName":"G:1IT8","location":{"x":-22400000000000000000,"y":-315000000000000000,"z":4240000000000000000}},"30016767":{"solarSystemId":30016767,"solarSystemName":"Z:146L","location":{"x":-22300000000000000000,"y":-98000000000000000,"z":4340000000000000000}},"30016768":{"solarSystemId":30016768,"solarSystemName":"U:23LT","location":{"x":-23300000000000000000,"y":-60700000000000000,"z":4940000000000000000}},"30016769":{"solarSystemId":30016769,"solarSystemName":"Y:EOV2","location":{"x":-23200000000000000000,"y":-105000000000000000,"z":4290000000000000000}},"30016770":{"solarSystemId":30016770,"solarSystemName":"G:3O71","location":{"x":-20600000000000000000,"y":119000000000000000,"z":6820000000000000000}},"30016771":{"solarSystemId":30016771,"solarSystemName":"D:262V","location":{"x":-21000000000000000000,"y":875000000000000000,"z":5420000000000000000}},"30016772":{"solarSystemId":30016772,"solarSystemName":"U:1AR2","location":{"x":-20100000000000000000,"y":101000000000000000,"z":6620000000000000000}},"30016773":{"solarSystemId":30016773,"solarSystemName":"Z:40SL","location":{"x":-22100000000000000000,"y":122000000000000000,"z":5510000000000000000}},"30016774":{"solarSystemId":30016774,"solarSystemName":"P:1NL8","location":{"x":-21200000000000000000,"y":-260000000000000000,"z":6360000000000000000}},"30016775":{"solarSystemId":30016775,"solarSystemName":"D:1934","location":{"x":-22100000000000000000,"y":397000000000000000,"z":5630000000000000000}},"30016776":{"solarSystemId":30016776,"solarSystemName":"P:3T7T","location":{"x":-22300000000000000000,"y":723000000000000000,"z":5900000000000000000}},"30016777":{"solarSystemId":30016777,"solarSystemName":"Q:2T81","location":{"x":-20400000000000000000,"y":698000000000000000,"z":6440000000000000000}},"30016778":{"solarSystemId":30016778,"solarSystemName":"H:306S","location":{"x":-21000000000000000000,"y":405000000000000000,"z":6020000000000000000}},"30016779":{"solarSystemId":30016779,"solarSystemName":"P:OSI5","location":{"x":-21600000000000000000,"y":-82900000000000000,"z":5160000000000000000}},"30016780":{"solarSystemId":30016780,"solarSystemName":"J:3A58","location":{"x":-26500000000000000000,"y":-3450000000000000000,"z":7220000000000000000}},"30016781":{"solarSystemId":30016781,"solarSystemName":"D:RSK3","location":{"x":-25400000000000000000,"y":-4240000000000000000,"z":8850000000000000000}},"30016782":{"solarSystemId":30016782,"solarSystemName":"J:SE7I","location":{"x":-25700000000000000000,"y":-1100000000000000000,"z":4340000000000000000}},"30016783":{"solarSystemId":30016783,"solarSystemName":"M:151E","location":{"x":-22600000000000000000,"y":13300000000000000,"z":5500000000000000000}},"30016784":{"solarSystemId":30016784,"solarSystemName":"U:4K25","location":{"x":-24600000000000000000,"y":-601000000000000000,"z":4510000000000000000}},"30016785":{"solarSystemId":30016785,"solarSystemName":"M:1VT5","location":{"x":-22500000000000000000,"y":-25400000000000000,"z":5430000000000000000}},"30016786":{"solarSystemId":30016786,"solarSystemName":"G:48EL","location":{"x":-24900000000000000000,"y":-1070000000000000000,"z":5530000000000000000}},"30016787":{"solarSystemId":30016787,"solarSystemName":"H:T408","location":{"x":-22400000000000000000,"y":284000000000000000,"z":6770000000000000000}},"30016788":{"solarSystemId":30016788,"solarSystemName":"D:RN86","location":{"x":-23500000000000000000,"y":-12500000000000000,"z":9790000000000000000}},"30016789":{"solarSystemId":30016789,"solarSystemName":"M:K511","location":{"x":-22300000000000000000,"y":-93000000000000000,"z":8650000000000000000}},"30016790":{"solarSystemId":30016790,"solarSystemName":"F:40IA","location":{"x":-23100000000000000000,"y":-283000000000000000,"z":7930000000000000000}},"30016791":{"solarSystemId":30016791,"solarSystemName":"D:1124","location":{"x":-23000000000000000000,"y":-507000000000000000,"z":7900000000000000000}},"30016792":{"solarSystemId":30016792,"solarSystemName":"J:30K8","location":{"x":-22700000000000000000,"y":-312000000000000000,"z":9540000000000000000}},"30016793":{"solarSystemId":30016793,"solarSystemName":"Y:1960","location":{"x":-22300000000000000000,"y":-351000000000000000,"z":7340000000000000000}},"30016794":{"solarSystemId":30016794,"solarSystemName":"H:2K8O","location":{"x":-23600000000000000000,"y":-548000000000000000,"z":7890000000000000000}},"30016795":{"solarSystemId":30016795,"solarSystemName":"F:17S0","location":{"x":-23800000000000000000,"y":-56300000000000000,"z":9630000000000000000}},"30016796":{"solarSystemId":30016796,"solarSystemName":"J:388I","location":{"x":-23700000000000000000,"y":452000000000000000,"z":4560000000000000000}},"30016797":{"solarSystemId":30016797,"solarSystemName":"B:1IT0","location":{"x":-24700000000000000000,"y":1260000000000000000,"z":2790000000000000000}},"30016798":{"solarSystemId":30016798,"solarSystemName":"B:59RS","location":{"x":-24400000000000000000,"y":-215000000000000000,"z":2300000000000000000}},"30016799":{"solarSystemId":30016799,"solarSystemName":"M:448S","location":{"x":-23300000000000000000,"y":-805000000000000000,"z":2980000000000000000}},"30016800":{"solarSystemId":30016800,"solarSystemName":"P:1I4T","location":{"x":-24000000000000000000,"y":-516000000000000000,"z":1930000000000000000}},"30016801":{"solarSystemId":30016801,"solarSystemName":"Y:E77S","location":{"x":-23700000000000000000,"y":251000000000000000,"z":3790000000000000000}},"30016802":{"solarSystemId":30016802,"solarSystemName":"U:ESKL","location":{"x":-23200000000000000000,"y":-594000000000000000,"z":2840000000000000000}},"30016803":{"solarSystemId":30016803,"solarSystemName":"Y:4N20","location":{"x":-25200000000000000000,"y":-645000000000000000,"z":4130000000000000000}},"30016804":{"solarSystemId":30016804,"solarSystemName":"M:157V","location":{"x":-24100000000000000000,"y":360000000000000000,"z":4280000000000000000}},"30016805":{"solarSystemId":30016805,"solarSystemName":"P:1AEA","location":{"x":-23100000000000000000,"y":-547000000000000000,"z":2800000000000000000}},"30016806":{"solarSystemId":30016806,"solarSystemName":"P:2I01","location":{"x":-24500000000000000000,"y":-108000000000000000,"z":2940000000000000000}},"30016807":{"solarSystemId":30016807,"solarSystemName":"Q:N6NO","location":{"x":-25200000000000000000,"y":-377000000000000000,"z":3670000000000000000}},"30016808":{"solarSystemId":30016808,"solarSystemName":"P:L74T","location":{"x":-24400000000000000000,"y":1940000000000000000,"z":6010000000000000000}},"30016809":{"solarSystemId":30016809,"solarSystemName":"H:1392","location":{"x":-24600000000000000000,"y":989000000000000000,"z":6650000000000000000}},"30016810":{"solarSystemId":30016810,"solarSystemName":"J:E0I1","location":{"x":-24800000000000000000,"y":-51500000000000000,"z":7080000000000000000}},"30016811":{"solarSystemId":30016811,"solarSystemName":"M:49TT","location":{"x":-24800000000000000000,"y":-594000000000000000,"z":6370000000000000000}},"30016812":{"solarSystemId":30016812,"solarSystemName":"B:R6IO","location":{"x":-25500000000000000000,"y":10800000000000000,"z":7600000000000000000}},"30016813":{"solarSystemId":30016813,"solarSystemName":"J:O216","location":{"x":-25700000000000000000,"y":-381000000000000000,"z":7390000000000000000}},"30016814":{"solarSystemId":30016814,"solarSystemName":"M:4LSA","location":{"x":-23100000000000000000,"y":-14200000000000000,"z":5360000000000000000}},"30016815":{"solarSystemId":30016815,"solarSystemName":"J:3K8K","location":{"x":-24600000000000000000,"y":-89400000000000000,"z":6530000000000000000}},"30016816":{"solarSystemId":30016816,"solarSystemName":"U:34RO","location":{"x":-21400000000000000000,"y":5830000000000000000,"z":6170000000000000000}},"30016817":{"solarSystemId":30016817,"solarSystemName":"Q:17ON","location":{"x":-22000000000000000000,"y":4730000000000000000,"z":3770000000000000000}},"30016818":{"solarSystemId":30016818,"solarSystemName":"D:RE0S","location":{"x":-21800000000000000000,"y":5780000000000000000,"z":6230000000000000000}},"30016819":{"solarSystemId":30016819,"solarSystemName":"D:1639","location":{"x":-19800000000000000000,"y":5370000000000000000,"z":4070000000000000000}},"30016820":{"solarSystemId":30016820,"solarSystemName":"Q:133R","location":{"x":-23100000000000000000,"y":3970000000000000000,"z":3750000000000000000}},"30016821":{"solarSystemId":30016821,"solarSystemName":"H:V25N","location":{"x":-22700000000000000000,"y":5070000000000000000,"z":1790000000000000000}},"30016822":{"solarSystemId":30016822,"solarSystemName":"B:2988","location":{"x":-6400000000000000000,"y":-2000000000000000000,"z":9420000000000000000}},"30016823":{"solarSystemId":30016823,"solarSystemName":"G:3A01","location":{"x":-6840000000000000000,"y":-3360000000000000000,"z":8690000000000000000}},"30016824":{"solarSystemId":30016824,"solarSystemName":"Q:31EE","location":{"x":-7020000000000000000,"y":-2330000000000000000,"z":8710000000000000000}},"30016825":{"solarSystemId":30016825,"solarSystemName":"F:SO91","location":{"x":-8190000000000000000,"y":-2630000000000000000,"z":10300000000000000000}},"30016826":{"solarSystemId":30016826,"solarSystemName":"F:1KN1","location":{"x":-6500000000000000000,"y":-2180000000000000000,"z":9670000000000000000}},"30016827":{"solarSystemId":30016827,"solarSystemName":"Q:4KS4","location":{"x":-8240000000000000000,"y":-2760000000000000000,"z":8160000000000000000}},"30016828":{"solarSystemId":30016828,"solarSystemName":"H:2A9R","location":{"x":-7970000000000000000,"y":-3090000000000000000,"z":10200000000000000000}},"30016829":{"solarSystemId":30016829,"solarSystemName":"G:3ISR","location":{"x":-8330000000000000000,"y":-2670000000000000000,"z":10200000000000000000}},"30016830":{"solarSystemId":30016830,"solarSystemName":"F:2T3K","location":{"x":-8380000000000000000,"y":-1870000000000000000,"z":8450000000000000000}},"30016831":{"solarSystemId":30016831,"solarSystemName":"Y:14RR","location":{"x":-7620000000000000000,"y":-2470000000000000000,"z":9520000000000000000}},"30016832":{"solarSystemId":30016832,"solarSystemName":"F:2L67","location":{"x":-9320000000000000000,"y":-60700000000000000,"z":9220000000000000000}},"30016833":{"solarSystemId":30016833,"solarSystemName":"Y:38N8","location":{"x":-9680000000000000000,"y":-88800000000000000,"z":8190000000000000000}},"30016834":{"solarSystemId":30016834,"solarSystemName":"Y:54S0","location":{"x":-8650000000000000000,"y":232000000000000000,"z":8860000000000000000}},"30016835":{"solarSystemId":30016835,"solarSystemName":"U:4N39","location":{"x":-9270000000000000000,"y":329000000000000000,"z":7170000000000000000}},"30016836":{"solarSystemId":30016836,"solarSystemName":"P:23IL","location":{"x":-8530000000000000000,"y":413000000000000000,"z":8450000000000000000}},"30016837":{"solarSystemId":30016837,"solarSystemName":"M:3A1A","location":{"x":-7910000000000000000,"y":-130000000000000000,"z":8000000000000000000}},"30016838":{"solarSystemId":30016838,"solarSystemName":"H:382L","location":{"x":-9080000000000000000,"y":-962000000000000000,"z":8490000000000000000}},"30016839":{"solarSystemId":30016839,"solarSystemName":"G:2073","location":{"x":-9400000000000000000,"y":-263000000000000000,"z":8480000000000000000}},"30016840":{"solarSystemId":30016840,"solarSystemName":"J:13ST","location":{"x":-8950000000000000000,"y":-114000000000000000,"z":8700000000000000000}},"30016841":{"solarSystemId":30016841,"solarSystemName":"D:3AOV","location":{"x":-8700000000000000000,"y":260000000000000000,"z":7130000000000000000}},"30016842":{"solarSystemId":30016842,"solarSystemName":"G:K243","location":{"x":-9600000000000000000,"y":713000000000000000,"z":7360000000000000000}},"30016843":{"solarSystemId":30016843,"solarSystemName":"D:3K7I","location":{"x":-9120000000000000000,"y":-116000000000000000,"z":8340000000000000000}},"30016844":{"solarSystemId":30016844,"solarSystemName":"J:13E3","location":{"x":-8050000000000000000,"y":-353000000000000000,"z":7690000000000000000}},"30016845":{"solarSystemId":30016845,"solarSystemName":"U:5036","location":{"x":-9710000000000000000,"y":-211000000000000000,"z":8310000000000000000}},"30016846":{"solarSystemId":30016846,"solarSystemName":"Z:36OT","location":{"x":-6860000000000000000,"y":52000000000000000,"z":7810000000000000000}},"30016847":{"solarSystemId":30016847,"solarSystemName":"Q:34A2","location":{"x":-6600000000000000000,"y":37400000000000000,"z":7330000000000000000}},"30016848":{"solarSystemId":30016848,"solarSystemName":"M:8TK7","location":{"x":-7200000000000000000,"y":-19300000000000000,"z":7220000000000000000}},"30016849":{"solarSystemId":30016849,"solarSystemName":"P:26ER","location":{"x":-6000000000000000000,"y":45900000000000000,"z":7080000000000000000}},"30016850":{"solarSystemId":30016850,"solarSystemName":"F:15LT","location":{"x":-6980000000000000000,"y":85500000000000000,"z":6770000000000000000}},"30016851":{"solarSystemId":30016851,"solarSystemName":"Y:2V4S","location":{"x":-6650000000000000000,"y":497000000000000000,"z":7030000000000000000}},"30016852":{"solarSystemId":30016852,"solarSystemName":"P:31R0","location":{"x":-6440000000000000000,"y":318000000000000000,"z":6560000000000000000}},"30016853":{"solarSystemId":30016853,"solarSystemName":"B:1OS2","location":{"x":-6100000000000000000,"y":7750000000000000,"z":6690000000000000000}},"30016854":{"solarSystemId":30016854,"solarSystemName":"P:3320","location":{"x":-6390000000000000000,"y":2430000000000000,"z":7530000000000000000}},"30016855":{"solarSystemId":30016855,"solarSystemName":"Z:30I8","location":{"x":-5570000000000000000,"y":-178000000000000000,"z":7190000000000000000}},"30016856":{"solarSystemId":30016856,"solarSystemName":"J:3O6N","location":{"x":-6350000000000000000,"y":-479000000000000000,"z":7450000000000000000}},"30016857":{"solarSystemId":30016857,"solarSystemName":"Z:1SL4","location":{"x":-6050000000000000000,"y":301000000000000000,"z":7360000000000000000}},"30016858":{"solarSystemId":30016858,"solarSystemName":"D:1A9L","location":{"x":-6390000000000000000,"y":41300000000000000,"z":7250000000000000000}},"30016859":{"solarSystemId":30016859,"solarSystemName":"D:3SRK","location":{"x":-8310000000000000000,"y":-1370000000000000000,"z":5600000000000000000}},"30016860":{"solarSystemId":30016860,"solarSystemName":"M:2VLT","location":{"x":-7460000000000000000,"y":-736000000000000000,"z":6920000000000000000}},"30016861":{"solarSystemId":30016861,"solarSystemName":"F:3900","location":{"x":-8650000000000000000,"y":-961000000000000000,"z":6320000000000000000}},"30016862":{"solarSystemId":30016862,"solarSystemName":"Z:TTRA","location":{"x":-8820000000000000000,"y":-1020000000000000000,"z":6020000000000000000}},"30016863":{"solarSystemId":30016863,"solarSystemName":"M:1KAI","location":{"x":-8420000000000000000,"y":-1320000000000000000,"z":5440000000000000000}},"30016864":{"solarSystemId":30016864,"solarSystemName":"Y:1NNK","location":{"x":-7370000000000000000,"y":-517000000000000000,"z":5850000000000000000}},"30016865":{"solarSystemId":30016865,"solarSystemName":"U:12KR","location":{"x":-8630000000000000000,"y":-1300000000000000000,"z":5440000000000000000}},"30016866":{"solarSystemId":30016866,"solarSystemName":"G:1TK0","location":{"x":-7830000000000000000,"y":-1140000000000000000,"z":6750000000000000000}},"30016867":{"solarSystemId":30016867,"solarSystemName":"Y:22L7","location":{"x":-7290000000000000000,"y":-976000000000000000,"z":5630000000000000000}},"30016868":{"solarSystemId":30016868,"solarSystemName":"D:K25N","location":{"x":-8000000000000000000,"y":-864000000000000000,"z":6240000000000000000}},"30016869":{"solarSystemId":30016869,"solarSystemName":"B:2TR2","location":{"x":-9050000000000000000,"y":-1010000000000000000,"z":6430000000000000000}},"30016870":{"solarSystemId":30016870,"solarSystemName":"Y:3I2V","location":{"x":-7750000000000000000,"y":-1630000000000000000,"z":6290000000000000000}},"30016871":{"solarSystemId":30016871,"solarSystemName":"F:TK5S","location":{"x":-7640000000000000000,"y":-1010000000000000000,"z":6540000000000000000}},"30016872":{"solarSystemId":30016872,"solarSystemName":"B:2OE3","location":{"x":-7200000000000000000,"y":-834000000000000000,"z":5820000000000000000}},"30016873":{"solarSystemId":30016873,"solarSystemName":"F:11S9","location":{"x":-8490000000000000000,"y":-689000000000000000,"z":6280000000000000000}},"30016874":{"solarSystemId":30016874,"solarSystemName":"B:201T","location":{"x":-7420000000000000000,"y":-816000000000000000,"z":6810000000000000000}},"30016875":{"solarSystemId":30016875,"solarSystemName":"Y:20N4","location":{"x":-7500000000000000000,"y":-522000000000000000,"z":5770000000000000000}},"30016876":{"solarSystemId":30016876,"solarSystemName":"B:2R09","location":{"x":-8950000000000000000,"y":-715000000000000000,"z":6780000000000000000}},"30016877":{"solarSystemId":30016877,"solarSystemName":"J:290O","location":{"x":-6340000000000000000,"y":-3570000000000000000,"z":7910000000000000000}},"30016878":{"solarSystemId":30016878,"solarSystemName":"H:38SN","location":{"x":-5320000000000000000,"y":-2400000000000000000,"z":8190000000000000000}},"30016879":{"solarSystemId":30016879,"solarSystemName":"M:30V5","location":{"x":-5840000000000000000,"y":-2810000000000000000,"z":7820000000000000000}},"30016880":{"solarSystemId":30016880,"solarSystemName":"J:3NVS","location":{"x":-6680000000000000000,"y":-2360000000000000000,"z":6790000000000000000}},"30016881":{"solarSystemId":30016881,"solarSystemName":"H:18R8","location":{"x":-5490000000000000000,"y":-1850000000000000000,"z":8440000000000000000}},"30016882":{"solarSystemId":30016882,"solarSystemName":"G:16II","location":{"x":-5060000000000000000,"y":-1880000000000000000,"z":7140000000000000000}},"30016883":{"solarSystemId":30016883,"solarSystemName":"B:3OTK","location":{"x":-6260000000000000000,"y":-1630000000000000000,"z":7800000000000000000}},"30016884":{"solarSystemId":30016884,"solarSystemName":"J:3I6V","location":{"x":-5520000000000000000,"y":-1880000000000000000,"z":7390000000000000000}},"30016885":{"solarSystemId":30016885,"solarSystemName":"G:2O02","location":{"x":-5380000000000000000,"y":-1850000000000000000,"z":7090000000000000000}},"30016886":{"solarSystemId":30016886,"solarSystemName":"G:200N","location":{"x":-5540000000000000000,"y":-1750000000000000000,"z":8280000000000000000}},"30016887":{"solarSystemId":30016887,"solarSystemName":"P:2I45","location":{"x":-5450000000000000000,"y":-849000000000000000,"z":6080000000000000000}},"30016888":{"solarSystemId":30016888,"solarSystemName":"J:3TIV","location":{"x":-5660000000000000000,"y":-548000000000000000,"z":6310000000000000000}},"30016889":{"solarSystemId":30016889,"solarSystemName":"M:VKN0","location":{"x":-5620000000000000000,"y":-429000000000000000,"z":6830000000000000000}},"30016890":{"solarSystemId":30016890,"solarSystemName":"G:1E6I","location":{"x":-5630000000000000000,"y":-550000000000000000,"z":6240000000000000000}},"30016891":{"solarSystemId":30016891,"solarSystemName":"P:2232","location":{"x":-5730000000000000000,"y":-404000000000000000,"z":5480000000000000000}},"30016892":{"solarSystemId":30016892,"solarSystemName":"F:1RV4","location":{"x":-5350000000000000000,"y":-927000000000000000,"z":6350000000000000000}},"30016893":{"solarSystemId":30016893,"solarSystemName":"B:VTS4","location":{"x":-5820000000000000000,"y":-540000000000000000,"z":6330000000000000000}},"30016894":{"solarSystemId":30016894,"solarSystemName":"F:2RIA","location":{"x":-5870000000000000000,"y":-230000000000000000,"z":5400000000000000000}},"30016895":{"solarSystemId":30016895,"solarSystemName":"M:31TR","location":{"x":-4970000000000000000,"y":-181000000000000000,"z":5570000000000000000}},"30016896":{"solarSystemId":30016896,"solarSystemName":"Q:3A17","location":{"x":-4960000000000000000,"y":-852000000000000000,"z":5500000000000000000}},"30016897":{"solarSystemId":30016897,"solarSystemName":"Y:3100","location":{"x":-5560000000000000000,"y":-1150000000000000000,"z":5560000000000000000}},"30016898":{"solarSystemId":30016898,"solarSystemName":"J:1VO2","location":{"x":-5170000000000000000,"y":-709000000000000000,"z":7160000000000000000}},"30016899":{"solarSystemId":30016899,"solarSystemName":"D:4454","location":{"x":-4860000000000000000,"y":-646000000000000000,"z":6120000000000000000}},"30016900":{"solarSystemId":30016900,"solarSystemName":"H:1T38","location":{"x":-5590000000000000000,"y":-1280000000000000000,"z":5560000000000000000}},"30016901":{"solarSystemId":30016901,"solarSystemName":"Y:28O3","location":{"x":-5370000000000000000,"y":-907000000000000000,"z":7160000000000000000}},"30016902":{"solarSystemId":30016902,"solarSystemName":"D:2K7V","location":{"x":-4910000000000000000,"y":-773000000000000000,"z":5960000000000000000}},"30016903":{"solarSystemId":30016903,"solarSystemName":"G:30RS","location":{"x":-5830000000000000000,"y":-802000000000000000,"z":7560000000000000000}},"30016904":{"solarSystemId":30016904,"solarSystemName":"G:2VNL","location":{"x":-5620000000000000000,"y":-897000000000000000,"z":7230000000000000000}},"30016905":{"solarSystemId":30016905,"solarSystemName":"F:2SKT","location":{"x":-7310000000000000000,"y":-1280000000000000000,"z":6920000000000000000}},"30016906":{"solarSystemId":30016906,"solarSystemName":"M:315R","location":{"x":-6900000000000000000,"y":-1290000000000000000,"z":6240000000000000000}},"30016907":{"solarSystemId":30016907,"solarSystemName":"P:3AO3","location":{"x":-5800000000000000000,"y":-870000000000000000,"z":6890000000000000000}},"30016908":{"solarSystemId":30016908,"solarSystemName":"B:T84R","location":{"x":-6650000000000000000,"y":-1410000000000000000,"z":7190000000000000000}},"30016909":{"solarSystemId":30016909,"solarSystemName":"F:1K0E","location":{"x":-6240000000000000000,"y":-728000000000000000,"z":6280000000000000000}},"30016910":{"solarSystemId":30016910,"solarSystemName":"H:29LT","location":{"x":-6370000000000000000,"y":-817000000000000000,"z":6130000000000000000}},"30016911":{"solarSystemId":30016911,"solarSystemName":"J:K4E1","location":{"x":-6260000000000000000,"y":-673000000000000000,"z":6390000000000000000}},"30016912":{"solarSystemId":30016912,"solarSystemName":"P:16SN","location":{"x":-6060000000000000000,"y":-784000000000000000,"z":6800000000000000000}},"30016913":{"solarSystemId":30016913,"solarSystemName":"Z:1I88","location":{"x":-7240000000000000000,"y":-1270000000000000000,"z":6940000000000000000}},"30016914":{"solarSystemId":30016914,"solarSystemName":"P:3766","location":{"x":-7340000000000000000,"y":-2300000000000000000,"z":6720000000000000000}},"30016915":{"solarSystemId":30016915,"solarSystemName":"P:1V9S","location":{"x":-6990000000000000000,"y":-899000000000000000,"z":6920000000000000000}},"30016916":{"solarSystemId":30016916,"solarSystemName":"H:350O","location":{"x":-7820000000000000000,"y":-2340000000000000000,"z":7450000000000000000}},"30016917":{"solarSystemId":30016917,"solarSystemName":"F:354L","location":{"x":-7110000000000000000,"y":-2690000000000000000,"z":5940000000000000000}},"30016918":{"solarSystemId":30016918,"solarSystemName":"Q:365I","location":{"x":-7840000000000000000,"y":-2070000000000000000,"z":7590000000000000000}},"30016919":{"solarSystemId":30016919,"solarSystemName":"P:2V2O","location":{"x":-7580000000000000000,"y":-3950000000000000000,"z":7070000000000000000}},"30016920":{"solarSystemId":30016920,"solarSystemName":"M:12TE","location":{"x":-6510000000000000000,"y":-2550000000000000000,"z":5730000000000000000}},"30016921":{"solarSystemId":30016921,"solarSystemName":"B:10KR","location":{"x":-6880000000000000000,"y":-2560000000000000000,"z":6150000000000000000}},"30016922":{"solarSystemId":30016922,"solarSystemName":"M:27LN","location":{"x":-8940000000000000000,"y":-4480000000000000000,"z":6130000000000000000}},"30016923":{"solarSystemId":30016923,"solarSystemName":"F:3754","location":{"x":-8570000000000000000,"y":-2100000000000000000,"z":7850000000000000000}},"30016924":{"solarSystemId":30016924,"solarSystemName":"F:1K59","location":{"x":-8740000000000000000,"y":-2190000000000000000,"z":7670000000000000000}},"30016925":{"solarSystemId":30016925,"solarSystemName":"Q:3OL9","location":{"x":-7850000000000000000,"y":-350000000000000000,"z":8610000000000000000}},"30016926":{"solarSystemId":30016926,"solarSystemName":"D:2V6T","location":{"x":-7000000000000000000,"y":-453000000000000000,"z":7850000000000000000}},"30016927":{"solarSystemId":30016927,"solarSystemName":"Z:2I3E","location":{"x":-7310000000000000000,"y":-11600000000000000,"z":7170000000000000000}},"30016928":{"solarSystemId":30016928,"solarSystemName":"J:1689","location":{"x":-7490000000000000000,"y":261000000000000000,"z":8240000000000000000}},"30016929":{"solarSystemId":30016929,"solarSystemName":"H:3IRE","location":{"x":-7150000000000000000,"y":-117000000000000000,"z":8770000000000000000}},"30016930":{"solarSystemId":30016930,"solarSystemName":"G:20N9","location":{"x":-6750000000000000000,"y":-83100000000000000,"z":8550000000000000000}},"30016931":{"solarSystemId":30016931,"solarSystemName":"M:1S36","location":{"x":-6210000000000000000,"y":-983000000000000000,"z":7420000000000000000}},"30016932":{"solarSystemId":30016932,"solarSystemName":"B:1V2L","location":{"x":-8190000000000000000,"y":-498000000000000000,"z":9320000000000000000}},"30016933":{"solarSystemId":30016933,"solarSystemName":"H:TR5K","location":{"x":-7010000000000000000,"y":-466000000000000000,"z":8590000000000000000}},"30016934":{"solarSystemId":30016934,"solarSystemName":"Y:E4EL","location":{"x":-6710000000000000000,"y":-1010000000000000000,"z":7760000000000000000}},"30016935":{"solarSystemId":30016935,"solarSystemName":"D:147O","location":{"x":-7190000000000000000,"y":-1770000000000000000,"z":7710000000000000000}},"30016936":{"solarSystemId":30016936,"solarSystemName":"M:1KRL","location":{"x":-7470000000000000000,"y":-699000000000000000,"z":7170000000000000000}},"30016937":{"solarSystemId":30016937,"solarSystemName":"D:2R02","location":{"x":-10300000000000000000,"y":3650000000000000000,"z":5620000000000000000}},"30016938":{"solarSystemId":30016938,"solarSystemName":"D:30RV","location":{"x":-10500000000000000000,"y":4350000000000000000,"z":6180000000000000000}},"30016939":{"solarSystemId":30016939,"solarSystemName":"U:3NAN","location":{"x":-10900000000000000000,"y":5050000000000000000,"z":2060000000000000000}},"30016940":{"solarSystemId":30016940,"solarSystemName":"M:3V2S","location":{"x":-11600000000000000000,"y":3830000000000000000,"z":5630000000000000000}},"30016941":{"solarSystemId":30016941,"solarSystemName":"G:2LIA","location":{"x":-10800000000000000000,"y":3550000000000000000,"z":3620000000000000000}},"30016942":{"solarSystemId":30016942,"solarSystemName":"B:2A12","location":{"x":-11700000000000000000,"y":2370000000000000000,"z":5140000000000000000}},"30016943":{"solarSystemId":30016943,"solarSystemName":"J:1RN1","location":{"x":-11000000000000000000,"y":2760000000000000000,"z":3590000000000000000}},"30016944":{"solarSystemId":30016944,"solarSystemName":"P:TORO","location":{"x":-11500000000000000000,"y":4700000000000000000,"z":1740000000000000000}},"30016945":{"solarSystemId":30016945,"solarSystemName":"G:2SV8","location":{"x":-14600000000000000000,"y":4460000000000000000,"z":1720000000000000000}},"30016946":{"solarSystemId":30016946,"solarSystemName":"D:1SK9","location":{"x":-14100000000000000000,"y":7340000000000000000,"z":-603000000000000000}},"30016947":{"solarSystemId":30016947,"solarSystemName":"Q:NI88","location":{"x":-11900000000000000000,"y":7360000000000000000,"z":-1520000000000000000}},"30016948":{"solarSystemId":30016948,"solarSystemName":"F:O9R0","location":{"x":-14500000000000000000,"y":7670000000000000000,"z":1300000000000000000}},"30016949":{"solarSystemId":30016949,"solarSystemName":"Z:TR7A","location":{"x":-15800000000000000000,"y":7370000000000000000,"z":927000000000000000}},"30016950":{"solarSystemId":30016950,"solarSystemName":"M:2EA8","location":{"x":-12600000000000000000,"y":4990000000000000000,"z":-468000000000000000}},"30016951":{"solarSystemId":30016951,"solarSystemName":"P:3RNK","location":{"x":-12800000000000000000,"y":5420000000000000000,"z":-514000000000000000}},"30016952":{"solarSystemId":30016952,"solarSystemName":"G:3I7E","location":{"x":-14400000000000000000,"y":5040000000000000000,"z":-264000000000000000}},"30016953":{"solarSystemId":30016953,"solarSystemName":"H:3218","location":{"x":-13700000000000000000,"y":6180000000000000000,"z":-509000000000000000}},"30016954":{"solarSystemId":30016954,"solarSystemName":"Y:380K","location":{"x":-13700000000000000000,"y":5170000000000000000,"z":998000000000000000}},"30016955":{"solarSystemId":30016955,"solarSystemName":"G:O52N","location":{"x":-15800000000000000000,"y":4470000000000000000,"z":-398000000000000000}},"30016956":{"solarSystemId":30016956,"solarSystemName":"P:2RAA","location":{"x":-16700000000000000000,"y":3840000000000000000,"z":-388000000000000000}},"30016957":{"solarSystemId":30016957,"solarSystemName":"M:351S","location":{"x":-12000000000000000000,"y":2860000000000000000,"z":1230000000000000000}},"30016958":{"solarSystemId":30016958,"solarSystemName":"J:2I9A","location":{"x":-13400000000000000000,"y":2670000000000000000,"z":1900000000000000000}},"30016959":{"solarSystemId":30016959,"solarSystemName":"P:309R","location":{"x":-12300000000000000000,"y":2380000000000000000,"z":1660000000000000000}},"30016960":{"solarSystemId":30016960,"solarSystemName":"Q:R711","location":{"x":-12600000000000000000,"y":1970000000000000000,"z":2400000000000000000}},"30016961":{"solarSystemId":30016961,"solarSystemName":"F:1TRR","location":{"x":-13000000000000000000,"y":1710000000000000000,"z":1890000000000000000}},"30016962":{"solarSystemId":30016962,"solarSystemName":"F:48I1","location":{"x":-12600000000000000000,"y":2840000000000000000,"z":2870000000000000000}},"30016963":{"solarSystemId":30016963,"solarSystemName":"F:2K48","location":{"x":-12400000000000000000,"y":1600000000000000000,"z":1580000000000000000}},"30016964":{"solarSystemId":30016964,"solarSystemName":"D:17R9","location":{"x":-11500000000000000000,"y":1900000000000000000,"z":2720000000000000000}},"30016965":{"solarSystemId":30016965,"solarSystemName":"M:24T0","location":{"x":-12500000000000000000,"y":3990000000000000000,"z":2390000000000000000}},"30016966":{"solarSystemId":30016966,"solarSystemName":"P:3RKA","location":{"x":-14300000000000000000,"y":3090000000000000000,"z":1790000000000000000}},"30016967":{"solarSystemId":30016967,"solarSystemName":"H:3I5A","location":{"x":-13900000000000000000,"y":3660000000000000000,"z":837000000000000000}},"30016968":{"solarSystemId":30016968,"solarSystemName":"U:2585","location":{"x":-12600000000000000000,"y":3560000000000000000,"z":655000000000000000}},"30016969":{"solarSystemId":30016969,"solarSystemName":"J:O0KS","location":{"x":-12400000000000000000,"y":3570000000000000000,"z":408000000000000000}},"30016970":{"solarSystemId":30016970,"solarSystemName":"F:13SN","location":{"x":-14200000000000000000,"y":2890000000000000000,"z":158000000000000000}},"30016971":{"solarSystemId":30016971,"solarSystemName":"Q:28NE","location":{"x":-12600000000000000000,"y":2720000000000000000,"z":609000000000000000}},"30016972":{"solarSystemId":30016972,"solarSystemName":"M:4NL2","location":{"x":-13500000000000000000,"y":2280000000000000000,"z":529000000000000000}},"30016973":{"solarSystemId":30016973,"solarSystemName":"P:1S8T","location":{"x":-14200000000000000000,"y":3480000000000000000,"z":1180000000000000000}},"30016974":{"solarSystemId":30016974,"solarSystemName":"M:2K29","location":{"x":-12800000000000000000,"y":1400000000000000000,"z":371000000000000000}},"30016975":{"solarSystemId":30016975,"solarSystemName":"P:228V","location":{"x":-12700000000000000000,"y":1360000000000000000,"z":188000000000000000}},"30016976":{"solarSystemId":30016976,"solarSystemName":"Y:1AII","location":{"x":-12700000000000000000,"y":1800000000000000000,"z":155000000000000000}},"30016977":{"solarSystemId":30016977,"solarSystemName":"G:2N5V","location":{"x":-16300000000000000000,"y":3570000000000000000,"z":649000000000000000}},"30016978":{"solarSystemId":30016978,"solarSystemName":"B:3R76","location":{"x":-15600000000000000000,"y":3310000000000000000,"z":1170000000000000000}},"30016979":{"solarSystemId":30016979,"solarSystemName":"H:1420","location":{"x":-15200000000000000000,"y":2910000000000000000,"z":845000000000000000}},"30016980":{"solarSystemId":30016980,"solarSystemName":"D:N12R","location":{"x":-17400000000000000000,"y":3280000000000000000,"z":769000000000000000}},"30016981":{"solarSystemId":30016981,"solarSystemName":"J:21O2","location":{"x":-17700000000000000000,"y":2990000000000000000,"z":1750000000000000000}},"30016982":{"solarSystemId":30016982,"solarSystemName":"F:2RTE","location":{"x":-16200000000000000000,"y":3430000000000000000,"z":1420000000000000000}},"30016983":{"solarSystemId":30016983,"solarSystemName":"G:I4RL","location":{"x":-16700000000000000000,"y":2530000000000000000,"z":578000000000000000}},"30016984":{"solarSystemId":30016984,"solarSystemName":"B:170E","location":{"x":-16600000000000000000,"y":3810000000000000000,"z":1540000000000000000}},"30016985":{"solarSystemId":30016985,"solarSystemName":"Q:L9O3","location":{"x":-15300000000000000000,"y":2650000000000000000,"z":1100000000000000000}},"30016986":{"solarSystemId":30016986,"solarSystemName":"E.B2T.9W2","location":{"x":12800000000000000000,"y":-3360000000000000000,"z":27800000000000000000}},"30016987":{"solarSystemId":30016987,"solarSystemName":"S.N79.HBD","location":{"x":10600000000000000000,"y":-566000000000000000,"z":26400000000000000000}},"30016988":{"solarSystemId":30016988,"solarSystemName":"L.PZS.R23","location":{"x":12600000000000000000,"y":-3550000000000000000,"z":28600000000000000000}},"30016989":{"solarSystemId":30016989,"solarSystemName":"N.SQN.7NC","location":{"x":14600000000000000000,"y":-590000000000000000,"z":30500000000000000000}},"30016990":{"solarSystemId":30016990,"solarSystemName":"N.34T.6CP","location":{"x":12800000000000000000,"y":-667000000000000000,"z":28900000000000000000}},"30016991":{"solarSystemId":30016991,"solarSystemName":"E.B1S.M2K","location":{"x":11600000000000000000,"y":-1080000000000000000,"z":27400000000000000000}},"30016992":{"solarSystemId":30016992,"solarSystemName":"E.KZ7.9X3","location":{"x":9110000000000000000,"y":-4410000000000000000,"z":28600000000000000000}},"30016993":{"solarSystemId":30016993,"solarSystemName":"E.XM7.S95","location":{"x":8710000000000000000,"y":-6100000000000000000,"z":29600000000000000000}},"30016994":{"solarSystemId":30016994,"solarSystemName":"H.4S8.XH4","location":{"x":9590000000000000000,"y":-5510000000000000000,"z":29800000000000000000}},"30016995":{"solarSystemId":30016995,"solarSystemName":"U.3S9.XL6","location":{"x":10700000000000000000,"y":-7450000000000000000,"z":28300000000000000000}},"30016996":{"solarSystemId":30016996,"solarSystemName":"A.HQS.6V4","location":{"x":12300000000000000000,"y":-5300000000000000000,"z":29800000000000000000}},"30016997":{"solarSystemId":30016997,"solarSystemName":"N.MP7.8B6","location":{"x":8740000000000000000,"y":-7720000000000000000,"z":31900000000000000000}},"30016998":{"solarSystemId":30016998,"solarSystemName":"U.536.K48","location":{"x":7030000000000000000,"y":-9400000000000000000,"z":31200000000000000000}},"30016999":{"solarSystemId":30016999,"solarSystemName":"A.5Q5.7F9","location":{"x":6490000000000000000,"y":-11100000000000000000,"z":30200000000000000000}},"30017000":{"solarSystemId":30017000,"solarSystemName":"D.B59.FV5","location":{"x":10600000000000000000,"y":-6470000000000000000,"z":32200000000000000000}},"30017001":{"solarSystemId":30017001,"solarSystemName":"U.6E5.F93","location":{"x":6890000000000000000,"y":-3810000000000000000,"z":27800000000000000000}},"30017002":{"solarSystemId":30017002,"solarSystemName":"U.R5T.QRB","location":{"x":12900000000000000000,"y":-808000000000000000,"z":32100000000000000000}},"30017003":{"solarSystemId":30017003,"solarSystemName":"E.HTS.CR4","location":{"x":12000000000000000000,"y":-5100000000000000000,"z":30200000000000000000}},"30017004":{"solarSystemId":30017004,"solarSystemName":"D.MS8.XZ3","location":{"x":9600000000000000000,"y":-4500000000000000000,"z":30800000000000000000}},"30017005":{"solarSystemId":30017005,"solarSystemName":"S.D7S.8K4","location":{"x":11800000000000000000,"y":-178000000000000000,"z":34100000000000000000}},"30017006":{"solarSystemId":30017006,"solarSystemName":"I.MPT.XFD","location":{"x":13400000000000000000,"y":-565000000000000000,"z":32200000000000000000}},"30017007":{"solarSystemId":30017007,"solarSystemName":"N.539.013","location":{"x":10500000000000000000,"y":-3500000000000000000,"z":27600000000000000000}},"30017008":{"solarSystemId":30017008,"solarSystemName":"A.W8N.X83","location":{"x":14200000000000000000,"y":-3780000000000000000,"z":27300000000000000000}},"30017009":{"solarSystemId":30017009,"solarSystemName":"Horn","location":{"x":11600000000000000000,"y":-3030000000000000000,"z":26100000000000000000}},"30017010":{"solarSystemId":30017010,"solarSystemName":"T.3CT.PD3","location":{"x":13300000000000000000,"y":-4020000000000000000,"z":28600000000000000000}},"30017011":{"solarSystemId":30017011,"solarSystemName":"S.7J9.PT3","location":{"x":11300000000000000000,"y":-3880000000000000000,"z":26700000000000000000}},"30017012":{"solarSystemId":30017012,"solarSystemName":"D.YV9.D88","location":{"x":11100000000000000000,"y":-298000000000000000,"z":32200000000000000000}},"30017013":{"solarSystemId":30017013,"solarSystemName":"H.VQ8.H5T","location":{"x":9970000000000000000,"y":-403000000000000000,"z":30100000000000000000}},"30017014":{"solarSystemId":30017014,"solarSystemName":"T.WK9.1X6","location":{"x":11500000000000000000,"y":-246000000000000000,"z":33500000000000000000}},"30017015":{"solarSystemId":30017015,"solarSystemName":"I.K1T.FZS","location":{"x":12800000000000000000,"y":-393000000000000000,"z":32000000000000000000}},"30017016":{"solarSystemId":30017016,"solarSystemName":"D.6R9.KP6","location":{"x":10900000000000000000,"y":-238000000000000000,"z":31600000000000000000}},"30017017":{"solarSystemId":30017017,"solarSystemName":"U.TPT.Z29","location":{"x":13300000000000000000,"y":-10500000000000000000,"z":30600000000000000000}},"30017018":{"solarSystemId":30017018,"solarSystemName":"S.0KT.6Z6","location":{"x":13800000000000000000,"y":-7930000000000000000,"z":31700000000000000000}},"30017019":{"solarSystemId":30017019,"solarSystemName":"R.XQT.P28","location":{"x":13400000000000000000,"y":-9320000000000000000,"z":30900000000000000000}},"30017020":{"solarSystemId":30017020,"solarSystemName":"I.0BT.NN7","location":{"x":13500000000000000000,"y":-8520000000000000000,"z":30000000000000000000}},"30017021":{"solarSystemId":30017021,"solarSystemName":"N.2XT.HH7","location":{"x":13600000000000000000,"y":-8960000000000000000,"z":30900000000000000000}},"30017022":{"solarSystemId":30017022,"solarSystemName":"I.5M9.WP3","location":{"x":11000000000000000000,"y":-4140000000000000000,"z":21000000000000000000}},"30017023":{"solarSystemId":30017023,"solarSystemName":"T.7G8.SW2","location":{"x":10100000000000000000,"y":-3360000000000000000,"z":22900000000000000000}},"30017024":{"solarSystemId":30017024,"solarSystemName":"I.KF9.C25","location":{"x":11200000000000000000,"y":-5860000000000000000,"z":23300000000000000000}},"30017025":{"solarSystemId":30017025,"solarSystemName":"N.MV8.E13","location":{"x":9930000000000000000,"y":-3530000000000000000,"z":23100000000000000000}},"30017026":{"solarSystemId":30017026,"solarSystemName":"R.DDS.994","location":{"x":12100000000000000000,"y":-4950000000000000000,"z":23400000000000000000}},"30017027":{"solarSystemId":30017027,"solarSystemName":"R.E1T.9V4","location":{"x":12800000000000000000,"y":-5310000000000000000,"z":24100000000000000000}},"30017028":{"solarSystemId":30017028,"solarSystemName":"A.H08.5C2","location":{"x":9250000000000000000,"y":-2890000000000000000,"z":23000000000000000000}},"30017029":{"solarSystemId":30017029,"solarSystemName":"N.NE8.DZ3","location":{"x":10400000000000000000,"y":-4490000000000000000,"z":27000000000000000000}},"30017030":{"solarSystemId":30017030,"solarSystemName":"D.5N7.4Y3","location":{"x":8510000000000000000,"y":-4440000000000000000,"z":22600000000000000000}},"30017031":{"solarSystemId":30017031,"solarSystemName":"D.FD9.JX2","location":{"x":10900000000000000000,"y":-3270000000000000000,"z":25400000000000000000}},"30017032":{"solarSystemId":30017032,"solarSystemName":"J:26NT","location":{"x":-16900000000000000000,"y":25300000000000000,"z":17200000000000000000}},"30017033":{"solarSystemId":30017033,"solarSystemName":"M:3RRN","location":{"x":-15600000000000000000,"y":49900000000000000,"z":14400000000000000000}},"30017034":{"solarSystemId":30017034,"solarSystemName":"Y:1T80","location":{"x":-18300000000000000000,"y":23000000000000000,"z":16600000000000000000}},"30017035":{"solarSystemId":30017035,"solarSystemName":"B:3N76","location":{"x":-19900000000000000000,"y":-79400000000000000,"z":17800000000000000000}},"30017036":{"solarSystemId":30017036,"solarSystemName":"D:1K7A","location":{"x":-15000000000000000000,"y":-212000000000000000,"z":15000000000000000000}},"30017037":{"solarSystemId":30017037,"solarSystemName":"D:S835","location":{"x":-15900000000000000000,"y":-430000000000000000,"z":15800000000000000000}},"30017038":{"solarSystemId":30017038,"solarSystemName":"Q:21A7","location":{"x":-15600000000000000000,"y":196000000000000000,"z":12700000000000000000}},"30017039":{"solarSystemId":30017039,"solarSystemName":"Z:175S","location":{"x":-15600000000000000000,"y":78300000000000000,"z":13700000000000000000}},"30017040":{"solarSystemId":30017040,"solarSystemName":"F:3O3R","location":{"x":-15300000000000000000,"y":48100000000000000,"z":13500000000000000000}},"30017041":{"solarSystemId":30017041,"solarSystemName":"M:1IS0","location":{"x":-14900000000000000000,"y":-901000000000000000,"z":12000000000000000000}},"30017042":{"solarSystemId":30017042,"solarSystemName":"M:2LV2","location":{"x":-16200000000000000000,"y":212000000000000000,"z":13700000000000000000}},"30017043":{"solarSystemId":30017043,"solarSystemName":"G:2EI2","location":{"x":-14800000000000000000,"y":71000000000000000,"z":12500000000000000000}},"30017044":{"solarSystemId":30017044,"solarSystemName":"F:1VEI","location":{"x":-15500000000000000000,"y":122000000000000000,"z":13200000000000000000}},"30017045":{"solarSystemId":30017045,"solarSystemName":"J:1NT5","location":{"x":-15400000000000000000,"y":-415000000000000000,"z":13300000000000000000}},"30017046":{"solarSystemId":30017046,"solarSystemName":"F:2ROE","location":{"x":-14500000000000000000,"y":-99600000000000000,"z":12500000000000000000}},"30017047":{"solarSystemId":30017047,"solarSystemName":"M:1O53","location":{"x":-15000000000000000000,"y":-326000000000000000,"z":14300000000000000000}},"30017048":{"solarSystemId":30017048,"solarSystemName":"F:20VT","location":{"x":-14900000000000000000,"y":-1130000000000000000,"z":14500000000000000000}},"30017049":{"solarSystemId":30017049,"solarSystemName":"P:1LI8","location":{"x":-13900000000000000000,"y":-208000000000000000,"z":13800000000000000000}},"30017050":{"solarSystemId":30017050,"solarSystemName":"B:35N0","location":{"x":-14000000000000000000,"y":-471000000000000000,"z":14300000000000000000}},"30017051":{"solarSystemId":30017051,"solarSystemName":"Y:2R3V","location":{"x":-14000000000000000000,"y":-892000000000000000,"z":14100000000000000000}},"30017052":{"solarSystemId":30017052,"solarSystemName":"U:VT9T","location":{"x":-15500000000000000000,"y":-49300000000000000,"z":14100000000000000000}},"30017053":{"solarSystemId":30017053,"solarSystemName":"Z:1I63","location":{"x":-14900000000000000000,"y":29400000000000000,"z":14000000000000000000}},"30017054":{"solarSystemId":30017054,"solarSystemName":"D:28E3","location":{"x":-14900000000000000000,"y":-658000000000000000,"z":13600000000000000000}},"30017055":{"solarSystemId":30017055,"solarSystemName":"Q:1214","location":{"x":-17600000000000000000,"y":329000000000000000,"z":13100000000000000000}},"30017056":{"solarSystemId":30017056,"solarSystemName":"Z:2372","location":{"x":-17000000000000000000,"y":41800000000000000,"z":13100000000000000000}},"30017057":{"solarSystemId":30017057,"solarSystemName":"Z:34LV","location":{"x":-17700000000000000000,"y":174000000000000000,"z":12900000000000000000}},"30017058":{"solarSystemId":30017058,"solarSystemName":"U:4E30","location":{"x":-17100000000000000000,"y":34900000000000000,"z":12800000000000000000}},"30017059":{"solarSystemId":30017059,"solarSystemName":"Q:L8RN","location":{"x":-16800000000000000000,"y":-299000000000000000,"z":13400000000000000000}},"30017060":{"solarSystemId":30017060,"solarSystemName":"F:25LS","location":{"x":-17000000000000000000,"y":-113000000000000000,"z":12600000000000000000}},"30017061":{"solarSystemId":30017061,"solarSystemName":"M:K1IN","location":{"x":-16800000000000000000,"y":-188000000000000000,"z":12600000000000000000}},"30017062":{"solarSystemId":30017062,"solarSystemName":"H:O3E4","location":{"x":-17700000000000000000,"y":32800000000000000,"z":12800000000000000000}},"30017063":{"solarSystemId":30017063,"solarSystemName":"B:2TV8","location":{"x":-13400000000000000000,"y":-325000000000000000,"z":14700000000000000000}},"30017064":{"solarSystemId":30017064,"solarSystemName":"Z:1TAK","location":{"x":-14700000000000000000,"y":-959000000000000000,"z":15200000000000000000}},"30017065":{"solarSystemId":30017065,"solarSystemName":"J:114A","location":{"x":-13000000000000000000,"y":295000000000000000,"z":15800000000000000000}},"30017066":{"solarSystemId":30017066,"solarSystemName":"B:15T3","location":{"x":-14900000000000000000,"y":-316000000000000000,"z":15300000000000000000}},"30017067":{"solarSystemId":30017067,"solarSystemName":"Z:13T2","location":{"x":-13900000000000000000,"y":-206000000000000000,"z":15300000000000000000}},"30017068":{"solarSystemId":30017068,"solarSystemName":"Q:1V78","location":{"x":-13500000000000000000,"y":232000000000000000,"z":16200000000000000000}},"30017069":{"solarSystemId":30017069,"solarSystemName":"J:27I7","location":{"x":-13500000000000000000,"y":309000000000000000,"z":15000000000000000000}},"30017070":{"solarSystemId":30017070,"solarSystemName":"D:ET01","location":{"x":-16200000000000000000,"y":-256000000000000000,"z":14300000000000000000}},"30017071":{"solarSystemId":30017071,"solarSystemName":"H:435I","location":{"x":-16600000000000000000,"y":-77000000000000000,"z":14200000000000000000}},"30017072":{"solarSystemId":30017072,"solarSystemName":"D:E3T9","location":{"x":-16500000000000000000,"y":78900000000000000,"z":14300000000000000000}},"30017073":{"solarSystemId":30017073,"solarSystemName":"D:2RL6","location":{"x":-16500000000000000000,"y":-295000000000000000,"z":14200000000000000000}},"30017074":{"solarSystemId":30017074,"solarSystemName":"J:3360","location":{"x":-15700000000000000000,"y":-393000000000000000,"z":14200000000000000000}},"30017075":{"solarSystemId":30017075,"solarSystemName":"G:1OAR","location":{"x":-15800000000000000000,"y":40300000000000000,"z":14300000000000000000}},"30017076":{"solarSystemId":30017076,"solarSystemName":"H:KRI3","location":{"x":-16200000000000000000,"y":-98800000000000000,"z":14600000000000000000}},"30017077":{"solarSystemId":30017077,"solarSystemName":"M:1L9V","location":{"x":-17100000000000000000,"y":285000000000000000,"z":14000000000000000000}},"30017078":{"solarSystemId":30017078,"solarSystemName":"Y:1S4I","location":{"x":-17600000000000000000,"y":152000000000000000,"z":14500000000000000000}},"30017079":{"solarSystemId":30017079,"solarSystemName":"H:RO57","location":{"x":-17400000000000000000,"y":200000000000000000,"z":14200000000000000000}},"30017080":{"solarSystemId":30017080,"solarSystemName":"H:2194","location":{"x":-17900000000000000000,"y":78200000000000000,"z":14200000000000000000}},"30017081":{"solarSystemId":30017081,"solarSystemName":"Z:21OR","location":{"x":-17700000000000000000,"y":167000000000000000,"z":13800000000000000000}},"30017082":{"solarSystemId":30017082,"solarSystemName":"U:173E","location":{"x":-17700000000000000000,"y":-45100000000000000,"z":14500000000000000000}},"30017083":{"solarSystemId":30017083,"solarSystemName":"P:1LNL","location":{"x":-17500000000000000000,"y":-229000000000000000,"z":13800000000000000000}},"30017084":{"solarSystemId":30017084,"solarSystemName":"D:221T","location":{"x":-13800000000000000000,"y":235000000000000000,"z":13100000000000000000}},"30017085":{"solarSystemId":30017085,"solarSystemName":"Q:20RR","location":{"x":-13400000000000000000,"y":83700000000000000,"z":12500000000000000000}},"30017086":{"solarSystemId":30017086,"solarSystemName":"B:37A6","location":{"x":-13300000000000000000,"y":120000000000000000,"z":13200000000000000000}},"30017087":{"solarSystemId":30017087,"solarSystemName":"F:39I3","location":{"x":-14100000000000000000,"y":161000000000000000,"z":12700000000000000000}},"30017088":{"solarSystemId":30017088,"solarSystemName":"F:OEK7","location":{"x":-13200000000000000000,"y":226000000000000000,"z":12700000000000000000}},"30017089":{"solarSystemId":30017089,"solarSystemName":"F:2S8S","location":{"x":-12700000000000000000,"y":212000000000000000,"z":12500000000000000000}},"30017090":{"solarSystemId":30017090,"solarSystemName":"J:LKKT","location":{"x":-13800000000000000000,"y":-155000000000000000,"z":13300000000000000000}},"30017091":{"solarSystemId":30017091,"solarSystemName":"U:1INN","location":{"x":-12700000000000000000,"y":89100000000000000,"z":13100000000000000000}},"30017092":{"solarSystemId":30017092,"solarSystemName":"G:3I51","location":{"x":-18600000000000000000,"y":206000000000000000,"z":15700000000000000000}},"30017093":{"solarSystemId":30017093,"solarSystemName":"H:393L","location":{"x":-17200000000000000000,"y":-255000000000000000,"z":16300000000000000000}},"30017094":{"solarSystemId":30017094,"solarSystemName":"B:ALI3","location":{"x":-18500000000000000000,"y":312000000000000000,"z":15300000000000000000}},"30017095":{"solarSystemId":30017095,"solarSystemName":"Y:3ORK","location":{"x":-18300000000000000000,"y":30300000000000000,"z":16400000000000000000}},"30017096":{"solarSystemId":30017096,"solarSystemName":"F:35LS","location":{"x":-17700000000000000000,"y":80700000000000000,"z":15200000000000000000}},"30017097":{"solarSystemId":30017097,"solarSystemName":"Y:2314","location":{"x":-17200000000000000000,"y":189000000000000000,"z":15400000000000000000}},"30017098":{"solarSystemId":30017098,"solarSystemName":"Y:19R2","location":{"x":-19300000000000000000,"y":235000000000000000,"z":13500000000000000000}},"30017099":{"solarSystemId":30017099,"solarSystemName":"Q:33LA","location":{"x":-18700000000000000000,"y":171000000000000000,"z":14100000000000000000}},"30017100":{"solarSystemId":30017100,"solarSystemName":"Z:326A","location":{"x":-18800000000000000000,"y":-1970000000000000,"z":13500000000000000000}},"30017101":{"solarSystemId":30017101,"solarSystemName":"J:23A7","location":{"x":-18800000000000000000,"y":971000000000000000,"z":13400000000000000000}},"30017102":{"solarSystemId":30017102,"solarSystemName":"F:27NA","location":{"x":-18800000000000000000,"y":202000000000000000,"z":13500000000000000000}},"30017103":{"solarSystemId":30017103,"solarSystemName":"D:14R4","location":{"x":-18800000000000000000,"y":-776000000000000000,"z":11600000000000000000}},"30017104":{"solarSystemId":30017104,"solarSystemName":"G:14E1","location":{"x":-18200000000000000000,"y":-376000000000000000,"z":12900000000000000000}},"30017105":{"solarSystemId":30017105,"solarSystemName":"F:37NL","location":{"x":-3490000000000000000,"y":-3330000000000000000,"z":15400000000000000000}},"30017106":{"solarSystemId":30017106,"solarSystemName":"G:173I","location":{"x":-3380000000000000000,"y":-3330000000000000000,"z":15000000000000000000}},"30017107":{"solarSystemId":30017107,"solarSystemName":"Y:2OO6","location":{"x":-3410000000000000000,"y":-4200000000000000000,"z":15100000000000000000}},"30017108":{"solarSystemId":30017108,"solarSystemName":"Y:2O0V","location":{"x":-3160000000000000000,"y":-3690000000000000000,"z":15200000000000000000}},"30017109":{"solarSystemId":30017109,"solarSystemName":"Q:1KR1","location":{"x":-3670000000000000000,"y":-3760000000000000000,"z":14900000000000000000}},"30017110":{"solarSystemId":30017110,"solarSystemName":"J:3S91","location":{"x":-3430000000000000000,"y":-3490000000000000000,"z":14900000000000000000}},"30017111":{"solarSystemId":30017111,"solarSystemName":"Z:11OO","location":{"x":-2460000000000000000,"y":-6210000000000000000,"z":18000000000000000000}},"30017112":{"solarSystemId":30017112,"solarSystemName":"Q:1IO2","location":{"x":-547000000000000000,"y":-4170000000000000000,"z":17700000000000000000}},"30017113":{"solarSystemId":30017113,"solarSystemName":"U:2II7","location":{"x":-1130000000000000000,"y":-4440000000000000000,"z":16800000000000000000}},"30017114":{"solarSystemId":30017114,"solarSystemName":"G:N810","location":{"x":-620000000000000000,"y":-4500000000000000000,"z":16000000000000000000}},"30017115":{"solarSystemId":30017115,"solarSystemName":"P:1A4T","location":{"x":-2400000000000000000,"y":-6680000000000000000,"z":16100000000000000000}},"30017116":{"solarSystemId":30017116,"solarSystemName":"D:338E","location":{"x":-527000000000000000,"y":-3990000000000000000,"z":17500000000000000000}},"30017117":{"solarSystemId":30017117,"solarSystemName":"Q:16IK","location":{"x":-125000000000000000,"y":-4930000000000000000,"z":16600000000000000000}},"30017118":{"solarSystemId":30017118,"solarSystemName":"Y:3V1S","location":{"x":-2360000000000000000,"y":-3420000000000000000,"z":12200000000000000000}},"30017119":{"solarSystemId":30017119,"solarSystemName":"Z:29ES","location":{"x":-2210000000000000000,"y":-2630000000000000000,"z":14900000000000000000}},"30017120":{"solarSystemId":30017120,"solarSystemName":"J:4388","location":{"x":-3320000000000000000,"y":-2680000000000000000,"z":12400000000000000000}},"30017121":{"solarSystemId":30017121,"solarSystemName":"H:26S1","location":{"x":-2050000000000000000,"y":-3350000000000000000,"z":13600000000000000000}},"30017122":{"solarSystemId":30017122,"solarSystemName":"U:1VOK","location":{"x":-3180000000000000000,"y":-3510000000000000000,"z":15900000000000000000}},"30017123":{"solarSystemId":30017123,"solarSystemName":"U:2V83","location":{"x":-2230000000000000000,"y":-4040000000000000000,"z":14400000000000000000}},"30017124":{"solarSystemId":30017124,"solarSystemName":"B:N4SE","location":{"x":-3840000000000000000,"y":-2810000000000000000,"z":14400000000000000000}},"30017125":{"solarSystemId":30017125,"solarSystemName":"P:1829","location":{"x":-3340000000000000000,"y":-2470000000000000000,"z":14500000000000000000}},"30017126":{"solarSystemId":30017126,"solarSystemName":"H:28I4","location":{"x":-4570000000000000000,"y":-2730000000000000000,"z":14900000000000000000}},"30017127":{"solarSystemId":30017127,"solarSystemName":"P:2628","location":{"x":-3900000000000000000,"y":-3500000000000000000,"z":15500000000000000000}},"30017128":{"solarSystemId":30017128,"solarSystemName":"H:144A","location":{"x":-3840000000000000000,"y":-2750000000000000000,"z":13700000000000000000}},"30017129":{"solarSystemId":30017129,"solarSystemName":"Q:28E9","location":{"x":-3180000000000000000,"y":-2340000000000000000,"z":15100000000000000000}},"30017130":{"solarSystemId":30017130,"solarSystemName":"D:188A","location":{"x":-3220000000000000000,"y":-2720000000000000000,"z":15300000000000000000}},"30017131":{"solarSystemId":30017131,"solarSystemName":"F:4L6S","location":{"x":-3360000000000000000,"y":-3540000000000000000,"z":15900000000000000000}},"30017132":{"solarSystemId":30017132,"solarSystemName":"P:2V7A","location":{"x":-3830000000000000000,"y":-3710000000000000000,"z":15800000000000000000}},"30017133":{"solarSystemId":30017133,"solarSystemName":"Z:30V5","location":{"x":-3360000000000000000,"y":-3840000000000000000,"z":16200000000000000000}},"30017134":{"solarSystemId":30017134,"solarSystemName":"U:38SS","location":{"x":-3270000000000000000,"y":-5120000000000000000,"z":16400000000000000000}},"30017135":{"solarSystemId":30017135,"solarSystemName":"F:2616","location":{"x":-4320000000000000000,"y":-3890000000000000000,"z":16700000000000000000}},"30017136":{"solarSystemId":30017136,"solarSystemName":"U:33T6","location":{"x":-3140000000000000000,"y":-3640000000000000000,"z":16400000000000000000}},"30017137":{"solarSystemId":30017137,"solarSystemName":"D:2VTL","location":{"x":-2900000000000000000,"y":-3880000000000000000,"z":16700000000000000000}},"30017138":{"solarSystemId":30017138,"solarSystemName":"G:2N2O","location":{"x":-1930000000000000000,"y":-3320000000000000000,"z":16400000000000000000}},"30017139":{"solarSystemId":30017139,"solarSystemName":"F:402L","location":{"x":-1850000000000000000,"y":-3480000000000000000,"z":17600000000000000000}},"30017140":{"solarSystemId":30017140,"solarSystemName":"Q:38EO","location":{"x":-1870000000000000000,"y":-3000000000000000000,"z":15300000000000000000}},"30017141":{"solarSystemId":30017141,"solarSystemName":"Q:25K0","location":{"x":-1930000000000000000,"y":-2960000000000000000,"z":16300000000000000000}},"30017142":{"solarSystemId":30017142,"solarSystemName":"B:2A7I","location":{"x":-2760000000000000000,"y":-3150000000000000000,"z":15600000000000000000}},"30017143":{"solarSystemId":30017143,"solarSystemName":"F:3452","location":{"x":-4480000000000000000,"y":-3890000000000000000,"z":15300000000000000000}},"30017144":{"solarSystemId":30017144,"solarSystemName":"P:KE85","location":{"x":-3910000000000000000,"y":-3750000000000000000,"z":14400000000000000000}},"30017145":{"solarSystemId":30017145,"solarSystemName":"P:360E","location":{"x":-4270000000000000000,"y":-3400000000000000000,"z":14900000000000000000}},"30017146":{"solarSystemId":30017146,"solarSystemName":"Y:1ELR","location":{"x":-4160000000000000000,"y":-3240000000000000000,"z":14800000000000000000}},"30017147":{"solarSystemId":30017147,"solarSystemName":"U:25RR","location":{"x":-4650000000000000000,"y":-3580000000000000000,"z":14900000000000000000}},"30017148":{"solarSystemId":30017148,"solarSystemName":"Q:2SST","location":{"x":-5010000000000000000,"y":-3730000000000000000,"z":14600000000000000000}},"30017149":{"solarSystemId":30017149,"solarSystemName":"Z:11IN","location":{"x":-4010000000000000000,"y":-3660000000000000000,"z":14900000000000000000}},"30017150":{"solarSystemId":30017150,"solarSystemName":"G:1N37","location":{"x":-2190000000000000000,"y":-2650000000000000000,"z":18300000000000000000}},"30017151":{"solarSystemId":30017151,"solarSystemName":"D:21S8","location":{"x":-2400000000000000000,"y":-2990000000000000000,"z":18000000000000000000}},"30017152":{"solarSystemId":30017152,"solarSystemName":"Z:2TO8","location":{"x":-2950000000000000000,"y":-3130000000000000000,"z":19100000000000000000}},"30017153":{"solarSystemId":30017153,"solarSystemName":"Z:ETAI","location":{"x":-1970000000000000000,"y":-4070000000000000000,"z":21200000000000000000}},"30017154":{"solarSystemId":30017154,"solarSystemName":"H:3ITR","location":{"x":-4020000000000000000,"y":-3180000000000000000,"z":17900000000000000000}},"30017155":{"solarSystemId":30017155,"solarSystemName":"P:28RL","location":{"x":-2200000000000000000,"y":-4310000000000000000,"z":17900000000000000000}},"30017156":{"solarSystemId":30017156,"solarSystemName":"U:1EI3","location":{"x":-2860000000000000000,"y":-3550000000000000000,"z":19900000000000000000}},"30017157":{"solarSystemId":30017157,"solarSystemName":"U:2I16","location":{"x":-10700000000000000000,"y":-11200000000000000000,"z":9510000000000000000}},"30017158":{"solarSystemId":30017158,"solarSystemName":"B:3ASV","location":{"x":-7360000000000000000,"y":-10600000000000000000,"z":14800000000000000000}},"30017159":{"solarSystemId":30017159,"solarSystemName":"M:4RR7","location":{"x":-10600000000000000000,"y":-9240000000000000000,"z":9470000000000000000}},"30017160":{"solarSystemId":30017160,"solarSystemName":"B:3A3E","location":{"x":-14500000000000000000,"y":-5720000000000000000,"z":10100000000000000000}},"30017161":{"solarSystemId":30017161,"solarSystemName":"G:V8OK","location":{"x":-9770000000000000000,"y":-8240000000000000000,"z":11000000000000000000}},"30017162":{"solarSystemId":30017162,"solarSystemName":"U:30IV","location":{"x":-4960000000000000000,"y":-9480000000000000000,"z":9080000000000000000}},"30017163":{"solarSystemId":30017163,"solarSystemName":"P:1NTL","location":{"x":-6640000000000000000,"y":-8310000000000000000,"z":9650000000000000000}},"30017164":{"solarSystemId":30017164,"solarSystemName":"H:3A7R","location":{"x":-5030000000000000000,"y":-8480000000000000000,"z":9990000000000000000}},"30017165":{"solarSystemId":30017165,"solarSystemName":"G:ER30","location":{"x":-6720000000000000000,"y":-7180000000000000000,"z":10000000000000000000}},"30017166":{"solarSystemId":30017166,"solarSystemName":"B:21SE","location":{"x":-5500000000000000000,"y":-9370000000000000000,"z":8440000000000000000}},"30017167":{"solarSystemId":30017167,"solarSystemName":"J:30NK","location":{"x":-6540000000000000000,"y":-5880000000000000000,"z":10400000000000000000}},"30017168":{"solarSystemId":30017168,"solarSystemName":"U:TA1N","location":{"x":-8190000000000000000,"y":-7390000000000000000,"z":11100000000000000000}},"30017169":{"solarSystemId":30017169,"solarSystemName":"H:3AI2","location":{"x":-7680000000000000000,"y":-6040000000000000000,"z":10700000000000000000}},"30017170":{"solarSystemId":30017170,"solarSystemName":"P:1TT3","location":{"x":-8810000000000000000,"y":-6440000000000000000,"z":10800000000000000000}},"30017171":{"solarSystemId":30017171,"solarSystemName":"P:1TV1","location":{"x":-6710000000000000000,"y":-5850000000000000000,"z":9960000000000000000}},"30017172":{"solarSystemId":30017172,"solarSystemName":"M:2VEE","location":{"x":-10300000000000000000,"y":-5400000000000000000,"z":7860000000000000000}},"30017173":{"solarSystemId":30017173,"solarSystemName":"J:29KI","location":{"x":-9080000000000000000,"y":-6430000000000000000,"z":9130000000000000000}},"30017174":{"solarSystemId":30017174,"solarSystemName":"Q:1S05","location":{"x":-9850000000000000000,"y":-4950000000000000000,"z":6500000000000000000}},"30017175":{"solarSystemId":30017175,"solarSystemName":"D:4AEK","location":{"x":-8110000000000000000,"y":-3650000000000000000,"z":8300000000000000000}},"30017176":{"solarSystemId":30017176,"solarSystemName":"H:1KV4","location":{"x":-7310000000000000000,"y":-4930000000000000000,"z":9590000000000000000}},"30017177":{"solarSystemId":30017177,"solarSystemName":"Y:1LR6","location":{"x":-8920000000000000000,"y":-5810000000000000000,"z":8110000000000000000}},"30017178":{"solarSystemId":30017178,"solarSystemName":"M:3TTA","location":{"x":-8570000000000000000,"y":-6110000000000000000,"z":6950000000000000000}},"30017179":{"solarSystemId":30017179,"solarSystemName":"Z:3NR5","location":{"x":-5700000000000000000,"y":-7790000000000000000,"z":6960000000000000000}},"30017180":{"solarSystemId":30017180,"solarSystemName":"Z:3E91","location":{"x":-7650000000000000000,"y":-4950000000000000000,"z":7670000000000000000}},"30017181":{"solarSystemId":30017181,"solarSystemName":"J:3T70","location":{"x":-7310000000000000000,"y":-5550000000000000000,"z":8240000000000000000}},"30017182":{"solarSystemId":30017182,"solarSystemName":"J:3ANT","location":{"x":-6870000000000000000,"y":-6400000000000000000,"z":6610000000000000000}},"30017183":{"solarSystemId":30017183,"solarSystemName":"Y:3RVN","location":{"x":-8770000000000000000,"y":-7380000000000000000,"z":7910000000000000000}},"30017184":{"solarSystemId":30017184,"solarSystemName":"Y:3O1R","location":{"x":-5760000000000000000,"y":-11300000000000000000,"z":6480000000000000000}},"30017185":{"solarSystemId":30017185,"solarSystemName":"Z:3I9T","location":{"x":-7890000000000000000,"y":-7180000000000000000,"z":7180000000000000000}},"30017186":{"solarSystemId":30017186,"solarSystemName":"D:1KTS","location":{"x":-6850000000000000000,"y":-10300000000000000000,"z":7390000000000000000}},"30017187":{"solarSystemId":30017187,"solarSystemName":"H:39ER","location":{"x":-7600000000000000000,"y":-10300000000000000000,"z":7510000000000000000}},"30017188":{"solarSystemId":30017188,"solarSystemName":"Z:3I80","location":{"x":-7280000000000000000,"y":-6840000000000000000,"z":13900000000000000000}},"30017189":{"solarSystemId":30017189,"solarSystemName":"Z:1O60","location":{"x":-6880000000000000000,"y":-6380000000000000000,"z":12400000000000000000}},"30017190":{"solarSystemId":30017190,"solarSystemName":"P:3S2E","location":{"x":-6830000000000000000,"y":-6450000000000000000,"z":13200000000000000000}},"30017191":{"solarSystemId":30017191,"solarSystemName":"U:2151","location":{"x":-6310000000000000000,"y":-6200000000000000000,"z":11800000000000000000}},"30017192":{"solarSystemId":30017192,"solarSystemName":"H:3EO0","location":{"x":-8120000000000000000,"y":-6130000000000000000,"z":12900000000000000000}},"30017193":{"solarSystemId":30017193,"solarSystemName":"D:2SII","location":{"x":-5880000000000000000,"y":-6600000000000000000,"z":12800000000000000000}},"30017194":{"solarSystemId":30017194,"solarSystemName":"Q:36OO","location":{"x":-8420000000000000000,"y":-11200000000000000000,"z":13900000000000000000}},"30017195":{"solarSystemId":30017195,"solarSystemName":"U:360K","location":{"x":-5650000000000000000,"y":-9830000000000000000,"z":12400000000000000000}},"30017196":{"solarSystemId":30017196,"solarSystemName":"Y:2ENN","location":{"x":-10500000000000000000,"y":-10700000000000000000,"z":11000000000000000000}},"30017197":{"solarSystemId":30017197,"solarSystemName":"H:327L","location":{"x":-6880000000000000000,"y":-12300000000000000000,"z":10600000000000000000}},"30017198":{"solarSystemId":30017198,"solarSystemName":"D:1A16","location":{"x":-4960000000000000000,"y":-12000000000000000000,"z":13900000000000000000}},"30017199":{"solarSystemId":30017199,"solarSystemName":"H.5C1.C0C","location":{"x":1740000000000000000,"y":-577000000000000000,"z":25100000000000000000}},"30017200":{"solarSystemId":30017200,"solarSystemName":"H.ER1.9KQ","location":{"x":1660000000000000000,"y":-755000000000000000,"z":25200000000000000000}},"30017201":{"solarSystemId":30017201,"solarSystemName":"E.5N1.E5C","location":{"x":1590000000000000000,"y":-583000000000000000,"z":25100000000000000000}},"30017202":{"solarSystemId":30017202,"solarSystemName":"L.512.BNQ","location":{"x":2350000000000000000,"y":-735000000000000000,"z":24600000000000000000}},"30017203":{"solarSystemId":30017203,"solarSystemName":"H.QP1.Z1Y","location":{"x":1820000000000000000,"y":-975000000000000000,"z":24900000000000000000}},"30017204":{"solarSystemId":30017204,"solarSystemName":"S.MS1.9Y2","location":{"x":1530000000000000000,"y":-103000000000000000,"z":28600000000000000000}},"30017205":{"solarSystemId":30017205,"solarSystemName":"D.RW3.WC1","location":{"x":4520000000000000000,"y":-1760000000000000000,"z":30400000000000000000}},"30017206":{"solarSystemId":30017206,"solarSystemName":"N.89V.D4Z","location":{"x":695000000000000000,"y":-1010000000000000000,"z":25600000000000000000}},"30017207":{"solarSystemId":30017207,"solarSystemName":"T.3X1.7MY","location":{"x":2090000000000000000,"y":-992000000000000000,"z":27500000000000000000}},"30017208":{"solarSystemId":30017208,"solarSystemName":"H.081.LSY","location":{"x":1440000000000000000,"y":-985000000000000000,"z":28000000000000000000}},"30017209":{"solarSystemId":30017209,"solarSystemName":"S.SX4.WZT","location":{"x":5560000000000000000,"y":-429000000000000000,"z":23900000000000000000}},"30017210":{"solarSystemId":30017210,"solarSystemName":"T.H14.B45","location":{"x":4670000000000000000,"y":-185000000000000000,"z":25400000000000000000}},"30017211":{"solarSystemId":30017211,"solarSystemName":"Afdrep","location":{"x":4530000000000000000,"y":-89900000000000000,"z":23800000000000000000}},"30017212":{"solarSystemId":30017212,"solarSystemName":"H.7V2.845","location":{"x":3000000000000000000,"y":-185000000000000000,"z":23600000000000000000}},"30017213":{"solarSystemId":30017213,"solarSystemName":"I.P54.Q31","location":{"x":4810000000000000000,"y":-1280000000000000000,"z":23900000000000000000}},"30017214":{"solarSystemId":30017214,"solarSystemName":"L.FV1.B21","location":{"x":1860000000000000000,"y":-1250000000000000000,"z":24300000000000000000}},"30017215":{"solarSystemId":30017215,"solarSystemName":"S.TC1.JRS","location":{"x":1740000000000000000,"y":-376000000000000000,"z":24400000000000000000}},"30017216":{"solarSystemId":30017216,"solarSystemName":"D.3Z1.9C6","location":{"x":2170000000000000000,"y":-235000000000000000,"z":23400000000000000000}},"30017217":{"solarSystemId":30017217,"solarSystemName":"E.C32.913","location":{"x":2430000000000000000,"y":-110000000000000000,"z":24100000000000000000}},"30017218":{"solarSystemId":30017218,"solarSystemName":"D.2Y1.BGL","location":{"x":2130000000000000000,"y":-531000000000000000,"z":23800000000000000000}},"30017219":{"solarSystemId":30017219,"solarSystemName":"L.BM1.NDW","location":{"x":1790000000000000000,"y":-1060000000000000000,"z":26000000000000000000}},"30017220":{"solarSystemId":30017220,"solarSystemName":"R.YP1.19G","location":{"x":1830000000000000000,"y":-839000000000000000,"z":26200000000000000000}},"30017221":{"solarSystemId":30017221,"solarSystemName":"R.M82.H0J","location":{"x":2610000000000000000,"y":-902000000000000000,"z":26000000000000000000}},"30017222":{"solarSystemId":30017222,"solarSystemName":"U.LT1.2LD","location":{"x":1570000000000000000,"y":-556000000000000000,"z":25900000000000000000}},"30017223":{"solarSystemId":30017223,"solarSystemName":"N.ZS1.W8L","location":{"x":1550000000000000000,"y":-514000000000000000,"z":25500000000000000000}},"30017224":{"solarSystemId":30017224,"solarSystemName":"H.Y54.1WD","location":{"x":4820000000000000000,"y":-573000000000000000,"z":25500000000000000000}},"30017225":{"solarSystemId":30017225,"solarSystemName":"S.MW3.RGT","location":{"x":4520000000000000000,"y":-423000000000000000,"z":25500000000000000000}},"30017226":{"solarSystemId":30017226,"solarSystemName":"T.GC2.KP9","location":{"x":2910000000000000000,"y":-346000000000000000,"z":25100000000000000000}},"30017227":{"solarSystemId":30017227,"solarSystemName":"E.7H1.633","location":{"x":2030000000000000000,"y":-112000000000000000,"z":25400000000000000000}},"30017228":{"solarSystemId":30017228,"solarSystemName":"T.RG2.NRQ","location":{"x":3150000000000000000,"y":736000000000000000,"z":24000000000000000000}},"30017229":{"solarSystemId":30017229,"solarSystemName":"D.MG3.C65","location":{"x":4310000000000000000,"y":-6000000000000000000,"z":24000000000000000000}},"30017230":{"solarSystemId":30017230,"solarSystemName":"R.MH3.WV7","location":{"x":4340000000000000000,"y":-8790000000000000000,"z":24200000000000000000}},"30017231":{"solarSystemId":30017231,"solarSystemName":"R.3B4.W83","location":{"x":5410000000000000000,"y":-3780000000000000000,"z":25200000000000000000}},"30017232":{"solarSystemId":30017232,"solarSystemName":"S.6S2.B47","location":{"x":2670000000000000000,"y":-8240000000000000000,"z":22900000000000000000}},"30017233":{"solarSystemId":30017233,"solarSystemName":"R.EY3.P36","location":{"x":4470000000000000000,"y":-7050000000000000000,"z":26600000000000000000}},"30017234":{"solarSystemId":30017234,"solarSystemName":"M:2N8E","location":{"x":-3550000000000000000,"y":-693000000000000000,"z":15400000000000000000}},"30017235":{"solarSystemId":30017235,"solarSystemName":"G:3E5A","location":{"x":-1580000000000000000,"y":-219000000000000000,"z":14500000000000000000}},"30017236":{"solarSystemId":30017236,"solarSystemName":"D:1ST0","location":{"x":-1420000000000000000,"y":-181000000000000000,"z":14600000000000000000}},"30017237":{"solarSystemId":30017237,"solarSystemName":"M:13VN","location":{"x":-2200000000000000000,"y":579000000000000000,"z":12700000000000000000}},"30017238":{"solarSystemId":30017238,"solarSystemName":"U:1TL1","location":{"x":-1230000000000000000,"y":73100000000000000,"z":15500000000000000000}},"30017239":{"solarSystemId":30017239,"solarSystemName":"D:3612","location":{"x":-2110000000000000000,"y":-179000000000000000,"z":12800000000000000000}},"30017240":{"solarSystemId":30017240,"solarSystemName":"Y:38LO","location":{"x":-2350000000000000000,"y":-75000000000000000,"z":13100000000000000000}},"30017241":{"solarSystemId":30017241,"solarSystemName":"M:26RE","location":{"x":-1450000000000000000,"y":81400000000000000,"z":14700000000000000000}},"30017242":{"solarSystemId":30017242,"solarSystemName":"Y:3973","location":{"x":-2400000000000000000,"y":-55900000000000000,"z":13000000000000000000}},"30017243":{"solarSystemId":30017243,"solarSystemName":"M:T1OA","location":{"x":-2170000000000000000,"y":-563000000000000000,"z":13900000000000000000}},"30017244":{"solarSystemId":30017244,"solarSystemName":"H:36K6","location":{"x":-3070000000000000000,"y":-586000000000000000,"z":14800000000000000000}},"30017245":{"solarSystemId":30017245,"solarSystemName":"B:38KV","location":{"x":-2070000000000000000,"y":23200000000000000,"z":14500000000000000000}},"30017246":{"solarSystemId":30017246,"solarSystemName":"Y:34TI","location":{"x":-1410000000000000000,"y":-305000000000000000,"z":17300000000000000000}},"30017247":{"solarSystemId":30017247,"solarSystemName":"F:3S94","location":{"x":-1660000000000000000,"y":-471000000000000000,"z":16200000000000000000}},"30017248":{"solarSystemId":30017248,"solarSystemName":"J:1E5T","location":{"x":-3820000000000000000,"y":-200000000000000000,"z":16400000000000000000}},"30017249":{"solarSystemId":30017249,"solarSystemName":"F:254N","location":{"x":-2460000000000000000,"y":97300000000000000,"z":17000000000000000000}},"30017250":{"solarSystemId":30017250,"solarSystemName":"J:1OTL","location":{"x":-2800000000000000000,"y":-107000000000000000,"z":15800000000000000000}},"30017251":{"solarSystemId":30017251,"solarSystemName":"B:2KEV","location":{"x":-4330000000000000000,"y":-328000000000000000,"z":16300000000000000000}},"30017252":{"solarSystemId":30017252,"solarSystemName":"F:3IL8","location":{"x":-3640000000000000000,"y":252000000000000000,"z":16800000000000000000}},"30017253":{"solarSystemId":30017253,"solarSystemName":"F:22S9","location":{"x":-1520000000000000000,"y":-248000000000000000,"z":16700000000000000000}},"30017254":{"solarSystemId":30017254,"solarSystemName":"B:1SV9","location":{"x":-2430000000000000000,"y":215000000000000000,"z":16000000000000000000}},"30017255":{"solarSystemId":30017255,"solarSystemName":"P:1T7N","location":{"x":-3590000000000000000,"y":-333000000000000000,"z":13200000000000000000}},"30017256":{"solarSystemId":30017256,"solarSystemName":"G:4EVT","location":{"x":-3290000000000000000,"y":-731000000000000000,"z":12400000000000000000}},"30017257":{"solarSystemId":30017257,"solarSystemName":"P:1KEE","location":{"x":-3400000000000000000,"y":3900000000000000,"z":13200000000000000000}},"30017258":{"solarSystemId":30017258,"solarSystemName":"M:3A8O","location":{"x":-3100000000000000000,"y":53400000000000000,"z":13600000000000000000}},"30017259":{"solarSystemId":30017259,"solarSystemName":"U:1EV1","location":{"x":-2900000000000000000,"y":-427000000000000000,"z":12600000000000000000}},"30017260":{"solarSystemId":30017260,"solarSystemName":"F:3OI8","location":{"x":-2890000000000000000,"y":96700000000000000,"z":13000000000000000000}},"30017261":{"solarSystemId":30017261,"solarSystemName":"Z:LARE","location":{"x":-3590000000000000000,"y":429000000000000000,"z":12800000000000000000}},"30017262":{"solarSystemId":30017262,"solarSystemName":"J:1321","location":{"x":-4330000000000000000,"y":362000000000000000,"z":11800000000000000000}},"30017263":{"solarSystemId":30017263,"solarSystemName":"P:2L9E","location":{"x":-3940000000000000000,"y":499000000000000000,"z":13200000000000000000}},"30017264":{"solarSystemId":30017264,"solarSystemName":"Q:31T9","location":{"x":706000000000000000,"y":-2390000000000000000,"z":17800000000000000000}},"30017265":{"solarSystemId":30017265,"solarSystemName":"G:EOO3","location":{"x":-1220000000000000000,"y":-520000000000000000,"z":18000000000000000000}},"30017266":{"solarSystemId":30017266,"solarSystemName":"F:20O8","location":{"x":-56400000000000000,"y":-1660000000000000000,"z":18000000000000000000}},"30017267":{"solarSystemId":30017267,"solarSystemName":"Z:32ON","location":{"x":1040000000000000000,"y":-1210000000000000000,"z":17000000000000000000}},"30017268":{"solarSystemId":30017268,"solarSystemName":"M:1OR4","location":{"x":-306000000000000000,"y":-1740000000000000000,"z":18100000000000000000}},"30017269":{"solarSystemId":30017269,"solarSystemName":"G:1SKT","location":{"x":-635000000000000000,"y":-835000000000000000,"z":17900000000000000000}},"30017270":{"solarSystemId":30017270,"solarSystemName":"F:1KIR","location":{"x":-879000000000000000,"y":-1680000000000000000,"z":18000000000000000000}},"30017271":{"solarSystemId":30017271,"solarSystemName":"F:28NO","location":{"x":-489000000000000000,"y":-441000000000000000,"z":19500000000000000000}},"30017272":{"solarSystemId":30017272,"solarSystemName":"M:22AO","location":{"x":-906000000000000000,"y":44400000000000000,"z":18000000000000000000}},"30017273":{"solarSystemId":30017273,"solarSystemName":"U:1VV8","location":{"x":-962000000000000000,"y":-534000000000000000,"z":19600000000000000000}},"30017274":{"solarSystemId":30017274,"solarSystemName":"D:206T","location":{"x":-1990000000000000000,"y":-198000000000000000,"z":19500000000000000000}},"30017275":{"solarSystemId":30017275,"solarSystemName":"J:3R32","location":{"x":-856000000000000000,"y":-535000000000000000,"z":16500000000000000000}},"30017276":{"solarSystemId":30017276,"solarSystemName":"F:34S8","location":{"x":-1040000000000000000,"y":98600000000000000,"z":16900000000000000000}},"30017277":{"solarSystemId":30017277,"solarSystemName":"U:26RE","location":{"x":-899000000000000000,"y":645000000000000000,"z":16300000000000000000}},"30017278":{"solarSystemId":30017278,"solarSystemName":"M:1KR5","location":{"x":-5260000000000000000,"y":792000000000000000,"z":15300000000000000000}},"30017279":{"solarSystemId":30017279,"solarSystemName":"Z:3STN","location":{"x":-6520000000000000000,"y":-293000000000000000,"z":15000000000000000000}},"30017280":{"solarSystemId":30017280,"solarSystemName":"F:3OVO","location":{"x":-6560000000000000000,"y":61000000000000000,"z":15200000000000000000}},"30017281":{"solarSystemId":30017281,"solarSystemName":"Y:22I3","location":{"x":-4870000000000000000,"y":-691000000000000000,"z":15200000000000000000}},"30017282":{"solarSystemId":30017282,"solarSystemName":"P:T8T5","location":{"x":-4430000000000000000,"y":396000000000000000,"z":14000000000000000000}},"30017283":{"solarSystemId":30017283,"solarSystemName":"J:9AER","location":{"x":-4760000000000000000,"y":395000000000000000,"z":14100000000000000000}},"30017284":{"solarSystemId":30017284,"solarSystemName":"J:4V7S","location":{"x":-6590000000000000000,"y":206000000000000000,"z":15200000000000000000}},"30017285":{"solarSystemId":30017285,"solarSystemName":"F:2ENE","location":{"x":-4610000000000000000,"y":-343000000000000000,"z":15000000000000000000}},"30017286":{"solarSystemId":30017286,"solarSystemName":"H:36TO","location":{"x":-6510000000000000000,"y":386000000000000000,"z":15500000000000000000}},"30017287":{"solarSystemId":30017287,"solarSystemName":"G:149O","location":{"x":-4950000000000000000,"y":-336000000000000000,"z":14000000000000000000}},"30017288":{"solarSystemId":30017288,"solarSystemName":"J:OVN3","location":{"x":-7080000000000000000,"y":337000000000000000,"z":15500000000000000000}},"30017289":{"solarSystemId":30017289,"solarSystemName":"U:36R0","location":{"x":-5470000000000000000,"y":-702000000000000000,"z":14700000000000000000}},"30017290":{"solarSystemId":30017290,"solarSystemName":"Y:24T3","location":{"x":-6520000000000000000,"y":-508000000000000000,"z":15000000000000000000}},"30017291":{"solarSystemId":30017291,"solarSystemName":"M:28A0","location":{"x":-5730000000000000000,"y":714035000000000,"z":14400000000000000000}},"30017292":{"solarSystemId":30017292,"solarSystemName":"U:1EEO","location":{"x":-1460000000000000000,"y":-837000000000000000,"z":15500000000000000000}},"30017293":{"solarSystemId":30017293,"solarSystemName":"Y:3TT8","location":{"x":-1870000000000000000,"y":-227000000000000000,"z":15300000000000000000}},"30017294":{"solarSystemId":30017294,"solarSystemName":"F:227K","location":{"x":-1590000000000000000,"y":38600000000000000,"z":15200000000000000000}},"30017295":{"solarSystemId":30017295,"solarSystemName":"J:1O57","location":{"x":-1290000000000000000,"y":-815000000000000000,"z":15800000000000000000}},"30017296":{"solarSystemId":30017296,"solarSystemName":"P:205K","location":{"x":-2030000000000000000,"y":-440000000000000000,"z":15400000000000000000}},"30017297":{"solarSystemId":30017297,"solarSystemName":"Y:OIK8","location":{"x":-1260000000000000000,"y":-521000000000000000,"z":16200000000000000000}},"30017298":{"solarSystemId":30017298,"solarSystemName":"P:2L6S","location":{"x":-1100000000000000000,"y":-374000000000000000,"z":15100000000000000000}},"30017299":{"solarSystemId":30017299,"solarSystemName":"M:2ATV","location":{"x":-1460000000000000000,"y":-780000000000000000,"z":15000000000000000000}},"30017300":{"solarSystemId":30017300,"solarSystemName":"H:18EI","location":{"x":-5310000000000000000,"y":-202000000000000000,"z":17300000000000000000}},"30017301":{"solarSystemId":30017301,"solarSystemName":"G:1K0R","location":{"x":-5240000000000000000,"y":-259000000000000000,"z":17700000000000000000}},"30017302":{"solarSystemId":30017302,"solarSystemName":"H:3SI6","location":{"x":-5940000000000000000,"y":-495000000000000000,"z":17000000000000000000}},"30017303":{"solarSystemId":30017303,"solarSystemName":"Q:1L79","location":{"x":-7010000000000000000,"y":123000000000000000,"z":17400000000000000000}},"30017304":{"solarSystemId":30017304,"solarSystemName":"Q:3N0K","location":{"x":-5390000000000000000,"y":-125000000000000000,"z":19400000000000000000}},"30017305":{"solarSystemId":30017305,"solarSystemName":"Q:3OSO","location":{"x":-6820000000000000000,"y":712000000000000000,"z":16500000000000000000}},"30017306":{"solarSystemId":30017306,"solarSystemName":"D:21K6","location":{"x":-6140000000000000000,"y":-314000000000000000,"z":16000000000000000000}},"30017307":{"solarSystemId":30017307,"solarSystemName":"Q:3916","location":{"x":-6340000000000000000,"y":-44600000000000000,"z":15800000000000000000}},"30017308":{"solarSystemId":30017308,"solarSystemName":"M:3T27","location":{"x":-2600000000000000000,"y":-5360000000000000000,"z":-2630000000000000000}},"30017309":{"solarSystemId":30017309,"solarSystemName":"D:3EEO","location":{"x":-2640000000000000000,"y":-5730000000000000000,"z":-4830000000000000000}},"30017310":{"solarSystemId":30017310,"solarSystemName":"B:379A","location":{"x":-1900000000000000000,"y":-6270000000000000000,"z":-4280000000000000000}},"30017311":{"solarSystemId":30017311,"solarSystemName":"H:2O2S","location":{"x":-3540000000000000000,"y":-6260000000000000000,"z":-3880000000000000000}},"30017312":{"solarSystemId":30017312,"solarSystemName":"G:32I6","location":{"x":-3030000000000000000,"y":-5470000000000000000,"z":-3740000000000000000}},"30017313":{"solarSystemId":30017313,"solarSystemName":"Z:2TI5","location":{"x":-2700000000000000000,"y":-5200000000000000000,"z":-5170000000000000000}},"30017314":{"solarSystemId":30017314,"solarSystemName":"Q:3I31","location":{"x":-4910000000000000000,"y":-4250000000000000000,"z":-4190000000000000000}},"30017315":{"solarSystemId":30017315,"solarSystemName":"Z:3E26","location":{"x":-5680000000000000000,"y":-4900000000000000000,"z":-3250000000000000000}},"30017316":{"solarSystemId":30017316,"solarSystemName":"F:2K42","location":{"x":-6900000000000000000,"y":-5490000000000000000,"z":-3240000000000000000}},"30017317":{"solarSystemId":30017317,"solarSystemName":"U:2TNS","location":{"x":-4920000000000000000,"y":-4860000000000000000,"z":-2050000000000000000}},"30017318":{"solarSystemId":30017318,"solarSystemName":"U:29V6","location":{"x":-4540000000000000000,"y":-4050000000000000000,"z":-3140000000000000000}},"30017319":{"solarSystemId":30017319,"solarSystemName":"B:33KR","location":{"x":-5480000000000000000,"y":-4330000000000000000,"z":-2730000000000000000}},"30017320":{"solarSystemId":30017320,"solarSystemName":"Z:363I","location":{"x":-4430000000000000000,"y":-4740000000000000000,"z":-3800000000000000000}},"30017321":{"solarSystemId":30017321,"solarSystemName":"Q:3N48","location":{"x":-7440000000000000000,"y":-9910000000000000000,"z":-728000000000000000}},"30017322":{"solarSystemId":30017322,"solarSystemName":"U:2S4N","location":{"x":-10600000000000000000,"y":-7760000000000000000,"z":1150000000000000000}},"30017323":{"solarSystemId":30017323,"solarSystemName":"Z:38SK","location":{"x":-10100000000000000000,"y":-12200000000000000000,"z":2400000000000000000}},"30017324":{"solarSystemId":30017324,"solarSystemName":"Q:340L","location":{"x":-6180000000000000000,"y":-13300000000000000000,"z":532000000000000000}},"30017325":{"solarSystemId":30017325,"solarSystemName":"P:3VT8","location":{"x":-11100000000000000000,"y":-7580000000000000000,"z":1480000000000000000}},"30017326":{"solarSystemId":30017326,"solarSystemName":"Z:3OTO","location":{"x":-5010000000000000000,"y":-6440000000000000000,"z":-1590000000000000000}},"30017327":{"solarSystemId":30017327,"solarSystemName":"G:315O","location":{"x":-3730000000000000000,"y":-5390000000000000000,"z":-1810000000000000000}},"30017328":{"solarSystemId":30017328,"solarSystemName":"U:3VS6","location":{"x":-5140000000000000000,"y":-7470000000000000000,"z":-2550000000000000000}},"30017329":{"solarSystemId":30017329,"solarSystemName":"P:30R0","location":{"x":-4510000000000000000,"y":-5470000000000000000,"z":-1930000000000000000}},"30017330":{"solarSystemId":30017330,"solarSystemName":"Y:32KI","location":{"x":-5280000000000000000,"y":-5200000000000000000,"z":-1360000000000000000}},"30017331":{"solarSystemId":30017331,"solarSystemName":"G:140T","location":{"x":-5250000000000000000,"y":-6400000000000000000,"z":-2900000000000000000}},"30017332":{"solarSystemId":30017332,"solarSystemName":"P:36SI","location":{"x":-7430000000000000000,"y":-6910000000000000000,"z":-1650000000000000000}},"30017333":{"solarSystemId":30017333,"solarSystemName":"P:2O6V","location":{"x":-8280000000000000000,"y":-6860000000000000000,"z":-637000000000000000}},"30017334":{"solarSystemId":30017334,"solarSystemName":"M:38I2","location":{"x":-7580000000000000000,"y":-7420000000000000000,"z":-1810000000000000000}},"30017335":{"solarSystemId":30017335,"solarSystemName":"Z:3867","location":{"x":-5670000000000000000,"y":-6810000000000000000,"z":-913000000000000000}},"30017336":{"solarSystemId":30017336,"solarSystemName":"D:3N22","location":{"x":-6940000000000000000,"y":-5310000000000000000,"z":-2570000000000000000}},"30017337":{"solarSystemId":30017337,"solarSystemName":"Z:3OA5","location":{"x":-6930000000000000000,"y":-5630000000000000000,"z":263000000000000000}},"30017338":{"solarSystemId":30017338,"solarSystemName":"D:37V7","location":{"x":-6470000000000000000,"y":-6130000000000000000,"z":884000000000000000}},"30017339":{"solarSystemId":30017339,"solarSystemName":"Q:30N0","location":{"x":-5590000000000000000,"y":-7220000000000000000,"z":-35200000000000000}},"30017340":{"solarSystemId":30017340,"solarSystemName":"J:352O","location":{"x":-7000000000000000000,"y":-7110000000000000000,"z":303000000000000000}},"30017341":{"solarSystemId":30017341,"solarSystemName":"Q:3380","location":{"x":-5240000000000000000,"y":-7270000000000000000,"z":1380000000000000000}},"30017342":{"solarSystemId":30017342,"solarSystemName":"B:1RA5","location":{"x":-16300000000000000000,"y":326000000000000000,"z":6120000000000000000}},"30017343":{"solarSystemId":30017343,"solarSystemName":"Z:1KAA","location":{"x":-15500000000000000000,"y":458000000000000000,"z":7590000000000000000}},"30017344":{"solarSystemId":30017344,"solarSystemName":"H:174I","location":{"x":-14100000000000000000,"y":818000000000000000,"z":6860000000000000000}},"30017345":{"solarSystemId":30017345,"solarSystemName":"Z:EARN","location":{"x":-16100000000000000000,"y":-436000000000000000,"z":7260000000000000000}},"30017346":{"solarSystemId":30017346,"solarSystemName":"B:O4NN","location":{"x":-13800000000000000000,"y":-188000000000000000,"z":5590000000000000000}},"30017347":{"solarSystemId":30017347,"solarSystemName":"G:TAV3","location":{"x":-16300000000000000000,"y":53300000000000000,"z":6210000000000000000}},"30017348":{"solarSystemId":30017348,"solarSystemName":"M:IELE","location":{"x":-15100000000000000000,"y":1320000000000000000,"z":8170000000000000000}},"30017349":{"solarSystemId":30017349,"solarSystemName":"Z:3NAV","location":{"x":-15100000000000000000,"y":1050000000000000000,"z":6420000000000000000}},"30017350":{"solarSystemId":30017350,"solarSystemName":"D:1K91","location":{"x":-16100000000000000000,"y":-286000000000000000,"z":5610000000000000000}},"30017351":{"solarSystemId":30017351,"solarSystemName":"J:20LE","location":{"x":-15400000000000000000,"y":-489000000000000000,"z":5930000000000000000}},"30017352":{"solarSystemId":30017352,"solarSystemName":"Z:4137","location":{"x":-16400000000000000000,"y":-31300000000000000,"z":6790000000000000000}},"30017353":{"solarSystemId":30017353,"solarSystemName":"J:2O7O","location":{"x":-16000000000000000000,"y":-289000000000000000,"z":7160000000000000000}},"30017354":{"solarSystemId":30017354,"solarSystemName":"B:10K4","location":{"x":-14400000000000000000,"y":-180000000000000000,"z":5460000000000000000}},"30017355":{"solarSystemId":30017355,"solarSystemName":"P:V9VL","location":{"x":-15800000000000000000,"y":131000000000000000,"z":6820000000000000000}},"30017356":{"solarSystemId":30017356,"solarSystemName":"M:2469","location":{"x":-17700000000000000000,"y":14900000000000000,"z":2970000000000000000}},"30017357":{"solarSystemId":30017357,"solarSystemName":"U:19A6","location":{"x":-17700000000000000000,"y":234000000000000000,"z":3650000000000000000}},"30017358":{"solarSystemId":30017358,"solarSystemName":"D:10OV","location":{"x":-17500000000000000000,"y":-29800000000000000,"z":3350000000000000000}},"30017359":{"solarSystemId":30017359,"solarSystemName":"F:TT30","location":{"x":-17800000000000000000,"y":-264000000000000000,"z":4520000000000000000}},"30017360":{"solarSystemId":30017360,"solarSystemName":"Y:4OL1","location":{"x":-18000000000000000000,"y":172000000000000000,"z":4110000000000000000}},"30017361":{"solarSystemId":30017361,"solarSystemName":"Q:2A35","location":{"x":-17800000000000000000,"y":-454000000000000000,"z":4150000000000000000}},"30017362":{"solarSystemId":30017362,"solarSystemName":"Y:1NOK","location":{"x":-17300000000000000000,"y":-386000000000000000,"z":3340000000000000000}},"30017363":{"solarSystemId":30017363,"solarSystemName":"J:O6L2","location":{"x":-16700000000000000000,"y":383000000000000000,"z":4980000000000000000}},"30017364":{"solarSystemId":30017364,"solarSystemName":"Q:1R69","location":{"x":-18400000000000000000,"y":294000000000000000,"z":3770000000000000000}},"30017365":{"solarSystemId":30017365,"solarSystemName":"Q:2AV7","location":{"x":-17900000000000000000,"y":-141000000000000000,"z":5050000000000000000}},"30017366":{"solarSystemId":30017366,"solarSystemName":"F:2N2N","location":{"x":-17100000000000000000,"y":165000000000000000,"z":4890000000000000000}},"30017367":{"solarSystemId":30017367,"solarSystemName":"G:104V","location":{"x":-18000000000000000000,"y":-722000000000000000,"z":4170000000000000000}},"30017368":{"solarSystemId":30017368,"solarSystemName":"Z:N3IN","location":{"x":-18100000000000000000,"y":-140000000000000000,"z":3190000000000000000}},"30017369":{"solarSystemId":30017369,"solarSystemName":"P:OA2A","location":{"x":-18100000000000000000,"y":-458000000000000000,"z":3320000000000000000}},"30017370":{"solarSystemId":30017370,"solarSystemName":"G:RL0O","location":{"x":-18300000000000000000,"y":-373000000000000000,"z":3550000000000000000}},"30017371":{"solarSystemId":30017371,"solarSystemName":"Q:S4AV","location":{"x":-17600000000000000000,"y":386000000000000000,"z":2550000000000000000}},"30017372":{"solarSystemId":30017372,"solarSystemName":"G:2R50","location":{"x":-19600000000000000000,"y":191000000000000000,"z":4370000000000000000}},"30017373":{"solarSystemId":30017373,"solarSystemName":"Z:35I4","location":{"x":-19100000000000000000,"y":-25700000000000000,"z":2530000000000000000}},"30017374":{"solarSystemId":30017374,"solarSystemName":"Q:6813","location":{"x":-19600000000000000000,"y":-463000000000000000,"z":2890000000000000000}},"30017375":{"solarSystemId":30017375,"solarSystemName":"B:2ROT","location":{"x":-18800000000000000000,"y":-580000000000000000,"z":2730000000000000000}},"30017376":{"solarSystemId":30017376,"solarSystemName":"B:1504","location":{"x":-19500000000000000000,"y":-400000000000000000,"z":2980000000000000000}},"30017377":{"solarSystemId":30017377,"solarSystemName":"P:1R27","location":{"x":-19900000000000000000,"y":-369000000000000000,"z":3640000000000000000}},"30017378":{"solarSystemId":30017378,"solarSystemName":"Z:42VN","location":{"x":-18600000000000000000,"y":74100000000000000,"z":2650000000000000000}},"30017379":{"solarSystemId":30017379,"solarSystemName":"H:3R90","location":{"x":-19400000000000000000,"y":45800000000000000,"z":3260000000000000000}},"30017380":{"solarSystemId":30017380,"solarSystemName":"Q:IVA9","location":{"x":-19500000000000000000,"y":-176000000000000000,"z":3080000000000000000}},"30017381":{"solarSystemId":30017381,"solarSystemName":"B:108O","location":{"x":-19500000000000000000,"y":1290000000000000000,"z":3600000000000000000}},"30017382":{"solarSystemId":30017382,"solarSystemName":"Z:RAK8","location":{"x":-19400000000000000000,"y":-531000000000000000,"z":3690000000000000000}},"30017383":{"solarSystemId":30017383,"solarSystemName":"Y:1TON","location":{"x":-19000000000000000000,"y":957000000000000000,"z":3340000000000000000}},"30017384":{"solarSystemId":30017384,"solarSystemName":"G:524S","location":{"x":-19100000000000000000,"y":-86600000000000000,"z":3400000000000000000}},"30017385":{"solarSystemId":30017385,"solarSystemName":"P:5N1N","location":{"x":-18300000000000000000,"y":19100000000000000,"z":2980000000000000000}},"30017386":{"solarSystemId":30017386,"solarSystemName":"Z:2LRI","location":{"x":-20500000000000000000,"y":77400000000000000,"z":5240000000000000000}},"30017387":{"solarSystemId":30017387,"solarSystemName":"B:33E0","location":{"x":-18300000000000000000,"y":205000000000000000,"z":5340000000000000000}},"30017388":{"solarSystemId":30017388,"solarSystemName":"H:22KR","location":{"x":-19000000000000000000,"y":-74700000000000000,"z":6000000000000000000}},"30017389":{"solarSystemId":30017389,"solarSystemName":"Q:382S","location":{"x":-19700000000000000000,"y":-725000000000000000,"z":5190000000000000000}},"30017390":{"solarSystemId":30017390,"solarSystemName":"H:T9T4","location":{"x":-19000000000000000000,"y":207000000000000000,"z":6520000000000000000}},"30017391":{"solarSystemId":30017391,"solarSystemName":"Z:18SI","location":{"x":-19600000000000000000,"y":-134000000000000000,"z":4440000000000000000}},"30017392":{"solarSystemId":30017392,"solarSystemName":"G:16SI","location":{"x":-19300000000000000000,"y":-2040000000000000000,"z":4640000000000000000}},"30017393":{"solarSystemId":30017393,"solarSystemName":"H:1T92","location":{"x":-19400000000000000000,"y":-218000000000000000,"z":5690000000000000000}},"30017394":{"solarSystemId":30017394,"solarSystemName":"Q:2341","location":{"x":-19500000000000000000,"y":-601000000000000000,"z":4980000000000000000}},"30017395":{"solarSystemId":30017395,"solarSystemName":"D:IS30","location":{"x":-20100000000000000000,"y":647000000000000000,"z":4940000000000000000}},"30017396":{"solarSystemId":30017396,"solarSystemName":"G:1636","location":{"x":-18400000000000000000,"y":605000000000000000,"z":5750000000000000000}},"30017397":{"solarSystemId":30017397,"solarSystemName":"B:31TR","location":{"x":-21200000000000000000,"y":-627000000000000000,"z":5250000000000000000}},"30017398":{"solarSystemId":30017398,"solarSystemName":"D:N3NN","location":{"x":-17100000000000000000,"y":442000000000000000,"z":6700000000000000000}},"30017399":{"solarSystemId":30017399,"solarSystemName":"M:ES8K","location":{"x":-16800000000000000000,"y":-119000000000000000,"z":6680000000000000000}},"30017400":{"solarSystemId":30017400,"solarSystemName":"G:4K2L","location":{"x":-17800000000000000000,"y":697000000000000000,"z":5850000000000000000}},"30017401":{"solarSystemId":30017401,"solarSystemName":"M:RIK7","location":{"x":-17000000000000000000,"y":-339000000000000000,"z":6790000000000000000}},"30017402":{"solarSystemId":30017402,"solarSystemName":"Z:T7O6","location":{"x":-17000000000000000000,"y":27300000000000000,"z":7120000000000000000}},"30017403":{"solarSystemId":30017403,"solarSystemName":"J:160T","location":{"x":-17500000000000000000,"y":395000000000000000,"z":5920000000000000000}},"30017404":{"solarSystemId":30017404,"solarSystemName":"F:251L","location":{"x":-17300000000000000000,"y":242000000000000000,"z":6790000000000000000}},"30017405":{"solarSystemId":30017405,"solarSystemName":"J:I6LV","location":{"x":-17100000000000000000,"y":-331000000000000000,"z":6840000000000000000}},"30017406":{"solarSystemId":30017406,"solarSystemName":"Y:1R71","location":{"x":-17100000000000000000,"y":65600000000000000,"z":6570000000000000000}},"30017407":{"solarSystemId":30017407,"solarSystemName":"Q:R08R","location":{"x":-17600000000000000000,"y":-633000000000000000,"z":7350000000000000000}},"30017408":{"solarSystemId":30017408,"solarSystemName":"F:2SK5","location":{"x":-16800000000000000000,"y":-279000000000000000,"z":7060000000000000000}},"30017409":{"solarSystemId":30017409,"solarSystemName":"P:4IL7","location":{"x":-17100000000000000000,"y":-224000000000000000,"z":6520000000000000000}},"30017410":{"solarSystemId":30017410,"solarSystemName":"M:74VA","location":{"x":-16400000000000000000,"y":-25400000000000000,"z":6630000000000000000}},"30017411":{"solarSystemId":30017411,"solarSystemName":"J:5103","location":{"x":-17300000000000000000,"y":114000000000000000,"z":5530000000000000000}},"30017412":{"solarSystemId":30017412,"solarSystemName":"Y:263K","location":{"x":-18300000000000000000,"y":-53300000000000000,"z":6950000000000000000}},"30017413":{"solarSystemId":30017413,"solarSystemName":"B:3ELK","location":{"x":-18700000000000000000,"y":42500000000000000,"z":6970000000000000000}},"30017414":{"solarSystemId":30017414,"solarSystemName":"F:O18S","location":{"x":-19900000000000000000,"y":-474000000000000000,"z":7130000000000000000}},"30017415":{"solarSystemId":30017415,"solarSystemName":"B:VNN5","location":{"x":-21500000000000000000,"y":-597000000000000000,"z":6300000000000000000}},"30017416":{"solarSystemId":30017416,"solarSystemName":"H:24I6","location":{"x":-18400000000000000000,"y":212000000000000000,"z":7030000000000000000}},"30017417":{"solarSystemId":30017417,"solarSystemName":"U:4LE4","location":{"x":-20100000000000000000,"y":-703000000000000000,"z":7750000000000000000}},"30017418":{"solarSystemId":30017418,"solarSystemName":"Z:16VE","location":{"x":-22000000000000000000,"y":-486000000000000000,"z":6080000000000000000}},"30017419":{"solarSystemId":30017419,"solarSystemName":"Q:25SN","location":{"x":-19900000000000000000,"y":-351000000000000000,"z":6840000000000000000}},"30017420":{"solarSystemId":30017420,"solarSystemName":"M:VRON","location":{"x":-17700000000000000000,"y":-525000000000000000,"z":6910000000000000000}},"30017421":{"solarSystemId":30017421,"solarSystemName":"H:II1T","location":{"x":-19500000000000000000,"y":-388000000000000000,"z":7140000000000000000}},"30017422":{"solarSystemId":30017422,"solarSystemName":"Z:1609","location":{"x":-21900000000000000000,"y":-446000000000000000,"z":6730000000000000000}},"30017423":{"solarSystemId":30017423,"solarSystemName":"M:6KVN","location":{"x":-18300000000000000000,"y":-627000000000000000,"z":7020000000000000000}},"30017424":{"solarSystemId":30017424,"solarSystemName":"J:166O","location":{"x":-17100000000000000000,"y":212000000000000000,"z":8210000000000000000}},"30017425":{"solarSystemId":30017425,"solarSystemName":"U:1KI5","location":{"x":-17100000000000000000,"y":-215000000000000000,"z":8120000000000000000}},"30017426":{"solarSystemId":30017426,"solarSystemName":"P:14L5","location":{"x":-16600000000000000000,"y":-188000000000000000,"z":8240000000000000000}},"30017427":{"solarSystemId":30017427,"solarSystemName":"D:35VI","location":{"x":-16500000000000000000,"y":55100000000000000,"z":8450000000000000000}},"30017428":{"solarSystemId":30017428,"solarSystemName":"F:3K4N","location":{"x":-15700000000000000000,"y":69700000000000000,"z":8420000000000000000}},"30017429":{"solarSystemId":30017429,"solarSystemName":"P:3ELE","location":{"x":-15900000000000000000,"y":265000000000000000,"z":7970000000000000000}},"30017430":{"solarSystemId":30017430,"solarSystemName":"M:1T9S","location":{"x":-15900000000000000000,"y":-116000000000000000,"z":8020000000000000000}},"30017431":{"solarSystemId":30017431,"solarSystemName":"G:24NT","location":{"x":-16600000000000000000,"y":437000000000000000,"z":8380000000000000000}},"30017432":{"solarSystemId":30017432,"solarSystemName":"Q:42TS","location":{"x":-15900000000000000000,"y":207000000000000000,"z":8710000000000000000}},"30017433":{"solarSystemId":30017433,"solarSystemName":"U:3LT0","location":{"x":-16800000000000000000,"y":236000000000000000,"z":8250000000000000000}},"30017434":{"solarSystemId":30017434,"solarSystemName":"P:14VR","location":{"x":-17800000000000000000,"y":-387000000000000000,"z":8060000000000000000}},"30017435":{"solarSystemId":30017435,"solarSystemName":"U:348E","location":{"x":-15900000000000000000,"y":166000000000000000,"z":4640000000000000000}},"30017436":{"solarSystemId":30017436,"solarSystemName":"G:136T","location":{"x":-14300000000000000000,"y":585000000000000000,"z":5210000000000000000}},"30017437":{"solarSystemId":30017437,"solarSystemName":"D:2516","location":{"x":-15400000000000000000,"y":483000000000000000,"z":5650000000000000000}},"30017438":{"solarSystemId":30017438,"solarSystemName":"U:SRL9","location":{"x":-15300000000000000000,"y":460000000000000000,"z":4740000000000000000}},"30017439":{"solarSystemId":30017439,"solarSystemName":"D:166E","location":{"x":-14300000000000000000,"y":755000000000000000,"z":5550000000000000000}},"30017440":{"solarSystemId":30017440,"solarSystemName":"J:23R4","location":{"x":-14400000000000000000,"y":678000000000000000,"z":5390000000000000000}},"30017441":{"solarSystemId":30017441,"solarSystemName":"G:1R54","location":{"x":-16400000000000000000,"y":-215000000000000000,"z":4850000000000000000}},"30017442":{"solarSystemId":30017442,"solarSystemName":"U:2V18","location":{"x":-15400000000000000000,"y":725000000000000000,"z":5240000000000000000}},"30017443":{"solarSystemId":30017443,"solarSystemName":"M:L199","location":{"x":-15200000000000000000,"y":-144000000000000000,"z":5650000000000000000}},"30017444":{"solarSystemId":30017444,"solarSystemName":"B:KS23","location":{"x":-14600000000000000000,"y":415000000000000000,"z":5960000000000000000}},"30017445":{"solarSystemId":30017445,"solarSystemName":"F:EVSL","location":{"x":-14700000000000000000,"y":443000000000000000,"z":5130000000000000000}},"30017446":{"solarSystemId":30017446,"solarSystemName":"F:1014","location":{"x":-15000000000000000000,"y":268000000000000000,"z":4310000000000000000}},"30017447":{"solarSystemId":30017447,"solarSystemName":"M:18KA","location":{"x":-14800000000000000000,"y":912000000000000000,"z":4670000000000000000}},"30017448":{"solarSystemId":30017448,"solarSystemName":"R.TY1.19L","location":{"x":2140000000000000000,"y":-515000000000000000,"z":19400000000000000000}},"30017449":{"solarSystemId":30017449,"solarSystemName":"I.FJZ.8C7","location":{"x":1040000000000000000,"y":-271000000000000000,"z":18300000000000000000}},"30017450":{"solarSystemId":30017450,"solarSystemName":"E.V02.7YM","location":{"x":2330000000000000000,"y":-643000000000000000,"z":19300000000000000000}},"30017451":{"solarSystemId":30017451,"solarSystemName":"E.XP1.KDJ","location":{"x":1830000000000000000,"y":28700000000000000,"z":19100000000000000000}},"30017452":{"solarSystemId":30017452,"solarSystemName":"N.M31.2R6","location":{"x":1280000000000000000,"y":-231000000000000000,"z":18300000000000000000}},"30017453":{"solarSystemId":30017453,"solarSystemName":"N.46X.N49","location":{"x":944000000000000000,"y":-329000000000000000,"z":18300000000000000000}},"30017454":{"solarSystemId":30017454,"solarSystemName":"L.MP2.7V2","location":{"x":2970000000000000000,"y":-3000000000000000000,"z":15800000000000000000}},"30017455":{"solarSystemId":30017455,"solarSystemName":"A.NN2.J11","location":{"x":2750000000000000000,"y":-1220000000000000000,"z":15600000000000000000}},"30017456":{"solarSystemId":30017456,"solarSystemName":"A.RB2.V22","location":{"x":3110000000000000000,"y":-2400000000000000000,"z":16700000000000000000}},"30017457":{"solarSystemId":30017457,"solarSystemName":"E.3R3.4R2","location":{"x":3930000000000000000,"y":-2780000000000000000,"z":14600000000000000000}},"30017458":{"solarSystemId":30017458,"solarSystemName":"S.KZ1.BY1","location":{"x":2200000000000000000,"y":-2150000000000000000,"z":16200000000000000000}},"30017459":{"solarSystemId":30017459,"solarSystemName":"U.HL2.TE1","location":{"x":2840000000000000000,"y":-2280000000000000000,"z":16600000000000000000}},"30017460":{"solarSystemId":30017460,"solarSystemName":"S.NK1.BX1","location":{"x":2250000000000000000,"y":-2110000000000000000,"z":15100000000000000000}},"30017461":{"solarSystemId":30017461,"solarSystemName":"E.CT3.WZ1","location":{"x":3870000000000000000,"y":-2190000000000000000,"z":14600000000000000000}},"30017462":{"solarSystemId":30017462,"solarSystemName":"I.H82.KY1","location":{"x":2620000000000000000,"y":-2160000000000000000,"z":14200000000000000000}},"30017463":{"solarSystemId":30017463,"solarSystemName":"D.C91.0CK","location":{"x":1500000000000000000,"y":-1100000000000000000,"z":16200000000000000000}},"30017464":{"solarSystemId":30017464,"solarSystemName":"L.M92.6N2","location":{"x":2650000000000000000,"y":-2750000000000000000,"z":16900000000000000000}},"30017465":{"solarSystemId":30017465,"solarSystemName":"R.3Q1.BTD","location":{"x":1880000000000000000,"y":-554000000000000000,"z":17200000000000000000}},"30017466":{"solarSystemId":30017466,"solarSystemName":"E.C31.M2D","location":{"x":1280000000000000000,"y":-543000000000000000,"z":16200000000000000000}},"30017467":{"solarSystemId":30017467,"solarSystemName":"R.CVY.PY1","location":{"x":995000000000000000,"y":-67100000000000000,"z":17000000000000000000}},"30017468":{"solarSystemId":30017468,"solarSystemName":"N.52J.CF6","location":{"x":903000000000000000,"y":-240000000000000000,"z":16300000000000000000}},"30017469":{"solarSystemId":30017469,"solarSystemName":"N.BD9.5E5","location":{"x":342000000000000000,"y":-215000000000000000,"z":17300000000000000000}},"30017470":{"solarSystemId":30017470,"solarSystemName":"N.H91.GJ1","location":{"x":1500000000000000000,"y":-65000000000000000,"z":15400000000000000000}},"30017471":{"solarSystemId":30017471,"solarSystemName":"T.MTH.99T","location":{"x":878000000000000000,"y":-407000000000000000,"z":17300000000000000000}},"30017472":{"solarSystemId":30017472,"solarSystemName":"R.PZK.548","location":{"x":1110000000000000000,"y":-293000000000000000,"z":16900000000000000000}},"30017473":{"solarSystemId":30017473,"solarSystemName":"C.452.T9G","location":{"x":2490000000000000000,"y":839000000000000000,"z":17300000000000000000}},"30017474":{"solarSystemId":30017474,"solarSystemName":"R.KC4.0S8","location":{"x":5220000000000000000,"y":299000000000000000,"z":21200000000000000000}},"30017475":{"solarSystemId":30017475,"solarSystemName":"H.ZN3.67C","location":{"x":3920000000000000000,"y":-585000000000000000,"z":19600000000000000000}},"30017476":{"solarSystemId":30017476,"solarSystemName":"T.V14.5NT","location":{"x":4670000000000000000,"y":410000000000000000,"z":22400000000000000000}},"30017477":{"solarSystemId":30017477,"solarSystemName":"N.EP2.S9N","location":{"x":2990000000000000000,"y":443000000000000000,"z":21300000000000000000}},"30017478":{"solarSystemId":30017478,"solarSystemName":"N.EW2.2V1","location":{"x":3390000000000000000,"y":-57500000000000000,"z":19800000000000000000}},"30017479":{"solarSystemId":30017479,"solarSystemName":"T.822.PYR","location":{"x":2390000000000000000,"y":499000000000000000,"z":20800000000000000000}},"30017480":{"solarSystemId":30017480,"solarSystemName":"T.SP2.NG4","location":{"x":2970000000000000000,"y":-170000000000000000,"z":21300000000000000000}},"30017481":{"solarSystemId":30017481,"solarSystemName":"N.GC3.LLM","location":{"x":4060000000000000000,"y":-629000000000000000,"z":17800000000000000000}},"30017482":{"solarSystemId":30017482,"solarSystemName":"Griðland","location":{"x":3700000000000000000,"y":-571000000000000000,"z":17700000000000000000}},"30017483":{"solarSystemId":30017483,"solarSystemName":"D.X83.HSX","location":{"x":3780000000000000000,"y":-949000000000000000,"z":16400000000000000000}},"30017484":{"solarSystemId":30017484,"solarSystemName":"R.823.PZ9","location":{"x":3540000000000000000,"y":356000000000000000,"z":18400000000000000000}},"30017485":{"solarSystemId":30017485,"solarSystemName":"E.YS2.D51","location":{"x":2700000000000000000,"y":-1350000000000000000,"z":17500000000000000000}},"30017486":{"solarSystemId":30017486,"solarSystemName":"N.8M3.DF1","location":{"x":4080000000000000000,"y":60200000000000000,"z":19000000000000000000}},"30017487":{"solarSystemId":30017487,"solarSystemName":"I.T93.E38","location":{"x":3800000000000000000,"y":-293000000000000000,"z":17700000000000000000}},"30017488":{"solarSystemId":30017488,"solarSystemName":"A.DB2.YK2","location":{"x":3120000000000000000,"y":-3420000000000000000,"z":18500000000000000000}},"30017489":{"solarSystemId":30017489,"solarSystemName":"E.RV6.H61","location":{"x":7620000000000000000,"y":-1400000000000000000,"z":19100000000000000000}},"30017490":{"solarSystemId":30017490,"solarSystemName":"H.NJ4.WY2","location":{"x":5530000000000000000,"y":-3310000000000000000,"z":20500000000000000000}},"30017491":{"solarSystemId":30017491,"solarSystemName":"N.ZP4.JR2","location":{"x":5290000000000000000,"y":-2800000000000000000,"z":22700000000000000000}},"30017492":{"solarSystemId":30017492,"solarSystemName":"U.EQ2.X12","location":{"x":3060000000000000000,"y":-2370000000000000000,"z":22200000000000000000}},"30017493":{"solarSystemId":30017493,"solarSystemName":"E.H45.B61","location":{"x":5940000000000000000,"y":-1390000000000000000,"z":18600000000000000000}},"30017494":{"solarSystemId":30017494,"solarSystemName":"D.Y06.J1N","location":{"x":6950000000000000000,"y":-13900000000000000000,"z":21100000000000000000}},"30017495":{"solarSystemId":30017495,"solarSystemName":"A.945.EGR","location":{"x":5920000000000000000,"y":-15900000000000000000,"z":26100000000000000000}},"30017496":{"solarSystemId":30017496,"solarSystemName":"S.8D7.1PS","location":{"x":8620000000000000000,"y":-12200000000000000000,"z":29000000000000000000}},"30017497":{"solarSystemId":30017497,"solarSystemName":"R.C95.LF9","location":{"x":6110000000000000000,"y":-11100000000000000000,"z":25200000000000000000}},"30017498":{"solarSystemId":30017498,"solarSystemName":"N.G68.JQS","location":{"x":9470000000000000000,"y":-12300000000000000000,"z":29100000000000000000}},"30017499":{"solarSystemId":30017499,"solarSystemName":"D.RY4.L6N","location":{"x":5600000000000000000,"y":-14100000000000000000,"z":25900000000000000000}},"30017500":{"solarSystemId":30017500,"solarSystemName":"E.LN4.2QT","location":{"x":5060000000000000000,"y":-13400000000000000000,"z":24400000000000000000}},"30017501":{"solarSystemId":30017501,"solarSystemName":"H.YC3.VRN","location":{"x":4070000000000000000,"y":-14300000000000000000,"z":23800000000000000000}},"30017502":{"solarSystemId":30017502,"solarSystemName":"A.SP2.BTN","location":{"x":2970000000000000000,"y":-14300000000000000000,"z":24100000000000000000}},"30017503":{"solarSystemId":30017503,"solarSystemName":"I.RD1.HXT","location":{"x":1710000000000000000,"y":-13600000000000000000,"z":26300000000000000000}},"30017504":{"solarSystemId":30017504,"solarSystemName":"I.PD8.H0R","location":{"x":9790000000000000000,"y":-15000000000000000000,"z":24400000000000000000}},"30017505":{"solarSystemId":30017505,"solarSystemName":"I.B85.56N","location":{"x":6080000000000000000,"y":-14100000000000000000,"z":23100000000000000000}},"30017506":{"solarSystemId":30017506,"solarSystemName":"H.626.PWN","location":{"x":7000000000000000000,"y":-14900000000000000000,"z":22000000000000000000}},"30017507":{"solarSystemId":30017507,"solarSystemName":"T.EY7.KGL","location":{"x":9080000000000000000,"y":-17000000000000000000,"z":22000000000000000000}},"30017508":{"solarSystemId":30017508,"solarSystemName":"I.5T7.WFR","location":{"x":8470000000000000000,"y":-15800000000000000000,"z":23000000000000000000}},"30017509":{"solarSystemId":30017509,"solarSystemName":"U.8K6.ZLD","location":{"x":8010000000000000000,"y":-17800000000000000000,"z":18600000000000000000}},"30017510":{"solarSystemId":30017510,"solarSystemName":"H.1P5.T7D","location":{"x":6420000000000000000,"y":-17600000000000000000,"z":15600000000000000000}},"30017511":{"solarSystemId":30017511,"solarSystemName":"E.TB5.D4L","location":{"x":6570000000000000000,"y":-16300000000000000000,"z":19300000000000000000}},"30017512":{"solarSystemId":30017512,"solarSystemName":"T.HX3.QXD","location":{"x":4420000000000000000,"y":-18300000000000000000,"z":17300000000000000000}},"30017513":{"solarSystemId":30017513,"solarSystemName":"I.7R6.LYL","location":{"x":7390000000000000000,"y":-17100000000000000000,"z":21800000000000000000}},"30017514":{"solarSystemId":30017514,"solarSystemName":"H.RJ7.81R","location":{"x":8990000000000000000,"y":-15000000000000000000,"z":27100000000000000000}},"30017515":{"solarSystemId":30017515,"solarSystemName":"N.FW9.Z3R","location":{"x":11400000000000000000,"y":-15100000000000000000,"z":27200000000000000000}},"30017516":{"solarSystemId":30017516,"solarSystemName":"T.QP7.VQN","location":{"x":8740000000000000000,"y":-14600000000000000000,"z":27300000000000000000}},"30017517":{"solarSystemId":30017517,"solarSystemName":"A.T78.CPN","location":{"x":9490000000000000000,"y":-14500000000000000000,"z":28000000000000000000}},"30017518":{"solarSystemId":30017518,"solarSystemName":"T.2X7.TCL","location":{"x":9010000000000000000,"y":-16700000000000000000,"z":26200000000000000000}},"30017519":{"solarSystemId":30017519,"solarSystemName":"S.XE6.9ER","location":{"x":8060000000000000000,"y":-16100000000000000000,"z":22700000000000000000}},"30017520":{"solarSystemId":30017520,"solarSystemName":"I.2Z6.67L","location":{"x":7930000000000000000,"y":-16400000000000000000,"z":23000000000000000000}},"30017521":{"solarSystemId":30017521,"solarSystemName":"I.PS7.1KR","location":{"x":8450000000000000000,"y":-16100000000000000000,"z":22900000000000000000}},"30017522":{"solarSystemId":30017522,"solarSystemName":"A.6T6.E3D","location":{"x":7320000000000000000,"y":-17400000000000000000,"z":23300000000000000000}},"30017523":{"solarSystemId":30017523,"solarSystemName":"D.YN6.EED","location":{"x":7380000000000000000,"y":-18400000000000000000,"z":23400000000000000000}},"30017524":{"solarSystemId":30017524,"solarSystemName":"N.CCN.EDS","location":{"x":451000000000000000,"y":-12100000000000000000,"z":29900000000000000000}},"30017525":{"solarSystemId":30017525,"solarSystemName":"A.981.FF9","location":{"x":-1450000000000000000,"y":-11200000000000000000,"z":31700000000000000000}},"30017526":{"solarSystemId":30017526,"solarSystemName":"E.431.DVS","location":{"x":1270000000000000000,"y":-12200000000000000000,"z":32700000000000000000}},"30017527":{"solarSystemId":30017527,"solarSystemName":"E.1EY.C6S","location":{"x":1010000000000000000,"y":-11800000000000000000,"z":31800000000000000000}},"30017528":{"solarSystemId":30017528,"solarSystemName":"R.H51.22S","location":{"x":1360000000000000000,"y":-11600000000000000000,"z":31900000000000000000}},"30017529":{"solarSystemId":30017529,"solarSystemName":"D.G83.H09","location":{"x":3770000000000000000,"y":-10400000000000000000,"z":33800000000000000000}},"30017530":{"solarSystemId":30017530,"solarSystemName":"R.7K5.LRT","location":{"x":6850000000000000000,"y":-13200000000000000000,"z":31500000000000000000}},"30017531":{"solarSystemId":30017531,"solarSystemName":"R.QG3.48S","location":{"x":4310000000000000000,"y":-11800000000000000000,"z":32000000000000000000}},"30017532":{"solarSystemId":30017532,"solarSystemName":"R.1V3.ZNT","location":{"x":4150000000000000000,"y":-13100000000000000000,"z":30900000000000000000}},"30017533":{"solarSystemId":30017533,"solarSystemName":"A.XT4.LQS","location":{"x":5040000000000000000,"y":-12300000000000000000,"z":32000000000000000000}},"30017534":{"solarSystemId":30017534,"solarSystemName":"U.CS5.J2T","location":{"x":6140000000000000000,"y":-12800000000000000000,"z":31800000000000000000}},"30017535":{"solarSystemId":30017535,"solarSystemName":"Skjól","location":{"x":4500000000000000000,"y":-14900000000000000000,"z":28000000000000000000}},"30017536":{"solarSystemId":30017536,"solarSystemName":"N.Y84.FFN","location":{"x":4930000000000000000,"y":-14600000000000000000,"z":27200000000000000000}},"30017537":{"solarSystemId":30017537,"solarSystemName":"N.WM2.RWT","location":{"x":2950000000000000000,"y":-13700000000000000000,"z":29800000000000000000}},"30017538":{"solarSystemId":30017538,"solarSystemName":"U.8Z1.8CT","location":{"x":2170000000000000000,"y":-13300000000000000000,"z":29500000000000000000}},"30017539":{"solarSystemId":30017539,"solarSystemName":"R.FY3.MJT","location":{"x":4460000000000000000,"y":-13600000000000000000,"z":29500000000000000000}},"30017540":{"solarSystemId":30017540,"solarSystemName":"R.NZ5.895","location":{"x":6790000000000000000,"y":-6100000000000000000,"z":27800000000000000000}},"30017541":{"solarSystemId":30017541,"solarSystemName":"D.Z02.FV9","location":{"x":2340000000000000000,"y":-11100000000000000000,"z":25500000000000000000}},"30017542":{"solarSystemId":30017542,"solarSystemName":"R.0C4.388","location":{"x":5190000000000000000,"y":-9520000000000000000,"z":25400000000000000000}},"30017543":{"solarSystemId":30017543,"solarSystemName":"D.3C2.JV6","location":{"x":2890000000000000000,"y":-7630000000000000000,"z":27100000000000000000}},"30017544":{"solarSystemId":30017544,"solarSystemName":"E.CX4.RQ8","location":{"x":5570000000000000000,"y":-9960000000000000000,"z":26000000000000000000}},"30017545":{"solarSystemId":30017545,"solarSystemName":"H.RE2.6SL","location":{"x":3440000000000000000,"y":-16500000000000000000,"z":27700000000000000000}},"30017546":{"solarSystemId":30017546,"solarSystemName":"I.4D1.6SR","location":{"x":1700000000000000000,"y":-15400000000000000000,"z":28800000000000000000}},"30017547":{"solarSystemId":30017547,"solarSystemName":"T.7W2.WCR","location":{"x":3360000000000000000,"y":-15600000000000000000,"z":27400000000000000000}},"30017548":{"solarSystemId":30017548,"solarSystemName":"D.8L1.TNR","location":{"x":1670000000000000000,"y":-15400000000000000000,"z":29300000000000000000}},"30017549":{"solarSystemId":30017549,"solarSystemName":"B.G3C.G7N","location":{"x":-581000000000000000,"y":-14100000000000000000,"z":25400000000000000000}},"30017550":{"solarSystemId":30017550,"solarSystemName":"T.H16.3P9","location":{"x":6980000000000000000,"y":-11000000000000000000,"z":34000000000000000000}},"30017551":{"solarSystemId":30017551,"solarSystemName":"U.P17.M79","location":{"x":8130000000000000000,"y":-10600000000000000000,"z":34200000000000000000}},"30017552":{"solarSystemId":30017552,"solarSystemName":"S.R65.QB9","location":{"x":6000000000000000000,"y":-11200000000000000000,"z":34300000000000000000}},"30017553":{"solarSystemId":30017553,"solarSystemName":"S.T77.3K9","location":{"x":8340000000000000000,"y":-11500000000000000000,"z":32000000000000000000}},"30017554":{"solarSystemId":30017554,"solarSystemName":"S.DR7.FKS","location":{"x":8560000000000000000,"y":-12600000000000000000,"z":31700000000000000000}},"30017555":{"solarSystemId":30017555,"solarSystemName":"H.6F6.C29","location":{"x":7680000000000000000,"y":-10500000000000000000,"z":32500000000000000000}},"30017556":{"solarSystemId":30017556,"solarSystemName":"ISH-BV8","location":{"x":11600000000000000000,"y":-10800000000000000000,"z":34100000000000000000}},"30017557":{"solarSystemId":30017557,"solarSystemName":"EQT-9T8","location":{"x":8580000000000000000,"y":-11200000000000000000,"z":33500000000000000000}},"30017558":{"solarSystemId":30017558,"solarSystemName":"E2S-5V8","location":{"x":10000000000000000000,"y":-12500000000000000000,"z":34100000000000000000}},"30017559":{"solarSystemId":30017559,"solarSystemName":"O7C-CV8","location":{"x":8990000000000000000,"y":-12300000000000000000,"z":35100000000000000000}},"30017560":{"solarSystemId":30017560,"solarSystemName":"IVJ-FV8","location":{"x":12300000000000000000,"y":-12600000000000000000,"z":33500000000000000000}},"30017561":{"solarSystemId":30017561,"solarSystemName":"OTP-CS8","location":{"x":10400000000000000000,"y":-8760000000000000000,"z":31700000000000000000}},"30017562":{"solarSystemId":30017562,"solarSystemName":"I65-QV8","location":{"x":15300000000000000000,"y":-8710000000000000000,"z":33500000000000000000}},"30017563":{"solarSystemId":30017563,"solarSystemName":"INL-KT8","location":{"x":12400000000000000000,"y":-6480000000000000000,"z":33100000000000000000}},"30017564":{"solarSystemId":30017564,"solarSystemName":"E3G-SS8","location":{"x":11200000000000000000,"y":-8180000000000000000,"z":32000000000000000000}},"30017565":{"solarSystemId":30017565,"solarSystemName":"I9R-JT8","location":{"x":13200000000000000000,"y":-10800000000000000000,"z":31600000000000000000}},"30017566":{"solarSystemId":30017566,"solarSystemName":"AF9-FV8","location":{"x":12400000000000000000,"y":-8780000000000000000,"z":34500000000000000000}},"30017567":{"solarSystemId":30017567,"solarSystemName":"AB2-0V8","location":{"x":11800000000000000000,"y":-8420000000000000000,"z":33900000000000000000}},"30017568":{"solarSystemId":30017568,"solarSystemName":"IL6-P19","location":{"x":12500000000000000000,"y":-10400000000000000000,"z":40500000000000000000}},"30017569":{"solarSystemId":30017569,"solarSystemName":"ITB-L09","location":{"x":11500000000000000000,"y":-7600000000000000000,"z":38000000000000000000}},"30017570":{"solarSystemId":30017570,"solarSystemName":"EKC-4T8","location":{"x":9070000000000000000,"y":-7960000000000000000,"z":33700000000000000000}},"30017571":{"solarSystemId":30017571,"solarSystemName":"IHV-4T8","location":{"x":10600000000000000000,"y":-8210000000000000000,"z":32900000000000000000}},"30017572":{"solarSystemId":30017572,"solarSystemName":"ESH-JT8","location":{"x":10700000000000000000,"y":-8910000000000000000,"z":33500000000000000000}},"30017573":{"solarSystemId":30017573,"solarSystemName":"U3T-GT8","location":{"x":11200000000000000000,"y":-8440000000000000000,"z":33300000000000000000}},"30017574":{"solarSystemId":30017574,"solarSystemName":"IQ3-KT8","location":{"x":11300000000000000000,"y":-8710000000000000000,"z":33300000000000000000}},"30017575":{"solarSystemId":30017575,"solarSystemName":"EHB-1T8","location":{"x":10100000000000000000,"y":-8500000000000000000,"z":32900000000000000000}},"30017576":{"solarSystemId":30017576,"solarSystemName":"I4T-C29","location":{"x":16100000000000000000,"y":-10400000000000000000,"z":41800000000000000000}},"30017577":{"solarSystemId":30017577,"solarSystemName":"OVJ-Q19","location":{"x":11900000000000000000,"y":-11800000000000000000,"z":40800000000000000000}},"30017578":{"solarSystemId":30017578,"solarSystemName":"I4G-H29","location":{"x":15000000000000000000,"y":-9770000000000000000,"z":43400000000000000000}},"30017579":{"solarSystemId":30017579,"solarSystemName":"E4T-209","location":{"x":15700000000000000000,"y":-7690000000000000000,"z":33900000000000000000}},"30017580":{"solarSystemId":30017580,"solarSystemName":"AKC-129","location":{"x":12100000000000000000,"y":-12300000000000000000,"z":41000000000000000000}},"30017581":{"solarSystemId":30017581,"solarSystemName":"IG9-Q19","location":{"x":17100000000000000000,"y":-7180000000000000000,"z":38700000000000000000}},"30017582":{"solarSystemId":30017582,"solarSystemName":"E91-029","location":{"x":18100000000000000000,"y":-6990000000000000000,"z":38700000000000000000}},"30017583":{"solarSystemId":30017583,"solarSystemName":"E70-S19","location":{"x":17100000000000000000,"y":-7640000000000000000,"z":39000000000000000000}},"30017584":{"solarSystemId":30017584,"solarSystemName":"EB7-Q09","location":{"x":17900000000000000000,"y":-7830000000000000000,"z":34600000000000000000}},"30017585":{"solarSystemId":30017585,"solarSystemName":"U6P-729","location":{"x":19600000000000000000,"y":-7050000000000000000,"z":39400000000000000000}},"30017586":{"solarSystemId":30017586,"solarSystemName":"O0D-339","location":{"x":24600000000000000000,"y":-6170000000000000000,"z":43600000000000000000}},"30017587":{"solarSystemId":30017587,"solarSystemName":"ORT-039","location":{"x":23100000000000000000,"y":-6470000000000000000,"z":43400000000000000000}},"30017588":{"solarSystemId":30017588,"solarSystemName":"IB7-439","location":{"x":23600000000000000000,"y":-6680000000000000000,"z":45200000000000000000}},"30017589":{"solarSystemId":30017589,"solarSystemName":"EKJ-239","location":{"x":22600000000000000000,"y":-6560000000000000000,"z":44500000000000000000}},"30017590":{"solarSystemId":30017590,"solarSystemName":"OMD-T29","location":{"x":22000000000000000000,"y":-5830000000000000000,"z":43300000000000000000}},"30017591":{"solarSystemId":30017591,"solarSystemName":"I5N-429","location":{"x":12100000000000000000,"y":-12200000000000000000,"z":41500000000000000000}},"30017592":{"solarSystemId":30017592,"solarSystemName":"I28-529","location":{"x":13500000000000000000,"y":-10300000000000000000,"z":41700000000000000000}},"30017593":{"solarSystemId":30017593,"solarSystemName":"IBR-F29","location":{"x":11100000000000000000,"y":-10500000000000000000,"z":44600000000000000000}},"30017594":{"solarSystemId":30017594,"solarSystemName":"E6B-K19","location":{"x":11300000000000000000,"y":-10400000000000000000,"z":40600000000000000000}},"30017595":{"solarSystemId":30017595,"solarSystemName":"U12-J29","location":{"x":14300000000000000000,"y":-12200000000000000000,"z":43200000000000000000}},"30017596":{"solarSystemId":30017596,"solarSystemName":"EKC-MV8","location":{"x":7040000000000000000,"y":-8710000000000000000,"z":37500000000000000000}},"30017597":{"solarSystemId":30017597,"solarSystemName":"OHB-B09","location":{"x":7640000000000000000,"y":-9520000000000000000,"z":38600000000000000000}},"30017598":{"solarSystemId":30017598,"solarSystemName":"E4N-J09","location":{"x":10300000000000000000,"y":-8360000000000000000,"z":38200000000000000000}},"30017599":{"solarSystemId":30017599,"solarSystemName":"Eschaton","location":{"x":8790000000000000000,"y":-10100000000000000000,"z":41300000000000000000}},"30017600":{"solarSystemId":30017600,"solarSystemName":"O4T-R09","location":{"x":9730000000000000000,"y":-9590000000000000000,"z":39100000000000000000}},"30017601":{"solarSystemId":30017601,"solarSystemName":"EF3-039","location":{"x":19400000000000000000,"y":-11300000000000000000,"z":44300000000000000000}},"30017602":{"solarSystemId":30017602,"solarSystemName":"OPF-139","location":{"x":28500000000000000000,"y":-3740000000000000000,"z":40100000000000000000}},"30017603":{"solarSystemId":30017603,"solarSystemName":"U8Q-439","location":{"x":27200000000000000000,"y":-6670000000000000000,"z":43400000000000000000}},"30017604":{"solarSystemId":30017604,"solarSystemName":"IK0-V29","location":{"x":29700000000000000000,"y":-5890000000000000000,"z":37400000000000000000}},"30017605":{"solarSystemId":30017605,"solarSystemName":"ISN-N29","location":{"x":22700000000000000000,"y":-16800000000000000000,"z":37900000000000000000}},"30017606":{"solarSystemId":30017606,"solarSystemName":"EKC-Q29","location":{"x":20300000000000000000,"y":-5800000000000000000,"z":43100000000000000000}},"30017607":{"solarSystemId":30017607,"solarSystemName":"G:3S2O","location":{"x":-325000000000000000,"y":-11000000000000000000,"z":1710000000000000000}},"30017608":{"solarSystemId":30017608,"solarSystemName":"H:38I9","location":{"x":-166000000000000000,"y":-9110000000000000000,"z":1320000000000000000}},"30017609":{"solarSystemId":30017609,"solarSystemName":"D:2R23","location":{"x":397000000000000000,"y":-11700000000000000000,"z":3680000000000000000}},"30017610":{"solarSystemId":30017610,"solarSystemName":"M:3N28","location":{"x":-3010000000000000000,"y":-10700000000000000000,"z":2600000000000000000}},"30017611":{"solarSystemId":30017611,"solarSystemName":"Y:3NK2","location":{"x":-2200000000000000000,"y":-9010000000000000000,"z":3130000000000000000}},"30017612":{"solarSystemId":30017612,"solarSystemName":"U:3662","location":{"x":-468000000000000000,"y":-8110000000000000000,"z":4330000000000000000}},"30017613":{"solarSystemId":30017613,"solarSystemName":"H:35NR","location":{"x":-1920000000000000000,"y":-8360000000000000000,"z":3750000000000000000}},"30017614":{"solarSystemId":30017614,"solarSystemName":"U:39VA","location":{"x":-916000000000000000,"y":-7300000000000000000,"z":4790000000000000000}},"30017615":{"solarSystemId":30017615,"solarSystemName":"U:317V","location":{"x":-1950000000000000000,"y":-6910000000000000000,"z":6350000000000000000}},"30017616":{"solarSystemId":30017616,"solarSystemName":"U:3OR6","location":{"x":-196000000000000000,"y":-6920000000000000000,"z":4700000000000000000}},"30017617":{"solarSystemId":30017617,"solarSystemName":"H:2VSO","location":{"x":-855000000000000000,"y":-8700000000000000000,"z":6720000000000000000}},"30017618":{"solarSystemId":30017618,"solarSystemName":"Z:34OO","location":{"x":-3450000000000000000,"y":-9240000000000000000,"z":6790000000000000000}},"30017619":{"solarSystemId":30017619,"solarSystemName":"J:3NV0","location":{"x":-1810000000000000000,"y":-9800000000000000000,"z":6340000000000000000}},"30017620":{"solarSystemId":30017620,"solarSystemName":"F:10KI","location":{"x":-4120000000000000000,"y":-8010000000000000000,"z":8480000000000000000}},"30017621":{"solarSystemId":30017621,"solarSystemName":"M:29TN","location":{"x":-3970000000000000000,"y":-10100000000000000000,"z":8940000000000000000}},"30017622":{"solarSystemId":30017622,"solarSystemName":"P:2IR2","location":{"x":542000000000000000,"y":-8750000000000000000,"z":2150000000000000000}},"30017623":{"solarSystemId":30017623,"solarSystemName":"U:31O4","location":{"x":-776000000000000000,"y":-7110000000000000000,"z":3370000000000000000}},"30017624":{"solarSystemId":30017624,"solarSystemName":"G:2O25","location":{"x":496000000000000000,"y":-8070000000000000000,"z":2800000000000000000}},"30017625":{"solarSystemId":30017625,"solarSystemName":"Z:3V9S","location":{"x":1540000000000000000,"y":-8580000000000000000,"z":2200000000000000000}},"30017626":{"solarSystemId":30017626,"solarSystemName":"P:2A4N","location":{"x":1250000000000000000,"y":-7640000000000000000,"z":3690000000000000000}},"30017627":{"solarSystemId":30017627,"solarSystemName":"Q:3T69","location":{"x":-2200000000000000000,"y":-9690000000000000000,"z":4640000000000000000}},"30017628":{"solarSystemId":30017628,"solarSystemName":"B:2LLT","location":{"x":-1140000000000000000,"y":-10700000000000000000,"z":4860000000000000000}},"30017629":{"solarSystemId":30017629,"solarSystemName":"P:3SIO","location":{"x":-1610000000000000000,"y":-9440000000000000000,"z":5050000000000000000}},"30017630":{"solarSystemId":30017630,"solarSystemName":"J:1S35","location":{"x":-1360000000000000000,"y":-10900000000000000000,"z":4180000000000000000}},"30017631":{"solarSystemId":30017631,"solarSystemName":"B:VO57","location":{"x":-1260000000000000000,"y":-11200000000000000000,"z":5970000000000000000}},"30017632":{"solarSystemId":30017632,"solarSystemName":"Y:2R99","location":{"x":-3330000000000000000,"y":-12000000000000000000,"z":10400000000000000000}},"30017633":{"solarSystemId":30017633,"solarSystemName":"M:2NAR","location":{"x":-210000000000000000,"y":-8050000000000000000,"z":10700000000000000000}},"30017634":{"solarSystemId":30017634,"solarSystemName":"Q:3V5S","location":{"x":-2490000000000000000,"y":-12300000000000000000,"z":11100000000000000000}},"30017635":{"solarSystemId":30017635,"solarSystemName":"G:2O16","location":{"x":-1800000000000000000,"y":-9960000000000000000,"z":12600000000000000000}},"30017636":{"solarSystemId":30017636,"solarSystemName":"F:1E99","location":{"x":-169000000000000000,"y":-11200000000000000000,"z":12000000000000000000}},"30017637":{"solarSystemId":30017637,"solarSystemName":"H:AV54","location":{"x":-7490000000000000000,"y":98400000000000000,"z":12700000000000000000}},"30017638":{"solarSystemId":30017638,"solarSystemName":"F:270T","location":{"x":-7510000000000000000,"y":-438000000000000000,"z":11900000000000000000}},"30017639":{"solarSystemId":30017639,"solarSystemName":"D:28OL","location":{"x":-7470000000000000000,"y":-263000000000000000,"z":12900000000000000000}},"30017640":{"solarSystemId":30017640,"solarSystemName":"M:3OT8","location":{"x":-8150000000000000000,"y":-292000000000000000,"z":12400000000000000000}},"30017641":{"solarSystemId":30017641,"solarSystemName":"Q:2465","location":{"x":-7220000000000000000,"y":-538000000000000000,"z":12900000000000000000}},"30017642":{"solarSystemId":30017642,"solarSystemName":"M:R7L0","location":{"x":-8460000000000000000,"y":-1420000000000000000,"z":11700000000000000000}},"30017643":{"solarSystemId":30017643,"solarSystemName":"B:ENLI","location":{"x":-8840000000000000000,"y":3140000000000000,"z":12600000000000000000}},"30017644":{"solarSystemId":30017644,"solarSystemName":"P:1E76","location":{"x":-6670000000000000000,"y":-284000000000000000,"z":14100000000000000000}},"30017645":{"solarSystemId":30017645,"solarSystemName":"F:103L","location":{"x":-7980000000000000000,"y":139000000000000000,"z":12300000000000000000}},"30017646":{"solarSystemId":30017646,"solarSystemName":"G:5013","location":{"x":-9160000000000000000,"y":-61100000000000000,"z":10900000000000000000}},"30017647":{"solarSystemId":30017647,"solarSystemName":"U:1LO9","location":{"x":-10400000000000000000,"y":-179000000000000000,"z":11700000000000000000}},"30017648":{"solarSystemId":30017648,"solarSystemName":"J:42SK","location":{"x":-8440000000000000000,"y":-188000000000000000,"z":11000000000000000000}},"30017649":{"solarSystemId":30017649,"solarSystemName":"P:39K1","location":{"x":-8550000000000000000,"y":-208000000000000000,"z":9480000000000000000}},"30017650":{"solarSystemId":30017650,"solarSystemName":"P:IL48","location":{"x":-10700000000000000000,"y":253000000000000000,"z":10600000000000000000}},"30017651":{"solarSystemId":30017651,"solarSystemName":"G:4SO9","location":{"x":-10100000000000000000,"y":-382000000000000000,"z":10800000000000000000}},"30017652":{"solarSystemId":30017652,"solarSystemName":"Z:K571","location":{"x":-7940000000000000000,"y":-426000000000000000,"z":10700000000000000000}},"30017653":{"solarSystemId":30017653,"solarSystemName":"P:106R","location":{"x":-8140000000000000000,"y":-268000000000000000,"z":11300000000000000000}},"30017654":{"solarSystemId":30017654,"solarSystemName":"P:197N","location":{"x":-8150000000000000000,"y":245000000000000000,"z":9470000000000000000}},"30017655":{"solarSystemId":30017655,"solarSystemName":"Z:I7V8","location":{"x":-10100000000000000000,"y":309000000000000000,"z":11200000000000000000}},"30017656":{"solarSystemId":30017656,"solarSystemName":"Z:V3A3","location":{"x":-10100000000000000000,"y":475000000000000000,"z":11300000000000000000}},"30017657":{"solarSystemId":30017657,"solarSystemName":"D:3O9I","location":{"x":-5530000000000000000,"y":2300000000000000000,"z":10200000000000000000}},"30017658":{"solarSystemId":30017658,"solarSystemName":"Q:2K9E","location":{"x":-6710000000000000000,"y":45200000000000000,"z":10600000000000000000}},"30017659":{"solarSystemId":30017659,"solarSystemName":"J:17I0","location":{"x":-5970000000000000000,"y":491000000000000000,"z":11100000000000000000}},"30017660":{"solarSystemId":30017660,"solarSystemName":"B:2ENA","location":{"x":-6520000000000000000,"y":591000000000000000,"z":10800000000000000000}},"30017661":{"solarSystemId":30017661,"solarSystemName":"F:3O89","location":{"x":-6130000000000000000,"y":1260000000000000000,"z":9760000000000000000}},"30017662":{"solarSystemId":30017662,"solarSystemName":"D:3E4E","location":{"x":-7750000000000000000,"y":-842000000000000000,"z":10200000000000000000}},"30017663":{"solarSystemId":30017663,"solarSystemName":"J:1SL7","location":{"x":-7010000000000000000,"y":-366000000000000000,"z":11000000000000000000}},"30017664":{"solarSystemId":30017664,"solarSystemName":"P:8LI4","location":{"x":-7170000000000000000,"y":366000000000000000,"z":11200000000000000000}},"30017665":{"solarSystemId":30017665,"solarSystemName":"B:TK2S","location":{"x":-7010000000000000000,"y":423000000000000000,"z":10700000000000000000}},"30017666":{"solarSystemId":30017666,"solarSystemName":"Y:1EI3","location":{"x":-5650000000000000000,"y":401000000000000000,"z":10700000000000000000}},"30017667":{"solarSystemId":30017667,"solarSystemName":"Z:2T77","location":{"x":-7660000000000000000,"y":434000000000000000,"z":10800000000000000000}},"30017668":{"solarSystemId":30017668,"solarSystemName":"B:2VI6","location":{"x":-11700000000000000000,"y":-94000000000000000,"z":15700000000000000000}},"30017669":{"solarSystemId":30017669,"solarSystemName":"H:40EE","location":{"x":-11900000000000000000,"y":-57800000000000000,"z":14900000000000000000}},"30017670":{"solarSystemId":30017670,"solarSystemName":"Y:20O5","location":{"x":-11500000000000000000,"y":-489000000000000000,"z":14700000000000000000}},"30017671":{"solarSystemId":30017671,"solarSystemName":"F:1049","location":{"x":-12800000000000000000,"y":237000000000000000,"z":16000000000000000000}},"30017672":{"solarSystemId":30017672,"solarSystemName":"Y:2477","location":{"x":-11900000000000000000,"y":134000000000000000,"z":14900000000000000000}},"30017673":{"solarSystemId":30017673,"solarSystemName":"G:20VO","location":{"x":-12800000000000000000,"y":264000000000000000,"z":15100000000000000000}},"30017674":{"solarSystemId":30017674,"solarSystemName":"D:INLO","location":{"x":-12900000000000000000,"y":91500000000000000,"z":14300000000000000000}},"30017675":{"solarSystemId":30017675,"solarSystemName":"U:35L4","location":{"x":-9050000000000000000,"y":-2520000000000000000,"z":15100000000000000000}},"30017676":{"solarSystemId":30017676,"solarSystemName":"M:R93K","location":{"x":-11300000000000000000,"y":-568000000000000000,"z":16900000000000000000}},"30017677":{"solarSystemId":30017677,"solarSystemName":"M:50A9","location":{"x":-11500000000000000000,"y":271000000000000000,"z":21200000000000000000}},"30017678":{"solarSystemId":30017678,"solarSystemName":"M:109E","location":{"x":-12100000000000000000,"y":-3190000000000000000,"z":17900000000000000000}},"30017679":{"solarSystemId":30017679,"solarSystemName":"B:K412","location":{"x":-9170000000000000000,"y":-3030000000000000000,"z":16500000000000000000}},"30017680":{"solarSystemId":30017680,"solarSystemName":"U:1TIS","location":{"x":-12600000000000000000,"y":-1060000000000000000,"z":17300000000000000000}},"30017681":{"solarSystemId":30017681,"solarSystemName":"M:1EA3","location":{"x":-10300000000000000000,"y":132000000000000000,"z":15600000000000000000}},"30017682":{"solarSystemId":30017682,"solarSystemName":"P:1494","location":{"x":-10700000000000000000,"y":218000000000000000,"z":19600000000000000000}},"30017683":{"solarSystemId":30017683,"solarSystemName":"G:3T96","location":{"x":-10900000000000000000,"y":-80600000000000000,"z":13400000000000000000}},"30017684":{"solarSystemId":30017684,"solarSystemName":"M:AS9R","location":{"x":-10800000000000000000,"y":-226000000000000000,"z":14300000000000000000}},"30017685":{"solarSystemId":30017685,"solarSystemName":"Z:K4KO","location":{"x":-12800000000000000000,"y":-56900000000000000,"z":12100000000000000000}},"30017686":{"solarSystemId":30017686,"solarSystemName":"H:N176","location":{"x":-10400000000000000000,"y":418000000000000000,"z":14200000000000000000}},"30017687":{"solarSystemId":30017687,"solarSystemName":"P:RI9V","location":{"x":-11700000000000000000,"y":102000000000000000,"z":13100000000000000000}},"30017688":{"solarSystemId":30017688,"solarSystemName":"P:E737","location":{"x":-10900000000000000000,"y":250000000000000000,"z":13400000000000000000}},"30017689":{"solarSystemId":30017689,"solarSystemName":"G:EOT2","location":{"x":-11300000000000000000,"y":321000000000000000,"z":13900000000000000000}},"30017690":{"solarSystemId":30017690,"solarSystemName":"H:K45O","location":{"x":-11200000000000000000,"y":377000000000000000,"z":13900000000000000000}},"30017691":{"solarSystemId":30017691,"solarSystemName":"B:1SS6","location":{"x":-8570000000000000000,"y":-52100000000000000,"z":13800000000000000000}},"30017692":{"solarSystemId":30017692,"solarSystemName":"Q:1NIN","location":{"x":-8690000000000000000,"y":20100000000000000,"z":14200000000000000000}},"30017693":{"solarSystemId":30017693,"solarSystemName":"Z:3IE0","location":{"x":-9040000000000000000,"y":-130000000000000000,"z":15100000000000000000}},"30017694":{"solarSystemId":30017694,"solarSystemName":"Z:1OA8","location":{"x":-10300000000000000000,"y":51700000000000000,"z":15200000000000000000}},"30017695":{"solarSystemId":30017695,"solarSystemName":"P:36S5","location":{"x":-7960000000000000000,"y":-634000000000000000,"z":15400000000000000000}},"30017696":{"solarSystemId":30017696,"solarSystemName":"G:2IST","location":{"x":-9090000000000000000,"y":-157000000000000000,"z":15200000000000000000}},"30017697":{"solarSystemId":30017697,"solarSystemName":"Q:18L4","location":{"x":-8700000000000000000,"y":80100000000000000,"z":14800000000000000000}},"30017698":{"solarSystemId":30017698,"solarSystemName":"J:4N6K","location":{"x":-9570000000000000000,"y":50900000000000000,"z":14500000000000000000}},"30017699":{"solarSystemId":30017699,"solarSystemName":"P:2682","location":{"x":-11700000000000000000,"y":665000000000000000,"z":12200000000000000000}},"30017700":{"solarSystemId":30017700,"solarSystemName":"D:2220","location":{"x":-11800000000000000000,"y":578000000000000000,"z":11500000000000000000}},"30017701":{"solarSystemId":30017701,"solarSystemName":"Z:3V32","location":{"x":-11000000000000000000,"y":-253000000000000000,"z":11400000000000000000}},"30017702":{"solarSystemId":30017702,"solarSystemName":"Z:LT2K","location":{"x":-12100000000000000000,"y":358000000000000000,"z":11800000000000000000}},"30017703":{"solarSystemId":30017703,"solarSystemName":"P:261N","location":{"x":-10900000000000000000,"y":-326000000000000000,"z":12300000000000000000}},"30017704":{"solarSystemId":30017704,"solarSystemName":"Z:2EK2","location":{"x":-11000000000000000000,"y":535000000000000000,"z":12100000000000000000}},"30017705":{"solarSystemId":30017705,"solarSystemName":"U:2EOK","location":{"x":-11700000000000000000,"y":25700000000000000,"z":11900000000000000000}},"30017706":{"solarSystemId":30017706,"solarSystemName":"G:NI3L","location":{"x":-12000000000000000000,"y":234000000000000000,"z":12500000000000000000}},"30017707":{"solarSystemId":30017707,"solarSystemName":"F:3E5A","location":{"x":-11200000000000000000,"y":200000000000000000,"z":12000000000000000000}},"30017708":{"solarSystemId":30017708,"solarSystemName":"H:1EAO","location":{"x":-18600000000000000000,"y":31000000000000000,"z":7110000000000000000}},"30017709":{"solarSystemId":30017709,"solarSystemName":"D:T567","location":{"x":-18500000000000000000,"y":341000000000000000,"z":7030000000000000000}},"30017710":{"solarSystemId":30017710,"solarSystemName":"U:1E58","location":{"x":-19800000000000000000,"y":157000000000000000,"z":7970000000000000000}},"30017711":{"solarSystemId":30017711,"solarSystemName":"Y:3EKE","location":{"x":-18800000000000000000,"y":198000000000000000,"z":7490000000000000000}},"30017712":{"solarSystemId":30017712,"solarSystemName":"B:2794","location":{"x":-19600000000000000000,"y":81100000000000000,"z":8870000000000000000}},"30017713":{"solarSystemId":30017713,"solarSystemName":"F:K710","location":{"x":-19200000000000000000,"y":169000000000000000,"z":7350000000000000000}},"30017714":{"solarSystemId":30017714,"solarSystemName":"H:4V2V","location":{"x":-19800000000000000000,"y":-42300000000000000,"z":7140000000000000000}},"30017715":{"solarSystemId":30017715,"solarSystemName":"G:EV2L","location":{"x":-19100000000000000000,"y":-282000000000000000,"z":8110000000000000000}},"30017716":{"solarSystemId":30017716,"solarSystemName":"Y:1A23","location":{"x":-19300000000000000000,"y":714000000000000000,"z":7920000000000000000}},"30017717":{"solarSystemId":30017717,"solarSystemName":"P:3N08","location":{"x":-18600000000000000000,"y":146000000000000000,"z":9930000000000000000}},"30017718":{"solarSystemId":30017718,"solarSystemName":"M:52RL","location":{"x":-18900000000000000000,"y":-434000000000000000,"z":9060000000000000000}},"30017719":{"solarSystemId":30017719,"solarSystemName":"J:2KTT","location":{"x":-17700000000000000000,"y":94900000000000000,"z":7730000000000000000}},"30017720":{"solarSystemId":30017720,"solarSystemName":"F:832R","location":{"x":-18300000000000000000,"y":-394000000000000000,"z":10500000000000000000}},"30017721":{"solarSystemId":30017721,"solarSystemName":"J:219S","location":{"x":-17500000000000000000,"y":463000000000000000,"z":7810000000000000000}},"30017722":{"solarSystemId":30017722,"solarSystemName":"F:1LA0","location":{"x":-17400000000000000000,"y":277000000000000000,"z":8350000000000000000}},"30017723":{"solarSystemId":30017723,"solarSystemName":"U:I2VA","location":{"x":-18200000000000000000,"y":329000000000000000,"z":9650000000000000000}},"30017724":{"solarSystemId":30017724,"solarSystemName":"U:3NRE","location":{"x":-19000000000000000000,"y":303000000000000000,"z":10400000000000000000}},"30017725":{"solarSystemId":30017725,"solarSystemName":"Q:3S8L","location":{"x":-17600000000000000000,"y":447000000000000000,"z":7530000000000000000}},"30017726":{"solarSystemId":30017726,"solarSystemName":"J:13NK","location":{"x":-18800000000000000000,"y":-285000000000000000,"z":10200000000000000000}},"30017727":{"solarSystemId":30017727,"solarSystemName":"D:3I09","location":{"x":-18900000000000000000,"y":-540000000000000000,"z":10400000000000000000}},"30017728":{"solarSystemId":30017728,"solarSystemName":"P:4R8A","location":{"x":-18800000000000000000,"y":-384000000000000000,"z":8930000000000000000}},"30017729":{"solarSystemId":30017729,"solarSystemName":"B:25A7","location":{"x":-19800000000000000000,"y":232000000000000000,"z":10300000000000000000}},"30017730":{"solarSystemId":30017730,"solarSystemName":"Z:31OA","location":{"x":-19300000000000000000,"y":-209000000000000000,"z":9560000000000000000}},"30017731":{"solarSystemId":30017731,"solarSystemName":"Q:TRIK","location":{"x":-20300000000000000000,"y":-274000000000000000,"z":9580000000000000000}},"30017732":{"solarSystemId":30017732,"solarSystemName":"Q:3VO9","location":{"x":-21200000000000000000,"y":56500000000000000,"z":10600000000000000000}},"30017733":{"solarSystemId":30017733,"solarSystemName":"F:1293","location":{"x":-20900000000000000000,"y":-718000000000000000,"z":9000000000000000000}},"30017734":{"solarSystemId":30017734,"solarSystemName":"H:12E7","location":{"x":-20300000000000000000,"y":-836000000000000000,"z":9410000000000000000}},"30017735":{"solarSystemId":30017735,"solarSystemName":"H:11R9","location":{"x":-18900000000000000000,"y":-695000000000000000,"z":9450000000000000000}},"30017736":{"solarSystemId":30017736,"solarSystemName":"P:1611","location":{"x":-21000000000000000000,"y":-205000000000000000,"z":8280000000000000000}},"30017737":{"solarSystemId":30017737,"solarSystemName":"P:KO26","location":{"x":-20700000000000000000,"y":-733000000000000000,"z":9050000000000000000}},"30017738":{"solarSystemId":30017738,"solarSystemName":"D:3O68","location":{"x":-19200000000000000000,"y":12800000000000000,"z":11200000000000000000}},"30017739":{"solarSystemId":30017739,"solarSystemName":"U:3EI6","location":{"x":-19100000000000000000,"y":235000000000000000,"z":11800000000000000000}},"30017740":{"solarSystemId":30017740,"solarSystemName":"M:24N3","location":{"x":-18900000000000000000,"y":-12700000000000000,"z":14600000000000000000}},"30017741":{"solarSystemId":30017741,"solarSystemName":"Z:LE90","location":{"x":-19600000000000000000,"y":-253000000000000000,"z":11500000000000000000}},"30017742":{"solarSystemId":30017742,"solarSystemName":"Y:2O59","location":{"x":-20700000000000000000,"y":53000000000000000,"z":11500000000000000000}},"30017743":{"solarSystemId":30017743,"solarSystemName":"F:1AO2","location":{"x":-20300000000000000000,"y":-298000000000000000,"z":11900000000000000000}},"30017744":{"solarSystemId":30017744,"solarSystemName":"M:8NI8","location":{"x":-19500000000000000000,"y":197000000000000000,"z":15300000000000000000}},"30017745":{"solarSystemId":30017745,"solarSystemName":"H:1ESV","location":{"x":-16900000000000000000,"y":-46300000000000000,"z":9570000000000000000}},"30017746":{"solarSystemId":30017746,"solarSystemName":"M:31IA","location":{"x":-16300000000000000000,"y":149000000000000000,"z":10900000000000000000}},"30017747":{"solarSystemId":30017747,"solarSystemName":"G:3O0L","location":{"x":-16700000000000000000,"y":-490000000000000000,"z":10900000000000000000}},"30017748":{"solarSystemId":30017748,"solarSystemName":"D:21LT","location":{"x":-16600000000000000000,"y":-527000000000000000,"z":9720000000000000000}},"30017749":{"solarSystemId":30017749,"solarSystemName":"H:10L8","location":{"x":-16300000000000000000,"y":-406000000000000000,"z":9790000000000000000}},"30017750":{"solarSystemId":30017750,"solarSystemName":"M:2E5S","location":{"x":-16900000000000000000,"y":-344000000000000000,"z":11400000000000000000}},"30017751":{"solarSystemId":30017751,"solarSystemName":"Y:1SN3","location":{"x":-14900000000000000000,"y":-577000000000000000,"z":10400000000000000000}},"30017752":{"solarSystemId":30017752,"solarSystemName":"G:28R0","location":{"x":-16700000000000000000,"y":129000000000000000,"z":11600000000000000000}},"30017753":{"solarSystemId":30017753,"solarSystemName":"F:564K","location":{"x":-15000000000000000000,"y":-167000000000000000,"z":11100000000000000000}},"30017754":{"solarSystemId":30017754,"solarSystemName":"J:3IEL","location":{"x":-22600000000000000000,"y":170000000000000000,"z":10700000000000000000}},"30017755":{"solarSystemId":30017755,"solarSystemName":"H:164E","location":{"x":-22500000000000000000,"y":-226000000000000000,"z":11300000000000000000}},"30017756":{"solarSystemId":30017756,"solarSystemName":"U:29A1","location":{"x":-22300000000000000000,"y":229000000000000000,"z":11600000000000000000}},"30017757":{"solarSystemId":30017757,"solarSystemName":"Y:NI9L","location":{"x":-20800000000000000000,"y":-45100000000000000,"z":11700000000000000000}},"30017758":{"solarSystemId":30017758,"solarSystemName":"U:23L1","location":{"x":-22600000000000000000,"y":-68300000000000000,"z":11400000000000000000}},"30017759":{"solarSystemId":30017759,"solarSystemName":"M:37V2","location":{"x":-20900000000000000000,"y":-476000000000000000,"z":11900000000000000000}},"30017760":{"solarSystemId":30017760,"solarSystemName":"M:3AL6","location":{"x":-21500000000000000000,"y":-995000000000000000,"z":10300000000000000000}},"30017761":{"solarSystemId":30017761,"solarSystemName":"H:1SOT","location":{"x":-17600000000000000000,"y":419000000000000000,"z":10900000000000000000}},"30017762":{"solarSystemId":30017762,"solarSystemName":"M:21NL","location":{"x":-18400000000000000000,"y":387000000000000000,"z":10600000000000000000}},"30017763":{"solarSystemId":30017763,"solarSystemName":"Q:350K","location":{"x":-17600000000000000000,"y":166000000000000000,"z":10800000000000000000}},"30017764":{"solarSystemId":30017764,"solarSystemName":"U:3AT9","location":{"x":-16800000000000000000,"y":558000000000000000,"z":11200000000000000000}},"30017765":{"solarSystemId":30017765,"solarSystemName":"D:2IV5","location":{"x":-18700000000000000000,"y":335000000000000000,"z":11200000000000000000}},"30017766":{"solarSystemId":30017766,"solarSystemName":"D:1O2L","location":{"x":-17700000000000000000,"y":93400000000000000,"z":11100000000000000000}},"30017767":{"solarSystemId":30017767,"solarSystemName":"F:2A12","location":{"x":-17400000000000000000,"y":-512000000000000000,"z":10900000000000000000}},"30017768":{"solarSystemId":30017768,"solarSystemName":"J:OTK5","location":{"x":-18200000000000000000,"y":-389000000000000000,"z":11000000000000000000}},"30017769":{"solarSystemId":30017769,"solarSystemName":"Y:37VE","location":{"x":-20700000000000000000,"y":255000000000000000,"z":7110000000000000000}},"30017770":{"solarSystemId":30017770,"solarSystemName":"M:1L7K","location":{"x":-20400000000000000000,"y":-9600000000000000,"z":7450000000000000000}},"30017771":{"solarSystemId":30017771,"solarSystemName":"J:NTK5","location":{"x":-22300000000000000000,"y":-4450000000000000,"z":7870000000000000000}},"30017772":{"solarSystemId":30017772,"solarSystemName":"Y:LK5R","location":{"x":-20600000000000000000,"y":-127000000000000000,"z":7100000000000000000}},"30017773":{"solarSystemId":30017773,"solarSystemName":"Y:4ASO","location":{"x":-21200000000000000000,"y":-888000000000000000,"z":8360000000000000000}},"30017774":{"solarSystemId":30017774,"solarSystemName":"J:TE4O","location":{"x":-21900000000000000000,"y":-393000000000000000,"z":8100000000000000000}},"30017775":{"solarSystemId":30017775,"solarSystemName":"B:168E","location":{"x":-21200000000000000000,"y":-296000000000000000,"z":7830000000000000000}},"30017776":{"solarSystemId":30017776,"solarSystemName":"M:1029","location":{"x":-22100000000000000000,"y":-561000000000000000,"z":7620000000000000000}},"30017777":{"solarSystemId":30017777,"solarSystemName":"P:159S","location":{"x":-21000000000000000000,"y":-796000000000000000,"z":8330000000000000000}},"30017778":{"solarSystemId":30017778,"solarSystemName":"F:2K18","location":{"x":-4710000000000000000,"y":-8280000000000000000,"z":-942000000000000000}},"30017779":{"solarSystemId":30017779,"solarSystemName":"D:2A35","location":{"x":-4000000000000000000,"y":-6690000000000000000,"z":-667000000000000000}},"30017780":{"solarSystemId":30017780,"solarSystemName":"Y:36SK","location":{"x":-4920000000000000000,"y":-8230000000000000000,"z":-742000000000000000}},"30017781":{"solarSystemId":30017781,"solarSystemName":"U:33T7","location":{"x":-4270000000000000000,"y":-7030000000000000000,"z":-595000000000000000}},"30017782":{"solarSystemId":30017782,"solarSystemName":"U:3IR4","location":{"x":-3690000000000000000,"y":-8650000000000000000,"z":256000000000000000}},"30017783":{"solarSystemId":30017783,"solarSystemName":"P:3IRS","location":{"x":-496000000000000000,"y":-5640000000000000000,"z":593000000000000000}},"30017784":{"solarSystemId":30017784,"solarSystemName":"J:2I2I","location":{"x":-1340000000000000000,"y":-6610000000000000000,"z":1930000000000000000}},"30017785":{"solarSystemId":30017785,"solarSystemName":"J:2RI4","location":{"x":-916000000000000000,"y":-6390000000000000000,"z":873000000000000000}},"30017786":{"solarSystemId":30017786,"solarSystemName":"B:2OAO","location":{"x":-1620000000000000000,"y":-6990000000000000000,"z":2060000000000000000}},"30017787":{"solarSystemId":30017787,"solarSystemName":"Z:38IN","location":{"x":-2290000000000000000,"y":-6740000000000000000,"z":624000000000000000}},"30017788":{"solarSystemId":30017788,"solarSystemName":"H:3VE8","location":{"x":-691000000000000000,"y":-6750000000000000000,"z":2500000000000000000}},"30017789":{"solarSystemId":30017789,"solarSystemName":"D:35TR","location":{"x":895000000000000000,"y":-5300000000000000000,"z":412000000000000000}},"30017790":{"solarSystemId":30017790,"solarSystemName":"Q:3NO0","location":{"x":-29900000000000000,"y":-4660000000000000000,"z":1040000000000000000}},"30017791":{"solarSystemId":30017791,"solarSystemName":"Z:2L52","location":{"x":-60400000000000000,"y":-5300000000000000000,"z":1330000000000000000}},"30017792":{"solarSystemId":30017792,"solarSystemName":"J:2AS4","location":{"x":-57700000000000000,"y":-4660000000000000000,"z":156000000000000000}},"30017793":{"solarSystemId":30017793,"solarSystemName":"Z:2N75","location":{"x":1160000000000000000,"y":-5040000000000000000,"z":1300000000000000000}},"30017794":{"solarSystemId":30017794,"solarSystemName":"F:2RO0","location":{"x":125000000000000000,"y":-4650000000000000000,"z":987000000000000000}},"30017795":{"solarSystemId":30017795,"solarSystemName":"F:36LV","location":{"x":-1380000000000000000,"y":-6740000000000000000,"z":-1980000000000000000}},"30017796":{"solarSystemId":30017796,"solarSystemName":"G:364N","location":{"x":-1710000000000000000,"y":-6610000000000000000,"z":-1920000000000000000}},"30017797":{"solarSystemId":30017797,"solarSystemName":"G:3S6T","location":{"x":-1830000000000000000,"y":-5840000000000000000,"z":-903000000000000000}},"30017798":{"solarSystemId":30017798,"solarSystemName":"H:2ETK","location":{"x":-950000000000000000,"y":-6090000000000000000,"z":-1000000000000000000}},"30017799":{"solarSystemId":30017799,"solarSystemName":"M:2ET5","location":{"x":-460000000000000000,"y":-6180000000000000000,"z":-2240000000000000000}},"30017800":{"solarSystemId":30017800,"solarSystemName":"F:396R","location":{"x":-2700000000000000000,"y":-6160000000000000000,"z":-717000000000000000}},"30017801":{"solarSystemId":30017801,"solarSystemName":"U:2926","location":{"x":-2920000000000000000,"y":-5190000000000000000,"z":559000000000000000}},"30017802":{"solarSystemId":30017802,"solarSystemName":"G:2V90","location":{"x":-1400000000000000000,"y":-5940000000000000000,"z":122000000000000000}},"30017803":{"solarSystemId":30017803,"solarSystemName":"D:3I9V","location":{"x":-2790000000000000000,"y":-5240000000000000000,"z":750000000000000000}},"30017804":{"solarSystemId":30017804,"solarSystemName":"G:39R5","location":{"x":-891000000000000000,"y":-4640000000000000000,"z":-169000000000000000}},"30017805":{"solarSystemId":30017805,"solarSystemName":"B:2AIL","location":{"x":-2720000000000000000,"y":-5780000000000000000,"z":100000000000000000}},"30017806":{"solarSystemId":30017806,"solarSystemName":"H:3621","location":{"x":1080000000000000000,"y":-6600000000000000000,"z":-750000000000000000}},"30017807":{"solarSystemId":30017807,"solarSystemName":"Z:2AL3","location":{"x":695000000000000000,"y":-7870000000000000000,"z":-691000000000000000}},"30017808":{"solarSystemId":30017808,"solarSystemName":"D:29V5","location":{"x":-336000000000000000,"y":-7450000000000000000,"z":-419000000000000000}},"30017809":{"solarSystemId":30017809,"solarSystemName":"Y:3AK2","location":{"x":908000000000000000,"y":-7070000000000000000,"z":17900000000000000}},"30017810":{"solarSystemId":30017810,"solarSystemName":"B:3TRS","location":{"x":-89900000000000000,"y":-7210000000000000000,"z":96700000000000000}},"30017811":{"solarSystemId":30017811,"solarSystemName":"Q:2O30","location":{"x":-2610000000000000000,"y":-7450000000000000000,"z":1310000000000000000}},"30017812":{"solarSystemId":30017812,"solarSystemName":"F:30S5","location":{"x":-4080000000000000000,"y":-7340000000000000000,"z":1240000000000000000}},"30017813":{"solarSystemId":30017813,"solarSystemName":"Z:33AE","location":{"x":-3800000000000000000,"y":-6620000000000000000,"z":1320000000000000000}},"30017814":{"solarSystemId":30017814,"solarSystemName":"H:2SRT","location":{"x":-3990000000000000000,"y":-5510000000000000000,"z":242000000000000000}},"30017815":{"solarSystemId":30017815,"solarSystemName":"D:2K45","location":{"x":-2940000000000000000,"y":-6850000000000000000,"z":1820000000000000000}},"30017816":{"solarSystemId":30017816,"solarSystemName":"Q:2SLS","location":{"x":-2130000000000000000,"y":9100000000000000000,"z":4840000000000000000}},"30017817":{"solarSystemId":30017817,"solarSystemName":"Z:2ANA","location":{"x":-235000000000000000,"y":9840000000000000000,"z":6290000000000000000}},"30017818":{"solarSystemId":30017818,"solarSystemName":"M:29NI","location":{"x":-2860000000000000000,"y":7510000000000000000,"z":7580000000000000000}},"30017819":{"solarSystemId":30017819,"solarSystemName":"P:37VI","location":{"x":-2060000000000000000,"y":5350000000000000000,"z":7700000000000000000}},"30017820":{"solarSystemId":30017820,"solarSystemName":"M:373O","location":{"x":-1600000000000000000,"y":9470000000000000000,"z":7730000000000000000}},"30017821":{"solarSystemId":30017821,"solarSystemName":"B:2RN3","location":{"x":-2040000000000000000,"y":8500000000000000000,"z":6300000000000000000}},"30017822":{"solarSystemId":30017822,"solarSystemName":"H:324L","location":{"x":-3250000000000000000,"y":8150000000000000000,"z":7860000000000000000}},"30017823":{"solarSystemId":30017823,"solarSystemName":"H:2V1O","location":{"x":1030000000000000000,"y":5430000000000000000,"z":5790000000000000000}},"30017824":{"solarSystemId":30017824,"solarSystemName":"B:3A6L","location":{"x":67700000000000000,"y":4530000000000000000,"z":4840000000000000000}},"30017825":{"solarSystemId":30017825,"solarSystemName":"B:36I7","location":{"x":543000000000000000,"y":3730000000000000000,"z":5400000000000000000}},"30017826":{"solarSystemId":30017826,"solarSystemName":"H:2IN4","location":{"x":1250000000000000000,"y":5040000000000000000,"z":5450000000000000000}},"30017827":{"solarSystemId":30017827,"solarSystemName":"U:2EN4","location":{"x":755000000000000000,"y":5520000000000000000,"z":4300000000000000000}},"30017828":{"solarSystemId":30017828,"solarSystemName":"P:36L9","location":{"x":-2460000000000000000,"y":3820000000000000000,"z":6010000000000000000}},"30017829":{"solarSystemId":30017829,"solarSystemName":"B:2ROA","location":{"x":-1410000000000000000,"y":4500000000000000000,"z":5980000000000000000}},"30017830":{"solarSystemId":30017830,"solarSystemName":"P:384E","location":{"x":-1790000000000000000,"y":5200000000000000000,"z":4890000000000000000}},"30017831":{"solarSystemId":30017831,"solarSystemName":"P:3A2K","location":{"x":-2470000000000000000,"y":5130000000000000000,"z":7310000000000000000}},"30017832":{"solarSystemId":30017832,"solarSystemName":"U:2EL0","location":{"x":-3110000000000000000,"y":5010000000000000000,"z":5720000000000000000}},"30017833":{"solarSystemId":30017833,"solarSystemName":"U:15KV","location":{"x":-2940000000000000000,"y":6380000000000000000,"z":6460000000000000000}},"30017834":{"solarSystemId":30017834,"solarSystemName":"H:33LS","location":{"x":-2220000000000000000,"y":6250000000000000000,"z":6990000000000000000}},"30017835":{"solarSystemId":30017835,"solarSystemName":"B:3V69","location":{"x":-166000000000000000,"y":8120000000000000000,"z":7080000000000000000}},"30017836":{"solarSystemId":30017836,"solarSystemName":"P:3AVO","location":{"x":-513000000000000000,"y":6250000000000000000,"z":6260000000000000000}},"30017837":{"solarSystemId":30017837,"solarSystemName":"B:3INS","location":{"x":-1730000000000000000,"y":7810000000000000000,"z":5870000000000000000}},"30017838":{"solarSystemId":30017838,"solarSystemName":"D:2T51","location":{"x":-1120000000000000000,"y":6770000000000000000,"z":6040000000000000000}},"30017839":{"solarSystemId":30017839,"solarSystemName":"M:1616","location":{"x":-1900000000000000000,"y":6770000000000000000,"z":6410000000000000000}},"30017840":{"solarSystemId":30017840,"solarSystemName":"Q:31V6","location":{"x":-292000000000000000,"y":2330000000000000000,"z":6200000000000000000}},"30017841":{"solarSystemId":30017841,"solarSystemName":"H:2S25","location":{"x":-520000000000000000,"y":2530000000000000000,"z":6990000000000000000}},"30017842":{"solarSystemId":30017842,"solarSystemName":"U:3349","location":{"x":-926000000000000000,"y":2410000000000000000,"z":8030000000000000000}},"30017843":{"solarSystemId":30017843,"solarSystemName":"Y:3OV0","location":{"x":-1140000000000000000,"y":5560000000000000000,"z":8080000000000000000}},"30017844":{"solarSystemId":30017844,"solarSystemName":"J:3STE","location":{"x":-2030000000000000000,"y":3910000000000000000,"z":7210000000000000000}},"30017845":{"solarSystemId":30017845,"solarSystemName":"Q:31I0","location":{"x":-2590000000000000000,"y":2700000000000000000,"z":8250000000000000000}},"30017846":{"solarSystemId":30017846,"solarSystemName":"G:282K","location":{"x":-1490000000000000000,"y":2110000000000000000,"z":7460000000000000000}},"30017847":{"solarSystemId":30017847,"solarSystemName":"G:3EAV","location":{"x":-371000000000000000,"y":2550000000000000000,"z":7050000000000000000}},"30017848":{"solarSystemId":30017848,"solarSystemName":"G:36VT","location":{"x":1040000000000000000,"y":3310000000000000000,"z":8230000000000000000}},"30017849":{"solarSystemId":30017849,"solarSystemName":"P:3NIT","location":{"x":275000000000000000,"y":3560000000000000000,"z":9250000000000000000}},"30017850":{"solarSystemId":30017850,"solarSystemName":"Y:2ALE","location":{"x":1160000000000000000,"y":4450000000000000000,"z":7990000000000000000}},"30017851":{"solarSystemId":30017851,"solarSystemName":"B:2NKT","location":{"x":384000000000000000,"y":4430000000000000000,"z":8540000000000000000}},"30017852":{"solarSystemId":30017852,"solarSystemName":"G:31OL","location":{"x":218000000000000000,"y":3890000000000000000,"z":7710000000000000000}},"30017853":{"solarSystemId":30017853,"solarSystemName":"M:2IIR","location":{"x":4130000000000000000,"y":5450000000000000000,"z":9070000000000000000}},"30017854":{"solarSystemId":30017854,"solarSystemName":"B:2III","location":{"x":3920000000000000000,"y":5230000000000000000,"z":9110000000000000000}},"30017855":{"solarSystemId":30017855,"solarSystemName":"J:29SK","location":{"x":1360000000000000000,"y":4930000000000000000,"z":10100000000000000000}},"30017856":{"solarSystemId":30017856,"solarSystemName":"J:29O1","location":{"x":2800000000000000000,"y":5490000000000000000,"z":10100000000000000000}},"30017857":{"solarSystemId":30017857,"solarSystemName":"U:3O72","location":{"x":831000000000000000,"y":5230000000000000000,"z":10900000000000000000}},"30017858":{"solarSystemId":30017858,"solarSystemName":"Y:3T5L","location":{"x":445000000000000000,"y":7340000000000000000,"z":2560000000000000000}},"30017859":{"solarSystemId":30017859,"solarSystemName":"P:2LNI","location":{"x":493000000000000000,"y":8240000000000000000,"z":4160000000000000000}},"30017860":{"solarSystemId":30017860,"solarSystemName":"Q:32KN","location":{"x":1670000000000000000,"y":8170000000000000000,"z":3540000000000000000}},"30017861":{"solarSystemId":30017861,"solarSystemName":"H:3NEK","location":{"x":-27700000000000000,"y":7160000000000000000,"z":4580000000000000000}},"30017862":{"solarSystemId":30017862,"solarSystemName":"G:2ON7","location":{"x":2140000000000000000,"y":7030000000000000000,"z":2530000000000000000}},"30017863":{"solarSystemId":30017863,"solarSystemName":"B:2A1T","location":{"x":-5390000000000000000,"y":-3290000000000000000,"z":16200000000000000000}},"30017864":{"solarSystemId":30017864,"solarSystemName":"Z:37T6","location":{"x":-6030000000000000000,"y":-4400000000000000000,"z":15500000000000000000}},"30017865":{"solarSystemId":30017865,"solarSystemName":"M:3A25","location":{"x":-5710000000000000000,"y":-4610000000000000000,"z":15800000000000000000}},"30017866":{"solarSystemId":30017866,"solarSystemName":"H:3353","location":{"x":-5960000000000000000,"y":-4980000000000000000,"z":15200000000000000000}},"30017867":{"solarSystemId":30017867,"solarSystemName":"B:IRT0","location":{"x":-5240000000000000000,"y":-3330000000000000000,"z":15800000000000000000}},"30017868":{"solarSystemId":30017868,"solarSystemName":"Z:24IL","location":{"x":-6180000000000000000,"y":-4930000000000000000,"z":14400000000000000000}},"30017869":{"solarSystemId":30017869,"solarSystemName":"G:3N8N","location":{"x":-6110000000000000000,"y":-3590000000000000000,"z":16900000000000000000}},"30017870":{"solarSystemId":30017870,"solarSystemName":"U:2N8A","location":{"x":-7350000000000000000,"y":-3920000000000000000,"z":18700000000000000000}},"30017871":{"solarSystemId":30017871,"solarSystemName":"Z:1N7R","location":{"x":-4470000000000000000,"y":-3270000000000000000,"z":17400000000000000000}},"30017872":{"solarSystemId":30017872,"solarSystemName":"M:280T","location":{"x":-5790000000000000000,"y":-4180000000000000000,"z":18500000000000000000}},"30017873":{"solarSystemId":30017873,"solarSystemName":"B:2I65","location":{"x":-5450000000000000000,"y":-4520000000000000000,"z":17800000000000000000}},"30017874":{"solarSystemId":30017874,"solarSystemName":"Q:NEOS","location":{"x":-4460000000000000000,"y":-3490000000000000000,"z":16700000000000000000}},"30017875":{"solarSystemId":30017875,"solarSystemName":"D:1200","location":{"x":-8930000000000000000,"y":-4270000000000000000,"z":13600000000000000000}},"30017876":{"solarSystemId":30017876,"solarSystemName":"M:1S3I","location":{"x":-7010000000000000000,"y":-2730000000000000000,"z":13300000000000000000}},"30017877":{"solarSystemId":30017877,"solarSystemName":"H:21S5","location":{"x":-8000000000000000000,"y":-3470000000000000000,"z":12800000000000000000}},"30017878":{"solarSystemId":30017878,"solarSystemName":"B:3I05","location":{"x":-8890000000000000000,"y":-4180000000000000000,"z":14000000000000000000}},"30017879":{"solarSystemId":30017879,"solarSystemName":"F:13I6","location":{"x":-7890000000000000000,"y":-2850000000000000000,"z":12600000000000000000}},"30017880":{"solarSystemId":30017880,"solarSystemName":"D:I052","location":{"x":-7750000000000000000,"y":-3160000000000000000,"z":13400000000000000000}},"30017881":{"solarSystemId":30017881,"solarSystemName":"D:1T95","location":{"x":-8030000000000000000,"y":-1960000000000000000,"z":13300000000000000000}},"30017882":{"solarSystemId":30017882,"solarSystemName":"D:2KTO","location":{"x":-2300000000000000000,"y":-6960000000000000000,"z":20100000000000000000}},"30017883":{"solarSystemId":30017883,"solarSystemName":"J:IA4T","location":{"x":-582000000000000000,"y":-5900000000000000000,"z":18800000000000000000}},"30017884":{"solarSystemId":30017884,"solarSystemName":"H:44T4","location":{"x":-1430000000000000000,"y":-5290000000000000000,"z":19500000000000000000}},"30017885":{"solarSystemId":30017885,"solarSystemName":"Y:3A51","location":{"x":-3720000000000000000,"y":-7920000000000000000,"z":20600000000000000000}},"30017886":{"solarSystemId":30017886,"solarSystemName":"F:1ESR","location":{"x":-3370000000000000000,"y":-7330000000000000000,"z":21000000000000000000}},"30017887":{"solarSystemId":30017887,"solarSystemName":"U:281K","location":{"x":-1670000000000000000,"y":-6310000000000000000,"z":20000000000000000000}},"30017888":{"solarSystemId":30017888,"solarSystemName":"Q:LET0","location":{"x":-3360000000000000000,"y":-5890000000000000000,"z":19300000000000000000}},"30017889":{"solarSystemId":30017889,"solarSystemName":"U:3A5L","location":{"x":-7640000000000000000,"y":-6190000000000000000,"z":16800000000000000000}},"30017890":{"solarSystemId":30017890,"solarSystemName":"M:1TI6","location":{"x":-6950000000000000000,"y":-7210000000000000000,"z":15200000000000000000}},"30017891":{"solarSystemId":30017891,"solarSystemName":"F:33SN","location":{"x":-9040000000000000000,"y":-4790000000000000000,"z":17100000000000000000}},"30017892":{"solarSystemId":30017892,"solarSystemName":"B:210O","location":{"x":-8270000000000000000,"y":-4820000000000000000,"z":16300000000000000000}},"30017893":{"solarSystemId":30017893,"solarSystemName":"F:2LTK","location":{"x":-6850000000000000000,"y":-6560000000000000000,"z":16700000000000000000}},"30017894":{"solarSystemId":30017894,"solarSystemName":"H:38L8","location":{"x":-6650000000000000000,"y":97800000000000000,"z":19600000000000000000}},"30017895":{"solarSystemId":30017895,"solarSystemName":"G:1ET6","location":{"x":-9670000000000000000,"y":-689000000000000000,"z":19400000000000000000}},"30017896":{"solarSystemId":30017896,"solarSystemName":"D:1LI5","location":{"x":-7870000000000000000,"y":-326000000000000000,"z":17500000000000000000}},"30017897":{"solarSystemId":30017897,"solarSystemName":"F:22TO","location":{"x":-8840000000000000000,"y":-1200000000000000000,"z":18800000000000000000}},"30017898":{"solarSystemId":30017898,"solarSystemName":"J:24ER","location":{"x":-7210000000000000000,"y":-206000000000000000,"z":18700000000000000000}},"30017899":{"solarSystemId":30017899,"solarSystemName":"U:2978","location":{"x":-8360000000000000000,"y":-653000000000000000,"z":19800000000000000000}},"30017900":{"solarSystemId":30017900,"solarSystemName":"M:11TT","location":{"x":-8210000000000000000,"y":588000000000000000,"z":20200000000000000000}},"30017901":{"solarSystemId":30017901,"solarSystemName":"E.YMB.XNP","location":{"x":-26000000000000000000,"y":663000000000000000,"z":14500000000000000000}},"30017902":{"solarSystemId":30017902,"solarSystemName":"I.HZB.391","location":{"x":-26400000000000000000,"y":46300000000000000,"z":14800000000000000000}},"30017903":{"solarSystemId":30017903,"solarSystemName":"E.G1G.6GD","location":{"x":-26600000000000000000,"y":567000000000000000,"z":16400000000000000000}},"30017904":{"solarSystemId":30017904,"solarSystemName":"I.WNB.578","location":{"x":-25800000000000000000,"y":296000000000000000,"z":12800000000000000000}},"30017905":{"solarSystemId":30017905,"solarSystemName":"R.TPG.JR9","location":{"x":-27200000000000000000,"y":340000000000000000,"z":14100000000000000000}},"30017906":{"solarSystemId":30017906,"solarSystemName":"M.VTH.8Z4","location":{"x":-28100000000000000000,"y":176000000000000000,"z":12900000000000000000}},"30017907":{"solarSystemId":30017907,"solarSystemName":"D.YKB.ECL","location":{"x":-26500000000000000000,"y":524000000000000000,"z":18900000000000000000}},"30017908":{"solarSystemId":30017908,"solarSystemName":"T.WPX.SW4","location":{"x":-30700000000000000000,"y":177000000000000000,"z":18300000000000000000}},"30017909":{"solarSystemId":30017909,"solarSystemName":"Þögn","location":{"x":-26300000000000000000,"y":699000000000000000,"z":17500000000000000000}},"30017910":{"solarSystemId":30017910,"solarSystemName":"H.RPH.B8D","location":{"x":-28300000000000000000,"y":550000000000000000,"z":18000000000000000000}},"30017911":{"solarSystemId":30017911,"solarSystemName":"B.N2G.L82","location":{"x":-26600000000000000000,"y":81600000000000000,"z":16500000000000000000}},"30017912":{"solarSystemId":30017912,"solarSystemName":"O.M1G.5L8","location":{"x":-26600000000000000000,"y":-304000000000000000,"z":10600000000000000000}},"30017913":{"solarSystemId":30017913,"solarSystemName":"O.K8B.X44","location":{"x":-25700000000000000000,"y":150000000000000000,"z":12300000000000000000}},"30017914":{"solarSystemId":30017914,"solarSystemName":"O.E0F.WDR","location":{"x":-24200000000000000000,"y":-486000000000000000,"z":12500000000000000000}},"30017915":{"solarSystemId":30017915,"solarSystemName":"C.TWB.WPC","location":{"x":-26400000000000000000,"y":-598000000000000000,"z":10800000000000000000}},"30017916":{"solarSystemId":30017916,"solarSystemName":"M.MBF.H41","location":{"x":-25000000000000000000,"y":-1330000000000000000,"z":11700000000000000000}},"30017917":{"solarSystemId":30017917,"solarSystemName":"C.HCQ.P2S","location":{"x":-23700000000000000000,"y":-363000000000000000,"z":10700000000000000000}},"30017918":{"solarSystemId":30017918,"solarSystemName":"O.NBQ.9G8","location":{"x":-23900000000000000000,"y":-314000000000000000,"z":10400000000000000000}},"30017919":{"solarSystemId":30017919,"solarSystemName":"R.FYF.K41","location":{"x":-25200000000000000000,"y":-41600000000000000,"z":13600000000000000000}},"30017920":{"solarSystemId":30017920,"solarSystemName":"O.LWM.5G3","location":{"x":-20700000000000000000,"y":-134000000000000000,"z":12000000000000000000}},"30017921":{"solarSystemId":30017921,"solarSystemName":"C.3FM.63G","location":{"x":-20400000000000000000,"y":-832000000000000000,"z":15200000000000000000}},"30017922":{"solarSystemId":30017922,"solarSystemName":"O.PSV.QTM","location":{"x":-22300000000000000000,"y":-626000000000000000,"z":14400000000000000000}},"30017923":{"solarSystemId":30017923,"solarSystemName":"B.RQV.4Y9","location":{"x":-22600000000000000000,"y":-355000000000000000,"z":14300000000000000000}},"30017924":{"solarSystemId":30017924,"solarSystemName":"O.XTM.6BS","location":{"x":-20000000000000000000,"y":-385000000000000000,"z":13200000000000000000}},"30017925":{"solarSystemId":30017925,"solarSystemName":"E.80F.DJD","location":{"x":-24200000000000000000,"y":569000000000000000,"z":15900000000000000000}},"30017926":{"solarSystemId":30017926,"solarSystemName":"E.EZF.XV9","location":{"x":-25300000000000000000,"y":347000000000000000,"z":16300000000000000000}},"30017927":{"solarSystemId":30017927,"solarSystemName":"H.K8B.C3N","location":{"x":-25700000000000000000,"y":436000000000000000,"z":15600000000000000000}},"30017928":{"solarSystemId":30017928,"solarSystemName":"C.5GB.CC1","location":{"x":-26200000000000000000,"y":-54600000000000000,"z":15100000000000000000}},"30017929":{"solarSystemId":30017929,"solarSystemName":"C.0LQ.BLN","location":{"x":-23600000000000000000,"y":-449000000000000000,"z":15900000000000000000}},"30017930":{"solarSystemId":30017930,"solarSystemName":"B.3SF.ZLV","location":{"x":-24600000000000000000,"y":-701000000000000000,"z":15600000000000000000}},"30017931":{"solarSystemId":30017931,"solarSystemName":"N.ZCM.V37","location":{"x":-20200000000000000000,"y":256000000000000000,"z":16600000000000000000}},"30017932":{"solarSystemId":30017932,"solarSystemName":"D.QFB.P7L","location":{"x":-26100000000000000000,"y":513000000000000000,"z":19700000000000000000}},"30017933":{"solarSystemId":30017933,"solarSystemName":"I.FWB.9Y9","location":{"x":-26400000000000000000,"y":355000000000000000,"z":20400000000000000000}},"30017934":{"solarSystemId":30017934,"solarSystemName":"T.TLQ.EX7","location":{"x":-23600000000000000000,"y":283000000000000000,"z":18900000000000000000}},"30017935":{"solarSystemId":30017935,"solarSystemName":"O.48F.EPW","location":{"x":-24500000000000000000,"y":33300000000000000,"z":19000000000000000000}},"30017936":{"solarSystemId":30017936,"solarSystemName":"M:3I43","location":{"x":-11100000000000000000,"y":-7550000000000000000,"z":66000000000000000}},"30017937":{"solarSystemId":30017937,"solarSystemName":"Z:2SAE","location":{"x":-10200000000000000000,"y":-6570000000000000000,"z":-1580000000000000000}},"30017938":{"solarSystemId":30017938,"solarSystemName":"H:35RE","location":{"x":-10500000000000000000,"y":-7080000000000000000,"z":796000000000000000}},"30017939":{"solarSystemId":30017939,"solarSystemName":"U:13N5","location":{"x":-11100000000000000000,"y":-5220000000000000000,"z":316000000000000000}},"30017940":{"solarSystemId":30017940,"solarSystemName":"B:167A","location":{"x":-9690000000000000000,"y":-8030000000000000000,"z":-586000000000000000}},"30017941":{"solarSystemId":30017941,"solarSystemName":"U:3T07","location":{"x":-8150000000000000000,"y":-7570000000000000000,"z":4600000000000000000}},"30017942":{"solarSystemId":30017942,"solarSystemName":"Z:3R8T","location":{"x":-7300000000000000000,"y":-5230000000000000000,"z":3780000000000000000}},"30017943":{"solarSystemId":30017943,"solarSystemName":"Z:2O5I","location":{"x":-8310000000000000000,"y":-6390000000000000000,"z":4760000000000000000}},"30017944":{"solarSystemId":30017944,"solarSystemName":"M:340K","location":{"x":-9470000000000000000,"y":-5550000000000000000,"z":4380000000000000000}},"30017945":{"solarSystemId":30017945,"solarSystemName":"F:2E5L","location":{"x":-7860000000000000000,"y":-6030000000000000000,"z":6120000000000000000}},"30017946":{"solarSystemId":30017946,"solarSystemName":"Q:393E","location":{"x":-7380000000000000000,"y":-3530000000000000000,"z":473000000000000000}},"30017947":{"solarSystemId":30017947,"solarSystemName":"J:3RIN","location":{"x":-8460000000000000000,"y":-4300000000000000000,"z":1020000000000000000}},"30017948":{"solarSystemId":30017948,"solarSystemName":"F:3EL2","location":{"x":-7030000000000000000,"y":-3440000000000000000,"z":1790000000000000000}},"30017949":{"solarSystemId":30017949,"solarSystemName":"J:3T8R","location":{"x":-7260000000000000000,"y":-4510000000000000000,"z":-520000000000000000}},"30017950":{"solarSystemId":30017950,"solarSystemName":"Z:3997","location":{"x":-9020000000000000000,"y":-3770000000000000000,"z":42700000000000000}},"30017951":{"solarSystemId":30017951,"solarSystemName":"U:2A2N","location":{"x":-7490000000000000000,"y":-3620000000000000000,"z":-155000000000000000}},"30017952":{"solarSystemId":30017952,"solarSystemName":"Z:32O5","location":{"x":-7540000000000000000,"y":-3920000000000000000,"z":-55800000000000000}},"30017953":{"solarSystemId":30017953,"solarSystemName":"Z:2KNL","location":{"x":-8470000000000000000,"y":-3030000000000000000,"z":913000000000000000}},"30017954":{"solarSystemId":30017954,"solarSystemName":"Y:3SAR","location":{"x":-8100000000000000000,"y":-3830000000000000000,"z":50900000000000000}},"30017955":{"solarSystemId":30017955,"solarSystemName":"F:3S47","location":{"x":-7460000000000000000,"y":-3080000000000000000,"z":678000000000000000}},"30017956":{"solarSystemId":30017956,"solarSystemName":"Q:3232","location":{"x":-8520000000000000000,"y":-4090000000000000000,"z":-772000000000000000}},"30017957":{"solarSystemId":30017957,"solarSystemName":"P:O642","location":{"x":-8140000000000000000,"y":-8640000000000000000,"z":6480000000000000000}},"30017958":{"solarSystemId":30017958,"solarSystemName":"B:V4KO","location":{"x":-9060000000000000000,"y":-8950000000000000000,"z":6180000000000000000}},"30017959":{"solarSystemId":30017959,"solarSystemName":"F:45ST","location":{"x":-10000000000000000000,"y":-9230000000000000000,"z":4550000000000000000}},"30017960":{"solarSystemId":30017960,"solarSystemName":"F:LALE","location":{"x":-10400000000000000000,"y":-9250000000000000000,"z":5340000000000000000}},"30017961":{"solarSystemId":30017961,"solarSystemName":"Q:13V0","location":{"x":-10300000000000000000,"y":-6490000000000000000,"z":5670000000000000000}},"30017962":{"solarSystemId":30017962,"solarSystemName":"H:3N7S","location":{"x":-11600000000000000000,"y":-2760000000000000000,"z":232000000000000000}},"30017963":{"solarSystemId":30017963,"solarSystemName":"J:2VSR","location":{"x":-10100000000000000000,"y":-2060000000000000000,"z":1260000000000000000}},"30017964":{"solarSystemId":30017964,"solarSystemName":"J:1785","location":{"x":-10900000000000000000,"y":-3090000000000000000,"z":2870000000000000000}},"30017965":{"solarSystemId":30017965,"solarSystemName":"J:3O6O","location":{"x":-10000000000000000000,"y":-3600000000000000000,"z":2690000000000000000}},"30017966":{"solarSystemId":30017966,"solarSystemName":"Y:2VET","location":{"x":-8990000000000000000,"y":-4030000000000000000,"z":750000000000000000}},"30017967":{"solarSystemId":30017967,"solarSystemName":"Q:2TK8","location":{"x":-10800000000000000000,"y":-3550000000000000000,"z":1430000000000000000}},"30017968":{"solarSystemId":30017968,"solarSystemName":"P:2E5A","location":{"x":-10300000000000000000,"y":-2500000000000000000,"z":2220000000000000000}},"30017969":{"solarSystemId":30017969,"solarSystemName":"G:3O9S","location":{"x":-10600000000000000000,"y":-5290000000000000000,"z":781000000000000000}},"30017970":{"solarSystemId":30017970,"solarSystemName":"F:1N64","location":{"x":-11700000000000000000,"y":-4800000000000000000,"z":2180000000000000000}},"30017971":{"solarSystemId":30017971,"solarSystemName":"H:14NI","location":{"x":-11100000000000000000,"y":-2330000000000000000,"z":-293000000000000000}},"30017972":{"solarSystemId":30017972,"solarSystemName":"G:19R6","location":{"x":-10100000000000000000,"y":-3380000000000000000,"z":1110000000000000000}},"30017973":{"solarSystemId":30017973,"solarSystemName":"Y:36VI","location":{"x":-12400000000000000000,"y":-4530000000000000000,"z":2890000000000000000}},"30017974":{"solarSystemId":30017974,"solarSystemName":"J:39S2","location":{"x":-13800000000000000000,"y":-5840000000000000000,"z":763000000000000000}},"30017975":{"solarSystemId":30017975,"solarSystemName":"U:3E21","location":{"x":-13500000000000000000,"y":-7810000000000000000,"z":2370000000000000000}},"30017976":{"solarSystemId":30017976,"solarSystemName":"G:27OI","location":{"x":-10200000000000000000,"y":-4160000000000000000,"z":5360000000000000000}},"30017977":{"solarSystemId":30017977,"solarSystemName":"F:T150","location":{"x":-12700000000000000000,"y":-4640000000000000000,"z":1110000000000000000}},"30017978":{"solarSystemId":30017978,"solarSystemName":"H:2L05","location":{"x":-7300000000000000000,"y":-3660000000000000000,"z":4540000000000000000}},"30017979":{"solarSystemId":30017979,"solarSystemName":"H:34N8","location":{"x":-7430000000000000000,"y":-5040000000000000000,"z":5770000000000000000}},"30017980":{"solarSystemId":30017980,"solarSystemName":"Q:2LA1","location":{"x":-7390000000000000000,"y":-4480000000000000000,"z":5090000000000000000}},"30017981":{"solarSystemId":30017981,"solarSystemName":"U:3OTV","location":{"x":-7440000000000000000,"y":-4460000000000000000,"z":5600000000000000000}},"30017982":{"solarSystemId":30017982,"solarSystemName":"Q:3O92","location":{"x":-8600000000000000000,"y":-4090000000000000000,"z":5050000000000000000}},"30017983":{"solarSystemId":30017983,"solarSystemName":"Q:INT1","location":{"x":-8060000000000000000,"y":-4710000000000000000,"z":5010000000000000000}},"30017984":{"solarSystemId":30017984,"solarSystemName":"Q:3655","location":{"x":-9130000000000000000,"y":-3810000000000000000,"z":4560000000000000000}},"30017985":{"solarSystemId":30017985,"solarSystemName":"F:1KL7","location":{"x":-8520000000000000000,"y":-3700000000000000000,"z":4920000000000000000}},"30017986":{"solarSystemId":30017986,"solarSystemName":"P:3I36","location":{"x":-7150000000000000000,"y":-4510000000000000000,"z":6890000000000000000}},"30017987":{"solarSystemId":30017987,"solarSystemName":"D:3N2E","location":{"x":-7870000000000000000,"y":-3880000000000000000,"z":4350000000000000000}},"30017988":{"solarSystemId":30017988,"solarSystemName":"U.726.JP3","location":{"x":7000000000000000000,"y":-129000000000000000,"z":30900000000000000000}},"30017989":{"solarSystemId":30017989,"solarSystemName":"I.5D6.23Q","location":{"x":7460000000000000000,"y":-724000000000000000,"z":31000000000000000000}},"30017990":{"solarSystemId":30017990,"solarSystemName":"T.XF6.4KD","location":{"x":7700000000000000000,"y":-574000000000000000,"z":31300000000000000000}},"30017991":{"solarSystemId":30017991,"solarSystemName":"T.NQ4.XT1","location":{"x":5350000000000000000,"y":-49300000000000000,"z":30900000000000000000}},"30017992":{"solarSystemId":30017992,"solarSystemName":"D.835.QBN","location":{"x":5880000000000000000,"y":-458000000000000000,"z":30600000000000000000}},"30017993":{"solarSystemId":30017993,"solarSystemName":"A.T96.PC6","location":{"x":7260000000000000000,"y":-235000000000000000,"z":31200000000000000000}},"30017994":{"solarSystemId":30017994,"solarSystemName":"U.DZ4.QBC","location":{"x":5640000000000000000,"y":-602000000000000000,"z":29000000000000000000}},"30017995":{"solarSystemId":30017995,"solarSystemName":"A.1S5.VPT","location":{"x":6130000000000000000,"y":-417000000000000000,"z":28800000000000000000}},"30017996":{"solarSystemId":30017996,"solarSystemName":"N.6N5.LNT","location":{"x":6200000000000000000,"y":-410000000000000000,"z":28800000000000000000}},"30017997":{"solarSystemId":30017997,"solarSystemName":"E.235.201","location":{"x":5880000000000000000,"y":-1160000000000000000,"z":28300000000000000000}},"30017998":{"solarSystemId":30017998,"solarSystemName":"T.C85.55R","location":{"x":6070000000000000000,"y":-474000000000000000,"z":28700000000000000000}},"30017999":{"solarSystemId":30017999,"solarSystemName":"H.465.J51","location":{"x":5990000000000000000,"y":-1360000000000000000,"z":29600000000000000000}},"30018000":{"solarSystemId":30018000,"solarSystemName":"E.LG4.B11","location":{"x":5460000000000000000,"y":-1210000000000000000,"z":28100000000000000000}},"30018001":{"solarSystemId":30018001,"solarSystemName":"N.WK4.S6F","location":{"x":5730000000000000000,"y":-764000000000000000,"z":30200000000000000000}},"30018002":{"solarSystemId":30018002,"solarSystemName":"R.QM4.CTV","location":{"x":5250000000000000000,"y":-698000000000000000,"z":30300000000000000000}},"30018003":{"solarSystemId":30018003,"solarSystemName":"I.6Z3.MCH","location":{"x":4470000000000000000,"y":-883000000000000000,"z":29600000000000000000}},"30018004":{"solarSystemId":30018004,"solarSystemName":"I.ZT6.YFS","location":{"x":7350000000000000000,"y":-385000000000000000,"z":27800000000000000000}},"30018005":{"solarSystemId":30018005,"solarSystemName":"E.GP4.Q01","location":{"x":5290000000000000000,"y":-1180000000000000000,"z":27900000000000000000}},"30018006":{"solarSystemId":30018006,"solarSystemName":"S.PG4.54X","location":{"x":5460000000000000000,"y":-941000000000000000,"z":27300000000000000000}},"30018007":{"solarSystemId":30018007,"solarSystemName":"R.RY3.3W6","location":{"x":4450000000000000000,"y":-249000000000000000,"z":26500000000000000000}},"30018008":{"solarSystemId":30018008,"solarSystemName":"T.284.YVG","location":{"x":4900000000000000000,"y":-851000000000000000,"z":27800000000000000000}},"30018009":{"solarSystemId":30018009,"solarSystemName":"A.Y77.VP9","location":{"x":8350000000000000000,"y":-345000000000000000,"z":30600000000000000000}},"30018010":{"solarSystemId":30018010,"solarSystemName":"A.527.QDQ","location":{"x":8150000000000000000,"y":-23100000000000000,"z":28700000000000000000}},"30018011":{"solarSystemId":30018011,"solarSystemName":"H.897.X51","location":{"x":8400000000000000000,"y":-1360000000000000000,"z":29700000000000000000}},"30018012":{"solarSystemId":30018012,"solarSystemName":"S.2P6.YJS","location":{"x":7570000000000000000,"y":-389000000000000000,"z":29700000000000000000}},"30018013":{"solarSystemId":30018013,"solarSystemName":"Andakt","location":{"x":7410000000000000000,"y":-707000000000000000,"z":30100000000000000000}},"30018014":{"solarSystemId":30018014,"solarSystemName":"E.CD3.HWD","location":{"x":4020000000000000000,"y":-574000000000000000,"z":28900000000000000000}},"30018015":{"solarSystemId":30018015,"solarSystemName":"E.C44.F3D","location":{"x":4770000000000000000,"y":-545000000000000000,"z":29600000000000000000}},"30018016":{"solarSystemId":30018016,"solarSystemName":"E.JG3.MHE","location":{"x":4320000000000000000,"y":35800000000000000,"z":28900000000000000000}},"30018017":{"solarSystemId":30018017,"solarSystemName":"H.V24.RY8","location":{"x":4710000000000000000,"y":-319000000000000000,"z":29800000000000000000}},"30018018":{"solarSystemId":30018018,"solarSystemName":"R.GX3.BJ9","location":{"x":4420000000000000000,"y":-353000000000000000,"z":29400000000000000000}},"30018019":{"solarSystemId":30018019,"solarSystemName":"L.YQ7.FRH","location":{"x":8820000000000000000,"y":880000000000000000,"z":31000000000000000000}},"30018020":{"solarSystemId":30018020,"solarSystemName":"S.HD7.VV8","location":{"x":8640000000000000000,"y":-310000000000000000,"z":31100000000000000000}},"30018021":{"solarSystemId":30018021,"solarSystemName":"R.KB7.6QR","location":{"x":8900000000000000000,"y":491000000000000000,"z":31900000000000000000}},"30018022":{"solarSystemId":30018022,"solarSystemName":"E.QK6.3Q1","location":{"x":8020000000000000000,"y":58700000000000000,"z":31500000000000000000}},"30018023":{"solarSystemId":30018023,"solarSystemName":"H.GD7.PV7","location":{"x":8640000000000000000,"y":274000000000000000,"z":32000000000000000000}},"30018024":{"solarSystemId":30018024,"solarSystemName":"E.804.HVJ","location":{"x":-4620000000000000000,"y":-28800000000000000,"z":41800000000000000000}},"30018025":{"solarSystemId":30018025,"solarSystemName":"S.V72.NX6","location":{"x":-2580000000000000000,"y":246000000000000000,"z":40600000000000000000}},"30018026":{"solarSystemId":30018026,"solarSystemName":"R.X27.7B6","location":{"x":-8170000000000000000,"y":241000000000000000,"z":43800000000000000000}},"30018027":{"solarSystemId":30018027,"solarSystemName":"I.RN2.6C1","location":{"x":-2750000000000000000,"y":-54300000000000000,"z":40000000000000000000}},"30018028":{"solarSystemId":30018028,"solarSystemName":"H.R33.YB3","location":{"x":-3580000000000000000,"y":134000000000000000,"z":43400000000000000000}},"30018029":{"solarSystemId":30018029,"solarSystemName":"U.CN1.FSN","location":{"x":1600000000000000000,"y":444000000000000000,"z":43000000000000000000}},"30018030":{"solarSystemId":30018030,"solarSystemName":"R.YP4.W45","location":{"x":5290000000000000000,"y":-5940000000000000000,"z":34800000000000000000}},"30018031":{"solarSystemId":30018031,"solarSystemName":"N.5Q5.JQ2","location":{"x":6490000000000000000,"y":-95500000000000000,"z":37300000000000000000}},"30018032":{"solarSystemId":30018032,"solarSystemName":"H.T13.9C2","location":{"x":3510000000000000000,"y":-90400000000000000,"z":32000000000000000000}},"30018033":{"solarSystemId":30018033,"solarSystemName":"N.052.X5V","location":{"x":2490000000000000000,"y":691000000000000000,"z":34700000000000000000}},"30018034":{"solarSystemId":30018034,"solarSystemName":"E.XY4.3L7","location":{"x":5610000000000000000,"y":-268000000000000000,"z":37200000000000000000}},"30018035":{"solarSystemId":30018035,"solarSystemName":"R.Q93.1E5","location":{"x":3810000000000000000,"y":-6880000000000000000,"z":31300000000000000000}},"30018036":{"solarSystemId":30018036,"solarSystemName":"I.LN3.DL5","location":{"x":3910000000000000000,"y":-6290000000000000000,"z":31000000000000000000}},"30018037":{"solarSystemId":30018037,"solarSystemName":"H.DN6.J35","location":{"x":7370000000000000000,"y":-5900000000000000000,"z":32100000000000000000}},"30018038":{"solarSystemId":30018038,"solarSystemName":"I.PD3.XY5","location":{"x":4020000000000000000,"y":-6770000000000000000,"z":30900000000000000000}},"30018039":{"solarSystemId":30018039,"solarSystemName":"E.VD4.W35","location":{"x":5170000000000000000,"y":-5910000000000000000,"z":31800000000000000000}},"30018040":{"solarSystemId":30018040,"solarSystemName":"U.B42.X66","location":{"x":2480000000000000000,"y":-224000000000000000,"z":30000000000000000000}},"30018041":{"solarSystemId":30018041,"solarSystemName":"N.GL2.1W6","location":{"x":2840000000000000000,"y":-249000000000000000,"z":29000000000000000000}},"30018042":{"solarSystemId":30018042,"solarSystemName":"N.SY1.2Z7","location":{"x":2140000000000000000,"y":-284000000000000000,"z":29700000000000000000}},"30018043":{"solarSystemId":30018043,"solarSystemName":"S.GQ2.H7D","location":{"x":3050000000000000000,"y":-549000000000000000,"z":28600000000000000000}},"30018044":{"solarSystemId":30018044,"solarSystemName":"T.SCE.Z0D","location":{"x":1140000000000000000,"y":-541000000000000000,"z":29300000000000000000}},"30018045":{"solarSystemId":30018045,"solarSystemName":"Z:1N1T","location":{"x":-9970000000000000000,"y":-3280000000000000000,"z":13100000000000000000}},"30018046":{"solarSystemId":30018046,"solarSystemName":"G:3710","location":{"x":-9930000000000000000,"y":-4640000000000000000,"z":13500000000000000000}},"30018047":{"solarSystemId":30018047,"solarSystemName":"F:1016","location":{"x":-9870000000000000000,"y":-3580000000000000000,"z":13500000000000000000}},"30018048":{"solarSystemId":30018048,"solarSystemName":"Z:22LR","location":{"x":-9070000000000000000,"y":-3990000000000000000,"z":14300000000000000000}},"30018049":{"solarSystemId":30018049,"solarSystemName":"G:27SK","location":{"x":-9330000000000000000,"y":-3700000000000000000,"z":14000000000000000000}},"30018050":{"solarSystemId":30018050,"solarSystemName":"Z:1217","location":{"x":-9580000000000000000,"y":-2940000000000000000,"z":12700000000000000000}},"30018051":{"solarSystemId":30018051,"solarSystemName":"J:1VLK","location":{"x":-12100000000000000000,"y":-4960000000000000000,"z":10900000000000000000}},"30018052":{"solarSystemId":30018052,"solarSystemName":"B:17TV","location":{"x":-11400000000000000000,"y":-4850000000000000000,"z":11600000000000000000}},"30018053":{"solarSystemId":30018053,"solarSystemName":"F:2ERS","location":{"x":-11700000000000000000,"y":-4320000000000000000,"z":11600000000000000000}},"30018054":{"solarSystemId":30018054,"solarSystemName":"B:20V1","location":{"x":-12700000000000000000,"y":-3440000000000000000,"z":11200000000000000000}},"30018055":{"solarSystemId":30018055,"solarSystemName":"D:11SI","location":{"x":-12900000000000000000,"y":-6300000000000000000,"z":11600000000000000000}},"30018056":{"solarSystemId":30018056,"solarSystemName":"Y:139T","location":{"x":-11000000000000000000,"y":-6050000000000000000,"z":11700000000000000000}},"30018057":{"solarSystemId":30018057,"solarSystemName":"H:1031","location":{"x":-11100000000000000000,"y":-3620000000000000000,"z":12800000000000000000}},"30018058":{"solarSystemId":30018058,"solarSystemName":"J:2722","location":{"x":-11300000000000000000,"y":-3530000000000000000,"z":12000000000000000000}},"30018059":{"solarSystemId":30018059,"solarSystemName":"U:2T8S","location":{"x":-10600000000000000000,"y":-3770000000000000000,"z":11900000000000000000}},"30018060":{"solarSystemId":30018060,"solarSystemName":"J:27RS","location":{"x":-10400000000000000000,"y":-3380000000000000000,"z":13600000000000000000}},"30018061":{"solarSystemId":30018061,"solarSystemName":"F:180O","location":{"x":-11900000000000000000,"y":-3330000000000000000,"z":13400000000000000000}},"30018062":{"solarSystemId":30018062,"solarSystemName":"H:238A","location":{"x":-10200000000000000000,"y":-2970000000000000000,"z":12500000000000000000}},"30018063":{"solarSystemId":30018063,"solarSystemName":"G:OO9L","location":{"x":-9470000000000000000,"y":-4100000000000000000,"z":12100000000000000000}},"30018064":{"solarSystemId":30018064,"solarSystemName":"U:2OOE","location":{"x":-11000000000000000000,"y":-4380000000000000000,"z":13700000000000000000}},"30018065":{"solarSystemId":30018065,"solarSystemName":"Q:3082","location":{"x":-14600000000000000000,"y":-4160000000000000000,"z":11900000000000000000}},"30018066":{"solarSystemId":30018066,"solarSystemName":"D:1A7T","location":{"x":-13800000000000000000,"y":-3320000000000000000,"z":11000000000000000000}},"30018067":{"solarSystemId":30018067,"solarSystemName":"D:4L2I","location":{"x":-13800000000000000000,"y":-4280000000000000000,"z":11400000000000000000}},"30018068":{"solarSystemId":30018068,"solarSystemName":"P:1N2E","location":{"x":-13800000000000000000,"y":-4940000000000000000,"z":13900000000000000000}},"30018069":{"solarSystemId":30018069,"solarSystemName":"H:31N1","location":{"x":-13800000000000000000,"y":-3720000000000000000,"z":10900000000000000000}},"30018070":{"solarSystemId":30018070,"solarSystemName":"Z:1RSK","location":{"x":-14500000000000000000,"y":-3850000000000000000,"z":10900000000000000000}},"30018071":{"solarSystemId":30018071,"solarSystemName":"P:296A","location":{"x":-13800000000000000000,"y":-5070000000000000000,"z":13800000000000000000}},"30018072":{"solarSystemId":30018072,"solarSystemName":"D:3330","location":{"x":-14800000000000000000,"y":-3010000000000000000,"z":14000000000000000000}},"30018073":{"solarSystemId":30018073,"solarSystemName":"Z:2TRS","location":{"x":-14200000000000000000,"y":-6560000000000000000,"z":11800000000000000000}},"30018074":{"solarSystemId":30018074,"solarSystemName":"Q:25L8","location":{"x":-16100000000000000000,"y":-2830000000000000000,"z":13000000000000000000}},"30018075":{"solarSystemId":30018075,"solarSystemName":"P:2NVV","location":{"x":-12100000000000000000,"y":-7710000000000000000,"z":13800000000000000000}},"30018076":{"solarSystemId":30018076,"solarSystemName":"D:10A1","location":{"x":-15300000000000000000,"y":-2080000000000000000,"z":9600000000000000000}},"30018077":{"solarSystemId":30018077,"solarSystemName":"B:230O","location":{"x":-15800000000000000000,"y":-2750000000000000000,"z":10000000000000000000}},"30018078":{"solarSystemId":30018078,"solarSystemName":"B:14NA","location":{"x":-13600000000000000000,"y":-2170000000000000000,"z":10700000000000000000}},"30018079":{"solarSystemId":30018079,"solarSystemName":"U:1TN2","location":{"x":-15200000000000000000,"y":-2760000000000000000,"z":9100000000000000000}},"30018080":{"solarSystemId":30018080,"solarSystemName":"Y:2059","location":{"x":-15800000000000000000,"y":-2430000000000000000,"z":9460000000000000000}},"30018081":{"solarSystemId":30018081,"solarSystemName":"Y:36RO","location":{"x":-14900000000000000000,"y":-2770000000000000000,"z":8280000000000000000}},"30018082":{"solarSystemId":30018082,"solarSystemName":"P:3A2L","location":{"x":-14500000000000000000,"y":-2740000000000000000,"z":8420000000000000000}},"30018083":{"solarSystemId":30018083,"solarSystemName":"P:KTS3","location":{"x":-16900000000000000000,"y":-2490000000000000000,"z":10600000000000000000}},"30018084":{"solarSystemId":30018084,"solarSystemName":"B:2901","location":{"x":-17900000000000000000,"y":-2850000000000000000,"z":10700000000000000000}},"30018085":{"solarSystemId":30018085,"solarSystemName":"J:322E","location":{"x":-7290000000000000000,"y":-3350000000000000000,"z":10800000000000000000}},"30018086":{"solarSystemId":30018086,"solarSystemName":"U:S00I","location":{"x":-8540000000000000000,"y":-4630000000000000000,"z":11200000000000000000}},"30018087":{"solarSystemId":30018087,"solarSystemName":"G:1TR4","location":{"x":-8380000000000000000,"y":-2500000000000000000,"z":11800000000000000000}},"30018088":{"solarSystemId":30018088,"solarSystemName":"U:1KV7","location":{"x":-8220000000000000000,"y":-2820000000000000000,"z":11800000000000000000}},"30018089":{"solarSystemId":30018089,"solarSystemName":"M:1VEK","location":{"x":-7420000000000000000,"y":-2090000000000000000,"z":11000000000000000000}},"30018090":{"solarSystemId":30018090,"solarSystemName":"Z:28OA","location":{"x":-7940000000000000000,"y":-2320000000000000000,"z":11800000000000000000}},"30018091":{"solarSystemId":30018091,"solarSystemName":"G:1V1O","location":{"x":-7320000000000000000,"y":-3670000000000000000,"z":11700000000000000000}},"30018092":{"solarSystemId":30018092,"solarSystemName":"M:20I9","location":{"x":-8230000000000000000,"y":-8660000000000000000,"z":15400000000000000000}},"30018093":{"solarSystemId":30018093,"solarSystemName":"Y:1KSN","location":{"x":-9520000000000000000,"y":-7780000000000000000,"z":16300000000000000000}},"30018094":{"solarSystemId":30018094,"solarSystemName":"B:13R6","location":{"x":-9380000000000000000,"y":-7620000000000000000,"z":16000000000000000000}},"30018095":{"solarSystemId":30018095,"solarSystemName":"Q:12IE","location":{"x":-13300000000000000000,"y":-8490000000000000000,"z":15600000000000000000}},"30018096":{"solarSystemId":30018096,"solarSystemName":"D:3E8L","location":{"x":-13900000000000000000,"y":-7500000000000000000,"z":16600000000000000000}},"30018097":{"solarSystemId":30018097,"solarSystemName":"Q:1EI6","location":{"x":-9970000000000000000,"y":-5630000000000000000,"z":16100000000000000000}},"30018098":{"solarSystemId":30018098,"solarSystemName":"D.2MC.SP3","location":{"x":-19100000000000000000,"y":-129000000000000000,"z":19700000000000000000}},"30018099":{"solarSystemId":30018099,"solarSystemName":"T.VCC.239","location":{"x":-19000000000000000000,"y":-10200000000000000,"z":20800000000000000000}},"30018100":{"solarSystemId":30018100,"solarSystemName":"E.XMC.FS4","location":{"x":-19100000000000000000,"y":-156000000000000000,"z":19800000000000000000}},"30018101":{"solarSystemId":30018101,"solarSystemName":"D.RCD.LN2","location":{"x":-17900000000000000000,"y":86100000000000000,"z":19300000000000000000}},"30018102":{"solarSystemId":30018102,"solarSystemName":"N.2DC.HS8","location":{"x":-19000000000000000000,"y":300000000000000000,"z":19900000000000000000}},"30018103":{"solarSystemId":30018103,"solarSystemName":"A.7GR.K71","location":{"x":-15800000000000000000,"y":-1440000000000000000,"z":16700000000000000000}},"30018104":{"solarSystemId":30018104,"solarSystemName":"B.SRN.FN3","location":{"x":-14300000000000000000,"y":122000000000000000,"z":16700000000000000000}},"30018105":{"solarSystemId":30018105,"solarSystemName":"O.P1N.9W6","location":{"x":-13900000000000000000,"y":249000000000000000,"z":16400000000000000000}},"30018106":{"solarSystemId":30018106,"solarSystemName":"B.QRR.G1H","location":{"x":-15500000000000000000,"y":-867000000000000000,"z":18700000000000000000}},"30018107":{"solarSystemId":30018107,"solarSystemName":"M.80R.JZR","location":{"x":-15000000000000000000,"y":-501000000000000000,"z":17200000000000000000}},"30018108":{"solarSystemId":30018108,"solarSystemName":"C.92L.3X9","location":{"x":-16200000000000000000,"y":354000000000000000,"z":16700000000000000000}},"30018109":{"solarSystemId":30018109,"solarSystemName":"D.GBR.MPC","location":{"x":-15800000000000000000,"y":597000000000000000,"z":24400000000000000000}},"30018110":{"solarSystemId":30018110,"solarSystemName":"R.KSM.B77","location":{"x":-20000000000000000000,"y":261000000000000000,"z":25200000000000000000}},"30018111":{"solarSystemId":30018111,"solarSystemName":"R.F2M.H37","location":{"x":-19700000000000000000,"y":256000000000000000,"z":23800000000000000000}},"30018112":{"solarSystemId":30018112,"solarSystemName":"H.7SC.261","location":{"x":-18800000000000000000,"y":-1370000000000000000,"z":18600000000000000000}},"30018113":{"solarSystemId":30018113,"solarSystemName":"L.RQC.V2R","location":{"x":-19200000000000000000,"y":471000000000000000,"z":23200000000000000000}},"30018114":{"solarSystemId":30018114,"solarSystemName":"R.KFL.E69","location":{"x":-16900000000000000000,"y":-332000000000000000,"z":22100000000000000000}},"30018115":{"solarSystemId":30018115,"solarSystemName":"I.MND.VX5","location":{"x":-17700000000000000000,"y":-210000000000000000,"z":21800000000000000000}},"30018116":{"solarSystemId":30018116,"solarSystemName":"U.T9R.EZY","location":{"x":-15300000000000000000,"y":-1010000000000000000,"z":22200000000000000000}},"30018117":{"solarSystemId":30018117,"solarSystemName":"E.8EL.48M","location":{"x":-17300000000000000000,"y":-622000000000000000,"z":21900000000000000000}},"30018118":{"solarSystemId":30018118,"solarSystemName":"D.ZHL.E17","location":{"x":-17000000000000000000,"y":254000000000000000,"z":20900000000000000000}},"30018119":{"solarSystemId":30018119,"solarSystemName":"I.KVR.BEN","location":{"x":-15700000000000000000,"y":-468000000000000000,"z":18600000000000000000}},"30018120":{"solarSystemId":30018120,"solarSystemName":"A.KFT.SD8","location":{"x":-13500000000000000000,"y":-305000000000000000,"z":18900000000000000000}},"30018121":{"solarSystemId":30018121,"solarSystemName":"I.NCR.LK4","location":{"x":-15600000000000000000,"y":-178000000000000000,"z":19600000000000000000}},"30018122":{"solarSystemId":30018122,"solarSystemName":"H.Q2R.GJR","location":{"x":-15100000000000000000,"y":-497000000000000000,"z":20300000000000000000}},"30018123":{"solarSystemId":30018123,"solarSystemName":"I.YVL.SM5","location":{"x":-16900000000000000000,"y":-200000000000000000,"z":20800000000000000000}},"30018124":{"solarSystemId":30018124,"solarSystemName":"Theory","location":{"x":-15100000000000000000,"y":23000000000000000,"z":19800000000000000000}},"30018125":{"solarSystemId":30018125,"solarSystemName":"A.0J9.LTM","location":{"x":-11300000000000000000,"y":625000000000000000,"z":30600000000000000000}},"30018126":{"solarSystemId":30018126,"solarSystemName":"N.MZ8.KNT","location":{"x":-10300000000000000000,"y":411000000000000000,"z":31600000000000000000}},"30018127":{"solarSystemId":30018127,"solarSystemName":"I.XVL.DQS","location":{"x":-16900000000000000000,"y":383000000000000000,"z":33400000000000000000}},"30018128":{"solarSystemId":30018128,"solarSystemName":"L.WXN.4W2","location":{"x":-14800000000000000000,"y":105000000000000000,"z":29500000000000000000}},"30018129":{"solarSystemId":30018129,"solarSystemName":"S.YQL.0YS","location":{"x":-16900000000000000000,"y":391000000000000000,"z":31600000000000000000}},"30018130":{"solarSystemId":30018130,"solarSystemName":"I.S9S.KKV","location":{"x":-11900000000000000000,"y":719000000000000000,"z":30000000000000000000}},"30018131":{"solarSystemId":30018131,"solarSystemName":"U.V22.ZC6","location":{"x":2400000000000000000,"y":-235000000000000000,"z":22200000000000000000}},"30018132":{"solarSystemId":30018132,"solarSystemName":"E.462.WJS","location":{"x":2530000000000000000,"y":-389000000000000000,"z":22400000000000000000}},"30018133":{"solarSystemId":30018133,"solarSystemName":"R.ZS1.ZB8","location":{"x":1550000000000000000,"y":-314000000000000000,"z":22700000000000000000}},"30018134":{"solarSystemId":30018134,"solarSystemName":"N.JV1.9SC","location":{"x":1870000000000000000,"y":18400000000000000,"z":22200000000000000000}},"30018135":{"solarSystemId":30018135,"solarSystemName":"L.F32.L35","location":{"x":2440000000000000000,"y":184000000000000000,"z":21900000000000000000}},"30018136":{"solarSystemId":30018136,"solarSystemName":"I.BB1.RC5","location":{"x":1970000000000000000,"y":-199000000000000000,"z":22500000000000000000}},"30018137":{"solarSystemId":30018137,"solarSystemName":"Eimur","location":{"x":-3090000000000000000,"y":-277000000000000000,"z":23700000000000000000}},"30018138":{"solarSystemId":30018138,"solarSystemName":"N.BZV.JMM","location":{"x":-717000000000000000,"y":-633000000000000000,"z":24600000000000000000}},"30018139":{"solarSystemId":30018139,"solarSystemName":"E.912.0Y2","location":{"x":-2350000000000000000,"y":-102000000000000000,"z":19800000000000000000}},"30018140":{"solarSystemId":30018140,"solarSystemName":"N.2VL.E1T","location":{"x":-526000000000000000,"y":-399000000000000000,"z":21700000000000000000}},"30018141":{"solarSystemId":30018141,"solarSystemName":"E.GX1.RE3","location":{"x":-2120000000000000000,"y":-143000000000000000,"z":19500000000000000000}},"30018142":{"solarSystemId":30018142,"solarSystemName":"N.DGS.8CN","location":{"x":387000000000000000,"y":451000000000000000,"z":24100000000000000000}},"30018143":{"solarSystemId":30018143,"solarSystemName":"R.K12.RQR","location":{"x":-74300000000000000,"y":15400000000000000,"z":23500000000000000000}},"30018144":{"solarSystemId":30018144,"solarSystemName":"T.89N.9JC","location":{"x":443000000000000000,"y":-605000000000000000,"z":25100000000000000000}},"30018145":{"solarSystemId":30018145,"solarSystemName":"R.V29.1Q3","location":{"x":-327000000000000000,"y":-131000000000000000,"z":23600000000000000000}},"30018146":{"solarSystemId":30018146,"solarSystemName":"H.028.B78","location":{"x":291000000000000000,"y":-297000000000000000,"z":25000000000000000000}},"30018147":{"solarSystemId":30018147,"solarSystemName":"R.0B3.EZB","location":{"x":-4250000000000000000,"y":-825000000000000000,"z":25300000000000000000}},"30018148":{"solarSystemId":30018148,"solarSystemName":"R.N14.6Z1","location":{"x":-4660000000000000000,"y":-67800000000000000,"z":29600000000000000000}},"30018149":{"solarSystemId":30018149,"solarSystemName":"H.6R3.QYV","location":{"x":-3930000000000000000,"y":22400000000000000,"z":32000000000000000000}},"30018150":{"solarSystemId":30018150,"solarSystemName":"L.MM2.ME1","location":{"x":-2940000000000000000,"y":-71500000000000000,"z":24000000000000000000}},"30018151":{"solarSystemId":30018151,"solarSystemName":"T.N14.LL1","location":{"x":-4660000000000000000,"y":52300000000000000,"z":29300000000000000000}},"30018152":{"solarSystemId":30018152,"solarSystemName":"N.GT2.3BH","location":{"x":85300000000000000,"y":-890000000000000000,"z":22000000000000000000}},"30018153":{"solarSystemId":30018153,"solarSystemName":"T.MWW.3PQ","location":{"x":1080000000000000000,"y":-741000000000000000,"z":20900000000000000000}},"30018154":{"solarSystemId":30018154,"solarSystemName":"H.131.P6J","location":{"x":1260000000000000000,"y":-908000000000000000,"z":20100000000000000000}},"30018155":{"solarSystemId":30018155,"solarSystemName":"E.G86.KD2","location":{"x":226000000000000000,"y":90000000000000000,"z":19800000000000000000}},"30018156":{"solarSystemId":30018156,"solarSystemName":"R.NBN.PHL","location":{"x":458000000000000000,"y":-532000000000000000,"z":20000000000000000000}},"30018157":{"solarSystemId":30018157,"solarSystemName":"S.MC8.P8N","location":{"x":307000000000000000,"y":-442000000000000000,"z":21400000000000000000}},"30018158":{"solarSystemId":30018158,"solarSystemName":"A.SP1.5BS","location":{"x":1810000000000000000,"y":-385000000000000000,"z":22800000000000000000}},"30018159":{"solarSystemId":30018159,"solarSystemName":"U.YB1.8K2","location":{"x":1980000000000000000,"y":-3400000000000000000,"z":23200000000000000000}},"30018160":{"solarSystemId":30018160,"solarSystemName":"R.YQX.ZB2","location":{"x":960000000000000000,"y":-3130000000000000000,"z":22600000000000000000}},"30018161":{"solarSystemId":30018161,"solarSystemName":"H.0V1.BKT","location":{"x":1840000000000000000,"y":-431000000000000000,"z":23000000000000000000}},"30018162":{"solarSystemId":30018162,"solarSystemName":"H.VJ2.082","location":{"x":3230000000000000000,"y":-2590000000000000000,"z":23500000000000000000}},"30018163":{"solarSystemId":30018163,"solarSystemName":"A.YQ4.FQ1","location":{"x":-5360000000000000000,"y":-59300000000000000,"z":22200000000000000000}},"30018164":{"solarSystemId":30018164,"solarSystemName":"N.LJ6.K8K","location":{"x":-7830000000000000000,"y":-1090000000000000000,"z":23100000000000000000}},"30018165":{"solarSystemId":30018165,"solarSystemName":"D.9V5.JN1","location":{"x":-6460000000000000000,"y":50400000000000000,"z":23700000000000000000}},"30018166":{"solarSystemId":30018166,"solarSystemName":"A.0M6.KMF","location":{"x":-7530000000000000000,"y":-777000000000000000,"z":23300000000000000000}},"30018167":{"solarSystemId":30018167,"solarSystemName":"N.FC6.MM6","location":{"x":-7520000000000000000,"y":-236000000000000000,"z":23600000000000000000}},"30018168":{"solarSystemId":30018168,"solarSystemName":"N.KK5.SM2","location":{"x":-6880000000000000000,"y":91600000000000000,"z":27000000000000000000}},"30018169":{"solarSystemId":30018169,"solarSystemName":"T.NZ4.9JB","location":{"x":-5630000000000000000,"y":-821000000000000000,"z":25300000000000000000}},"30018170":{"solarSystemId":30018170,"solarSystemName":"E.QP6.YF2","location":{"x":-7590000000000000000,"y":96700000000000000,"z":25700000000000000000}},"30018171":{"solarSystemId":30018171,"solarSystemName":"E.0G5.7LB","location":{"x":-6590000000000000000,"y":-809000000000000000,"z":25800000000000000000}},"30018172":{"solarSystemId":30018172,"solarSystemName":"N.4Z4.5GW","location":{"x":-5630000000000000000,"y":-1070000000000000000,"z":25500000000000000000}},"30018173":{"solarSystemId":30018173,"solarSystemName":"A.GN7.709","location":{"x":-8530000000000000000,"y":325000000000000000,"z":24900000000000000000}},"30018174":{"solarSystemId":30018174,"solarSystemName":"N.407.7V9","location":{"x":-8080000000000000000,"y":-346000000000000000,"z":21400000000000000000}},"30018175":{"solarSystemId":30018175,"solarSystemName":"U.5Q8.29D","location":{"x":-9950000000000000000,"y":551000000000000000,"z":24800000000000000000}},"30018176":{"solarSystemId":30018176,"solarSystemName":"E.EH3.52N","location":{"x":-4360000000000000000,"y":-435000000000000000,"z":24800000000000000000}},"30018177":{"solarSystemId":30018177,"solarSystemName":"D.KN4.6X3","location":{"x":-5080000000000000000,"y":-138000000000000000,"z":26800000000000000000}},"30018178":{"solarSystemId":30018178,"solarSystemName":"A.EK7.Z1C","location":{"x":-9190000000000000000,"y":579000000000000000,"z":37100000000000000000}},"30018179":{"solarSystemId":30018179,"solarSystemName":"H.2N5.5FN","location":{"x":-6200000000000000000,"y":456000000000000000,"z":35500000000000000000}},"30018180":{"solarSystemId":30018180,"solarSystemName":"D.TF6.Z3R","location":{"x":-7690000000000000000,"y":473000000000000000,"z":32600000000000000000}},"30018181":{"solarSystemId":30018181,"solarSystemName":"H.CP7.NRY","location":{"x":-8740000000000000000,"y":988000000000000000,"z":35800000000000000000}},"30018182":{"solarSystemId":30018182,"solarSystemName":"E.E94.6D8","location":{"x":-4970000000000000000,"y":305000000000000000,"z":34300000000000000000}},"30018183":{"solarSystemId":30018183,"solarSystemName":"D.913.TH8","location":{"x":-3510000000000000000,"y":-10100000000000000000,"z":20800000000000000000}},"30018184":{"solarSystemId":30018184,"solarSystemName":"S.ZE4.EP8","location":{"x":-180000000000000000,"y":-9910000000000000000,"z":23900000000000000000}},"30018185":{"solarSystemId":30018185,"solarSystemName":"S.EQ6.8C7","location":{"x":240000000000000000,"y":-8660000000000000000,"z":23900000000000000000}},"30018186":{"solarSystemId":30018186,"solarSystemName":"H.HJ2.949","location":{"x":-3230000000000000000,"y":-10500000000000000000,"z":24800000000000000000}},"30018187":{"solarSystemId":30018187,"solarSystemName":"I.T23.MX8","location":{"x":-3540000000000000000,"y":-10200000000000000000,"z":22100000000000000000}},"30018188":{"solarSystemId":30018188,"solarSystemName":"A.04G.8C5","location":{"x":-833000000000000000,"y":-6350000000000000000,"z":21300000000000000000}},"30018189":{"solarSystemId":30018189,"solarSystemName":"I.J46.1N6","location":{"x":-7090000000000000000,"y":-7350000000000000000,"z":21800000000000000000}},"30018190":{"solarSystemId":30018190,"solarSystemName":"H.JQ3.P25","location":{"x":-4210000000000000000,"y":-5860000000000000000,"z":20300000000000000000}},"30018191":{"solarSystemId":30018191,"solarSystemName":"R.CM5.TB5","location":{"x":-6400000000000000000,"y":-6570000000000000000,"z":19300000000000000000}},"30018192":{"solarSystemId":30018192,"solarSystemName":"A.DM5.575","location":{"x":-6400000000000000000,"y":-6020000000000000000,"z":20400000000000000000}},"30018193":{"solarSystemId":30018193,"solarSystemName":"A.3Q5.5Y5","location":{"x":-6490000000000000000,"y":-6740000000000000000,"z":20600000000000000000}},"30018194":{"solarSystemId":30018194,"solarSystemName":"S.TQ4.F87","location":{"x":-5340000000000000000,"y":-8380000000000000000,"z":22300000000000000000}},"30018195":{"solarSystemId":30018195,"solarSystemName":"T.0V5.SW7","location":{"x":-6450000000000000000,"y":-9130000000000000000,"z":21600000000000000000}},"30018196":{"solarSystemId":30018196,"solarSystemName":"H.VN3.SG8","location":{"x":-3910000000000000000,"y":-10100000000000000000,"z":22900000000000000000}},"30018197":{"solarSystemId":30018197,"solarSystemName":"E.965.096","location":{"x":-5990000000000000000,"y":-7240000000000000000,"z":23400000000000000000}},"30018198":{"solarSystemId":30018198,"solarSystemName":"Vensl","location":{"x":-5500000000000000000,"y":-8190000000000000000,"z":21200000000000000000}},"30018199":{"solarSystemId":30018199,"solarSystemName":"S.5X6.YY4","location":{"x":-7860000000000000000,"y":-5620000000000000000,"z":18100000000000000000}},"30018200":{"solarSystemId":30018200,"solarSystemName":"E.7H6.R67","location":{"x":-7790000000000000000,"y":-8300000000000000000,"z":18100000000000000000}},"30018201":{"solarSystemId":30018201,"solarSystemName":"A.807.Y46","location":{"x":-8080000000000000000,"y":-7090000000000000000,"z":18200000000000000000}},"30018202":{"solarSystemId":30018202,"solarSystemName":"A.5D7.9V5","location":{"x":-8620000000000000000,"y":-6460000000000000000,"z":19300000000000000000}},"30018203":{"solarSystemId":30018203,"solarSystemName":"E.QE7.X86","location":{"x":-9210000000000000000,"y":-7240000000000000000,"z":18600000000000000000}},"30018204":{"solarSystemId":30018204,"solarSystemName":"I.CT8.PS6","location":{"x":-9640000000000000000,"y":-7300000000000000000,"z":19400000000000000000}},"30018205":{"solarSystemId":30018205,"solarSystemName":"R.919.PR8","location":{"x":-10400000000000000000,"y":-9710000000000000000,"z":19400000000000000000}},"30018206":{"solarSystemId":30018206,"solarSystemName":"N.0J8.W76","location":{"x":-10100000000000000000,"y":-7200000000000000000,"z":20200000000000000000}},"30018207":{"solarSystemId":30018207,"solarSystemName":"I.038.9R7","location":{"x":-9330000000000000000,"y":-8550000000000000000,"z":18000000000000000000}},"30018208":{"solarSystemId":30018208,"solarSystemName":"R.H29.VS6","location":{"x":-10500000000000000000,"y":-7300000000000000000,"z":21000000000000000000}},"30018209":{"solarSystemId":30018209,"solarSystemName":"S.X38.P16","location":{"x":-9360000000000000000,"y":-6970000000000000000,"z":19000000000000000000}},"30018210":{"solarSystemId":30018210,"solarSystemName":"R.P65.7S7","location":{"x":-6000000000000000000,"y":-8440000000000000000,"z":17500000000000000000}},"30018211":{"solarSystemId":30018211,"solarSystemName":"A.375.269","location":{"x":-6020000000000000000,"y":-10600000000000000000,"z":18800000000000000000}},"30018212":{"solarSystemId":30018212,"solarSystemName":"D.LH6.V98","location":{"x":-7800000000000000000,"y":-9570000000000000000,"z":18200000000000000000}},"30018213":{"solarSystemId":30018213,"solarSystemName":"E.XE6.5M8","location":{"x":-8060000000000000000,"y":-9840000000000000000,"z":19200000000000000000}},"30018214":{"solarSystemId":30018214,"solarSystemName":"E.346.P89","location":{"x":-7070000000000000000,"y":-10700000000000000000,"z":19100000000000000000}},"30018215":{"solarSystemId":30018215,"solarSystemName":"U:3OS9","location":{"x":2810000000000000000,"y":-12100000000000000000,"z":-3930000000000000000}},"30018216":{"solarSystemId":30018216,"solarSystemName":"F:31EA","location":{"x":4200000000000000000,"y":-12100000000000000000,"z":-4800000000000000000}},"30018217":{"solarSystemId":30018217,"solarSystemName":"Q:2S2L","location":{"x":-596000000000000000,"y":-10900000000000000000,"z":-3650000000000000000}},"30018218":{"solarSystemId":30018218,"solarSystemName":"G:2SNI","location":{"x":1870000000000000000,"y":-11100000000000000000,"z":-2090000000000000000}},"30018219":{"solarSystemId":30018219,"solarSystemName":"D:3T7L","location":{"x":1580000000000000000,"y":-10600000000000000000,"z":-1850000000000000000}},"30018220":{"solarSystemId":30018220,"solarSystemName":"Y:3TI1","location":{"x":-2460000000000000000,"y":-9920000000000000000,"z":685000000000000000}},"30018221":{"solarSystemId":30018221,"solarSystemName":"U:2II4","location":{"x":-4340000000000000000,"y":-9310000000000000000,"z":1460000000000000000}},"30018222":{"solarSystemId":30018222,"solarSystemName":"Z:33VI","location":{"x":-2970000000000000000,"y":-9220000000000000000,"z":1590000000000000000}},"30018223":{"solarSystemId":30018223,"solarSystemName":"F:35T6","location":{"x":-2850000000000000000,"y":-9110000000000000000,"z":1960000000000000000}},"30018224":{"solarSystemId":30018224,"solarSystemName":"Z:3I97","location":{"x":-2950000000000000000,"y":-10200000000000000000,"z":1240000000000000000}},"30018225":{"solarSystemId":30018225,"solarSystemName":"P:37RR","location":{"x":-3090000000000000000,"y":-12800000000000000000,"z":-519000000000000000}},"30018226":{"solarSystemId":30018226,"solarSystemName":"Q:3AVS","location":{"x":-1300000000000000000,"y":-11400000000000000000,"z":-1540000000000000000}},"30018227":{"solarSystemId":30018227,"solarSystemName":"Z:36K9","location":{"x":-4300000000000000000,"y":-11900000000000000000,"z":-2180000000000000000}},"30018228":{"solarSystemId":30018228,"solarSystemName":"B:382S","location":{"x":-2190000000000000000,"y":-11400000000000000000,"z":-2610000000000000000}},"30018229":{"solarSystemId":30018229,"solarSystemName":"F:3N2A","location":{"x":-3110000000000000000,"y":-12000000000000000000,"z":1080000000000000000}},"30018230":{"solarSystemId":30018230,"solarSystemName":"U:302N","location":{"x":-4340000000000000000,"y":-11100000000000000000,"z":4280000000000000000}},"30018231":{"solarSystemId":30018231,"solarSystemName":"M:31RE","location":{"x":-4120000000000000000,"y":-10300000000000000000,"z":4190000000000000000}},"30018232":{"solarSystemId":30018232,"solarSystemName":"G:3AIK","location":{"x":-4870000000000000000,"y":-8930000000000000000,"z":5030000000000000000}},"30018233":{"solarSystemId":30018233,"solarSystemName":"D:36EI","location":{"x":-4730000000000000000,"y":-9230000000000000000,"z":3130000000000000000}},"30018234":{"solarSystemId":30018234,"solarSystemName":"F:1EVO","location":{"x":-3610000000000000000,"y":-8990000000000000000,"z":3890000000000000000}},"30018235":{"solarSystemId":30018235,"solarSystemName":"M:3N99","location":{"x":-4980000000000000000,"y":-11500000000000000000,"z":4370000000000000000}},"30018236":{"solarSystemId":30018236,"solarSystemName":"H:3TA4","location":{"x":-5720000000000000000,"y":-12200000000000000000,"z":4050000000000000000}},"30018237":{"solarSystemId":30018237,"solarSystemName":"U:2OTV","location":{"x":-7320000000000000000,"y":-11700000000000000000,"z":2010000000000000000}},"30018238":{"solarSystemId":30018238,"solarSystemName":"M:2L01","location":{"x":-7570000000000000000,"y":-11400000000000000000,"z":3870000000000000000}},"30018239":{"solarSystemId":30018239,"solarSystemName":"G:30LN","location":{"x":-6270000000000000000,"y":-10400000000000000000,"z":1940000000000000000}},"30018240":{"solarSystemId":30018240,"solarSystemName":"ET0-1K8","location":{"x":-31200000000000000000,"y":283000000000000000,"z":24900000000000000000}},"30018241":{"solarSystemId":30018241,"solarSystemName":"ORV-3J8","location":{"x":-31500000000000000000,"y":237000000000000000,"z":23700000000000000000}},"30018242":{"solarSystemId":30018242,"solarSystemName":"O0L-BN8","location":{"x":-34400000000000000000,"y":-274000000000000000,"z":26600000000000000000}},"30018243":{"solarSystemId":30018243,"solarSystemName":"OQV-6D8","location":{"x":-29600000000000000000,"y":832000000000000000,"z":21200000000000000000}},"30018244":{"solarSystemId":30018244,"solarSystemName":"UN8-HJ8","location":{"x":-31800000000000000000,"y":389000000000000000,"z":23900000000000000000}},"30018245":{"solarSystemId":30018245,"solarSystemName":"E6C-KL8","location":{"x":-32200000000000000000,"y":1570000000000000000,"z":26000000000000000000}},"30018246":{"solarSystemId":30018246,"solarSystemName":"OHJ-CL8","location":{"x":-31900000000000000000,"y":-441000000000000000,"z":25900000000000000000}},"30018247":{"solarSystemId":30018247,"solarSystemName":"OCG-5L8","location":{"x":-32200000000000000000,"y":536000000000000000,"z":25600000000000000000}},"30018248":{"solarSystemId":30018248,"solarSystemName":"EC8-4N8","location":{"x":-32000000000000000000,"y":446000000000000000,"z":27900000000000000000}},"30018249":{"solarSystemId":30018249,"solarSystemName":"IPG-1N8","location":{"x":-31200000000000000000,"y":532000000000000000,"z":28200000000000000000}},"30018250":{"solarSystemId":30018250,"solarSystemName":"EJ5-PS8","location":{"x":-36500000000000000000,"y":35700000000000000,"z":30800000000000000000}},"30018251":{"solarSystemId":30018251,"solarSystemName":"U1S-2R8","location":{"x":-36400000000000000000,"y":125000000000000000,"z":28300000000000000000}},"30018252":{"solarSystemId":30018252,"solarSystemName":"Enoch","location":{"x":-34900000000000000000,"y":-110000000000000000,"z":27100000000000000000}},"30018253":{"solarSystemId":30018253,"solarSystemName":"EVQ-NR8","location":{"x":-36900000000000000000,"y":188000000000000000,"z":28800000000000000000}},"30018254":{"solarSystemId":30018254,"solarSystemName":"ESH-QS8","location":{"x":-37700000000000000000,"y":241000000000000000,"z":30000000000000000000}},"30018255":{"solarSystemId":30018255,"solarSystemName":"ECF-RT8","location":{"x":-38100000000000000000,"y":64400000000000000,"z":31900000000000000000}},"30018256":{"solarSystemId":30018256,"solarSystemName":"E4B-NK8","location":{"x":-30700000000000000000,"y":240000000000000000,"z":26000000000000000000}},"30018257":{"solarSystemId":30018257,"solarSystemName":"ERH-1K8","location":{"x":-22500000000000000000,"y":8910000000000000,"z":28900000000000000000}},"30018258":{"solarSystemId":30018258,"solarSystemName":"I7D-RG8","location":{"x":-27800000000000000000,"y":894000000000000000,"z":24500000000000000000}},"30018259":{"solarSystemId":30018259,"solarSystemName":"AGB-JM8","location":{"x":-24000000000000000000,"y":438000000000000000,"z":30900000000000000000}},"30018260":{"solarSystemId":30018260,"solarSystemName":"I0F-0K8","location":{"x":-25400000000000000000,"y":743000000000000000,"z":27800000000000000000}},"30018261":{"solarSystemId":30018261,"solarSystemName":"OQT-0R8","location":{"x":-40000000000000000000,"y":-554000000000000000,"z":25200000000000000000}},"30018262":{"solarSystemId":30018262,"solarSystemName":"IDG-CS8","location":{"x":-43600000000000000000,"y":-195000000000000000,"z":24300000000000000000}},"30018263":{"solarSystemId":30018263,"solarSystemName":"UQT-PR8","location":{"x":-42400000000000000000,"y":-277000000000000000,"z":24300000000000000000}},"30018264":{"solarSystemId":30018264,"solarSystemName":"AL6-DV8","location":{"x":-43100000000000000000,"y":661000000000000000,"z":29200000000000000000}},"30018265":{"solarSystemId":30018265,"solarSystemName":"U2S-CT8","location":{"x":-43900000000000000000,"y":64200000000000000,"z":26100000000000000000}},"30018266":{"solarSystemId":30018266,"solarSystemName":"EKK-CQ8","location":{"x":-29800000000000000000,"y":-25600000000000000,"z":31400000000000000000}},"30018267":{"solarSystemId":30018267,"solarSystemName":"A1F-DQ8","location":{"x":-31000000000000000000,"y":445000000000000000,"z":30800000000000000000}},"30018268":{"solarSystemId":30018268,"solarSystemName":"I0L-7S8","location":{"x":-29200000000000000000,"y":216000000000000000,"z":34100000000000000000}},"30018269":{"solarSystemId":30018269,"solarSystemName":"EGH-NR8","location":{"x":-29400000000000000000,"y":-17700000000000000,"z":33200000000000000000}},"30018270":{"solarSystemId":30018270,"solarSystemName":"E5P-FP8","location":{"x":-30800000000000000000,"y":260000000000000000,"z":29900000000000000000}},"30018271":{"solarSystemId":30018271,"solarSystemName":"EC8-1S8","location":{"x":-15900000000000000000,"y":95000000000000000,"z":37300000000000000000}},"30018272":{"solarSystemId":30018272,"solarSystemName":"A5B-GT8","location":{"x":-16800000000000000000,"y":365000000000000000,"z":39400000000000000000}},"30018273":{"solarSystemId":30018273,"solarSystemName":"ISV-DT8","location":{"x":-21000000000000000000,"y":143000000000000000,"z":38600000000000000000}},"30018274":{"solarSystemId":30018274,"solarSystemName":"IT5-RT8","location":{"x":-16900000000000000000,"y":767000000000000000,"z":40000000000000000000}},"30018275":{"solarSystemId":30018275,"solarSystemName":"O0R-2V8","location":{"x":-21700000000000000000,"y":218000000000000000,"z":39600000000000000000}},"30018276":{"solarSystemId":30018276,"solarSystemName":"I54-F09","location":{"x":-25000000000000000000,"y":150000000000000000,"z":41400000000000000000}},"30018277":{"solarSystemId":30018277,"solarSystemName":"EQT-HS8","location":{"x":-24200000000000000000,"y":433000000000000000,"z":36400000000000000000}},"30018278":{"solarSystemId":30018278,"solarSystemName":"O7Q-MS8","location":{"x":-24300000000000000000,"y":218000000000000000,"z":36500000000000000000}},"30018279":{"solarSystemId":30018279,"solarSystemName":"EKC-BS8","location":{"x":-25200000000000000000,"y":-68100000000000000,"z":35800000000000000000}},"30018280":{"solarSystemId":30018280,"solarSystemName":"AHH-K09","location":{"x":-22800000000000000000,"y":435000000000000000,"z":42500000000000000000}},"30018281":{"solarSystemId":30018281,"solarSystemName":"H:2RNL","location":{"x":3890000000000000000,"y":-6860000000000000000,"z":-7450000000000000000}},"30018282":{"solarSystemId":30018282,"solarSystemName":"F:3S5A","location":{"x":5610000000000000000,"y":-8490000000000000000,"z":-7670000000000000000}},"30018283":{"solarSystemId":30018283,"solarSystemName":"B:3A92","location":{"x":2380000000000000000,"y":-10100000000000000000,"z":-8000000000000000000}},"30018284":{"solarSystemId":30018284,"solarSystemName":"U:2O8T","location":{"x":4280000000000000000,"y":-7540000000000000000,"z":-10000000000000000000}},"30018285":{"solarSystemId":30018285,"solarSystemName":"G:2TR9","location":{"x":6310000000000000000,"y":-7980000000000000000,"z":-8480000000000000000}},"30018286":{"solarSystemId":30018286,"solarSystemName":"U:2VA9","location":{"x":1710000000000000000,"y":-7500000000000000000,"z":-5890000000000000000}},"30018287":{"solarSystemId":30018287,"solarSystemName":"P:32R0","location":{"x":249000000000000000,"y":-7420000000000000000,"z":-9660000000000000000}},"30018288":{"solarSystemId":30018288,"solarSystemName":"M:35R7","location":{"x":726000000000000000,"y":-6960000000000000000,"z":-7760000000000000000}},"30018289":{"solarSystemId":30018289,"solarSystemName":"G:34L2","location":{"x":-705000000000000000,"y":-5710000000000000000,"z":-8880000000000000000}},"30018290":{"solarSystemId":30018290,"solarSystemName":"Q:2R2S","location":{"x":-102000000000000000,"y":-6250000000000000000,"z":-5840000000000000000}},"30018291":{"solarSystemId":30018291,"solarSystemName":"B:2E54","location":{"x":9540000000000000000,"y":-9140000000000000000,"z":-12800000000000000000}},"30018292":{"solarSystemId":30018292,"solarSystemName":"H:3TNS","location":{"x":6420000000000000000,"y":-10500000000000000000,"z":-12600000000000000000}},"30018293":{"solarSystemId":30018293,"solarSystemName":"Q:234K","location":{"x":8250000000000000000,"y":-8500000000000000000,"z":-11800000000000000000}},"30018294":{"solarSystemId":30018294,"solarSystemName":"F:106O","location":{"x":10300000000000000000,"y":-6420000000000000000,"z":-11000000000000000000}},"30018295":{"solarSystemId":30018295,"solarSystemName":"Y:KTON","location":{"x":9370000000000000000,"y":-7670000000000000000,"z":-13000000000000000000}},"30018296":{"solarSystemId":30018296,"solarSystemName":"Z:36TK","location":{"x":-2700000000000000000,"y":-7780000000000000000,"z":-7910000000000000000}},"30018297":{"solarSystemId":30018297,"solarSystemName":"U:37R1","location":{"x":-2140000000000000000,"y":-6680000000000000000,"z":-5510000000000000000}},"30018298":{"solarSystemId":30018298,"solarSystemName":"F:3R75","location":{"x":-2860000000000000000,"y":-6570000000000000000,"z":-7430000000000000000}},"30018299":{"solarSystemId":30018299,"solarSystemName":"F:3950","location":{"x":-1550000000000000000,"y":-6140000000000000000,"z":-5950000000000000000}},"30018300":{"solarSystemId":30018300,"solarSystemName":"M:36RI","location":{"x":-1860000000000000000,"y":-5360000000000000000,"z":-9580000000000000000}},"30018301":{"solarSystemId":30018301,"solarSystemName":"Z:385S","location":{"x":5180000000000000000,"y":-5730000000000000000,"z":-14700000000000000000}},"30018302":{"solarSystemId":30018302,"solarSystemName":"H:2R18","location":{"x":4960000000000000000,"y":-11700000000000000000,"z":-11200000000000000000}},"30018303":{"solarSystemId":30018303,"solarSystemName":"H:3V2N","location":{"x":4570000000000000000,"y":-9290000000000000000,"z":-14800000000000000000}},"30018304":{"solarSystemId":30018304,"solarSystemName":"Y:3IER","location":{"x":6630000000000000000,"y":-10800000000000000000,"z":-10700000000000000000}},"30018305":{"solarSystemId":30018305,"solarSystemName":"D:261O","location":{"x":4160000000000000000,"y":-5980000000000000000,"z":-12100000000000000000}},"30018306":{"solarSystemId":30018306,"solarSystemName":"D:3EE9","location":{"x":1590000000000000000,"y":-7420000000000000000,"z":-5230000000000000000}},"30018307":{"solarSystemId":30018307,"solarSystemName":"P:3E50","location":{"x":-125000000000000000,"y":-9560000000000000000,"z":-4510000000000000000}},"30018308":{"solarSystemId":30018308,"solarSystemName":"F:2A58","location":{"x":896000000000000000,"y":-8970000000000000000,"z":-5410000000000000000}},"30018309":{"solarSystemId":30018309,"solarSystemName":"J:2V42","location":{"x":460000000000000000,"y":-7490000000000000000,"z":-5490000000000000000}},"30018310":{"solarSystemId":30018310,"solarSystemName":"H:3T89","location":{"x":308000000000000000,"y":-7390000000000000000,"z":-5250000000000000000}},"30018311":{"solarSystemId":30018311,"solarSystemName":"M:2RL3","location":{"x":-5890000000000000000,"y":1780000000000000000,"z":4250000000000000000}},"30018312":{"solarSystemId":30018312,"solarSystemName":"G:2REO","location":{"x":-6320000000000000000,"y":1870000000000000000,"z":6600000000000000000}},"30018313":{"solarSystemId":30018313,"solarSystemName":"H:37VL","location":{"x":-4920000000000000000,"y":1980000000000000000,"z":4060000000000000000}},"30018314":{"solarSystemId":30018314,"solarSystemName":"B:2ILN","location":{"x":-5800000000000000000,"y":2440000000000000000,"z":6630000000000000000}},"30018315":{"solarSystemId":30018315,"solarSystemName":"Z:3EOT","location":{"x":-4500000000000000000,"y":2360000000000000000,"z":4810000000000000000}},"30018316":{"solarSystemId":30018316,"solarSystemName":"Q:2S4I","location":{"x":-4800000000000000000,"y":2800000000000000000,"z":6320000000000000000}},"30018317":{"solarSystemId":30018317,"solarSystemName":"P:3097","location":{"x":-6200000000000000000,"y":1930000000000000000,"z":6460000000000000000}},"30018318":{"solarSystemId":30018318,"solarSystemName":"M:3E5E","location":{"x":-5360000000000000000,"y":2740000000000000000,"z":5280000000000000000}},"30018319":{"solarSystemId":30018319,"solarSystemName":"Y:31SO","location":{"x":-5740000000000000000,"y":2680000000000000000,"z":5780000000000000000}},"30018320":{"solarSystemId":30018320,"solarSystemName":"Z:3NEN","location":{"x":-4590000000000000000,"y":2400000000000000000,"z":5570000000000000000}},"30018321":{"solarSystemId":30018321,"solarSystemName":"M:2KS6","location":{"x":-6030000000000000000,"y":4150000000000000000,"z":5170000000000000000}},"30018322":{"solarSystemId":30018322,"solarSystemName":"U:2NO1","location":{"x":-6780000000000000000,"y":4360000000000000000,"z":3620000000000000000}},"30018323":{"solarSystemId":30018323,"solarSystemName":"D:34I8","location":{"x":-6090000000000000000,"y":4660000000000000000,"z":5060000000000000000}},"30018324":{"solarSystemId":30018324,"solarSystemName":"Q:2ERV","location":{"x":-4720000000000000000,"y":4200000000000000000,"z":5310000000000000000}},"30018325":{"solarSystemId":30018325,"solarSystemName":"Z:3888","location":{"x":-7190000000000000000,"y":4300000000000000000,"z":3700000000000000000}},"30018326":{"solarSystemId":30018326,"solarSystemName":"Y:3EER","location":{"x":-7620000000000000000,"y":4870000000000000000,"z":4270000000000000000}},"30018327":{"solarSystemId":30018327,"solarSystemName":"H:2OT9","location":{"x":-7180000000000000000,"y":4960000000000000000,"z":3020000000000000000}},"30018328":{"solarSystemId":30018328,"solarSystemName":"Q:34EI","location":{"x":-2580000000000000000,"y":3620000000000000000,"z":7490000000000000000}},"30018329":{"solarSystemId":30018329,"solarSystemName":"Y:3RNV","location":{"x":-4020000000000000000,"y":1800000000000000000,"z":6990000000000000000}},"30018330":{"solarSystemId":30018330,"solarSystemName":"B:307N","location":{"x":-4300000000000000000,"y":4000000000000000000,"z":6680000000000000000}},"30018331":{"solarSystemId":30018331,"solarSystemName":"D:3258","location":{"x":-3960000000000000000,"y":3090000000000000000,"z":7500000000000000000}},"30018332":{"solarSystemId":30018332,"solarSystemName":"B:2A16","location":{"x":-3080000000000000000,"y":2480000000000000000,"z":8620000000000000000}},"30018333":{"solarSystemId":30018333,"solarSystemName":"Y:32KK","location":{"x":-3530000000000000000,"y":1650000000000000000,"z":7480000000000000000}},"30018334":{"solarSystemId":30018334,"solarSystemName":"D:2II5","location":{"x":-4940000000000000000,"y":1660000000000000000,"z":7690000000000000000}},"30018335":{"solarSystemId":30018335,"solarSystemName":"P:36IV","location":{"x":-4090000000000000000,"y":2880000000000000000,"z":7030000000000000000}},"30018336":{"solarSystemId":30018336,"solarSystemName":"G:2I14","location":{"x":-8090000000000000000,"y":2590000000000000000,"z":8960000000000000000}},"30018337":{"solarSystemId":30018337,"solarSystemName":"P:2T5R","location":{"x":-7440000000000000000,"y":4370000000000000000,"z":6060000000000000000}},"30018338":{"solarSystemId":30018338,"solarSystemName":"H:32NT","location":{"x":-7750000000000000000,"y":4830000000000000000,"z":7710000000000000000}},"30018339":{"solarSystemId":30018339,"solarSystemName":"Q:2VSA","location":{"x":-6350000000000000000,"y":4890000000000000000,"z":5780000000000000000}},"30018340":{"solarSystemId":30018340,"solarSystemName":"Z:2V9O","location":{"x":-6110000000000000000,"y":4040000000000000000,"z":5510000000000000000}},"30018341":{"solarSystemId":30018341,"solarSystemName":"S.E12.P13","location":{"x":74300000000000000,"y":-3520000000000000000,"z":18900000000000000000}},"30018342":{"solarSystemId":30018342,"solarSystemName":"N.FK4.TH3","location":{"x":-179000000000000000,"y":-4340000000000000000,"z":20000000000000000000}},"30018343":{"solarSystemId":30018343,"solarSystemName":"S.N1E.9Q4","location":{"x":-35000000000000000,"y":-5340000000000000000,"z":19500000000000000000}},"30018344":{"solarSystemId":30018344,"solarSystemName":"S.LR8.W83","location":{"x":-303000000000000000,"y":-3780000000000000000,"z":19400000000000000000}},"30018345":{"solarSystemId":30018345,"solarSystemName":"R.66V.MG3","location":{"x":692000000000000000,"y":-4310000000000000000,"z":18700000000000000000}},"30018346":{"solarSystemId":30018346,"solarSystemName":"H.YTF.0X3","location":{"x":770000000000000000,"y":-4400000000000000000,"z":19400000000000000000}},"30018347":{"solarSystemId":30018347,"solarSystemName":"N.RJS.YX4","location":{"x":-389000000000000000,"y":-5580000000000000000,"z":19300000000000000000}},"30018348":{"solarSystemId":30018348,"solarSystemName":"E.G81.TC3","location":{"x":1470000000000000000,"y":-4050000000000000000,"z":19700000000000000000}},"30018349":{"solarSystemId":30018349,"solarSystemName":"E.C82.1J2","location":{"x":2610000000000000000,"y":-3210000000000000000,"z":18400000000000000000}},"30018350":{"solarSystemId":30018350,"solarSystemName":"E.SW1.QZ2","location":{"x":2210000000000000000,"y":-3340000000000000000,"z":17500000000000000000}},"30018351":{"solarSystemId":30018351,"solarSystemName":"U.KW1.9X2","location":{"x":2230000000000000000,"y":-3250000000000000000,"z":18000000000000000000}},"30018352":{"solarSystemId":30018352,"solarSystemName":"R.8T1.Y33","location":{"x":1560000000000000000,"y":-3600000000000000000,"z":14700000000000000000}},"30018353":{"solarSystemId":30018353,"solarSystemName":"Fangelsi","location":{"x":2280000000000000000,"y":-2530000000000000000,"z":13700000000000000000}},"30018354":{"solarSystemId":30018354,"solarSystemName":"A.D01.0E1","location":{"x":1170000000000000000,"y":-2270000000000000000,"z":14000000000000000000}},"30018355":{"solarSystemId":30018355,"solarSystemName":"T.XP1.T63","location":{"x":1830000000000000000,"y":-3690000000000000000,"z":16000000000000000000}},"30018356":{"solarSystemId":30018356,"solarSystemName":"T.TE1.072","location":{"x":2280000000000000000,"y":-2560000000000000000,"z":14700000000000000000}},"30018357":{"solarSystemId":30018357,"solarSystemName":"A.4B1.J32","location":{"x":1950000000000000000,"y":-2440000000000000000,"z":14500000000000000000}},"30018358":{"solarSystemId":30018358,"solarSystemName":"R.NM1.643","location":{"x":1780000000000000000,"y":-3610000000000000000,"z":15000000000000000000}},"30018359":{"solarSystemId":30018359,"solarSystemName":"R.MJ3.WP5","location":{"x":-4380000000000000000,"y":-6450000000000000000,"z":15800000000000000000}},"30018360":{"solarSystemId":30018360,"solarSystemName":"E.NH3.7H6","location":{"x":-4340000000000000000,"y":-7790000000000000000,"z":15000000000000000000}},"30018361":{"solarSystemId":30018361,"solarSystemName":"U.SL2.XL7","location":{"x":-88200000000000000,"y":-8600000000000000000,"z":17300000000000000000}},"30018362":{"solarSystemId":30018362,"solarSystemName":"U.CP3.DT5","location":{"x":-4130000000000000000,"y":-6180000000000000000,"z":15300000000000000000}},"30018363":{"solarSystemId":30018363,"solarSystemName":"T.FJ1.SD6","location":{"x":-2080000000000000000,"y":-7470000000000000000,"z":15000000000000000000}},"30018364":{"solarSystemId":30018364,"solarSystemName":"E.8C2.GM6","location":{"x":-2890000000000000000,"y":-7560000000000000000,"z":16500000000000000000}},"30018365":{"solarSystemId":30018365,"solarSystemName":"A.T3H.Z42","location":{"x":868000000000000000,"y":-2480000000000000000,"z":17000000000000000000}},"30018366":{"solarSystemId":30018366,"solarSystemName":"A.3XT.N43","location":{"x":426000000000000000,"y":-3620000000000000000,"z":17000000000000000000}},"30018367":{"solarSystemId":30018367,"solarSystemName":"D.TK2.R73","location":{"x":-106000000000000000,"y":-3730000000000000000,"z":17000000000000000000}},"30018368":{"solarSystemId":30018368,"solarSystemName":"R.8GK.NG2","location":{"x":1110000000000000000,"y":-3150000000000000000,"z":17100000000000000000}},"30018369":{"solarSystemId":30018369,"solarSystemName":"I.6SD.F22","location":{"x":552000000000000000,"y":-2400000000000000000,"z":16400000000000000000}},"30018370":{"solarSystemId":30018370,"solarSystemName":"S.JLD.3Y2","location":{"x":557000000000000000,"y":-3280000000000000000,"z":16400000000000000000}},"30018371":{"solarSystemId":30018371,"solarSystemName":"S.GFJ.NK2","location":{"x":925000000000000000,"y":-3400000000000000000,"z":17900000000000000000}},"30018372":{"solarSystemId":30018372,"solarSystemName":"Q:39OT","location":{"x":-8120000000000000000,"y":-8630000000000000000,"z":-7370000000000000000}},"30018373":{"solarSystemId":30018373,"solarSystemName":"F:2S41","location":{"x":-9520000000000000000,"y":-9570000000000000000,"z":-6110000000000000000}},"30018374":{"solarSystemId":30018374,"solarSystemName":"P:3EAA","location":{"x":-7030000000000000000,"y":-10800000000000000000,"z":-7030000000000000000}},"30018375":{"solarSystemId":30018375,"solarSystemName":"F:393A","location":{"x":-8650000000000000000,"y":-10000000000000000000,"z":-5700000000000000000}},"30018376":{"solarSystemId":30018376,"solarSystemName":"D:3RTO","location":{"x":-8520000000000000000,"y":-9430000000000000000,"z":-4190000000000000000}},"30018377":{"solarSystemId":30018377,"solarSystemName":"P:29L9","location":{"x":-4950000000000000000,"y":-9050000000000000000,"z":-8220000000000000000}},"30018378":{"solarSystemId":30018378,"solarSystemName":"H:33NE","location":{"x":-4310000000000000000,"y":-11700000000000000000,"z":-7600000000000000000}},"30018379":{"solarSystemId":30018379,"solarSystemName":"M:392A","location":{"x":-4920000000000000000,"y":-11500000000000000000,"z":-8010000000000000000}},"30018380":{"solarSystemId":30018380,"solarSystemName":"U:29K9","location":{"x":-4560000000000000000,"y":-12500000000000000000,"z":-8440000000000000000}},"30018381":{"solarSystemId":30018381,"solarSystemName":"J:300E","location":{"x":-3410000000000000000,"y":-11400000000000000000,"z":-6560000000000000000}},"30018382":{"solarSystemId":30018382,"solarSystemName":"P:2EAK","location":{"x":-10900000000000000000,"y":-8270000000000000000,"z":-7200000000000000000}},"30018383":{"solarSystemId":30018383,"solarSystemName":"B:3AOI","location":{"x":-15600000000000000000,"y":-10300000000000000000,"z":-9770000000000000000}},"30018384":{"solarSystemId":30018384,"solarSystemName":"J:R3E3","location":{"x":-16600000000000000000,"y":-9840000000000000000,"z":-7300000000000000000}},"30018385":{"solarSystemId":30018385,"solarSystemName":"D:12S7","location":{"x":-16000000000000000000,"y":-8980000000000000000,"z":-5980000000000000000}},"30018386":{"solarSystemId":30018386,"solarSystemName":"J:1AR1","location":{"x":-18000000000000000000,"y":-9750000000000000000,"z":-10100000000000000000}},"30018387":{"solarSystemId":30018387,"solarSystemName":"U:2O8V","location":{"x":-5370000000000000000,"y":-9450000000000000000,"z":-4050000000000000000}},"30018388":{"solarSystemId":30018388,"solarSystemName":"Z:3O3I","location":{"x":-5290000000000000000,"y":-11000000000000000000,"z":-6320000000000000000}},"30018389":{"solarSystemId":30018389,"solarSystemName":"J:2L75","location":{"x":-11000000000000000000,"y":-9030000000000000000,"z":-2140000000000000000}},"30018390":{"solarSystemId":30018390,"solarSystemName":"M:388N","location":{"x":-7480000000000000000,"y":-9120000000000000000,"z":-1560000000000000000}},"30018391":{"solarSystemId":30018391,"solarSystemName":"Z:3215","location":{"x":-9510000000000000000,"y":-11900000000000000000,"z":-4080000000000000000}},"30018392":{"solarSystemId":30018392,"solarSystemName":"P:3A2N","location":{"x":-2400000000000000000,"y":-953000000000000000,"z":6940000000000000000}},"30018393":{"solarSystemId":30018393,"solarSystemName":"F:3E2A","location":{"x":-3300000000000000000,"y":-327000000000000000,"z":8310000000000000000}},"30018394":{"solarSystemId":30018394,"solarSystemName":"Z:2V5V","location":{"x":-3200000000000000000,"y":-1010000000000000000,"z":8370000000000000000}},"30018395":{"solarSystemId":30018395,"solarSystemName":"Z:SA1N","location":{"x":-3390000000000000000,"y":-402000000000000000,"z":6750000000000000000}},"30018396":{"solarSystemId":30018396,"solarSystemName":"Z:3V7N","location":{"x":-2750000000000000000,"y":-1360000000000000000,"z":7730000000000000000}},"30018397":{"solarSystemId":30018397,"solarSystemName":"U:1O2A","location":{"x":-3280000000000000000,"y":-707000000000000000,"z":8200000000000000000}},"30018398":{"solarSystemId":30018398,"solarSystemName":"G:1KLK","location":{"x":-3160000000000000000,"y":-1060000000000000000,"z":8210000000000000000}},"30018399":{"solarSystemId":30018399,"solarSystemName":"F:22A9","location":{"x":-2570000000000000000,"y":-1250000000000000000,"z":7630000000000000000}},"30018400":{"solarSystemId":30018400,"solarSystemName":"U:4N2T","location":{"x":-2800000000000000000,"y":-1430000000000000000,"z":7970000000000000000}},"30018401":{"solarSystemId":30018401,"solarSystemName":"Y:1R0L","location":{"x":-2980000000000000000,"y":-506000000000000000,"z":7620000000000000000}},"30018402":{"solarSystemId":30018402,"solarSystemName":"M:13N0","location":{"x":-2620000000000000000,"y":-1470000000000000000,"z":7620000000000000000}},"30018403":{"solarSystemId":30018403,"solarSystemName":"B:19L6","location":{"x":-2480000000000000000,"y":-682000000000000000,"z":7310000000000000000}},"30018404":{"solarSystemId":30018404,"solarSystemName":"M:3T7O","location":{"x":-3300000000000000000,"y":-1040000000000000000,"z":7770000000000000000}},"30018405":{"solarSystemId":30018405,"solarSystemName":"P:21N7","location":{"x":-3640000000000000000,"y":-182000000000000000,"z":8620000000000000000}},"30018406":{"solarSystemId":30018406,"solarSystemName":"Y:1IIS","location":{"x":-2130000000000000000,"y":-861000000000000000,"z":8100000000000000000}},"30018407":{"solarSystemId":30018407,"solarSystemName":"P:3OT3","location":{"x":-5000000000000000000,"y":741000000000000000,"z":6720000000000000000}},"30018408":{"solarSystemId":30018408,"solarSystemName":"Z:2I87","location":{"x":-5040000000000000000,"y":1330000000000000000,"z":6550000000000000000}},"30018409":{"solarSystemId":30018409,"solarSystemName":"H:2E4R","location":{"x":-4600000000000000000,"y":-296000000000000000,"z":6760000000000000000}},"30018410":{"solarSystemId":30018410,"solarSystemName":"Z:1V19","location":{"x":-4570000000000000000,"y":-535000000000000000,"z":6800000000000000000}},"30018411":{"solarSystemId":30018411,"solarSystemName":"Z:12I1","location":{"x":-5660000000000000000,"y":263000000000000000,"z":6440000000000000000}},"30018412":{"solarSystemId":30018412,"solarSystemName":"D:27AI","location":{"x":-5520000000000000000,"y":125000000000000000,"z":6860000000000000000}},"30018413":{"solarSystemId":30018413,"solarSystemName":"G:38N2","location":{"x":-5020000000000000000,"y":-240000000000000000,"z":6900000000000000000}},"30018414":{"solarSystemId":30018414,"solarSystemName":"F:268I","location":{"x":-5030000000000000000,"y":-334000000000000000,"z":6970000000000000000}},"30018415":{"solarSystemId":30018415,"solarSystemName":"G:2I7E","location":{"x":-4640000000000000000,"y":-85500000000000000,"z":6930000000000000000}},"30018416":{"solarSystemId":30018416,"solarSystemName":"D:1N8A","location":{"x":-5050000000000000000,"y":-624000000000000000,"z":7250000000000000000}},"30018417":{"solarSystemId":30018417,"solarSystemName":"Z:2I84","location":{"x":-4530000000000000000,"y":462000000000000000,"z":7380000000000000000}},"30018418":{"solarSystemId":30018418,"solarSystemName":"U:3VAS","location":{"x":-5370000000000000000,"y":-122000000000000000,"z":6740000000000000000}},"30018419":{"solarSystemId":30018419,"solarSystemName":"M:T2V9","location":{"x":-4180000000000000000,"y":583000000000000000,"z":7640000000000000000}},"30018420":{"solarSystemId":30018420,"solarSystemName":"D:3702","location":{"x":-4700000000000000000,"y":568000000000000000,"z":6930000000000000000}},"30018421":{"solarSystemId":30018421,"solarSystemName":"H:1SV1","location":{"x":-4230000000000000000,"y":-34500000000000000,"z":7040000000000000000}},"30018422":{"solarSystemId":30018422,"solarSystemName":"Y:3AVI","location":{"x":-5290000000000000000,"y":-1380000000000000000,"z":8490000000000000000}},"30018423":{"solarSystemId":30018423,"solarSystemName":"Y:3ON0","location":{"x":-6090000000000000000,"y":-1820000000000000000,"z":11100000000000000000}},"30018424":{"solarSystemId":30018424,"solarSystemName":"J:2IVO","location":{"x":-5990000000000000000,"y":-1780000000000000000,"z":12500000000000000000}},"30018425":{"solarSystemId":30018425,"solarSystemName":"G:1L18","location":{"x":-4760000000000000000,"y":-2060000000000000000,"z":8430000000000000000}},"30018426":{"solarSystemId":30018426,"solarSystemName":"J:1R16","location":{"x":-6150000000000000000,"y":-1070000000000000000,"z":11900000000000000000}},"30018427":{"solarSystemId":30018427,"solarSystemName":"Q:2KE9","location":{"x":-5060000000000000000,"y":-1450000000000000000,"z":9460000000000000000}},"30018428":{"solarSystemId":30018428,"solarSystemName":"U:31AO","location":{"x":-6090000000000000000,"y":-749000000000000000,"z":11300000000000000000}},"30018429":{"solarSystemId":30018429,"solarSystemName":"H:1KK9","location":{"x":-5510000000000000000,"y":-1590000000000000000,"z":12400000000000000000}},"30018430":{"solarSystemId":30018430,"solarSystemName":"U:2AI4","location":{"x":-4900000000000000000,"y":-1580000000000000000,"z":8680000000000000000}},"30018431":{"solarSystemId":30018431,"solarSystemName":"H:39K7","location":{"x":-6270000000000000000,"y":-2330000000000000000,"z":12300000000000000000}},"30018432":{"solarSystemId":30018432,"solarSystemName":"Z:35R6","location":{"x":-5390000000000000000,"y":-1760000000000000000,"z":8810000000000000000}},"30018433":{"solarSystemId":30018433,"solarSystemName":"B:31SA","location":{"x":-4310000000000000000,"y":-2080000000000000000,"z":7990000000000000000}},"30018434":{"solarSystemId":30018434,"solarSystemName":"B:212T","location":{"x":-3770000000000000000,"y":-1440000000000000000,"z":7820000000000000000}},"30018435":{"solarSystemId":30018435,"solarSystemName":"J:3OLI","location":{"x":-5240000000000000000,"y":-1210000000000000000,"z":7740000000000000000}},"30018436":{"solarSystemId":30018436,"solarSystemName":"Z:O15S","location":{"x":-4860000000000000000,"y":-1430000000000000000,"z":7710000000000000000}},"30018437":{"solarSystemId":30018437,"solarSystemName":"D:3O3A","location":{"x":-4000000000000000000,"y":-1430000000000000000,"z":7830000000000000000}},"30018438":{"solarSystemId":30018438,"solarSystemName":"P:19I0","location":{"x":-4450000000000000000,"y":-1500000000000000000,"z":7870000000000000000}},"30018439":{"solarSystemId":30018439,"solarSystemName":"M:3913","location":{"x":-4470000000000000000,"y":-1720000000000000000,"z":7840000000000000000}},"30018440":{"solarSystemId":30018440,"solarSystemName":"J:T37L","location":{"x":-3940000000000000000,"y":-1580000000000000000,"z":7240000000000000000}},"30018441":{"solarSystemId":30018441,"solarSystemName":"G:36N6","location":{"x":-4090000000000000000,"y":-1970000000000000000,"z":8370000000000000000}},"30018442":{"solarSystemId":30018442,"solarSystemName":"M:2992","location":{"x":-5410000000000000000,"y":-879000000000000000,"z":7540000000000000000}},"30018443":{"solarSystemId":30018443,"solarSystemName":"D:3VAO","location":{"x":-4960000000000000000,"y":-1540000000000000000,"z":7230000000000000000}},"30018444":{"solarSystemId":30018444,"solarSystemName":"Z:3IT1","location":{"x":-4110000000000000000,"y":-1450000000000000000,"z":8160000000000000000}},"30018445":{"solarSystemId":30018445,"solarSystemName":"U:2LIR","location":{"x":-4940000000000000000,"y":-1450000000000000000,"z":7920000000000000000}},"30018446":{"solarSystemId":30018446,"solarSystemName":"Y:24K1","location":{"x":-5010000000000000000,"y":-1330000000000000000,"z":7670000000000000000}},"30018447":{"solarSystemId":30018447,"solarSystemName":"Y:3877","location":{"x":-4570000000000000000,"y":-1940000000000000000,"z":7920000000000000000}},"30018448":{"solarSystemId":30018448,"solarSystemName":"B:1SEI","location":{"x":-5160000000000000000,"y":-1490000000000000000,"z":7460000000000000000}},"30018449":{"solarSystemId":30018449,"solarSystemName":"Q:EA04","location":{"x":-5320000000000000000,"y":-1030000000000000000,"z":7580000000000000000}},"30018450":{"solarSystemId":30018450,"solarSystemName":"D:22SA","location":{"x":-5030000000000000000,"y":-1060000000000000000,"z":7040000000000000000}},"30018451":{"solarSystemId":30018451,"solarSystemName":"U:12ES","location":{"x":-4880000000000000000,"y":-1660000000000000000,"z":7680000000000000000}},"30018452":{"solarSystemId":30018452,"solarSystemName":"F:2EI4","location":{"x":-3940000000000000000,"y":-1340000000000000000,"z":7130000000000000000}},"30018453":{"solarSystemId":30018453,"solarSystemName":"D:1AN5","location":{"x":-4520000000000000000,"y":-1260000000000000000,"z":7500000000000000000}},"30018454":{"solarSystemId":30018454,"solarSystemName":"Z:3NA9","location":{"x":-3130000000000000000,"y":-1710000000000000000,"z":7900000000000000000}},"30018455":{"solarSystemId":30018455,"solarSystemName":"G:3R1E","location":{"x":-3140000000000000000,"y":-1260000000000000000,"z":9220000000000000000}},"30018456":{"solarSystemId":30018456,"solarSystemName":"Z:3V7I","location":{"x":-3330000000000000000,"y":-1650000000000000000,"z":9300000000000000000}},"30018457":{"solarSystemId":30018457,"solarSystemName":"Z:OIVL","location":{"x":-3150000000000000000,"y":-2300000000000000000,"z":8240000000000000000}},"30018458":{"solarSystemId":30018458,"solarSystemName":"F:2AO3","location":{"x":-2920000000000000000,"y":-1680000000000000000,"z":8090000000000000000}},"30018459":{"solarSystemId":30018459,"solarSystemName":"U:T0I1","location":{"x":-3310000000000000000,"y":-1710000000000000000,"z":8520000000000000000}},"30018460":{"solarSystemId":30018460,"solarSystemName":"P:3S46","location":{"x":-3710000000000000000,"y":-1740000000000000000,"z":8200000000000000000}},"30018461":{"solarSystemId":30018461,"solarSystemName":"D:1IL4","location":{"x":-3440000000000000000,"y":-1580000000000000000,"z":8610000000000000000}},"30018462":{"solarSystemId":30018462,"solarSystemName":"H:18O1","location":{"x":-2700000000000000000,"y":-1600000000000000000,"z":8370000000000000000}},"30018463":{"solarSystemId":30018463,"solarSystemName":"Q:2L9K","location":{"x":-2880000000000000000,"y":-1770000000000000000,"z":9070000000000000000}},"30018464":{"solarSystemId":30018464,"solarSystemName":"J:16ON","location":{"x":-2820000000000000000,"y":-1180000000000000000,"z":8680000000000000000}},"30018465":{"solarSystemId":30018465,"solarSystemName":"H:39RI","location":{"x":-3280000000000000000,"y":-1290000000000000000,"z":8290000000000000000}},"30018466":{"solarSystemId":30018466,"solarSystemName":"J:1311","location":{"x":-3520000000000000000,"y":-1890000000000000000,"z":9150000000000000000}},"30018467":{"solarSystemId":30018467,"solarSystemName":"D:17IV","location":{"x":-3860000000000000000,"y":-774000000000000000,"z":8350000000000000000}},"30018468":{"solarSystemId":30018468,"solarSystemName":"M:17N9","location":{"x":-4060000000000000000,"y":-1570000000000000000,"z":8700000000000000000}},"30018469":{"solarSystemId":30018469,"solarSystemName":"M:2640","location":{"x":-3900000000000000000,"y":-880000000000000000,"z":9830000000000000000}},"30018470":{"solarSystemId":30018470,"solarSystemName":"Q:1OKA","location":{"x":-3780000000000000000,"y":-1120000000000000000,"z":9160000000000000000}},"30018471":{"solarSystemId":30018471,"solarSystemName":"Q:1SLL","location":{"x":-3940000000000000000,"y":-1820000000000000000,"z":8760000000000000000}},"30018472":{"solarSystemId":30018472,"solarSystemName":"Z:1AKE","location":{"x":-3360000000000000000,"y":-1100000000000000000,"z":9110000000000000000}},"30018473":{"solarSystemId":30018473,"solarSystemName":"H:3S0O","location":{"x":-4050000000000000000,"y":-1100000000000000000,"z":9100000000000000000}},"30018474":{"solarSystemId":30018474,"solarSystemName":"G:L14K","location":{"x":-4040000000000000000,"y":-1250000000000000000,"z":8500000000000000000}},"30018475":{"solarSystemId":30018475,"solarSystemName":"Q:2N83","location":{"x":-3710000000000000000,"y":-1010000000000000000,"z":8450000000000000000}},"30018476":{"solarSystemId":30018476,"solarSystemName":"D:1E95","location":{"x":-3850000000000000000,"y":-901000000000000000,"z":8500000000000000000}},"30018477":{"solarSystemId":30018477,"solarSystemName":"J:25TA","location":{"x":-3500000000000000000,"y":-1530000000000000000,"z":9560000000000000000}},"30018478":{"solarSystemId":30018478,"solarSystemName":"Y:14N7","location":{"x":-3470000000000000000,"y":-1340000000000000000,"z":9500000000000000000}},"30018479":{"solarSystemId":30018479,"solarSystemName":"Q:3NOK","location":{"x":-4050000000000000000,"y":-1610000000000000000,"z":9240000000000000000}},"30018480":{"solarSystemId":30018480,"solarSystemName":"F:2IO5","location":{"x":-3900000000000000000,"y":-1470000000000000000,"z":8850000000000000000}},"30018481":{"solarSystemId":30018481,"solarSystemName":"F:2NVT","location":{"x":-3570000000000000000,"y":169000000000000000,"z":7910000000000000000}},"30018482":{"solarSystemId":30018482,"solarSystemName":"B:2N50","location":{"x":-3380000000000000000,"y":-241000000000000000,"z":7330000000000000000}},"30018483":{"solarSystemId":30018483,"solarSystemName":"Q:1K64","location":{"x":-3560000000000000000,"y":-381000000000000000,"z":7520000000000000000}},"30018484":{"solarSystemId":30018484,"solarSystemName":"Q:SR5K","location":{"x":-3530000000000000000,"y":-501000000000000000,"z":7670000000000000000}},"30018485":{"solarSystemId":30018485,"solarSystemName":"D:160E","location":{"x":-3960000000000000000,"y":-320000000000000000,"z":7240000000000000000}},"30018486":{"solarSystemId":30018486,"solarSystemName":"G:33NV","location":{"x":-3970000000000000000,"y":-406000000000000000,"z":7430000000000000000}},"30018487":{"solarSystemId":30018487,"solarSystemName":"B:1NLS","location":{"x":-3890000000000000000,"y":-1190000000000000000,"z":7610000000000000000}},"30018488":{"solarSystemId":30018488,"solarSystemName":"U:1KAR","location":{"x":-4410000000000000000,"y":-860000000000000000,"z":6990000000000000000}},"30018489":{"solarSystemId":30018489,"solarSystemName":"Q:1O7R","location":{"x":-3910000000000000000,"y":-153000000000000000,"z":7300000000000000000}},"30018490":{"solarSystemId":30018490,"solarSystemName":"J:2ONA","location":{"x":-4060000000000000000,"y":-976000000000000000,"z":7950000000000000000}},"30018491":{"solarSystemId":30018491,"solarSystemName":"U:2289","location":{"x":-3930000000000000000,"y":-435000000000000000,"z":7260000000000000000}},"30018492":{"solarSystemId":30018492,"solarSystemName":"G:3E39","location":{"x":-3670000000000000000,"y":-694000000000000000,"z":6840000000000000000}},"30018493":{"solarSystemId":30018493,"solarSystemName":"Z:R75I","location":{"x":-4020000000000000000,"y":-1020000000000000000,"z":7380000000000000000}},"30018494":{"solarSystemId":30018494,"solarSystemName":"J:275K","location":{"x":-3600000000000000000,"y":-232000000000000000,"z":7230000000000000000}},"30018495":{"solarSystemId":30018495,"solarSystemName":"Y:2LI7","location":{"x":-4680000000000000000,"y":-772000000000000000,"z":8150000000000000000}},"30018496":{"solarSystemId":30018496,"solarSystemName":"P:356V","location":{"x":-5710000000000000000,"y":-84100000000000000,"z":7640000000000000000}},"30018497":{"solarSystemId":30018497,"solarSystemName":"D:2ESK","location":{"x":-4970000000000000000,"y":17400000000000000,"z":7890000000000000000}},"30018498":{"solarSystemId":30018498,"solarSystemName":"F:1OLI","location":{"x":-4660000000000000000,"y":-462000000000000000,"z":8920000000000000000}},"30018499":{"solarSystemId":30018499,"solarSystemName":"D:EA7T","location":{"x":-4800000000000000000,"y":-28200000000000000,"z":7640000000000000000}},"30018500":{"solarSystemId":30018500,"solarSystemName":"U:38EI","location":{"x":-5480000000000000000,"y":-544000000000000000,"z":8190000000000000000}},"30018501":{"solarSystemId":30018501,"solarSystemName":"H:3E94","location":{"x":-5700000000000000000,"y":444000000000000000,"z":8070000000000000000}},"30018502":{"solarSystemId":30018502,"solarSystemName":"Y:32O8","location":{"x":-4350000000000000000,"y":-434000000000000000,"z":8180000000000000000}},"30018503":{"solarSystemId":30018503,"solarSystemName":"Y:1ISR","location":{"x":-4850000000000000000,"y":-711000000000000000,"z":8140000000000000000}},"30018504":{"solarSystemId":30018504,"solarSystemName":"J:1RI5","location":{"x":-4990000000000000000,"y":-99200000000000000,"z":8150000000000000000}},"30018505":{"solarSystemId":30018505,"solarSystemName":"Z:312S","location":{"x":-4960000000000000000,"y":-545000000000000000,"z":8230000000000000000}},"30018506":{"solarSystemId":30018506,"solarSystemName":"Y:509T","location":{"x":-5590000000000000000,"y":-738000000000000000,"z":8330000000000000000}},"30018507":{"solarSystemId":30018507,"solarSystemName":"P:26NR","location":{"x":-5040000000000000000,"y":-570000000000000000,"z":8530000000000000000}},"30018508":{"solarSystemId":30018508,"solarSystemName":"D:2423","location":{"x":-11600000000000000000,"y":-1680000000000000000,"z":10200000000000000000}},"30018509":{"solarSystemId":30018509,"solarSystemName":"P:2340","location":{"x":-11800000000000000000,"y":-1380000000000000000,"z":9100000000000000000}},"30018510":{"solarSystemId":30018510,"solarSystemName":"B:3VRT","location":{"x":-10900000000000000000,"y":-1550000000000000000,"z":11000000000000000000}},"30018511":{"solarSystemId":30018511,"solarSystemName":"P:2N5T","location":{"x":-11200000000000000000,"y":-2330000000000000000,"z":10100000000000000000}},"30018512":{"solarSystemId":30018512,"solarSystemName":"H:TK47","location":{"x":-11400000000000000000,"y":-1640000000000000000,"z":9160000000000000000}},"30018513":{"solarSystemId":30018513,"solarSystemName":"G:3IRR","location":{"x":-12200000000000000000,"y":-1320000000000000000,"z":10600000000000000000}},"30018514":{"solarSystemId":30018514,"solarSystemName":"D:285O","location":{"x":-11100000000000000000,"y":-1130000000000000000,"z":9560000000000000000}},"30018515":{"solarSystemId":30018515,"solarSystemName":"D:3397","location":{"x":-11300000000000000000,"y":-2360000000000000000,"z":10500000000000000000}},"30018516":{"solarSystemId":30018516,"solarSystemName":"P:20V7","location":{"x":-11200000000000000000,"y":-2610000000000000000,"z":10200000000000000000}},"30018517":{"solarSystemId":30018517,"solarSystemName":"J:18T1","location":{"x":-12700000000000000000,"y":-1680000000000000000,"z":10800000000000000000}},"30018518":{"solarSystemId":30018518,"solarSystemName":"D:395E","location":{"x":-13900000000000000000,"y":31100000000000000,"z":7000000000000000000}},"30018519":{"solarSystemId":30018519,"solarSystemName":"Y:1LR0","location":{"x":-13500000000000000000,"y":-615000000000000000,"z":6470000000000000000}},"30018520":{"solarSystemId":30018520,"solarSystemName":"B:LK60","location":{"x":-13800000000000000000,"y":-216000000000000000,"z":6710000000000000000}},"30018521":{"solarSystemId":30018521,"solarSystemName":"G:26K4","location":{"x":-15300000000000000000,"y":-396000000000000000,"z":7620000000000000000}},"30018522":{"solarSystemId":30018522,"solarSystemName":"U:1NNI","location":{"x":-14400000000000000000,"y":478000000000000000,"z":7440000000000000000}},"30018523":{"solarSystemId":30018523,"solarSystemName":"F:2483","location":{"x":-14300000000000000000,"y":-1050000000000000000,"z":7000000000000000000}},"30018524":{"solarSystemId":30018524,"solarSystemName":"D:336E","location":{"x":-14200000000000000000,"y":-1140000000000000000,"z":6510000000000000000}},"30018525":{"solarSystemId":30018525,"solarSystemName":"B:3546","location":{"x":-14400000000000000000,"y":-422000000000000000,"z":8170000000000000000}},"30018526":{"solarSystemId":30018526,"solarSystemName":"P:3A2S","location":{"x":-14300000000000000000,"y":-192000000000000000,"z":7930000000000000000}},"30018527":{"solarSystemId":30018527,"solarSystemName":"F:15VI","location":{"x":-13700000000000000000,"y":-208000000000000000,"z":7230000000000000000}},"30018528":{"solarSystemId":30018528,"solarSystemName":"Y:1I96","location":{"x":-14400000000000000000,"y":-506000000000000000,"z":6980000000000000000}},"30018529":{"solarSystemId":30018529,"solarSystemName":"P:1TKA","location":{"x":-14100000000000000000,"y":31900000000000000,"z":7440000000000000000}},"30018530":{"solarSystemId":30018530,"solarSystemName":"F:3295","location":{"x":-11700000000000000000,"y":-2500000000000000000,"z":9210000000000000000}},"30018531":{"solarSystemId":30018531,"solarSystemName":"Y:225T","location":{"x":-11800000000000000000,"y":-2930000000000000000,"z":9440000000000000000}},"30018532":{"solarSystemId":30018532,"solarSystemName":"U:1040","location":{"x":-13000000000000000000,"y":-4900000000000000000,"z":7870000000000000000}},"30018533":{"solarSystemId":30018533,"solarSystemName":"P:1196","location":{"x":-12200000000000000000,"y":-2710000000000000000,"z":9330000000000000000}},"30018534":{"solarSystemId":30018534,"solarSystemName":"Q:3A9T","location":{"x":-11700000000000000000,"y":-2890000000000000000,"z":9370000000000000000}},"30018535":{"solarSystemId":30018535,"solarSystemName":"D:17S3","location":{"x":-12700000000000000000,"y":-2000000000000000000,"z":8530000000000000000}},"30018536":{"solarSystemId":30018536,"solarSystemName":"G:28TO","location":{"x":-12500000000000000000,"y":-3210000000000000000,"z":8980000000000000000}},"30018537":{"solarSystemId":30018537,"solarSystemName":"U:1V2V","location":{"x":-12100000000000000000,"y":-812000000000000000,"z":8890000000000000000}},"30018538":{"solarSystemId":30018538,"solarSystemName":"B:29EN","location":{"x":-11400000000000000000,"y":-2500000000000000000,"z":9000000000000000000}},"30018539":{"solarSystemId":30018539,"solarSystemName":"Z:39V4","location":{"x":-12400000000000000000,"y":-2790000000000000000,"z":10300000000000000000}},"30018540":{"solarSystemId":30018540,"solarSystemName":"P:3TR2","location":{"x":-12400000000000000000,"y":-2330000000000000000,"z":9110000000000000000}},"30018541":{"solarSystemId":30018541,"solarSystemName":"Q:311I","location":{"x":-15100000000000000000,"y":-132000000000000000,"z":8400000000000000000}},"30018542":{"solarSystemId":30018542,"solarSystemName":"J:309I","location":{"x":-14100000000000000000,"y":118000000000000000,"z":9680000000000000000}},"30018543":{"solarSystemId":30018543,"solarSystemName":"Y:1RAA","location":{"x":-14900000000000000000,"y":-332000000000000000,"z":8500000000000000000}},"30018544":{"solarSystemId":30018544,"solarSystemName":"J:243S","location":{"x":-13700000000000000000,"y":-176000000000000000,"z":9350000000000000000}},"30018545":{"solarSystemId":30018545,"solarSystemName":"J:454V","location":{"x":-13300000000000000000,"y":-1260000000000000000,"z":10100000000000000000}},"30018546":{"solarSystemId":30018546,"solarSystemName":"H:LRL8","location":{"x":-14600000000000000000,"y":277000000000000000,"z":9490000000000000000}},"30018547":{"solarSystemId":30018547,"solarSystemName":"U:1328","location":{"x":-16100000000000000000,"y":-333000000000000000,"z":9150000000000000000}},"30018548":{"solarSystemId":30018548,"solarSystemName":"P:3NS6","location":{"x":-13700000000000000000,"y":1050000000000000000,"z":8690000000000000000}},"30018549":{"solarSystemId":30018549,"solarSystemName":"Z:KETT","location":{"x":-14000000000000000000,"y":-703000000000000000,"z":9150000000000000000}},"30018550":{"solarSystemId":30018550,"solarSystemName":"U:2AV4","location":{"x":-14700000000000000000,"y":-240000000000000000,"z":8560000000000000000}},"30018551":{"solarSystemId":30018551,"solarSystemName":"Q:21EN","location":{"x":-10500000000000000000,"y":-3240000000000000000,"z":10500000000000000000}},"30018552":{"solarSystemId":30018552,"solarSystemName":"P:2A82","location":{"x":-10400000000000000000,"y":-1970000000000000000,"z":12600000000000000000}},"30018553":{"solarSystemId":30018553,"solarSystemName":"M:R7R0","location":{"x":-9460000000000000000,"y":-4020000000000000000,"z":10300000000000000000}},"30018554":{"solarSystemId":30018554,"solarSystemName":"M:NR55","location":{"x":-9460000000000000000,"y":-3600000000000000000,"z":10900000000000000000}},"30018555":{"solarSystemId":30018555,"solarSystemName":"H:186O","location":{"x":-11400000000000000000,"y":-296000000000000000,"z":13100000000000000000}},"30018556":{"solarSystemId":30018556,"solarSystemName":"Y:3AK6","location":{"x":-9290000000000000000,"y":-3200000000000000000,"z":10700000000000000000}},"30018557":{"solarSystemId":30018557,"solarSystemName":"Z:3A82","location":{"x":-10900000000000000000,"y":-3330000000000000000,"z":11400000000000000000}},"30018558":{"solarSystemId":30018558,"solarSystemName":"B:12EN","location":{"x":-13000000000000000000,"y":-2550000000000000000,"z":11500000000000000000}},"30018559":{"solarSystemId":30018559,"solarSystemName":"Q:2AI7","location":{"x":-10500000000000000000,"y":-2650000000000000000,"z":10600000000000000000}},"30018560":{"solarSystemId":30018560,"solarSystemName":"M:1O6R","location":{"x":-12600000000000000000,"y":-2740000000000000000,"z":11800000000000000000}},"30018561":{"solarSystemId":30018561,"solarSystemName":"D:I64V","location":{"x":-9440000000000000000,"y":-2520000000000000000,"z":11700000000000000000}},"30018562":{"solarSystemId":30018562,"solarSystemName":"F:3R3R","location":{"x":-11300000000000000000,"y":-2630000000000000000,"z":11500000000000000000}},"30018563":{"solarSystemId":30018563,"solarSystemName":"B:3563","location":{"x":-10700000000000000000,"y":-2130000000000000000,"z":12500000000000000000}},"30018564":{"solarSystemId":30018564,"solarSystemName":"B:2R9L","location":{"x":-14900000000000000000,"y":-115000000000000000,"z":10900000000000000000}},"30018565":{"solarSystemId":30018565,"solarSystemName":"H:39VE","location":{"x":-14200000000000000000,"y":342000000000000000,"z":10700000000000000000}},"30018566":{"solarSystemId":30018566,"solarSystemName":"F:3929","location":{"x":-14400000000000000000,"y":-249000000000000000,"z":11300000000000000000}},"30018567":{"solarSystemId":30018567,"solarSystemName":"Z:4SE3","location":{"x":-13700000000000000000,"y":-3220000000000000,"z":11100000000000000000}},"30018568":{"solarSystemId":30018568,"solarSystemName":"J:2S31","location":{"x":-14500000000000000000,"y":-52000000000000000,"z":11100000000000000000}},"30018569":{"solarSystemId":30018569,"solarSystemName":"M:2OTL","location":{"x":-14400000000000000000,"y":129000000000000000,"z":10200000000000000000}},"30018570":{"solarSystemId":30018570,"solarSystemName":"Y:E439","location":{"x":-14000000000000000000,"y":150000000000000000,"z":11000000000000000000}},"30018571":{"solarSystemId":30018571,"solarSystemName":"J:83SR","location":{"x":-14500000000000000000,"y":116000000000000000,"z":11700000000000000000}},"30018572":{"solarSystemId":30018572,"solarSystemName":"H:6N9L","location":{"x":-14800000000000000000,"y":-46800000000000000,"z":11200000000000000000}},"30018573":{"solarSystemId":30018573,"solarSystemName":"P:28OE","location":{"x":-13500000000000000000,"y":497000000000000000,"z":11100000000000000000}},"30018574":{"solarSystemId":30018574,"solarSystemName":"G:2TS8","location":{"x":-13300000000000000000,"y":-84500000000000000,"z":10700000000000000000}},"30018575":{"solarSystemId":30018575,"solarSystemName":"P:2117","location":{"x":-12300000000000000000,"y":289000000000000000,"z":10100000000000000000}},"30018576":{"solarSystemId":30018576,"solarSystemName":"U:4481","location":{"x":-12600000000000000000,"y":-428000000000000000,"z":8820000000000000000}},"30018577":{"solarSystemId":30018577,"solarSystemName":"H:EAT4","location":{"x":-13200000000000000000,"y":-450000000000000000,"z":9540000000000000000}},"30018578":{"solarSystemId":30018578,"solarSystemName":"D:3I40","location":{"x":-13200000000000000000,"y":-64000000000000000,"z":8890000000000000000}},"30018579":{"solarSystemId":30018579,"solarSystemName":"F:525I","location":{"x":-12600000000000000000,"y":417000000000000000,"z":8960000000000000000}},"30018580":{"solarSystemId":30018580,"solarSystemName":"Y:I81S","location":{"x":-11600000000000000000,"y":7750000000000000,"z":10900000000000000000}},"30018581":{"solarSystemId":30018581,"solarSystemName":"Z:2S55","location":{"x":-11700000000000000000,"y":540000000000000000,"z":11000000000000000000}},"30018582":{"solarSystemId":30018582,"solarSystemName":"M:1AKI","location":{"x":-11800000000000000000,"y":96700000000000000,"z":10200000000000000000}},"30018583":{"solarSystemId":30018583,"solarSystemName":"M:1839","location":{"x":-10400000000000000000,"y":-1650000000000000000,"z":9720000000000000000}},"30018584":{"solarSystemId":30018584,"solarSystemName":"G:1R39","location":{"x":-11200000000000000000,"y":-2580000000000000000,"z":9490000000000000000}},"30018585":{"solarSystemId":30018585,"solarSystemName":"Y:EERO","location":{"x":-9120000000000000000,"y":-2680000000000000000,"z":9600000000000000000}},"30018586":{"solarSystemId":30018586,"solarSystemName":"P:11AS","location":{"x":-9770000000000000000,"y":-3060000000000000000,"z":9230000000000000000}},"30018587":{"solarSystemId":30018587,"solarSystemName":"P:139O","location":{"x":-10200000000000000000,"y":-3470000000000000000,"z":9280000000000000000}},"30018588":{"solarSystemId":30018588,"solarSystemName":"Q:2TLS","location":{"x":-9820000000000000000,"y":-2870000000000000000,"z":8780000000000000000}},"30018589":{"solarSystemId":30018589,"solarSystemName":"D:3A8I","location":{"x":-8960000000000000000,"y":-1660000000000000000,"z":9090000000000000000}},"30018590":{"solarSystemId":30018590,"solarSystemName":"F:320N","location":{"x":-9360000000000000000,"y":-2850000000000000000,"z":8460000000000000000}},"30018591":{"solarSystemId":30018591,"solarSystemName":"F:1SIO","location":{"x":-10000000000000000000,"y":-2090000000000000000,"z":8900000000000000000}},"30018592":{"solarSystemId":30018592,"solarSystemName":"J:1TE3","location":{"x":-9760000000000000000,"y":-2830000000000000000,"z":9410000000000000000}},"30018593":{"solarSystemId":30018593,"solarSystemName":"G:2O7I","location":{"x":-9260000000000000000,"y":-3120000000000000000,"z":9270000000000000000}},"30018594":{"solarSystemId":30018594,"solarSystemName":"M:25TI","location":{"x":-9220000000000000000,"y":-2540000000000000000,"z":9080000000000000000}},"30018595":{"solarSystemId":30018595,"solarSystemName":"G:2E78","location":{"x":-14500000000000000000,"y":1920000000000000000,"z":-612000000000000000}},"30018596":{"solarSystemId":30018596,"solarSystemName":"Z:I320","location":{"x":-13400000000000000000,"y":855000000000000000,"z":384000000000000000}},"30018597":{"solarSystemId":30018597,"solarSystemName":"P:3687","location":{"x":-14800000000000000000,"y":1070000000000000000,"z":469000000000000000}},"30018598":{"solarSystemId":30018598,"solarSystemName":"Q:1958","location":{"x":-15100000000000000000,"y":1130000000000000000,"z":-474000000000000000}},"30018599":{"solarSystemId":30018599,"solarSystemName":"F:2ES5","location":{"x":-13800000000000000000,"y":508000000000000000,"z":412000000000000000}},"30018600":{"solarSystemId":30018600,"solarSystemName":"H:R1KT","location":{"x":-13600000000000000000,"y":596000000000000000,"z":1270000000000000000}},"30018601":{"solarSystemId":30018601,"solarSystemName":"P:3A0R","location":{"x":-14800000000000000000,"y":-108000000000000000,"z":759000000000000000}},"30018602":{"solarSystemId":30018602,"solarSystemName":"H:1V56","location":{"x":-15100000000000000000,"y":319000000000000000,"z":50700000000000000}},"30018603":{"solarSystemId":30018603,"solarSystemName":"Y:18TK","location":{"x":-13300000000000000000,"y":777000000000000000,"z":1160000000000000000}},"30018604":{"solarSystemId":30018604,"solarSystemName":"F:2A32","location":{"x":-13700000000000000000,"y":1330000000000000000,"z":1020000000000000000}},"30018605":{"solarSystemId":30018605,"solarSystemName":"U:NT3R","location":{"x":-13400000000000000000,"y":1330000000000000000,"z":-83400000000000000}},"30018606":{"solarSystemId":30018606,"solarSystemName":"J:3847","location":{"x":-14800000000000000000,"y":1340000000000000000,"z":1530000000000000000}},"30018607":{"solarSystemId":30018607,"solarSystemName":"U:3591","location":{"x":-14500000000000000000,"y":1210000000000000000,"z":508000000000000000}},"30018608":{"solarSystemId":30018608,"solarSystemName":"Q:250T","location":{"x":-14800000000000000000,"y":1190000000000000000,"z":1790000000000000000}},"30018609":{"solarSystemId":30018609,"solarSystemName":"M:ORK5","location":{"x":-14300000000000000000,"y":320000000000000000,"z":1420000000000000000}},"30018610":{"solarSystemId":30018610,"solarSystemName":"Y:318E","location":{"x":-15200000000000000000,"y":1440000000000000000,"z":712000000000000000}},"30018611":{"solarSystemId":30018611,"solarSystemName":"P:2053","location":{"x":-14500000000000000000,"y":-213000000000000000,"z":1020000000000000000}},"30018612":{"solarSystemId":30018612,"solarSystemName":"G:11L9","location":{"x":-14400000000000000000,"y":-245000000000000000,"z":4060000000000000000}},"30018613":{"solarSystemId":30018613,"solarSystemName":"Z:12VN","location":{"x":-13600000000000000000,"y":296000000000000000,"z":4190000000000000000}},"30018614":{"solarSystemId":30018614,"solarSystemName":"Z:E409","location":{"x":-13200000000000000000,"y":838000000000000000,"z":4030000000000000000}},"30018615":{"solarSystemId":30018615,"solarSystemName":"Q:T26A","location":{"x":-13300000000000000000,"y":341000000000000000,"z":4350000000000000000}},"30018616":{"solarSystemId":30018616,"solarSystemName":"G:34TI","location":{"x":-14100000000000000000,"y":163000000000000000,"z":4480000000000000000}},"30018617":{"solarSystemId":30018617,"solarSystemName":"J:14N2","location":{"x":-13400000000000000000,"y":700000000000000000,"z":3740000000000000000}},"30018618":{"solarSystemId":30018618,"solarSystemName":"P:107E","location":{"x":-14100000000000000000,"y":-199000000000000000,"z":4000000000000000000}},"30018619":{"solarSystemId":30018619,"solarSystemName":"D:33I7","location":{"x":-13400000000000000000,"y":177000000000000000,"z":3620000000000000000}},"30018620":{"solarSystemId":30018620,"solarSystemName":"M:15OS","location":{"x":-14000000000000000000,"y":138000000000000000,"z":3050000000000000000}},"30018621":{"solarSystemId":30018621,"solarSystemName":"P:3VA6","location":{"x":-14100000000000000000,"y":-1660000000000000000,"z":3610000000000000000}},"30018622":{"solarSystemId":30018622,"solarSystemName":"G:95N0","location":{"x":-14200000000000000000,"y":590000000000000000,"z":3830000000000000000}},"30018623":{"solarSystemId":30018623,"solarSystemName":"Y:1352","location":{"x":-14200000000000000000,"y":149000000000000000,"z":3830000000000000000}},"30018624":{"solarSystemId":30018624,"solarSystemName":"Z:269I","location":{"x":-14000000000000000000,"y":-417000000000000000,"z":3870000000000000000}},"30018625":{"solarSystemId":30018625,"solarSystemName":"U:S8RT","location":{"x":-14400000000000000000,"y":550000000000000000,"z":4420000000000000000}},"30018626":{"solarSystemId":30018626,"solarSystemName":"B:IV2K","location":{"x":-15100000000000000000,"y":-113000000000000000,"z":3390000000000000000}},"30018627":{"solarSystemId":30018627,"solarSystemName":"H:2ER9","location":{"x":-13400000000000000000,"y":3240000000000000000,"z":5300000000000000000}},"30018628":{"solarSystemId":30018628,"solarSystemName":"B:3S96","location":{"x":-13400000000000000000,"y":976000000000000000,"z":5290000000000000000}},"30018629":{"solarSystemId":30018629,"solarSystemName":"Z:3OVI","location":{"x":-14900000000000000000,"y":1310000000000000000,"z":4210000000000000000}},"30018630":{"solarSystemId":30018630,"solarSystemName":"Q:1KOK","location":{"x":-12100000000000000000,"y":5290000000000000000,"z":4690000000000000000}},"30018631":{"solarSystemId":30018631,"solarSystemName":"D:1S85","location":{"x":-13800000000000000000,"y":720000000000000000,"z":5360000000000000000}},"30018632":{"solarSystemId":30018632,"solarSystemName":"M:1219","location":{"x":-14900000000000000000,"y":2700000000000000000,"z":2980000000000000000}},"30018633":{"solarSystemId":30018633,"solarSystemName":"M:17LA","location":{"x":-14800000000000000000,"y":2800000000000000000,"z":3830000000000000000}},"30018634":{"solarSystemId":30018634,"solarSystemName":"Y:TT30","location":{"x":-14200000000000000000,"y":652000000000000000,"z":5420000000000000000}},"30018635":{"solarSystemId":30018635,"solarSystemName":"U:3AO3","location":{"x":-13900000000000000000,"y":-42000000000000000,"z":2400000000000000000}},"30018636":{"solarSystemId":30018636,"solarSystemName":"Q:2141","location":{"x":-13500000000000000000,"y":75600000000000000,"z":1840000000000000000}},"30018637":{"solarSystemId":30018637,"solarSystemName":"U:R0E6","location":{"x":-13800000000000000000,"y":98600000000000000,"z":2550000000000000000}},"30018638":{"solarSystemId":30018638,"solarSystemName":"U:KS3E","location":{"x":-14800000000000000000,"y":-470000000000000000,"z":1720000000000000000}},"30018639":{"solarSystemId":30018639,"solarSystemName":"G:15E6","location":{"x":-12500000000000000000,"y":-45900000000000000,"z":1750000000000000000}},"30018640":{"solarSystemId":30018640,"solarSystemName":"B:12K2","location":{"x":-12500000000000000000,"y":-145000000000000000,"z":1790000000000000000}},"30018641":{"solarSystemId":30018641,"solarSystemName":"P:K72A","location":{"x":-13600000000000000000,"y":503000000000000000,"z":2270000000000000000}},"30018642":{"solarSystemId":30018642,"solarSystemName":"D:O4SN","location":{"x":-13700000000000000000,"y":-180000000000000000,"z":1650000000000000000}},"30018643":{"solarSystemId":30018643,"solarSystemName":"Y:0000","location":{"x":-13000000000000000000,"y":649000000000000000,"z":1940000000000000000}},"30018644":{"solarSystemId":30018644,"solarSystemName":"J:4N5O","location":{"x":-12600000000000000000,"y":566000000000000000,"z":1940000000000000000}},"30018645":{"solarSystemId":30018645,"solarSystemName":"F:1A76","location":{"x":-14400000000000000000,"y":1400000000000000000,"z":2140000000000000000}},"30018646":{"solarSystemId":30018646,"solarSystemName":"H:2IEE","location":{"x":-13800000000000000000,"y":-175000000000000000,"z":2240000000000000000}},"30018647":{"solarSystemId":30018647,"solarSystemName":"G:1A9E","location":{"x":-13700000000000000000,"y":-562000000000000000,"z":2050000000000000000}},"30018648":{"solarSystemId":30018648,"solarSystemName":"P:2K0T","location":{"x":-13900000000000000000,"y":-47000000000000000,"z":1920000000000000000}},"30018649":{"solarSystemId":30018649,"solarSystemName":"B:13TN","location":{"x":-14000000000000000000,"y":102000000000000000,"z":2680000000000000000}},"30018650":{"solarSystemId":30018650,"solarSystemName":"M:4T3S","location":{"x":-13700000000000000000,"y":-424000000000000000,"z":1580000000000000000}},"30018651":{"solarSystemId":30018651,"solarSystemName":"F:TSKL","location":{"x":-14800000000000000000,"y":261000000000000000,"z":1660000000000000000}},"30018652":{"solarSystemId":30018652,"solarSystemName":"M:36TN","location":{"x":-15000000000000000000,"y":-188000000000000000,"z":1540000000000000000}},"30018653":{"solarSystemId":30018653,"solarSystemName":"U:284N","location":{"x":-15100000000000000000,"y":-59600000000000000,"z":1660000000000000000}},"30018654":{"solarSystemId":30018654,"solarSystemName":"D:28VV","location":{"x":-14600000000000000000,"y":224000000000000000,"z":2760000000000000000}},"30018655":{"solarSystemId":30018655,"solarSystemName":"H:1LR7","location":{"x":-14700000000000000000,"y":371000000000000000,"z":2070000000000000000}},"30018656":{"solarSystemId":30018656,"solarSystemName":"M:46IT","location":{"x":-17000000000000000000,"y":514000000000000000,"z":3790000000000000000}},"30018657":{"solarSystemId":30018657,"solarSystemName":"Y:1SAO","location":{"x":-17500000000000000000,"y":727000000000000000,"z":4140000000000000000}},"30018658":{"solarSystemId":30018658,"solarSystemName":"M:5238","location":{"x":-16800000000000000000,"y":430000000000000000,"z":3820000000000000000}},"30018659":{"solarSystemId":30018659,"solarSystemName":"Z:2ON0","location":{"x":-14900000000000000000,"y":170000000000000000,"z":1770000000000000000}},"30018660":{"solarSystemId":30018660,"solarSystemName":"Z:NO28","location":{"x":-14900000000000000000,"y":-507000000000000000,"z":1840000000000000000}},"30018661":{"solarSystemId":30018661,"solarSystemName":"G:EIAN","location":{"x":-14700000000000000000,"y":-295000000000000000,"z":1910000000000000000}},"30018662":{"solarSystemId":30018662,"solarSystemName":"P:2VR3","location":{"x":-15600000000000000000,"y":234000000000000000,"z":4110000000000000000}},"30018663":{"solarSystemId":30018663,"solarSystemName":"D:1V81","location":{"x":-17500000000000000000,"y":1000000000000000000,"z":3880000000000000000}},"30018664":{"solarSystemId":30018664,"solarSystemName":"U:VK80","location":{"x":-16000000000000000000,"y":1620000000000000000,"z":3850000000000000000}},"30018665":{"solarSystemId":30018665,"solarSystemName":"M:IK8V","location":{"x":-16700000000000000000,"y":118000000000000000,"z":3890000000000000000}},"30018666":{"solarSystemId":30018666,"solarSystemName":"J:EIO3","location":{"x":-15600000000000000000,"y":194000000000000000,"z":3230000000000000000}},"30018667":{"solarSystemId":30018667,"solarSystemName":"D:144R","location":{"x":-15100000000000000000,"y":272000000000000000,"z":2420000000000000000}},"30018668":{"solarSystemId":30018668,"solarSystemName":"B:AK3E","location":{"x":-14100000000000000000,"y":-54400000000000000,"z":2760000000000000000}},"30018669":{"solarSystemId":30018669,"solarSystemName":"H:8INA","location":{"x":-16300000000000000000,"y":276000000000000000,"z":3800000000000000000}},"30018670":{"solarSystemId":30018670,"solarSystemName":"P:3A15","location":{"x":-17100000000000000000,"y":220000000000000000,"z":2170000000000000000}},"30018671":{"solarSystemId":30018671,"solarSystemName":"Q:1NK4","location":{"x":-16200000000000000000,"y":-108000000000000000,"z":2350000000000000000}},"30018672":{"solarSystemId":30018672,"solarSystemName":"Y:ON0S","location":{"x":-16000000000000000000,"y":36800000000000000,"z":2000000000000000000}},"30018673":{"solarSystemId":30018673,"solarSystemName":"D:2ET2","location":{"x":-16900000000000000000,"y":664000000000000000,"z":2010000000000000000}},"30018674":{"solarSystemId":30018674,"solarSystemName":"D:1K1R","location":{"x":-16500000000000000000,"y":-179000000000000000,"z":2940000000000000000}},"30018675":{"solarSystemId":30018675,"solarSystemName":"G:20R9","location":{"x":-16300000000000000000,"y":-49400000000000000,"z":2420000000000000000}},"30018676":{"solarSystemId":30018676,"solarSystemName":"D:1LOS","location":{"x":-16700000000000000000,"y":679000000000000000,"z":1790000000000000000}},"30018677":{"solarSystemId":30018677,"solarSystemName":"P:2136","location":{"x":-16400000000000000000,"y":240000000000000000,"z":1680000000000000000}},"30018678":{"solarSystemId":30018678,"solarSystemName":"P:R2L4","location":{"x":-16300000000000000000,"y":523000000000000000,"z":2690000000000000000}},"30018679":{"solarSystemId":30018679,"solarSystemName":"G:1LN4","location":{"x":-16400000000000000000,"y":-177000000000000000,"z":3210000000000000000}},"30018680":{"solarSystemId":30018680,"solarSystemName":"B:1SE2","location":{"x":-15800000000000000000,"y":657000000000000000,"z":2900000000000000000}},"30018681":{"solarSystemId":30018681,"solarSystemName":"J:276L","location":{"x":-16600000000000000000,"y":165000000000000000,"z":2020000000000000000}},"30018682":{"solarSystemId":30018682,"solarSystemName":"J:11K7","location":{"x":-16500000000000000000,"y":-152000000000000000,"z":2280000000000000000}},"30018683":{"solarSystemId":30018683,"solarSystemName":"H:V2A4","location":{"x":-16900000000000000000,"y":186000000000000000,"z":3260000000000000000}},"30018684":{"solarSystemId":30018684,"solarSystemName":"Z:V5E1","location":{"x":-17400000000000000000,"y":562000000000000000,"z":1900000000000000000}},"30018685":{"solarSystemId":30018685,"solarSystemName":"Y:1664","location":{"x":-17100000000000000000,"y":824000000000000000,"z":3000000000000000000}},"30018686":{"solarSystemId":30018686,"solarSystemName":"U:LLIR","location":{"x":-16900000000000000000,"y":517000000000000000,"z":2170000000000000000}},"30018687":{"solarSystemId":30018687,"solarSystemName":"H:13EV","location":{"x":-16700000000000000000,"y":285000000000000000,"z":3390000000000000000}},"30018688":{"solarSystemId":30018688,"solarSystemName":"H:226K","location":{"x":-15100000000000000000,"y":-370000000000000000,"z":511000000000000000}},"30018689":{"solarSystemId":30018689,"solarSystemName":"D:37NO","location":{"x":-16700000000000000000,"y":-77100000000000000,"z":698000000000000000}},"30018690":{"solarSystemId":30018690,"solarSystemName":"F:3TN2","location":{"x":-16000000000000000000,"y":12200000000000000,"z":524000000000000000}},"30018691":{"solarSystemId":30018691,"solarSystemName":"M:2ISV","location":{"x":-15600000000000000000,"y":-527000000000000000,"z":733000000000000000}},"30018692":{"solarSystemId":30018692,"solarSystemName":"U:1963","location":{"x":-15400000000000000000,"y":689000000000000000,"z":664000000000000000}},"30018693":{"solarSystemId":30018693,"solarSystemName":"B:I638","location":{"x":-16000000000000000000,"y":310000000000000000,"z":910000000000000000}},"30018694":{"solarSystemId":30018694,"solarSystemName":"D:IL5L","location":{"x":-16000000000000000000,"y":-91000000000000000,"z":245000000000000000}},"30018695":{"solarSystemId":30018695,"solarSystemName":"U:1N49","location":{"x":-15500000000000000000,"y":-80500000000000000,"z":275000000000000000}},"30018696":{"solarSystemId":30018696,"solarSystemName":"M:K75A","location":{"x":-16100000000000000000,"y":599000000000000000,"z":1200000000000000000}},"30018697":{"solarSystemId":30018697,"solarSystemName":"M:411L","location":{"x":-15300000000000000000,"y":-277000000000000000,"z":729000000000000000}},"30018698":{"solarSystemId":30018698,"solarSystemName":"B:K45O","location":{"x":-15600000000000000000,"y":-299000000000000000,"z":554000000000000000}},"30018699":{"solarSystemId":30018699,"solarSystemName":"Q:16SN","location":{"x":-15400000000000000000,"y":-284000000000000000,"z":903000000000000000}},"30018700":{"solarSystemId":30018700,"solarSystemName":"F:33IO","location":{"x":-16200000000000000000,"y":394000000000000000,"z":908000000000000000}},"30018701":{"solarSystemId":30018701,"solarSystemName":"J:KA9V","location":{"x":-15600000000000000000,"y":131000000000000000,"z":863000000000000000}},"30018702":{"solarSystemId":30018702,"solarSystemName":"U:V75A","location":{"x":-15800000000000000000,"y":-509000000000000000,"z":8190000000000000}},"30018703":{"solarSystemId":30018703,"solarSystemName":"Y:1581","location":{"x":-15700000000000000000,"y":-376000000000000000,"z":715000000000000000}},"30018704":{"solarSystemId":30018704,"solarSystemName":"Y:1KR1","location":{"x":-15900000000000000000,"y":-102000000000000000,"z":934000000000000000}},"30018705":{"solarSystemId":30018705,"solarSystemName":"U:1L4N","location":{"x":-13100000000000000000,"y":-513000000000000000,"z":480000000000000000}},"30018706":{"solarSystemId":30018706,"solarSystemName":"U:1AVN","location":{"x":-14400000000000000000,"y":-233000000000000000,"z":558000000000000000}},"30018707":{"solarSystemId":30018707,"solarSystemName":"J:OITL","location":{"x":-13400000000000000000,"y":219000000000000000,"z":591000000000000000}},"30018708":{"solarSystemId":30018708,"solarSystemName":"F:17RN","location":{"x":-14300000000000000000,"y":-451000000000000000,"z":369000000000000000}},"30018709":{"solarSystemId":30018709,"solarSystemName":"Y:2LVV","location":{"x":-14200000000000000000,"y":-333000000000000000,"z":-241000000000000000}},"30018710":{"solarSystemId":30018710,"solarSystemName":"G:2VSR","location":{"x":-14400000000000000000,"y":-417000000000000000,"z":58500000000000000}},"30018711":{"solarSystemId":30018711,"solarSystemName":"Z:1I58","location":{"x":-14200000000000000000,"y":-111000000000000000,"z":-172000000000000000}},"30018712":{"solarSystemId":30018712,"solarSystemName":"Y:RRK4","location":{"x":-13800000000000000000,"y":-17400000000000000,"z":401000000000000000}},"30018713":{"solarSystemId":30018713,"solarSystemName":"J:S71R","location":{"x":-13500000000000000000,"y":76700000000000000,"z":-332000000000000000}},"30018714":{"solarSystemId":30018714,"solarSystemName":"G:10TI","location":{"x":-14800000000000000000,"y":-357000000000000000,"z":298000000000000000}},"30018715":{"solarSystemId":30018715,"solarSystemName":"J:11KT","location":{"x":-13500000000000000000,"y":164000000000000000,"z":-585000000000000000}},"30018716":{"solarSystemId":30018716,"solarSystemName":"D:1VTK","location":{"x":-15100000000000000000,"y":-307000000000000000,"z":127000000000000000}},"30018717":{"solarSystemId":30018717,"solarSystemName":"Q:NV3N","location":{"x":-13400000000000000000,"y":-136000000000000000,"z":-294000000000000000}},"30018718":{"solarSystemId":30018718,"solarSystemName":"D:O58N","location":{"x":-13300000000000000000,"y":-357000000000000000,"z":-991000000000000000}},"30018719":{"solarSystemId":30018719,"solarSystemName":"B:5E7T","location":{"x":-14700000000000000000,"y":-127000000000000000,"z":-139000000000000000}},"30018720":{"solarSystemId":30018720,"solarSystemName":"M:KNK5","location":{"x":-14500000000000000000,"y":-322000000000000000,"z":611000000000000000}},"30018721":{"solarSystemId":30018721,"solarSystemName":"B:I906","location":{"x":-13500000000000000000,"y":153000000000000000,"z":-479000000000000000}},"30018722":{"solarSystemId":30018722,"solarSystemName":"H:L308","location":{"x":-13300000000000000000,"y":377000000000000000,"z":850000000000000000}},"30018723":{"solarSystemId":30018723,"solarSystemName":"P:1O8L","location":{"x":-14900000000000000000,"y":-474000000000000000,"z":498000000000000000}},"30018724":{"solarSystemId":30018724,"solarSystemName":"B:R6KI","location":{"x":-12800000000000000000,"y":-249000000000000000,"z":-191000000000000000}},"30018725":{"solarSystemId":30018725,"solarSystemName":"B:268T","location":{"x":-14500000000000000000,"y":-10100000000000000,"z":109000000000000000}},"30018726":{"solarSystemId":30018726,"solarSystemName":"F:1073","location":{"x":-13800000000000000000,"y":-640000000000000000,"z":158000000000000000}},"30018727":{"solarSystemId":30018727,"solarSystemName":"J:130I","location":{"x":-14100000000000000000,"y":-1410000000000000000,"z":631000000000000000}},"30018728":{"solarSystemId":30018728,"solarSystemName":"D:101R","location":{"x":-13400000000000000000,"y":-125000000000000000,"z":-903000000000000000}},"30018729":{"solarSystemId":30018729,"solarSystemName":"Q:5NRN","location":{"x":-13600000000000000000,"y":-360000000000000000,"z":-836000000000000000}},"30018730":{"solarSystemId":30018730,"solarSystemName":"H:3ET8","location":{"x":-14800000000000000000,"y":-2620000000000000000,"z":2640000000000000000}},"30018731":{"solarSystemId":30018731,"solarSystemName":"G:2A19","location":{"x":-14900000000000000000,"y":-1170000000000000000,"z":2540000000000000000}},"30018732":{"solarSystemId":30018732,"solarSystemName":"F:132K","location":{"x":-16600000000000000000,"y":-293000000000000000,"z":3830000000000000000}},"30018733":{"solarSystemId":30018733,"solarSystemName":"H:19OK","location":{"x":-16400000000000000000,"y":-735000000000000000,"z":2560000000000000000}},"30018734":{"solarSystemId":30018734,"solarSystemName":"H:T13I","location":{"x":-15000000000000000000,"y":-1110000000000000000,"z":2000000000000000000}},"30018735":{"solarSystemId":30018735,"solarSystemName":"Z:I280","location":{"x":-15500000000000000000,"y":-610000000000000000,"z":3590000000000000000}},"30018736":{"solarSystemId":30018736,"solarSystemName":"Q:2T3R","location":{"x":-15300000000000000000,"y":-926000000000000000,"z":2620000000000000000}},"30018737":{"solarSystemId":30018737,"solarSystemName":"J:19IT","location":{"x":-17200000000000000000,"y":-863000000000000000,"z":2480000000000000000}},"30018738":{"solarSystemId":30018738,"solarSystemName":"Q:1T4K","location":{"x":-16900000000000000000,"y":-749000000000000000,"z":2720000000000000000}},"30018739":{"solarSystemId":30018739,"solarSystemName":"H:2VKK","location":{"x":-15000000000000000000,"y":-232000000000000000,"z":3230000000000000000}},"30018740":{"solarSystemId":30018740,"solarSystemName":"G:1O9A","location":{"x":-16700000000000000000,"y":-1390000000000000000,"z":4800000000000000000}},"30018741":{"solarSystemId":30018741,"solarSystemName":"F:3A7L","location":{"x":-15900000000000000000,"y":-1730000000000000000,"z":3440000000000000000}},"30018742":{"solarSystemId":30018742,"solarSystemName":"Z:KS0E","location":{"x":-17200000000000000000,"y":-2710000000000000000,"z":1190000000000000000}},"30018743":{"solarSystemId":30018743,"solarSystemName":"M:V740","location":{"x":-16800000000000000000,"y":-2150000000000000000,"z":2130000000000000000}},"30018744":{"solarSystemId":30018744,"solarSystemName":"D:14SE","location":{"x":-15200000000000000000,"y":-303000000000000000,"z":2780000000000000000}},"30018745":{"solarSystemId":30018745,"solarSystemName":"G:19T6","location":{"x":-15600000000000000000,"y":-95600000000000000,"z":3330000000000000000}},"30018746":{"solarSystemId":30018746,"solarSystemName":"F:23V2","location":{"x":-14600000000000000000,"y":-79600000000000000,"z":-873000000000000000}},"30018747":{"solarSystemId":30018747,"solarSystemName":"J:3O24","location":{"x":-15000000000000000000,"y":-199000000000000000,"z":-705000000000000000}},"30018748":{"solarSystemId":30018748,"solarSystemName":"D:KE25","location":{"x":-15900000000000000000,"y":-1220000000000000000,"z":-2680000000000000}},"30018749":{"solarSystemId":30018749,"solarSystemName":"P:4LLE","location":{"x":-15200000000000000000,"y":9890000000000000,"z":-547000000000000000}},"30018750":{"solarSystemId":30018750,"solarSystemName":"Q:12K8","location":{"x":-15800000000000000000,"y":-853000000000000000,"z":158000000000000000}},"30018751":{"solarSystemId":30018751,"solarSystemName":"P:43TI","location":{"x":-14800000000000000000,"y":-1070000000000000000,"z":-1730000000000000000}},"30018752":{"solarSystemId":30018752,"solarSystemName":"Y:1694","location":{"x":-15100000000000000000,"y":-878000000000000000,"z":-848000000000000000}},"30018753":{"solarSystemId":30018753,"solarSystemName":"B:155V","location":{"x":-14400000000000000000,"y":-649000000000000000,"z":-1240000000000000000}},"30018754":{"solarSystemId":30018754,"solarSystemName":"Y:2248","location":{"x":-15100000000000000000,"y":-1170000000000000000,"z":-1020000000000000000}},"30018755":{"solarSystemId":30018755,"solarSystemName":"U:1OAR","location":{"x":-14800000000000000000,"y":-196000000000000000,"z":-982000000000000000}},"30018756":{"solarSystemId":30018756,"solarSystemName":"Q:193I","location":{"x":-14200000000000000000,"y":-700000000000000000,"z":-1700000000000000000}},"30018757":{"solarSystemId":30018757,"solarSystemName":"G:1KON","location":{"x":-15000000000000000000,"y":-855000000000000000,"z":-1470000000000000000}},"30018758":{"solarSystemId":30018758,"solarSystemName":"P:KLI0","location":{"x":-13800000000000000000,"y":-742000000000000000,"z":-1310000000000000000}},"30018759":{"solarSystemId":30018759,"solarSystemName":"Z:15S2","location":{"x":-14600000000000000000,"y":-190000000000000000,"z":-728000000000000000}},"30018760":{"solarSystemId":30018760,"solarSystemName":"D:1755","location":{"x":-15000000000000000000,"y":110000000000000000,"z":-1490000000000000000}},"30018761":{"solarSystemId":30018761,"solarSystemName":"F:A574","location":{"x":-14700000000000000000,"y":166000000000000000,"z":-1060000000000000000}},"30018762":{"solarSystemId":30018762,"solarSystemName":"Z:16K7","location":{"x":-14900000000000000000,"y":-53300000000000000,"z":-1530000000000000000}},"30018763":{"solarSystemId":30018763,"solarSystemName":"J:104E","location":{"x":-15000000000000000000,"y":-653000000000000000,"z":-1110000000000000000}},"30018764":{"solarSystemId":30018764,"solarSystemName":"D:2ONT","location":{"x":-15100000000000000000,"y":-1160000000000000000,"z":-1820000000000000000}},"30018765":{"solarSystemId":30018765,"solarSystemName":"Q:2519","location":{"x":-3330000000000000000,"y":-589000000000000000,"z":11500000000000000000}},"30018766":{"solarSystemId":30018766,"solarSystemName":"H:3OT0","location":{"x":-3020000000000000000,"y":-380000000000000000,"z":10300000000000000000}},"30018767":{"solarSystemId":30018767,"solarSystemName":"U:2N6K","location":{"x":-3320000000000000000,"y":406000000000000000,"z":11000000000000000000}},"30018768":{"solarSystemId":30018768,"solarSystemName":"P:1SK6","location":{"x":-3110000000000000000,"y":-660000000000000000,"z":10500000000000000000}},"30018769":{"solarSystemId":30018769,"solarSystemName":"G:347R","location":{"x":-3580000000000000000,"y":-501000000000000000,"z":11100000000000000000}},"30018770":{"solarSystemId":30018770,"solarSystemName":"H:2T0I","location":{"x":-3680000000000000000,"y":-271000000000000000,"z":11200000000000000000}},"30018771":{"solarSystemId":30018771,"solarSystemName":"H:1ST7","location":{"x":-3330000000000000000,"y":-433000000000000000,"z":10600000000000000000}},"30018772":{"solarSystemId":30018772,"solarSystemName":"P:1NTA","location":{"x":-2870000000000000000,"y":-227000000000000000,"z":11000000000000000000}},"30018773":{"solarSystemId":30018773,"solarSystemName":"H:292E","location":{"x":-3480000000000000000,"y":-147000000000000000,"z":10900000000000000000}},"30018774":{"solarSystemId":30018774,"solarSystemName":"F:1V4V","location":{"x":-2930000000000000000,"y":-427000000000000000,"z":10700000000000000000}},"30018775":{"solarSystemId":30018775,"solarSystemName":"U:2I2L","location":{"x":-3190000000000000000,"y":374000000000000000,"z":10700000000000000000}},"30018776":{"solarSystemId":30018776,"solarSystemName":"H:2NN4","location":{"x":-4190000000000000000,"y":-764000000000000000,"z":10800000000000000000}},"30018777":{"solarSystemId":30018777,"solarSystemName":"H:29RI","location":{"x":-5450000000000000000,"y":735000000000000000,"z":9680000000000000000}},"30018778":{"solarSystemId":30018778,"solarSystemName":"H:3TK7","location":{"x":-3320000000000000000,"y":-1490000000000000000,"z":9730000000000000000}},"30018779":{"solarSystemId":30018779,"solarSystemName":"U:20OR","location":{"x":-3460000000000000000,"y":-1060000000000000000,"z":10300000000000000000}},"30018780":{"solarSystemId":30018780,"solarSystemName":"J:16TS","location":{"x":-4800000000000000000,"y":464000000000000000,"z":10100000000000000000}},"30018781":{"solarSystemId":30018781,"solarSystemName":"J:E2I0","location":{"x":-4280000000000000000,"y":625000000000000000,"z":10500000000000000000}},"30018782":{"solarSystemId":30018782,"solarSystemName":"F:O1SR","location":{"x":-3920000000000000000,"y":-870000000000000000,"z":10300000000000000000}},"30018783":{"solarSystemId":30018783,"solarSystemName":"B:1VA5","location":{"x":-4380000000000000000,"y":1010000000000000000,"z":10600000000000000000}},"30018784":{"solarSystemId":30018784,"solarSystemName":"J:1I0K","location":{"x":-4150000000000000000,"y":-777000000000000000,"z":11600000000000000000}},"30018785":{"solarSystemId":30018785,"solarSystemName":"J:1L5I","location":{"x":-4060000000000000000,"y":-562000000000000000,"z":11400000000000000000}},"30018786":{"solarSystemId":30018786,"solarSystemName":"Y:3120","location":{"x":-4270000000000000000,"y":-465000000000000000,"z":10300000000000000000}},"30018787":{"solarSystemId":30018787,"solarSystemName":"Z:2N1T","location":{"x":-5040000000000000000,"y":-1480000000000000000,"z":10100000000000000000}},"30018788":{"solarSystemId":30018788,"solarSystemName":"F:1AA4","location":{"x":-3350000000000000000,"y":-1350000000000000000,"z":9700000000000000000}},"30018789":{"solarSystemId":30018789,"solarSystemName":"Z:11K3","location":{"x":-5310000000000000000,"y":-513000000000000000,"z":10900000000000000000}},"30018790":{"solarSystemId":30018790,"solarSystemName":"M:3SE2","location":{"x":-1390000000000000000,"y":-1530000000000000000,"z":12900000000000000000}},"30018791":{"solarSystemId":30018791,"solarSystemName":"P:3O65","location":{"x":-1290000000000000000,"y":-1880000000000000000,"z":12400000000000000000}},"30018792":{"solarSystemId":30018792,"solarSystemName":"J:E399","location":{"x":-1560000000000000000,"y":-218000000000000000,"z":11900000000000000000}},"30018793":{"solarSystemId":30018793,"solarSystemName":"B:20RE","location":{"x":-1550000000000000000,"y":-1930000000000000000,"z":13200000000000000000}},"30018794":{"solarSystemId":30018794,"solarSystemName":"H:16KN","location":{"x":-1880000000000000000,"y":-705000000000000000,"z":12800000000000000000}},"30018795":{"solarSystemId":30018795,"solarSystemName":"B:E3AK","location":{"x":-1810000000000000000,"y":-911000000000000000,"z":13000000000000000000}},"30018796":{"solarSystemId":30018796,"solarSystemName":"U:IV49","location":{"x":-1040000000000000000,"y":-2090000000000000000,"z":14100000000000000000}},"30018797":{"solarSystemId":30018797,"solarSystemName":"Z:2R4I","location":{"x":-576000000000000000,"y":-2200000000000000000,"z":12700000000000000000}},"30018798":{"solarSystemId":30018798,"solarSystemName":"Y:380S","location":{"x":-751000000000000000,"y":-2730000000000000000,"z":11700000000000000000}},"30018799":{"solarSystemId":30018799,"solarSystemName":"M:307I","location":{"x":-1670000000000000000,"y":-589000000000000000,"z":12100000000000000000}},"30018800":{"solarSystemId":30018800,"solarSystemName":"Q:51OK","location":{"x":-1400000000000000000,"y":-2440000000000000000,"z":11600000000000000000}},"30018801":{"solarSystemId":30018801,"solarSystemName":"B:1SK3","location":{"x":-1510000000000000000,"y":-265000000000000000,"z":12100000000000000000}},"30018802":{"solarSystemId":30018802,"solarSystemName":"G:3207","location":{"x":-2480000000000000000,"y":-1700000000000000000,"z":10500000000000000000}},"30018803":{"solarSystemId":30018803,"solarSystemName":"J:2N90","location":{"x":-2440000000000000000,"y":-1210000000000000000,"z":10200000000000000000}},"30018804":{"solarSystemId":30018804,"solarSystemName":"P:2N62","location":{"x":-1880000000000000000,"y":-1790000000000000000,"z":10700000000000000000}},"30018805":{"solarSystemId":30018805,"solarSystemName":"Z:4R4L","location":{"x":-2610000000000000000,"y":-1630000000000000000,"z":10600000000000000000}},"30018806":{"solarSystemId":30018806,"solarSystemName":"Z:32V6","location":{"x":-2840000000000000000,"y":-1320000000000000000,"z":10100000000000000000}},"30018807":{"solarSystemId":30018807,"solarSystemName":"Z:1LN4","location":{"x":-2160000000000000000,"y":-1180000000000000000,"z":9770000000000000000}},"30018808":{"solarSystemId":30018808,"solarSystemName":"D:32SV","location":{"x":-2740000000000000000,"y":-1390000000000000000,"z":10000000000000000000}},"30018809":{"solarSystemId":30018809,"solarSystemName":"D:ONK6","location":{"x":-2340000000000000000,"y":-1420000000000000000,"z":10400000000000000000}},"30018810":{"solarSystemId":30018810,"solarSystemName":"J:23KK","location":{"x":-2530000000000000000,"y":-980000000000000000,"z":9740000000000000000}},"30018811":{"solarSystemId":30018811,"solarSystemName":"Y:25E4","location":{"x":-2290000000000000000,"y":-685000000000000000,"z":10100000000000000000}},"30018812":{"solarSystemId":30018812,"solarSystemName":"B:289T","location":{"x":-3170000000000000000,"y":-1490000000000000000,"z":9830000000000000000}},"30018813":{"solarSystemId":30018813,"solarSystemName":"F:1AEK","location":{"x":-3050000000000000000,"y":-1380000000000000000,"z":9780000000000000000}},"30018814":{"solarSystemId":30018814,"solarSystemName":"B:2SO4","location":{"x":-1420000000000000000,"y":4200000000000000000,"z":11000000000000000000}},"30018815":{"solarSystemId":30018815,"solarSystemName":"U:36A9","location":{"x":-1560000000000000000,"y":2060000000000000000,"z":10500000000000000000}},"30018816":{"solarSystemId":30018816,"solarSystemName":"M:3S3O","location":{"x":-3330000000000000000,"y":1360000000000000000,"z":8280000000000000000}},"30018817":{"solarSystemId":30018817,"solarSystemName":"B:32AK","location":{"x":-3700000000000000000,"y":2150000000000000000,"z":10100000000000000000}},"30018818":{"solarSystemId":30018818,"solarSystemName":"J:3T1O","location":{"x":-2640000000000000000,"y":2290000000000000000,"z":10000000000000000000}},"30018819":{"solarSystemId":30018819,"solarSystemName":"Z:33TA","location":{"x":-2920000000000000000,"y":1710000000000000000,"z":8550000000000000000}},"30018820":{"solarSystemId":30018820,"solarSystemName":"Z:V442","location":{"x":-1520000000000000000,"y":325000000000000000,"z":9870000000000000000}},"30018821":{"solarSystemId":30018821,"solarSystemName":"M:1V8S","location":{"x":-826000000000000000,"y":400000000000000000,"z":11200000000000000000}},"30018822":{"solarSystemId":30018822,"solarSystemName":"P:4606","location":{"x":-1880000000000000000,"y":446000000000000000,"z":12000000000000000000}},"30018823":{"solarSystemId":30018823,"solarSystemName":"P:3399","location":{"x":-2590000000000000000,"y":-601000000000000000,"z":11000000000000000000}},"30018824":{"solarSystemId":30018824,"solarSystemName":"F:1O84","location":{"x":-2770000000000000000,"y":-256000000000000000,"z":11200000000000000000}},"30018825":{"solarSystemId":30018825,"solarSystemName":"Q:16I0","location":{"x":-2530000000000000000,"y":562000000000000000,"z":11600000000000000000}},"30018826":{"solarSystemId":30018826,"solarSystemName":"B:2KT6","location":{"x":-2020000000000000000,"y":-701000000000000000,"z":10800000000000000000}},"30018827":{"solarSystemId":30018827,"solarSystemName":"P:1644","location":{"x":-2050000000000000000,"y":-183000000000000000,"z":11100000000000000000}},"30018828":{"solarSystemId":30018828,"solarSystemName":"D:28LT","location":{"x":-2150000000000000000,"y":-646000000000000000,"z":11300000000000000000}},"30018829":{"solarSystemId":30018829,"solarSystemName":"M:2K6E","location":{"x":-2060000000000000000,"y":-676000000000000000,"z":11500000000000000000}},"30018830":{"solarSystemId":30018830,"solarSystemName":"J:1EI8","location":{"x":-3910000000000000000,"y":-795000000000000000,"z":11200000000000000000}},"30018831":{"solarSystemId":30018831,"solarSystemName":"D:1V97","location":{"x":-1790000000000000000,"y":-274000000000000000,"z":11600000000000000000}},"30018832":{"solarSystemId":30018832,"solarSystemName":"Q:329R","location":{"x":-3160000000000000000,"y":-537000000000000000,"z":11500000000000000000}},"30018833":{"solarSystemId":30018833,"solarSystemName":"Z:1N53","location":{"x":-2400000000000000000,"y":577000000000000000,"z":11300000000000000000}},"30018834":{"solarSystemId":30018834,"solarSystemName":"M:2SNV","location":{"x":-2160000000000000000,"y":102000000000000000,"z":9440000000000000000}},"30018835":{"solarSystemId":30018835,"solarSystemName":"Z:27A4","location":{"x":-2860000000000000000,"y":-74800000000000000,"z":10200000000000000000}},"30018836":{"solarSystemId":30018836,"solarSystemName":"F:TAV3","location":{"x":-3880000000000000000,"y":-527000000000000000,"z":9580000000000000000}},"30018837":{"solarSystemId":30018837,"solarSystemName":"Q:153A","location":{"x":-2870000000000000000,"y":387000000000000000,"z":9670000000000000000}},"30018838":{"solarSystemId":30018838,"solarSystemName":"F:2504","location":{"x":-2890000000000000000,"y":-324000000000000000,"z":9190000000000000000}},"30018839":{"solarSystemId":30018839,"solarSystemName":"Z:28LL","location":{"x":-2990000000000000000,"y":-1240000000000000000,"z":9250000000000000000}},"30018840":{"solarSystemId":30018840,"solarSystemName":"Y:2334","location":{"x":-2960000000000000000,"y":-917000000000000000,"z":9440000000000000000}},"30018841":{"solarSystemId":30018841,"solarSystemName":"Q:27A2","location":{"x":-2920000000000000000,"y":-844000000000000000,"z":9280000000000000000}},"30018842":{"solarSystemId":30018842,"solarSystemName":"P:24T6","location":{"x":-2790000000000000000,"y":-268000000000000000,"z":9460000000000000000}},"30018843":{"solarSystemId":30018843,"solarSystemName":"D:3TNS","location":{"x":-3400000000000000000,"y":-1090000000000000000,"z":10100000000000000000}},"30018844":{"solarSystemId":30018844,"solarSystemName":"Z:30OI","location":{"x":-3080000000000000000,"y":-869000000000000000,"z":9590000000000000000}},"30018845":{"solarSystemId":30018845,"solarSystemName":"F:18LR","location":{"x":-2910000000000000000,"y":-371000000000000000,"z":9700000000000000000}},"30018846":{"solarSystemId":30018846,"solarSystemName":"M:11E6","location":{"x":542000000000000000,"y":-1950000000000000000,"z":13900000000000000000}},"30018847":{"solarSystemId":30018847,"solarSystemName":"J:2212","location":{"x":545000000000000000,"y":-2190000000000000000,"z":11800000000000000000}},"30018848":{"solarSystemId":30018848,"solarSystemName":"G:35KR","location":{"x":592000000000000000,"y":-607000000000000000,"z":15800000000000000000}},"30018849":{"solarSystemId":30018849,"solarSystemName":"D:2A8N","location":{"x":-834000000000000000,"y":-3000000000000000000,"z":15300000000000000000}},"30018850":{"solarSystemId":30018850,"solarSystemName":"F:22E7","location":{"x":-1290000000000000000,"y":-403000000000000000,"z":14000000000000000000}},"30018851":{"solarSystemId":30018851,"solarSystemName":"Y:203S","location":{"x":1640000000000000000,"y":-1890000000000000000,"z":12300000000000000000}},"30018852":{"solarSystemId":30018852,"solarSystemName":"Y:47KE","location":{"x":-1060000000000000000,"y":-183000000000000000,"z":13700000000000000000}},"30018853":{"solarSystemId":30018853,"solarSystemName":"U:133A","location":{"x":384000000000000000,"y":-1220000000000000000,"z":15400000000000000000}},"30018854":{"solarSystemId":30018854,"solarSystemName":"Y:20A8","location":{"x":1220000000000000000,"y":-1660000000000000000,"z":11600000000000000000}},"30018855":{"solarSystemId":30018855,"solarSystemName":"Z:23V5","location":{"x":-913000000000000000,"y":-278000000000000000,"z":14000000000000000000}},"30018856":{"solarSystemId":30018856,"solarSystemName":"M:3OE8","location":{"x":752000000000000000,"y":42100000000000000,"z":15300000000000000000}},"30018857":{"solarSystemId":30018857,"solarSystemName":"U:36LT","location":{"x":-5140000000000000000,"y":1650000000000000000,"z":11600000000000000000}},"30018858":{"solarSystemId":30018858,"solarSystemName":"G:1S72","location":{"x":-5420000000000000000,"y":501000000000000000,"z":12600000000000000000}},"30018859":{"solarSystemId":30018859,"solarSystemName":"P:12A7","location":{"x":-5400000000000000000,"y":-140000000000000000,"z":13000000000000000000}},"30018860":{"solarSystemId":30018860,"solarSystemName":"Q:31IL","location":{"x":-5410000000000000000,"y":-519000000000000000,"z":12300000000000000000}},"30018861":{"solarSystemId":30018861,"solarSystemName":"F:14AA","location":{"x":-5760000000000000000,"y":-245000000000000000,"z":13000000000000000000}},"30018862":{"solarSystemId":30018862,"solarSystemName":"Z:2L5A","location":{"x":-5210000000000000000,"y":-570000000000000000,"z":12900000000000000000}},"30018863":{"solarSystemId":30018863,"solarSystemName":"Q:4159","location":{"x":-5770000000000000000,"y":-998000000000000000,"z":12000000000000000000}},"30018864":{"solarSystemId":30018864,"solarSystemName":"B:143L","location":{"x":-6760000000000000000,"y":150000000000000000,"z":13300000000000000000}},"30018865":{"solarSystemId":30018865,"solarSystemName":"Q:3N81","location":{"x":-6670000000000000000,"y":481000000000000000,"z":13300000000000000000}},"30018866":{"solarSystemId":30018866,"solarSystemName":"P:2NK6","location":{"x":-5540000000000000000,"y":-5090000000000000000,"z":11000000000000000000}},"30018867":{"solarSystemId":30018867,"solarSystemName":"M:1R59","location":{"x":-5030000000000000000,"y":-4480000000000000000,"z":12000000000000000000}},"30018868":{"solarSystemId":30018868,"solarSystemName":"B:3TAE","location":{"x":-4410000000000000000,"y":-3470000000000000000,"z":12800000000000000000}},"30018869":{"solarSystemId":30018869,"solarSystemName":"P:207V","location":{"x":-5640000000000000000,"y":-2530000000000000000,"z":11700000000000000000}},"30018870":{"solarSystemId":30018870,"solarSystemName":"J:2LAE","location":{"x":-5730000000000000000,"y":-4220000000000000000,"z":12800000000000000000}},"30018871":{"solarSystemId":30018871,"solarSystemName":"Y:38T9","location":{"x":-5610000000000000000,"y":-2670000000000000000,"z":11600000000000000000}},"30018872":{"solarSystemId":30018872,"solarSystemName":"D:2V84","location":{"x":-12200000000000000000,"y":831000000000000000,"z":2780000000000000000}},"30018873":{"solarSystemId":30018873,"solarSystemName":"J:3I83","location":{"x":-12800000000000000000,"y":36100000000000000,"z":2810000000000000000}},"30018874":{"solarSystemId":30018874,"solarSystemName":"Q:2S6N","location":{"x":-13100000000000000000,"y":343000000000000000,"z":2510000000000000000}},"30018875":{"solarSystemId":30018875,"solarSystemName":"Y:ENAO","location":{"x":-13400000000000000000,"y":-342000000000000000,"z":4180000000000000000}},"30018876":{"solarSystemId":30018876,"solarSystemName":"Q:107R","location":{"x":-11900000000000000000,"y":166000000000000000,"z":2760000000000000000}},"30018877":{"solarSystemId":30018877,"solarSystemName":"Y:440L","location":{"x":-13100000000000000000,"y":-45400000000000000,"z":3280000000000000000}},"30018878":{"solarSystemId":30018878,"solarSystemName":"U:1952","location":{"x":-12700000000000000000,"y":-200000000000000000,"z":3510000000000000000}},"30018879":{"solarSystemId":30018879,"solarSystemName":"F:1A47","location":{"x":-12600000000000000000,"y":-230000000000000000,"z":2820000000000000000}},"30018880":{"solarSystemId":30018880,"solarSystemName":"H:TA34","location":{"x":-12900000000000000000,"y":507000000000000000,"z":2550000000000000000}},"30018881":{"solarSystemId":30018881,"solarSystemName":"F:1NET","location":{"x":-12400000000000000000,"y":-255000000000000000,"z":2980000000000000000}},"30018882":{"solarSystemId":30018882,"solarSystemName":"U:168V","location":{"x":-12600000000000000000,"y":190000000000000000,"z":1950000000000000000}},"30018883":{"solarSystemId":30018883,"solarSystemName":"B:1TKA","location":{"x":-12400000000000000000,"y":1900000000000000,"z":3630000000000000000}},"30018884":{"solarSystemId":30018884,"solarSystemName":"Q:4SV3","location":{"x":-12000000000000000000,"y":278000000000000000,"z":2730000000000000000}},"30018885":{"solarSystemId":30018885,"solarSystemName":"G:1AV5","location":{"x":-12900000000000000000,"y":-615000000000000000,"z":3820000000000000000}},"30018886":{"solarSystemId":30018886,"solarSystemName":"F:27AK","location":{"x":-13100000000000000000,"y":77300000000000000,"z":2490000000000000000}},"30018887":{"solarSystemId":30018887,"solarSystemName":"P:2E22","location":{"x":-13300000000000000000,"y":24900000000000000,"z":2290000000000000000}},"30018888":{"solarSystemId":30018888,"solarSystemName":"Z:3528","location":{"x":-12800000000000000000,"y":211000000000000000,"z":2550000000000000000}},"30018889":{"solarSystemId":30018889,"solarSystemName":"H:RON7","location":{"x":-12900000000000000000,"y":-846000000000000000,"z":2420000000000000000}},"30018890":{"solarSystemId":30018890,"solarSystemName":"Z:R1IT","location":{"x":-12000000000000000000,"y":592000000000000000,"z":2570000000000000000}},"30018891":{"solarSystemId":30018891,"solarSystemName":"J:34V9","location":{"x":-16500000000000000000,"y":-4280000000000000000,"z":5510000000000000000}},"30018892":{"solarSystemId":30018892,"solarSystemName":"M:3AST","location":{"x":-18400000000000000000,"y":-6230000000000000000,"z":7430000000000000000}},"30018893":{"solarSystemId":30018893,"solarSystemName":"F:RNS5","location":{"x":-17300000000000000000,"y":-1800000000000000000,"z":8590000000000000000}},"30018894":{"solarSystemId":30018894,"solarSystemName":"D:21E1","location":{"x":-16800000000000000000,"y":-943000000000000000,"z":6110000000000000000}},"30018895":{"solarSystemId":30018895,"solarSystemName":"Q:E57V","location":{"x":-14200000000000000000,"y":-1150000000000000000,"z":5550000000000000000}},"30018896":{"solarSystemId":30018896,"solarSystemName":"H:2L35","location":{"x":-14000000000000000000,"y":-1500000000000000000,"z":6250000000000000000}},"30018897":{"solarSystemId":30018897,"solarSystemName":"M:4LA8","location":{"x":-15100000000000000000,"y":-2450000000000000000,"z":5820000000000000000}},"30018898":{"solarSystemId":30018898,"solarSystemName":"M:3RKL","location":{"x":-17400000000000000000,"y":-2230000000000000000,"z":7150000000000000000}},"30018899":{"solarSystemId":30018899,"solarSystemName":"P:4OTA","location":{"x":-16700000000000000000,"y":-456000000000000000,"z":6010000000000000000}},"30018900":{"solarSystemId":30018900,"solarSystemName":"D:18AO","location":{"x":-14600000000000000000,"y":-870000000000000000,"z":4980000000000000000}},"30018901":{"solarSystemId":30018901,"solarSystemName":"F:35TV","location":{"x":-11300000000000000000,"y":-325000000000000000,"z":8020000000000000000}},"30018902":{"solarSystemId":30018902,"solarSystemName":"G:212V","location":{"x":-11100000000000000000,"y":-1260000000000000000,"z":7930000000000000000}},"30018903":{"solarSystemId":30018903,"solarSystemName":"F:13E2","location":{"x":-11400000000000000000,"y":69200000000000000,"z":8140000000000000000}},"30018904":{"solarSystemId":30018904,"solarSystemName":"F:1970","location":{"x":-11900000000000000000,"y":-249000000000000000,"z":7220000000000000000}},"30018905":{"solarSystemId":30018905,"solarSystemName":"G:E97T","location":{"x":-10900000000000000000,"y":147000000000000000,"z":7540000000000000000}},"30018906":{"solarSystemId":30018906,"solarSystemName":"B:RLOO","location":{"x":-11200000000000000000,"y":15700000000000000,"z":7570000000000000000}},"30018907":{"solarSystemId":30018907,"solarSystemName":"P:3ROO","location":{"x":-9820000000000000000,"y":-20500000000000000,"z":7190000000000000000}},"30018908":{"solarSystemId":30018908,"solarSystemName":"Y:149R","location":{"x":-10200000000000000000,"y":-206000000000000000,"z":7660000000000000000}},"30018909":{"solarSystemId":30018909,"solarSystemName":"Y:1890","location":{"x":-11000000000000000000,"y":-66100000000000000,"z":7180000000000000000}},"30018910":{"solarSystemId":30018910,"solarSystemName":"B:10RR","location":{"x":-11400000000000000000,"y":65800000000000000,"z":6730000000000000000}},"30018911":{"solarSystemId":30018911,"solarSystemName":"B:35VR","location":{"x":-10400000000000000000,"y":-40700000000000000,"z":8100000000000000000}},"30018912":{"solarSystemId":30018912,"solarSystemName":"D:2A62","location":{"x":-10800000000000000000,"y":-161000000000000000,"z":7580000000000000000}},"30018913":{"solarSystemId":30018913,"solarSystemName":"D:1A1E","location":{"x":-10700000000000000000,"y":50500000000000000,"z":7510000000000000000}},"30018914":{"solarSystemId":30018914,"solarSystemName":"M:OR25","location":{"x":-11700000000000000000,"y":-217000000000000000,"z":7280000000000000000}},"30018915":{"solarSystemId":30018915,"solarSystemName":"F:3N0N","location":{"x":-9940000000000000000,"y":758000000000000000,"z":4360000000000000000}},"30018916":{"solarSystemId":30018916,"solarSystemName":"F:37AT","location":{"x":-10300000000000000000,"y":850000000000000000,"z":5640000000000000000}},"30018917":{"solarSystemId":30018917,"solarSystemName":"J:15T0","location":{"x":-10500000000000000000,"y":75700000000000000,"z":5960000000000000000}},"30018918":{"solarSystemId":30018918,"solarSystemName":"Y:1O7L","location":{"x":-9790000000000000000,"y":-53300000000000000,"z":5260000000000000000}},"30018919":{"solarSystemId":30018919,"solarSystemName":"M:2N2N","location":{"x":-11000000000000000000,"y":457000000000000000,"z":5810000000000000000}},"30018920":{"solarSystemId":30018920,"solarSystemName":"Q:1527","location":{"x":-11700000000000000000,"y":747000000000000000,"z":5660000000000000000}},"30018921":{"solarSystemId":30018921,"solarSystemName":"Y:3AO5","location":{"x":-10700000000000000000,"y":381000000000000000,"z":5560000000000000000}},"30018922":{"solarSystemId":30018922,"solarSystemName":"Z:32K3","location":{"x":-10400000000000000000,"y":2010000000000000000,"z":4730000000000000000}},"30018923":{"solarSystemId":30018923,"solarSystemName":"M:1LE5","location":{"x":-10200000000000000000,"y":-62600000000000000,"z":6760000000000000000}},"30018924":{"solarSystemId":30018924,"solarSystemName":"F:19TK","location":{"x":-9480000000000000000,"y":-191000000000000000,"z":5850000000000000000}},"30018925":{"solarSystemId":30018925,"solarSystemName":"B:35A1","location":{"x":-9350000000000000000,"y":-254000000000000000,"z":6440000000000000000}},"30018926":{"solarSystemId":30018926,"solarSystemName":"Q:222I","location":{"x":-11200000000000000000,"y":-218000000000000000,"z":6220000000000000000}},"30018927":{"solarSystemId":30018927,"solarSystemName":"M:3161","location":{"x":-11100000000000000000,"y":-89200000000000000,"z":4950000000000000000}},"30018928":{"solarSystemId":30018928,"solarSystemName":"Y:10I7","location":{"x":-10300000000000000000,"y":-140000000000000000,"z":4680000000000000000}},"30018929":{"solarSystemId":30018929,"solarSystemName":"Z:32AL","location":{"x":-11700000000000000000,"y":-718000000000000000,"z":4240000000000000000}},"30018930":{"solarSystemId":30018930,"solarSystemName":"P:2L45","location":{"x":-11700000000000000000,"y":398000000000000000,"z":4600000000000000000}},"30018931":{"solarSystemId":30018931,"solarSystemName":"U:9I7T","location":{"x":-12300000000000000000,"y":-188000000000000000,"z":4610000000000000000}},"30018932":{"solarSystemId":30018932,"solarSystemName":"Z:10R7","location":{"x":-11700000000000000000,"y":-90300000000000000,"z":3580000000000000000}},"30018933":{"solarSystemId":30018933,"solarSystemName":"Z:2SRN","location":{"x":-12300000000000000000,"y":-211000000000000000,"z":3760000000000000000}},"30018934":{"solarSystemId":30018934,"solarSystemName":"M:1196","location":{"x":-12000000000000000000,"y":157000000000000000,"z":5880000000000000000}},"30018935":{"solarSystemId":30018935,"solarSystemName":"Q:13VV","location":{"x":-11600000000000000000,"y":75800000000000000,"z":3600000000000000000}},"30018936":{"solarSystemId":30018936,"solarSystemName":"J:O513","location":{"x":-12200000000000000000,"y":625000000000000000,"z":6620000000000000000}},"30018937":{"solarSystemId":30018937,"solarSystemName":"Z:1A8V","location":{"x":-12500000000000000000,"y":294000000000000000,"z":6130000000000000000}},"30018938":{"solarSystemId":30018938,"solarSystemName":"Q:3O7T","location":{"x":-11400000000000000000,"y":282000000000000000,"z":3930000000000000000}},"30018939":{"solarSystemId":30018939,"solarSystemName":"D:2R6T","location":{"x":-12700000000000000000,"y":593000000000000000,"z":4610000000000000000}},"30018940":{"solarSystemId":30018940,"solarSystemName":"J:1ELO","location":{"x":-12600000000000000000,"y":46100000000000000,"z":5340000000000000000}},"30018941":{"solarSystemId":30018941,"solarSystemName":"Y:1N7T","location":{"x":-11700000000000000000,"y":-825000000000000000,"z":4540000000000000000}},"30018942":{"solarSystemId":30018942,"solarSystemName":"U:O2L5","location":{"x":-11300000000000000000,"y":69000000000000000,"z":3390000000000000000}},"30018943":{"solarSystemId":30018943,"solarSystemName":"F:1SV6","location":{"x":-11100000000000000000,"y":-176000000000000000,"z":3510000000000000000}},"30018944":{"solarSystemId":30018944,"solarSystemName":"D:1K0L","location":{"x":-11300000000000000000,"y":36600000000000000,"z":3340000000000000000}},"30018945":{"solarSystemId":30018945,"solarSystemName":"U:21R2","location":{"x":-13900000000000000000,"y":-136000000000000000,"z":8320000000000000000}},"30018946":{"solarSystemId":30018946,"solarSystemName":"U:1ILO","location":{"x":-12700000000000000000,"y":-571000000000000000,"z":8610000000000000000}},"30018947":{"solarSystemId":30018947,"solarSystemName":"D:1A3R","location":{"x":-12000000000000000000,"y":232000000000000000,"z":7750000000000000000}},"30018948":{"solarSystemId":30018948,"solarSystemName":"P:3K3K","location":{"x":-13100000000000000000,"y":-43500000000000000,"z":8200000000000000000}},"30018949":{"solarSystemId":30018949,"solarSystemName":"D:19T2","location":{"x":-13600000000000000000,"y":-537000000000000000,"z":7480000000000000000}},"30018950":{"solarSystemId":30018950,"solarSystemName":"Z:14TA","location":{"x":-13000000000000000000,"y":188000000000000000,"z":7980000000000000000}},"30018951":{"solarSystemId":30018951,"solarSystemName":"U:S4T7","location":{"x":-13600000000000000000,"y":30500000000000000,"z":7570000000000000000}},"30018952":{"solarSystemId":30018952,"solarSystemName":"P:1S0S","location":{"x":-12100000000000000000,"y":612000000000000000,"z":7290000000000000000}},"30018953":{"solarSystemId":30018953,"solarSystemName":"Y:O05S","location":{"x":-13200000000000000000,"y":28400000000000000,"z":8020000000000000000}},"30018954":{"solarSystemId":30018954,"solarSystemName":"J:LILO","location":{"x":-12500000000000000000,"y":-35600000000000000,"z":7400000000000000000}},"30018955":{"solarSystemId":30018955,"solarSystemName":"P:LE30","location":{"x":-13700000000000000000,"y":-313000000000000000,"z":7420000000000000000}},"30018956":{"solarSystemId":30018956,"solarSystemName":"B:IT61","location":{"x":-13200000000000000000,"y":208000000000000000,"z":7600000000000000000}},"30018957":{"solarSystemId":30018957,"solarSystemName":"Z:3T03","location":{"x":-12200000000000000000,"y":-2990000000000000000,"z":5570000000000000000}},"30018958":{"solarSystemId":30018958,"solarSystemName":"P:1A8R","location":{"x":-12800000000000000000,"y":-2510000000000000000,"z":7540000000000000000}},"30018959":{"solarSystemId":30018959,"solarSystemName":"Q:3OAS","location":{"x":-11700000000000000000,"y":-3350000000000000000,"z":7740000000000000000}},"30018960":{"solarSystemId":30018960,"solarSystemName":"P:3A1S","location":{"x":-12900000000000000000,"y":-2070000000000000000,"z":5570000000000000000}},"30018961":{"solarSystemId":30018961,"solarSystemName":"F:2645","location":{"x":-12100000000000000000,"y":-2110000000000000000,"z":6720000000000000000}},"30018962":{"solarSystemId":30018962,"solarSystemName":"G:30NV","location":{"x":-12800000000000000000,"y":-1770000000000000000,"z":4220000000000000000}},"30018963":{"solarSystemId":30018963,"solarSystemName":"F:2643","location":{"x":-11700000000000000000,"y":-2570000000000000000,"z":6930000000000000000}},"30018964":{"solarSystemId":30018964,"solarSystemName":"B:27K2","location":{"x":-11900000000000000000,"y":-1440000000000000000,"z":5550000000000000000}},"30018965":{"solarSystemId":30018965,"solarSystemName":"D:1R4V","location":{"x":-11800000000000000000,"y":-2570000000000000000,"z":7260000000000000000}},"30018966":{"solarSystemId":30018966,"solarSystemName":"P:26OA","location":{"x":-12600000000000000000,"y":-2040000000000000000,"z":7110000000000000000}},"30018967":{"solarSystemId":30018967,"solarSystemName":"Y:2TL2","location":{"x":-11500000000000000000,"y":-1450000000000000000,"z":5450000000000000000}},"30018968":{"solarSystemId":30018968,"solarSystemName":"F:IK2V","location":{"x":-11000000000000000000,"y":-3230000000000000000,"z":7240000000000000000}},"30018969":{"solarSystemId":30018969,"solarSystemName":"G:1IO5","location":{"x":-9720000000000000000,"y":-2080000000000000000,"z":5200000000000000000}},"30018970":{"solarSystemId":30018970,"solarSystemName":"J:256A","location":{"x":-9910000000000000000,"y":-1810000000000000000,"z":6440000000000000000}},"30018971":{"solarSystemId":30018971,"solarSystemName":"F:1I60","location":{"x":-8300000000000000000,"y":-1830000000000000000,"z":5220000000000000000}},"30018972":{"solarSystemId":30018972,"solarSystemName":"D:4NR5","location":{"x":-8450000000000000000,"y":-2320000000000000000,"z":5220000000000000000}},"30018973":{"solarSystemId":30018973,"solarSystemName":"Q:R4SE","location":{"x":-9500000000000000000,"y":-1800000000000000000,"z":6760000000000000000}},"30018974":{"solarSystemId":30018974,"solarSystemName":"P:1NAE","location":{"x":-9810000000000000000,"y":-3270000000000000000,"z":5830000000000000000}},"30018975":{"solarSystemId":30018975,"solarSystemName":"U:1TA6","location":{"x":-10200000000000000000,"y":-2400000000000000000,"z":7280000000000000000}},"30018976":{"solarSystemId":30018976,"solarSystemName":"F:R5KO","location":{"x":-9290000000000000000,"y":-2400000000000000000,"z":5980000000000000000}},"30018977":{"solarSystemId":30018977,"solarSystemName":"F:3EA3","location":{"x":-10100000000000000000,"y":-2630000000000000000,"z":5510000000000000000}},"30018978":{"solarSystemId":30018978,"solarSystemName":"M:1S1V","location":{"x":-9340000000000000000,"y":-2030000000000000000,"z":7170000000000000000}},"30018979":{"solarSystemId":30018979,"solarSystemName":"H:21IK","location":{"x":-9270000000000000000,"y":-1750000000000000000,"z":5080000000000000000}},"30018980":{"solarSystemId":30018980,"solarSystemName":"Q:3741","location":{"x":-9280000000000000000,"y":-1820000000000000000,"z":6770000000000000000}},"30018981":{"solarSystemId":30018981,"solarSystemName":"P:198S","location":{"x":-9140000000000000000,"y":-3240000000000000000,"z":6690000000000000000}},"30018982":{"solarSystemId":30018982,"solarSystemName":"Y:4NV8","location":{"x":-9570000000000000000,"y":1740000000000000000,"z":-16100000000000000000}},"30018983":{"solarSystemId":30018983,"solarSystemName":"F:3N95","location":{"x":-9330000000000000000,"y":2160000000000000000,"z":-17200000000000000000}},"30018984":{"solarSystemId":30018984,"solarSystemName":"P:1S3T","location":{"x":-8900000000000000000,"y":1740000000000000000,"z":-17200000000000000000}},"30018985":{"solarSystemId":30018985,"solarSystemName":"B:39K4","location":{"x":-8600000000000000000,"y":1310000000000000000,"z":-16100000000000000000}},"30018986":{"solarSystemId":30018986,"solarSystemName":"Z:2OKO","location":{"x":-9220000000000000000,"y":2220000000000000000,"z":-16400000000000000000}},"30018987":{"solarSystemId":30018987,"solarSystemName":"G:1R87","location":{"x":-9560000000000000000,"y":2670000000000000000,"z":-18000000000000000000}},"30018988":{"solarSystemId":30018988,"solarSystemName":"F:37S8","location":{"x":-9670000000000000000,"y":2600000000000000000,"z":-16300000000000000000}},"30018989":{"solarSystemId":30018989,"solarSystemName":"H:2490","location":{"x":-9920000000000000000,"y":2560000000000000000,"z":-16000000000000000000}},"30018990":{"solarSystemId":30018990,"solarSystemName":"H:2ELK","location":{"x":-9080000000000000000,"y":2450000000000000000,"z":-16000000000000000000}},"30018991":{"solarSystemId":30018991,"solarSystemName":"B:3A8O","location":{"x":-9360000000000000000,"y":2510000000000000000,"z":-17600000000000000000}},"30018992":{"solarSystemId":30018992,"solarSystemName":"Z:212A","location":{"x":-9670000000000000000,"y":-55000000000000000,"z":-19000000000000000000}},"30018993":{"solarSystemId":30018993,"solarSystemName":"U:ERSK","location":{"x":-9180000000000000000,"y":958000000000000000,"z":-18200000000000000000}},"30018994":{"solarSystemId":30018994,"solarSystemName":"M:3N34","location":{"x":-8860000000000000000,"y":-871000000000000000,"z":-18300000000000000000}},"30018995":{"solarSystemId":30018995,"solarSystemName":"G:16A0","location":{"x":-9680000000000000000,"y":304000000000000000,"z":-18600000000000000000}},"30018996":{"solarSystemId":30018996,"solarSystemName":"D:1N74","location":{"x":-8960000000000000000,"y":1280000000000000000,"z":-18700000000000000000}},"30018997":{"solarSystemId":30018997,"solarSystemName":"U:25AL","location":{"x":-9260000000000000000,"y":48500000000000000,"z":-18800000000000000000}},"30018998":{"solarSystemId":30018998,"solarSystemName":"H:1R64","location":{"x":-9370000000000000000,"y":-455000000000000000,"z":-18600000000000000000}},"30018999":{"solarSystemId":30018999,"solarSystemName":"H:321L","location":{"x":-8930000000000000000,"y":140000000000000000,"z":-18900000000000000000}},"30019000":{"solarSystemId":30019000,"solarSystemName":"M:RNN5","location":{"x":-8750000000000000000,"y":845000000000000000,"z":-18000000000000000000}},"30019001":{"solarSystemId":30019001,"solarSystemName":"M:14KR","location":{"x":-11500000000000000000,"y":-375000000000000000,"z":-18500000000000000000}},"30019002":{"solarSystemId":30019002,"solarSystemName":"U:2174","location":{"x":-11300000000000000000,"y":-504000000000000000,"z":-18000000000000000000}},"30019003":{"solarSystemId":30019003,"solarSystemName":"Z:1V07","location":{"x":-10900000000000000000,"y":87600000000000000,"z":-18800000000000000000}},"30019004":{"solarSystemId":30019004,"solarSystemName":"P:TO32","location":{"x":-12100000000000000000,"y":730000000000000000,"z":-23400000000000000000}},"30019005":{"solarSystemId":30019005,"solarSystemName":"Z:35VR","location":{"x":-9620000000000000000,"y":167000000000000000,"z":-21800000000000000000}},"30019006":{"solarSystemId":30019006,"solarSystemName":"P:1K6K","location":{"x":-11100000000000000000,"y":902000000000000000,"z":-19400000000000000000}},"30019007":{"solarSystemId":30019007,"solarSystemName":"B:19TO","location":{"x":-11100000000000000000,"y":1040000000000000000,"z":-20700000000000000000}},"30019008":{"solarSystemId":30019008,"solarSystemName":"G:25SA","location":{"x":-11100000000000000000,"y":1260000000000000000,"z":-17500000000000000000}},"30019009":{"solarSystemId":30019009,"solarSystemName":"Z:1S2S","location":{"x":-11000000000000000000,"y":1880000000000000000,"z":-18100000000000000000}},"30019010":{"solarSystemId":30019010,"solarSystemName":"U:1ATI","location":{"x":-11000000000000000000,"y":1380000000000000000,"z":-18800000000000000000}},"30019011":{"solarSystemId":30019011,"solarSystemName":"Q:1SVV","location":{"x":-10500000000000000000,"y":1490000000000000000,"z":-17800000000000000000}},"30019012":{"solarSystemId":30019012,"solarSystemName":"P:1OV7","location":{"x":-9960000000000000000,"y":1540000000000000000,"z":-18500000000000000000}},"30019013":{"solarSystemId":30019013,"solarSystemName":"J:216I","location":{"x":-9690000000000000000,"y":1150000000000000000,"z":-18100000000000000000}},"30019014":{"solarSystemId":30019014,"solarSystemName":"M:1VEA","location":{"x":-9310000000000000000,"y":1470000000000000000,"z":-18200000000000000000}},"30019015":{"solarSystemId":30019015,"solarSystemName":"G:352K","location":{"x":-10200000000000000000,"y":1200000000000000000,"z":-18400000000000000000}},"30019016":{"solarSystemId":30019016,"solarSystemName":"G:1NOI","location":{"x":-10600000000000000000,"y":939000000000000000,"z":-19200000000000000000}},"30019017":{"solarSystemId":30019017,"solarSystemName":"G:1732","location":{"x":-9630000000000000000,"y":1330000000000000000,"z":-18000000000000000000}},"30019018":{"solarSystemId":30019018,"solarSystemName":"M:OI6L","location":{"x":-10400000000000000000,"y":-1410000000000000000,"z":-19900000000000000000}},"30019019":{"solarSystemId":30019019,"solarSystemName":"G:301S","location":{"x":-11200000000000000000,"y":-1230000000000000000,"z":-20600000000000000000}},"30019020":{"solarSystemId":30019020,"solarSystemName":"D:25A2","location":{"x":-9850000000000000000,"y":-778000000000000000,"z":-18700000000000000000}},"30019021":{"solarSystemId":30019021,"solarSystemName":"H:1RLR","location":{"x":-10900000000000000000,"y":-831000000000000000,"z":-19500000000000000000}},"30019022":{"solarSystemId":30019022,"solarSystemName":"G:S8LT","location":{"x":-9540000000000000000,"y":-860000000000000000,"z":-18600000000000000000}},"30019023":{"solarSystemId":30019023,"solarSystemName":"Z:2904","location":{"x":-10200000000000000000,"y":-1270000000000000000,"z":-19700000000000000000}},"30019024":{"solarSystemId":30019024,"solarSystemName":"D:3OON","location":{"x":-10000000000000000000,"y":-1330000000000000000,"z":-20000000000000000000}},"30019025":{"solarSystemId":30019025,"solarSystemName":"D:3E1A","location":{"x":-10400000000000000000,"y":-1170000000000000000,"z":-20600000000000000000}},"30019026":{"solarSystemId":30019026,"solarSystemName":"B:2REV","location":{"x":-9760000000000000000,"y":-1060000000000000000,"z":-17300000000000000000}},"30019027":{"solarSystemId":30019027,"solarSystemName":"U:1K27","location":{"x":-9830000000000000000,"y":-801000000000000000,"z":-17800000000000000000}},"30019028":{"solarSystemId":30019028,"solarSystemName":"Z:33K2","location":{"x":-9850000000000000000,"y":-6990000000000000,"z":-17200000000000000000}},"30019029":{"solarSystemId":30019029,"solarSystemName":"M:1V88","location":{"x":-10500000000000000000,"y":-872000000000000000,"z":-17200000000000000000}},"30019030":{"solarSystemId":30019030,"solarSystemName":"Y:353T","location":{"x":-9710000000000000000,"y":-818000000000000000,"z":-16300000000000000000}},"30019031":{"solarSystemId":30019031,"solarSystemName":"G:3R5L","location":{"x":-10500000000000000000,"y":942000000000000000,"z":-17700000000000000000}},"30019032":{"solarSystemId":30019032,"solarSystemName":"P:1LRT","location":{"x":-10300000000000000000,"y":-164000000000000000,"z":-16600000000000000000}},"30019033":{"solarSystemId":30019033,"solarSystemName":"D:O5SE","location":{"x":-9770000000000000000,"y":-770000000000000000,"z":-17100000000000000000}},"30019034":{"solarSystemId":30019034,"solarSystemName":"H:3S2R","location":{"x":-10200000000000000000,"y":-293000000000000000,"z":-17200000000000000000}},"30019035":{"solarSystemId":30019035,"solarSystemName":"Y:3R0K","location":{"x":-9620000000000000000,"y":-743000000000000000,"z":-17300000000000000000}},"30019036":{"solarSystemId":30019036,"solarSystemName":"B:37KL","location":{"x":-8860000000000000000,"y":-590000000000000000,"z":-17500000000000000000}},"30019037":{"solarSystemId":30019037,"solarSystemName":"H:36R3","location":{"x":-11700000000000000000,"y":3850000000000000000,"z":-17000000000000000000}},"30019038":{"solarSystemId":30019038,"solarSystemName":"H:2AIO","location":{"x":-10200000000000000000,"y":2840000000000000000,"z":-15300000000000000000}},"30019039":{"solarSystemId":30019039,"solarSystemName":"Z:1ONE","location":{"x":-12000000000000000000,"y":2130000000000000000,"z":-16500000000000000000}},"30019040":{"solarSystemId":30019040,"solarSystemName":"G:1K8E","location":{"x":-10800000000000000000,"y":1370000000000000000,"z":-16800000000000000000}},"30019041":{"solarSystemId":30019041,"solarSystemName":"Q:3OVN","location":{"x":-10100000000000000000,"y":3500000000000000000,"z":-15600000000000000000}},"30019042":{"solarSystemId":30019042,"solarSystemName":"J:3N7O","location":{"x":-10400000000000000000,"y":1440000000000000000,"z":-16900000000000000000}},"30019043":{"solarSystemId":30019043,"solarSystemName":"F:2A02","location":{"x":-10100000000000000000,"y":1190000000000000000,"z":-16100000000000000000}},"30019044":{"solarSystemId":30019044,"solarSystemName":"G:11I2","location":{"x":-9760000000000000000,"y":-961000000000000000,"z":-20100000000000000000}},"30019045":{"solarSystemId":30019045,"solarSystemName":"M:2L2A","location":{"x":-9000000000000000000,"y":-1080000000000000000,"z":-19500000000000000000}},"30019046":{"solarSystemId":30019046,"solarSystemName":"H:3VOV","location":{"x":-8990000000000000000,"y":-551000000000000000,"z":-20400000000000000000}},"30019047":{"solarSystemId":30019047,"solarSystemName":"F:19T8","location":{"x":-9340000000000000000,"y":-765000000000000000,"z":-20200000000000000000}},"30019048":{"solarSystemId":30019048,"solarSystemName":"G:214V","location":{"x":-9480000000000000000,"y":-488000000000000000,"z":-19300000000000000000}},"30019049":{"solarSystemId":30019049,"solarSystemName":"D:1LIV","location":{"x":-8100000000000000000,"y":-408000000000000000,"z":-20900000000000000000}},"30019050":{"solarSystemId":30019050,"solarSystemName":"F:1O04","location":{"x":-9210000000000000000,"y":-843000000000000000,"z":-19200000000000000000}},"30019051":{"solarSystemId":30019051,"solarSystemName":"M:13O2","location":{"x":-10100000000000000000,"y":-784000000000000000,"z":-19900000000000000000}},"30019052":{"solarSystemId":30019052,"solarSystemName":"E7C-8R8","location":{"x":-53400000000000000000,"y":-5850000000000000000,"z":-17000000000000000000}},"30019053":{"solarSystemId":30019053,"solarSystemName":"O07-RQ8","location":{"x":-51800000000000000000,"y":-2100000000000000000,"z":-21800000000000000000}},"30019054":{"solarSystemId":30019054,"solarSystemName":"EVC-9Q8","location":{"x":-51300000000000000000,"y":-5300000000000000000,"z":-20900000000000000000}},"30019055":{"solarSystemId":30019055,"solarSystemName":"E3T-CQ8","location":{"x":-51800000000000000000,"y":-6010000000000000000,"z":-19200000000000000000}},"30019056":{"solarSystemId":30019056,"solarSystemName":"URN-VP8","location":{"x":-51600000000000000000,"y":-5190000000000000000,"z":-19200000000000000000}},"30019057":{"solarSystemId":30019057,"solarSystemName":"EGV-QQ8","location":{"x":-53200000000000000000,"y":-2120000000000000000,"z":-17000000000000000000}},"30019058":{"solarSystemId":30019058,"solarSystemName":"EQT-6Q8","location":{"x":-53100000000000000000,"y":-1230000000000000000,"z":-15200000000000000000}},"30019059":{"solarSystemId":30019059,"solarSystemName":"I97-4R8","location":{"x":-53700000000000000000,"y":-1880000000000000000,"z":-16400000000000000000}},"30019060":{"solarSystemId":30019060,"solarSystemName":"E9R-FQ8","location":{"x":-53000000000000000000,"y":-2360000000000000000,"z":-16400000000000000000}},"30019061":{"solarSystemId":30019061,"solarSystemName":"E60-LQ8","location":{"x":-53200000000000000000,"y":-1210000000000000000,"z":-16300000000000000000}},"30019062":{"solarSystemId":30019062,"solarSystemName":"OMR-PQ8","location":{"x":-53600000000000000000,"y":-3470000000000000000,"z":-14200000000000000000}},"30019063":{"solarSystemId":30019063,"solarSystemName":"OSP-2Q8","location":{"x":-53300000000000000000,"y":-2650000000000000000,"z":-13200000000000000000}},"30019064":{"solarSystemId":30019064,"solarSystemName":"ANS-9P8","location":{"x":-52500000000000000000,"y":-1760000000000000000,"z":-13100000000000000000}},"30019065":{"solarSystemId":30019065,"solarSystemName":"I23-FR8","location":{"x":-54800000000000000000,"y":-892000000000000000,"z":-12000000000000000000}},"30019066":{"solarSystemId":30019066,"solarSystemName":"OHB-7S8","location":{"x":-56100000000000000000,"y":-1090000000000000000,"z":-6430000000000000000}},"30019067":{"solarSystemId":30019067,"solarSystemName":"OP8-0Q8","location":{"x":-52700000000000000000,"y":-2390000000000000000,"z":-16000000000000000000}},"30019068":{"solarSystemId":30019068,"solarSystemName":"E7C-VN8","location":{"x":-51700000000000000000,"y":-2330000000000000000,"z":-15400000000000000000}},"30019069":{"solarSystemId":30019069,"solarSystemName":"O07-2Q8","location":{"x":-53000000000000000000,"y":-1780000000000000000,"z":-15200000000000000000}},"30019070":{"solarSystemId":30019070,"solarSystemName":"EGV-7P8","location":{"x":-52200000000000000000,"y":-1860000000000000000,"z":-14500000000000000000}},"30019071":{"solarSystemId":30019071,"solarSystemName":"E02-QP8","location":{"x":-52500000000000000000,"y":-2200000000000000000,"z":-16200000000000000000}},"30019072":{"solarSystemId":30019072,"solarSystemName":"A5P-MN8","location":{"x":-50400000000000000000,"y":-3220000000000000000,"z":-19400000000000000000}},"30019073":{"solarSystemId":30019073,"solarSystemName":"A2G-6N8","location":{"x":-50400000000000000000,"y":-2610000000000000000,"z":-18100000000000000000}},"30019074":{"solarSystemId":30019074,"solarSystemName":"ILR-DN8","location":{"x":-50400000000000000000,"y":-3210000000000000000,"z":-18900000000000000000}},"30019075":{"solarSystemId":30019075,"solarSystemName":"OLD-QM8","location":{"x":-50400000000000000000,"y":-1250000000000000000,"z":-16800000000000000000}},"30019076":{"solarSystemId":30019076,"solarSystemName":"E2T-2N8","location":{"x":-50000000000000000000,"y":-3660000000000000000,"z":-18700000000000000000}},"30019077":{"solarSystemId":30019077,"solarSystemName":"ANF-TM8","location":{"x":-50400000000000000000,"y":-2120000000000000000,"z":-17500000000000000000}},"30019078":{"solarSystemId":30019078,"solarSystemName":"I7C-NP8","location":{"x":-52200000000000000000,"y":-2010000000000000000,"z":-17100000000000000000}},"30019079":{"solarSystemId":30019079,"solarSystemName":"ET0-4N8","location":{"x":-50600000000000000000,"y":-1930000000000000000,"z":-17200000000000000000}},"30019080":{"solarSystemId":30019080,"solarSystemName":"EDG-8P8","location":{"x":-51600000000000000000,"y":-1970000000000000000,"z":-17500000000000000000}},"30019081":{"solarSystemId":30019081,"solarSystemName":"IKK-2N8","location":{"x":-50500000000000000000,"y":-2130000000000000000,"z":-17300000000000000000}},"30019082":{"solarSystemId":30019082,"solarSystemName":"I5B-CQ8","location":{"x":-52600000000000000000,"y":-2280000000000000000,"z":-17700000000000000000}},"30019083":{"solarSystemId":30019083,"solarSystemName":"Adab","location":{"x":-51100000000000000000,"y":-3380000000000000000,"z":-17000000000000000000}},"30019084":{"solarSystemId":30019084,"solarSystemName":"UP3-GQ8","location":{"x":-52500000000000000000,"y":-3820000000000000000,"z":-18100000000000000000}},"30019085":{"solarSystemId":30019085,"solarSystemName":"OGB-TP8","location":{"x":-51800000000000000000,"y":-3710000000000000000,"z":-18900000000000000000}},"30019086":{"solarSystemId":30019086,"solarSystemName":"OLD-4Q8","location":{"x":-52300000000000000000,"y":-2600000000000000000,"z":-18300000000000000000}},"30019087":{"solarSystemId":30019087,"solarSystemName":"UR4-KQ8","location":{"x":-51900000000000000000,"y":-2490000000000000000,"z":-20900000000000000000}},"30019088":{"solarSystemId":30019088,"solarSystemName":"O44-QQ8","location":{"x":-52100000000000000000,"y":-2300000000000000000,"z":-20800000000000000000}},"30019089":{"solarSystemId":30019089,"solarSystemName":"EB2-DS8","location":{"x":-54800000000000000000,"y":-699000000000000000,"z":-19300000000000000000}},"30019090":{"solarSystemId":30019090,"solarSystemName":"I6J-HR8","location":{"x":-53400000000000000000,"y":-670000000000000000,"z":-19500000000000000000}},"30019091":{"solarSystemId":30019091,"solarSystemName":"EGV-1Q8","location":{"x":-51900000000000000000,"y":-910000000000000000,"z":-19800000000000000000}},"30019092":{"solarSystemId":30019092,"solarSystemName":"A.5HX.E61","location":{"x":-30800000000000000000,"y":-1400000000000000000,"z":-15000000000000000000}},"30019093":{"solarSystemId":30019093,"solarSystemName":"L.F6Y.DC1","location":{"x":-31400000000000000000,"y":-1750000000000000000,"z":-15000000000000000000}},"30019094":{"solarSystemId":30019094,"solarSystemName":"E.XLY.M21","location":{"x":-31700000000000000000,"y":-1240000000000000000,"z":-14600000000000000000}},"30019095":{"solarSystemId":30019095,"solarSystemName":"N.C7Y.XP1","location":{"x":-31400000000000000000,"y":-1830000000000000000,"z":-14000000000000000000}},"30019096":{"solarSystemId":30019096,"solarSystemName":"D.XRY.171","location":{"x":-31600000000000000000,"y":-1410000000000000000,"z":-14300000000000000000}},"30019097":{"solarSystemId":30019097,"solarSystemName":"M.PKY.161","location":{"x":-32200000000000000000,"y":-1370000000000000000,"z":-14700000000000000000}},"30019098":{"solarSystemId":30019098,"solarSystemName":"C.08Y.4ZG","location":{"x":-31400000000000000000,"y":-860000000000000000,"z":-14800000000000000000}},"30019099":{"solarSystemId":30019099,"solarSystemName":"O.BYY.001","location":{"x":-32100000000000000000,"y":-1150000000000000000,"z":-15200000000000000000}},"30019100":{"solarSystemId":30019100,"solarSystemName":"M.JJY.S71","location":{"x":-32100000000000000000,"y":-1420000000000000000,"z":-15500000000000000000}},"30019101":{"solarSystemId":30019101,"solarSystemName":"I.D9Y.L61","location":{"x":-31500000000000000000,"y":-1390000000000000000,"z":-13000000000000000000}},"30019102":{"solarSystemId":30019102,"solarSystemName":"N.4CY.SM1","location":{"x":-31700000000000000000,"y":-1780000000000000000,"z":-12000000000000000000}},"30019103":{"solarSystemId":30019103,"solarSystemName":"M.MNY.06Z","location":{"x":-31600000000000000000,"y":-1020000000000000000,"z":-12300000000000000000}},"30019104":{"solarSystemId":30019104,"solarSystemName":"S.HRY.ZP1","location":{"x":-31600000000000000000,"y":-1830000000000000000,"z":-13300000000000000000}},"30019105":{"solarSystemId":30019105,"solarSystemName":"R.7DY.TM2","location":{"x":-31700000000000000000,"y":-2930000000000000000,"z":-13700000000000000000}},"30019106":{"solarSystemId":30019106,"solarSystemName":"A.F1Z.QC1","location":{"x":-32300000000000000000,"y":-1750000000000000000,"z":-11800000000000000000}},"30019107":{"solarSystemId":30019107,"solarSystemName":"L.T1Z.VP1","location":{"x":-32300000000000000000,"y":-1820000000000000000,"z":-11700000000000000000}},"30019108":{"solarSystemId":30019108,"solarSystemName":"Hreinsunareldur","location":{"x":-31400000000000000000,"y":-2840000000000000000,"z":-12100000000000000000}},"30019109":{"solarSystemId":30019109,"solarSystemName":"B.1JY.W1H","location":{"x":-32000000000000000000,"y":-867000000000000000,"z":-11400000000000000000}},"30019110":{"solarSystemId":30019110,"solarSystemName":"C.CPY.0ZY","location":{"x":-31800000000000000000,"y":-1000000000000000000,"z":-12000000000000000000}},"30019111":{"solarSystemId":30019111,"solarSystemName":"M.KCY.FLB","location":{"x":-31700000000000000000,"y":-809000000000000000,"z":-11100000000000000000}},"30019112":{"solarSystemId":30019112,"solarSystemName":"R.7GJ.CL1","location":{"x":-29700000000000000000,"y":-1680000000000000000,"z":-11900000000000000000}},"30019113":{"solarSystemId":30019113,"solarSystemName":"H.6BJ.RT1","location":{"x":-29600000000000000000,"y":-1560000000000000000,"z":-11400000000000000000}},"30019114":{"solarSystemId":30019114,"solarSystemName":"H.8FX.FS1","location":{"x":-30700000000000000000,"y":-1540000000000000000,"z":-11300000000000000000}},"30019115":{"solarSystemId":30019115,"solarSystemName":"E.WLJ.H81","location":{"x":-29400000000000000000,"y":-1470000000000000000,"z":-11500000000000000000}},"30019116":{"solarSystemId":30019116,"solarSystemName":"N.MSX.DLG","location":{"x":-30400000000000000000,"y":-845000000000000000,"z":-12000000000000000000}},"30019117":{"solarSystemId":30019117,"solarSystemName":"E.CSX.E51","location":{"x":-30400000000000000000,"y":-1370000000000000000,"z":-10700000000000000000}},"30019118":{"solarSystemId":30019118,"solarSystemName":"E.JSX.G71","location":{"x":-30400000000000000000,"y":-1430000000000000000,"z":-11700000000000000000}},"30019119":{"solarSystemId":30019119,"solarSystemName":"D.6KJ.681","location":{"x":-29900000000000000000,"y":-1450000000000000000,"z":-12100000000000000000}},"30019120":{"solarSystemId":30019120,"solarSystemName":"A.48X.1P1","location":{"x":-30300000000000000000,"y":-1800000000000000000,"z":-11600000000000000000}},"30019121":{"solarSystemId":30019121,"solarSystemName":"M.MWX.3C1","location":{"x":-31000000000000000000,"y":-1730000000000000000,"z":-12000000000000000000}},"30019122":{"solarSystemId":30019122,"solarSystemName":"S.N2X.XQ1","location":{"x":-30100000000000000000,"y":-1900000000000000000,"z":-13900000000000000000}},"30019123":{"solarSystemId":30019123,"solarSystemName":"L.66Y.CN1","location":{"x":-31400000000000000000,"y":-1600000000000000000,"z":-13500000000000000000}},"30019124":{"solarSystemId":30019124,"solarSystemName":"D.25X.ZS1","location":{"x":-30200000000000000000,"y":-1540000000000000000,"z":-12900000000000000000}},"30019125":{"solarSystemId":30019125,"solarSystemName":"N.0DX.W91","location":{"x":-30500000000000000000,"y":-1510000000000000000,"z":-13100000000000000000}},"30019126":{"solarSystemId":30019126,"solarSystemName":"U.QDX.HJ1","location":{"x":-30500000000000000000,"y":-2080000000000000000,"z":-13200000000000000000}},"30019127":{"solarSystemId":30019127,"solarSystemName":"H.CMX.RJ1","location":{"x":-30600000000000000000,"y":-2070000000000000000,"z":-13000000000000000000}},"30019128":{"solarSystemId":30019128,"solarSystemName":"H.G2X.XV1","location":{"x":-30100000000000000000,"y":-1870000000000000000,"z":-13900000000000000000}},"30019129":{"solarSystemId":30019129,"solarSystemName":"M.FPX.GX1","location":{"x":-30600000000000000000,"y":-2120000000000000000,"z":-13100000000000000000}},"30019130":{"solarSystemId":30019130,"solarSystemName":"M.L3X.9Q1","location":{"x":-30100000000000000000,"y":-1880000000000000000,"z":-12500000000000000000}},"30019131":{"solarSystemId":30019131,"solarSystemName":"I.PLJ.PQW","location":{"x":-29300000000000000000,"y":-1070000000000000000,"z":-13500000000000000000}},"30019132":{"solarSystemId":30019132,"solarSystemName":"I.GVJ.L9B","location":{"x":-29500000000000000000,"y":-803000000000000000,"z":-12500000000000000000}},"30019133":{"solarSystemId":30019133,"solarSystemName":"D.4SX.G31","location":{"x":-30300000000000000000,"y":-1290000000000000000,"z":-13900000000000000000}},"30019134":{"solarSystemId":30019134,"solarSystemName":"U.Q8J.X91","location":{"x":-29100000000000000000,"y":-1510000000000000000,"z":-12700000000000000000}},"30019135":{"solarSystemId":30019135,"solarSystemName":"L.RSJ.JDE","location":{"x":-29200000000000000000,"y":-1130000000000000000,"z":-12800000000000000000}},"30019136":{"solarSystemId":30019136,"solarSystemName":"A.P8J.MS1","location":{"x":-29100000000000000000,"y":-1530000000000000000,"z":-13300000000000000000}},"30019137":{"solarSystemId":30019137,"solarSystemName":"N.V4J.NJ1","location":{"x":-29000000000000000000,"y":-2070000000000000000,"z":-14100000000000000000}},"30019138":{"solarSystemId":30019138,"solarSystemName":"D.VVJ.VM1","location":{"x":-29500000000000000000,"y":-1790000000000000000,"z":-14400000000000000000}},"30019139":{"solarSystemId":30019139,"solarSystemName":"N.BMJ.7F1","location":{"x":-29500000000000000000,"y":-1920000000000000000,"z":-13200000000000000000}},"30019140":{"solarSystemId":30019140,"solarSystemName":"G.QXJ.4SH","location":{"x":-29800000000000000000,"y":-876000000000000000,"z":-14100000000000000000}},"30019141":{"solarSystemId":30019141,"solarSystemName":"T.8GG.MC3","location":{"x":-27400000000000000000,"y":-4060000000000000000,"z":-13800000000000000000}},"30019142":{"solarSystemId":30019142,"solarSystemName":"U.MQJ.4Y2","location":{"x":-29600000000000000000,"y":-3280000000000000000,"z":-13700000000000000000}},"30019143":{"solarSystemId":30019143,"solarSystemName":"L.QTG.6Q2","location":{"x":-26900000000000000000,"y":-3030000000000000000,"z":-11500000000000000000}},"30019144":{"solarSystemId":30019144,"solarSystemName":"R.4EG.EV2","location":{"x":-27600000000000000000,"y":-3030000000000000000,"z":-14100000000000000000}},"30019145":{"solarSystemId":30019145,"solarSystemName":"D.QJJ.3R3","location":{"x":-29700000000000000000,"y":-3930000000000000000,"z":-12400000000000000000}},"30019146":{"solarSystemId":30019146,"solarSystemName":"U.EHG.LW2","location":{"x":-27400000000000000000,"y":-3370000000000000000,"z":-13500000000000000000}},"30019147":{"solarSystemId":30019147,"solarSystemName":"R.JTJ.W24","location":{"x":-29200000000000000000,"y":-4720000000000000000,"z":-12600000000000000000}},"30019148":{"solarSystemId":30019148,"solarSystemName":"C.YDH.7N2","location":{"x":-28200000000000000000,"y":-2750000000000000000,"z":-12500000000000000000}},"30019149":{"solarSystemId":30019149,"solarSystemName":"A.77X.231","location":{"x":-30200000000000000000,"y":-1260000000000000000,"z":-14700000000000000000}},"30019150":{"solarSystemId":30019150,"solarSystemName":"R.YKJ.7T1","location":{"x":-29900000000000000000,"y":-1560000000000000000,"z":-14900000000000000000}},"30019151":{"solarSystemId":30019151,"solarSystemName":"M.ZRX.HD1","location":{"x":-30500000000000000000,"y":-1720000000000000000,"z":-14500000000000000000}},"30019152":{"solarSystemId":30019152,"solarSystemName":"H.PZJ.EZ1","location":{"x":-29900000000000000000,"y":-2200000000000000000,"z":-14100000000000000000}},"30019153":{"solarSystemId":30019153,"solarSystemName":"T.S3X.0N2","location":{"x":-30100000000000000000,"y":-2740000000000000000,"z":-14100000000000000000}},"30019154":{"solarSystemId":30019154,"solarSystemName":"S.ZMJ.F21","location":{"x":-29500000000000000000,"y":-1250000000000000000,"z":-15000000000000000000}},"30019155":{"solarSystemId":30019155,"solarSystemName":"R.SQJ.4W1","location":{"x":-29600000000000000000,"y":-2200000000000000000,"z":-14500000000000000000}},"30019156":{"solarSystemId":30019156,"solarSystemName":"L.3KX.K62","location":{"x":-31100000000000000000,"y":-2560000000000000000,"z":-15600000000000000000}},"30019157":{"solarSystemId":30019157,"solarSystemName":"R.TLX.861","location":{"x":-30500000000000000000,"y":-1380000000000000000,"z":-13900000000000000000}},"30019158":{"solarSystemId":30019158,"solarSystemName":"O.PNX.JH1","location":{"x":-30400000000000000000,"y":-2050000000000000000,"z":-15500000000000000000}},"30019159":{"solarSystemId":30019159,"solarSystemName":"M.KMX.HJ1","location":{"x":-30600000000000000000,"y":-2080000000000000000,"z":-15500000000000000000}},"30019160":{"solarSystemId":30019160,"solarSystemName":"I.23X.BX6","location":{"x":-30100000000000000000,"y":246000000000000000,"z":-14400000000000000000}},"30019161":{"solarSystemId":30019161,"solarSystemName":"E.R3X.B51","location":{"x":-30100000000000000000,"y":-1360000000000000000,"z":-15100000000000000000}},"30019162":{"solarSystemId":30019162,"solarSystemName":"T.26J.T7P","location":{"x":-29000000000000000000,"y":-657000000000000000,"z":-14900000000000000000}},"30019163":{"solarSystemId":30019163,"solarSystemName":"D.FDH.Q3D","location":{"x":-28200000000000000000,"y":545000000000000000,"z":-14900000000000000000}},"30019164":{"solarSystemId":30019164,"solarSystemName":"A.6TX.P01","location":{"x":-30400000000000000000,"y":-1170000000000000000,"z":-15500000000000000000}},"30019165":{"solarSystemId":30019165,"solarSystemName":"T.WFH.V9B","location":{"x":-28500000000000000000,"y":-25100000000000000,"z":-15400000000000000000}},"30019166":{"solarSystemId":30019166,"solarSystemName":"B.9HX.0G1","location":{"x":-30900000000000000000,"y":1980000000000000000,"z":-16100000000000000000}},"30019167":{"solarSystemId":30019167,"solarSystemName":"T.PML.CJY","location":{"x":-16800000000000000000,"y":-1000000000000000000,"z":-30500000000000000000}},"30019168":{"solarSystemId":30019168,"solarSystemName":"S.ERL.MBL","location":{"x":-16600000000000000000,"y":-530000000000000000,"z":-30700000000000000000}},"30019169":{"solarSystemId":30019169,"solarSystemName":"U.0DL.GPG","location":{"x":-16700000000000000000,"y":-850000000000000000,"z":-30900000000000000000}},"30019170":{"solarSystemId":30019170,"solarSystemName":"A.8CL.RLN","location":{"x":-16700000000000000000,"y":-449000000000000000,"z":-30600000000000000000}},"30019171":{"solarSystemId":30019171,"solarSystemName":"U.NYR.2BE","location":{"x":-16000000000000000000,"y":-1140000000000000000,"z":-30400000000000000000}},"30019172":{"solarSystemId":30019172,"solarSystemName":"C.TKR.GSX","location":{"x":-16100000000000000000,"y":-949000000000000000,"z":-31200000000000000000}},"30019173":{"solarSystemId":30019173,"solarSystemName":"U.SHL.NBQ","location":{"x":-17000000000000000000,"y":-746000000000000000,"z":-33000000000000000000}},"30019174":{"solarSystemId":30019174,"solarSystemName":"E.R0D.Q4F","location":{"x":-17300000000000000000,"y":-762000000000000000,"z":-33900000000000000000}},"30019175":{"solarSystemId":30019175,"solarSystemName":"Ró","location":{"x":-16500000000000000000,"y":-927000000000000000,"z":-32000000000000000000}},"30019176":{"solarSystemId":30019176,"solarSystemName":"A.7RL.2NC","location":{"x":-16600000000000000000,"y":-590000000000000000,"z":-34100000000000000000}},"30019177":{"solarSystemId":30019177,"solarSystemName":"N.6CL.3X7","location":{"x":-16700000000000000000,"y":-282000000000000000,"z":-33800000000000000000}},"30019178":{"solarSystemId":30019178,"solarSystemName":"N.CJR.0LC","location":{"x":-15900000000000000000,"y":-592000000000000000,"z":-30100000000000000000}},"30019179":{"solarSystemId":30019179,"solarSystemName":"L.HSR.YHN","location":{"x":-15400000000000000000,"y":-460000000000000000,"z":-32100000000000000000}},"30019180":{"solarSystemId":30019180,"solarSystemName":"N.HBD.C1B","location":{"x":-18100000000000000000,"y":-794000000000000000,"z":-33500000000000000000}},"30019181":{"solarSystemId":30019181,"solarSystemName":"E.KGL.F7H","location":{"x":-17000000000000000000,"y":-873000000000000000,"z":-29700000000000000000}},"30019182":{"solarSystemId":30019182,"solarSystemName":"N.Q3D.WLB","location":{"x":-17400000000000000000,"y":-809000000000000000,"z":-31600000000000000000}},"30019183":{"solarSystemId":30019183,"solarSystemName":"D.9HD.5SC","location":{"x":-18200000000000000000,"y":-588000000000000000,"z":-33400000000000000000}},"30019184":{"solarSystemId":30019184,"solarSystemName":"D.XZL.ZYE","location":{"x":-17200000000000000000,"y":-1150000000000000000,"z":-30300000000000000000}},"30019185":{"solarSystemId":30019185,"solarSystemName":"I.WBL.GVD","location":{"x":-17000000000000000000,"y":-563000000000000000,"z":-30900000000000000000}},"30019186":{"solarSystemId":30019186,"solarSystemName":"E.7SD.XCQ","location":{"x":-17700000000000000000,"y":-740000000000000000,"z":-30500000000000000000}},"30019187":{"solarSystemId":30019187,"solarSystemName":"I.3TD.CQF","location":{"x":-17700000000000000000,"y":-780000000000000000,"z":-31300000000000000000}},"30019188":{"solarSystemId":30019188,"solarSystemName":"S.BJL.HHK","location":{"x":-17100000000000000000,"y":-1110000000000000000,"z":-30100000000000000000}},"30019189":{"solarSystemId":30019189,"solarSystemName":"S.09D.8NM","location":{"x":-17600000000000000000,"y":-626000000000000000,"z":-30100000000000000000}},"30019190":{"solarSystemId":30019190,"solarSystemName":"U.CED.3BQ","location":{"x":-18400000000000000000,"y":-745000000000000000,"z":-29400000000000000000}},"30019191":{"solarSystemId":30019191,"solarSystemName":"I.DKC.QJB","location":{"x":-19500000000000000000,"y":-822000000000000000,"z":-29300000000000000000}},"30019192":{"solarSystemId":30019192,"solarSystemName":"R.7RC.2LQ","location":{"x":-18900000000000000000,"y":-736000000000000000,"z":-29400000000000000000}},"30019193":{"solarSystemId":30019193,"solarSystemName":"A.TRC.DSW","location":{"x":-18900000000000000000,"y":-1060000000000000000,"z":-30200000000000000000}},"30019194":{"solarSystemId":30019194,"solarSystemName":"I.DVC.XFP","location":{"x":-19100000000000000000,"y":-673000000000000000,"z":-29900000000000000000}},"30019195":{"solarSystemId":30019195,"solarSystemName":"S.XED.MPD","location":{"x":-18400000000000000000,"y":-561000000000000000,"z":-30400000000000000000}},"30019196":{"solarSystemId":30019196,"solarSystemName":"A.XFD.G8L","location":{"x":-18100000000000000000,"y":-514000000000000000,"z":-31300000000000000000}},"30019197":{"solarSystemId":30019197,"solarSystemName":"A.33C.2QB","location":{"x":-18600000000000000000,"y":-815000000000000000,"z":-31900000000000000000}},"30019198":{"solarSystemId":30019198,"solarSystemName":"E.SDD.4HM","location":{"x":-17800000000000000000,"y":-640000000000000000,"z":-32100000000000000000}},"30019199":{"solarSystemId":30019199,"solarSystemName":"S.6ND.4MC","location":{"x":-17700000000000000000,"y":-596000000000000000,"z":-31400000000000000000}},"30019200":{"solarSystemId":30019200,"solarSystemName":"I.TED.43Q","location":{"x":-18400000000000000000,"y":-724000000000000000,"z":-31700000000000000000}},"30019201":{"solarSystemId":30019201,"solarSystemName":"U.DQD.28Q","location":{"x":-18000000000000000000,"y":-730000000000000000,"z":-32000000000000000000}},"30019202":{"solarSystemId":30019202,"solarSystemName":"L.ZBN.MXG","location":{"x":-14700000000000000000,"y":-859000000000000000,"z":-27700000000000000000}},"30019203":{"solarSystemId":30019203,"solarSystemName":"H.K8N.FJ5","location":{"x":-14200000000000000000,"y":-209000000000000000,"z":-29700000000000000000}},"30019204":{"solarSystemId":30019204,"solarSystemName":"E.PRL.36Z","location":{"x":-16600000000000000000,"y":-1020000000000000000,"z":-29400000000000000000}},"30019205":{"solarSystemId":30019205,"solarSystemName":"D.TRR.2NT","location":{"x":-15500000000000000000,"y":-410000000000000000,"z":-29100000000000000000}},"30019206":{"solarSystemId":30019206,"solarSystemName":"N.BPN.VH6","location":{"x":-14500000000000000000,"y":244000000000000000,"z":-28600000000000000000}},"30019207":{"solarSystemId":30019207,"solarSystemName":"E.55L.531","location":{"x":-16300000000000000000,"y":-1270000000000000000,"z":-29600000000000000000}},"30019208":{"solarSystemId":30019208,"solarSystemName":"R.LQM.ECH","location":{"x":-20300000000000000000,"y":-884000000000000000,"z":-30400000000000000000}},"30019209":{"solarSystemId":30019209,"solarSystemName":"L.XNM.TSM","location":{"x":-20100000000000000000,"y":-624000000000000000,"z":-29100000000000000000}},"30019210":{"solarSystemId":30019210,"solarSystemName":"S.D1P.FXX","location":{"x":-20800000000000000000,"y":-967000000000000000,"z":-28200000000000000000}},"30019211":{"solarSystemId":30019211,"solarSystemName":"I.R1C.6E1","location":{"x":-18500000000000000000,"y":-2280000000000000000,"z":-30400000000000000000}},"30019212":{"solarSystemId":30019212,"solarSystemName":"C.KVM.FLX","location":{"x":-20300000000000000000,"y":-953000000000000000,"z":-26000000000000000000}},"30019213":{"solarSystemId":30019213,"solarSystemName":"C.1ZM.RQZ","location":{"x":-20600000000000000000,"y":-1030000000000000000,"z":-26000000000000000000}},"30019214":{"solarSystemId":30019214,"solarSystemName":"D.X9W.1T1","location":{"x":-33800000000000000000,"y":-1550000000000000000,"z":-21100000000000000000}},"30019215":{"solarSystemId":30019215,"solarSystemName":"A.FEZ.FB1","location":{"x":-33400000000000000000,"y":-1970000000000000000,"z":-21000000000000000000}},"30019216":{"solarSystemId":30019216,"solarSystemName":"A.5ZW.J05","location":{"x":-34400000000000000000,"y":181000000000000000,"z":-20700000000000000000}},"30019217":{"solarSystemId":30019217,"solarSystemName":"C.XNZ.S21","location":{"x":-32700000000000000000,"y":-1240000000000000000,"z":-20500000000000000000}},"30019218":{"solarSystemId":30019218,"solarSystemName":"O.T1K.PBE","location":{"x":-34600000000000000000,"y":-1140000000000000000,"z":-21200000000000000000}},"30019219":{"solarSystemId":30019219,"solarSystemName":"C.2FK.HHK","location":{"x":-35300000000000000000,"y":-1110000000000000000,"z":-21300000000000000000}},"30019220":{"solarSystemId":30019220,"solarSystemName":"C.2MZ.2S1","location":{"x":-32900000000000000000,"y":-1520000000000000000,"z":-19700000000000000000}},"30019221":{"solarSystemId":30019221,"solarSystemName":"D.ZTK.N71","location":{"x":-35000000000000000000,"y":-1420000000000000000,"z":-24200000000000000000}},"30019222":{"solarSystemId":30019222,"solarSystemName":"N.1DK.4P1","location":{"x":-35100000000000000000,"y":-1810000000000000000,"z":-24100000000000000000}},"30019223":{"solarSystemId":30019223,"solarSystemName":"U.54K.1R1","location":{"x":-34700000000000000000,"y":-1620000000000000000,"z":-24000000000000000000}},"30019224":{"solarSystemId":30019224,"solarSystemName":"S.7SK.GT1","location":{"x":-35000000000000000000,"y":-1580000000000000000,"z":-24700000000000000000}},"30019225":{"solarSystemId":30019225,"solarSystemName":"H.K1K.941","location":{"x":-34700000000000000000,"y":-1310000000000000000,"z":-24500000000000000000}},"30019226":{"solarSystemId":30019226,"solarSystemName":"U.7LK.C91","location":{"x":-35100000000000000000,"y":-1500000000000000000,"z":-24400000000000000000}},"30019227":{"solarSystemId":30019227,"solarSystemName":"E.4NZ.6T1","location":{"x":-32700000000000000000,"y":-1560000000000000000,"z":-22500000000000000000}},"30019228":{"solarSystemId":30019228,"solarSystemName":"I.12W.N02","location":{"x":-33500000000000000000,"y":-2320000000000000000,"z":-22100000000000000000}},"30019229":{"solarSystemId":30019229,"solarSystemName":"M.JPZ.J71","location":{"x":-33000000000000000000,"y":-1430000000000000000,"z":-21000000000000000000}},"30019230":{"solarSystemId":30019230,"solarSystemName":"G.43Z.691","location":{"x":-32400000000000000000,"y":-1480000000000000000,"z":-22000000000000000000}},"30019231":{"solarSystemId":30019231,"solarSystemName":"C.TPZ.B61","location":{"x":-32900000000000000000,"y":-1390000000000000000,"z":-23000000000000000000}},"30019232":{"solarSystemId":30019232,"solarSystemName":"B.MRZ.WS1","location":{"x":-32800000000000000000,"y":-1550000000000000000,"z":-22100000000000000000}},"30019233":{"solarSystemId":30019233,"solarSystemName":"C.M2W.681","location":{"x":-33500000000000000000,"y":-1450000000000000000,"z":-22500000000000000000}},"30019234":{"solarSystemId":30019234,"solarSystemName":"S.84K.0M1","location":{"x":-34700000000000000000,"y":-1770000000000000000,"z":-23800000000000000000}},"30019235":{"solarSystemId":30019235,"solarSystemName":"I.NNK.891","location":{"x":-35000000000000000000,"y":-1490000000000000000,"z":-23800000000000000000}},"30019236":{"solarSystemId":30019236,"solarSystemName":"R.PMK.PB1","location":{"x":-35200000000000000000,"y":-1970000000000000000,"z":-23600000000000000000}},"30019237":{"solarSystemId":30019237,"solarSystemName":"R.FXW.ET1","location":{"x":-34400000000000000000,"y":-1580000000000000000,"z":-23900000000000000000}},"30019238":{"solarSystemId":30019238,"solarSystemName":"U.KMK.1P1","location":{"x":-35200000000000000000,"y":-1800000000000000000,"z":-23800000000000000000}},"30019239":{"solarSystemId":30019239,"solarSystemName":"H.VVK.3Q1","location":{"x":-35300000000000000000,"y":-1880000000000000000,"z":-23100000000000000000}},"30019240":{"solarSystemId":30019240,"solarSystemName":"R.QZY.972","location":{"x":-32200000000000000000,"y":-2570000000000000000,"z":-20100000000000000000}},"30019241":{"solarSystemId":30019241,"solarSystemName":"E.68Y.6N2","location":{"x":-31400000000000000000,"y":-2750000000000000000,"z":-22400000000000000000}},"30019242":{"solarSystemId":30019242,"solarSystemName":"T.ZYX.8L2","location":{"x":-31000000000000000000,"y":-2820000000000000000,"z":-20500000000000000000}},"30019243":{"solarSystemId":30019243,"solarSystemName":"E.5PX.M61","location":{"x":-30600000000000000000,"y":-1390000000000000000,"z":-20800000000000000000}},"30019244":{"solarSystemId":30019244,"solarSystemName":"M.K4X.VT1","location":{"x":-30200000000000000000,"y":-1570000000000000000,"z":-21700000000000000000}},"30019245":{"solarSystemId":30019245,"solarSystemName":"C.EGX.H71","location":{"x":-30800000000000000000,"y":-1430000000000000000,"z":-20400000000000000000}},"30019246":{"solarSystemId":30019246,"solarSystemName":"C.F2Y.X81","location":{"x":-31200000000000000000,"y":-1470000000000000000,"z":-19500000000000000000}},"30019247":{"solarSystemId":30019247,"solarSystemName":"A.ZCY.LBF","location":{"x":-31700000000000000000,"y":-782000000000000000,"z":-24700000000000000000}},"30019248":{"solarSystemId":30019248,"solarSystemName":"R.FTW.DZ1","location":{"x":-33900000000000000000,"y":-2180000000000000000,"z":-22400000000000000000}},"30019249":{"solarSystemId":30019249,"solarSystemName":"N.6RY.1E2","location":{"x":-31600000000000000000,"y":-3420000000000000000,"z":-23200000000000000000}},"30019250":{"solarSystemId":30019250,"solarSystemName":"A.JYW.7X1","location":{"x":-34400000000000000000,"y":-2100000000000000000,"z":-22900000000000000000}},"30019251":{"solarSystemId":30019251,"solarSystemName":"S.E7Z.C91","location":{"x":-32600000000000000000,"y":-1500000000000000000,"z":-24400000000000000000}},"30019252":{"solarSystemId":30019252,"solarSystemName":"T.8FZ.ED1","location":{"x":-33000000000000000000,"y":-1730000000000000000,"z":-25800000000000000000}},"30019253":{"solarSystemId":30019253,"solarSystemName":"A.WQK.NQ1","location":{"x":-35300000000000000000,"y":-1890000000000000000,"z":-22800000000000000000}},"30019254":{"solarSystemId":30019254,"solarSystemName":"S.GNK.ZB1","location":{"x":-35000000000000000000,"y":-1980000000000000000,"z":-22500000000000000000}},"30019255":{"solarSystemId":30019255,"solarSystemName":"H.XCK.XS1","location":{"x":-35200000000000000000,"y":-1540000000000000000,"z":-22100000000000000000}},"30019256":{"solarSystemId":30019256,"solarSystemName":"U.J7K.4B1","location":{"x":-34900000000000000000,"y":-1950000000000000000,"z":-22000000000000000000}},"30019257":{"solarSystemId":30019257,"solarSystemName":"U.3QK.RX1","location":{"x":-35300000000000000000,"y":-2110000000000000000,"z":-23000000000000000000}},"30019258":{"solarSystemId":30019258,"solarSystemName":"T.MZW.YF1","location":{"x":-34500000000000000000,"y":-1940000000000000000,"z":-22200000000000000000}},"30019259":{"solarSystemId":30019259,"solarSystemName":"L.PVK.CB1","location":{"x":-35300000000000000000,"y":-1960000000000000000,"z":-22400000000000000000}},"30019260":{"solarSystemId":30019260,"solarSystemName":"A.D8E.GG1","location":{"x":-36000000000000000000,"y":-2010000000000000000,"z":-22100000000000000000}},"30019261":{"solarSystemId":30019261,"solarSystemName":"A.EDE.XY1","location":{"x":-36300000000000000000,"y":-2160000000000000000,"z":-21500000000000000000}},"30019262":{"solarSystemId":30019262,"solarSystemName":"N.FKK.ST1","location":{"x":-35700000000000000000,"y":-1560000000000000000,"z":-23700000000000000000}},"30019263":{"solarSystemId":30019263,"solarSystemName":"S.VLE.7N1","location":{"x":-36300000000000000000,"y":-1590000000000000000,"z":-21500000000000000000}},"30019264":{"solarSystemId":30019264,"solarSystemName":"N.QEK.BD1","location":{"x":-35700000000000000000,"y":-1720000000000000000,"z":-23500000000000000000}},"30019265":{"solarSystemId":30019265,"solarSystemName":"T.S2E.KQ1","location":{"x":-35800000000000000000,"y":-1910000000000000000,"z":-21900000000000000000}},"30019266":{"solarSystemId":30019266,"solarSystemName":"C.531.LQL","location":{"x":-40600000000000000000,"y":-527000000000000000,"z":-25500000000000000000}},"30019267":{"solarSystemId":30019267,"solarSystemName":"M.631.1SF","location":{"x":-40600000000000000000,"y":-768000000000000000,"z":-25400000000000000000}},"30019268":{"solarSystemId":30019268,"solarSystemName":"Y:3O96","location":{"x":-13000000000000000000,"y":276000000000000000,"z":-12500000000000000000}},"30019269":{"solarSystemId":30019269,"solarSystemName":"D:3E2L","location":{"x":-13100000000000000000,"y":-783000000000000000,"z":-13700000000000000000}},"30019270":{"solarSystemId":30019270,"solarSystemName":"F:11NI","location":{"x":-13100000000000000000,"y":-401000000000000000,"z":-13900000000000000000}},"30019271":{"solarSystemId":30019271,"solarSystemName":"U:2SE5","location":{"x":-12100000000000000000,"y":840000000000000000,"z":-13700000000000000000}},"30019272":{"solarSystemId":30019272,"solarSystemName":"D:1L72","location":{"x":-12900000000000000000,"y":-634000000000000000,"z":-13600000000000000000}},"30019273":{"solarSystemId":30019273,"solarSystemName":"D:3ISL","location":{"x":-13700000000000000000,"y":-15300000000000000,"z":-14100000000000000000}},"30019274":{"solarSystemId":30019274,"solarSystemName":"D:3R01","location":{"x":-12500000000000000000,"y":-718000000000000000,"z":-13300000000000000000}},"30019275":{"solarSystemId":30019275,"solarSystemName":"M:17I3","location":{"x":-13000000000000000000,"y":-196000000000000000,"z":-14200000000000000000}},"30019276":{"solarSystemId":30019276,"solarSystemName":"D:1480","location":{"x":-12700000000000000000,"y":-756000000000000000,"z":-13500000000000000000}},"30019277":{"solarSystemId":30019277,"solarSystemName":"M:2K5E","location":{"x":-12800000000000000000,"y":373000000000000000,"z":-13800000000000000000}},"30019278":{"solarSystemId":30019278,"solarSystemName":"P:14L4","location":{"x":-13300000000000000000,"y":-122000000000000000,"z":-13200000000000000000}},"30019279":{"solarSystemId":30019279,"solarSystemName":"J:232O","location":{"x":-13000000000000000000,"y":-130000000000000000,"z":-13300000000000000000}},"30019280":{"solarSystemId":30019280,"solarSystemName":"U:1O4O","location":{"x":-13200000000000000000,"y":-164000000000000000,"z":-13000000000000000000}},"30019281":{"solarSystemId":30019281,"solarSystemName":"Y:1N9N","location":{"x":-11500000000000000000,"y":1540000000000000000,"z":-15400000000000000000}},"30019282":{"solarSystemId":30019282,"solarSystemName":"J:24AS","location":{"x":-11200000000000000000,"y":2530000000000000000,"z":-14800000000000000000}},"30019283":{"solarSystemId":30019283,"solarSystemName":"F:15L1","location":{"x":-10800000000000000000,"y":1760000000000000000,"z":-14500000000000000000}},"30019284":{"solarSystemId":30019284,"solarSystemName":"M:35V1","location":{"x":-11200000000000000000,"y":2050000000000000000,"z":-15300000000000000000}},"30019285":{"solarSystemId":30019285,"solarSystemName":"Z:3II6","location":{"x":-11200000000000000000,"y":1970000000000000000,"z":-14600000000000000000}},"30019286":{"solarSystemId":30019286,"solarSystemName":"D:25EA","location":{"x":-11300000000000000000,"y":2140000000000000000,"z":-14900000000000000000}},"30019287":{"solarSystemId":30019287,"solarSystemName":"Y:10OE","location":{"x":-11000000000000000000,"y":2320000000000000000,"z":-14900000000000000000}},"30019288":{"solarSystemId":30019288,"solarSystemName":"G:36V9","location":{"x":-10600000000000000000,"y":1700000000000000000,"z":-15500000000000000000}},"30019289":{"solarSystemId":30019289,"solarSystemName":"D:10S8","location":{"x":-11500000000000000000,"y":1650000000000000000,"z":-14600000000000000000}},"30019290":{"solarSystemId":30019290,"solarSystemName":"B:IR4I","location":{"x":-11200000000000000000,"y":1860000000000000000,"z":-15100000000000000000}},"30019291":{"solarSystemId":30019291,"solarSystemName":"B:3E0R","location":{"x":-13500000000000000000,"y":-587000000000000000,"z":-15200000000000000000}},"30019292":{"solarSystemId":30019292,"solarSystemName":"G:308I","location":{"x":-13000000000000000000,"y":-799000000000000000,"z":-14400000000000000000}},"30019293":{"solarSystemId":30019293,"solarSystemName":"B:2KTT","location":{"x":-13900000000000000000,"y":-853000000000000000,"z":-14700000000000000000}},"30019294":{"solarSystemId":30019294,"solarSystemName":"Y:2NE7","location":{"x":-14400000000000000000,"y":-623000000000000000,"z":-14500000000000000000}},"30019295":{"solarSystemId":30019295,"solarSystemName":"Z:20E6","location":{"x":-14400000000000000000,"y":-54000000000000000,"z":-14200000000000000000}},"30019296":{"solarSystemId":30019296,"solarSystemName":"P:2EAE","location":{"x":-14700000000000000000,"y":-470000000000000000,"z":-14800000000000000000}},"30019297":{"solarSystemId":30019297,"solarSystemName":"G:12EK","location":{"x":-13900000000000000000,"y":-600000000000000000,"z":-14400000000000000000}},"30019298":{"solarSystemId":30019298,"solarSystemName":"G:3N57","location":{"x":-12900000000000000000,"y":-871000000000000000,"z":-14700000000000000000}},"30019299":{"solarSystemId":30019299,"solarSystemName":"P:3AT5","location":{"x":-13900000000000000000,"y":-1000000000000000000,"z":-14500000000000000000}},"30019300":{"solarSystemId":30019300,"solarSystemName":"Z:1O81","location":{"x":-14000000000000000000,"y":-568000000000000000,"z":-15200000000000000000}},"30019301":{"solarSystemId":30019301,"solarSystemName":"U:30E3","location":{"x":-14100000000000000000,"y":-1140000000000000000,"z":-14100000000000000000}},"30019302":{"solarSystemId":30019302,"solarSystemName":"Z:1I21","location":{"x":-14600000000000000000,"y":-26000000000000000,"z":-14600000000000000000}},"30019303":{"solarSystemId":30019303,"solarSystemName":"B:1OOK","location":{"x":-15600000000000000000,"y":-796000000000000000,"z":-15400000000000000000}},"30019304":{"solarSystemId":30019304,"solarSystemName":"G:22AV","location":{"x":-15800000000000000000,"y":-313000000000000000,"z":-15600000000000000000}},"30019305":{"solarSystemId":30019305,"solarSystemName":"P:15IV","location":{"x":-14600000000000000000,"y":-1370000000000000000,"z":-15500000000000000000}},"30019306":{"solarSystemId":30019306,"solarSystemName":"H:IKE7","location":{"x":-15100000000000000000,"y":-654000000000000000,"z":-14700000000000000000}},"30019307":{"solarSystemId":30019307,"solarSystemName":"D:27LT","location":{"x":-15200000000000000000,"y":-529000000000000000,"z":-14800000000000000000}},"30019308":{"solarSystemId":30019308,"solarSystemName":"M:1A43","location":{"x":-14800000000000000000,"y":-598000000000000000,"z":-15600000000000000000}},"30019309":{"solarSystemId":30019309,"solarSystemName":"B:1NVK","location":{"x":-15800000000000000000,"y":-368000000000000000,"z":-15700000000000000000}},"30019310":{"solarSystemId":30019310,"solarSystemName":"Y:3A7E","location":{"x":-15900000000000000000,"y":-666000000000000000,"z":-14500000000000000000}},"30019311":{"solarSystemId":30019311,"solarSystemName":"B:2A0S","location":{"x":-14500000000000000000,"y":-968000000000000000,"z":-15700000000000000000}},"30019312":{"solarSystemId":30019312,"solarSystemName":"J:1572","location":{"x":-15000000000000000000,"y":-1970000000000000000,"z":-14700000000000000000}},"30019313":{"solarSystemId":30019313,"solarSystemName":"J:1LTE","location":{"x":-16400000000000000000,"y":-1040000000000000000,"z":-14300000000000000000}},"30019314":{"solarSystemId":30019314,"solarSystemName":"P:281T","location":{"x":-14600000000000000000,"y":-1090000000000000000,"z":-13900000000000000000}},"30019315":{"solarSystemId":30019315,"solarSystemName":"P:31S0","location":{"x":-14200000000000000000,"y":5330000000000000000,"z":-16000000000000000000}},"30019316":{"solarSystemId":30019316,"solarSystemName":"D:15L0","location":{"x":-14100000000000000000,"y":122000000000000000,"z":-16500000000000000000}},"30019317":{"solarSystemId":30019317,"solarSystemName":"M:2KOA","location":{"x":-13500000000000000000,"y":1240000000000000000,"z":-16400000000000000000}},"30019318":{"solarSystemId":30019318,"solarSystemName":"J:3012","location":{"x":-13900000000000000000,"y":2760000000000000000,"z":-16000000000000000000}},"30019319":{"solarSystemId":30019319,"solarSystemName":"U:17T2","location":{"x":-12700000000000000000,"y":6430000000000000000,"z":-17400000000000000000}},"30019320":{"solarSystemId":30019320,"solarSystemName":"J:4K0R","location":{"x":-12300000000000000000,"y":1630000000000000000,"z":-16400000000000000000}},"30019321":{"solarSystemId":30019321,"solarSystemName":"P:3088","location":{"x":-14700000000000000000,"y":1700000000000000000,"z":-16900000000000000000}},"30019322":{"solarSystemId":30019322,"solarSystemName":"Q:2NOA","location":{"x":-13500000000000000000,"y":838000000000000000,"z":-15200000000000000000}},"30019323":{"solarSystemId":30019323,"solarSystemName":"M:1EAV","location":{"x":-13900000000000000000,"y":2550000000000000000,"z":-17100000000000000000}},"30019324":{"solarSystemId":30019324,"solarSystemName":"G:245V","location":{"x":-12900000000000000000,"y":1300000000000000000,"z":-15800000000000000000}},"30019325":{"solarSystemId":30019325,"solarSystemName":"D:VN3R","location":{"x":-12500000000000000000,"y":239000000000000000,"z":-15900000000000000000}},"30019326":{"solarSystemId":30019326,"solarSystemName":"Q:425V","location":{"x":-14900000000000000000,"y":1550000000000000000,"z":-16700000000000000000}},"30019327":{"solarSystemId":30019327,"solarSystemName":"G:16LE","location":{"x":-13100000000000000000,"y":1150000000000000000,"z":-15300000000000000000}},"30019328":{"solarSystemId":30019328,"solarSystemName":"H:419T","location":{"x":-14500000000000000000,"y":2130000000000000000,"z":-15100000000000000000}},"30019329":{"solarSystemId":30019329,"solarSystemName":"Y:2ON6","location":{"x":-14900000000000000000,"y":1160000000000000000,"z":-15300000000000000000}},"30019330":{"solarSystemId":30019330,"solarSystemName":"Q:3E37","location":{"x":-14300000000000000000,"y":1330000000000000000,"z":-14700000000000000000}},"30019331":{"solarSystemId":30019331,"solarSystemName":"F:NS6N","location":{"x":-15600000000000000000,"y":1860000000000000000,"z":-15700000000000000000}},"30019332":{"solarSystemId":30019332,"solarSystemName":"U:146T","location":{"x":-14800000000000000000,"y":2450000000000000000,"z":-13900000000000000000}},"30019333":{"solarSystemId":30019333,"solarSystemName":"P:2NEO","location":{"x":-15400000000000000000,"y":1870000000000000000,"z":-14600000000000000000}},"30019334":{"solarSystemId":30019334,"solarSystemName":"B:20IN","location":{"x":-14800000000000000000,"y":1740000000000000000,"z":-14700000000000000000}},"30019335":{"solarSystemId":30019335,"solarSystemName":"G:2LIS","location":{"x":-15200000000000000000,"y":2060000000000000000,"z":-14500000000000000000}},"30019336":{"solarSystemId":30019336,"solarSystemName":"U:103T","location":{"x":-15300000000000000000,"y":2080000000000000000,"z":-15400000000000000000}},"30019337":{"solarSystemId":30019337,"solarSystemName":"U:2S5R","location":{"x":-14800000000000000000,"y":1970000000000000000,"z":-14100000000000000000}},"30019338":{"solarSystemId":30019338,"solarSystemName":"H:27ON","location":{"x":-12500000000000000000,"y":-827000000000000000,"z":-15800000000000000000}},"30019339":{"solarSystemId":30019339,"solarSystemName":"M:100R","location":{"x":-12700000000000000000,"y":-795000000000000000,"z":-14900000000000000000}},"30019340":{"solarSystemId":30019340,"solarSystemName":"F:2KEO","location":{"x":-12800000000000000000,"y":-943000000000000000,"z":-15900000000000000000}},"30019341":{"solarSystemId":30019341,"solarSystemName":"Z:1E90","location":{"x":-12200000000000000000,"y":-639000000000000000,"z":-15700000000000000000}},"30019342":{"solarSystemId":30019342,"solarSystemName":"P:4VNK","location":{"x":-12300000000000000000,"y":-458000000000000000,"z":-15700000000000000000}},"30019343":{"solarSystemId":30019343,"solarSystemName":"Y:3EIE","location":{"x":-12800000000000000000,"y":-105000000000000000,"z":-15800000000000000000}},"30019344":{"solarSystemId":30019344,"solarSystemName":"U:1K01","location":{"x":-12500000000000000000,"y":-806000000000000000,"z":-15400000000000000000}},"30019345":{"solarSystemId":30019345,"solarSystemName":"B:K1SN","location":{"x":-12500000000000000000,"y":-422000000000000000,"z":-15800000000000000000}},"30019346":{"solarSystemId":30019346,"solarSystemName":"G:19S3","location":{"x":-13000000000000000000,"y":-760000000000000000,"z":-15300000000000000000}},"30019347":{"solarSystemId":30019347,"solarSystemName":"Y:IT01","location":{"x":-12600000000000000000,"y":-849000000000000000,"z":-15500000000000000000}},"30019348":{"solarSystemId":30019348,"solarSystemName":"D:34I5","location":{"x":-12500000000000000000,"y":-460000000000000000,"z":-15500000000000000000}},"30019349":{"solarSystemId":30019349,"solarSystemName":"P:320E","location":{"x":-13000000000000000000,"y":-224000000000000000,"z":-16100000000000000000}},"30019350":{"solarSystemId":30019350,"solarSystemName":"Q:2848","location":{"x":-12900000000000000000,"y":1710000000000000000,"z":-14900000000000000000}},"30019351":{"solarSystemId":30019351,"solarSystemName":"B:3I4O","location":{"x":-13000000000000000000,"y":1360000000000000000,"z":-14600000000000000000}},"30019352":{"solarSystemId":30019352,"solarSystemName":"B:1RI1","location":{"x":-13300000000000000000,"y":640000000000000000,"z":-14100000000000000000}},"30019353":{"solarSystemId":30019353,"solarSystemName":"Q:22SR","location":{"x":-13800000000000000000,"y":1150000000000000000,"z":-13200000000000000000}},"30019354":{"solarSystemId":30019354,"solarSystemName":"Y:LO4O","location":{"x":-14200000000000000000,"y":1300000000000000000,"z":-13400000000000000000}},"30019355":{"solarSystemId":30019355,"solarSystemName":"F:28E0","location":{"x":-14000000000000000000,"y":2030000000000000000,"z":-13800000000000000000}},"30019356":{"solarSystemId":30019356,"solarSystemName":"G:13S6","location":{"x":-13400000000000000000,"y":736000000000000000,"z":-13000000000000000000}},"30019357":{"solarSystemId":30019357,"solarSystemName":"Y:25NE","location":{"x":-12500000000000000000,"y":1320000000000000000,"z":-13700000000000000000}},"30019358":{"solarSystemId":30019358,"solarSystemName":"P:1KO5","location":{"x":-12300000000000000000,"y":1830000000000000000,"z":-13200000000000000000}},"30019359":{"solarSystemId":30019359,"solarSystemName":"J:1LOS","location":{"x":-13900000000000000000,"y":1210000000000000000,"z":-12900000000000000000}},"30019360":{"solarSystemId":30019360,"solarSystemName":"G:O25R","location":{"x":-13300000000000000000,"y":1570000000000000000,"z":-14400000000000000000}},"30019361":{"solarSystemId":30019361,"solarSystemName":"Q:24SA","location":{"x":-33100000000000000000,"y":-1560000000000000000,"z":-8600000000000000000}},"30019362":{"solarSystemId":30019362,"solarSystemName":"Z:1N2R","location":{"x":-32300000000000000000,"y":-1290000000000000000,"z":-8470000000000000000}},"30019363":{"solarSystemId":30019363,"solarSystemName":"U:1N40","location":{"x":-33100000000000000000,"y":-1780000000000000000,"z":-8750000000000000000}},"30019364":{"solarSystemId":30019364,"solarSystemName":"G:2ATT","location":{"x":-32400000000000000000,"y":-1330000000000000000,"z":-8650000000000000000}},"30019365":{"solarSystemId":30019365,"solarSystemName":"P:3E36","location":{"x":-31900000000000000000,"y":-1410000000000000000,"z":-8460000000000000000}},"30019366":{"solarSystemId":30019366,"solarSystemName":"B:1R13","location":{"x":-32400000000000000000,"y":-1350000000000000000,"z":-8220000000000000000}},"30019367":{"solarSystemId":30019367,"solarSystemName":"P:12TK","location":{"x":-32000000000000000000,"y":-1380000000000000000,"z":-8260000000000000000}},"30019368":{"solarSystemId":30019368,"solarSystemName":"M:R244","location":{"x":-33600000000000000000,"y":-1410000000000000000,"z":-8750000000000000000}},"30019369":{"solarSystemId":30019369,"solarSystemName":"H:2T5S","location":{"x":-32600000000000000000,"y":-1160000000000000000,"z":-8250000000000000000}},"30019370":{"solarSystemId":30019370,"solarSystemName":"J:37NO","location":{"x":-32800000000000000000,"y":-1380000000000000000,"z":-8550000000000000000}},"30019371":{"solarSystemId":30019371,"solarSystemName":"J:30SN","location":{"x":-31900000000000000000,"y":-1500000000000000000,"z":-6930000000000000000}},"30019372":{"solarSystemId":30019372,"solarSystemName":"U:36T3","location":{"x":-31600000000000000000,"y":-1490000000000000000,"z":-7160000000000000000}},"30019373":{"solarSystemId":30019373,"solarSystemName":"H:1SEV","location":{"x":-31500000000000000000,"y":-1880000000000000000,"z":-7340000000000000000}},"30019374":{"solarSystemId":30019374,"solarSystemName":"H:3A1E","location":{"x":-31800000000000000000,"y":-1920000000000000000,"z":-7130000000000000000}},"30019375":{"solarSystemId":30019375,"solarSystemName":"J:2994","location":{"x":-32100000000000000000,"y":-1710000000000000000,"z":-7090000000000000000}},"30019376":{"solarSystemId":30019376,"solarSystemName":"P:1KO7","location":{"x":-31600000000000000000,"y":-1450000000000000000,"z":-6860000000000000000}},"30019377":{"solarSystemId":30019377,"solarSystemName":"H:3R96","location":{"x":-32100000000000000000,"y":-1650000000000000000,"z":-7570000000000000000}},"30019378":{"solarSystemId":30019378,"solarSystemName":"H:108T","location":{"x":-31600000000000000000,"y":-1910000000000000000,"z":-7060000000000000000}},"30019379":{"solarSystemId":30019379,"solarSystemName":"Y:IART","location":{"x":-31500000000000000000,"y":-2070000000000000000,"z":-7070000000000000000}},"30019380":{"solarSystemId":30019380,"solarSystemName":"F:1KV8","location":{"x":-31700000000000000000,"y":-1410000000000000000,"z":-6960000000000000000}},"30019381":{"solarSystemId":30019381,"solarSystemName":"G:391T","location":{"x":-31500000000000000000,"y":-1660000000000000000,"z":-7450000000000000000}},"30019382":{"solarSystemId":30019382,"solarSystemName":"Y:1K2T","location":{"x":-30700000000000000000,"y":-1310000000000000000,"z":-7480000000000000000}},"30019383":{"solarSystemId":30019383,"solarSystemName":"F:4L12","location":{"x":-30300000000000000000,"y":-1720000000000000000,"z":-7540000000000000000}},"30019384":{"solarSystemId":30019384,"solarSystemName":"M:18LL","location":{"x":-30900000000000000000,"y":-1300000000000000000,"z":-7010000000000000000}},"30019385":{"solarSystemId":30019385,"solarSystemName":"B:3ER4","location":{"x":-30900000000000000000,"y":-1460000000000000000,"z":-6970000000000000000}},"30019386":{"solarSystemId":30019386,"solarSystemName":"U:4O41","location":{"x":-29700000000000000000,"y":-1520000000000000000,"z":-7080000000000000000}},"30019387":{"solarSystemId":30019387,"solarSystemName":"F:35NV","location":{"x":-31200000000000000000,"y":-1590000000000000000,"z":-7070000000000000000}},"30019388":{"solarSystemId":30019388,"solarSystemName":"U:2T3A","location":{"x":-29800000000000000000,"y":-1550000000000000000,"z":-7450000000000000000}},"30019389":{"solarSystemId":30019389,"solarSystemName":"Q:2501","location":{"x":-31200000000000000000,"y":-1510000000000000000,"z":-7390000000000000000}},"30019390":{"solarSystemId":30019390,"solarSystemName":"U:4E99","location":{"x":-31200000000000000000,"y":-1160000000000000000,"z":-7170000000000000000}},"30019391":{"solarSystemId":30019391,"solarSystemName":"D:3AS3","location":{"x":-30400000000000000000,"y":-1300000000000000000,"z":-7190000000000000000}},"30019392":{"solarSystemId":30019392,"solarSystemName":"F:172K","location":{"x":-30800000000000000000,"y":-802000000000000000,"z":-7420000000000000000}},"30019393":{"solarSystemId":30019393,"solarSystemName":"J:30EV","location":{"x":-31600000000000000000,"y":-3050000000000000000,"z":-5710000000000000000}},"30019394":{"solarSystemId":30019394,"solarSystemName":"B:1E8I","location":{"x":-31400000000000000000,"y":-1650000000000000000,"z":-6030000000000000000}},"30019395":{"solarSystemId":30019395,"solarSystemName":"B:3SNL","location":{"x":-31100000000000000000,"y":-2160000000000000000,"z":-6540000000000000000}},"30019396":{"solarSystemId":30019396,"solarSystemName":"Y:180V","location":{"x":-31700000000000000000,"y":-2750000000000000000,"z":-7210000000000000000}},"30019397":{"solarSystemId":30019397,"solarSystemName":"U:I350","location":{"x":-31400000000000000000,"y":-2610000000000000000,"z":-6070000000000000000}},"30019398":{"solarSystemId":30019398,"solarSystemName":"U:35T3","location":{"x":-32200000000000000000,"y":-2390000000000000000,"z":-5840000000000000000}},"30019399":{"solarSystemId":30019399,"solarSystemName":"Y:21NA","location":{"x":-31600000000000000000,"y":-1590000000000000000,"z":-5840000000000000000}},"30019400":{"solarSystemId":30019400,"solarSystemName":"H:217A","location":{"x":-31800000000000000000,"y":-1330000000000000000,"z":-6060000000000000000}},"30019401":{"solarSystemId":30019401,"solarSystemName":"F:3R8N","location":{"x":-31400000000000000000,"y":-2740000000000000000,"z":-6920000000000000000}},"30019402":{"solarSystemId":30019402,"solarSystemName":"B:I380","location":{"x":-32000000000000000000,"y":-2060000000000000000,"z":-6680000000000000000}},"30019403":{"solarSystemId":30019403,"solarSystemName":"P:21E8","location":{"x":-31900000000000000000,"y":-1990000000000000000,"z":-5480000000000000000}},"30019404":{"solarSystemId":30019404,"solarSystemName":"Y:2ALL","location":{"x":-31500000000000000000,"y":-3380000000000000000,"z":-6750000000000000000}},"30019405":{"solarSystemId":30019405,"solarSystemName":"U:27A5","location":{"x":-29100000000000000000,"y":-998000000000000000,"z":-6160000000000000000}},"30019406":{"solarSystemId":30019406,"solarSystemName":"M:VTOT","location":{"x":-30100000000000000000,"y":-1010000000000000000,"z":-5460000000000000000}},"30019407":{"solarSystemId":30019407,"solarSystemName":"F:13E8","location":{"x":-30100000000000000000,"y":-1190000000000000000,"z":-6090000000000000000}},"30019408":{"solarSystemId":30019408,"solarSystemName":"G:2513","location":{"x":-29500000000000000000,"y":-1750000000000000000,"z":-6720000000000000000}},"30019409":{"solarSystemId":30019409,"solarSystemName":"U:1176","location":{"x":-29100000000000000000,"y":-1250000000000000000,"z":-6200000000000000000}},"30019410":{"solarSystemId":30019410,"solarSystemName":"P:13T6","location":{"x":-30800000000000000000,"y":-1020000000000000000,"z":-6300000000000000000}},"30019411":{"solarSystemId":30019411,"solarSystemName":"Q:1K16","location":{"x":-29600000000000000000,"y":-1170000000000000000,"z":-5550000000000000000}},"30019412":{"solarSystemId":30019412,"solarSystemName":"U:19I9","location":{"x":-30700000000000000000,"y":-1170000000000000000,"z":-6740000000000000000}},"30019413":{"solarSystemId":30019413,"solarSystemName":"Z:2082","location":{"x":-29500000000000000000,"y":-2110000000000000000,"z":-6390000000000000000}},"30019414":{"solarSystemId":30019414,"solarSystemName":"P:2794","location":{"x":-30100000000000000000,"y":-1770000000000000000,"z":-5430000000000000000}},"30019415":{"solarSystemId":30019415,"solarSystemName":"Q:2OI3","location":{"x":-29700000000000000000,"y":-1520000000000000000,"z":-5770000000000000000}},"30019416":{"solarSystemId":30019416,"solarSystemName":"Q:200I","location":{"x":-30000000000000000000,"y":-860000000000000000,"z":-5830000000000000000}},"30019417":{"solarSystemId":30019417,"solarSystemName":"G:3957","location":{"x":-29400000000000000000,"y":-808000000000000000,"z":-6420000000000000000}},"30019418":{"solarSystemId":30019418,"solarSystemName":"G:1L49","location":{"x":-31100000000000000000,"y":-1910000000000000000,"z":-7070000000000000000}},"30019419":{"solarSystemId":30019419,"solarSystemName":"P:3TE5","location":{"x":-31500000000000000000,"y":-1600000000000000000,"z":-7600000000000000000}},"30019420":{"solarSystemId":30019420,"solarSystemName":"U:328R","location":{"x":-31400000000000000000,"y":-1490000000000000000,"z":-7450000000000000000}},"30019421":{"solarSystemId":30019421,"solarSystemName":"U:34L8","location":{"x":-31400000000000000000,"y":-1860000000000000000,"z":-7350000000000000000}},"30019422":{"solarSystemId":30019422,"solarSystemName":"J:SI4E","location":{"x":-30600000000000000000,"y":-1900000000000000000,"z":-8010000000000000000}},"30019423":{"solarSystemId":30019423,"solarSystemName":"J:3L7V","location":{"x":-30500000000000000000,"y":-1830000000000000000,"z":-8560000000000000000}},"30019424":{"solarSystemId":30019424,"solarSystemName":"F:2N9A","location":{"x":-31400000000000000000,"y":-1940000000000000000,"z":-7370000000000000000}},"30019425":{"solarSystemId":30019425,"solarSystemName":"J:3TIO","location":{"x":-31400000000000000000,"y":-1860000000000000000,"z":-7760000000000000000}},"30019426":{"solarSystemId":30019426,"solarSystemName":"B:1893","location":{"x":-31400000000000000000,"y":-1310000000000000000,"z":-7820000000000000000}},"30019427":{"solarSystemId":30019427,"solarSystemName":"U:T0VI","location":{"x":-31500000000000000000,"y":-1220000000000000000,"z":-7970000000000000000}},"30019428":{"solarSystemId":30019428,"solarSystemName":"Z:ILSL","location":{"x":-31600000000000000000,"y":-3910000000000000000,"z":-6590000000000000000}},"30019429":{"solarSystemId":30019429,"solarSystemName":"D:16TK","location":{"x":-31100000000000000000,"y":-2730000000000000000,"z":-7330000000000000000}},"30019430":{"solarSystemId":30019430,"solarSystemName":"Z:T71S","location":{"x":-30500000000000000000,"y":-4750000000000000000,"z":-6920000000000000000}},"30019431":{"solarSystemId":30019431,"solarSystemName":"F:1S8V","location":{"x":-31100000000000000000,"y":-2850000000000000000,"z":-7130000000000000000}},"30019432":{"solarSystemId":30019432,"solarSystemName":"P:VEK5","location":{"x":-31700000000000000000,"y":-4500000000000000000,"z":-8100000000000000000}},"30019433":{"solarSystemId":30019433,"solarSystemName":"Z:2SL5","location":{"x":-30900000000000000000,"y":-2860000000000000000,"z":-7040000000000000000}},"30019434":{"solarSystemId":30019434,"solarSystemName":"U:2E07","location":{"x":-29700000000000000000,"y":-1110000000000000000,"z":-8520000000000000000}},"30019435":{"solarSystemId":30019435,"solarSystemName":"M:205N","location":{"x":-29600000000000000000,"y":-2230000000000000000,"z":-8490000000000000000}},"30019436":{"solarSystemId":30019436,"solarSystemName":"Z:48A7","location":{"x":-30200000000000000000,"y":-1510000000000000000,"z":-8690000000000000000}},"30019437":{"solarSystemId":30019437,"solarSystemName":"P:11A0","location":{"x":-29200000000000000000,"y":-1610000000000000000,"z":-9290000000000000000}},"30019438":{"solarSystemId":30019438,"solarSystemName":"M:2AE4","location":{"x":-29400000000000000000,"y":-1500000000000000000,"z":-7990000000000000000}},"30019439":{"solarSystemId":30019439,"solarSystemName":"H:K5L0","location":{"x":-29200000000000000000,"y":-1680000000000000000,"z":-7950000000000000000}},"30019440":{"solarSystemId":30019440,"solarSystemName":"Z:1VE1","location":{"x":-29800000000000000000,"y":-1690000000000000000,"z":-9060000000000000000}},"30019441":{"solarSystemId":30019441,"solarSystemName":"H:23IE","location":{"x":-29700000000000000000,"y":-1180000000000000000,"z":-8720000000000000000}},"30019442":{"solarSystemId":30019442,"solarSystemName":"Y:3RT8","location":{"x":-30100000000000000000,"y":-1890000000000000000,"z":-8890000000000000000}},"30019443":{"solarSystemId":30019443,"solarSystemName":"G:3ESE","location":{"x":-29100000000000000000,"y":-1770000000000000000,"z":-8990000000000000000}},"30019444":{"solarSystemId":30019444,"solarSystemName":"J:21TI","location":{"x":-30000000000000000000,"y":-1640000000000000000,"z":-8870000000000000000}},"30019445":{"solarSystemId":30019445,"solarSystemName":"Q:1ARN","location":{"x":-30100000000000000000,"y":-2270000000000000000,"z":-9330000000000000000}},"30019446":{"solarSystemId":30019446,"solarSystemName":"Q:118N","location":{"x":-29300000000000000000,"y":-1310000000000000000,"z":-8580000000000000000}},"30019447":{"solarSystemId":30019447,"solarSystemName":"G:1EO6","location":{"x":-29100000000000000000,"y":-1670000000000000000,"z":-8470000000000000000}},"30019448":{"solarSystemId":30019448,"solarSystemName":"J:SSIL","location":{"x":-29000000000000000000,"y":-1140000000000000000,"z":-7690000000000000000}},"30019449":{"solarSystemId":30019449,"solarSystemName":"H:3E2E","location":{"x":-29300000000000000000,"y":-1270000000000000000,"z":-7120000000000000000}},"30019450":{"solarSystemId":30019450,"solarSystemName":"B:4O4R","location":{"x":-29500000000000000000,"y":-159000000000000000,"z":-6980000000000000000}},"30019451":{"solarSystemId":30019451,"solarSystemName":"H:K2R3","location":{"x":-30200000000000000000,"y":-310000000000000000,"z":-8510000000000000000}},"30019452":{"solarSystemId":30019452,"solarSystemName":"Z:R7A0","location":{"x":-29500000000000000000,"y":-505000000000000000,"z":-7440000000000000000}},"30019453":{"solarSystemId":30019453,"solarSystemName":"Q:15VT","location":{"x":-29000000000000000000,"y":-393000000000000000,"z":-7460000000000000000}},"30019454":{"solarSystemId":30019454,"solarSystemName":"G:121A","location":{"x":-29600000000000000000,"y":-178000000000000000,"z":-6620000000000000000}},"30019455":{"solarSystemId":30019455,"solarSystemName":"U:27R8","location":{"x":-28800000000000000000,"y":-694000000000000000,"z":-7330000000000000000}},"30019456":{"solarSystemId":30019456,"solarSystemName":"M:270V","location":{"x":-29300000000000000000,"y":-1170000000000000000,"z":-6780000000000000000}},"30019457":{"solarSystemId":30019457,"solarSystemName":"Y:R959","location":{"x":-29500000000000000000,"y":-451000000000000000,"z":-7310000000000000000}},"30019458":{"solarSystemId":30019458,"solarSystemName":"B:1OLS","location":{"x":-29700000000000000000,"y":-543000000000000000,"z":-8620000000000000000}},"30019459":{"solarSystemId":30019459,"solarSystemName":"Q:1TN9","location":{"x":-29000000000000000000,"y":-584000000000000000,"z":-7360000000000000000}},"30019460":{"solarSystemId":30019460,"solarSystemName":"U:217S","location":{"x":-30300000000000000000,"y":-576000000000000000,"z":-7900000000000000000}},"30019461":{"solarSystemId":30019461,"solarSystemName":"G:1R04","location":{"x":-30000000000000000000,"y":-503000000000000000,"z":-8740000000000000000}},"30019462":{"solarSystemId":30019462,"solarSystemName":"U:10V7","location":{"x":-29900000000000000000,"y":-692000000000000000,"z":-8250000000000000000}},"30019463":{"solarSystemId":30019463,"solarSystemName":"Y:3ELI","location":{"x":-33500000000000000000,"y":5550000000000000000,"z":-7820000000000000000}},"30019464":{"solarSystemId":30019464,"solarSystemName":"Z:TEV1","location":{"x":-33000000000000000000,"y":1490000000000000000,"z":-9030000000000000000}},"30019465":{"solarSystemId":30019465,"solarSystemName":"M:17EO","location":{"x":-31700000000000000000,"y":5160000000000000000,"z":-8470000000000000000}},"30019466":{"solarSystemId":30019466,"solarSystemName":"B:L4T7","location":{"x":-32100000000000000000,"y":477000000000000000,"z":-8780000000000000000}},"30019467":{"solarSystemId":30019467,"solarSystemName":"J:1I0S","location":{"x":-32300000000000000000,"y":5580000000000000000,"z":-9510000000000000000}},"30019468":{"solarSystemId":30019468,"solarSystemName":"ENS-DK8","location":{"x":-44600000000000000000,"y":-1010000000000000000,"z":-25800000000000000000}},"30019469":{"solarSystemId":30019469,"solarSystemName":"ESP-CK8","location":{"x":-44200000000000000000,"y":-1420000000000000000,"z":-26400000000000000000}},"30019470":{"solarSystemId":30019470,"solarSystemName":"O34-BK8","location":{"x":-43400000000000000000,"y":-1370000000000000000,"z":-27600000000000000000}},"30019471":{"solarSystemId":30019471,"solarSystemName":"OML-KL8","location":{"x":-44500000000000000000,"y":-685000000000000000,"z":-28100000000000000000}},"30019472":{"solarSystemId":30019472,"solarSystemName":"E6Q-TJ8","location":{"x":-43000000000000000000,"y":-633000000000000000,"z":-27400000000000000000}},"30019473":{"solarSystemId":30019473,"solarSystemName":"O50-HD8","location":{"x":-40300000000000000000,"y":-3010000000000000000,"z":-24600000000000000000}},"30019474":{"solarSystemId":30019474,"solarSystemName":"ORV-9H8","location":{"x":-41900000000000000000,"y":-3340000000000000000,"z":-26200000000000000000}},"30019475":{"solarSystemId":30019475,"solarSystemName":"IP9-3H8","location":{"x":-41500000000000000000,"y":-3150000000000000000,"z":-26600000000000000000}},"30019476":{"solarSystemId":30019476,"solarSystemName":"E8D-KH8","location":{"x":-40900000000000000000,"y":-4580000000000000000,"z":-28000000000000000000}},"30019477":{"solarSystemId":30019477,"solarSystemName":"E9F-5G8","location":{"x":-41200000000000000000,"y":-2130000000000000000,"z":-25700000000000000000}},"30019478":{"solarSystemId":30019478,"solarSystemName":"UJ1-NF8","location":{"x":-39800000000000000000,"y":-3970000000000000000,"z":-26900000000000000000}},"30019479":{"solarSystemId":30019479,"solarSystemName":"I4P-FG8","location":{"x":-40600000000000000000,"y":-3610000000000000000,"z":-26900000000000000000}},"30019480":{"solarSystemId":30019480,"solarSystemName":"EM8-DF8","location":{"x":-39500000000000000000,"y":-2600000000000000000,"z":-27100000000000000000}},"30019481":{"solarSystemId":30019481,"solarSystemName":"EJ1-VD8","location":{"x":-38900000000000000000,"y":-1580000000000000000,"z":-27500000000000000000}},"30019482":{"solarSystemId":30019482,"solarSystemName":"Athens","location":{"x":-39300000000000000000,"y":-1450000000000000000,"z":-27800000000000000000}},"30019483":{"solarSystemId":30019483,"solarSystemName":"E55-4H8","location":{"x":-41400000000000000000,"y":-1570000000000000000,"z":-27000000000000000000}},"30019484":{"solarSystemId":30019484,"solarSystemName":"I1G-0G8","location":{"x":-40200000000000000000,"y":-792000000000000000,"z":-27100000000000000000}},"30019485":{"solarSystemId":30019485,"solarSystemName":"E71-0H8","location":{"x":-41000000000000000000,"y":-870000000000000000,"z":-27300000000000000000}},"30019486":{"solarSystemId":30019486,"solarSystemName":"IQ4-RG8","location":{"x":-40400000000000000000,"y":-1350000000000000000,"z":-27900000000000000000}},"30019487":{"solarSystemId":30019487,"solarSystemName":"EP9-HF8","location":{"x":-39500000000000000000,"y":-954000000000000000,"z":-27500000000000000000}},"30019488":{"solarSystemId":30019488,"solarSystemName":"O4B-KG8","location":{"x":-40600000000000000000,"y":-800000000000000000,"z":-27400000000000000000}},"30019489":{"solarSystemId":30019489,"solarSystemName":"EQN-KM8","location":{"x":-42200000000000000000,"y":-3080000000000000000,"z":-32600000000000000000}},"30019490":{"solarSystemId":30019490,"solarSystemName":"O5J-PH8","location":{"x":-38400000000000000000,"y":-3210000000000000000,"z":-31700000000000000000}},"30019491":{"solarSystemId":30019491,"solarSystemName":"I2N-JF8","location":{"x":-38800000000000000000,"y":-1430000000000000000,"z":-28600000000000000000}},"30019492":{"solarSystemId":30019492,"solarSystemName":"IRV-SJ8","location":{"x":-41100000000000000000,"y":-4030000000000000000,"z":-29600000000000000000}},"30019493":{"solarSystemId":30019493,"solarSystemName":"A2G-3K8","location":{"x":-41400000000000000000,"y":-1170000000000000000,"z":-30100000000000000000}},"30019494":{"solarSystemId":30019494,"solarSystemName":"OJ6-LL8","location":{"x":-44100000000000000000,"y":-4340000000000000000,"z":-28300000000000000000}},"30019495":{"solarSystemId":30019495,"solarSystemName":"IPM-2P8","location":{"x":-46900000000000000000,"y":-3260000000000000000,"z":-28100000000000000000}},"30019496":{"solarSystemId":30019496,"solarSystemName":"A8R-BM8","location":{"x":-43600000000000000000,"y":-3500000000000000000,"z":-30100000000000000000}},"30019497":{"solarSystemId":30019497,"solarSystemName":"E5J-3L8","location":{"x":-43900000000000000000,"y":-1380000000000000000,"z":-28200000000000000000}},"30019498":{"solarSystemId":30019498,"solarSystemName":"U34-QH8","location":{"x":-42100000000000000000,"y":-3930000000000000000,"z":-26500000000000000000}},"30019499":{"solarSystemId":30019499,"solarSystemName":"O3N-QM8","location":{"x":-42900000000000000000,"y":-879000000000000000,"z":-32400000000000000000}},"30019500":{"solarSystemId":30019500,"solarSystemName":"A5B-RN8","location":{"x":-43600000000000000000,"y":-848000000000000000,"z":-33000000000000000000}},"30019501":{"solarSystemId":30019501,"solarSystemName":"AGB-4P8","location":{"x":-43700000000000000000,"y":-1480000000000000000,"z":-33200000000000000000}},"30019502":{"solarSystemId":30019502,"solarSystemName":"ALD-JN8","location":{"x":-44600000000000000000,"y":-444000000000000000,"z":-31300000000000000000}},"30019503":{"solarSystemId":30019503,"solarSystemName":"E0L-4P8","location":{"x":-42800000000000000000,"y":-616000000000000000,"z":-34300000000000000000}},"30019504":{"solarSystemId":30019504,"solarSystemName":"AH5-LP8","location":{"x":-45600000000000000000,"y":-993000000000000000,"z":-31700000000000000000}},"30019505":{"solarSystemId":30019505,"solarSystemName":"EKQ-LQ8","location":{"x":-43000000000000000000,"y":-437000000000000000,"z":-36400000000000000000}},"30019506":{"solarSystemId":30019506,"solarSystemName":"OL1-GP8","location":{"x":-41800000000000000000,"y":-806000000000000000,"z":-36000000000000000000}},"30019507":{"solarSystemId":30019507,"solarSystemName":"ET0-TN8","location":{"x":-41600000000000000000,"y":-1060000000000000000,"z":-35300000000000000000}},"30019508":{"solarSystemId":30019508,"solarSystemName":"I9R-4N8","location":{"x":-40100000000000000000,"y":-1470000000000000000,"z":-36000000000000000000}},"30019509":{"solarSystemId":30019509,"solarSystemName":"EH0-2M8","location":{"x":-40700000000000000000,"y":-1110000000000000000,"z":-33800000000000000000}},"30019510":{"solarSystemId":30019510,"solarSystemName":"A71-9K8","location":{"x":-41200000000000000000,"y":-1190000000000000000,"z":-30500000000000000000}},"30019511":{"solarSystemId":30019511,"solarSystemName":"A60-6K8","location":{"x":-38700000000000000000,"y":-1110000000000000000,"z":-33400000000000000000}},"30019512":{"solarSystemId":30019512,"solarSystemName":"EV6-KJ8","location":{"x":-40300000000000000000,"y":-757000000000000000,"z":-30800000000000000000}},"30019513":{"solarSystemId":30019513,"solarSystemName":"A1M-BK8","location":{"x":-41100000000000000000,"y":-568000000000000000,"z":-31000000000000000000}},"30019514":{"solarSystemId":30019514,"solarSystemName":"OQ9-6L8","location":{"x":-40700000000000000000,"y":-949000000000000000,"z":-32700000000000000000}},"30019515":{"solarSystemId":30019515,"solarSystemName":"S.H3J.HD1","location":{"x":-29000000000000000000,"y":-1720000000000000000,"z":-25700000000000000000}},"30019516":{"solarSystemId":30019516,"solarSystemName":"E.FSJ.W44","location":{"x":-29200000000000000000,"y":-4790000000000000000,"z":-24600000000000000000}},"30019517":{"solarSystemId":30019517,"solarSystemName":"I.5VJ.0S1","location":{"x":-29500000000000000000,"y":-1510000000000000000,"z":-25900000000000000000}},"30019518":{"solarSystemId":30019518,"solarSystemName":"U.E0J.C7C","location":{"x":-28900000000000000000,"y":-585000000000000000,"z":-25500000000000000000}},"30019519":{"solarSystemId":30019519,"solarSystemName":"N.8NJ.FF4","location":{"x":-29300000000000000000,"y":-5390000000000000000,"z":-23700000000000000000}},"30019520":{"solarSystemId":30019520,"solarSystemName":"N.SEH.S31","location":{"x":-28800000000000000000,"y":-1270000000000000000,"z":-25500000000000000000}},"30019521":{"solarSystemId":30019521,"solarSystemName":"T.PHH.861","location":{"x":-28600000000000000000,"y":-1380000000000000000,"z":-26000000000000000000}},"30019522":{"solarSystemId":30019522,"solarSystemName":"U.P6H.F81","location":{"x":-27900000000000000000,"y":-1470000000000000000,"z":-25900000000000000000}},"30019523":{"solarSystemId":30019523,"solarSystemName":"T.Y7H.DS1","location":{"x":-28000000000000000000,"y":-1530000000000000000,"z":-25600000000000000000}},"30019524":{"solarSystemId":30019524,"solarSystemName":"E.CRH.H81","location":{"x":-28200000000000000000,"y":-1470000000000000000,"z":-25500000000000000000}},"30019525":{"solarSystemId":30019525,"solarSystemName":"H.6NH.XC1","location":{"x":-28100000000000000000,"y":-1760000000000000000,"z":-25800000000000000000}},"30019526":{"solarSystemId":30019526,"solarSystemName":"U.YGH.H01","location":{"x":-28500000000000000000,"y":-1180000000000000000,"z":-25700000000000000000}},"30019527":{"solarSystemId":30019527,"solarSystemName":"T.4RH.B7Y","location":{"x":-28100000000000000000,"y":-981000000000000000,"z":-25800000000000000000}},"30019528":{"solarSystemId":30019528,"solarSystemName":"A.ZFH.N31","location":{"x":-28500000000000000000,"y":-1270000000000000000,"z":-25900000000000000000}},"30019529":{"solarSystemId":30019529,"solarSystemName":"N.VDJ.P01","location":{"x":-29400000000000000000,"y":-1170000000000000000,"z":-25300000000000000000}},"30019530":{"solarSystemId":30019530,"solarSystemName":"T.4ZJ.7WB","location":{"x":-29800000000000000000,"y":-826000000000000000,"z":-25000000000000000000}},"30019531":{"solarSystemId":30019531,"solarSystemName":"U.4MJ.C51","location":{"x":-29400000000000000000,"y":-1350000000000000000,"z":-25500000000000000000}},"30019532":{"solarSystemId":30019532,"solarSystemName":"D.SHJ.391","location":{"x":-29700000000000000000,"y":-1480000000000000000,"z":-25600000000000000000}},"30019533":{"solarSystemId":30019533,"solarSystemName":"S.FYJ.QKZ","location":{"x":-29800000000000000000,"y":-1040000000000000000,"z":-25900000000000000000}},"30019534":{"solarSystemId":30019534,"solarSystemName":"N.41X.Z3J","location":{"x":-30000000000000000000,"y":-905000000000000000,"z":-25100000000000000000}},"30019535":{"solarSystemId":30019535,"solarSystemName":"N.BCH.00C","location":{"x":-28300000000000000000,"y":-576000000000000000,"z":-24000000000000000000}},"30019536":{"solarSystemId":30019536,"solarSystemName":"S.LEH.961","location":{"x":-28800000000000000000,"y":-1380000000000000000,"z":-24900000000000000000}},"30019537":{"solarSystemId":30019537,"solarSystemName":"U.79H.LZG","location":{"x":-28000000000000000000,"y":-861000000000000000,"z":-25100000000000000000}},"30019538":{"solarSystemId":30019538,"solarSystemName":"R.65H.47P","location":{"x":-27900000000000000000,"y":-657000000000000000,"z":-23700000000000000000}},"30019539":{"solarSystemId":30019539,"solarSystemName":"L.5SH.F41","location":{"x":-28000000000000000000,"y":-1320000000000000000,"z":-24400000000000000000}},"30019540":{"solarSystemId":30019540,"solarSystemName":"R.FMH.Y2X","location":{"x":-28300000000000000000,"y":-940000000000000000,"z":-25100000000000000000}},"30019541":{"solarSystemId":30019541,"solarSystemName":"M.YZG.731","location":{"x":-27600000000000000000,"y":-1270000000000000000,"z":-24600000000000000000}},"30019542":{"solarSystemId":30019542,"solarSystemName":"D.Z4H.971","location":{"x":-27800000000000000000,"y":-1420000000000000000,"z":-26100000000000000000}},"30019543":{"solarSystemId":30019543,"solarSystemName":"S.Z9H.EV1","location":{"x":-28000000000000000000,"y":-1870000000000000000,"z":-26400000000000000000}},"30019544":{"solarSystemId":30019544,"solarSystemName":"T.LMH.9T1","location":{"x":-28300000000000000000,"y":-1560000000000000000,"z":-27100000000000000000}},"30019545":{"solarSystemId":30019545,"solarSystemName":"N.S6H.ES1","location":{"x":-27900000000000000000,"y":-1550000000000000000,"z":-26300000000000000000}},"30019546":{"solarSystemId":30019546,"solarSystemName":"H.TYH.C9B","location":{"x":-28700000000000000000,"y":-803000000000000000,"z":-26300000000000000000}},"30019547":{"solarSystemId":30019547,"solarSystemName":"O.YSH.901","location":{"x":-28100000000000000000,"y":-1160000000000000000,"z":-28100000000000000000}},"30019548":{"solarSystemId":30019548,"solarSystemName":"L.90X.391","location":{"x":-30000000000000000000,"y":-1480000000000000000,"z":-27100000000000000000}},"30019549":{"solarSystemId":30019549,"solarSystemName":"R.YMJ.Y51","location":{"x":-29500000000000000000,"y":-1360000000000000000,"z":-26400000000000000000}},"30019550":{"solarSystemId":30019550,"solarSystemName":"N.TEJ.7XX","location":{"x":-30000000000000000000,"y":-966000000000000000,"z":-26800000000000000000}},"30019551":{"solarSystemId":30019551,"solarSystemName":"S.E2X.CTC","location":{"x":-30100000000000000000,"y":-589000000000000000,"z":-27100000000000000000}},"30019552":{"solarSystemId":30019552,"solarSystemName":"H.K6J.2S1","location":{"x":-29100000000000000000,"y":-1520000000000000000,"z":-26200000000000000000}},"30019553":{"solarSystemId":30019553,"solarSystemName":"S.1HJ.K4X","location":{"x":-29700000000000000000,"y":-942000000000000000,"z":-27700000000000000000}},"30019554":{"solarSystemId":30019554,"solarSystemName":"I.PBG.LP1","location":{"x":-27300000000000000000,"y":-1820000000000000000,"z":-25900000000000000000}},"30019555":{"solarSystemId":30019555,"solarSystemName":"T.XSG.Z41","location":{"x":-26900000000000000000,"y":-1330000000000000000,"z":-26100000000000000000}},"30019556":{"solarSystemId":30019556,"solarSystemName":"A.YRG.3VK","location":{"x":-27000000000000000000,"y":-1100000000000000000,"z":-26100000000000000000}},"30019557":{"solarSystemId":30019557,"solarSystemName":"H.6YG.CS1","location":{"x":-27500000000000000000,"y":-1530000000000000000,"z":-26200000000000000000}},"30019558":{"solarSystemId":30019558,"solarSystemName":"R.2CG.ZL1","location":{"x":-27100000000000000000,"y":-1690000000000000000,"z":-26400000000000000000}},"30019559":{"solarSystemId":30019559,"solarSystemName":"S.K6G.XME","location":{"x":-26800000000000000000,"y":-1140000000000000000,"z":-25700000000000000000}},"30019560":{"solarSystemId":30019560,"solarSystemName":"U.XJG.Z71","location":{"x":-27400000000000000000,"y":-1440000000000000000,"z":-25500000000000000000}},"30019561":{"solarSystemId":30019561,"solarSystemName":"R.N2G.N81","location":{"x":-26600000000000000000,"y":-1450000000000000000,"z":-25000000000000000000}},"30019562":{"solarSystemId":30019562,"solarSystemName":"S.KMG.X21","location":{"x":-27200000000000000000,"y":-1250000000000000000,"z":-25500000000000000000}},"30019563":{"solarSystemId":30019563,"solarSystemName":"I.1WG.V51","location":{"x":-27600000000000000000,"y":-1350000000000000000,"z":-25300000000000000000}},"30019564":{"solarSystemId":30019564,"solarSystemName":"L.W5H.L51","location":{"x":-27900000000000000000,"y":-1350000000000000000,"z":-25800000000000000000}},"30019565":{"solarSystemId":30019565,"solarSystemName":"D.PEG.Y21","location":{"x":-27700000000000000000,"y":-1260000000000000000,"z":-25400000000000000000}},"30019566":{"solarSystemId":30019566,"solarSystemName":"E.N1W.YC1","location":{"x":-33500000000000000000,"y":-1760000000000000000,"z":-11500000000000000000}},"30019567":{"solarSystemId":30019567,"solarSystemName":"U.BFW.3Q1","location":{"x":-34200000000000000000,"y":-1880000000000000000,"z":-12200000000000000000}},"30019568":{"solarSystemId":30019568,"solarSystemName":"A.E2W.496","location":{"x":-33500000000000000000,"y":-226000000000000000,"z":-10800000000000000000}},"30019569":{"solarSystemId":30019569,"solarSystemName":"N.V3W.Y77","location":{"x":-33600000000000000000,"y":261000000000000000,"z":-12900000000000000000}},"30019570":{"solarSystemId":30019570,"solarSystemName":"S.5GW.LH1","location":{"x":-34300000000000000000,"y":-2030000000000000000,"z":-12300000000000000000}},"30019571":{"solarSystemId":30019571,"solarSystemName":"R.6BW.V3D","location":{"x":-34200000000000000000,"y":-545000000000000000,"z":-11600000000000000000}},"30019572":{"solarSystemId":30019572,"solarSystemName":"C.TQW.RRL","location":{"x":-34200000000000000000,"y":-520000000000000000,"z":-13200000000000000000}},"30019573":{"solarSystemId":30019573,"solarSystemName":"M.17W.ZXK","location":{"x":-33700000000000000000,"y":-1110000000000000000,"z":-11400000000000000000}},"30019574":{"solarSystemId":30019574,"solarSystemName":"M.EPK.9SX","location":{"x":-35300000000000000000,"y":-948000000000000000,"z":-11500000000000000000}},"30019575":{"solarSystemId":30019575,"solarSystemName":"I.SBZ.VW1","location":{"x":-33100000000000000000,"y":-2220000000000000000,"z":-15000000000000000000}},"30019576":{"solarSystemId":30019576,"solarSystemName":"H.V6Z.0W1","location":{"x":-32500000000000000000,"y":-2200000000000000000,"z":-14500000000000000000}},"30019577":{"solarSystemId":30019577,"solarSystemName":"E.59Z.KP1","location":{"x":-32600000000000000000,"y":-1840000000000000000,"z":-15100000000000000000}},"30019578":{"solarSystemId":30019578,"solarSystemName":"M.WRZ.971","location":{"x":-32800000000000000000,"y":-1420000000000000000,"z":-16300000000000000000}},"30019579":{"solarSystemId":30019579,"solarSystemName":"C.YNZ.PQ1","location":{"x":-32700000000000000000,"y":-1890000000000000000,"z":-16000000000000000000}},"30019580":{"solarSystemId":30019580,"solarSystemName":"C.Q1W.JR1","location":{"x":-33500000000000000000,"y":-1650000000000000000,"z":-16000000000000000000}},"30019581":{"solarSystemId":30019581,"solarSystemName":"C.MTZ.281","location":{"x":-32700000000000000000,"y":-1440000000000000000,"z":-15700000000000000000}},"30019582":{"solarSystemId":30019582,"solarSystemName":"B.75Z.LS1","location":{"x":-32500000000000000000,"y":-1530000000000000000,"z":-16000000000000000000}},"30019583":{"solarSystemId":30019583,"solarSystemName":"E.T2Z.2D1","location":{"x":-32400000000000000000,"y":-1700000000000000000,"z":-14000000000000000000}},"30019584":{"solarSystemId":30019584,"solarSystemName":"L.2VZ.EV1","location":{"x":-33000000000000000000,"y":-1870000000000000000,"z":-13700000000000000000}},"30019585":{"solarSystemId":30019585,"solarSystemName":"A.0VZ.9P1","location":{"x":-33000000000000000000,"y":-1810000000000000000,"z":-13300000000000000000}},"30019586":{"solarSystemId":30019586,"solarSystemName":"D.1JY.1P1","location":{"x":-32000000000000000000,"y":-1800000000000000000,"z":-13700000000000000000}},"30019587":{"solarSystemId":30019587,"solarSystemName":"S.ZPZ.QS1","location":{"x":-33000000000000000000,"y":-1540000000000000000,"z":-13100000000000000000}},"30019588":{"solarSystemId":30019588,"solarSystemName":"L.9LZ.D81","location":{"x":-32800000000000000000,"y":-1460000000000000000,"z":-13100000000000000000}},"30019589":{"solarSystemId":30019589,"solarSystemName":"A.M8Z.8C1","location":{"x":-32600000000000000000,"y":-1740000000000000000,"z":-13700000000000000000}},"30019590":{"solarSystemId":30019590,"solarSystemName":"O.VXZ.5L1","location":{"x":-33200000000000000000,"y":-1660000000000000000,"z":-13600000000000000000}},"30019591":{"solarSystemId":30019591,"solarSystemName":"O.8TZ.541","location":{"x":-32700000000000000000,"y":-1300000000000000000,"z":-14100000000000000000}},"30019592":{"solarSystemId":30019592,"solarSystemName":"S.LSY.JJ1","location":{"x":-31500000000000000000,"y":-2080000000000000000,"z":-15900000000000000000}},"30019593":{"solarSystemId":30019593,"solarSystemName":"C.QJY.T91","location":{"x":-32100000000000000000,"y":-1490000000000000000,"z":-16300000000000000000}},"30019594":{"solarSystemId":30019594,"solarSystemName":"C.1BY.HD1","location":{"x":-31900000000000000000,"y":-1720000000000000000,"z":-15700000000000000000}},"30019595":{"solarSystemId":30019595,"solarSystemName":"O.LBY.FP1","location":{"x":-31900000000000000000,"y":-1830000000000000000,"z":-16100000000000000000}},"30019596":{"solarSystemId":30019596,"solarSystemName":"O.T3Z.2P1","location":{"x":-32400000000000000000,"y":-1800000000000000000,"z":-15900000000000000000}},"30019597":{"solarSystemId":30019597,"solarSystemName":"C.RMY.QJ1","location":{"x":-31800000000000000000,"y":-2080000000000000000,"z":-15800000000000000000}},"30019598":{"solarSystemId":30019598,"solarSystemName":"C.DPY.WH1","location":{"x":-31800000000000000000,"y":-2050000000000000000,"z":-15900000000000000000}},"30019599":{"solarSystemId":30019599,"solarSystemName":"M.QYY.W61","location":{"x":-32100000000000000000,"y":-1400000000000000000,"z":-15600000000000000000}},"30019600":{"solarSystemId":30019600,"solarSystemName":"O.3LZ.E71","location":{"x":-32800000000000000000,"y":-1440000000000000000,"z":-16600000000000000000}},"30019601":{"solarSystemId":30019601,"solarSystemName":"C.4LY.YD1","location":{"x":-31600000000000000000,"y":-1720000000000000000,"z":-16700000000000000000}},"30019602":{"solarSystemId":30019602,"solarSystemName":"M.PTY.VZ1","location":{"x":-31500000000000000000,"y":-2180000000000000000,"z":-16300000000000000000}},"30019603":{"solarSystemId":30019603,"solarSystemName":"M.1TY.VC1","location":{"x":-31500000000000000000,"y":-1750000000000000000,"z":-17100000000000000000}},"30019604":{"solarSystemId":30019604,"solarSystemName":"M.6KY.B51","location":{"x":-32200000000000000000,"y":-1360000000000000000,"z":-16200000000000000000}},"30019605":{"solarSystemId":30019605,"solarSystemName":"B.JFY.4D1","location":{"x":-31900000000000000000,"y":-1700000000000000000,"z":-16400000000000000000}},"30019606":{"solarSystemId":30019606,"solarSystemName":"M.ZJY.BD1","location":{"x":-32100000000000000000,"y":-1720000000000000000,"z":-16700000000000000000}},"30019607":{"solarSystemId":30019607,"solarSystemName":"C.16Y.LN1","location":{"x":-31300000000000000000,"y":-1600000000000000000,"z":-16700000000000000000}},"30019608":{"solarSystemId":30019608,"solarSystemName":"I.CDW.NS1","location":{"x":-34000000000000000000,"y":-1530000000000000000,"z":-14800000000000000000}},"30019609":{"solarSystemId":30019609,"solarSystemName":"O.R0W.QWG","location":{"x":-33500000000000000000,"y":-862000000000000000,"z":-14600000000000000000}},"30019610":{"solarSystemId":30019610,"solarSystemName":"O.DHZ.FDV","location":{"x":-33200000000000000000,"y":-702000000000000000,"z":-13600000000000000000}},"30019611":{"solarSystemId":30019611,"solarSystemName":"C.ETW.KRF","location":{"x":-33900000000000000000,"y":-772000000000000000,"z":-14800000000000000000}},"30019612":{"solarSystemId":30019612,"solarSystemName":"M.1VZ.3C1","location":{"x":-33000000000000000000,"y":-1730000000000000000,"z":-15200000000000000000}},"30019613":{"solarSystemId":30019613,"solarSystemName":"M.RYZ.5LY","location":{"x":-33300000000000000000,"y":-989000000000000000,"z":-15600000000000000000}},"30019614":{"solarSystemId":30019614,"solarSystemName":"C.XNZ.S81","location":{"x":-32700000000000000000,"y":-1450000000000000000,"z":-15600000000000000000}},"30019615":{"solarSystemId":30019615,"solarSystemName":"M.KLZ.R71","location":{"x":-32800000000000000000,"y":-1420000000000000000,"z":-15500000000000000000}},"30019616":{"solarSystemId":30019616,"solarSystemName":"M.XTZ.351","location":{"x":-32700000000000000000,"y":-1340000000000000000,"z":-15400000000000000000}},"30019617":{"solarSystemId":30019617,"solarSystemName":"I.8WK.9R1","location":{"x":-35600000000000000000,"y":-1630000000000000000,"z":-16800000000000000000}},"30019618":{"solarSystemId":30019618,"solarSystemName":"C.VFK.EGG","location":{"x":-35400000000000000000,"y":-856000000000000000,"z":-14200000000000000000}},"30019619":{"solarSystemId":30019619,"solarSystemName":"O.TGZ.0B1","location":{"x":-33100000000000000000,"y":-1950000000000000000,"z":-16700000000000000000}},"30019620":{"solarSystemId":30019620,"solarSystemName":"B.BZK.KG1","location":{"x":-35600000000000000000,"y":-2020000000000000000,"z":-14800000000000000000}},"30019621":{"solarSystemId":30019621,"solarSystemName":"B.2HZ.311","location":{"x":-33100000000000000000,"y":-1190000000000000000,"z":-16500000000000000000}},"30019622":{"solarSystemId":30019622,"solarSystemName":"M.RLK.YV1","location":{"x":-35100000000000000000,"y":-1870000000000000000,"z":-16300000000000000000}},"30019623":{"solarSystemId":30019623,"solarSystemName":"B.5WW.ZB1","location":{"x":-34500000000000000000,"y":-1980000000000000000,"z":-17400000000000000000}},"30019624":{"solarSystemId":30019624,"solarSystemName":"C.SLZ.1V1","location":{"x":-32800000000000000000,"y":-1840000000000000000,"z":-16900000000000000000}},"30019625":{"solarSystemId":30019625,"solarSystemName":"N.MMZ.DC1","location":{"x":-32900000000000000000,"y":-1750000000000000000,"z":-13100000000000000000}},"30019626":{"solarSystemId":30019626,"solarSystemName":"L.8KZ.GS1","location":{"x":-33400000000000000000,"y":-1540000000000000000,"z":-12800000000000000000}},"30019627":{"solarSystemId":30019627,"solarSystemName":"A.8DZ.KL1","location":{"x":-32800000000000000000,"y":-1690000000000000000,"z":-13000000000000000000}},"30019628":{"solarSystemId":30019628,"solarSystemName":"S.Y4Z.T52","location":{"x":-32500000000000000000,"y":-2500000000000000000,"z":-12800000000000000000}},"30019629":{"solarSystemId":30019629,"solarSystemName":"R.8PW.LM1","location":{"x":-34100000000000000000,"y":-1780000000000000000,"z":-13400000000000000000}},"30019630":{"solarSystemId":30019630,"solarSystemName":"U.40Z.YJ1","location":{"x":-32300000000000000000,"y":-2080000000000000000,"z":-12600000000000000000}},"30019631":{"solarSystemId":30019631,"solarSystemName":"E.SLW.CS1","location":{"x":-34000000000000000000,"y":-1530000000000000000,"z":-13200000000000000000}},"30019632":{"solarSystemId":30019632,"solarSystemName":"T.8BW.ST2","location":{"x":-34200000000000000000,"y":-2710000000000000000,"z":-13500000000000000000}},"30019633":{"solarSystemId":30019633,"solarSystemName":"I.8SW.9F1","location":{"x":-33800000000000000000,"y":-1920000000000000000,"z":-12100000000000000000}},"30019634":{"solarSystemId":30019634,"solarSystemName":"B.QKZ.VC1","location":{"x":-33400000000000000000,"y":-1750000000000000000,"z":-12700000000000000000}},"30019635":{"solarSystemId":30019635,"solarSystemName":"H.EQZ.CC1","location":{"x":-33000000000000000000,"y":-1750000000000000000,"z":-19300000000000000000}},"30019636":{"solarSystemId":30019636,"solarSystemName":"O.49Z.M11","location":{"x":-32600000000000000000,"y":-1210000000000000000,"z":-19100000000000000000}},"30019637":{"solarSystemId":30019637,"solarSystemName":"C.T2W.E81","location":{"x":-33500000000000000000,"y":-1480000000000000000,"z":-17900000000000000000}},"30019638":{"solarSystemId":30019638,"solarSystemName":"C.DTZ.G81","location":{"x":-32700000000000000000,"y":-1470000000000000000,"z":-17800000000000000000}},"30019639":{"solarSystemId":30019639,"solarSystemName":"O.9DZ.S51","location":{"x":-32800000000000000000,"y":-1350000000000000000,"z":-18700000000000000000}},"30019640":{"solarSystemId":30019640,"solarSystemName":"M.DCZ.D51","location":{"x":-32900000000000000000,"y":-1350000000000000000,"z":-18700000000000000000}},"30019641":{"solarSystemId":30019641,"solarSystemName":"M.4LY.TN1","location":{"x":-31600000000000000000,"y":-1600000000000000000,"z":-17900000000000000000}},"30019642":{"solarSystemId":30019642,"solarSystemName":"O.2YY.851","location":{"x":-32100000000000000000,"y":-1340000000000000000,"z":-17700000000000000000}},"30019643":{"solarSystemId":30019643,"solarSystemName":"G:KEI5","location":{"x":-26300000000000000000,"y":-1480000000000000000,"z":-15200000000000000000}},"30019644":{"solarSystemId":30019644,"solarSystemName":"Y:1LTA","location":{"x":-26300000000000000000,"y":-1620000000000000000,"z":-14100000000000000000}},"30019645":{"solarSystemId":30019645,"solarSystemName":"F:3NSI","location":{"x":-28000000000000000000,"y":-1560000000000000000,"z":-17000000000000000000}},"30019646":{"solarSystemId":30019646,"solarSystemName":"P:A6R3","location":{"x":-26000000000000000000,"y":-1280000000000000000,"z":-14500000000000000000}},"30019647":{"solarSystemId":30019647,"solarSystemName":"H:E33A","location":{"x":-26400000000000000000,"y":-1390000000000000000,"z":-14300000000000000000}},"30019648":{"solarSystemId":30019648,"solarSystemName":"H:1LAN","location":{"x":-26200000000000000000,"y":-1380000000000000000,"z":-14400000000000000000}},"30019649":{"solarSystemId":30019649,"solarSystemName":"B:4R17","location":{"x":-26400000000000000000,"y":-1860000000000000000,"z":-16000000000000000000}},"30019650":{"solarSystemId":30019650,"solarSystemName":"M:1RKL","location":{"x":-25200000000000000000,"y":-1710000000000000000,"z":-14700000000000000000}},"30019651":{"solarSystemId":30019651,"solarSystemName":"D:LLKR","location":{"x":-26600000000000000000,"y":-1870000000000000000,"z":-14900000000000000000}},"30019652":{"solarSystemId":30019652,"solarSystemName":"D:155S","location":{"x":-26000000000000000000,"y":-1340000000000000000,"z":-15600000000000000000}},"30019653":{"solarSystemId":30019653,"solarSystemName":"B:E31K","location":{"x":-24700000000000000000,"y":-1310000000000000000,"z":-15700000000000000000}},"30019654":{"solarSystemId":30019654,"solarSystemName":"F:262I","location":{"x":-25500000000000000000,"y":-1540000000000000000,"z":-16000000000000000000}},"30019655":{"solarSystemId":30019655,"solarSystemName":"U:25TS","location":{"x":-25000000000000000000,"y":-1480000000000000000,"z":-16000000000000000000}},"30019656":{"solarSystemId":30019656,"solarSystemName":"Z:3ATN","location":{"x":-25800000000000000000,"y":-1100000000000000000,"z":-15900000000000000000}},"30019657":{"solarSystemId":30019657,"solarSystemName":"J:2744","location":{"x":-25600000000000000000,"y":-1810000000000000000,"z":-15400000000000000000}},"30019658":{"solarSystemId":30019658,"solarSystemName":"Z:1A26","location":{"x":-25200000000000000000,"y":-1740000000000000000,"z":-16100000000000000000}},"30019659":{"solarSystemId":30019659,"solarSystemName":"P:1693","location":{"x":-25700000000000000000,"y":-2200000000000000000,"z":-16100000000000000000}},"30019660":{"solarSystemId":30019660,"solarSystemName":"Y:2OL0","location":{"x":-25200000000000000000,"y":-1510000000000000000,"z":-16600000000000000000}},"30019661":{"solarSystemId":30019661,"solarSystemName":"D:1OV4","location":{"x":-27800000000000000000,"y":-1330000000000000000,"z":-14500000000000000000}},"30019662":{"solarSystemId":30019662,"solarSystemName":"J:3OVN","location":{"x":-27700000000000000000,"y":-1140000000000000000,"z":-14400000000000000000}},"30019663":{"solarSystemId":30019663,"solarSystemName":"F:TO7E","location":{"x":-27400000000000000000,"y":-1720000000000000000,"z":-13900000000000000000}},"30019664":{"solarSystemId":30019664,"solarSystemName":"M:EILE","location":{"x":-28600000000000000000,"y":-1830000000000000000,"z":-14600000000000000000}},"30019665":{"solarSystemId":30019665,"solarSystemName":"B:1KA2","location":{"x":-27800000000000000000,"y":-1570000000000000000,"z":-14500000000000000000}},"30019666":{"solarSystemId":30019666,"solarSystemName":"Y:3V8I","location":{"x":-28800000000000000000,"y":-1500000000000000000,"z":-14000000000000000000}},"30019667":{"solarSystemId":30019667,"solarSystemName":"U:3898","location":{"x":-28100000000000000000,"y":-1740000000000000000,"z":-14000000000000000000}},"30019668":{"solarSystemId":30019668,"solarSystemName":"Q:L94N","location":{"x":-27800000000000000000,"y":-1380000000000000000,"z":-14300000000000000000}},"30019669":{"solarSystemId":30019669,"solarSystemName":"F:2TTL","location":{"x":-28700000000000000000,"y":-1800000000000000000,"z":-14800000000000000000}},"30019670":{"solarSystemId":30019670,"solarSystemName":"M:1077","location":{"x":-28300000000000000000,"y":-1100000000000000000,"z":-14100000000000000000}},"30019671":{"solarSystemId":30019671,"solarSystemName":"Y:52E7","location":{"x":-28300000000000000000,"y":-1140000000000000000,"z":-13700000000000000000}},"30019672":{"solarSystemId":30019672,"solarSystemName":"B:3SO4","location":{"x":-28300000000000000000,"y":-1200000000000000000,"z":-13200000000000000000}},"30019673":{"solarSystemId":30019673,"solarSystemName":"J:23KO","location":{"x":-26500000000000000000,"y":-1080000000000000000,"z":-13000000000000000000}},"30019674":{"solarSystemId":30019674,"solarSystemName":"B:S0K0","location":{"x":-27100000000000000000,"y":-1650000000000000000,"z":-14400000000000000000}},"30019675":{"solarSystemId":30019675,"solarSystemName":"Y:1N30","location":{"x":-26900000000000000000,"y":-1760000000000000000,"z":-13900000000000000000}},"30019676":{"solarSystemId":30019676,"solarSystemName":"U:K7OK","location":{"x":-28200000000000000000,"y":-990000000000000000,"z":-13500000000000000000}},"30019677":{"solarSystemId":30019677,"solarSystemName":"M:SN1I","location":{"x":-28300000000000000000,"y":-1360000000000000000,"z":-12800000000000000000}},"30019678":{"solarSystemId":30019678,"solarSystemName":"D:3V38","location":{"x":-27200000000000000000,"y":-1360000000000000000,"z":-13100000000000000000}},"30019679":{"solarSystemId":30019679,"solarSystemName":"U:2245","location":{"x":-27800000000000000000,"y":-877000000000000000,"z":-13700000000000000000}},"30019680":{"solarSystemId":30019680,"solarSystemName":"Z:2192","location":{"x":-28100000000000000000,"y":-1220000000000000000,"z":-12400000000000000000}},"30019681":{"solarSystemId":30019681,"solarSystemName":"U:32I5","location":{"x":-26900000000000000000,"y":-1200000000000000000,"z":-13000000000000000000}},"30019682":{"solarSystemId":30019682,"solarSystemName":"P:129A","location":{"x":-27800000000000000000,"y":-908000000000000000,"z":-13800000000000000000}},"30019683":{"solarSystemId":30019683,"solarSystemName":"G:LIT1","location":{"x":-27200000000000000000,"y":-1550000000000000000,"z":-13400000000000000000}},"30019684":{"solarSystemId":30019684,"solarSystemName":"U:2TR3","location":{"x":-25300000000000000000,"y":-1090000000000000000,"z":-13600000000000000000}},"30019685":{"solarSystemId":30019685,"solarSystemName":"B:35A4","location":{"x":-25600000000000000000,"y":-1440000000000000000,"z":-14200000000000000000}},"30019686":{"solarSystemId":30019686,"solarSystemName":"D:1259","location":{"x":-24900000000000000000,"y":-958000000000000000,"z":-13300000000000000000}},"30019687":{"solarSystemId":30019687,"solarSystemName":"G:O28R","location":{"x":-24000000000000000000,"y":-2020000000000000000,"z":-13600000000000000000}},"30019688":{"solarSystemId":30019688,"solarSystemName":"Y:23E7","location":{"x":-24900000000000000000,"y":-1650000000000000000,"z":-13200000000000000000}},"30019689":{"solarSystemId":30019689,"solarSystemName":"U:14NR","location":{"x":-24000000000000000000,"y":-2290000000000000000,"z":-14100000000000000000}},"30019690":{"solarSystemId":30019690,"solarSystemName":"P:2SK6","location":{"x":-24600000000000000000,"y":-785000000000000000,"z":-14100000000000000000}},"30019691":{"solarSystemId":30019691,"solarSystemName":"G:34N2","location":{"x":-26100000000000000000,"y":-1300000000000000000,"z":-13000000000000000000}},"30019692":{"solarSystemId":30019692,"solarSystemName":"D:E5LV","location":{"x":-25200000000000000000,"y":-1440000000000000000,"z":-14500000000000000000}},"30019693":{"solarSystemId":30019693,"solarSystemName":"J:TE02","location":{"x":-25100000000000000000,"y":-1050000000000000000,"z":-14000000000000000000}},"30019694":{"solarSystemId":30019694,"solarSystemName":"Z:231L","location":{"x":-24600000000000000000,"y":-1090000000000000000,"z":-14900000000000000000}},"30019695":{"solarSystemId":30019695,"solarSystemName":"F:2K4V","location":{"x":-25600000000000000000,"y":-1160000000000000000,"z":-12800000000000000000}},"30019696":{"solarSystemId":30019696,"solarSystemName":"F:20KO","location":{"x":-24900000000000000000,"y":-1080000000000000000,"z":-12900000000000000000}},"30019697":{"solarSystemId":30019697,"solarSystemName":"P:R88A","location":{"x":-25500000000000000000,"y":-1510000000000000000,"z":-12700000000000000000}},"30019698":{"solarSystemId":30019698,"solarSystemName":"Y:NN86","location":{"x":-27500000000000000000,"y":-862000000000000000,"z":-14700000000000000000}},"30019699":{"solarSystemId":30019699,"solarSystemName":"D:2N76","location":{"x":-27600000000000000000,"y":-2090000000000000000,"z":-15800000000000000000}},"30019700":{"solarSystemId":30019700,"solarSystemName":"H:2I72","location":{"x":-28300000000000000000,"y":-1500000000000000000,"z":-16200000000000000000}},"30019701":{"solarSystemId":30019701,"solarSystemName":"G:35LL","location":{"x":-28400000000000000000,"y":-1230000000000000000,"z":-15900000000000000000}},"30019702":{"solarSystemId":30019702,"solarSystemName":"B:3814","location":{"x":-27500000000000000000,"y":-1080000000000000000,"z":-16700000000000000000}},"30019703":{"solarSystemId":30019703,"solarSystemName":"J:1T1K","location":{"x":-27900000000000000000,"y":-1940000000000000000,"z":-14900000000000000000}},"30019704":{"solarSystemId":30019704,"solarSystemName":"Q:3SEN","location":{"x":-27500000000000000000,"y":-1370000000000000000,"z":-15800000000000000000}},"30019705":{"solarSystemId":30019705,"solarSystemName":"H:33RO","location":{"x":-26500000000000000000,"y":-1370000000000000000,"z":-16200000000000000000}},"30019706":{"solarSystemId":30019706,"solarSystemName":"Z:1I18","location":{"x":-27900000000000000000,"y":-1850000000000000000,"z":-15100000000000000000}},"30019707":{"solarSystemId":30019707,"solarSystemName":"Z:1S22","location":{"x":-28700000000000000000,"y":-1130000000000000000,"z":-15200000000000000000}},"30019708":{"solarSystemId":30019708,"solarSystemName":"Z:1K37","location":{"x":-28600000000000000000,"y":-2080000000000000000,"z":-16400000000000000000}},"30019709":{"solarSystemId":30019709,"solarSystemName":"U:R5NO","location":{"x":-28700000000000000000,"y":-1260000000000000000,"z":-17600000000000000000}},"30019710":{"solarSystemId":30019710,"solarSystemName":"Y:19AN","location":{"x":-28700000000000000000,"y":-887000000000000000,"z":-15900000000000000000}},"30019711":{"solarSystemId":30019711,"solarSystemName":"U:2AOT","location":{"x":-29600000000000000000,"y":-1560000000000000000,"z":-16800000000000000000}},"30019712":{"solarSystemId":30019712,"solarSystemName":"U:1863","location":{"x":-29500000000000000000,"y":-1680000000000000000,"z":-17200000000000000000}},"30019713":{"solarSystemId":30019713,"solarSystemName":"J:1S50","location":{"x":-28800000000000000000,"y":-1360000000000000000,"z":-15200000000000000000}},"30019714":{"solarSystemId":30019714,"solarSystemName":"G:1KA7","location":{"x":-28900000000000000000,"y":-1870000000000000000,"z":-16700000000000000000}},"30019715":{"solarSystemId":30019715,"solarSystemName":"Z:K7K9","location":{"x":-27900000000000000000,"y":-1810000000000000000,"z":-17500000000000000000}},"30019716":{"solarSystemId":30019716,"solarSystemName":"Y:3OES","location":{"x":-27400000000000000000,"y":-633000000000000000,"z":-19300000000000000000}},"30019717":{"solarSystemId":30019717,"solarSystemName":"U:305A","location":{"x":-25200000000000000000,"y":-1140000000000000000,"z":-17700000000000000000}},"30019718":{"solarSystemId":30019718,"solarSystemName":"Q:3V3L","location":{"x":-27500000000000000000,"y":-1230000000000000000,"z":-18600000000000000000}},"30019719":{"solarSystemId":30019719,"solarSystemName":"U:234R","location":{"x":-27700000000000000000,"y":-828000000000000000,"z":-18900000000000000000}},"30019720":{"solarSystemId":30019720,"solarSystemName":"G:3357","location":{"x":-26400000000000000000,"y":-397000000000000000,"z":-17700000000000000000}},"30019721":{"solarSystemId":30019721,"solarSystemName":"Y:2V20","location":{"x":-26500000000000000000,"y":-865000000000000000,"z":-18000000000000000000}},"30019722":{"solarSystemId":30019722,"solarSystemName":"Z:1L7N","location":{"x":-25700000000000000000,"y":-1480000000000000000,"z":-17700000000000000000}},"30019723":{"solarSystemId":30019723,"solarSystemName":"H:4K8E","location":{"x":-25600000000000000000,"y":-1030000000000000000,"z":-17600000000000000000}},"30019724":{"solarSystemId":30019724,"solarSystemName":"U:OK9E","location":{"x":-26700000000000000000,"y":-536000000000000000,"z":-18700000000000000000}},"30019725":{"solarSystemId":30019725,"solarSystemName":"M:TKE6","location":{"x":-26800000000000000000,"y":-1520000000000000000,"z":-19100000000000000000}},"30019726":{"solarSystemId":30019726,"solarSystemName":"M:3389","location":{"x":-25000000000000000000,"y":-778000000000000000,"z":-21400000000000000000}},"30019727":{"solarSystemId":30019727,"solarSystemName":"J:2100","location":{"x":-24700000000000000000,"y":-1420000000000000000,"z":-23200000000000000000}},"30019728":{"solarSystemId":30019728,"solarSystemName":"Q:28E6","location":{"x":-24200000000000000000,"y":-1040000000000000000,"z":-20900000000000000000}},"30019729":{"solarSystemId":30019729,"solarSystemName":"D:V5NO","location":{"x":-24800000000000000000,"y":-883000000000000000,"z":-20800000000000000000}},"30019730":{"solarSystemId":30019730,"solarSystemName":"H:1084","location":{"x":-23700000000000000000,"y":-645000000000000000,"z":-22700000000000000000}},"30019731":{"solarSystemId":30019731,"solarSystemName":"Y:1IKV","location":{"x":-23300000000000000000,"y":-1010000000000000000,"z":-22200000000000000000}},"30019732":{"solarSystemId":30019732,"solarSystemName":"Y:KN55","location":{"x":-25000000000000000000,"y":-1300000000000000000,"z":-21100000000000000000}},"30019733":{"solarSystemId":30019733,"solarSystemName":"M:10KN","location":{"x":-23400000000000000000,"y":-1390000000000000000,"z":-15400000000000000000}},"30019734":{"solarSystemId":30019734,"solarSystemName":"Y:1VN4","location":{"x":-22600000000000000000,"y":-995000000000000000,"z":-16300000000000000000}},"30019735":{"solarSystemId":30019735,"solarSystemName":"G:22S4","location":{"x":-23400000000000000000,"y":-1550000000000000000,"z":-16600000000000000000}},"30019736":{"solarSystemId":30019736,"solarSystemName":"U:1E52","location":{"x":-23400000000000000000,"y":-1250000000000000000,"z":-15900000000000000000}},"30019737":{"solarSystemId":30019737,"solarSystemName":"P:2I17","location":{"x":-22600000000000000000,"y":-923000000000000000,"z":-16300000000000000000}},"30019738":{"solarSystemId":30019738,"solarSystemName":"Q:1K60","location":{"x":-23800000000000000000,"y":-884000000000000000,"z":-15100000000000000000}},"30019739":{"solarSystemId":30019739,"solarSystemName":"U:16OS","location":{"x":-23200000000000000000,"y":-1140000000000000000,"z":-16700000000000000000}},"30019740":{"solarSystemId":30019740,"solarSystemName":"Y:1E12","location":{"x":-24100000000000000000,"y":80800000000000000,"z":-15800000000000000000}},"30019741":{"solarSystemId":30019741,"solarSystemName":"H:TI63","location":{"x":-23400000000000000000,"y":-1520000000000000000,"z":-16000000000000000000}},"30019742":{"solarSystemId":30019742,"solarSystemName":"Q:ES49","location":{"x":-22900000000000000000,"y":-1520000000000000000,"z":-16400000000000000000}},"30019743":{"solarSystemId":30019743,"solarSystemName":"Y:17NV","location":{"x":-22700000000000000000,"y":-1550000000000000000,"z":-15300000000000000000}},"30019744":{"solarSystemId":30019744,"solarSystemName":"F:248K","location":{"x":-25000000000000000000,"y":-1330000000000000000,"z":-18500000000000000000}},"30019745":{"solarSystemId":30019745,"solarSystemName":"U:3404","location":{"x":-24400000000000000000,"y":-1070000000000000000,"z":-19200000000000000000}},"30019746":{"solarSystemId":30019746,"solarSystemName":"D:29L8","location":{"x":-24800000000000000000,"y":-1250000000000000000,"z":-19100000000000000000}},"30019747":{"solarSystemId":30019747,"solarSystemName":"U:1T46","location":{"x":-24200000000000000000,"y":-1460000000000000000,"z":-19400000000000000000}},"30019748":{"solarSystemId":30019748,"solarSystemName":"Y:25NR","location":{"x":-24200000000000000000,"y":-996000000000000000,"z":-19000000000000000000}},"30019749":{"solarSystemId":30019749,"solarSystemName":"J:1KT1","location":{"x":-23800000000000000000,"y":-1120000000000000000,"z":-20000000000000000000}},"30019750":{"solarSystemId":30019750,"solarSystemName":"Q:2409","location":{"x":-24200000000000000000,"y":-1120000000000000000,"z":-18800000000000000000}},"30019751":{"solarSystemId":30019751,"solarSystemName":"B:NITL","location":{"x":-25100000000000000000,"y":-1010000000000000000,"z":-19400000000000000000}},"30019752":{"solarSystemId":30019752,"solarSystemName":"M:R1L5","location":{"x":-20700000000000000000,"y":-1040000000000000000,"z":-17000000000000000000}},"30019753":{"solarSystemId":30019753,"solarSystemName":"Z:36V2","location":{"x":-21500000000000000000,"y":-1280000000000000000,"z":-17700000000000000000}},"30019754":{"solarSystemId":30019754,"solarSystemName":"B:NLS2","location":{"x":-20500000000000000000,"y":-1070000000000000000,"z":-16900000000000000000}},"30019755":{"solarSystemId":30019755,"solarSystemName":"G:1S82","location":{"x":-20400000000000000000,"y":-769000000000000000,"z":-16600000000000000000}},"30019756":{"solarSystemId":30019756,"solarSystemName":"Z:3SE7","location":{"x":-21100000000000000000,"y":-1060000000000000000,"z":-16700000000000000000}},"30019757":{"solarSystemId":30019757,"solarSystemName":"G:1RS8","location":{"x":-20100000000000000000,"y":-752000000000000000,"z":-17300000000000000000}},"30019758":{"solarSystemId":30019758,"solarSystemName":"B:1ST4","location":{"x":-20900000000000000000,"y":-783000000000000000,"z":-17500000000000000000}},"30019759":{"solarSystemId":30019759,"solarSystemName":"P:3NRI","location":{"x":-21800000000000000000,"y":-725000000000000000,"z":-17600000000000000000}},"30019760":{"solarSystemId":30019760,"solarSystemName":"H:2K66","location":{"x":-21500000000000000000,"y":-834000000000000000,"z":-17600000000000000000}},"30019761":{"solarSystemId":30019761,"solarSystemName":"D:13KV","location":{"x":-20400000000000000000,"y":-384000000000000000,"z":-17900000000000000000}},"30019762":{"solarSystemId":30019762,"solarSystemName":"B:183V","location":{"x":-21400000000000000000,"y":-986000000000000000,"z":-18100000000000000000}},"30019763":{"solarSystemId":30019763,"solarSystemName":"D:2288","location":{"x":-23300000000000000000,"y":-1250000000000000000,"z":-18200000000000000000}},"30019764":{"solarSystemId":30019764,"solarSystemName":"P:3SSR","location":{"x":-22200000000000000000,"y":-905000000000000000,"z":-17600000000000000000}},"30019765":{"solarSystemId":30019765,"solarSystemName":"G:3628","location":{"x":-22700000000000000000,"y":-986000000000000000,"z":-18300000000000000000}},"30019766":{"solarSystemId":30019766,"solarSystemName":"J:307S","location":{"x":-21800000000000000000,"y":-1260000000000000000,"z":-17600000000000000000}},"30019767":{"solarSystemId":30019767,"solarSystemName":"Y:I9ER","location":{"x":-22200000000000000000,"y":-977000000000000000,"z":-17500000000000000000}},"30019768":{"solarSystemId":30019768,"solarSystemName":"G:3O07","location":{"x":-23100000000000000000,"y":-1170000000000000000,"z":-18700000000000000000}},"30019769":{"solarSystemId":30019769,"solarSystemName":"J:1918","location":{"x":-22400000000000000000,"y":-1390000000000000000,"z":-16700000000000000000}},"30019770":{"solarSystemId":30019770,"solarSystemName":"D:A1R6","location":{"x":-23600000000000000000,"y":-1600000000000000000,"z":-18300000000000000000}},"30019771":{"solarSystemId":30019771,"solarSystemName":"U:1R0L","location":{"x":-22400000000000000000,"y":-1650000000000000000,"z":-18000000000000000000}},"30019772":{"solarSystemId":30019772,"solarSystemName":"Q:3125","location":{"x":-24700000000000000000,"y":-1060000000000000000,"z":-17200000000000000000}},"30019773":{"solarSystemId":30019773,"solarSystemName":"B:10R1","location":{"x":-23200000000000000000,"y":-2030000000000000000,"z":-16900000000000000000}},"30019774":{"solarSystemId":30019774,"solarSystemName":"Q:1NK2","location":{"x":-23100000000000000000,"y":-807000000000000000,"z":-17000000000000000000}},"30019775":{"solarSystemId":30019775,"solarSystemName":"Q:2R4T","location":{"x":-24200000000000000000,"y":-774000000000000000,"z":-17100000000000000000}},"30019776":{"solarSystemId":30019776,"solarSystemName":"J:2E26","location":{"x":-23600000000000000000,"y":-1430000000000000000,"z":-17000000000000000000}},"30019777":{"solarSystemId":30019777,"solarSystemName":"H:T706","location":{"x":-24300000000000000000,"y":-1480000000000000000,"z":-17400000000000000000}},"30019778":{"solarSystemId":30019778,"solarSystemName":"Y:3R3S","location":{"x":-24100000000000000000,"y":-1430000000000000000,"z":-17000000000000000000}},"30019779":{"solarSystemId":30019779,"solarSystemName":"H:NKA0","location":{"x":-24300000000000000000,"y":-1350000000000000000,"z":-16900000000000000000}},"30019780":{"solarSystemId":30019780,"solarSystemName":"H:1OVE","location":{"x":-23800000000000000000,"y":-1450000000000000000,"z":-18000000000000000000}},"30019781":{"solarSystemId":30019781,"solarSystemName":"U:38VI","location":{"x":-21800000000000000000,"y":-702000000000000000,"z":-16300000000000000000}},"30019782":{"solarSystemId":30019782,"solarSystemName":"J:1A10","location":{"x":-22000000000000000000,"y":-810000000000000000,"z":-15900000000000000000}},"30019783":{"solarSystemId":30019783,"solarSystemName":"B:RL22","location":{"x":-22100000000000000000,"y":-1490000000000000000,"z":-16100000000000000000}},"30019784":{"solarSystemId":30019784,"solarSystemName":"F:1VS8","location":{"x":-22000000000000000000,"y":-1180000000000000000,"z":-16100000000000000000}},"30019785":{"solarSystemId":30019785,"solarSystemName":"Z:3NET","location":{"x":-21900000000000000000,"y":-737000000000000000,"z":-16300000000000000000}},"30019786":{"solarSystemId":30019786,"solarSystemName":"H:1TAO","location":{"x":-21300000000000000000,"y":-841000000000000000,"z":-16600000000000000000}},"30019787":{"solarSystemId":30019787,"solarSystemName":"Y:23II","location":{"x":-22100000000000000000,"y":-996000000000000000,"z":-16300000000000000000}},"30019788":{"solarSystemId":30019788,"solarSystemName":"Y:3438","location":{"x":-22800000000000000000,"y":-432000000000000000,"z":-16600000000000000000}},"30019789":{"solarSystemId":30019789,"solarSystemName":"Y:4K1A","location":{"x":-22200000000000000000,"y":-1190000000000000000,"z":-16500000000000000000}},"30019790":{"solarSystemId":30019790,"solarSystemName":"B:23RL","location":{"x":-22300000000000000000,"y":-1170000000000000000,"z":-16500000000000000000}},"30019791":{"solarSystemId":30019791,"solarSystemName":"Z:27T5","location":{"x":-21300000000000000000,"y":-1010000000000000000,"z":-16300000000000000000}},"30019792":{"solarSystemId":30019792,"solarSystemName":"P:145R","location":{"x":-21200000000000000000,"y":-2220000000000000000,"z":-16300000000000000000}},"30019793":{"solarSystemId":30019793,"solarSystemName":"F:2RT4","location":{"x":-22800000000000000000,"y":-1170000000000000000,"z":-19400000000000000000}},"30019794":{"solarSystemId":30019794,"solarSystemName":"Z:2S2I","location":{"x":-23000000000000000000,"y":-890000000000000000,"z":-19300000000000000000}},"30019795":{"solarSystemId":30019795,"solarSystemName":"Y:1L12","location":{"x":-23100000000000000000,"y":-1060000000000000000,"z":-19500000000000000000}},"30019796":{"solarSystemId":30019796,"solarSystemName":"U:S6O6","location":{"x":-23000000000000000000,"y":-1490000000000000000,"z":-19900000000000000000}},"30019797":{"solarSystemId":30019797,"solarSystemName":"H:37L7","location":{"x":-23100000000000000000,"y":-1460000000000000000,"z":-20700000000000000000}},"30019798":{"solarSystemId":30019798,"solarSystemName":"B:30K2","location":{"x":-22500000000000000000,"y":-1450000000000000000,"z":-20500000000000000000}},"30019799":{"solarSystemId":30019799,"solarSystemName":"M:13SK","location":{"x":-23900000000000000000,"y":-1470000000000000000,"z":-20500000000000000000}},"30019800":{"solarSystemId":30019800,"solarSystemName":"G:13L9","location":{"x":-23300000000000000000,"y":-909000000000000000,"z":-20300000000000000000}},"30019801":{"solarSystemId":30019801,"solarSystemName":"U:1SR4","location":{"x":-21700000000000000000,"y":3020000000000000000,"z":-16000000000000000000}},"30019802":{"solarSystemId":30019802,"solarSystemName":"P:2086","location":{"x":-21700000000000000000,"y":1590000000000000000,"z":-15600000000000000000}},"30019803":{"solarSystemId":30019803,"solarSystemName":"B:2VE9","location":{"x":-23100000000000000000,"y":857000000000000000,"z":-16300000000000000000}},"30019804":{"solarSystemId":30019804,"solarSystemName":"Y:1KIS","location":{"x":-21900000000000000000,"y":1710000000000000000,"z":-15200000000000000000}},"30019805":{"solarSystemId":30019805,"solarSystemName":"Q:2NKL","location":{"x":-23900000000000000000,"y":3520000000000000000,"z":-16100000000000000000}},"30019806":{"solarSystemId":30019806,"solarSystemName":"J:1NIR","location":{"x":-22700000000000000000,"y":1800000000000000000,"z":-14800000000000000000}},"30019807":{"solarSystemId":30019807,"solarSystemName":"J:1KA5","location":{"x":-22800000000000000000,"y":1780000000000000000,"z":-15500000000000000000}},"30019808":{"solarSystemId":30019808,"solarSystemName":"D:10AE","location":{"x":-22200000000000000000,"y":1590000000000000000,"z":-14900000000000000000}},"30019809":{"solarSystemId":30019809,"solarSystemName":"Y:RK9I","location":{"x":-26900000000000000000,"y":3550000000000000000,"z":-17300000000000000000}},"30019810":{"solarSystemId":30019810,"solarSystemName":"ODM-6V8","location":{"x":-59100000000000000000,"y":-4450000000000000000,"z":-7190000000000000000}},"30019811":{"solarSystemId":30019811,"solarSystemName":"EGH-2V8","location":{"x":-58800000000000000000,"y":-4630000000000000000,"z":-7720000000000000000}},"30019812":{"solarSystemId":30019812,"solarSystemName":"O33-QT8","location":{"x":-58300000000000000000,"y":-3380000000000000000,"z":-5600000000000000000}},"30019813":{"solarSystemId":30019813,"solarSystemName":"U8K-0V8","location":{"x":-58700000000000000000,"y":-4350000000000000000,"z":-6460000000000000000}},"30019814":{"solarSystemId":30019814,"solarSystemName":"UCS-MT8","location":{"x":-58100000000000000000,"y":-4110000000000000000,"z":-6250000000000000000}},"30019815":{"solarSystemId":30019815,"solarSystemName":"OTB-9T8","location":{"x":-57400000000000000000,"y":-3310000000000000000,"z":-3900000000000000000}},"30019816":{"solarSystemId":30019816,"solarSystemName":"OL1-5V8","location":{"x":-58900000000000000000,"y":-3800000000000000000,"z":-3590000000000000000}},"30019817":{"solarSystemId":30019817,"solarSystemName":"I91-ST8","location":{"x":-58400000000000000000,"y":-4110000000000000000,"z":-3950000000000000000}},"30019818":{"solarSystemId":30019818,"solarSystemName":"AT5-2T8","location":{"x":-57100000000000000000,"y":-3040000000000000000,"z":-4990000000000000000}},"30019819":{"solarSystemId":30019819,"solarSystemName":"EG4-009","location":{"x":-60400000000000000000,"y":-3470000000000000000,"z":-4100000000000000000}},"30019820":{"solarSystemId":30019820,"solarSystemName":"UHP-3S8","location":{"x":-55900000000000000000,"y":-1800000000000000000,"z":-7360000000000000000}},"30019821":{"solarSystemId":30019821,"solarSystemName":"OC8-JT8","location":{"x":-57900000000000000000,"y":-3880000000000000000,"z":-5920000000000000000}},"30019822":{"solarSystemId":30019822,"solarSystemName":"ENL-RS8","location":{"x":-56800000000000000000,"y":-3070000000000000000,"z":-6990000000000000000}},"30019823":{"solarSystemId":30019823,"solarSystemName":"EFT-7S8","location":{"x":-56100000000000000000,"y":-1750000000000000000,"z":-7770000000000000000}},"30019824":{"solarSystemId":30019824,"solarSystemName":"I1F-0S8","location":{"x":-55800000000000000000,"y":-1600000000000000000,"z":-7430000000000000000}},"30019825":{"solarSystemId":30019825,"solarSystemName":"ILK-NS8","location":{"x":-56200000000000000000,"y":-6670000000000000000,"z":-6600000000000000000}},"30019826":{"solarSystemId":30019826,"solarSystemName":"I81-9S8","location":{"x":-55900000000000000000,"y":-5240000000000000000,"z":-6020000000000000000}},"30019827":{"solarSystemId":30019827,"solarSystemName":"E3G-LT8","location":{"x":-58000000000000000000,"y":-4650000000000000000,"z":-6320000000000000000}},"30019828":{"solarSystemId":30019828,"solarSystemName":"U5H-0T8","location":{"x":-56800000000000000000,"y":-5350000000000000000,"z":-6220000000000000000}},"30019829":{"solarSystemId":30019829,"solarSystemName":"OKQ-DR8","location":{"x":-54700000000000000000,"y":-4900000000000000000,"z":-6190000000000000000}},"30019830":{"solarSystemId":30019830,"solarSystemName":"U49-VV8","location":{"x":-60000000000000000000,"y":-6350000000000000000,"z":-3600000000000000000}},"30019831":{"solarSystemId":30019831,"solarSystemName":"UDM-009","location":{"x":-60200000000000000000,"y":-5540000000000000000,"z":-4300000000000000000}},"30019832":{"solarSystemId":30019832,"solarSystemName":"ONL-CV8","location":{"x":-58600000000000000000,"y":-6660000000000000000,"z":-356000000000000000}},"30019833":{"solarSystemId":30019833,"solarSystemName":"Eurydice","location":{"x":-60200000000000000000,"y":-6680000000000000000,"z":-3130000000000000000}},"30019834":{"solarSystemId":30019834,"solarSystemName":"EP8-D09","location":{"x":-61200000000000000000,"y":-4750000000000000000,"z":-5390000000000000000}},"30019835":{"solarSystemId":30019835,"solarSystemName":"IDS-Q19","location":{"x":-64600000000000000000,"y":-4070000000000000000,"z":2080000000000000000}},"30019836":{"solarSystemId":30019836,"solarSystemName":"E0R-529","location":{"x":-65900000000000000000,"y":-5430000000000000000,"z":1860000000000000000}},"30019837":{"solarSystemId":30019837,"solarSystemName":"EBR-M19","location":{"x":-64100000000000000000,"y":-4250000000000000000,"z":2040000000000000000}},"30019838":{"solarSystemId":30019838,"solarSystemName":"O8C-G29","location":{"x":-67400000000000000000,"y":-3530000000000000000,"z":3680000000000000000}},"30019839":{"solarSystemId":30019839,"solarSystemName":"O5H-S19","location":{"x":-64600000000000000000,"y":-5980000000000000000,"z":2070000000000000000}},"30019840":{"solarSystemId":30019840,"solarSystemName":"U3M-129","location":{"x":-65000000000000000000,"y":-4230000000000000000,"z":2150000000000000000}},"30019841":{"solarSystemId":30019841,"solarSystemName":"ECL-629","location":{"x":-65900000000000000000,"y":-3970000000000000000,"z":3740000000000000000}},"30019842":{"solarSystemId":30019842,"solarSystemName":"IFG-229","location":{"x":-65100000000000000000,"y":-3910000000000000000,"z":2200000000000000000}},"30019843":{"solarSystemId":30019843,"solarSystemName":"IDM-P09","location":{"x":-60900000000000000000,"y":-3450000000000000000,"z":5220000000000000000}},"30019844":{"solarSystemId":30019844,"solarSystemName":"OS4-219","location":{"x":-61500000000000000000,"y":-3640000000000000000,"z":5460000000000000000}},"30019845":{"solarSystemId":30019845,"solarSystemName":"A9D-219","location":{"x":-61900000000000000000,"y":-3630000000000000000,"z":4140000000000000000}},"30019846":{"solarSystemId":30019846,"solarSystemName":"EG9-119","location":{"x":-61600000000000000000,"y":-3270000000000000000,"z":4510000000000000000}},"30019847":{"solarSystemId":30019847,"solarSystemName":"E5H-319","location":{"x":-61900000000000000000,"y":-3630000000000000000,"z":4570000000000000000}},"30019848":{"solarSystemId":30019848,"solarSystemName":"EHH-C19","location":{"x":-62400000000000000000,"y":-4290000000000000000,"z":5070000000000000000}},"30019849":{"solarSystemId":30019849,"solarSystemName":"A07-G09","location":{"x":-60300000000000000000,"y":-5960000000000000000,"z":2660000000000000000}},"30019850":{"solarSystemId":30019850,"solarSystemName":"ETV-H19","location":{"x":-63200000000000000000,"y":-3190000000000000000,"z":5060000000000000000}},"30019851":{"solarSystemId":30019851,"solarSystemName":"EBR-T09","location":{"x":-61300000000000000000,"y":-4280000000000000000,"z":4280000000000000000}},"30019852":{"solarSystemId":30019852,"solarSystemName":"ITV-P09","location":{"x":-60900000000000000000,"y":-2960000000000000000,"z":5250000000000000000}},"30019853":{"solarSystemId":30019853,"solarSystemName":"UDM-H19","location":{"x":-63400000000000000000,"y":-3910000000000000000,"z":3170000000000000000}},"30019854":{"solarSystemId":30019854,"solarSystemName":"I9K-919","location":{"x":-62900000000000000000,"y":-3570000000000000000,"z":2280000000000000000}},"30019855":{"solarSystemId":30019855,"solarSystemName":"ITP-819","location":{"x":-62400000000000000000,"y":-3430000000000000000,"z":4320000000000000000}},"30019856":{"solarSystemId":30019856,"solarSystemName":"EN2-K19","location":{"x":-63600000000000000000,"y":-3680000000000000000,"z":3590000000000000000}},"30019857":{"solarSystemId":30019857,"solarSystemName":"EBL-D19","location":{"x":-63200000000000000000,"y":-4150000000000000000,"z":2420000000000000000}},"30019858":{"solarSystemId":30019858,"solarSystemName":"Tekne","location":{"x":-69000000000000000000,"y":-1810000000000000000,"z":8280000000000000000}},"30019859":{"solarSystemId":30019859,"solarSystemName":"IPS-919","location":{"x":-61000000000000000000,"y":-679000000000000000,"z":10300000000000000000}},"30019860":{"solarSystemId":30019860,"solarSystemName":"IPF-F19","location":{"x":-63300000000000000000,"y":-4360000000000000000,"z":2280000000000000000}},"30019861":{"solarSystemId":30019861,"solarSystemName":"I6B-209","location":{"x":-58100000000000000000,"y":-837000000000000000,"z":8550000000000000000}},"30019862":{"solarSystemId":30019862,"solarSystemName":"UR9-PV8","location":{"x":-57600000000000000000,"y":-586000000000000000,"z":8790000000000000000}},"30019863":{"solarSystemId":30019863,"solarSystemName":"I6P-TV8","location":{"x":-57600000000000000000,"y":-708000000000000000,"z":9410000000000000000}},"30019864":{"solarSystemId":30019864,"solarSystemName":"ALK-209","location":{"x":-57900000000000000000,"y":-534000000000000000,"z":9030000000000000000}},"30019865":{"solarSystemId":30019865,"solarSystemName":"EK0-K09","location":{"x":-58800000000000000000,"y":-426000000000000000,"z":10400000000000000000}},"30019866":{"solarSystemId":30019866,"solarSystemName":"EV5-C09","location":{"x":-58400000000000000000,"y":-543000000000000000,"z":9990000000000000000}},"30019867":{"solarSystemId":30019867,"solarSystemName":"AJ5-309","location":{"x":-57500000000000000000,"y":-436000000000000000,"z":10300000000000000000}},"30019868":{"solarSystemId":30019868,"solarSystemName":"EB7-FT8","location":{"x":-55700000000000000000,"y":-1240000000000000000,"z":6840000000000000000}},"30019869":{"solarSystemId":30019869,"solarSystemName":"IS4-GV8","location":{"x":-57800000000000000000,"y":-1390000000000000000,"z":6390000000000000000}},"30019870":{"solarSystemId":30019870,"solarSystemName":"ABL-PR8","location":{"x":-53700000000000000000,"y":-362000000000000000,"z":5350000000000000000}},"30019871":{"solarSystemId":30019871,"solarSystemName":"EV0-BV8","location":{"x":-57200000000000000000,"y":-1080000000000000000,"z":7480000000000000000}},"30019872":{"solarSystemId":30019872,"solarSystemName":"EK0-RV8","location":{"x":-58100000000000000000,"y":-928000000000000000,"z":7740000000000000000}},"30019873":{"solarSystemId":30019873,"solarSystemName":"A70-6S8","location":{"x":-50200000000000000000,"y":-35700000000000000,"z":15100000000000000000}},"30019874":{"solarSystemId":30019874,"solarSystemName":"O1S-VM8","location":{"x":-48200000000000000000,"y":-395000000000000000,"z":9310000000000000000}},"30019875":{"solarSystemId":30019875,"solarSystemName":"IN2-8V8","location":{"x":-54600000000000000000,"y":-989000000000000000,"z":13700000000000000000}},"30019876":{"solarSystemId":30019876,"solarSystemName":"ENF-QR8","location":{"x":-50300000000000000000,"y":-1110000000000000000,"z":13600000000000000000}},"30019877":{"solarSystemId":30019877,"solarSystemName":"E8K-LR8","location":{"x":-51300000000000000000,"y":-674000000000000000,"z":11100000000000000000}},"30019878":{"solarSystemId":30019878,"solarSystemName":"I3M-719","location":{"x":-59300000000000000000,"y":-1570000000000000000,"z":13800000000000000000}},"30019879":{"solarSystemId":30019879,"solarSystemName":"IB7-109","location":{"x":-58000000000000000000,"y":-452000000000000000,"z":8780000000000000000}},"30019880":{"solarSystemId":30019880,"solarSystemName":"EPS-H09","location":{"x":-58300000000000000000,"y":-915000000000000000,"z":11600000000000000000}},"30019881":{"solarSystemId":30019881,"solarSystemName":"AKQ-909","location":{"x":-56900000000000000000,"y":-583000000000000000,"z":13700000000000000000}},"30019882":{"solarSystemId":30019882,"solarSystemName":"E12-119","location":{"x":-59400000000000000000,"y":-1030000000000000000,"z":11700000000000000000}},"30019883":{"solarSystemId":30019883,"solarSystemName":"P:11KL","location":{"x":-16100000000000000000,"y":-849000000000000000,"z":-18900000000000000000}},"30019884":{"solarSystemId":30019884,"solarSystemName":"Z:12E4","location":{"x":-16000000000000000000,"y":-717000000000000000,"z":-18900000000000000000}},"30019885":{"solarSystemId":30019885,"solarSystemName":"J:1NLL","location":{"x":-16000000000000000000,"y":-781000000000000000,"z":-18700000000000000000}},"30019886":{"solarSystemId":30019886,"solarSystemName":"Q:2635","location":{"x":-15900000000000000000,"y":-1240000000000000000,"z":-18200000000000000000}},"30019887":{"solarSystemId":30019887,"solarSystemName":"F:497V","location":{"x":-16000000000000000000,"y":-676000000000000000,"z":-18900000000000000000}},"30019888":{"solarSystemId":30019888,"solarSystemName":"Y:R8TK","location":{"x":-15700000000000000000,"y":-803000000000000000,"z":-19100000000000000000}},"30019889":{"solarSystemId":30019889,"solarSystemName":"M:17R2","location":{"x":-16300000000000000000,"y":-1010000000000000000,"z":-19000000000000000000}},"30019890":{"solarSystemId":30019890,"solarSystemName":"P:139K","location":{"x":-15100000000000000000,"y":-1380000000000000000,"z":-18000000000000000000}},"30019891":{"solarSystemId":30019891,"solarSystemName":"M:RAI8","location":{"x":-16500000000000000000,"y":-1140000000000000000,"z":-18400000000000000000}},"30019892":{"solarSystemId":30019892,"solarSystemName":"Z:LK75","location":{"x":-18500000000000000000,"y":-857000000000000000,"z":-17200000000000000000}},"30019893":{"solarSystemId":30019893,"solarSystemName":"G:244I","location":{"x":-19000000000000000000,"y":-929000000000000000,"z":-17800000000000000000}},"30019894":{"solarSystemId":30019894,"solarSystemName":"D:3S1A","location":{"x":-18600000000000000000,"y":-1320000000000000000,"z":-18500000000000000000}},"30019895":{"solarSystemId":30019895,"solarSystemName":"Y:3ATR","location":{"x":-16900000000000000000,"y":-1030000000000000000,"z":-17900000000000000000}},"30019896":{"solarSystemId":30019896,"solarSystemName":"U:1N6E","location":{"x":-17600000000000000000,"y":-1040000000000000000,"z":-17700000000000000000}},"30019897":{"solarSystemId":30019897,"solarSystemName":"H:2L2S","location":{"x":-18500000000000000000,"y":-1150000000000000000,"z":-17200000000000000000}},"30019898":{"solarSystemId":30019898,"solarSystemName":"D:1044","location":{"x":-19300000000000000000,"y":-3020000000000000000,"z":-18200000000000000000}},"30019899":{"solarSystemId":30019899,"solarSystemName":"D:154R","location":{"x":-19500000000000000000,"y":-1450000000000000000,"z":-17500000000000000000}},"30019900":{"solarSystemId":30019900,"solarSystemName":"B:INRO","location":{"x":-19200000000000000000,"y":-1410000000000000000,"z":-18500000000000000000}},"30019901":{"solarSystemId":30019901,"solarSystemName":"H:3126","location":{"x":-15000000000000000000,"y":-1010000000000000000,"z":-19700000000000000000}},"30019902":{"solarSystemId":30019902,"solarSystemName":"D:1K4V","location":{"x":-15100000000000000000,"y":-755000000000000000,"z":-19800000000000000000}},"30019903":{"solarSystemId":30019903,"solarSystemName":"U:2ES2","location":{"x":-15100000000000000000,"y":-677000000000000000,"z":-20200000000000000000}},"30019904":{"solarSystemId":30019904,"solarSystemName":"Y:153I","location":{"x":-15000000000000000000,"y":5400000000000000,"z":-18200000000000000000}},"30019905":{"solarSystemId":30019905,"solarSystemName":"J:1N6O","location":{"x":-14900000000000000000,"y":2280000000000000000,"z":-18300000000000000000}},"30019906":{"solarSystemId":30019906,"solarSystemName":"H:20K7","location":{"x":-15700000000000000000,"y":1330000000000000000,"z":-18900000000000000000}},"30019907":{"solarSystemId":30019907,"solarSystemName":"P:29I4","location":{"x":-15100000000000000000,"y":47700000000000000,"z":-18200000000000000000}},"30019908":{"solarSystemId":30019908,"solarSystemName":"M:2RRL","location":{"x":-14700000000000000000,"y":257000000000000000,"z":-18800000000000000000}},"30019909":{"solarSystemId":30019909,"solarSystemName":"F:NE0V","location":{"x":-14300000000000000000,"y":-642000000000000000,"z":-20600000000000000000}},"30019910":{"solarSystemId":30019910,"solarSystemName":"J:RIK7","location":{"x":-14200000000000000000,"y":-636000000000000000,"z":-20200000000000000000}},"30019911":{"solarSystemId":30019911,"solarSystemName":"Q:1V04","location":{"x":-17200000000000000000,"y":-1270000000000000000,"z":-19600000000000000000}},"30019912":{"solarSystemId":30019912,"solarSystemName":"Y:RRI4","location":{"x":-17700000000000000000,"y":-846000000000000000,"z":-19500000000000000000}},"30019913":{"solarSystemId":30019913,"solarSystemName":"B:196T","location":{"x":-16800000000000000000,"y":-773000000000000000,"z":-20000000000000000000}},"30019914":{"solarSystemId":30019914,"solarSystemName":"Q:S7T5","location":{"x":-17900000000000000000,"y":-1230000000000000000,"z":-19600000000000000000}},"30019915":{"solarSystemId":30019915,"solarSystemName":"D:VS23","location":{"x":-17200000000000000000,"y":-1260000000000000000,"z":-19800000000000000000}},"30019916":{"solarSystemId":30019916,"solarSystemName":"D:2ALA","location":{"x":-18900000000000000000,"y":-1330000000000000000,"z":-19500000000000000000}},"30019917":{"solarSystemId":30019917,"solarSystemName":"F:1NAI","location":{"x":-16800000000000000000,"y":-1060000000000000000,"z":-20200000000000000000}},"30019918":{"solarSystemId":30019918,"solarSystemName":"U:34SN","location":{"x":-16900000000000000000,"y":-770000000000000000,"z":-20700000000000000000}},"30019919":{"solarSystemId":30019919,"solarSystemName":"H:333I","location":{"x":-17700000000000000000,"y":-1170000000000000000,"z":-19600000000000000000}},"30019920":{"solarSystemId":30019920,"solarSystemName":"U:1L2O","location":{"x":-17800000000000000000,"y":-1150000000000000000,"z":-19000000000000000000}},"30019921":{"solarSystemId":30019921,"solarSystemName":"M:1S7N","location":{"x":-17000000000000000000,"y":-1180000000000000000,"z":-19300000000000000000}},"30019922":{"solarSystemId":30019922,"solarSystemName":"B:RRS4","location":{"x":-18500000000000000000,"y":-1420000000000000000,"z":-19200000000000000000}},"30019923":{"solarSystemId":30019923,"solarSystemName":"J:38L6","location":{"x":-13800000000000000000,"y":-711000000000000000,"z":-18100000000000000000}},"30019924":{"solarSystemId":30019924,"solarSystemName":"P:386S","location":{"x":-14000000000000000000,"y":-782000000000000000,"z":-18600000000000000000}},"30019925":{"solarSystemId":30019925,"solarSystemName":"B:3IT8","location":{"x":-13800000000000000000,"y":-815000000000000000,"z":-17700000000000000000}},"30019926":{"solarSystemId":30019926,"solarSystemName":"U:230V","location":{"x":-14900000000000000000,"y":-996000000000000000,"z":-17400000000000000000}},"30019927":{"solarSystemId":30019927,"solarSystemName":"B:IVR9","location":{"x":-12900000000000000000,"y":-740000000000000000,"z":-16900000000000000000}},"30019928":{"solarSystemId":30019928,"solarSystemName":"B:267K","location":{"x":-14000000000000000000,"y":-853000000000000000,"z":-17600000000000000000}},"30019929":{"solarSystemId":30019929,"solarSystemName":"U:34A7","location":{"x":-13300000000000000000,"y":-88400000000000000,"z":-18300000000000000000}},"30019930":{"solarSystemId":30019930,"solarSystemName":"U:I5AL","location":{"x":-13600000000000000000,"y":-1020000000000000000,"z":-19100000000000000000}},"30019931":{"solarSystemId":30019931,"solarSystemName":"B:EEO2","location":{"x":-14000000000000000000,"y":-1120000000000000000,"z":-18900000000000000000}},"30019932":{"solarSystemId":30019932,"solarSystemName":"Q:T805","location":{"x":-14700000000000000000,"y":-1110000000000000000,"z":-17900000000000000000}},"30019933":{"solarSystemId":30019933,"solarSystemName":"F:1E29","location":{"x":-15000000000000000000,"y":-892000000000000000,"z":-18600000000000000000}},"30019934":{"solarSystemId":30019934,"solarSystemName":"H:253O","location":{"x":-14700000000000000000,"y":-1190000000000000000,"z":-18500000000000000000}},"30019935":{"solarSystemId":30019935,"solarSystemName":"D:2E21","location":{"x":-15200000000000000000,"y":-1190000000000000000,"z":-19100000000000000000}},"30019936":{"solarSystemId":30019936,"solarSystemName":"F:3NT3","location":{"x":-14400000000000000000,"y":-852000000000000000,"z":-18700000000000000000}},"30019937":{"solarSystemId":30019937,"solarSystemName":"H:2IT4","location":{"x":-15400000000000000000,"y":-740000000000000000,"z":-18000000000000000000}},"30019938":{"solarSystemId":30019938,"solarSystemName":"F:2L22","location":{"x":-15200000000000000000,"y":-974000000000000000,"z":-18000000000000000000}},"30019939":{"solarSystemId":30019939,"solarSystemName":"B:2OIR","location":{"x":-15400000000000000000,"y":-746000000000000000,"z":-18100000000000000000}},"30019940":{"solarSystemId":30019940,"solarSystemName":"Y:28V7","location":{"x":-15500000000000000000,"y":-908000000000000000,"z":-19100000000000000000}},"30019941":{"solarSystemId":30019941,"solarSystemName":"H:2O00","location":{"x":-14900000000000000000,"y":-859000000000000000,"z":-18800000000000000000}},"30019942":{"solarSystemId":30019942,"solarSystemName":"G:3S6V","location":{"x":-15900000000000000000,"y":-608000000000000000,"z":-17500000000000000000}},"30019943":{"solarSystemId":30019943,"solarSystemName":"J:I7T7","location":{"x":-16600000000000000000,"y":-544000000000000000,"z":-17800000000000000000}},"30019944":{"solarSystemId":30019944,"solarSystemName":"P:1ROI","location":{"x":-16100000000000000000,"y":-586000000000000000,"z":-18100000000000000000}},"30019945":{"solarSystemId":30019945,"solarSystemName":"D:1ERR","location":{"x":-16600000000000000000,"y":-780000000000000000,"z":-18300000000000000000}},"30019946":{"solarSystemId":30019946,"solarSystemName":"G:1O00","location":{"x":-15800000000000000000,"y":-768000000000000000,"z":-18400000000000000000}},"30019947":{"solarSystemId":30019947,"solarSystemName":"B:36KE","location":{"x":-16200000000000000000,"y":-457000000000000000,"z":-18300000000000000000}},"30019948":{"solarSystemId":30019948,"solarSystemName":"F:3OIS","location":{"x":-15600000000000000000,"y":-616000000000000000,"z":-18100000000000000000}},"30019949":{"solarSystemId":30019949,"solarSystemName":"F:2EOI","location":{"x":-16100000000000000000,"y":-123000000000000000,"z":-18200000000000000000}},"30019950":{"solarSystemId":30019950,"solarSystemName":"F:R1A5","location":{"x":-15900000000000000000,"y":-574000000000000000,"z":-18000000000000000000}},"30019951":{"solarSystemId":30019951,"solarSystemName":"Y:2973","location":{"x":-16200000000000000000,"y":-727000000000000000,"z":-18700000000000000000}},"30019952":{"solarSystemId":30019952,"solarSystemName":"Y:35AA","location":{"x":-16000000000000000000,"y":-591000000000000000,"z":-19000000000000000000}},"30019953":{"solarSystemId":30019953,"solarSystemName":"M:2435","location":{"x":-16200000000000000000,"y":-1420000000000000000,"z":-20000000000000000000}},"30019954":{"solarSystemId":30019954,"solarSystemName":"F:LA63","location":{"x":-16200000000000000000,"y":-645000000000000000,"z":-20100000000000000000}},"30019955":{"solarSystemId":30019955,"solarSystemName":"Q:VAN8","location":{"x":-15500000000000000000,"y":-748000000000000000,"z":-19900000000000000000}},"30019956":{"solarSystemId":30019956,"solarSystemName":"F:3EA6","location":{"x":-15400000000000000000,"y":-735000000000000000,"z":-19900000000000000000}},"30019957":{"solarSystemId":30019957,"solarSystemName":"P:1R49","location":{"x":-15800000000000000000,"y":-1020000000000000000,"z":-19800000000000000000}},"30019958":{"solarSystemId":30019958,"solarSystemName":"H:2S17","location":{"x":-16000000000000000000,"y":-751000000000000000,"z":-19300000000000000000}},"30019959":{"solarSystemId":30019959,"solarSystemName":"U:215S","location":{"x":-16200000000000000000,"y":-1070000000000000000,"z":-19600000000000000000}},"30019960":{"solarSystemId":30019960,"solarSystemName":"U:172I","location":{"x":-15800000000000000000,"y":-666000000000000000,"z":-19200000000000000000}},"30019961":{"solarSystemId":30019961,"solarSystemName":"G:3IVI","location":{"x":-16100000000000000000,"y":-916000000000000000,"z":-20100000000000000000}},"30019962":{"solarSystemId":30019962,"solarSystemName":"N.56K.NJ1","location":{"x":-34800000000000000000,"y":-2070000000000000000,"z":-5450000000000000000}},"30019963":{"solarSystemId":30019963,"solarSystemName":"I.L1E.T01","location":{"x":-35800000000000000000,"y":-1170000000000000000,"z":-6000000000000000000}},"30019964":{"solarSystemId":30019964,"solarSystemName":"H.SQK.TD1","location":{"x":-35300000000000000000,"y":-1710000000000000000,"z":-5940000000000000000}},"30019965":{"solarSystemId":30019965,"solarSystemName":"E.MTK.ZY1","location":{"x":-35000000000000000000,"y":-2160000000000000000,"z":-6840000000000000000}},"30019966":{"solarSystemId":30019966,"solarSystemName":"A.V8E.0K1","location":{"x":-36100000000000000000,"y":-2230000000000000000,"z":-5500000000000000000}},"30019967":{"solarSystemId":30019967,"solarSystemName":"T.GWW.7T1","location":{"x":-34500000000000000000,"y":-1560000000000000000,"z":-5640000000000000000}},"30019968":{"solarSystemId":30019968,"solarSystemName":"E.Y6E.EQ1","location":{"x":-36000000000000000000,"y":-1910000000000000000,"z":-5480000000000000000}},"30019969":{"solarSystemId":30019969,"solarSystemName":"D.0DK.DQ1","location":{"x":-35100000000000000000,"y":-1890000000000000000,"z":-5620000000000000000}},"30019970":{"solarSystemId":30019970,"solarSystemName":"H.2HW.Z31","location":{"x":-34300000000000000000,"y":-1290000000000000000,"z":-6330000000000000000}},"30019971":{"solarSystemId":30019971,"solarSystemName":"N.CVE.G21","location":{"x":-36400000000000000000,"y":-1250000000000000000,"z":-2580000000000000000}},"30019972":{"solarSystemId":30019972,"solarSystemName":"E.KEK.WC1","location":{"x":-35700000000000000000,"y":-1760000000000000000,"z":-2230000000000000000}},"30019973":{"solarSystemId":30019973,"solarSystemName":"D.18E.XZS","location":{"x":-36000000000000000000,"y":-393000000000000000,"z":-1350000000000000000}},"30019974":{"solarSystemId":30019974,"solarSystemName":"M.X0K.WQE","location":{"x":-34600000000000000000,"y":-1140000000000000000,"z":-3010000000000000000}},"30019975":{"solarSystemId":30019975,"solarSystemName":"B.9EK.Q9Z","location":{"x":-35700000000000000000,"y":-1020000000000000000,"z":-1180000000000000000}},"30019976":{"solarSystemId":30019976,"solarSystemName":"O.99E.FTM","location":{"x":-36100000000000000000,"y":-626000000000000000,"z":-2140000000000000000}},"30019977":{"solarSystemId":30019977,"solarSystemName":"O.LZK.T4V","location":{"x":-35600000000000000000,"y":-689000000000000000,"z":-2610000000000000000}},"30019978":{"solarSystemId":30019978,"solarSystemName":"B.72E.10B","location":{"x":-35800000000000000000,"y":-793000000000000000,"z":-1580000000000000000}},"30019979":{"solarSystemId":30019979,"solarSystemName":"H.C8K.9EM","location":{"x":-34900000000000000000,"y":648000000000000000,"z":-7870000000000000000}},"30019980":{"solarSystemId":30019980,"solarSystemName":"I.WVK.E53","location":{"x":-35300000000000000000,"y":-115000000000000000,"z":-7280000000000000000}},"30019981":{"solarSystemId":30019981,"solarSystemName":"S.T01.36G","location":{"x":-37300000000000000000,"y":-836000000000000000,"z":-6180000000000000000}},"30019982":{"solarSystemId":30019982,"solarSystemName":"N.GKK.3T7","location":{"x":-35700000000000000000,"y":265000000000000000,"z":-6010000000000000000}},"30019983":{"solarSystemId":30019983,"solarSystemName":"R.47E.TPT","location":{"x":-36000000000000000000,"y":417000000000000000,"z":-5000000000000000000}},"30019984":{"solarSystemId":30019984,"solarSystemName":"Ovnt","location":{"x":-35700000000000000000,"y":300000000000000000,"z":-8090000000000000000}},"30019985":{"solarSystemId":30019985,"solarSystemName":"C.9XE.LTG","location":{"x":-36700000000000000000,"y":-842000000000000000,"z":-4860000000000000000}},"30019986":{"solarSystemId":30019986,"solarSystemName":"O.201.S01","location":{"x":-37000000000000000000,"y":-1160000000000000000,"z":-6850000000000000000}},"30019987":{"solarSystemId":30019987,"solarSystemName":"C.0MK.B84","location":{"x":-35200000000000000000,"y":-154000000000000000,"z":-5340000000000000000}},"30019988":{"solarSystemId":30019988,"solarSystemName":"S.F01.ST1","location":{"x":-37700000000000000000,"y":-1560000000000000000,"z":-4800000000000000000}},"30019989":{"solarSystemId":30019989,"solarSystemName":"N.X11.2J1","location":{"x":-39000000000000000000,"y":-2060000000000000000,"z":-2430000000000000000}},"30019990":{"solarSystemId":30019990,"solarSystemName":"S.H01.GWM","location":{"x":-37800000000000000000,"y":-646000000000000000,"z":-2800000000000000000}},"30019991":{"solarSystemId":30019991,"solarSystemName":"H.J11.H41","location":{"x":-39000000000000000000,"y":-1320000000000000000,"z":-3410000000000000000}},"30019992":{"solarSystemId":30019992,"solarSystemName":"I.811.032","location":{"x":-38400000000000000000,"y":-2410000000000000000,"z":-4920000000000000000}},"30019993":{"solarSystemId":30019993,"solarSystemName":"D.911.471","location":{"x":-38400000000000000000,"y":-1410000000000000000,"z":-1440000000000000000}},"30019994":{"solarSystemId":30019994,"solarSystemName":"O.X01.E7G","location":{"x":-37900000000000000000,"y":-838000000000000000,"z":-5100000000000000000}},"30019995":{"solarSystemId":30019995,"solarSystemName":"C.8QE.9KV","location":{"x":-36500000000000000000,"y":-719000000000000000,"z":-3420000000000000000}},"30019996":{"solarSystemId":30019996,"solarSystemName":"M.811.231","location":{"x":-38400000000000000000,"y":-1260000000000000000,"z":-3500000000000000000}},"30019997":{"solarSystemId":30019997,"solarSystemName":"M.501.9MM","location":{"x":-37100000000000000000,"y":-632000000000000000,"z":-3180000000000000000}},"30019998":{"solarSystemId":30019998,"solarSystemName":"I.KDK.1LL","location":{"x":-35200000000000000000,"y":-520000000000000000,"z":-4970000000000000000}},"30019999":{"solarSystemId":30019999,"solarSystemName":"E.K8K.9Y1","location":{"x":-34900000000000000000,"y":-2140000000000000000,"z":-3960000000000000000}},"30020000":{"solarSystemId":30020000,"solarSystemName":"E.Q8K.EW1","location":{"x":-34900000000000000000,"y":-2230000000000000000,"z":-4410000000000000000}},"30020001":{"solarSystemId":30020001,"solarSystemName":"A.GSK.WM1","location":{"x":-35000000000000000000,"y":-1800000000000000000,"z":-4670000000000000000}},"30020002":{"solarSystemId":30020002,"solarSystemName":"S.HJK.9L1","location":{"x":-35500000000000000000,"y":-1670000000000000000,"z":-3920000000000000000}},"30020003":{"solarSystemId":30020003,"solarSystemName":"E.75E.LH1","location":{"x":-35900000000000000000,"y":-2030000000000000000,"z":-3910000000000000000}},"30020004":{"solarSystemId":30020004,"solarSystemName":"N.7VK.7M1","location":{"x":-35300000000000000000,"y":-1770000000000000000,"z":-4520000000000000000}},"30020005":{"solarSystemId":30020005,"solarSystemName":"T.YFK.D21","location":{"x":-35400000000000000000,"y":-1240000000000000000,"z":-4240000000000000000}},"30020006":{"solarSystemId":30020006,"solarSystemName":"T.PRK.EG1","location":{"x":-35100000000000000000,"y":-2020000000000000000,"z":-4280000000000000000}},"30020007":{"solarSystemId":30020007,"solarSystemName":"S.PHW.XS2","location":{"x":-34300000000000000000,"y":-2700000000000000000,"z":-3020000000000000000}},"30020008":{"solarSystemId":30020008,"solarSystemName":"S.G5W.171","location":{"x":-33600000000000000000,"y":-1410000000000000000,"z":-3930000000000000000}},"30020009":{"solarSystemId":30020009,"solarSystemName":"D.JRW.EZ1","location":{"x":-33900000000000000000,"y":-2200000000000000000,"z":-3910000000000000000}},"30020010":{"solarSystemId":30020010,"solarSystemName":"H.TFW.PH1","location":{"x":-34200000000000000000,"y":-2040000000000000000,"z":-3030000000000000000}},"30020011":{"solarSystemId":30020011,"solarSystemName":"N.F2W.5E1","location":{"x":-33500000000000000000,"y":-2280000000000000000,"z":-3740000000000000000}},"30020012":{"solarSystemId":30020012,"solarSystemName":"T.9KW.3G1","location":{"x":-34500000000000000000,"y":-1990000000000000000,"z":-4460000000000000000}},"30020013":{"solarSystemId":30020013,"solarSystemName":"C.9RW.J52","location":{"x":-33900000000000000000,"y":-2510000000000000000,"z":-4500000000000000000}},"30020014":{"solarSystemId":30020014,"solarSystemName":"O.EKW.1GQ","location":{"x":-34600000000000000000,"y":-747000000000000000,"z":-2940000000000000000}},"30020015":{"solarSystemId":30020015,"solarSystemName":"C.90K.H87","location":{"x":-34600000000000000000,"y":-262000000000000000,"z":-2750000000000000000}},"30020016":{"solarSystemId":30020016,"solarSystemName":"L.GJZ.LS1","location":{"x":-33200000000000000000,"y":-1530000000000000000,"z":-7430000000000000000}},"30020017":{"solarSystemId":30020017,"solarSystemName":"I.S8Z.RL1","location":{"x":-32600000000000000000,"y":-1670000000000000000,"z":-7900000000000000000}},"30020018":{"solarSystemId":30020018,"solarSystemName":"D.50W.LY1","location":{"x":-33400000000000000000,"y":-2140000000000000000,"z":-7760000000000000000}},"30020019":{"solarSystemId":30020019,"solarSystemName":"U.H9W.2E1","location":{"x":-33800000000000000000,"y":-2270000000000000000,"z":-7000000000000000000}},"30020020":{"solarSystemId":30020020,"solarSystemName":"U.CCZ.HE1","location":{"x":-32900000000000000000,"y":-2300000000000000000,"z":-7210000000000000000}},"30020021":{"solarSystemId":30020021,"solarSystemName":"A.VCW.PQ1","location":{"x":-34000000000000000000,"y":-1890000000000000000,"z":-7010000000000000000}},"30020022":{"solarSystemId":30020022,"solarSystemName":"T.7PW.3X1","location":{"x":-34100000000000000000,"y":-2090000000000000000,"z":-7340000000000000000}},"30020023":{"solarSystemId":30020023,"solarSystemName":"G.8EZ.322","location":{"x":-33400000000000000000,"y":-2380000000000000000,"z":-7890000000000000000}},"30020024":{"solarSystemId":30020024,"solarSystemName":"C.6FZ.B71","location":{"x":-33000000000000000000,"y":-1430000000000000000,"z":-7380000000000000000}},"30020025":{"solarSystemId":30020025,"solarSystemName":"A.F4E.MK2","location":{"x":-35900000000000000000,"y":-3410000000000000000,"z":-2970000000000000000}},"30020026":{"solarSystemId":30020026,"solarSystemName":"U.QLE.352","location":{"x":-36300000000000000000,"y":-2490000000000000000,"z":-4960000000000000000}},"30020027":{"solarSystemId":30020027,"solarSystemName":"I.KRK.T52","location":{"x":-35100000000000000000,"y":-2500000000000000000,"z":-4860000000000000000}},"30020028":{"solarSystemId":30020028,"solarSystemName":"I.X5E.Q43","location":{"x":-36000000000000000000,"y":-3630000000000000000,"z":-3710000000000000000}},"30020029":{"solarSystemId":30020029,"solarSystemName":"T.KWK.952","location":{"x":-35700000000000000000,"y":-2500000000000000000,"z":-3680000000000000000}},"30020030":{"solarSystemId":30020030,"solarSystemName":"S.KHK.E23","location":{"x":-35500000000000000000,"y":-3570000000000000000,"z":-3200000000000000000}},"30020031":{"solarSystemId":30020031,"solarSystemName":"L.0DK.XS2","location":{"x":-35100000000000000000,"y":-2700000000000000000,"z":-4320000000000000000}},"30020032":{"solarSystemId":30020032,"solarSystemName":"H.9DK.RT1","location":{"x":-35100000000000000000,"y":-1560000000000000000,"z":-2740000000000000000}},"30020033":{"solarSystemId":30020033,"solarSystemName":"E.SBX.1J2","location":{"x":-30800000000000000000,"y":-3210000000000000000,"z":-32000000000000000000}},"30020034":{"solarSystemId":30020034,"solarSystemName":"R.62Y.TQ3","location":{"x":-31200000000000000000,"y":-4190000000000000000,"z":-31700000000000000000}},"30020035":{"solarSystemId":30020035,"solarSystemName":"T.J7Y.SR3","location":{"x":-31400000000000000000,"y":-3940000000000000000,"z":-31800000000000000000}},"30020036":{"solarSystemId":30020036,"solarSystemName":"R.0VY.Z24","location":{"x":-31800000000000000000,"y":-4720000000000000000,"z":-31200000000000000000}},"30020037":{"solarSystemId":30020037,"solarSystemName":"I.VNY.8F3","location":{"x":-31600000000000000000,"y":-4230000000000000000,"z":-31700000000000000000}},"30020038":{"solarSystemId":30020038,"solarSystemName":"I.L1K.FE5","location":{"x":-34600000000000000000,"y":-6910000000000000000,"z":-30000000000000000000}},"30020039":{"solarSystemId":30020039,"solarSystemName":"T.RVW.306","location":{"x":-34100000000000000000,"y":-6920000000000000000,"z":-30600000000000000000}},"30020040":{"solarSystemId":30020040,"solarSystemName":"T.H1Z.PC4","location":{"x":-32300000000000000000,"y":-5210000000000000000,"z":-30000000000000000000}},"30020041":{"solarSystemId":30020041,"solarSystemName":"R.FKX.V46","location":{"x":-31100000000000000000,"y":-7080000000000000000,"z":-31300000000000000000}},"30020042":{"solarSystemId":30020042,"solarSystemName":"I.RLZ.NE6","location":{"x":-32800000000000000000,"y":-8050000000000000000,"z":-29100000000000000000}},"30020043":{"solarSystemId":30020043,"solarSystemName":"N.8NZ.RT4","location":{"x":-32700000000000000000,"y":-5020000000000000000,"z":-29300000000000000000}},"30020044":{"solarSystemId":30020044,"solarSystemName":"T.J5Z.LJ2","location":{"x":-32500000000000000000,"y":-3220000000000000000,"z":-29400000000000000000}},"30020045":{"solarSystemId":30020045,"solarSystemName":"T.E9Z.Q54","location":{"x":-32600000000000000000,"y":-4810000000000000000,"z":-30200000000000000000}},"30020046":{"solarSystemId":30020046,"solarSystemName":"D.83Z.2E3","location":{"x":-32400000000000000000,"y":-4580000000000000000,"z":-30200000000000000000}},"30020047":{"solarSystemId":30020047,"solarSystemName":"T.2QY.2P3","location":{"x":-31900000000000000000,"y":-4110000000000000000,"z":-29300000000000000000}},"30020048":{"solarSystemId":30020048,"solarSystemName":"I.WEY.Q74","location":{"x":-32300000000000000000,"y":-4890000000000000000,"z":-31700000000000000000}},"30020049":{"solarSystemId":30020049,"solarSystemName":"R.P8K.SV5","location":{"x":-34900000000000000000,"y":-6460000000000000000,"z":-30900000000000000000}},"30020050":{"solarSystemId":30020050,"solarSystemName":"Ydalir","location":{"x":-32500000000000000000,"y":-5190000000000000000,"z":-30300000000000000000}},"30020051":{"solarSystemId":30020051,"solarSystemName":"E.9WK.R87","location":{"x":-35600000000000000000,"y":-8370000000000000000,"z":-30100000000000000000}},"30020052":{"solarSystemId":30020052,"solarSystemName":"S.4RZ.374","location":{"x":-32800000000000000000,"y":-4870000000000000000,"z":-31500000000000000000}},"30020053":{"solarSystemId":30020053,"solarSystemName":"I2G-0P8","location":{"x":-52300000000000000000,"y":-4390000000000000000,"z":-9790000000000000000}},"30020054":{"solarSystemId":30020054,"solarSystemName":"I7K-PM8","location":{"x":-51300000000000000000,"y":-3000000000000000000,"z":-9110000000000000000}},"30020055":{"solarSystemId":30020055,"solarSystemName":"EP3-VN8","location":{"x":-52400000000000000000,"y":-3120000000000000000,"z":-8820000000000000000}},"30020056":{"solarSystemId":30020056,"solarSystemName":"I3N-JN8","location":{"x":-52000000000000000000,"y":-4390000000000000000,"z":-8660000000000000000}},"30020057":{"solarSystemId":30020057,"solarSystemName":"IDG-GN8","location":{"x":-51900000000000000000,"y":-4240000000000000000,"z":-7150000000000000000}},"30020058":{"solarSystemId":30020058,"solarSystemName":"OSV-3R8","location":{"x":-54100000000000000000,"y":-6940000000000000000,"z":-7610000000000000000}},"30020059":{"solarSystemId":30020059,"solarSystemName":"OCM-HP8","location":{"x":-52600000000000000000,"y":-3780000000000000000,"z":-13400000000000000000}},"30020060":{"solarSystemId":30020060,"solarSystemName":"E4N-TQ8","location":{"x":-53500000000000000000,"y":-7460000000000000000,"z":-11600000000000000000}},"30020061":{"solarSystemId":30020061,"solarSystemName":"E6J-PQ8","location":{"x":-53700000000000000000,"y":-6770000000000000000,"z":-7920000000000000000}},"30020062":{"solarSystemId":30020062,"solarSystemName":"EK6-3S8","location":{"x":-55200000000000000000,"y":-7540000000000000000,"z":-9750000000000000000}},"30020063":{"solarSystemId":30020063,"solarSystemName":"ICM-LK8","location":{"x":-49400000000000000000,"y":-2700000000000000000,"z":-5330000000000000000}},"30020064":{"solarSystemId":30020064,"solarSystemName":"I92-6L8","location":{"x":-49800000000000000000,"y":-445000000000000000,"z":-2920000000000000000}},"30020065":{"solarSystemId":30020065,"solarSystemName":"URV-DL8","location":{"x":-49900000000000000000,"y":-2880000000000000000,"z":-3400000000000000000}},"30020066":{"solarSystemId":30020066,"solarSystemName":"E4V-CM8","location":{"x":-50800000000000000000,"y":-3830000000000000000,"z":-6950000000000000000}},"30020067":{"solarSystemId":30020067,"solarSystemName":"AQN-8K8","location":{"x":-49000000000000000000,"y":-2520000000000000000,"z":-6510000000000000000}},"30020068":{"solarSystemId":30020068,"solarSystemName":"E4H-LQ8","location":{"x":-54100000000000000000,"y":-2960000000000000000,"z":-8680000000000000000}},"30020069":{"solarSystemId":30020069,"solarSystemName":"EM7-LQ8","location":{"x":-54000000000000000000,"y":-2880000000000000000,"z":-9550000000000000000}},"30020070":{"solarSystemId":30020070,"solarSystemName":"E97-TR8","location":{"x":-55600000000000000000,"y":-1870000000000000000,"z":-8080000000000000000}},"30020071":{"solarSystemId":30020071,"solarSystemName":"A1S-8Q8","location":{"x":-53800000000000000000,"y":-1890000000000000000,"z":-9300000000000000000}},"30020072":{"solarSystemId":30020072,"solarSystemName":"AV0-FQ8","location":{"x":-54000000000000000000,"y":-1060000000000000000,"z":-8480000000000000000}},"30020073":{"solarSystemId":30020073,"solarSystemName":"AB8-QK8","location":{"x":-49600000000000000000,"y":-2370000000000000000,"z":-7870000000000000000}},"30020074":{"solarSystemId":30020074,"solarSystemName":"E8D-5K8","location":{"x":-48800000000000000000,"y":-3320000000000000000,"z":-9960000000000000000}},"30020075":{"solarSystemId":30020075,"solarSystemName":"I3N-1M8","location":{"x":-50400000000000000000,"y":-3490000000000000000,"z":-10600000000000000000}},"30020076":{"solarSystemId":30020076,"solarSystemName":"ASJ-4K8","location":{"x":-48700000000000000000,"y":-4030000000000000000,"z":-8970000000000000000}},"30020077":{"solarSystemId":30020077,"solarSystemName":"IBS-TK8","location":{"x":-49600000000000000000,"y":-3680000000000000000,"z":-8220000000000000000}},"30020078":{"solarSystemId":30020078,"solarSystemName":"Exoterica","location":{"x":-51100000000000000000,"y":-1810000000000000000,"z":-8070000000000000000}},"30020079":{"solarSystemId":30020079,"solarSystemName":"AM2-2N8","location":{"x":-51700000000000000000,"y":-2360000000000000000,"z":-9700000000000000000}},"30020080":{"solarSystemId":30020080,"solarSystemName":"EVC-HP8","location":{"x":-52900000000000000000,"y":-3440000000000000000,"z":-10100000000000000000}},"30020081":{"solarSystemId":30020081,"solarSystemName":"OP3-5N8","location":{"x":-51800000000000000000,"y":-1120000000000000000,"z":-10500000000000000000}},"30020082":{"solarSystemId":30020082,"solarSystemName":"O18-KN8","location":{"x":-52100000000000000000,"y":-2710000000000000000,"z":-9130000000000000000}},"30020083":{"solarSystemId":30020083,"solarSystemName":"EJQ-9N8","location":{"x":-52000000000000000000,"y":-2530000000000000000,"z":-5750000000000000000}},"30020084":{"solarSystemId":30020084,"solarSystemName":"OML-VN8","location":{"x":-52400000000000000000,"y":-3360000000000000000,"z":-7170000000000000000}},"30020085":{"solarSystemId":30020085,"solarSystemName":"ETJ-FM8","location":{"x":-51000000000000000000,"y":-2490000000000000000,"z":-5320000000000000000}},"30020086":{"solarSystemId":30020086,"solarSystemName":"ONS-HN8","location":{"x":-52100000000000000000,"y":-3310000000000000000,"z":-6910000000000000000}},"30020087":{"solarSystemId":30020087,"solarSystemName":"I5B-KP8","location":{"x":-53200000000000000000,"y":-1660000000000000000,"z":-6030000000000000000}},"30020088":{"solarSystemId":30020088,"solarSystemName":"I1S-RR8","location":{"x":-55200000000000000000,"y":-3660000000000000000,"z":-12300000000000000000}},"30020089":{"solarSystemId":30020089,"solarSystemName":"AN2-5R8","location":{"x":-54400000000000000000,"y":-1910000000000000000,"z":-12600000000000000000}},"30020090":{"solarSystemId":30020090,"solarSystemName":"INS-3Q8","location":{"x":-53400000000000000000,"y":-2570000000000000000,"z":-12500000000000000000}},"30020091":{"solarSystemId":30020091,"solarSystemName":"AKC-JR8","location":{"x":-54900000000000000000,"y":-1930000000000000000,"z":-11700000000000000000}},"30020092":{"solarSystemId":30020092,"solarSystemName":"IJC-1Q8","location":{"x":-53400000000000000000,"y":-2860000000000000000,"z":-12000000000000000000}},"30020093":{"solarSystemId":30020093,"solarSystemName":"E3G-9R8","location":{"x":-54800000000000000000,"y":-3190000000000000000,"z":-8700000000000000000}},"30020094":{"solarSystemId":30020094,"solarSystemName":"OF9-BR8","location":{"x":-54800000000000000000,"y":-3700000000000000000,"z":-8910000000000000000}},"30020095":{"solarSystemId":30020095,"solarSystemName":"UDG-KR8","location":{"x":-55100000000000000000,"y":-3560000000000000000,"z":-8970000000000000000}},"30020096":{"solarSystemId":30020096,"solarSystemName":"ECS-BR8","location":{"x":-54800000000000000000,"y":-3280000000000000000,"z":-8700000000000000000}},"30020097":{"solarSystemId":30020097,"solarSystemName":"ISH-1S8","location":{"x":-55600000000000000000,"y":-3570000000000000000,"z":-9780000000000000000}},"30020098":{"solarSystemId":30020098,"solarSystemName":"E9R-MP8","location":{"x":-53300000000000000000,"y":-2590000000000000000,"z":-6290000000000000000}},"30020099":{"solarSystemId":30020099,"solarSystemName":"ICS-JQ8","location":{"x":-53900000000000000000,"y":-4130000000000000000,"z":-6360000000000000000}},"30020100":{"solarSystemId":30020100,"solarSystemName":"UVQ-CP8","location":{"x":-52900000000000000000,"y":-2890000000000000000,"z":-5560000000000000000}},"30020101":{"solarSystemId":30020101,"solarSystemName":"U39-8Q8","location":{"x":-53700000000000000000,"y":-3350000000000000000,"z":-5780000000000000000}},"30020102":{"solarSystemId":30020102,"solarSystemName":"OFN-SN8","location":{"x":-52400000000000000000,"y":-2920000000000000000,"z":-6580000000000000000}},"30020103":{"solarSystemId":30020103,"solarSystemName":"E5P-BL8","location":{"x":-50000000000000000000,"y":-2050000000000000000,"z":-10700000000000000000}},"30020104":{"solarSystemId":30020104,"solarSystemName":"O0S-RJ8","location":{"x":-48400000000000000000,"y":-1040000000000000000,"z":-12500000000000000000}},"30020105":{"solarSystemId":30020105,"solarSystemName":"EH0-8L8","location":{"x":-50100000000000000000,"y":-1330000000000000000,"z":-8650000000000000000}},"30020106":{"solarSystemId":30020106,"solarSystemName":"U8D-VK8","location":{"x":-49800000000000000000,"y":44800000000000000,"z":-9890000000000000000}},"30020107":{"solarSystemId":30020107,"solarSystemName":"INM-VK8","location":{"x":-49700000000000000000,"y":-1400000000000000000,"z":-10600000000000000000}},"30020108":{"solarSystemId":30020108,"solarSystemName":"E5P-JK8","location":{"x":-49300000000000000000,"y":-46300000000000000,"z":-11300000000000000000}},"30020109":{"solarSystemId":30020109,"solarSystemName":"IBF-5P8","location":{"x":-50700000000000000000,"y":-889000000000000000,"z":-20300000000000000000}},"30020110":{"solarSystemId":30020110,"solarSystemName":"UC8-TN8","location":{"x":-48400000000000000000,"y":-1870000000000000000,"z":-25200000000000000000}},"30020111":{"solarSystemId":30020111,"solarSystemName":"O6P-JS8","location":{"x":-51000000000000000000,"y":-938000000000000000,"z":-29200000000000000000}},"30020112":{"solarSystemId":30020112,"solarSystemName":"E3T-5R8","location":{"x":-51700000000000000000,"y":-719000000000000000,"z":-23600000000000000000}},"30020113":{"solarSystemId":30020113,"solarSystemName":"I02-BR8","location":{"x":-52000000000000000000,"y":-934000000000000000,"z":-23300000000000000000}},"30020114":{"solarSystemId":30020114,"solarSystemName":"Summa","location":{"x":-49600000000000000000,"y":-1970000000000000000,"z":-21400000000000000000}},"30020115":{"solarSystemId":30020115,"solarSystemName":"ID3-DP8","location":{"x":-49700000000000000000,"y":-1980000000000000000,"z":-23600000000000000000}},"30020116":{"solarSystemId":30020116,"solarSystemName":"E8D-2P8","location":{"x":-49600000000000000000,"y":-2450000000000000000,"z":-22800000000000000000}},"30020117":{"solarSystemId":30020117,"solarSystemName":"EGV-MM8","location":{"x":-49100000000000000000,"y":-1390000000000000000,"z":-20700000000000000000}},"30020118":{"solarSystemId":30020118,"solarSystemName":"O9L-SM8","location":{"x":-48500000000000000000,"y":-608000000000000000,"z":-23100000000000000000}},"30020119":{"solarSystemId":30020119,"solarSystemName":"EFH-2M8","location":{"x":-47800000000000000000,"y":-1720000000000000000,"z":-22300000000000000000}},"30020120":{"solarSystemId":30020120,"solarSystemName":"ISP-5L8","location":{"x":-46300000000000000000,"y":-1890000000000000000,"z":-23900000000000000000}},"30020121":{"solarSystemId":30020121,"solarSystemName":"IKD-MJ8","location":{"x":-46000000000000000000,"y":-1310000000000000000,"z":-21000000000000000000}},"30020122":{"solarSystemId":30020122,"solarSystemName":"IM2-VJ8","location":{"x":-44700000000000000000,"y":-790000000000000000,"z":-24500000000000000000}},"30020123":{"solarSystemId":30020123,"solarSystemName":"ET0-JL8","location":{"x":-46700000000000000000,"y":-944000000000000000,"z":-23900000000000000000}},"30020124":{"solarSystemId":30020124,"solarSystemName":"IMF-JK8","location":{"x":-46100000000000000000,"y":-1040000000000000000,"z":-23100000000000000000}},"30020125":{"solarSystemId":30020125,"solarSystemName":"AC8-FQ8","location":{"x":-49300000000000000000,"y":-1750000000000000000,"z":-26900000000000000000}},"30020126":{"solarSystemId":30020126,"solarSystemName":"OML-8R8","location":{"x":-49900000000000000000,"y":-1350000000000000000,"z":-27700000000000000000}},"30020127":{"solarSystemId":30020127,"solarSystemName":"AP8-HR8","location":{"x":-50700000000000000000,"y":-2420000000000000000,"z":-26400000000000000000}},"30020128":{"solarSystemId":30020128,"solarSystemName":"ERN-5P8","location":{"x":-48500000000000000000,"y":-2320000000000000000,"z":-25500000000000000000}},"30020129":{"solarSystemId":30020129,"solarSystemName":"E8K-9P8","location":{"x":-47800000000000000000,"y":-2770000000000000000,"z":-27300000000000000000}},"30020130":{"solarSystemId":30020130,"solarSystemName":"EDT-MQ8","location":{"x":-47800000000000000000,"y":-1710000000000000000,"z":-29900000000000000000}},"30020131":{"solarSystemId":30020131,"solarSystemName":"OLK-5R8","location":{"x":-48100000000000000000,"y":-742000000000000000,"z":-30600000000000000000}},"30020132":{"solarSystemId":30020132,"solarSystemName":"E44-7P8","location":{"x":-46900000000000000000,"y":-1180000000000000000,"z":-28800000000000000000}},"30020133":{"solarSystemId":30020133,"solarSystemName":"I4V-VN8","location":{"x":-47000000000000000000,"y":-1110000000000000000,"z":-28200000000000000000}},"30020134":{"solarSystemId":30020134,"solarSystemName":"O8D-RP8","location":{"x":-47100000000000000000,"y":-1190000000000000000,"z":-29800000000000000000}},"30020135":{"solarSystemId":30020135,"solarSystemName":"EP3-CM8","location":{"x":-46100000000000000000,"y":-2080000000000000000,"z":-26400000000000000000}},"30020136":{"solarSystemId":30020136,"solarSystemName":"AJC-MM8","location":{"x":-46400000000000000000,"y":-2530000000000000000,"z":-26600000000000000000}},"30020137":{"solarSystemId":30020137,"solarSystemName":"I5P-TM8","location":{"x":-46200000000000000000,"y":-2230000000000000000,"z":-27600000000000000000}},"30020138":{"solarSystemId":30020138,"solarSystemName":"EQ9-HN8","location":{"x":-47700000000000000000,"y":-2490000000000000000,"z":-25900000000000000000}},"30020139":{"solarSystemId":30020139,"solarSystemName":"E8D-8N8","location":{"x":-47100000000000000000,"y":-1600000000000000000,"z":-26700000000000000000}},"30020140":{"solarSystemId":30020140,"solarSystemName":"IS5-KM8","location":{"x":-45600000000000000000,"y":-1060000000000000000,"z":-27900000000000000000}},"30020141":{"solarSystemId":30020141,"solarSystemName":"EFN-HL8","location":{"x":-44700000000000000000,"y":-1150000000000000000,"z":-27500000000000000000}},"30020142":{"solarSystemId":30020142,"solarSystemName":"IDT-JM8","location":{"x":-45600000000000000000,"y":-1130000000000000000,"z":-28000000000000000000}},"30020143":{"solarSystemId":30020143,"solarSystemName":"E97-1N8","location":{"x":-46100000000000000000,"y":-721000000000000000,"z":-28200000000000000000}},"30020144":{"solarSystemId":30020144,"solarSystemName":"IHJ-5M8","location":{"x":-45500000000000000000,"y":-964000000000000000,"z":-27400000000000000000}},"30020145":{"solarSystemId":30020145,"solarSystemName":"E4P-1J8","location":{"x":-43800000000000000000,"y":-1790000000000000000,"z":-24400000000000000000}},"30020146":{"solarSystemId":30020146,"solarSystemName":"EGB-7K8","location":{"x":-45300000000000000000,"y":-3100000000000000000,"z":-23400000000000000000}},"30020147":{"solarSystemId":30020147,"solarSystemName":"OL7-6K8","location":{"x":-44500000000000000000,"y":-1660000000000000000,"z":-25200000000000000000}},"30020148":{"solarSystemId":30020148,"solarSystemName":"UQH-FH8","location":{"x":-43500000000000000000,"y":-2440000000000000000,"z":-23800000000000000000}},"30020149":{"solarSystemId":30020149,"solarSystemName":"ECG-KJ8","location":{"x":-43800000000000000000,"y":-3320000000000000000,"z":-25200000000000000000}},"30020150":{"solarSystemId":30020150,"solarSystemName":"EP3-RK8","location":{"x":-43200000000000000000,"y":-7400000000000000000,"z":-27200000000000000000}},"30020151":{"solarSystemId":30020151,"solarSystemName":"E2T-8M8","location":{"x":-44000000000000000000,"y":-7590000000000000000,"z":-28400000000000000000}},"30020152":{"solarSystemId":30020152,"solarSystemName":"IV6-5L8","location":{"x":-45400000000000000000,"y":-1540000000000000000,"z":-25700000000000000000}},"30020153":{"solarSystemId":30020153,"solarSystemName":"EBF-2L8","location":{"x":-43200000000000000000,"y":-7240000000000000000,"z":-27800000000000000000}},"30020154":{"solarSystemId":30020154,"solarSystemName":"IVQ-KN8","location":{"x":-46600000000000000000,"y":-1120000000000000000,"z":-28200000000000000000}},"30020155":{"solarSystemId":30020155,"solarSystemName":"UNF-MN8","location":{"x":-46500000000000000000,"y":-1230000000000000000,"z":-28400000000000000000}},"30020156":{"solarSystemId":30020156,"solarSystemName":"I60-9N8","location":{"x":-46400000000000000000,"y":-995000000000000000,"z":-28100000000000000000}},"30020157":{"solarSystemId":30020157,"solarSystemName":"E9L-9L8","location":{"x":-49700000000000000000,"y":-3400000000000000000,"z":-2410000000000000000}},"30020158":{"solarSystemId":30020158,"solarSystemName":"E0S-KK8","location":{"x":-49100000000000000000,"y":-2890000000000000000,"z":-2430000000000000000}},"30020159":{"solarSystemId":30020159,"solarSystemName":"E55-QM8","location":{"x":-50900000000000000000,"y":-3360000000000000000,"z":-1450000000000000000}},"30020160":{"solarSystemId":30020160,"solarSystemName":"E0F-HL8","location":{"x":-49800000000000000000,"y":-2700000000000000000,"z":-1380000000000000000}},"30020161":{"solarSystemId":30020161,"solarSystemName":"EL7-PL8","location":{"x":-49800000000000000000,"y":-3150000000000000000,"z":-421000000000000000}},"30020162":{"solarSystemId":30020162,"solarSystemName":"EHJ-KK8","location":{"x":-49200000000000000000,"y":-3710000000000000000,"z":-3680000000000000000}},"30020163":{"solarSystemId":30020163,"solarSystemName":"IPT-PJ8","location":{"x":-48400000000000000000,"y":-3220000000000000000,"z":-4180000000000000000}},"30020164":{"solarSystemId":30020164,"solarSystemName":"IM2-NK8","location":{"x":-49300000000000000000,"y":-3780000000000000000,"z":-4670000000000000000}},"30020165":{"solarSystemId":30020165,"solarSystemName":"I13-1L8","location":{"x":-49400000000000000000,"y":-4180000000000000000,"z":-3050000000000000000}},"30020166":{"solarSystemId":30020166,"solarSystemName":"OPT-9L8","location":{"x":-49800000000000000000,"y":-3590000000000000000,"z":-3320000000000000000}},"30020167":{"solarSystemId":30020167,"solarSystemName":"E60-3P8","location":{"x":-52300000000000000000,"y":-2720000000000000000,"z":-2590000000000000000}},"30020168":{"solarSystemId":30020168,"solarSystemName":"ENS-PM8","location":{"x":-51200000000000000000,"y":-2490000000000000000,"z":-2800000000000000000}},"30020169":{"solarSystemId":30020169,"solarSystemName":"EHP-0P8","location":{"x":-52300000000000000000,"y":-2670000000000000000,"z":-2700000000000000000}},"30020170":{"solarSystemId":30020170,"solarSystemName":"IFN-9M8","location":{"x":-50700000000000000000,"y":-2760000000000000000,"z":-3140000000000000000}},"30020171":{"solarSystemId":30020171,"solarSystemName":"IH5-9M8","location":{"x":-50700000000000000000,"y":-1770000000000000000,"z":-3180000000000000000}},"30020172":{"solarSystemId":30020172,"solarSystemName":"ED9-FM8","location":{"x":-50600000000000000000,"y":-3550000000000000000,"z":-2680000000000000000}},"30020173":{"solarSystemId":30020173,"solarSystemName":"ISP-NM8","location":{"x":-50900000000000000000,"y":-4540000000000000000,"z":-2720000000000000000}},"30020174":{"solarSystemId":30020174,"solarSystemName":"O23-JM8","location":{"x":-50600000000000000000,"y":-4720000000000000000,"z":-2390000000000000000}},"30020175":{"solarSystemId":30020175,"solarSystemName":"OSB-3M8","location":{"x":-50200000000000000000,"y":-3960000000000000000,"z":-2110000000000000000}},"30020176":{"solarSystemId":30020176,"solarSystemName":"Lysis","location":{"x":-50700000000000000000,"y":-4300000000000000000,"z":-2300000000000000000}},"30020177":{"solarSystemId":30020177,"solarSystemName":"EVK-7K8","location":{"x":-48200000000000000000,"y":-1370000000000000000,"z":950000000000000000}},"30020178":{"solarSystemId":30020178,"solarSystemName":"E49-CT8","location":{"x":-56600000000000000000,"y":-3300000000000000000,"z":2780000000000000000}},"30020179":{"solarSystemId":30020179,"solarSystemName":"O9R-TN8","location":{"x":-51800000000000000000,"y":-347000000000000000,"z":467000000000000000}},"30020180":{"solarSystemId":30020180,"solarSystemName":"EC3-9L8","location":{"x":-49400000000000000000,"y":-449000000000000000,"z":554000000000000000}},"30020181":{"solarSystemId":30020181,"solarSystemName":"EK6-6N8","location":{"x":-51200000000000000000,"y":-1580000000000000000,"z":448000000000000000}},"30020182":{"solarSystemId":30020182,"solarSystemName":"IK1-CL8","location":{"x":-48700000000000000000,"y":-382000000000000000,"z":3450000000000000000}},"30020183":{"solarSystemId":30020183,"solarSystemName":"OQG-BQ8","location":{"x":-52500000000000000000,"y":-432000000000000000,"z":3670000000000000000}},"30020184":{"solarSystemId":30020184,"solarSystemName":"E0L-TP8","location":{"x":-51100000000000000000,"y":-149000000000000000,"z":7360000000000000000}},"30020185":{"solarSystemId":30020185,"solarSystemName":"AF4-PN8","location":{"x":-50900000000000000000,"y":-92500000000000000,"z":4030000000000000000}},"30020186":{"solarSystemId":30020186,"solarSystemName":"EGH-CP8","location":{"x":-51900000000000000000,"y":-908000000000000000,"z":2310000000000000000}},"30020187":{"solarSystemId":30020187,"solarSystemName":"IPM-GM8","location":{"x":-50900000000000000000,"y":-432000000000000000,"z":-2390000000000000000}},"30020188":{"solarSystemId":30020188,"solarSystemName":"ER4-NL8","location":{"x":-50000000000000000000,"y":-366000000000000000,"z":-1300000000000000000}},"30020189":{"solarSystemId":30020189,"solarSystemName":"E18-8L8","location":{"x":-49900000000000000000,"y":-267000000000000000,"z":-2730000000000000000}},"30020190":{"solarSystemId":30020190,"solarSystemName":"OS5-RL8","location":{"x":-50300000000000000000,"y":-461000000000000000,"z":-2550000000000000000}},"30020191":{"solarSystemId":30020191,"solarSystemName":"IRH-BM8","location":{"x":-50400000000000000000,"y":-414000000000000000,"z":-127000000000000000}},"30020192":{"solarSystemId":30020192,"solarSystemName":"T.NDX.QF3","location":{"x":-30500000000000000000,"y":-4240000000000000000,"z":-27900000000000000000}},"30020193":{"solarSystemId":30020193,"solarSystemName":"H.0EX.653","location":{"x":-31100000000000000000,"y":-3650000000000000000,"z":-27000000000000000000}},"30020194":{"solarSystemId":30020194,"solarSystemName":"H.0MJ.DD1","location":{"x":-29400000000000000000,"y":-1710000000000000000,"z":-27000000000000000000}},"30020195":{"solarSystemId":30020195,"solarSystemName":"N.MRZ.XE2","location":{"x":-32800000000000000000,"y":-3450000000000000000,"z":-28000000000000000000}},"30020196":{"solarSystemId":30020196,"solarSystemName":"D.TBX.YC5","location":{"x":-30800000000000000000,"y":-6370000000000000000,"z":-26900000000000000000}},"30020197":{"solarSystemId":30020197,"solarSystemName":"I.ZEX.6ZL","location":{"x":-31100000000000000000,"y":-536000000000000000,"z":-27600000000000000000}},"30020198":{"solarSystemId":30020198,"solarSystemName":"E.01Y.L8G","location":{"x":-31200000000000000000,"y":-838000000000000000,"z":-27800000000000000000}},"30020199":{"solarSystemId":30020199,"solarSystemName":"U.JEX.VVW","location":{"x":-31100000000000000000,"y":-1070000000000000000,"z":-27500000000000000000}},"30020200":{"solarSystemId":30020200,"solarSystemName":"R.EZX.0PZ","location":{"x":-31000000000000000000,"y":-1030000000000000000,"z":-27000000000000000000}},"30020201":{"solarSystemId":30020201,"solarSystemName":"M.LVX.GD8","location":{"x":-30700000000000000000,"y":-306000000000000000,"z":-27600000000000000000}},"30020202":{"solarSystemId":30020202,"solarSystemName":"C.VVX.HLQ","location":{"x":-30700000000000000000,"y":-737000000000000000,"z":-27400000000000000000}},"30020203":{"solarSystemId":30020203,"solarSystemName":"L.5CZ.7S1","location":{"x":-32900000000000000000,"y":-1520000000000000000,"z":-27200000000000000000}},"30020204":{"solarSystemId":30020204,"solarSystemName":"E.7RY.LL1","location":{"x":-31600000000000000000,"y":-1670000000000000000,"z":-30800000000000000000}},"30020205":{"solarSystemId":30020205,"solarSystemName":"D.0MK.66P","location":{"x":-35200000000000000000,"y":-656000000000000000,"z":-31100000000000000000}},"30020206":{"solarSystemId":30020206,"solarSystemName":"O.T7K.XGL","location":{"x":-34900000000000000000,"y":-531000000000000000,"z":-28500000000000000000}},"30020207":{"solarSystemId":30020207,"solarSystemName":"M.4VW.KQ2","location":{"x":-34100000000000000000,"y":95600000000000000,"z":-26700000000000000000}},"30020208":{"solarSystemId":30020208,"solarSystemName":"S.93Y.72V","location":{"x":-31200000000000000000,"y":-687000000000000000,"z":-28300000000000000000}},"30020209":{"solarSystemId":30020209,"solarSystemName":"A.F7Y.71V","location":{"x":-31400000000000000000,"y":-686000000000000000,"z":-28600000000000000000}},"30020210":{"solarSystemId":30020210,"solarSystemName":"U.9EX.YMM","location":{"x":-31100000000000000000,"y":-633000000000000000,"z":-28900000000000000000}},"30020211":{"solarSystemId":30020211,"solarSystemName":"U.M4Y.88V","location":{"x":-31300000000000000000,"y":-694000000000000000,"z":-28000000000000000000}},"30020212":{"solarSystemId":30020212,"solarSystemName":"A.0NY.KKX","location":{"x":-31600000000000000000,"y":-972000000000000000,"z":-28600000000000000000}},"30020213":{"solarSystemId":30020213,"solarSystemName":"U.Z3Y.STY","location":{"x":-31300000000000000000,"y":-986000000000000000,"z":-28200000000000000000}},"30020214":{"solarSystemId":30020214,"solarSystemName":"I.P01.ND2","location":{"x":-37600000000000000000,"y":-2860000000000000000,"z":-27300000000000000000}},"30020215":{"solarSystemId":30020215,"solarSystemName":"I.YFK.5R1","location":{"x":-35400000000000000000,"y":-1630000000000000000,"z":-25400000000000000000}},"30020216":{"solarSystemId":30020216,"solarSystemName":"I.B3K.EL1","location":{"x":-34700000000000000000,"y":-1690000000000000000,"z":-25000000000000000000}},"30020217":{"solarSystemId":30020217,"solarSystemName":"R.P8E.5F1","location":{"x":-36000000000000000000,"y":-1920000000000000000,"z":-26400000000000000000}},"30020218":{"solarSystemId":30020218,"solarSystemName":"E.NDE.Q62","location":{"x":-36300000000000000000,"y":-2550000000000000000,"z":-24800000000000000000}},"30020219":{"solarSystemId":30020219,"solarSystemName":"O.F0E.SK1","location":{"x":-35800000000000000000,"y":-70200000000000000,"z":-27100000000000000000}},"30020220":{"solarSystemId":30020220,"solarSystemName":"L.R01.ZY1","location":{"x":-37400000000000000000,"y":-2160000000000000000,"z":-28100000000000000000}},"30020221":{"solarSystemId":30020221,"solarSystemName":"D.601.DV1","location":{"x":-37100000000000000000,"y":-1850000000000000000,"z":-27800000000000000000}},"30020222":{"solarSystemId":30020222,"solarSystemName":"N.F01.C62","location":{"x":-37700000000000000000,"y":-2540000000000000000,"z":-27700000000000000000}},"30020223":{"solarSystemId":30020223,"solarSystemName":"S.WJE.661","location":{"x":-36700000000000000000,"y":-1380000000000000000,"z":-26900000000000000000}},"30020224":{"solarSystemId":30020224,"solarSystemName":"G.T01.101","location":{"x":-37300000000000000000,"y":-1150000000000000000,"z":-28200000000000000000}},"30020225":{"solarSystemId":30020225,"solarSystemName":"C.201.E11","location":{"x":-37000000000000000000,"y":-1220000000000000000,"z":-28500000000000000000}},"30020226":{"solarSystemId":30020226,"solarSystemName":"N.FHK.R72","location":{"x":-35500000000000000000,"y":-2570000000000000000,"z":-29500000000000000000}},"30020227":{"solarSystemId":30020227,"solarSystemName":"D.24E.S73","location":{"x":-35900000000000000000,"y":-3720000000000000000,"z":-28000000000000000000}},"30020228":{"solarSystemId":30020228,"solarSystemName":"E.27W.WM1","location":{"x":-33700000000000000000,"y":-1800000000000000000,"z":-28500000000000000000}},"30020229":{"solarSystemId":30020229,"solarSystemName":"C.001.P41","location":{"x":-36900000000000000000,"y":-1320000000000000000,"z":-30300000000000000000}},"30020230":{"solarSystemId":30020230,"solarSystemName":"M.ECK.CQX","location":{"x":-35200000000000000000,"y":-960000000000000000,"z":-30000000000000000000}},"30020231":{"solarSystemId":30020231,"solarSystemName":"M.NXE.FD1","location":{"x":-36700000000000000000,"y":-1720000000000000000,"z":-16400000000000000000}},"30020232":{"solarSystemId":30020232,"solarSystemName":"O.301.KR1","location":{"x":-37000000000000000000,"y":-1660000000000000000,"z":-16700000000000000000}},"30020233":{"solarSystemId":30020233,"solarSystemName":"C.BWE.641","location":{"x":-36800000000000000000,"y":-1300000000000000000,"z":-15900000000000000000}},"30020234":{"solarSystemId":30020234,"solarSystemName":"O.1YE.3R1","location":{"x":-36700000000000000000,"y":-1620000000000000000,"z":-15800000000000000000}},"30020235":{"solarSystemId":30020235,"solarSystemName":"C.JTE.SN1","location":{"x":-36200000000000000000,"y":-1600000000000000000,"z":-16200000000000000000}},"30020236":{"solarSystemId":30020236,"solarSystemName":"B.7JE.QL1","location":{"x":-36600000000000000000,"y":-1680000000000000000,"z":-15900000000000000000}},"30020237":{"solarSystemId":30020237,"solarSystemName":"C.601.0C1","location":{"x":-37100000000000000000,"y":-1730000000000000000,"z":-15400000000000000000}},"30020238":{"solarSystemId":30020238,"solarSystemName":"C.SWE.JS1","location":{"x":-36800000000000000000,"y":-1540000000000000000,"z":-15200000000000000000}},"30020239":{"solarSystemId":30020239,"solarSystemName":"S.H21.9K1","location":{"x":-40100000000000000000,"y":-2240000000000000000,"z":-20900000000000000000}},"30020240":{"solarSystemId":30020240,"solarSystemName":"D.P01.451","location":{"x":-37600000000000000000,"y":-1340000000000000000,"z":-21400000000000000000}},"30020241":{"solarSystemId":30020241,"solarSystemName":"D.M11.EXY","location":{"x":-38700000000000000000,"y":-1000000000000000000,"z":-22700000000000000000}},"30020242":{"solarSystemId":30020242,"solarSystemName":"D.GDE.8R1","location":{"x":-36300000000000000000,"y":-1630000000000000000,"z":-23700000000000000000}},"30020243":{"solarSystemId":30020243,"solarSystemName":"S.621.KH2","location":{"x":-39400000000000000000,"y":-3210000000000000000,"z":-22300000000000000000}},"30020244":{"solarSystemId":30020244,"solarSystemName":"B.701.871","location":{"x":-37200000000000000000,"y":-1420000000000000000,"z":-20900000000000000000}},"30020245":{"solarSystemId":30020245,"solarSystemName":"H.L21.981","location":{"x":-39700000000000000000,"y":-1450000000000000000,"z":-17500000000000000000}},"30020246":{"solarSystemId":30020246,"solarSystemName":"U.221.4C2","location":{"x":-39300000000000000000,"y":-2890000000000000000,"z":-15800000000000000000}},"30020247":{"solarSystemId":30020247,"solarSystemName":"C.V11.ND1","location":{"x":-38700000000000000000,"y":-1710000000000000000,"z":-17600000000000000000}},"30020248":{"solarSystemId":30020248,"solarSystemName":"M.721.372","location":{"x":-39500000000000000000,"y":-2560000000000000000,"z":-18300000000000000000}},"30020249":{"solarSystemId":30020249,"solarSystemName":"C.M11.3L1","location":{"x":-38700000000000000000,"y":-1660000000000000000,"z":-16400000000000000000}},"30020250":{"solarSystemId":30020250,"solarSystemName":"C.P11.911","location":{"x":-38700000000000000000,"y":-1200000000000000000,"z":-18400000000000000000}},"30020251":{"solarSystemId":30020251,"solarSystemName":"M.B11.ZQ1","location":{"x":-38900000000000000000,"y":-1910000000000000000,"z":-16300000000000000000}},"30020252":{"solarSystemId":30020252,"solarSystemName":"U.Y01.3S2","location":{"x":-37900000000000000000,"y":-2670000000000000000,"z":-19000000000000000000}},"30020253":{"solarSystemId":30020253,"solarSystemName":"M.531.102","location":{"x":-40600000000000000000,"y":-2310000000000000000,"z":-17800000000000000000}},"30020254":{"solarSystemId":30020254,"solarSystemName":"B.W11.391","location":{"x":-39100000000000000000,"y":-1480000000000000000,"z":-19000000000000000000}},"30020255":{"solarSystemId":30020255,"solarSystemName":"M.K01.0LK","location":{"x":-38000000000000000000,"y":-1100000000000000000,"z":-19100000000000000000}},"30020256":{"solarSystemId":30020256,"solarSystemName":"M.D21.Q8G","location":{"x":-39800000000000000000,"y":-838000000000000000,"z":-18800000000000000000}},"30020257":{"solarSystemId":30020257,"solarSystemName":"M.V21.7TH","location":{"x":-39900000000000000000,"y":-877000000000000000,"z":-19100000000000000000}},"30020258":{"solarSystemId":30020258,"solarSystemName":"M.E21.PE1","location":{"x":-40300000000000000000,"y":-2290000000000000000,"z":-18500000000000000000}},"30020259":{"solarSystemId":30020259,"solarSystemName":"R.RSK.TTY","location":{"x":-35000000000000000000,"y":-986000000000000000,"z":-20600000000000000000}},"30020260":{"solarSystemId":30020260,"solarSystemName":"M.8MK.CW1","location":{"x":-35200000000000000000,"y":-2220000000000000000,"z":-17700000000000000000}},"30020261":{"solarSystemId":30020261,"solarSystemName":"M.FMK.RD1","location":{"x":-35200000000000000000,"y":-1710000000000000000,"z":-18600000000000000000}},"30020262":{"solarSystemId":30020262,"solarSystemName":"B.6RE.QR1","location":{"x":-36200000000000000000,"y":-1640000000000000000,"z":-19600000000000000000}},"30020263":{"solarSystemId":30020263,"solarSystemName":"C.N01.Z11","location":{"x":-37300000000000000000,"y":-1220000000000000000,"z":-18500000000000000000}},"30020264":{"solarSystemId":30020264,"solarSystemName":"O.B1E.9S1","location":{"x":-35800000000000000000,"y":-1520000000000000000,"z":-19100000000000000000}},"30020265":{"solarSystemId":30020265,"solarSystemName":"C.RRE.4V1","location":{"x":-36200000000000000000,"y":-1840000000000000000,"z":-19700000000000000000}},"30020266":{"solarSystemId":30020266,"solarSystemName":"D.611.DC1","location":{"x":-38300000000000000000,"y":-1750000000000000000,"z":-17400000000000000000}},"30020267":{"solarSystemId":30020267,"solarSystemName":"C.611.HV1","location":{"x":-38300000000000000000,"y":-1860000000000000000,"z":-17600000000000000000}},"30020268":{"solarSystemId":30020268,"solarSystemName":"M.911.2R1","location":{"x":-38400000000000000000,"y":-1620000000000000000,"z":-17500000000000000000}},"30020269":{"solarSystemId":30020269,"solarSystemName":"O.Z01.QS1","location":{"x":-37900000000000000000,"y":-1540000000000000000,"z":-17300000000000000000}},"30020270":{"solarSystemId":30020270,"solarSystemName":"C.N11.191","location":{"x":-38500000000000000000,"y":-1480000000000000000,"z":-17500000000000000000}},"30020271":{"solarSystemId":30020271,"solarSystemName":"C.M01.CT1","location":{"x":-37500000000000000000,"y":-1570000000000000000,"z":-16900000000000000000}},"30020272":{"solarSystemId":30020272,"solarSystemName":"C.M01.RS1","location":{"x":-37500000000000000000,"y":-1530000000000000000,"z":-17200000000000000000}},"30020273":{"solarSystemId":30020273,"solarSystemName":"N.031.SQ1","location":{"x":-40400000000000000000,"y":-1890000000000000000,"z":-21600000000000000000}},"30020274":{"solarSystemId":30020274,"solarSystemName":"A.241.Y1X","location":{"x":-41600000000000000000,"y":-939000000000000000,"z":-20200000000000000000}},"30020275":{"solarSystemId":30020275,"solarSystemName":"T.H31.KC1","location":{"x":-41200000000000000000,"y":-1760000000000000000,"z":-21000000000000000000}},"30020276":{"solarSystemId":30020276,"solarSystemName":"O.C21.BT1","location":{"x":-39800000000000000000,"y":-1570000000000000000,"z":-21200000000000000000}},"30020277":{"solarSystemId":30020277,"solarSystemName":"M.331.Q0G","location":{"x":-40500000000000000000,"y":-829000000000000000,"z":-20800000000000000000}},"30020278":{"solarSystemId":30020278,"solarSystemName":"M.C31.VFF","location":{"x":-41000000000000000000,"y":-781000000000000000,"z":-19800000000000000000}},"30020279":{"solarSystemId":30020279,"solarSystemName":"A.V01.J32","location":{"x":-37600000000000000000,"y":-2440000000000000000,"z":-14500000000000000000}},"30020280":{"solarSystemId":30020280,"solarSystemName":"B.Z01.G4F","location":{"x":-37900000000000000000,"y":-762000000000000000,"z":-16400000000000000000}},"30020281":{"solarSystemId":30020281,"solarSystemName":"M.701.P51","location":{"x":-37200000000000000000,"y":-1350000000000000000,"z":-14300000000000000000}},"30020282":{"solarSystemId":30020282,"solarSystemName":"M.Q11.7KK","location":{"x":-38800000000000000000,"y":-1110000000000000000,"z":-16100000000000000000}},"30020283":{"solarSystemId":30020283,"solarSystemName":"M.011.WDQ","location":{"x":-38100000000000000000,"y":-739000000000000000,"z":-14700000000000000000}},"30020284":{"solarSystemId":30020284,"solarSystemName":"M.611.JT1","location":{"x":-38300000000000000000,"y":-1580000000000000000,"z":-15200000000000000000}},"30020285":{"solarSystemId":30020285,"solarSystemName":"O.M21.781","location":{"x":-39800000000000000000,"y":-1450000000000000000,"z":-14800000000000000000}},"30020286":{"solarSystemId":30020286,"solarSystemName":"O.M01.Q51","location":{"x":-37500000000000000000,"y":-1360000000000000000,"z":-15700000000000000000}},"30020287":{"solarSystemId":30020287,"solarSystemName":"I2T-CH8","location":{"x":-35300000000000000000,"y":-1350000000000000000,"z":-34500000000000000000}},"30020288":{"solarSystemId":30020288,"solarSystemName":"OD4-9H8","location":{"x":-34700000000000000000,"y":-520000000000000000,"z":-34900000000000000000}},"30020289":{"solarSystemId":30020289,"solarSystemName":"UCG-2H8","location":{"x":-34800000000000000000,"y":-1180000000000000000,"z":-34500000000000000000}},"30020290":{"solarSystemId":30020290,"solarSystemName":"OM8-0H8","location":{"x":-34200000000000000000,"y":-909000000000000000,"z":-34900000000000000000}},"30020291":{"solarSystemId":30020291,"solarSystemName":"EJ6-0G8","location":{"x":-34300000000000000000,"y":-587000000000000000,"z":-33800000000000000000}},"30020292":{"solarSystemId":30020292,"solarSystemName":"OGP-PG8","location":{"x":-32900000000000000000,"y":-2070000000000000000,"z":-35700000000000000000}},"30020293":{"solarSystemId":30020293,"solarSystemName":"U08-KF8","location":{"x":-32900000000000000000,"y":-586000000000000000,"z":-34600000000000000000}},"30020294":{"solarSystemId":30020294,"solarSystemName":"EKR-6G8","location":{"x":-33100000000000000000,"y":-1030000000000000000,"z":-35000000000000000000}},"30020295":{"solarSystemId":30020295,"solarSystemName":"IMS-9G8","location":{"x":-33400000000000000000,"y":-574000000000000000,"z":-35000000000000000000}},"30020296":{"solarSystemId":30020296,"solarSystemName":"I0S-NF8","location":{"x":-33000000000000000000,"y":-823000000000000000,"z":-34700000000000000000}},"30020297":{"solarSystemId":30020297,"solarSystemName":"ETQ-2D8","location":{"x":-33100000000000000000,"y":-1120000000000000000,"z":-32900000000000000000}},"30020298":{"solarSystemId":30020298,"solarSystemName":"EHQ-9F8","location":{"x":-33400000000000000000,"y":-651000000000000000,"z":-33900000000000000000}},"30020299":{"solarSystemId":30020299,"solarSystemName":"IRB-SD8","location":{"x":-33500000000000000000,"y":-938000000000000000,"z":-33300000000000000000}},"30020300":{"solarSystemId":30020300,"solarSystemName":"OTQ-RD8","location":{"x":-33200000000000000000,"y":-986000000000000000,"z":-33600000000000000000}},"30020301":{"solarSystemId":30020301,"solarSystemName":"IS5-CF8","location":{"x":-33300000000000000000,"y":-1050000000000000000,"z":-34000000000000000000}},"30020302":{"solarSystemId":30020302,"solarSystemName":"IB3-3D8","location":{"x":-32500000000000000000,"y":-709000000000000000,"z":-33400000000000000000}},"30020303":{"solarSystemId":30020303,"solarSystemName":"ON3-CD8","location":{"x":-32600000000000000000,"y":-876000000000000000,"z":-33700000000000000000}},"30020304":{"solarSystemId":30020304,"solarSystemName":"EMS-3H8","location":{"x":-36500000000000000000,"y":-992000000000000000,"z":-33000000000000000000}},"30020305":{"solarSystemId":30020305,"solarSystemName":"O8L-LF8","location":{"x":-34200000000000000000,"y":-1250000000000000000,"z":-33600000000000000000}},"30020306":{"solarSystemId":30020306,"solarSystemName":"URV-PF8","location":{"x":-34300000000000000000,"y":-895000000000000000,"z":-33600000000000000000}},"30020307":{"solarSystemId":30020307,"solarSystemName":"EPG-BH8","location":{"x":-32900000000000000000,"y":-686000000000000000,"z":-36400000000000000000}},"30020308":{"solarSystemId":30020308,"solarSystemName":"ELR-HJ8","location":{"x":-34000000000000000000,"y":-1170000000000000000,"z":-36800000000000000000}},"30020309":{"solarSystemId":30020309,"solarSystemName":"O08-VH8","location":{"x":-32800000000000000000,"y":-1030000000000000000,"z":-37100000000000000000}},"30020310":{"solarSystemId":30020310,"solarSystemName":"E9F-GJ8","location":{"x":-33100000000000000000,"y":-836000000000000000,"z":-37500000000000000000}},"30020311":{"solarSystemId":30020311,"solarSystemName":"I71-6G8","location":{"x":-32300000000000000000,"y":-716000000000000000,"z":-35700000000000000000}},"30020312":{"solarSystemId":30020312,"solarSystemName":"O45-M98","location":{"x":-31900000000000000000,"y":-1010000000000000000,"z":-31400000000000000000}},"30020313":{"solarSystemId":30020313,"solarSystemName":"ODH-2D8","location":{"x":-32700000000000000000,"y":-1000000000000000000,"z":-33200000000000000000}},"30020314":{"solarSystemId":30020314,"solarSystemName":"ELS-DB8","location":{"x":-31300000000000000000,"y":-1300000000000000000,"z":-32700000000000000000}},"30020315":{"solarSystemId":30020315,"solarSystemName":"Nomos","location":{"x":-31500000000000000000,"y":-631000000000000000,"z":-33800000000000000000}},"30020316":{"solarSystemId":30020316,"solarSystemName":"I3H-PC8","location":{"x":-32700000000000000000,"y":-1090000000000000000,"z":-32900000000000000000}},"30020317":{"solarSystemId":30020317,"solarSystemName":"E29-NF8","location":{"x":-33500000000000000000,"y":-920000000000000000,"z":-34300000000000000000}},"30020318":{"solarSystemId":30020318,"solarSystemName":"I5J-6G8","location":{"x":-33300000000000000000,"y":-923000000000000000,"z":-34900000000000000000}},"30020319":{"solarSystemId":30020319,"solarSystemName":"AFB-4G8","location":{"x":-33500000000000000000,"y":-979000000000000000,"z":-34500000000000000000}},"30020320":{"solarSystemId":30020320,"solarSystemName":"UPT-LF8","location":{"x":-33400000000000000000,"y":-1080000000000000000,"z":-34300000000000000000}},"30020321":{"solarSystemId":30020321,"solarSystemName":"UFV-FF8","location":{"x":-33400000000000000000,"y":-999000000000000000,"z":-34000000000000000000}},"30020322":{"solarSystemId":30020322,"solarSystemName":"M:2741","location":{"x":-24300000000000000000,"y":3270000000000000000,"z":-10700000000000000000}},"30020323":{"solarSystemId":30020323,"solarSystemName":"P:24VO","location":{"x":-25300000000000000000,"y":4080000000000000000,"z":-9960000000000000000}},"30020324":{"solarSystemId":30020324,"solarSystemName":"Z:30N5","location":{"x":-21800000000000000000,"y":5250000000000000000,"z":-12900000000000000000}},"30020325":{"solarSystemId":30020325,"solarSystemName":"F:13R9","location":{"x":-22700000000000000000,"y":1590000000000000000,"z":-13600000000000000000}},"30020326":{"solarSystemId":30020326,"solarSystemName":"H:LTE9","location":{"x":-24700000000000000000,"y":5070000000000000000,"z":-13400000000000000000}},"30020327":{"solarSystemId":30020327,"solarSystemName":"D:16IA","location":{"x":-23100000000000000000,"y":4240000000000000000,"z":-12700000000000000000}},"30020328":{"solarSystemId":30020328,"solarSystemName":"G:E905","location":{"x":-24900000000000000000,"y":-722000000000000000,"z":-10700000000000000000}},"30020329":{"solarSystemId":30020329,"solarSystemName":"H:204K","location":{"x":-24900000000000000000,"y":-1140000000000000000,"z":-11200000000000000000}},"30020330":{"solarSystemId":30020330,"solarSystemName":"Z:8T57","location":{"x":-24700000000000000000,"y":-1330000000000000000,"z":-11100000000000000000}},"30020331":{"solarSystemId":30020331,"solarSystemName":"G:12O4","location":{"x":-25000000000000000000,"y":-1030000000000000000,"z":-11300000000000000000}},"30020332":{"solarSystemId":30020332,"solarSystemName":"D:16IK","location":{"x":-24500000000000000000,"y":-1180000000000000000,"z":-11500000000000000000}},"30020333":{"solarSystemId":30020333,"solarSystemName":"F:464O","location":{"x":-24600000000000000000,"y":-1430000000000000000,"z":-12100000000000000000}},"30020334":{"solarSystemId":30020334,"solarSystemName":"H:1ES6","location":{"x":-25400000000000000000,"y":-865000000000000000,"z":-11600000000000000000}},"30020335":{"solarSystemId":30020335,"solarSystemName":"M:2OSV","location":{"x":-25100000000000000000,"y":-1160000000000000000,"z":-10800000000000000000}},"30020336":{"solarSystemId":30020336,"solarSystemName":"G:3LSS","location":{"x":-24800000000000000000,"y":-1790000000000000000,"z":-10900000000000000000}},"30020337":{"solarSystemId":30020337,"solarSystemName":"B:28T7","location":{"x":-25100000000000000000,"y":-1170000000000000000,"z":-10700000000000000000}},"30020338":{"solarSystemId":30020338,"solarSystemName":"G:NNI6","location":{"x":-25100000000000000000,"y":-576000000000000000,"z":-11500000000000000000}},"30020339":{"solarSystemId":30020339,"solarSystemName":"Q:2A85","location":{"x":-24500000000000000000,"y":-912000000000000000,"z":-11700000000000000000}},"30020340":{"solarSystemId":30020340,"solarSystemName":"J:12S1","location":{"x":-25800000000000000000,"y":-806000000000000000,"z":-11000000000000000000}},"30020341":{"solarSystemId":30020341,"solarSystemName":"U:34N2","location":{"x":-25100000000000000000,"y":-1110000000000000000,"z":-11700000000000000000}},"30020342":{"solarSystemId":30020342,"solarSystemName":"F:NOVV","location":{"x":-29200000000000000000,"y":-1530000000000000000,"z":-10500000000000000000}},"30020343":{"solarSystemId":30020343,"solarSystemName":"F:34EN","location":{"x":-28500000000000000000,"y":-1620000000000000000,"z":-9930000000000000000}},"30020344":{"solarSystemId":30020344,"solarSystemName":"D:T20A","location":{"x":-28600000000000000000,"y":-1220000000000000000,"z":-11300000000000000000}},"30020345":{"solarSystemId":30020345,"solarSystemName":"B:ISAA","location":{"x":-28900000000000000000,"y":-2310000000000000000,"z":-10800000000000000000}},"30020346":{"solarSystemId":30020346,"solarSystemName":"J:1IS7","location":{"x":-29300000000000000000,"y":-816000000000000000,"z":-11100000000000000000}},"30020347":{"solarSystemId":30020347,"solarSystemName":"Y:K0L4","location":{"x":-28900000000000000000,"y":-1550000000000000000,"z":-10000000000000000000}},"30020348":{"solarSystemId":30020348,"solarSystemName":"U:1L22","location":{"x":-29200000000000000000,"y":-1290000000000000000,"z":-10400000000000000000}},"30020349":{"solarSystemId":30020349,"solarSystemName":"F:1OSS","location":{"x":-28900000000000000000,"y":-1690000000000000000,"z":-10500000000000000000}},"30020350":{"solarSystemId":30020350,"solarSystemName":"F:16E5","location":{"x":-29300000000000000000,"y":-1470000000000000000,"z":-10400000000000000000}},"30020351":{"solarSystemId":30020351,"solarSystemName":"P:12OO","location":{"x":-29200000000000000000,"y":-1070000000000000000,"z":-10100000000000000000}},"30020352":{"solarSystemId":30020352,"solarSystemName":"Q:4VI8","location":{"x":-29700000000000000000,"y":-1600000000000000000,"z":-10600000000000000000}},"30020353":{"solarSystemId":30020353,"solarSystemName":"B:40TR","location":{"x":-29200000000000000000,"y":-1060000000000000000,"z":-11000000000000000000}},"30020354":{"solarSystemId":30020354,"solarSystemName":"D:2629","location":{"x":-28600000000000000000,"y":-2370000000000000000,"z":-11400000000000000000}},"30020355":{"solarSystemId":30020355,"solarSystemName":"Y:26NO","location":{"x":-28700000000000000000,"y":-1680000000000000000,"z":-10600000000000000000}},"30020356":{"solarSystemId":30020356,"solarSystemName":"Y:3RN2","location":{"x":-28900000000000000000,"y":-1420000000000000000,"z":-12200000000000000000}},"30020357":{"solarSystemId":30020357,"solarSystemName":"U:287K","location":{"x":-28400000000000000000,"y":-1340000000000000000,"z":-11700000000000000000}},"30020358":{"solarSystemId":30020358,"solarSystemName":"B:KI27","location":{"x":-28400000000000000000,"y":34700000000000000,"z":-10400000000000000000}},"30020359":{"solarSystemId":30020359,"solarSystemName":"Q:LA03","location":{"x":-28800000000000000000,"y":-1020000000000000000,"z":-12200000000000000000}},"30020360":{"solarSystemId":30020360,"solarSystemName":"F:1I53","location":{"x":-27600000000000000000,"y":322000000000000000,"z":-11200000000000000000}},"30020361":{"solarSystemId":30020361,"solarSystemName":"M:7669","location":{"x":-27600000000000000000,"y":265000000000000000,"z":-11500000000000000000}},"30020362":{"solarSystemId":30020362,"solarSystemName":"B:49O3","location":{"x":-27700000000000000000,"y":-44100000000000000,"z":-10500000000000000000}},"30020363":{"solarSystemId":30020363,"solarSystemName":"U:1I28","location":{"x":-27900000000000000000,"y":-1640000000000000000,"z":-11700000000000000000}},"30020364":{"solarSystemId":30020364,"solarSystemName":"Q:22LL","location":{"x":-28800000000000000000,"y":-1390000000000000000,"z":-12300000000000000000}},"30020365":{"solarSystemId":30020365,"solarSystemName":"B:1NTK","location":{"x":-27400000000000000000,"y":-422000000000000000,"z":-11600000000000000000}},"30020366":{"solarSystemId":30020366,"solarSystemName":"G:2381","location":{"x":-28500000000000000000,"y":722000000000000000,"z":-10500000000000000000}},"30020367":{"solarSystemId":30020367,"solarSystemName":"B:1V75","location":{"x":-28200000000000000000,"y":4460000000000000,"z":-11800000000000000000}},"30020368":{"solarSystemId":30020368,"solarSystemName":"Q:2VLO","location":{"x":-28600000000000000000,"y":-255000000000000000,"z":-10700000000000000000}},"30020369":{"solarSystemId":30020369,"solarSystemName":"G:1E07","location":{"x":-27200000000000000000,"y":27700000000000000,"z":-10100000000000000000}},"30020370":{"solarSystemId":30020370,"solarSystemName":"H:1L50","location":{"x":-28600000000000000000,"y":415000000000000000,"z":-11600000000000000000}},"30020371":{"solarSystemId":30020371,"solarSystemName":"F:RIN8","location":{"x":-27700000000000000000,"y":-910000000000000000,"z":-11700000000000000000}},"30020372":{"solarSystemId":30020372,"solarSystemName":"G:1OVS","location":{"x":-26400000000000000000,"y":1990000000000000000,"z":-11700000000000000000}},"30020373":{"solarSystemId":30020373,"solarSystemName":"U:324R","location":{"x":-28000000000000000000,"y":1850000000000000000,"z":-12300000000000000000}},"30020374":{"solarSystemId":30020374,"solarSystemName":"Z:2K2S","location":{"x":-26100000000000000000,"y":624000000000000000,"z":-12900000000000000000}},"30020375":{"solarSystemId":30020375,"solarSystemName":"Q:3O25","location":{"x":-25900000000000000000,"y":310000000000000000,"z":-10800000000000000000}},"30020376":{"solarSystemId":30020376,"solarSystemName":"G:10R1","location":{"x":-26800000000000000000,"y":195000000000000000,"z":-11000000000000000000}},"30020377":{"solarSystemId":30020377,"solarSystemName":"H:LK2R","location":{"x":-25400000000000000000,"y":901000000000000000,"z":-12500000000000000000}},"30020378":{"solarSystemId":30020378,"solarSystemName":"Y:RLK1","location":{"x":-26500000000000000000,"y":1010000000000000000,"z":-12100000000000000000}},"30020379":{"solarSystemId":30020379,"solarSystemName":"G:17A6","location":{"x":-26000000000000000000,"y":741000000000000000,"z":-10100000000000000000}},"30020380":{"solarSystemId":30020380,"solarSystemName":"M:25SR","location":{"x":-25800000000000000000,"y":440000000000000000,"z":-11700000000000000000}},"30020381":{"solarSystemId":30020381,"solarSystemName":"Z:25AI","location":{"x":-25300000000000000000,"y":910000000000000000,"z":-11900000000000000000}},"30020382":{"solarSystemId":30020382,"solarSystemName":"Y:1K1A","location":{"x":-26800000000000000000,"y":359000000000000000,"z":-10300000000000000000}},"30020383":{"solarSystemId":30020383,"solarSystemName":"M:2IEE","location":{"x":-25900000000000000000,"y":472000000000000000,"z":-12000000000000000000}},"30020384":{"solarSystemId":30020384,"solarSystemName":"D:ASS5","location":{"x":-26200000000000000000,"y":109000000000000000,"z":-12000000000000000000}},"30020385":{"solarSystemId":30020385,"solarSystemName":"Z:31VE","location":{"x":-25700000000000000000,"y":2150000000000000000,"z":-13700000000000000000}},"30020386":{"solarSystemId":30020386,"solarSystemName":"Z:2N15","location":{"x":-23400000000000000000,"y":847000000000000000,"z":-14400000000000000000}},"30020387":{"solarSystemId":30020387,"solarSystemName":"J:120R","location":{"x":-23100000000000000000,"y":1330000000000000000,"z":-14400000000000000000}},"30020388":{"solarSystemId":30020388,"solarSystemName":"Q:2V4O","location":{"x":-24200000000000000000,"y":1550000000000000000,"z":-14900000000000000000}},"30020389":{"solarSystemId":30020389,"solarSystemName":"M:3085","location":{"x":-23500000000000000000,"y":601000000000000000,"z":-14500000000000000000}},"30020390":{"solarSystemId":30020390,"solarSystemName":"P:1SAK","location":{"x":-24600000000000000000,"y":1230000000000000000,"z":-12500000000000000000}},"30020391":{"solarSystemId":30020391,"solarSystemName":"Q:1AA5","location":{"x":-23100000000000000000,"y":1460000000000000000,"z":-13800000000000000000}},"30020392":{"solarSystemId":30020392,"solarSystemName":"P:20L4","location":{"x":-24800000000000000000,"y":1590000000000000000,"z":-14100000000000000000}},"30020393":{"solarSystemId":30020393,"solarSystemName":"H:1I46","location":{"x":-26300000000000000000,"y":1690000000000000000,"z":-13700000000000000000}},"30020394":{"solarSystemId":30020394,"solarSystemName":"F:1IAN","location":{"x":-24700000000000000000,"y":1810000000000000000,"z":-13600000000000000000}},"30020395":{"solarSystemId":30020395,"solarSystemName":"D:1L7V","location":{"x":-27800000000000000000,"y":-1130000000000000000,"z":-9820000000000000000}},"30020396":{"solarSystemId":30020396,"solarSystemName":"P:1V03","location":{"x":-27600000000000000000,"y":-1430000000000000000,"z":-10500000000000000000}},"30020397":{"solarSystemId":30020397,"solarSystemName":"P:NI29","location":{"x":-27500000000000000000,"y":-1390000000000000000,"z":-9040000000000000000}},"30020398":{"solarSystemId":30020398,"solarSystemName":"J:EVE8","location":{"x":-27800000000000000000,"y":-796000000000000000,"z":-9380000000000000000}},"30020399":{"solarSystemId":30020399,"solarSystemName":"D:K35E","location":{"x":-28100000000000000000,"y":-1440000000000000000,"z":-9220000000000000000}},"30020400":{"solarSystemId":30020400,"solarSystemName":"Y:3E8O","location":{"x":-27400000000000000000,"y":-1360000000000000000,"z":-9170000000000000000}},"30020401":{"solarSystemId":30020401,"solarSystemName":"Z:23V7","location":{"x":-28100000000000000000,"y":-1280000000000000000,"z":-8990000000000000000}},"30020402":{"solarSystemId":30020402,"solarSystemName":"H:OR6R","location":{"x":-27800000000000000000,"y":-1280000000000000000,"z":-9680000000000000000}},"30020403":{"solarSystemId":30020403,"solarSystemName":"J:I7LS","location":{"x":-27300000000000000000,"y":-1550000000000000000,"z":-10600000000000000000}},"30020404":{"solarSystemId":30020404,"solarSystemName":"M:1V9E","location":{"x":-27500000000000000000,"y":-1290000000000000000,"z":-9680000000000000000}},"30020405":{"solarSystemId":30020405,"solarSystemName":"G:1S93","location":{"x":-27500000000000000000,"y":-1380000000000000000,"z":-9760000000000000000}},"30020406":{"solarSystemId":30020406,"solarSystemName":"Z:3L3O","location":{"x":-27400000000000000000,"y":-486000000000000000,"z":-9120000000000000000}},"30020407":{"solarSystemId":30020407,"solarSystemName":"H:VII7","location":{"x":-27700000000000000000,"y":-1220000000000000000,"z":-10300000000000000000}},"30020408":{"solarSystemId":30020408,"solarSystemName":"P:27V8","location":{"x":-25800000000000000000,"y":-925000000000000000,"z":-12200000000000000000}},"30020409":{"solarSystemId":30020409,"solarSystemName":"U:1NA5","location":{"x":-25800000000000000000,"y":-836000000000000000,"z":-12200000000000000000}},"30020410":{"solarSystemId":30020410,"solarSystemName":"J:2O4T","location":{"x":-25800000000000000000,"y":-857000000000000000,"z":-11900000000000000000}},"30020411":{"solarSystemId":30020411,"solarSystemName":"M:ORS5","location":{"x":-25900000000000000000,"y":-1190000000000000000,"z":-12300000000000000000}},"30020412":{"solarSystemId":30020412,"solarSystemName":"Z:1AR8","location":{"x":-26900000000000000000,"y":-1470000000000000000,"z":-12600000000000000000}},"30020413":{"solarSystemId":30020413,"solarSystemName":"B:2ANR","location":{"x":-27100000000000000000,"y":-1210000000000000000,"z":-12300000000000000000}},"30020414":{"solarSystemId":30020414,"solarSystemName":"Q:1782","location":{"x":-25900000000000000000,"y":-882000000000000000,"z":-11700000000000000000}},"30020415":{"solarSystemId":30020415,"solarSystemName":"H:3R33","location":{"x":-26100000000000000000,"y":-1620000000000000000,"z":-11300000000000000000}},"30020416":{"solarSystemId":30020416,"solarSystemName":"J:3K58","location":{"x":-27300000000000000000,"y":-1380000000000000000,"z":-12200000000000000000}},"30020417":{"solarSystemId":30020417,"solarSystemName":"Y:1487","location":{"x":-25900000000000000000,"y":-1330000000000000000,"z":-11800000000000000000}},"30020418":{"solarSystemId":30020418,"solarSystemName":"Q:AS55","location":{"x":-26500000000000000000,"y":-1200000000000000000,"z":-11900000000000000000}},"30020419":{"solarSystemId":30020419,"solarSystemName":"Q:E8LR","location":{"x":-26500000000000000000,"y":-1250000000000000000,"z":-12100000000000000000}},"30020420":{"solarSystemId":30020420,"solarSystemName":"U.YZC.4PB","location":{"x":-19500000000000000000,"y":-813000000000000000,"z":-30800000000000000000}},"30020421":{"solarSystemId":30020421,"solarSystemName":"A.NJC.6HB","location":{"x":-19400000000000000000,"y":-820000000000000000,"z":-30700000000000000000}},"30020422":{"solarSystemId":30020422,"solarSystemName":"A.9XC.QW4","location":{"x":-19400000000000000000,"y":-177000000000000000,"z":-30900000000000000000}},"30020423":{"solarSystemId":30020423,"solarSystemName":"L.DCM.57B","location":{"x":-20200000000000000000,"y":-801000000000000000,"z":-31200000000000000000}},"30020424":{"solarSystemId":30020424,"solarSystemName":"H.66M.DKQ","location":{"x":-19800000000000000000,"y":-755000000000000000,"z":-31200000000000000000}},"30020425":{"solarSystemId":30020425,"solarSystemName":"U.N8M.YGB","location":{"x":-19900000000000000000,"y":-819000000000000000,"z":-30700000000000000000}},"30020426":{"solarSystemId":30020426,"solarSystemName":"A.JWV.DWX","location":{"x":-23000000000000000000,"y":-970000000000000000,"z":-31400000000000000000}},"30020427":{"solarSystemId":30020427,"solarSystemName":"E.KEV.P01","location":{"x":-23100000000000000000,"y":-1170000000000000000,"z":-31000000000000000000}},"30020428":{"solarSystemId":30020428,"solarSystemName":"I.6MV.KTY","location":{"x":-22500000000000000000,"y":-986000000000000000,"z":-32000000000000000000}},"30020429":{"solarSystemId":30020429,"solarSystemName":"E.Q2V.EHL","location":{"x":-22000000000000000000,"y":-533000000000000000,"z":-32600000000000000000}},"30020430":{"solarSystemId":30020430,"solarSystemName":"U.3JP.CLH","location":{"x":-21700000000000000000,"y":-881000000000000000,"z":-32300000000000000000}},"30020431":{"solarSystemId":30020431,"solarSystemName":"D.E6Q.521","location":{"x":-23300000000000000000,"y":-1230000000000000000,"z":-32000000000000000000}},"30020432":{"solarSystemId":30020432,"solarSystemName":"S.B2V.SXV","location":{"x":-22000000000000000000,"y":-714000000000000000,"z":-31900000000000000000}},"30020433":{"solarSystemId":30020433,"solarSystemName":"H.5NV.MTZ","location":{"x":-22300000000000000000,"y":-1020000000000000000,"z":-31400000000000000000}},"30020434":{"solarSystemId":30020434,"solarSystemName":"U.9FP.B5P","location":{"x":-21500000000000000000,"y":-655000000000000000,"z":-30600000000000000000}},"30020435":{"solarSystemId":30020435,"solarSystemName":"S.5FP.23Y","location":{"x":-21500000000000000000,"y":-976000000000000000,"z":-30900000000000000000}},"30020436":{"solarSystemId":30020436,"solarSystemName":"A.71V.S3F","location":{"x":-22000000000000000000,"y":-760000000000000000,"z":-30600000000000000000}},"30020437":{"solarSystemId":30020437,"solarSystemName":"M.PYP.Y2B","location":{"x":-21700000000000000000,"y":-796000000000000000,"z":-31300000000000000000}},"30020438":{"solarSystemId":30020438,"solarSystemName":"R.D1C.ZGT","location":{"x":-18500000000000000000,"y":-423000000000000000,"z":-33300000000000000000}},"30020439":{"solarSystemId":30020439,"solarSystemName":"R.LKC.CRT","location":{"x":-19500000000000000000,"y":-412000000000000000,"z":-33600000000000000000}},"30020440":{"solarSystemId":30020440,"solarSystemName":"R.QQC.87V","location":{"x":-19200000000000000000,"y":-693000000000000000,"z":-32900000000000000000}},"30020441":{"solarSystemId":30020441,"solarSystemName":"A.R5C.RGB","location":{"x":-18600000000000000000,"y":-819000000000000000,"z":-33200000000000000000}},"30020442":{"solarSystemId":30020442,"solarSystemName":"E.89C.KBV","location":{"x":-18800000000000000000,"y":-710000000000000000,"z":-32600000000000000000}},"30020443":{"solarSystemId":30020443,"solarSystemName":"N.P2C.951","location":{"x":-18500000000000000000,"y":-1340000000000000000,"z":-32500000000000000000}},"30020444":{"solarSystemId":30020444,"solarSystemName":"E.KGM.3HF","location":{"x":-20500000000000000000,"y":-784000000000000000,"z":-32800000000000000000}},"30020445":{"solarSystemId":30020445,"solarSystemName":"D.01P.LJB","location":{"x":-20800000000000000000,"y":-821000000000000000,"z":-33500000000000000000}},"30020446":{"solarSystemId":30020446,"solarSystemName":"R.B3P.YCJ","location":{"x":-20900000000000000000,"y":-920000000000000000,"z":-33200000000000000000}},"30020447":{"solarSystemId":30020447,"solarSystemName":"A.K1P.16G","location":{"x":-20800000000000000000,"y":-835000000000000000,"z":-32900000000000000000}},"30020448":{"solarSystemId":30020448,"solarSystemName":"A.1ZM.NEF","location":{"x":-20600000000000000000,"y":-792000000000000000,"z":-32700000000000000000}},"30020449":{"solarSystemId":30020449,"solarSystemName":"N.70Q.MPS","location":{"x":-23100000000000000000,"y":-381000000000000000,"z":-33500000000000000000}},"30020450":{"solarSystemId":30020450,"solarSystemName":"U.YGV.7DE","location":{"x":-22800000000000000000,"y":-1130000000000000000,"z":-33500000000000000000}},"30020451":{"solarSystemId":30020451,"solarSystemName":"I.5FV.L01","location":{"x":-22700000000000000000,"y":-1170000000000000000,"z":-35000000000000000000}},"30020452":{"solarSystemId":30020452,"solarSystemName":"N.DZP.JQR","location":{"x":-21800000000000000000,"y":-492000000000000000,"z":-32700000000000000000}},"30020453":{"solarSystemId":30020453,"solarSystemName":"D.JEV.24S","location":{"x":-23100000000000000000,"y":-365000000000000000,"z":-33900000000000000000}},"30020454":{"solarSystemId":30020454,"solarSystemName":"N.YRQ.0XF","location":{"x":-23600000000000000000,"y":-786000000000000000,"z":-34700000000000000000}},"30020455":{"solarSystemId":30020455,"solarSystemName":"M.3HQ.CNK","location":{"x":-23900000000000000000,"y":-1090000000000000000,"z":-34900000000000000000}},"30020456":{"solarSystemId":30020456,"solarSystemName":"T.XYM.1XB","location":{"x":-20600000000000000000,"y":-822000000000000000,"z":-32700000000000000000}},"30020457":{"solarSystemId":30020457,"solarSystemName":"I.DRP.WVV","location":{"x":-21200000000000000000,"y":-707000000000000000,"z":-32600000000000000000}},"30020458":{"solarSystemId":30020458,"solarSystemName":"S.JTM.7VB","location":{"x":-20000000000000000000,"y":-814000000000000000,"z":-32100000000000000000}},"30020459":{"solarSystemId":30020459,"solarSystemName":"N.XMM.VZD","location":{"x":-20200000000000000000,"y":-573000000000000000,"z":-32400000000000000000}},"30020460":{"solarSystemId":30020460,"solarSystemName":"N.FXM.7CY","location":{"x":-20600000000000000000,"y":-991000000000000000,"z":-32700000000000000000}},"30020461":{"solarSystemId":30020461,"solarSystemName":"D.JHM.Z6P","location":{"x":-20500000000000000000,"y":-656000000000000000,"z":-32700000000000000000}},"30020462":{"solarSystemId":30020462,"solarSystemName":"E.TBM.XXM","location":{"x":-20400000000000000000,"y":-643000000000000000,"z":-34600000000000000000}},"30020463":{"solarSystemId":30020463,"solarSystemName":"T.HDP.7SC","location":{"x":-21300000000000000000,"y":-588000000000000000,"z":-33600000000000000000}},"30020464":{"solarSystemId":30020464,"solarSystemName":"S.8BM.CGM","location":{"x":-20400000000000000000,"y":-639000000000000000,"z":-33800000000000000000}},"30020465":{"solarSystemId":30020465,"solarSystemName":"I.V5P.S2Z","location":{"x":-21000000000000000000,"y":-1010000000000000000,"z":-34500000000000000000}},"30020466":{"solarSystemId":30020466,"solarSystemName":"I.6RM.HPE","location":{"x":-20100000000000000000,"y":-1140000000000000000,"z":-33900000000000000000}},"30020467":{"solarSystemId":30020467,"solarSystemName":"N.6BP.T5Z","location":{"x":-21600000000000000000,"y":-1010000000000000000,"z":-28900000000000000000}},"30020468":{"solarSystemId":30020468,"solarSystemName":"L.YHV.LDF","location":{"x":-22800000000000000000,"y":-774000000000000000,"z":-28800000000000000000}},"30020469":{"solarSystemId":30020469,"solarSystemName":"D.JXV.W91","location":{"x":-22900000000000000000,"y":-1510000000000000000,"z":-29300000000000000000}},"30020470":{"solarSystemId":30020470,"solarSystemName":"I.JXP.EFV","location":{"x":-21700000000000000000,"y":-709000000000000000,"z":-28300000000000000000}},"30020471":{"solarSystemId":30020471,"solarSystemName":"I.8YP.9XB","location":{"x":-21700000000000000000,"y":-822000000000000000,"z":-30200000000000000000}},"30020472":{"solarSystemId":30020472,"solarSystemName":"O.EWP.87V","location":{"x":-21800000000000000000,"y":-693000000000000000,"z":-29800000000000000000}},"30020473":{"solarSystemId":30020473,"solarSystemName":"D.271.E9Q","location":{"x":-45100000000000000000,"y":-732000000000000000,"z":-5060000000000000000}},"30020474":{"solarSystemId":30020474,"solarSystemName":"N.861.8S3","location":{"x":-44100000000000000000,"y":-3830000000000000000,"z":-3500000000000000000}},"30020475":{"solarSystemId":30020475,"solarSystemName":"S.T61.EZ2","location":{"x":-44200000000000000000,"y":-3350000000000000000,"z":-3710000000000000000}},"30020476":{"solarSystemId":30020476,"solarSystemName":"A.W61.HWQ","location":{"x":-44900000000000000000,"y":-754000000000000000,"z":-5530000000000000000}},"30020477":{"solarSystemId":30020477,"solarSystemName":"M.G81.HMY","location":{"x":-47000000000000000000,"y":-993000000000000000,"z":-7720000000000000000}},"30020478":{"solarSystemId":30020478,"solarSystemName":"C.841.KJV","location":{"x":-41800000000000000000,"y":-714000000000000000,"z":-5320000000000000000}},"30020479":{"solarSystemId":30020479,"solarSystemName":"I.J71.1T2","location":{"x":-45900000000000000000,"y":-2700000000000000000,"z":79300000000000000}},"30020480":{"solarSystemId":30020480,"solarSystemName":"T.971.5X2","location":{"x":-45300000000000000000,"y":-3250000000000000000,"z":-267000000000000000}},"30020481":{"solarSystemId":30020481,"solarSystemName":"L.E81.SE1","location":{"x":-47300000000000000000,"y":-2280000000000000000,"z":-1260000000000000000}},"30020482":{"solarSystemId":30020482,"solarSystemName":"T.Y61.V24","location":{"x":-44800000000000000000,"y":-4710000000000000000,"z":-2370000000000000000}},"30020483":{"solarSystemId":30020483,"solarSystemName":"B.261.3L3","location":{"x":-43900000000000000000,"y":-3970000000000000000,"z":-1400000000000000000}},"30020484":{"solarSystemId":30020484,"solarSystemName":"I.F61.6H4","location":{"x":-44600000000000000000,"y":-5480000000000000000,"z":-1350000000000000000}},"30020485":{"solarSystemId":30020485,"solarSystemName":"L.H61.VC4","location":{"x":-44700000000000000000,"y":-5210000000000000000,"z":-2160000000000000000}},"30020486":{"solarSystemId":30020486,"solarSystemName":"T.W61.264","location":{"x":-44900000000000000000,"y":-4830000000000000000,"z":-1160000000000000000}},"30020487":{"solarSystemId":30020487,"solarSystemName":"H.571.B55","location":{"x":-45200000000000000000,"y":-5970000000000000000,"z":-1510000000000000000}},"30020488":{"solarSystemId":30020488,"solarSystemName":"D.371.PH4","location":{"x":-45100000000000000000,"y":-5500000000000000000,"z":-2290000000000000000}},"30020489":{"solarSystemId":30020489,"solarSystemName":"S.H81.MD3","location":{"x":-47000000000000000000,"y":-4020000000000000000,"z":-3490000000000000000}},"30020490":{"solarSystemId":30020490,"solarSystemName":"A.591.435","location":{"x":-47500000000000000000,"y":-5880000000000000000,"z":-3330000000000000000}},"30020491":{"solarSystemId":30020491,"solarSystemName":"U.V71.N84","location":{"x":-45600000000000000000,"y":-4910000000000000000,"z":-2450000000000000000}},"30020492":{"solarSystemId":30020492,"solarSystemName":"H.E71.SJ4","location":{"x":-46100000000000000000,"y":-5520000000000000000,"z":-2710000000000000000}},"30020493":{"solarSystemId":30020493,"solarSystemName":"S.781.K45","location":{"x":-46400000000000000000,"y":-5940000000000000000,"z":-4870000000000000000}},"30020494":{"solarSystemId":30020494,"solarSystemName":"R.861.QYC","location":{"x":-44100000000000000000,"y":-608000000000000000,"z":458000000000000000}},"30020495":{"solarSystemId":30020495,"solarSystemName":"N.B61.E03","location":{"x":-44600000000000000000,"y":-3490000000000000000,"z":-2620000000000000000}},"30020496":{"solarSystemId":30020496,"solarSystemName":"I.471.XRN","location":{"x":-45100000000000000000,"y":-448000000000000000,"z":-1650000000000000000}},"30020497":{"solarSystemId":30020497,"solarSystemName":"T.771.6XC","location":{"x":-45200000000000000000,"y":-606000000000000000,"z":-1080000000000000000}},"30020498":{"solarSystemId":30020498,"solarSystemName":"B.K71.B11","location":{"x":-46100000000000000000,"y":-1210000000000000000,"z":-2980000000000000000}},"30020499":{"solarSystemId":30020499,"solarSystemName":"O.X51.EXY","location":{"x":-43600000000000000000,"y":-1000000000000000000,"z":-1960000000000000000}},"30020500":{"solarSystemId":30020500,"solarSystemName":"T.J81.MZ2","location":{"x":-47000000000000000000,"y":-3330000000000000000,"z":-2160000000000000000}},"30020501":{"solarSystemId":30020501,"solarSystemName":"T.N81.HL3","location":{"x":-46600000000000000000,"y":-3990000000000000000,"z":-1620000000000000000}},"30020502":{"solarSystemId":30020502,"solarSystemName":"N.N71.R54","location":{"x":-45400000000000000000,"y":-4810000000000000000,"z":-2090000000000000000}},"30020503":{"solarSystemId":30020503,"solarSystemName":"U.J71.N84","location":{"x":-45900000000000000000,"y":-4910000000000000000,"z":-1920000000000000000}},"30020504":{"solarSystemId":30020504,"solarSystemName":"D.N91.VL3","location":{"x":-47700000000000000000,"y":-3990000000000000000,"z":-1810000000000000000}},"30020505":{"solarSystemId":30020505,"solarSystemName":"I.951.DZ2","location":{"x":-43000000000000000000,"y":-3330000000000000000,"z":-2420000000000000000}},"30020506":{"solarSystemId":30020506,"solarSystemName":"I.Q51.NFH","location":{"x":-43400000000000000000,"y":-889000000000000000,"z":739000000000000000}},"30020507":{"solarSystemId":30020507,"solarSystemName":"R.L51.QE1","location":{"x":-43200000000000000000,"y":-2290000000000000000,"z":-1700000000000000000}},"30020508":{"solarSystemId":30020508,"solarSystemName":"H.441.ZN2","location":{"x":-41700000000000000000,"y":-2770000000000000000,"z":-226000000000000000}},"30020509":{"solarSystemId":30020509,"solarSystemName":"L.G31.FC1","location":{"x":-41200000000000000000,"y":-1750000000000000000,"z":1620000000000000000}},"30020510":{"solarSystemId":30020510,"solarSystemName":"M.G51.EJH","location":{"x":-43500000000000000000,"y":-894000000000000000,"z":-805000000000000000}},"30020511":{"solarSystemId":30020511,"solarSystemName":"I.R81.1F5","location":{"x":-46600000000000000000,"y":-6520000000000000000,"z":-1440000000000000000}},"30020512":{"solarSystemId":30020512,"solarSystemName":"R.881.K85","location":{"x":-46400000000000000000,"y":-6090000000000000000,"z":-2530000000000000000}},"30020513":{"solarSystemId":30020513,"solarSystemName":"H.481.LW5","location":{"x":-46300000000000000000,"y":-6830000000000000000,"z":-1870000000000000000}},"30020514":{"solarSystemId":30020514,"solarSystemName":"D.W71.F45","location":{"x":-46000000000000000000,"y":-5930000000000000000,"z":-2310000000000000000}},"30020515":{"solarSystemId":30020515,"solarSystemName":"U.481.BS6","location":{"x":-46300000000000000000,"y":-7300000000000000000,"z":-1880000000000000000}},"30020516":{"solarSystemId":30020516,"solarSystemName":"I.T81.SP6","location":{"x":-46500000000000000000,"y":-7580000000000000000,"z":-4090000000000000000}},"30020517":{"solarSystemId":30020517,"solarSystemName":"T.981.YQ7","location":{"x":-46500000000000000000,"y":-8820000000000000000,"z":-3030000000000000000}},"30020518":{"solarSystemId":30020518,"solarSystemName":"H.R81.6Q7","location":{"x":-46600000000000000000,"y":-8800000000000000000,"z":-3970000000000000000}},"30020519":{"solarSystemId":30020519,"solarSystemName":"U.S81.WB5","location":{"x":-46500000000000000000,"y":-6590000000000000000,"z":-3870000000000000000}},"30020520":{"solarSystemId":30020520,"solarSystemName":"T.W61.955","location":{"x":-44900000000000000000,"y":-5950000000000000000,"z":-3140000000000000000}},"30020521":{"solarSystemId":30020521,"solarSystemName":"H.D71.2E4","location":{"x":-45500000000000000000,"y":-5730000000000000000,"z":-2340000000000000000}},"30020522":{"solarSystemId":30020522,"solarSystemName":"L.Y51.ZHN","location":{"x":-43700000000000000000,"y":-460000000000000000,"z":2680000000000000000}},"30020523":{"solarSystemId":30020523,"solarSystemName":"T.151.KJ6","location":{"x":-42700000000000000000,"y":-245000000000000000,"z":808000000000000000}},"30020524":{"solarSystemId":30020524,"solarSystemName":"A.N31.QC1","location":{"x":-40800000000000000000,"y":-54800000000000000,"z":831000000000000000}},"30020525":{"solarSystemId":30020525,"solarSystemName":"L.J51.J5V","location":{"x":-43600000000000000000,"y":-691000000000000000,"z":2230000000000000000}},"30020526":{"solarSystemId":30020526,"solarSystemName":"A.D61.FPS","location":{"x":-44400000000000000000,"y":-381000000000000000,"z":2020000000000000000}},"30020527":{"solarSystemId":30020527,"solarSystemName":"O.C41.SPC","location":{"x":-42100000000000000000,"y":-597000000000000000,"z":2860000000000000000}},"30020528":{"solarSystemId":30020528,"solarSystemName":"L.461.Q3L","location":{"x":-44000000000000000000,"y":-508000000000000000,"z":4300000000000000000}},"30020529":{"solarSystemId":30020529,"solarSystemName":"E.N91.CJK","location":{"x":-47700000000000000000,"y":-1110000000000000000,"z":5790000000000000000}},"30020530":{"solarSystemId":30020530,"solarSystemName":"T.Z61.H26","location":{"x":-44800000000000000000,"y":-219000000000000000,"z":2950000000000000000}},"30020531":{"solarSystemId":30020531,"solarSystemName":"B.691.R52","location":{"x":-47500000000000000000,"y":-2500000000000000000,"z":1720000000000000000}},"30020532":{"solarSystemId":30020532,"solarSystemName":"B.651.RNQ","location":{"x":-42900000000000000000,"y":-735000000000000000,"z":3490000000000000000}},"30020533":{"solarSystemId":30020533,"solarSystemName":"E.15X.901","location":{"x":-30200000000000000000,"y":-1160000000000000000,"z":-21700000000000000000}},"30020534":{"solarSystemId":30020534,"solarSystemName":"I.8CH.G21","location":{"x":-28300000000000000000,"y":-1250000000000000000,"z":-21500000000000000000}},"30020535":{"solarSystemId":30020535,"solarSystemName":"N.L1H.G1M","location":{"x":-27700000000000000000,"y":-614000000000000000,"z":-22200000000000000000}},"30020536":{"solarSystemId":30020536,"solarSystemName":"T.1WJ.7T1","location":{"x":-29900000000000000000,"y":-1560000000000000000,"z":-22100000000000000000}},"30020537":{"solarSystemId":30020537,"solarSystemName":"I.1SH.TKV","location":{"x":-28000000000000000000,"y":-719000000000000000,"z":-22000000000000000000}},"30020538":{"solarSystemId":30020538,"solarSystemName":"H.4VH.E51","location":{"x":-28400000000000000000,"y":-1370000000000000000,"z":-23300000000000000000}},"30020539":{"solarSystemId":30020539,"solarSystemName":"C.9FJ.Q81","location":{"x":-29600000000000000000,"y":-1460000000000000000,"z":-21500000000000000000}},"30020540":{"solarSystemId":30020540,"solarSystemName":"D.S4J.071","location":{"x":-29000000000000000000,"y":-1410000000000000000,"z":-19900000000000000000}},"30020541":{"solarSystemId":30020541,"solarSystemName":"R.4HG.FVQ","location":{"x":-27400000000000000000,"y":-743000000000000000,"z":-20000000000000000000}},"30020542":{"solarSystemId":30020542,"solarSystemName":"D.1BG.Q31","location":{"x":-27300000000000000000,"y":-1280000000000000000,"z":-19900000000000000000}},"30020543":{"solarSystemId":30020543,"solarSystemName":"D.M4X.431","location":{"x":-30100000000000000000,"y":-1270000000000000000,"z":-20800000000000000000}},"30020544":{"solarSystemId":30020544,"solarSystemName":"C.XNJ.0S1","location":{"x":-29300000000000000000,"y":-1510000000000000000,"z":-20700000000000000000}},"30020545":{"solarSystemId":30020545,"solarSystemName":"C.0WH.871","location":{"x":-28700000000000000000,"y":-1410000000000000000,"z":-21200000000000000000}},"30020546":{"solarSystemId":30020546,"solarSystemName":"O.7ZH.0L1","location":{"x":-28700000000000000000,"y":-1660000000000000000,"z":-18500000000000000000}},"30020547":{"solarSystemId":30020547,"solarSystemName":"M.GSH.1S1","location":{"x":-28100000000000000000,"y":-1520000000000000000,"z":-20500000000000000000}},"30020548":{"solarSystemId":30020548,"solarSystemName":"O.K6X.MS1","location":{"x":-30200000000000000000,"y":-1530000000000000000,"z":-18900000000000000000}},"30020549":{"solarSystemId":30020549,"solarSystemName":"S.JZX.FG1","location":{"x":-31000000000000000000,"y":-2010000000000000000,"z":-18700000000000000000}},"30020550":{"solarSystemId":30020550,"solarSystemName":"C.YXY.T51","location":{"x":-32100000000000000000,"y":-1350000000000000000,"z":-17300000000000000000}},"30020551":{"solarSystemId":30020551,"solarSystemName":"C.3PY.QZ1","location":{"x":-31800000000000000000,"y":-2180000000000000000,"z":-17600000000000000000}},"30020552":{"solarSystemId":30020552,"solarSystemName":"C.L3Y.9V1","location":{"x":-31300000000000000000,"y":-1850000000000000000,"z":-17600000000000000000}},"30020553":{"solarSystemId":30020553,"solarSystemName":"M.W2Y.G41","location":{"x":-31200000000000000000,"y":-1320000000000000000,"z":-18100000000000000000}},"30020554":{"solarSystemId":30020554,"solarSystemName":"C.M7X.L81","location":{"x":-30200000000000000000,"y":-1460000000000000000,"z":-17900000000000000000}},"30020555":{"solarSystemId":30020555,"solarSystemName":"M.B9Y.SJ1","location":{"x":-31500000000000000000,"y":-2070000000000000000,"z":-17400000000000000000}},"30020556":{"solarSystemId":30020556,"solarSystemName":"C.E5Y.K81","location":{"x":-31300000000000000000,"y":-1480000000000000000,"z":-17300000000000000000}},"30020557":{"solarSystemId":30020557,"solarSystemName":"S.8EG.SG2","location":{"x":-27600000000000000000,"y":-3150000000000000000,"z":-19300000000000000000}},"30020558":{"solarSystemId":30020558,"solarSystemName":"H.RJG.6P1","location":{"x":-27400000000000000000,"y":-1810000000000000000,"z":-18000000000000000000}},"30020559":{"solarSystemId":30020559,"solarSystemName":"H.LCG.G63","location":{"x":-27100000000000000000,"y":-3700000000000000000,"z":-18600000000000000000}},"30020560":{"solarSystemId":30020560,"solarSystemName":"I.B4G.RQ1","location":{"x":-26700000000000000000,"y":-1890000000000000000,"z":-18100000000000000000}},"30020561":{"solarSystemId":30020561,"solarSystemName":"S.TPG.SL1","location":{"x":-27200000000000000000,"y":-1670000000000000000,"z":-17900000000000000000}},"30020562":{"solarSystemId":30020562,"solarSystemName":"C.YDG.TB1","location":{"x":-27100000000000000000,"y":-1960000000000000000,"z":-18000000000000000000}},"30020563":{"solarSystemId":30020563,"solarSystemName":"H.7KH.HS4","location":{"x":-28800000000000000000,"y":-5000000000000000000,"z":-17800000000000000000}},"30020564":{"solarSystemId":30020564,"solarSystemName":"I.9DJ.224","location":{"x":-29400000000000000000,"y":-4690000000000000000,"z":-17600000000000000000}},"30020565":{"solarSystemId":30020565,"solarSystemName":"U.SSH.PD2","location":{"x":-28000000000000000000,"y":-2870000000000000000,"z":-15800000000000000000}},"30020566":{"solarSystemId":30020566,"solarSystemName":"B.VFJ.SZ2","location":{"x":-29600000000000000000,"y":-3330000000000000000,"z":-16800000000000000000}},"30020567":{"solarSystemId":30020567,"solarSystemName":"M.L7X.FE1","location":{"x":-30200000000000000000,"y":-2290000000000000000,"z":-16500000000000000000}},"30020568":{"solarSystemId":30020568,"solarSystemName":"T.R8B.BTB","location":{"x":-25700000000000000000,"y":-806000000000000000,"z":-22800000000000000000}},"30020569":{"solarSystemId":30020569,"solarSystemName":"I.NEB.0RD","location":{"x":-26500000000000000000,"y":-555000000000000000,"z":-21500000000000000000}},"30020570":{"solarSystemId":30020570,"solarSystemName":"D.43G.0N1","location":{"x":-26600000000000000000,"y":-1590000000000000000,"z":-22100000000000000000}},"30020571":{"solarSystemId":30020571,"solarSystemName":"S.S7G.3MV","location":{"x":-26800000000000000000,"y":-704000000000000000,"z":-21000000000000000000}},"30020572":{"solarSystemId":30020572,"solarSystemName":"R.M1B.K31","location":{"x":-25400000000000000000,"y":-1290000000000000000,"z":-22200000000000000000}},"30020573":{"solarSystemId":30020573,"solarSystemName":"S.V6G.Y51","location":{"x":-26800000000000000000,"y":-1360000000000000000,"z":-20700000000000000000}},"30020574":{"solarSystemId":30020574,"solarSystemName":"O.FCB.VS1","location":{"x":-26000000000000000000,"y":-1540000000000000000,"z":-21700000000000000000}},"30020575":{"solarSystemId":30020575,"solarSystemName":"S.CQX.TC1","location":{"x":-30700000000000000000,"y":-1740000000000000000,"z":-15300000000000000000}},"30020576":{"solarSystemId":30020576,"solarSystemName":"A.67Y.FG1","location":{"x":-31400000000000000000,"y":-2010000000000000000,"z":-15400000000000000000}},"30020577":{"solarSystemId":30020577,"solarSystemName":"M.QGX.XM1","location":{"x":-30800000000000000000,"y":-1800000000000000000,"z":-15400000000000000000}},"30020578":{"solarSystemId":30020578,"solarSystemName":"M.8EX.P61","location":{"x":-31100000000000000000,"y":-1390000000000000000,"z":-15900000000000000000}},"30020579":{"solarSystemId":30020579,"solarSystemName":"O.JDX.C31","location":{"x":-30500000000000000000,"y":-1280000000000000000,"z":-16200000000000000000}},"30020580":{"solarSystemId":30020580,"solarSystemName":"B.LQX.2L1","location":{"x":-30700000000000000000,"y":-1660000000000000000,"z":-16400000000000000000}},"30020581":{"solarSystemId":30020581,"solarSystemName":"M.2LY.ED1","location":{"x":-31600000000000000000,"y":-1730000000000000000,"z":-16200000000000000000}},"30020582":{"solarSystemId":30020582,"solarSystemName":"C.V9Y.921","location":{"x":-31500000000000000000,"y":-1240000000000000000,"z":-15900000000000000000}},"30020583":{"solarSystemId":30020583,"solarSystemName":"M.X7Y.ES1","location":{"x":-31400000000000000000,"y":-1550000000000000000,"z":-15600000000000000000}},"30020584":{"solarSystemId":30020584,"solarSystemName":"M.WVY.ST1","location":{"x":-31800000000000000000,"y":-1560000000000000000,"z":-16000000000000000000}},"30020585":{"solarSystemId":30020585,"solarSystemName":"I.N3B.CQ1","location":{"x":-25500000000000000000,"y":-1890000000000000000,"z":-19400000000000000000}},"30020586":{"solarSystemId":30020586,"solarSystemName":"I.28G.G31","location":{"x":-26800000000000000000,"y":-1290000000000000000,"z":-20000000000000000000}},"30020587":{"solarSystemId":30020587,"solarSystemName":"M.31B.ZT1","location":{"x":-25400000000000000000,"y":-1580000000000000000,"z":-20300000000000000000}},"30020588":{"solarSystemId":30020588,"solarSystemName":"E.X7G.8LY","location":{"x":-26800000000000000000,"y":-989000000000000000,"z":-19600000000000000000}},"30020589":{"solarSystemId":30020589,"solarSystemName":"U.7FB.J11","location":{"x":-26100000000000000000,"y":-1220000000000000000,"z":-20400000000000000000}},"30020590":{"solarSystemId":30020590,"solarSystemName":"N.3CG.C0J","location":{"x":-27100000000000000000,"y":-901000000000000000,"z":-19500000000000000000}},"30020591":{"solarSystemId":30020591,"solarSystemName":"M.RWB.TS1","location":{"x":-26400000000000000000,"y":-1530000000000000000,"z":-19900000000000000000}},"30020592":{"solarSystemId":30020592,"solarSystemName":"B.KNG.EM1","location":{"x":-27000000000000000000,"y":-1800000000000000000,"z":-19700000000000000000}},"30020593":{"solarSystemId":30020593,"solarSystemName":"O.QCB.7L1","location":{"x":-26000000000000000000,"y":-1670000000000000000,"z":-19900000000000000000}},"30020594":{"solarSystemId":30020594,"solarSystemName":"B.GVB.FP1","location":{"x":-26100000000000000000,"y":-1830000000000000000,"z":-20000000000000000000}},"30020595":{"solarSystemId":30020595,"solarSystemName":"O.R4B.751","location":{"x":-25500000000000000000,"y":-1340000000000000000,"z":-19800000000000000000}},"30020596":{"solarSystemId":30020596,"solarSystemName":"E.N8J.8T3","location":{"x":-29100000000000000000,"y":-3860000000000000000,"z":-21600000000000000000}},"30020597":{"solarSystemId":30020597,"solarSystemName":"A.E2J.QD3","location":{"x":-28900000000000000000,"y":-4020000000000000000,"z":-21900000000000000000}},"30020598":{"solarSystemId":30020598,"solarSystemName":"T.J2X.1H3","location":{"x":-30100000000000000000,"y":-4330000000000000000,"z":-21700000000000000000}},"30020599":{"solarSystemId":30020599,"solarSystemName":"I.KCJ.B73","location":{"x":-29400000000000000000,"y":-3740000000000000000,"z":-22200000000000000000}},"30020600":{"solarSystemId":30020600,"solarSystemName":"I.97J.TE3","location":{"x":-29100000000000000000,"y":-4590000000000000000,"z":-23700000000000000000}},"30020601":{"solarSystemId":30020601,"solarSystemName":"T.LSJ.NF3","location":{"x":-29200000000000000000,"y":-4230000000000000000,"z":-22000000000000000000}},"30020602":{"solarSystemId":30020602,"solarSystemName":"E6P-M09","location":{"x":-61700000000000000000,"y":-4920000000000000000,"z":-1650000000000000000}},"30020603":{"solarSystemId":30020603,"solarSystemName":"I2M-MV8","location":{"x":-59200000000000000000,"y":-7080000000000000000,"z":-1360000000000000000}},"30020604":{"solarSystemId":30020604,"solarSystemName":"I2S-G19","location":{"x":-63700000000000000000,"y":-6170000000000000000,"z":-16000000000000000}},"30020605":{"solarSystemId":30020605,"solarSystemName":"ETP-G09","location":{"x":-61000000000000000000,"y":-4640000000000000000,"z":-158000000000000000}},"30020606":{"solarSystemId":30020606,"solarSystemName":"EQG-Q09","location":{"x":-61500000000000000000,"y":-7140000000000000000,"z":181000000000000000}},"30020607":{"solarSystemId":30020607,"solarSystemName":"OSV-6V8","location":{"x":-58600000000000000000,"y":-3110000000000000000,"z":360000000000000000}},"30020608":{"solarSystemId":30020608,"solarSystemName":"EPS-0V8","location":{"x":-58400000000000000000,"y":-3340000000000000000,"z":-1610000000000000000}},"30020609":{"solarSystemId":30020609,"solarSystemName":"EBL-9T8","location":{"x":-56800000000000000000,"y":-3500000000000000000,"z":701000000000000000}},"30020610":{"solarSystemId":30020610,"solarSystemName":"EFG-VT8","location":{"x":-58200000000000000000,"y":-3390000000000000000,"z":-608000000000000000}},"30020611":{"solarSystemId":30020611,"solarSystemName":"I7C-KT8","location":{"x":-57500000000000000000,"y":-3910000000000000000,"z":-444000000000000000}},"30020612":{"solarSystemId":30020612,"solarSystemName":"AQG-109","location":{"x":-60200000000000000000,"y":-4390000000000000000,"z":-2000000000000000000}},"30020613":{"solarSystemId":30020613,"solarSystemName":"OJP-609","location":{"x":-60400000000000000000,"y":-4170000000000000000,"z":-1040000000000000000}},"30020614":{"solarSystemId":30020614,"solarSystemName":"AMR-LV8","location":{"x":-59500000000000000000,"y":-5270000000000000000,"z":-1870000000000000000}},"30020615":{"solarSystemId":30020615,"solarSystemName":"I3T-8V8","location":{"x":-58500000000000000000,"y":-6330000000000000000,"z":-557000000000000000}},"30020616":{"solarSystemId":30020616,"solarSystemName":"ECF-KV8","location":{"x":-59400000000000000000,"y":-3530000000000000000,"z":-1830000000000000000}},"30020617":{"solarSystemId":30020617,"solarSystemName":"I33-JV8","location":{"x":-58800000000000000000,"y":-5920000000000000000,"z":646000000000000000}},"30020618":{"solarSystemId":30020618,"solarSystemName":"OHH-RV8","location":{"x":-59500000000000000000,"y":-6100000000000000000,"z":-212000000000000000}},"30020619":{"solarSystemId":30020619,"solarSystemName":"E70-HV8","location":{"x":-58900000000000000000,"y":-5070000000000000000,"z":501000000000000000}},"30020620":{"solarSystemId":30020620,"solarSystemName":"ORT-SV8","location":{"x":-59700000000000000000,"y":-5250000000000000000,"z":-384000000000000000}},"30020621":{"solarSystemId":30020621,"solarSystemName":"E65-1V8","location":{"x":-58200000000000000000,"y":-4020000000000000000,"z":-209000000000000000}},"30020622":{"solarSystemId":30020622,"solarSystemName":"Sreyfe","location":{"x":-59800000000000000000,"y":-3190000000000000000,"z":1000000000000000000}},"30020623":{"solarSystemId":30020623,"solarSystemName":"A12-FV8","location":{"x":-59100000000000000000,"y":-3420000000000000000,"z":-1160000000000000000}},"30020624":{"solarSystemId":30020624,"solarSystemName":"A7J-ST8","location":{"x":-58300000000000000000,"y":-4060000000000000000,"z":-3370000000000000000}},"30020625":{"solarSystemId":30020625,"solarSystemName":"I9D-GV8","location":{"x":-58900000000000000000,"y":-3190000000000000000,"z":1110000000000000000}},"30020626":{"solarSystemId":30020626,"solarSystemName":"E7J-D09","location":{"x":-60800000000000000000,"y":-4150000000000000000,"z":206000000000000000}},"30020627":{"solarSystemId":30020627,"solarSystemName":"R.51P.5QK","location":{"x":-20800000000000000000,"y":-1100000000000000000,"z":-18500000000000000000}},"30020628":{"solarSystemId":30020628,"solarSystemName":"H.59P.E21","location":{"x":-21100000000000000000,"y":-1260000000000000000,"z":-18800000000000000000}},"30020629":{"solarSystemId":30020629,"solarSystemName":"T.N2V.V81","location":{"x":-22000000000000000000,"y":-1460000000000000000,"z":-18900000000000000000}},"30020630":{"solarSystemId":30020630,"solarSystemName":"H.9TP.96H","location":{"x":-21200000000000000000,"y":-872000000000000000,"z":-19200000000000000000}},"30020631":{"solarSystemId":30020631,"solarSystemName":"I.XCP.X61","location":{"x":-21400000000000000000,"y":-1400000000000000000,"z":-19100000000000000000}},"30020632":{"solarSystemId":30020632,"solarSystemName":"R.L2V.0R1","location":{"x":-22000000000000000000,"y":-1620000000000000000,"z":-19000000000000000000}},"30020633":{"solarSystemId":30020633,"solarSystemName":"H.L0P.721","location":{"x":-20800000000000000000,"y":-1230000000000000000,"z":-19700000000000000000}},"30020634":{"solarSystemId":30020634,"solarSystemName":"C.BHP.T51","location":{"x":-21600000000000000000,"y":-1350000000000000000,"z":-19800000000000000000}},"30020635":{"solarSystemId":30020635,"solarSystemName":"C.28P.H61","location":{"x":-21000000000000000000,"y":-1400000000000000000,"z":-18800000000000000000}},"30020636":{"solarSystemId":30020636,"solarSystemName":"I.7RC.TJX","location":{"x":-18900000000000000000,"y":-965000000000000000,"z":-22200000000000000000}},"30020637":{"solarSystemId":30020637,"solarSystemName":"T.BTC.47S","location":{"x":-18900000000000000000,"y":-368000000000000000,"z":-22200000000000000000}},"30020638":{"solarSystemId":30020638,"solarSystemName":"N.ZVC.3X2","location":{"x":-19200000000000000000,"y":101000000000000000,"z":-23000000000000000000}},"30020639":{"solarSystemId":30020639,"solarSystemName":"E.CJM.0X7","location":{"x":-20500000000000000000,"y":-281000000000000000,"z":-22200000000000000000}},"30020640":{"solarSystemId":30020640,"solarSystemName":"M.WBC.8YM","location":{"x":-19300000000000000000,"y":-643000000000000000,"z":-23000000000000000000}},"30020641":{"solarSystemId":30020641,"solarSystemName":"O.W7D.5T1","location":{"x":-17600000000000000000,"y":-1560000000000000000,"z":-20900000000000000000}},"30020642":{"solarSystemId":30020642,"solarSystemName":"C.VRC.5FF","location":{"x":-18900000000000000000,"y":-780000000000000000,"z":-22600000000000000000}},"30020643":{"solarSystemId":30020643,"solarSystemName":"M.MNC.9PF","location":{"x":-18900000000000000000,"y":-777000000000000000,"z":-22600000000000000000}},"30020644":{"solarSystemId":30020644,"solarSystemName":"L.DVP.L0H","location":{"x":-21500000000000000000,"y":-865000000000000000,"z":-23500000000000000000}},"30020645":{"solarSystemId":30020645,"solarSystemName":"B.1CP.LFF","location":{"x":-21300000000000000000,"y":-781000000000000000,"z":-23400000000000000000}},"30020646":{"solarSystemId":30020646,"solarSystemName":"M.VDP.K01","location":{"x":-21300000000000000000,"y":-1190000000000000000,"z":-24200000000000000000}},"30020647":{"solarSystemId":30020647,"solarSystemName":"M.MGM.111","location":{"x":-20400000000000000000,"y":-1190000000000000000,"z":-24700000000000000000}},"30020648":{"solarSystemId":30020648,"solarSystemName":"C.PNV.SKB","location":{"x":-22400000000000000000,"y":-827000000000000000,"z":-23900000000000000000}},"30020649":{"solarSystemId":30020649,"solarSystemName":"O.ERP.B71","location":{"x":-21300000000000000000,"y":-1430000000000000000,"z":-23700000000000000000}},"30020650":{"solarSystemId":30020650,"solarSystemName":"C.KRP.Y31","location":{"x":-21300000000000000000,"y":-1290000000000000000,"z":-24600000000000000000}},"30020651":{"solarSystemId":30020651,"solarSystemName":"N.R2M.BGB","location":{"x":-19700000000000000000,"y":-819000000000000000,"z":-20400000000000000000}},"30020652":{"solarSystemId":30020652,"solarSystemName":"S.SYM.171","location":{"x":-20600000000000000000,"y":-1410000000000000000,"z":-20000000000000000000}},"30020653":{"solarSystemId":30020653,"solarSystemName":"S.Z5C.1HJ","location":{"x":-18700000000000000000,"y":-928000000000000000,"z":-21400000000000000000}},"30020654":{"solarSystemId":30020654,"solarSystemName":"S.7MM.TLM","location":{"x":-20200000000000000000,"y":-629000000000000000,"z":-21100000000000000000}},"30020655":{"solarSystemId":30020655,"solarSystemName":"D.C3P.081","location":{"x":-20900000000000000000,"y":-1440000000000000000,"z":-20800000000000000000}},"30020656":{"solarSystemId":30020656,"solarSystemName":"M.KFM.M71","location":{"x":-20400000000000000000,"y":-1420000000000000000,"z":-20200000000000000000}},"30020657":{"solarSystemId":30020657,"solarSystemName":"M.SWM.03K","location":{"x":-20700000000000000000,"y":-1080000000000000000,"z":-21100000000000000000}},"30020658":{"solarSystemId":30020658,"solarSystemName":"B.N5M.ZN1","location":{"x":-19800000000000000000,"y":-1620000000000000000,"z":-21100000000000000000}},"30020659":{"solarSystemId":30020659,"solarSystemName":"E.65P.EWG","location":{"x":-20900000000000000000,"y":-862000000000000000,"z":-23100000000000000000}},"30020660":{"solarSystemId":30020660,"solarSystemName":"E.VRQ.71G","location":{"x":-23500000000000000000,"y":-830000000000000000,"z":-23700000000000000000}},"30020661":{"solarSystemId":30020661,"solarSystemName":"H.RQV.Q1X","location":{"x":-22600000000000000000,"y":-939000000000000000,"z":-23000000000000000000}},"30020662":{"solarSystemId":30020662,"solarSystemName":"M.N7V.1TZ","location":{"x":-22200000000000000000,"y":-1020000000000000000,"z":-23500000000000000000}},"30020663":{"solarSystemId":30020663,"solarSystemName":"M.P9Q.GYJ","location":{"x":-23400000000000000000,"y":-932000000000000000,"z":-22400000000000000000}},"30020664":{"solarSystemId":30020664,"solarSystemName":"M.75V.Z4W","location":{"x":-22100000000000000000,"y":-1050000000000000000,"z":-21900000000000000000}},"30020665":{"solarSystemId":30020665,"solarSystemName":"M.7CV.2NC","location":{"x":-22500000000000000000,"y":-590000000000000000,"z":-22500000000000000000}},"30020666":{"solarSystemId":30020666,"solarSystemName":"U.W8D.80N","location":{"x":-17600000000000000000,"y":-433000000000000000,"z":-20500000000000000000}},"30020667":{"solarSystemId":30020667,"solarSystemName":"L.0QD.LZR","location":{"x":-18000000000000000000,"y":-500000000000000000,"z":-22500000000000000000}},"30020668":{"solarSystemId":30020668,"solarSystemName":"S.QZL.D1Q","location":{"x":-17200000000000000000,"y":-722000000000000000,"z":-21200000000000000000}},"30020669":{"solarSystemId":30020669,"solarSystemName":"E.KHL.Q5V","location":{"x":-17000000000000000000,"y":-691000000000000000,"z":-22300000000000000000}},"30020670":{"solarSystemId":30020670,"solarSystemName":"S.LCD.PBV","location":{"x":-17900000000000000000,"y":-710000000000000000,"z":-22900000000000000000}},"30020671":{"solarSystemId":30020671,"solarSystemName":"T.HJR.0K9","location":{"x":-15900000000000000000,"y":-358000000000000000,"z":-22700000000000000000}},"30020672":{"solarSystemId":30020672,"solarSystemName":"O.TGL.C11","location":{"x":-17000000000000000000,"y":-1210000000000000000,"z":-22300000000000000000}},"30020673":{"solarSystemId":30020673,"solarSystemName":"C.CYL.EMF","location":{"x":-17100000000000000000,"y":-777000000000000000,"z":-21300000000000000000}},"30020674":{"solarSystemId":30020674,"solarSystemName":"M.MKL.Y01","location":{"x":-17200000000000000000,"y":-1180000000000000000,"z":-22800000000000000000}},"30020675":{"solarSystemId":30020675,"solarSystemName":"L.V6V.E7Z","location":{"x":-22100000000000000000,"y":-1020000000000000000,"z":-21700000000000000000}},"30020676":{"solarSystemId":30020676,"solarSystemName":"E.FGV.GRJ","location":{"x":-22800000000000000000,"y":-916000000000000000,"z":-21300000000000000000}},"30020677":{"solarSystemId":30020677,"solarSystemName":"C.R1V.401","location":{"x":-22000000000000000000,"y":-1160000000000000000,"z":-21300000000000000000}},"30020678":{"solarSystemId":30020678,"solarSystemName":"O.LSV.P91","location":{"x":-22300000000000000000,"y":-1500000000000000000,"z":-21200000000000000000}},"30020679":{"solarSystemId":30020679,"solarSystemName":"B.6BP.E9K","location":{"x":-21600000000000000000,"y":-1090000000000000000,"z":-21100000000000000000}},"30020680":{"solarSystemId":30020680,"solarSystemName":"M.L0Q.K8K","location":{"x":-23100000000000000000,"y":-1090000000000000000,"z":-22100000000000000000}},"30020681":{"solarSystemId":30020681,"solarSystemName":"M.K8Q.521","location":{"x":-23400000000000000000,"y":-1230000000000000000,"z":-21700000000000000000}},"30020682":{"solarSystemId":30020682,"solarSystemName":"O.96Q.VPY","location":{"x":-23300000000000000000,"y":-994000000000000000,"z":-22100000000000000000}},"30020683":{"solarSystemId":30020683,"solarSystemName":"U.WCC.WNC","location":{"x":-19100000000000000000,"y":-591000000000000000,"z":-19000000000000000000}},"30020684":{"solarSystemId":30020684,"solarSystemName":"L.G8M.T3Q","location":{"x":-19900000000000000000,"y":-724000000000000000,"z":-17800000000000000000}},"30020685":{"solarSystemId":30020685,"solarSystemName":"E.1PP.BJH","location":{"x":-21400000000000000000,"y":-894000000000000000,"z":-20300000000000000000}},"30020686":{"solarSystemId":30020686,"solarSystemName":"U.EYM.SHX","location":{"x":-20600000000000000000,"y":-964000000000000000,"z":-18600000000000000000}},"30020687":{"solarSystemId":30020687,"solarSystemName":"R.RHM.9QR","location":{"x":-20500000000000000000,"y":-491000000000000000,"z":-18800000000000000000}},"30020688":{"solarSystemId":30020688,"solarSystemName":"S.Y0P.HGP","location":{"x":-20800000000000000000,"y":-675000000000000000,"z":-18900000000000000000}},"30020689":{"solarSystemId":30020689,"solarSystemName":"L.CYC.91P","location":{"x":-19400000000000000000,"y":-650000000000000000,"z":-18300000000000000000}},"30020690":{"solarSystemId":30020690,"solarSystemName":"M.PNM.MS1","location":{"x":-20100000000000000000,"y":-1530000000000000000,"z":-18200000000000000000}},"30020691":{"solarSystemId":30020691,"solarSystemName":"C.RYP.R5Z","location":{"x":-21700000000000000000,"y":-1010000000000000000,"z":-19800000000000000000}},"30020692":{"solarSystemId":30020692,"solarSystemName":"S.9HF.L21","location":{"x":-25100000000000000000,"y":-1240000000000000000,"z":-33000000000000000000}},"30020693":{"solarSystemId":30020693,"solarSystemName":"T.X3J.WS1","location":{"x":-29000000000000000000,"y":-1550000000000000000,"z":-34500000000000000000}},"30020694":{"solarSystemId":30020694,"solarSystemName":"I.7JF.72J","location":{"x":-25100000000000000000,"y":-903000000000000000,"z":-34700000000000000000}},"30020695":{"solarSystemId":30020695,"solarSystemName":"A.QVB.X21","location":{"x":-26100000000000000000,"y":-1260000000000000000,"z":-31900000000000000000}},"30020696":{"solarSystemId":30020696,"solarSystemName":"M.MKH.BL2","location":{"x":-28800000000000000000,"y":-2840000000000000000,"z":-32700000000000000000}},"30020697":{"solarSystemId":30020697,"solarSystemName":"O.LXB.G61","location":{"x":-26300000000000000000,"y":-1400000000000000000,"z":-31200000000000000000}},"30020698":{"solarSystemId":30020698,"solarSystemName":"N.RPJ.W4W","location":{"x":-29500000000000000000,"y":-1050000000000000000,"z":-29100000000000000000}},"30020699":{"solarSystemId":30020699,"solarSystemName":"A.T5J.C21","location":{"x":-29000000000000000000,"y":-1240000000000000000,"z":-28900000000000000000}},"30020700":{"solarSystemId":30020700,"solarSystemName":"L.06J.J01","location":{"x":-29000000000000000000,"y":-1180000000000000000,"z":-29800000000000000000}},"30020701":{"solarSystemId":30020701,"solarSystemName":"I.S0J.X2E","location":{"x":-28800000000000000000,"y":-1120000000000000000,"z":-28500000000000000000}},"30020702":{"solarSystemId":30020702,"solarSystemName":"C.NHJ.ZPG","location":{"x":-29700000000000000000,"y":-850000000000000000,"z":-28600000000000000000}},"30020703":{"solarSystemId":30020703,"solarSystemName":"M.BJH.E01","location":{"x":-28600000000000000000,"y":-1190000000000000000,"z":-28200000000000000000}},"30020704":{"solarSystemId":30020704,"solarSystemName":"R.23G.H5F","location":{"x":-26600000000000000000,"y":-763000000000000000,"z":-33000000000000000000}},"30020705":{"solarSystemId":30020705,"solarSystemName":"E.S9B.7TF","location":{"x":-25700000000000000000,"y":-769000000000000000,"z":-34700000000000000000}},"30020706":{"solarSystemId":30020706,"solarSystemName":"T.EMG.TPJ","location":{"x":-27200000000000000000,"y":-921000000000000000,"z":-34200000000000000000}},"30020707":{"solarSystemId":30020707,"solarSystemName":"E.EDG.086","location":{"x":-27100000000000000000,"y":-225000000000000000,"z":-34800000000000000000}},"30020708":{"solarSystemId":30020708,"solarSystemName":"D.BVH.L5F","location":{"x":-28400000000000000000,"y":-763000000000000000,"z":-33500000000000000000}},"30020709":{"solarSystemId":30020709,"solarSystemName":"I.RKJ.FTN","location":{"x":-29900000000000000000,"y":-445000000000000000,"z":-37800000000000000000}},"30020710":{"solarSystemId":30020710,"solarSystemName":"R.Y7X.361","location":{"x":-30300000000000000000,"y":-1370000000000000000,"z":-36500000000000000000}},"30020711":{"solarSystemId":30020711,"solarSystemName":"U.HVY.TLV","location":{"x":-31800000000000000000,"y":-701000000000000000,"z":-34900000000000000000}},"30020712":{"solarSystemId":30020712,"solarSystemName":"H.WZJ.JCZ","location":{"x":-29900000000000000000,"y":-1030000000000000000,"z":-36200000000000000000}},"30020713":{"solarSystemId":30020713,"solarSystemName":"H.3SH.R7N","location":{"x":-28000000000000000000,"y":-441000000000000000,"z":-40200000000000000000}},"30020714":{"solarSystemId":30020714,"solarSystemName":"A.CBJ.MVX","location":{"x":-29600000000000000000,"y":-959000000000000000,"z":-29400000000000000000}},"30020715":{"solarSystemId":30020715,"solarSystemName":"I.20Z.7SK","location":{"x":-32300000000000000000,"y":-1090000000000000000,"z":-29300000000000000000}},"30020716":{"solarSystemId":30020716,"solarSystemName":"A.XTY.4D1","location":{"x":-31600000000000000000,"y":-1700000000000000000,"z":-30100000000000000000}},"30020717":{"solarSystemId":30020717,"solarSystemName":"R.DYX.1JQ","location":{"x":-31000000000000000000,"y":-749000000000000000,"z":-30600000000000000000}},"30020718":{"solarSystemId":30020718,"solarSystemName":"C.Y8Y.HXE","location":{"x":-31400000000000000000,"y":-1150000000000000000,"z":-30400000000000000000}},"30020719":{"solarSystemId":30020719,"solarSystemName":"C.WYX.Y11","location":{"x":-31000000000000000000,"y":-1220000000000000000,"z":-29300000000000000000}},"30020720":{"solarSystemId":30020720,"solarSystemName":"D.HMY.M4B","location":{"x":-31800000000000000000,"y":-798000000000000000,"z":-30300000000000000000}},"30020721":{"solarSystemId":30020721,"solarSystemName":"T.X8Y.JRM","location":{"x":-31400000000000000000,"y":-628000000000000000,"z":-29200000000000000000}},"30020722":{"solarSystemId":30020722,"solarSystemName":"U.V3Y.6XC","location":{"x":-31300000000000000000,"y":-606000000000000000,"z":-29300000000000000000}},"30020723":{"solarSystemId":30020723,"solarSystemName":"T.Q7Y.M4V","location":{"x":-31400000000000000000,"y":-690000000000000000,"z":-29700000000000000000}},"30020724":{"solarSystemId":30020724,"solarSystemName":"N.HWX.HBF","location":{"x":-31000000000000000000,"y":-782000000000000000,"z":-30000000000000000000}},"30020725":{"solarSystemId":30020725,"solarSystemName":"O.P5Y.5HJ","location":{"x":-31300000000000000000,"y":-928000000000000000,"z":-29300000000000000000}},"30020726":{"solarSystemId":30020726,"solarSystemName":"I.K7H.C7G","location":{"x":-28000000000000000000,"y":-837000000000000000,"z":-36400000000000000000}},"30020727":{"solarSystemId":30020727,"solarSystemName":"R.2XH.641","location":{"x":-28600000000000000000,"y":-1300000000000000000,"z":-35600000000000000000}},"30020728":{"solarSystemId":30020728,"solarSystemName":"T.5VB.0CE","location":{"x":-26100000000000000000,"y":-1130000000000000000,"z":-36700000000000000000}},"30020729":{"solarSystemId":30020729,"solarSystemName":"D.HZG.ELC","location":{"x":-27600000000000000000,"y":-593000000000000000,"z":-35000000000000000000}},"30020730":{"solarSystemId":30020730,"solarSystemName":"I.CGG.C5H","location":{"x":-27400000000000000000,"y":-871000000000000000,"z":-35000000000000000000}},"30020731":{"solarSystemId":30020731,"solarSystemName":"A.P5H.X6X","location":{"x":-27900000000000000000,"y":-944000000000000000,"z":-36400000000000000000}},"30020732":{"solarSystemId":30020732,"solarSystemName":"I.PTX.TST","location":{"x":-30400000000000000000,"y":-408000000000000000,"z":-35000000000000000000}},"30020733":{"solarSystemId":30020733,"solarSystemName":"I.Y6X.FEL","location":{"x":-30200000000000000000,"y":-540000000000000000,"z":-34000000000000000000}},"30020734":{"solarSystemId":30020734,"solarSystemName":"E.T1X.V21","location":{"x":-30000000000000000000,"y":-1250000000000000000,"z":-34500000000000000000}},"30020735":{"solarSystemId":30020735,"solarSystemName":"E.Q3X.9K3","location":{"x":-30100000000000000000,"y":-142000000000000000,"z":-35400000000000000000}},"30020736":{"solarSystemId":30020736,"solarSystemName":"T.7RX.NCY","location":{"x":-30500000000000000000,"y":-991000000000000000,"z":-35300000000000000000}},"30020737":{"solarSystemId":30020737,"solarSystemName":"E8K-PV8","location":{"x":-60100000000000000000,"y":-4420000000000000000,"z":-8390000000000000000}},"30020738":{"solarSystemId":30020738,"solarSystemName":"A6P-BT8","location":{"x":-57700000000000000000,"y":-1640000000000000000,"z":-9400000000000000000}},"30020739":{"solarSystemId":30020739,"solarSystemName":"IC2-919","location":{"x":-63800000000000000000,"y":-2410000000000000000,"z":-7400000000000000000}},"30020740":{"solarSystemId":30020740,"solarSystemName":"I07-5T8","location":{"x":-57000000000000000000,"y":-5180000000000000000,"z":-10400000000000000000}},"30020741":{"solarSystemId":30020741,"solarSystemName":"IBL-L09","location":{"x":-61700000000000000000,"y":-4720000000000000000,"z":-12600000000000000000}},"30020742":{"solarSystemId":30020742,"solarSystemName":"EML-2S8","location":{"x":-55500000000000000000,"y":-4080000000000000000,"z":-11300000000000000000}},"30020743":{"solarSystemId":30020743,"solarSystemName":"IR9-DS8","location":{"x":-56000000000000000000,"y":-4190000000000000000,"z":-12000000000000000000}},"30020744":{"solarSystemId":30020744,"solarSystemName":"OLK-VR8","location":{"x":-55400000000000000000,"y":-3920000000000000000,"z":-10800000000000000000}},"30020745":{"solarSystemId":30020745,"solarSystemName":"EV0-1S8","location":{"x":-55500000000000000000,"y":-4290000000000000000,"z":-10900000000000000000}},"30020746":{"solarSystemId":30020746,"solarSystemName":"E44-BS8","location":{"x":-56000000000000000000,"y":-3860000000000000000,"z":-11300000000000000000}},"30020747":{"solarSystemId":30020747,"solarSystemName":"I3G-609","location":{"x":-60900000000000000000,"y":-2160000000000000000,"z":-9570000000000000000}},"30020748":{"solarSystemId":30020748,"solarSystemName":"IR9-H09","location":{"x":-61700000000000000000,"y":-2770000000000000000,"z":-6180000000000000000}},"30020749":{"solarSystemId":30020749,"solarSystemName":"E1F-9V8","location":{"x":-59400000000000000000,"y":-2350000000000000000,"z":-6660000000000000000}},"30020750":{"solarSystemId":30020750,"solarSystemName":"IFG-819","location":{"x":-63700000000000000000,"y":-2520000000000000000,"z":-7740000000000000000}},"30020751":{"solarSystemId":30020751,"solarSystemName":"I9D-809","location":{"x":-61400000000000000000,"y":-841000000000000000,"z":-7610000000000000000}},"30020752":{"solarSystemId":30020752,"solarSystemName":"O8K-DS8","location":{"x":-56200000000000000000,"y":-4120000000000000000,"z":-9550000000000000000}},"30020753":{"solarSystemId":30020753,"solarSystemName":"OFN-0S8","location":{"x":-55600000000000000000,"y":-3880000000000000000,"z":-9840000000000000000}},"30020754":{"solarSystemId":30020754,"solarSystemName":"IJ0-8T8","location":{"x":-57300000000000000000,"y":-4100000000000000000,"z":-9400000000000000000}},"30020755":{"solarSystemId":30020755,"solarSystemName":"EL1-KS8","location":{"x":-56400000000000000000,"y":-4080000000000000000,"z":-8700000000000000000}},"30020756":{"solarSystemId":30020756,"solarSystemName":"E5B-NS8","location":{"x":-56500000000000000000,"y":-4330000000000000000,"z":-9560000000000000000}},"30020757":{"solarSystemId":30020757,"solarSystemName":"ETB-3V8","location":{"x":-58900000000000000000,"y":-2260000000000000000,"z":-10900000000000000000}},"30020758":{"solarSystemId":30020758,"solarSystemName":"OQ3-CV8","location":{"x":-59200000000000000000,"y":-3140000000000000000,"z":-12000000000000000000}},"30020759":{"solarSystemId":30020759,"solarSystemName":"ECF-2T8","location":{"x":-56900000000000000000,"y":-4180000000000000000,"z":-11100000000000000000}},"30020760":{"solarSystemId":30020760,"solarSystemName":"I6P-4V8","location":{"x":-58700000000000000000,"y":-2830000000000000000,"z":-12400000000000000000}},"30020761":{"solarSystemId":30020761,"solarSystemName":"A86-4V8","location":{"x":-59000000000000000000,"y":-828000000000000000,"z":-10100000000000000000}},"30020762":{"solarSystemId":30020762,"solarSystemName":"OGN-9V8","location":{"x":-59000000000000000000,"y":-2030000000000000000,"z":-13700000000000000000}},"30020763":{"solarSystemId":30020763,"solarSystemName":"E5H-HV8","location":{"x":-59300000000000000000,"y":-1740000000000000000,"z":-14200000000000000000}},"30020764":{"solarSystemId":30020764,"solarSystemName":"O70-PT8","location":{"x":-57800000000000000000,"y":-2170000000000000000,"z":-14500000000000000000}},"30020765":{"solarSystemId":30020765,"solarSystemName":"UM7-HV8","location":{"x":-59500000000000000000,"y":-2040000000000000000,"z":-12600000000000000000}},"30020766":{"solarSystemId":30020766,"solarSystemName":"E2S-VV8","location":{"x":-60100000000000000000,"y":-1750000000000000000,"z":-14000000000000000000}},"30020767":{"solarSystemId":30020767,"solarSystemName":"E3M-F09","location":{"x":-61500000000000000000,"y":-2250000000000000000,"z":-11200000000000000000}},"30020768":{"solarSystemId":30020768,"solarSystemName":"O6B-R09","location":{"x":-62500000000000000000,"y":-1610000000000000000,"z":-10300000000000000000}},"30020769":{"solarSystemId":30020769,"solarSystemName":"IQM-219","location":{"x":-63200000000000000000,"y":-1530000000000000000,"z":-10200000000000000000}},"30020770":{"solarSystemId":30020770,"solarSystemName":"IM1-N09","location":{"x":-62200000000000000000,"y":-1780000000000000000,"z":-10600000000000000000}},"30020771":{"solarSystemId":30020771,"solarSystemName":"Hakhome","location":{"x":-62600000000000000000,"y":-1650000000000000000,"z":-10300000000000000000}},"30020772":{"solarSystemId":30020772,"solarSystemName":"I.31V.KD6","location":{"x":-21900000000000000000,"y":-234000000000000000,"z":-36800000000000000000}},"30020773":{"solarSystemId":30020773,"solarSystemName":"E.STP.E7L","location":{"x":-21200000000000000000,"y":-513000000000000000,"z":-36400000000000000000}},"30020774":{"solarSystemId":30020774,"solarSystemName":"R.HFP.67D","location":{"x":-21500000000000000000,"y":-549000000000000000,"z":-37700000000000000000}},"30020775":{"solarSystemId":30020775,"solarSystemName":"E.B7P.RS4","location":{"x":-21000000000000000000,"y":-156000000000000000,"z":-36600000000000000000}},"30020776":{"solarSystemId":30020776,"solarSystemName":"S.7FP.1YY","location":{"x":-21500000000000000000,"y":-1000000000000000000,"z":-37300000000000000000}},"30020777":{"solarSystemId":30020777,"solarSystemName":"A.3YL.JNC","location":{"x":-17100000000000000000,"y":-591000000000000000,"z":-34900000000000000000}},"30020778":{"solarSystemId":30020778,"solarSystemName":"E.E6D.6RQ","location":{"x":-17500000000000000000,"y":-735000000000000000,"z":-34400000000000000000}},"30020779":{"solarSystemId":30020779,"solarSystemName":"H.W5D.LYR","location":{"x":-17500000000000000000,"y":-499000000000000000,"z":-35600000000000000000}},"30020780":{"solarSystemId":30020780,"solarSystemName":"N.J6L.HFR","location":{"x":-16400000000000000000,"y":-493000000000000000,"z":-34600000000000000000}},"30020781":{"solarSystemId":30020781,"solarSystemName":"C.PRD.MJE","location":{"x":-17800000000000000000,"y":-1150000000000000000,"z":-34400000000000000000}},"30020782":{"solarSystemId":30020782,"solarSystemName":"U.Y9C.5GD","location":{"x":-18800000000000000000,"y":-567000000000000000,"z":-34200000000000000000}},"30020783":{"solarSystemId":30020783,"solarSystemName":"D.6QD.HGH","location":{"x":-18000000000000000000,"y":-891000000000000000,"z":-33900000000000000000}},"30020784":{"solarSystemId":30020784,"solarSystemName":"T.TFD.2CB","location":{"x":-18100000000000000000,"y":-811000000000000000,"z":-34300000000000000000}},"30020785":{"solarSystemId":30020785,"solarSystemName":"S.T5C.3M5","location":{"x":-18600000000000000000,"y":-199000000000000000,"z":-34100000000000000000}},"30020786":{"solarSystemId":30020786,"solarSystemName":"M.M4C.LGK","location":{"x":-18600000000000000000,"y":-1110000000000000000,"z":-33600000000000000000}},"30020787":{"solarSystemId":30020787,"solarSystemName":"H.MMM.KXF","location":{"x":-20200000000000000000,"y":-787000000000000000,"z":-35300000000000000000}},"30020788":{"solarSystemId":30020788,"solarSystemName":"S.WDP.LEQ","location":{"x":-21300000000000000000,"y":-756000000000000000,"z":-34900000000000000000}},"30020789":{"solarSystemId":30020789,"solarSystemName":"E.2SP.86V","location":{"x":-21100000000000000000,"y":-692000000000000000,"z":-34800000000000000000}},"30020790":{"solarSystemId":30020790,"solarSystemName":"I.LDP.30L","location":{"x":-21300000000000000000,"y":-505000000000000000,"z":-35500000000000000000}},"30020791":{"solarSystemId":30020791,"solarSystemName":"E.B3P.YHW","location":{"x":-20900000000000000000,"y":-1070000000000000000,"z":-34900000000000000000}},"30020792":{"solarSystemId":30020792,"solarSystemName":"A.ZNL.WJB","location":{"x":-16600000000000000000,"y":-822000000000000000,"z":-35500000000000000000}},"30020793":{"solarSystemId":30020793,"solarSystemName":"A.8EL.V28","location":{"x":-17300000000000000000,"y":-291000000000000000,"z":-35800000000000000000}},"30020794":{"solarSystemId":30020794,"solarSystemName":"R.P1L.WZC","location":{"x":-16200000000000000000,"y":-609000000000000000,"z":-35400000000000000000}},"30020795":{"solarSystemId":30020795,"solarSystemName":"D.6SL.YHW","location":{"x":-16500000000000000000,"y":-1050000000000000,"z":-36100000000000000000}},"30020796":{"solarSystemId":30020796,"solarSystemName":"E.7ER.433","location":{"x":-16100000000000000000,"y":-112000000000000000,"z":-35200000000000000000}},"30020797":{"solarSystemId":30020797,"solarSystemName":"D.HND.Q9C","location":{"x":-17800000000000000000,"y":-587000000000000000,"z":-34000000000000000000}},"30020798":{"solarSystemId":30020798,"solarSystemName":"E.7MD.V5G","location":{"x":-17900000000000000000,"y":-835000000000000000,"z":-34200000000000000000}},"30020799":{"solarSystemId":30020799,"solarSystemName":"T.88D.T2C","location":{"x":-17600000000000000000,"y":-579000000000000000,"z":-33900000000000000000}},"30020800":{"solarSystemId":30020800,"solarSystemName":"H.PBD.N0D","location":{"x":-18100000000000000000,"y":-541000000000000000,"z":-33800000000000000000}},"30020801":{"solarSystemId":30020801,"solarSystemName":"A.K9D.PNP","location":{"x":-17700000000000000000,"y":-663000000000000000,"z":-34200000000000000000}},"30020802":{"solarSystemId":30020802,"solarSystemName":"E.XFM.MJ8","location":{"x":-20400000000000000000,"y":-317000000000000000,"z":-37200000000000000000}},"30020803":{"solarSystemId":30020803,"solarSystemName":"L.66C.YH1","location":{"x":-18700000000000000000,"y":64000000000000000,"z":-35200000000000000000}},"30020804":{"solarSystemId":30020804,"solarSystemName":"L.X0C.MBM","location":{"x":-18500000000000000000,"y":-638000000000000000,"z":-36600000000000000000}},"30020805":{"solarSystemId":30020805,"solarSystemName":"D.T5C.K41","location":{"x":-18600000000000000000,"y":-41600000000000000,"z":-37900000000000000000}},"30020806":{"solarSystemId":30020806,"solarSystemName":"I.BQN.8X1","location":{"x":-14600000000000000000,"y":-2100000000000000000,"z":-35300000000000000000}},"30020807":{"solarSystemId":30020807,"solarSystemName":"N.0MF.2S4","location":{"x":-24800000000000000000,"y":-4970000000000000000,"z":-42800000000000000000}},"30020808":{"solarSystemId":30020808,"solarSystemName":"R.E7V.2W3","location":{"x":-22200000000000000000,"y":-4510000000000000000,"z":-39400000000000000000}},"30020809":{"solarSystemId":30020809,"solarSystemName":"E.78Q.TJC","location":{"x":-23400000000000000000,"y":-605000000000000000,"z":-38300000000000000000}},"30020810":{"solarSystemId":30020810,"solarSystemName":"H.3TQ.VD4","location":{"x":-23500000000000000000,"y":-5170000000000000000,"z":-39700000000000000000}},"30020811":{"solarSystemId":30020811,"solarSystemName":"A.HWB.MW3","location":{"x":-26400000000000000000,"y":-4520000000000000000,"z":-40600000000000000000}},"30020812":{"solarSystemId":30020812,"solarSystemName":"H.P9M.K93","location":{"x":-19900000000000000000,"y":-3820000000000000000,"z":-43900000000000000000}},"30020813":{"solarSystemId":30020813,"solarSystemName":"I.JZG.3N4","location":{"x":-27600000000000000000,"y":-5050000000000000000,"z":-40800000000000000000}},"30020814":{"solarSystemId":30020814,"solarSystemName":"T.XGP.F73","location":{"x":-21600000000000000000,"y":-3740000000000000000,"z":-44000000000000000000}},"30020815":{"solarSystemId":30020815,"solarSystemName":"T.TTG.G25","location":{"x":-26900000000000000000,"y":-5860000000000000000,"z":-40500000000000000000}},"30020816":{"solarSystemId":30020816,"solarSystemName":"I.7LB.Y6M","location":{"x":-25900000000000000000,"y":-620000000000000000,"z":-42000000000000000000}},"30020817":{"solarSystemId":30020817,"solarSystemName":"H.0LY.JV2","location":{"x":-31600000000000000000,"y":-3020000000000000000,"z":-9140000000000000000}},"30020818":{"solarSystemId":30020818,"solarSystemName":"Kyrrð","location":{"x":-30900000000000000000,"y":-1790000000000000000,"z":-9090000000000000000}},"30020819":{"solarSystemId":30020819,"solarSystemName":"H.N3Z.EH1","location":{"x":-32400000000000000000,"y":-2050000000000000000,"z":-8630000000000000000}},"30020820":{"solarSystemId":30020820,"solarSystemName":"R.88Y.CP1","location":{"x":-31400000000000000000,"y":-1820000000000000000,"z":-9730000000000000000}},"30020821":{"solarSystemId":30020821,"solarSystemName":"E.9BX.HF1","location":{"x":-30800000000000000000,"y":-1940000000000000000,"z":-9260000000000000000}},"30020822":{"solarSystemId":30020822,"solarSystemName":"U.QLY.GH1","location":{"x":-31700000000000000000,"y":-2040000000000000000,"z":-9470000000000000000}},"30020823":{"solarSystemId":30020823,"solarSystemName":"A.GBY.JN1","location":{"x":-31900000000000000000,"y":-1610000000000000000,"z":-9080000000000000000}},"30020824":{"solarSystemId":30020824,"solarSystemName":"M.CQY.3Q1","location":{"x":-31900000000000000000,"y":-1880000000000000000,"z":-8550000000000000000}},"30020825":{"solarSystemId":30020825,"solarSystemName":"R.0JX.1M1","location":{"x":-30900000000000000000,"y":-1770000000000000000,"z":-9530000000000000000}},"30020826":{"solarSystemId":30020826,"solarSystemName":"E.YMX.WR1","location":{"x":-30600000000000000000,"y":-1650000000000000000,"z":-9530000000000000000}},"30020827":{"solarSystemId":30020827,"solarSystemName":"C.YJX.6M1","location":{"x":-30900000000000000000,"y":-1770000000000000000,"z":-9710000000000000000}},"30020828":{"solarSystemId":30020828,"solarSystemName":"S.06Y.2T1","location":{"x":-31300000000000000000,"y":-1550000000000000000,"z":-9120000000000000000}},"30020829":{"solarSystemId":30020829,"solarSystemName":"H.LTX.091","location":{"x":-30400000000000000000,"y":-1480000000000000000,"z":-9660000000000000000}},"30020830":{"solarSystemId":30020830,"solarSystemName":"R.LNX.6D1","location":{"x":-30400000000000000000,"y":-1700000000000000000,"z":-10000000000000000000}},"30020831":{"solarSystemId":30020831,"solarSystemName":"I.W7X.3D1","location":{"x":-30300000000000000000,"y":-1700000000000000000,"z":-10000000000000000000}},"30020832":{"solarSystemId":30020832,"solarSystemName":"U.48X.GL1","location":{"x":-30300000000000000000,"y":-1680000000000000000,"z":-9990000000000000000}},"30020833":{"solarSystemId":30020833,"solarSystemName":"O.94X.BZ1","location":{"x":-30100000000000000000,"y":-2190000000000000000,"z":-10400000000000000000}},"30020834":{"solarSystemId":30020834,"solarSystemName":"M.RGX.891","location":{"x":-30800000000000000000,"y":-1490000000000000000,"z":-9060000000000000000}},"30020835":{"solarSystemId":30020835,"solarSystemName":"B.1VX.461","location":{"x":-30700000000000000000,"y":-1370000000000000000,"z":-9150000000000000000}},"30020836":{"solarSystemId":30020836,"solarSystemName":"U.ETW.432","location":{"x":-33900000000000000000,"y":-2420000000000000000,"z":-11500000000000000000}},"30020837":{"solarSystemId":30020837,"solarSystemName":"E.JMW.3W1","location":{"x":-34100000000000000000,"y":-2200000000000000000,"z":-11700000000000000000}},"30020838":{"solarSystemId":30020838,"solarSystemName":"H.MTE.TX1","location":{"x":-36200000000000000000,"y":-2100000000000000000,"z":-11700000000000000000}},"30020839":{"solarSystemId":30020839,"solarSystemName":"M.CGW.LW3","location":{"x":-34300000000000000000,"y":-4520000000000000000,"z":-12000000000000000000}},"30020840":{"solarSystemId":30020840,"solarSystemName":"H.6MK.9E1","location":{"x":-35200000000000000000,"y":-2280000000000000000,"z":-11800000000000000000}},"30020841":{"solarSystemId":30020841,"solarSystemName":"I.5FK.1Y1","location":{"x":-35400000000000000000,"y":-2130000000000000000,"z":-12200000000000000000}},"30020842":{"solarSystemId":30020842,"solarSystemName":"D.04K.W52","location":{"x":-34700000000000000000,"y":-2520000000000000000,"z":-12700000000000000000}},"30020843":{"solarSystemId":30020843,"solarSystemName":"U.5RW.K12","location":{"x":-33900000000000000000,"y":-2380000000000000000,"z":-11000000000000000000}},"30020844":{"solarSystemId":30020844,"solarSystemName":"E.SDW.5M1","location":{"x":-34000000000000000000,"y":-1770000000000000000,"z":-11500000000000000000}},"30020845":{"solarSystemId":30020845,"solarSystemName":"D.RFK.4B2","location":{"x":-35400000000000000000,"y":-3100000000000000000,"z":-12100000000000000000}},"30020846":{"solarSystemId":30020846,"solarSystemName":"H.H6K.KL1","location":{"x":-34800000000000000000,"y":-1690000000000000000,"z":-11600000000000000000}},"30020847":{"solarSystemId":30020847,"solarSystemName":"I.WHK.WC1","location":{"x":-35500000000000000000,"y":-1760000000000000000,"z":-11500000000000000000}},"30020848":{"solarSystemId":30020848,"solarSystemName":"I.WXX.NV1","location":{"x":-30900000000000000000,"y":-1850000000000000000,"z":-11100000000000000000}},"30020849":{"solarSystemId":30020849,"solarSystemName":"D.GZX.L51","location":{"x":-31000000000000000000,"y":-1350000000000000000,"z":-11300000000000000000}},"30020850":{"solarSystemId":30020850,"solarSystemName":"O.SJY.JH1","location":{"x":-32000000000000000000,"y":-2050000000000000000,"z":-11000000000000000000}},"30020851":{"solarSystemId":30020851,"solarSystemName":"U.T3Y.HQ1","location":{"x":-31200000000000000000,"y":-1900000000000000000,"z":-10600000000000000000}},"30020852":{"solarSystemId":30020852,"solarSystemName":"S.Y3Y.P41","location":{"x":-31300000000000000000,"y":-1320000000000000000,"z":-10700000000000000000}},"30020853":{"solarSystemId":30020853,"solarSystemName":"D.P9Y.821","location":{"x":-31500000000000000000,"y":-1230000000000000000,"z":-10700000000000000000}},"30020854":{"solarSystemId":30020854,"solarSystemName":"H.ZWX.GL1","location":{"x":-31100000000000000000,"y":-1680000000000000000,"z":-11300000000000000000}},"30020855":{"solarSystemId":30020855,"solarSystemName":"R.08Y.VR1","location":{"x":-31400000000000000000,"y":-1640000000000000000,"z":-11400000000000000000}},"30020856":{"solarSystemId":30020856,"solarSystemName":"T.5RY.1D1","location":{"x":-31600000000000000000,"y":-1700000000000000000,"z":-11300000000000000000}},"30020857":{"solarSystemId":30020857,"solarSystemName":"H.1SY.HB1","location":{"x":-31500000000000000000,"y":-1970000000000000000,"z":-10400000000000000000}},"30020858":{"solarSystemId":30020858,"solarSystemName":"H.P4Y.H81","location":{"x":-31300000000000000000,"y":-1470000000000000000,"z":-10700000000000000000}},"30020859":{"solarSystemId":30020859,"solarSystemName":"D.MGY.E71","location":{"x":-32000000000000000000,"y":-1440000000000000000,"z":-9810000000000000000}},"30020860":{"solarSystemId":30020860,"solarSystemName":"T.Y6Z.GT1","location":{"x":-32500000000000000000,"y":-1580000000000000000,"z":-9800000000000000000}},"30020861":{"solarSystemId":30020861,"solarSystemName":"N.23Z.D11","location":{"x":-32400000000000000000,"y":-1210000000000000000,"z":-10300000000000000000}},"30020862":{"solarSystemId":30020862,"solarSystemName":"R.VTY.721","location":{"x":-31500000000000000000,"y":-1230000000000000000,"z":-9550000000000000000}},"30020863":{"solarSystemId":30020863,"solarSystemName":"D.JPZ.CD1","location":{"x":-33000000000000000000,"y":-1710000000000000000,"z":-9400000000000000000}},"30020864":{"solarSystemId":30020864,"solarSystemName":"R.YDY.D81","location":{"x":-31700000000000000000,"y":-1460000000000000000,"z":-9760000000000000000}},"30020865":{"solarSystemId":30020865,"solarSystemName":"I.QRY.S81","location":{"x":-31600000000000000000,"y":-1450000000000000000,"z":-9620000000000000000}},"30020866":{"solarSystemId":30020866,"solarSystemName":"E.2BY.2M1","location":{"x":-31900000000000000000,"y":-1770000000000000000,"z":-10000000000000000000}},"30020867":{"solarSystemId":30020867,"solarSystemName":"U.VYZ.281","location":{"x":-33300000000000000000,"y":-1440000000000000000,"z":-9620000000000000000}},"30020868":{"solarSystemId":30020868,"solarSystemName":"N.J3Z.HS1","location":{"x":-32400000000000000000,"y":-1540000000000000000,"z":-9730000000000000000}},"30020869":{"solarSystemId":30020869,"solarSystemName":"I.6YZ.F81","location":{"x":-33300000000000000000,"y":-1470000000000000000,"z":-9830000000000000000}},"30020870":{"solarSystemId":30020870,"solarSystemName":"L.S7Z.QY3","location":{"x":-32500000000000000000,"y":-4450000000000000000,"z":-7720000000000000000}},"30020871":{"solarSystemId":30020871,"solarSystemName":"T.FKY.K34","location":{"x":-32200000000000000000,"y":-4750000000000000000,"z":-8270000000000000000}},"30020872":{"solarSystemId":30020872,"solarSystemName":"D.4LJ.RZ3","location":{"x":-29300000000000000000,"y":-4480000000000000000,"z":-9680000000000000000}},"30020873":{"solarSystemId":30020873,"solarSystemName":"B.F2H.4M3","location":{"x":-27800000000000000000,"y":-4080000000000000000,"z":-10800000000000000000}},"30020874":{"solarSystemId":30020874,"solarSystemName":"B.BEX.0T4","location":{"x":-31100000000000000000,"y":-5010000000000000000,"z":-9250000000000000000}},"30020875":{"solarSystemId":30020875,"solarSystemName":"B.WYJ.SG4","location":{"x":-29800000000000000000,"y":-5450000000000000000,"z":-9250000000000000000}},"30020876":{"solarSystemId":30020876,"solarSystemName":"EH5-SN8","location":{"x":-35500000000000000000,"y":-1190000000000000000,"z":-40800000000000000000}},"30020877":{"solarSystemId":30020877,"solarSystemName":"OJ0-RM8","location":{"x":-35800000000000000000,"y":-1110000000000000000,"z":-39400000000000000000}},"30020878":{"solarSystemId":30020878,"solarSystemName":"IJQ-LH8","location":{"x":-33200000000000000000,"y":-4530000000000000000,"z":-36200000000000000000}},"30020879":{"solarSystemId":30020879,"solarSystemName":"O81-SL8","location":{"x":-37400000000000000000,"y":-947000000000000000,"z":-36800000000000000000}},"30020880":{"solarSystemId":30020880,"solarSystemName":"O39-VM8","location":{"x":-34700000000000000000,"y":-791000000000000000,"z":-40400000000000000000}},"30020881":{"solarSystemId":30020881,"solarSystemName":"ATJ-JQ8","location":{"x":-35600000000000000000,"y":-1050000000000000000,"z":-42700000000000000000}},"30020882":{"solarSystemId":30020882,"solarSystemName":"IV6-8P8","location":{"x":-32400000000000000000,"y":-4480000000000000000,"z":-43000000000000000000}},"30020883":{"solarSystemId":30020883,"solarSystemName":"U13-FJ8","location":{"x":-29800000000000000000,"y":-4530000000000000000,"z":-39300000000000000000}},"30020884":{"solarSystemId":30020884,"solarSystemName":"IVK-FJ8","location":{"x":-30000000000000000000,"y":-5900000000000000000,"z":-38900000000000000000}},"30020885":{"solarSystemId":30020885,"solarSystemName":"EV6-GN8","location":{"x":-31400000000000000000,"y":-3960000000000000000,"z":-42800000000000000000}},"30020886":{"solarSystemId":30020886,"solarSystemName":"EB8-1K8","location":{"x":-34800000000000000000,"y":-630000000000000000,"z":-36800000000000000000}},"30020887":{"solarSystemId":30020887,"solarSystemName":"Dabaran","location":{"x":-35900000000000000000,"y":-1580000000000000000,"z":-36400000000000000000}},"30020888":{"solarSystemId":30020888,"solarSystemName":"EJ6-SK8","location":{"x":-36600000000000000000,"y":-898000000000000000,"z":-36400000000000000000}},"30020889":{"solarSystemId":30020889,"solarSystemName":"AB8-7J8","location":{"x":-35100000000000000000,"y":-961000000000000000,"z":-35700000000000000000}},"30020890":{"solarSystemId":30020890,"solarSystemName":"E55-7L8","location":{"x":-35600000000000000000,"y":-1340000000000000000,"z":-37700000000000000000}},"30020891":{"solarSystemId":30020891,"solarSystemName":"O4V-KL8","location":{"x":-34600000000000000000,"y":-1030000000000000000,"z":-38900000000000000000}},"30020892":{"solarSystemId":30020892,"solarSystemName":"A8R-QK8","location":{"x":-34200000000000000000,"y":-1400000000000000000,"z":-38200000000000000000}},"30020893":{"solarSystemId":30020893,"solarSystemName":"AM2-8M8","location":{"x":-35300000000000000000,"y":-856000000000000000,"z":-39100000000000000000}},"30020894":{"solarSystemId":30020894,"solarSystemName":"ITJ-TK8","location":{"x":-33700000000000000000,"y":-1050000000000000000,"z":-38700000000000000000}},"30020895":{"solarSystemId":30020895,"solarSystemName":"AJ6-3K8","location":{"x":-33600000000000000000,"y":-1000000000000000000,"z":-37800000000000000000}},"30020896":{"solarSystemId":30020896,"solarSystemName":"I44-FN8","location":{"x":-51400000000000000000,"y":-4700000000000000000,"z":-1460000000000000000}},"30020897":{"solarSystemId":30020897,"solarSystemName":"ESB-DP8","location":{"x":-52200000000000000000,"y":-4810000000000000000,"z":-527000000000000000}},"30020898":{"solarSystemId":30020898,"solarSystemName":"EQT-DP8","location":{"x":-52000000000000000000,"y":-5700000000000000000,"z":-41700000000000000}},"30020899":{"solarSystemId":30020899,"solarSystemName":"A0F-SN8","location":{"x":-51600000000000000000,"y":-5280000000000000000,"z":-427000000000000000}},"30020900":{"solarSystemId":30020900,"solarSystemName":"ISP-8P8","location":{"x":-52400000000000000000,"y":-4650000000000000000,"z":-2660000000000000000}},"30020901":{"solarSystemId":30020901,"solarSystemName":"EFT-FR8","location":{"x":-53900000000000000000,"y":-7120000000000000000,"z":-380000000000000000}},"30020902":{"solarSystemId":30020902,"solarSystemName":"O44-JR8","location":{"x":-54100000000000000000,"y":-7770000000000000000,"z":-2350000000000000000}},"30020903":{"solarSystemId":30020903,"solarSystemName":"IGV-JR8","location":{"x":-54000000000000000000,"y":-5690000000000000000,"z":1280000000000000000}},"30020904":{"solarSystemId":30020904,"solarSystemName":"EC8-MP8","location":{"x":-52300000000000000000,"y":-6540000000000000000,"z":-511000000000000000}},"30020905":{"solarSystemId":30020905,"solarSystemName":"ERH-FQ8","location":{"x":-52800000000000000000,"y":-6600000000000000000,"z":404000000000000000}},"30020906":{"solarSystemId":30020906,"solarSystemName":"O60-HM8","location":{"x":-50400000000000000000,"y":-6480000000000000000,"z":-3130000000000000000}},"30020907":{"solarSystemId":30020907,"solarSystemName":"EC8-BM8","location":{"x":-50200000000000000000,"y":-6260000000000000000,"z":-3290000000000000000}},"30020908":{"solarSystemId":30020908,"solarSystemName":"EKD-7L8","location":{"x":-49500000000000000000,"y":-4970000000000000000,"z":-3090000000000000000}},"30020909":{"solarSystemId":30020909,"solarSystemName":"ECM-6M8","location":{"x":-50300000000000000000,"y":-4820000000000000000,"z":-2330000000000000000}},"30020910":{"solarSystemId":30020910,"solarSystemName":"UK1-VM8","location":{"x":-51200000000000000000,"y":-5020000000000000000,"z":-3490000000000000000}},"30020911":{"solarSystemId":30020911,"solarSystemName":"EP3-NP8","location":{"x":-52500000000000000000,"y":-4090000000000000000,"z":448000000000000000}},"30020912":{"solarSystemId":30020912,"solarSystemName":"OCM-9Q8","location":{"x":-53100000000000000000,"y":-4040000000000000000,"z":194000000000000000}},"30020913":{"solarSystemId":30020913,"solarSystemName":"Nasr","location":{"x":-53000000000000000000,"y":-4540000000000000000,"z":466000000000000000}},"30020914":{"solarSystemId":30020914,"solarSystemName":"IGH-VQ8","location":{"x":-53600000000000000000,"y":-4350000000000000000,"z":343000000000000000}},"30020915":{"solarSystemId":30020915,"solarSystemName":"A65-4Q8","location":{"x":-52800000000000000000,"y":-4220000000000000000,"z":427000000000000000}},"30020916":{"solarSystemId":30020916,"solarSystemName":"INF-1R8","location":{"x":-53800000000000000000,"y":-5160000000000000000,"z":-994000000000000000}},"30020917":{"solarSystemId":30020917,"solarSystemName":"OLR-0Q8","location":{"x":-52600000000000000000,"y":-6070000000000000000,"z":-290000000000000000}},"30020918":{"solarSystemId":30020918,"solarSystemName":"ODG-RQ8","location":{"x":-53700000000000000000,"y":-4410000000000000000,"z":-1560000000000000000}},"30020919":{"solarSystemId":30020919,"solarSystemName":"EG4-3R8","location":{"x":-53800000000000000000,"y":-4670000000000000000,"z":134000000000000000}},"30020920":{"solarSystemId":30020920,"solarSystemName":"O4H-SP8","location":{"x":-52700000000000000000,"y":-5160000000000000000,"z":-977000000000000000}},"30020921":{"solarSystemId":30020921,"solarSystemName":"L.6XE.YR1","location":{"x":-36700000000000000000,"y":-1650000000000000000,"z":-7760000000000000000}},"30020922":{"solarSystemId":30020922,"solarSystemName":"H.H01.NPZ","location":{"x":-37800000000000000000,"y":-1030000000000000000,"z":-7520000000000000000}},"30020923":{"solarSystemId":30020923,"solarSystemName":"A.H01.FB1","location":{"x":-37800000000000000000,"y":-1970000000000000000,"z":-7460000000000000000}},"30020924":{"solarSystemId":30020924,"solarSystemName":"E.C01.LW1","location":{"x":-37500000000000000000,"y":-2210000000000000000,"z":-6070000000000000000}},"30020925":{"solarSystemId":30020925,"solarSystemName":"H.FJE.7Q1","location":{"x":-36700000000000000000,"y":-1880000000000000000,"z":-7510000000000000000}},"30020926":{"solarSystemId":30020926,"solarSystemName":"H.801.YD1","location":{"x":-37200000000000000000,"y":-1720000000000000000,"z":-6600000000000000000}},"30020927":{"solarSystemId":30020927,"solarSystemName":"C.311.7NB","location":{"x":-38200000000000000000,"y":-806000000000000000,"z":-7990000000000000000}},"30020928":{"solarSystemId":30020928,"solarSystemName":"C.T01.F21","location":{"x":-37300000000000000000,"y":-1250000000000000000,"z":-7490000000000000000}},"30020929":{"solarSystemId":30020929,"solarSystemName":"U.251.B44","location":{"x":-42800000000000000000,"y":-4780000000000000000,"z":-6200000000000000000}},"30020930":{"solarSystemId":30020930,"solarSystemName":"A.731.QL3","location":{"x":-40600000000000000000,"y":-3990000000000000000,"z":-7160000000000000000}},"30020931":{"solarSystemId":30020931,"solarSystemName":"T.M41.BX2","location":{"x":-42100000000000000000,"y":-3270000000000000000,"z":-5810000000000000000}},"30020932":{"solarSystemId":30020932,"solarSystemName":"R.631.M23","location":{"x":-40600000000000000000,"y":-3550000000000000000,"z":-5010000000000000000}},"30020933":{"solarSystemId":30020933,"solarSystemName":"E.K41.YW2","location":{"x":-42600000000000000000,"y":-3380000000000000000,"z":-5840000000000000000}},"30020934":{"solarSystemId":30020934,"solarSystemName":"B.W31.6J1","location":{"x":-41400000000000000000,"y":-2060000000000000000,"z":-6180000000000000000}},"30020935":{"solarSystemId":30020935,"solarSystemName":"C.C11.PT3","location":{"x":-38600000000000000000,"y":-3880000000000000000,"z":-7440000000000000000}},"30020936":{"solarSystemId":30020936,"solarSystemName":"U.631.N01","location":{"x":-40600000000000000000,"y":-1170000000000000000,"z":-7840000000000000000}},"30020937":{"solarSystemId":30020937,"solarSystemName":"S.721.D0K","location":{"x":-39500000000000000000,"y":-1080000000000000000,"z":-8820000000000000000}},"30020938":{"solarSystemId":30020938,"solarSystemName":"N.J31.16W","location":{"x":-41300000000000000000,"y":-1050000000000000000,"z":-6820000000000000000}},"30020939":{"solarSystemId":30020939,"solarSystemName":"S.S41.TDY","location":{"x":-41900000000000000000,"y":-990000000000000000,"z":-7110000000000000000}},"30020940":{"solarSystemId":30020940,"solarSystemName":"A.G21.LQ2","location":{"x":-40000000000000000000,"y":95100000000000000,"z":-7340000000000000000}},"30020941":{"solarSystemId":30020941,"solarSystemName":"O.121.BB8","location":{"x":-39300000000000000000,"y":-314000000000000000,"z":-6490000000000000000}},"30020942":{"solarSystemId":30020942,"solarSystemName":"O.Y21.59S","location":{"x":-40200000000000000000,"y":371000000000000000,"z":-8670000000000000000}},"30020943":{"solarSystemId":30020943,"solarSystemName":"C.S21.QQG","location":{"x":-39600000000000000000,"y":-852000000000000000,"z":-8410000000000000000}},"30020944":{"solarSystemId":30020944,"solarSystemName":"E.V11.7X1","location":{"x":-38700000000000000000,"y":-2100000000000000000,"z":-5400000000000000000}},"30020945":{"solarSystemId":30020945,"solarSystemName":"R.Z11.YK1","location":{"x":-39100000000000000000,"y":-2260000000000000000,"z":-5660000000000000000}},"30020946":{"solarSystemId":30020946,"solarSystemName":"U.G11.F33","location":{"x":-38900000000000000000,"y":-3590000000000000000,"z":-4420000000000000000}},"30020947":{"solarSystemId":30020947,"solarSystemName":"T.R21.Y72","location":{"x":-39700000000000000000,"y":-2590000000000000000,"z":-5260000000000000000}},"30020948":{"solarSystemId":30020948,"solarSystemName":"N.F01.181","location":{"x":-37700000000000000000,"y":-1440000000000000000,"z":-5600000000000000000}},"30020949":{"solarSystemId":30020949,"solarSystemName":"C.D11.6CY","location":{"x":-38600000000000000000,"y":-991000000000000000,"z":-5650000000000000000}},"30020950":{"solarSystemId":30020950,"solarSystemName":"B.M11.331","location":{"x":-38700000000000000000,"y":-1260000000000000000,"z":-5450000000000000000}},"30020951":{"solarSystemId":30020951,"solarSystemName":"C.921.LQ1","location":{"x":-39500000000000000000,"y":-1890000000000000000,"z":-6370000000000000000}},"30020952":{"solarSystemId":30020952,"solarSystemName":"U.E11.KH1","location":{"x":-39200000000000000000,"y":-2050000000000000000,"z":-5020000000000000000}},"30020953":{"solarSystemId":30020953,"solarSystemName":"L.831.2M1","location":{"x":-40700000000000000000,"y":-1770000000000000000,"z":-4180000000000000000}},"30020954":{"solarSystemId":30020954,"solarSystemName":"S.L31.TDK","location":{"x":-40900000000000000000,"y":-1100000000000000000,"z":-5130000000000000000}},"30020955":{"solarSystemId":30020955,"solarSystemName":"T.J31.GC2","location":{"x":-41300000000000000000,"y":-2910000000000000000,"z":-3810000000000000000}},"30020956":{"solarSystemId":30020956,"solarSystemName":"O.L11.FPK","location":{"x":-38600000000000000000,"y":-1100000000000000000,"z":-5070000000000000000}},"30020957":{"solarSystemId":30020957,"solarSystemName":"M.721.9XB","location":{"x":-39500000000000000000,"y":-822000000000000000,"z":-5150000000000000000}},"30020958":{"solarSystemId":30020958,"solarSystemName":"M.Y11.SL1","location":{"x":-39000000000000000000,"y":-1670000000000000000,"z":-4800000000000000000}},"30020959":{"solarSystemId":30020959,"solarSystemName":"O.D21.561","location":{"x":-39800000000000000000,"y":-1380000000000000000,"z":-4890000000000000000}},"30020960":{"solarSystemId":30020960,"solarSystemName":"M.421.D61","location":{"x":-39400000000000000000,"y":-1390000000000000000,"z":-5200000000000000000}},"30020961":{"solarSystemId":30020961,"solarSystemName":"U.X51.BH1","location":{"x":-43600000000000000000,"y":-2040000000000000000,"z":-21400000000000000000}},"30020962":{"solarSystemId":30020962,"solarSystemName":"A.L51.PK1","location":{"x":-43200000000000000000,"y":-2250000000000000000,"z":-23400000000000000000}},"30020963":{"solarSystemId":30020963,"solarSystemName":"E.W61.9W1","location":{"x":-44900000000000000000,"y":-2210000000000000000,"z":-21000000000000000000}},"30020964":{"solarSystemId":30020964,"solarSystemName":"T.061.0F1","location":{"x":-43800000000000000000,"y":-1910000000000000000,"z":-21900000000000000000}},"30020965":{"solarSystemId":30020965,"solarSystemName":"I.C61.552","location":{"x":-44400000000000000000,"y":-2490000000000000000,"z":-21300000000000000000}},"30020966":{"solarSystemId":30020966,"solarSystemName":"I.V51.RJ2","location":{"x":-43400000000000000000,"y":-3220000000000000000,"z":-21600000000000000000}},"30020967":{"solarSystemId":30020967,"solarSystemName":"E.H01.BVE","location":{"x":-37800000000000000000,"y":-1140000000000000000,"z":-23800000000000000000}},"30020968":{"solarSystemId":30020968,"solarSystemName":"H.Q21.GKX","location":{"x":-39900000000000000000,"y":-971000000000000000,"z":-24600000000000000000}},"30020969":{"solarSystemId":30020969,"solarSystemName":"U.N01.T81","location":{"x":-37400000000000000000,"y":-1450000000000000000,"z":-24300000000000000000}},"30020970":{"solarSystemId":30020970,"solarSystemName":"M.E21.00P","location":{"x":-40300000000000000000,"y":-649000000000000000,"z":-25100000000000000000}},"30020971":{"solarSystemId":30020971,"solarSystemName":"O.S11.1C6","location":{"x":-38400000000000000000,"y":-234000000000000000,"z":-24800000000000000000}},"30020972":{"solarSystemId":30020972,"solarSystemName":"O.911.0KQ","location":{"x":-38400000000000000000,"y":-754000000000000000,"z":-23600000000000000000}},"30020973":{"solarSystemId":30020973,"solarSystemName":"A.TNE.WRX","location":{"x":-36200000000000000000,"y":-952000000000000000,"z":-23700000000000000000}},"30020974":{"solarSystemId":30020974,"solarSystemName":"R.C2E.Y81","location":{"x":-35800000000000000000,"y":-1470000000000000000,"z":-23700000000000000000}},"30020975":{"solarSystemId":30020975,"solarSystemName":"D.3KK.H21","location":{"x":-35700000000000000000,"y":-1250000000000000000,"z":-24000000000000000000}},"30020976":{"solarSystemId":30020976,"solarSystemName":"I.ZRE.Y21","location":{"x":-36200000000000000000,"y":-1260000000000000000,"z":-23100000000000000000}},"30020977":{"solarSystemId":30020977,"solarSystemName":"M.EME.M71","location":{"x":-36400000000000000000,"y":-1420000000000000000,"z":-23300000000000000000}},"30020978":{"solarSystemId":30020978,"solarSystemName":"M.ZLE.661","location":{"x":-36300000000000000000,"y":-1380000000000000000,"z":-23400000000000000000}},"30020979":{"solarSystemId":30020979,"solarSystemName":"S.H21.H42","location":{"x":-40100000000000000000,"y":-2480000000000000000,"z":-22200000000000000000}},"30020980":{"solarSystemId":30020980,"solarSystemName":"E.B21.LV1","location":{"x":-40000000000000000000,"y":-1850000000000000000,"z":-23400000000000000000}},"30020981":{"solarSystemId":30020981,"solarSystemName":"H.Q21.L31","location":{"x":-39900000000000000000,"y":-1280000000000000000,"z":-24200000000000000000}},"30020982":{"solarSystemId":30020982,"solarSystemName":"T.Z21.MM1","location":{"x":-40200000000000000000,"y":-1780000000000000000,"z":-22000000000000000000}},"30020983":{"solarSystemId":30020983,"solarSystemName":"N.C31.E91","location":{"x":-40900000000000000000,"y":-1510000000000000000,"z":-23500000000000000000}},"30020984":{"solarSystemId":30020984,"solarSystemName":"A.231.CF2","location":{"x":-40400000000000000000,"y":-3080000000000000000,"z":-23400000000000000000}},"30020985":{"solarSystemId":30020985,"solarSystemName":"A.961.TC4","location":{"x":-44200000000000000000,"y":-163000000000000000,"z":-24700000000000000000}},"30020986":{"solarSystemId":30020986,"solarSystemName":"S.551.LL2","location":{"x":-42900000000000000000,"y":-2830000000000000000,"z":-24200000000000000000}},"30020987":{"solarSystemId":30020987,"solarSystemName":"U.641.S52","location":{"x":-41700000000000000000,"y":-2500000000000000000,"z":-25100000000000000000}},"30020988":{"solarSystemId":30020988,"solarSystemName":"E.441.TE1","location":{"x":-41700000000000000000,"y":-2280000000000000000,"z":-23600000000000000000}},"30020989":{"solarSystemId":30020989,"solarSystemName":"S.Z51.C23","location":{"x":-43700000000000000000,"y":-3550000000000000000,"z":-25200000000000000000}},"30020990":{"solarSystemId":30020990,"solarSystemName":"I.N51.2P1","location":{"x":-43100000000000000000,"y":-1800000000000000000,"z":-24100000000000000000}},"30020991":{"solarSystemId":30020991,"solarSystemName":"N.D3E.4G1","location":{"x":-35900000000000000000,"y":-1990000000000000000,"z":-23400000000000000000}},"30020992":{"solarSystemId":30020992,"solarSystemName":"R.91E.WC1","location":{"x":-35800000000000000000,"y":-1760000000000000000,"z":-23200000000000000000}},"30020993":{"solarSystemId":30020993,"solarSystemName":"H.8LE.1D1","location":{"x":-36300000000000000000,"y":-1690000000000000000,"z":-23500000000000000000}},"30020994":{"solarSystemId":30020994,"solarSystemName":"N.FWE.HV1","location":{"x":-36800000000000000000,"y":-1870000000000000000,"z":-23200000000000000000}},"30020995":{"solarSystemId":30020995,"solarSystemName":"H.TVE.9Q1","location":{"x":-36400000000000000000,"y":-1880000000000000000,"z":-23200000000000000000}},"30020996":{"solarSystemId":30020996,"solarSystemName":"S.SQE.FX1","location":{"x":-36500000000000000000,"y":-2110000000000000000,"z":-22800000000000000000}},"30020997":{"solarSystemId":30020997,"solarSystemName":"H.2FE.3L1","location":{"x":-36500000000000000000,"y":-1660000000000000000,"z":-24000000000000000000}},"30020998":{"solarSystemId":30020998,"solarSystemName":"I.YRE.CL1","location":{"x":-36200000000000000000,"y":-1680000000000000000,"z":-24300000000000000000}},"30020999":{"solarSystemId":30020999,"solarSystemName":"T.T1E.QV1","location":{"x":-35800000000000000000,"y":-1860000000000000000,"z":-23600000000000000000}},"30021000":{"solarSystemId":30021000,"solarSystemName":"T.L7E.NN1","location":{"x":-36000000000000000000,"y":-1600000000000000000,"z":-24000000000000000000}},"30021001":{"solarSystemId":30021001,"solarSystemName":"N.401.3S2","location":{"x":-37000000000000000000,"y":-2670000000000000000,"z":-24000000000000000000}},"30021002":{"solarSystemId":30021002,"solarSystemName":"E.G01.803","location":{"x":-37700000000000000000,"y":-3470000000000000000,"z":-23900000000000000000}},"30021003":{"solarSystemId":30021003,"solarSystemName":"ENS-0M8","location":{"x":-48800000000000000000,"y":-2200000000000000000,"z":-19200000000000000000}},"30021004":{"solarSystemId":30021004,"solarSystemName":"EB2-PM8","location":{"x":-49500000000000000000,"y":-3340000000000000000,"z":-19300000000000000000}},"30021005":{"solarSystemId":30021005,"solarSystemName":"ODT-QL8","location":{"x":-48900000000000000000,"y":-2960000000000000000,"z":-18300000000000000000}},"30021006":{"solarSystemId":30021006,"solarSystemName":"A2G-DM8","location":{"x":-49100000000000000000,"y":-2620000000000000000,"z":-19400000000000000000}},"30021007":{"solarSystemId":30021007,"solarSystemName":"ACM-0N8","location":{"x":-50200000000000000000,"y":-2880000000000000000,"z":-18300000000000000000}},"30021008":{"solarSystemId":30021008,"solarSystemName":"ULR-LM8","location":{"x":-49500000000000000000,"y":-3370000000000000000,"z":-18900000000000000000}},"30021009":{"solarSystemId":30021009,"solarSystemName":"ON8-9K8","location":{"x":-48800000000000000000,"y":-3530000000000000000,"z":-11100000000000000000}},"30021010":{"solarSystemId":30021010,"solarSystemName":"AKD-4H8","location":{"x":-47000000000000000000,"y":-1490000000000000000,"z":-10800000000000000000}},"30021011":{"solarSystemId":30021011,"solarSystemName":"ICG-CK8","location":{"x":-49000000000000000000,"y":-2380000000000000000,"z":-11700000000000000000}},"30021012":{"solarSystemId":30021012,"solarSystemName":"E92-SH8","location":{"x":-47500000000000000000,"y":-2740000000000000000,"z":-11600000000000000000}},"30021013":{"solarSystemId":30021013,"solarSystemName":"EGB-FJ8","location":{"x":-47900000000000000000,"y":-3210000000000000000,"z":-12600000000000000000}},"30021014":{"solarSystemId":30021014,"solarSystemName":"EBM-3J8","location":{"x":-47900000000000000000,"y":-1430000000000000000,"z":-11200000000000000000}},"30021015":{"solarSystemId":30021015,"solarSystemName":"OHC-JJ8","location":{"x":-47800000000000000000,"y":-2270000000000000000,"z":-14000000000000000000}},"30021016":{"solarSystemId":30021016,"solarSystemName":"OTQ-NJ8","location":{"x":-47900000000000000000,"y":-2300000000000000000,"z":-14500000000000000000}},"30021017":{"solarSystemId":30021017,"solarSystemName":"IFH-VH8","location":{"x":-47500000000000000000,"y":-1390000000000000000,"z":-13400000000000000000}},"30021018":{"solarSystemId":30021018,"solarSystemName":"E0S-8H8","location":{"x":-46900000000000000000,"y":-342000000000000000,"z":-13300000000000000000}},"30021019":{"solarSystemId":30021019,"solarSystemName":"E92-LJ8","location":{"x":-47800000000000000000,"y":244000000000000000,"z":-15000000000000000000}},"30021020":{"solarSystemId":30021020,"solarSystemName":"UFB-TG8","location":{"x":-46800000000000000000,"y":-322000000000000000,"z":-11600000000000000000}},"30021021":{"solarSystemId":30021021,"solarSystemName":"A7K-6L8","location":{"x":-49500000000000000000,"y":-3180000000000000000,"z":-13300000000000000000}},"30021022":{"solarSystemId":30021022,"solarSystemName":"EN8-3L8","location":{"x":-49300000000000000000,"y":-3240000000000000000,"z":-13800000000000000000}},"30021023":{"solarSystemId":30021023,"solarSystemName":"AGP-DM8","location":{"x":-50100000000000000000,"y":-3610000000000000000,"z":-15000000000000000000}},"30021024":{"solarSystemId":30021024,"solarSystemName":"ERH-QK8","location":{"x":-49200000000000000000,"y":-2720000000000000000,"z":-12800000000000000000}},"30021025":{"solarSystemId":30021025,"solarSystemName":"IRV-6M8","location":{"x":-50300000000000000000,"y":-3400000000000000000,"z":-13200000000000000000}},"30021026":{"solarSystemId":30021026,"solarSystemName":"EJC-TL8","location":{"x":-50000000000000000000,"y":-2670000000000000000,"z":-13900000000000000000}},"30021027":{"solarSystemId":30021027,"solarSystemName":"OV6-NM8","location":{"x":-50200000000000000000,"y":-3140000000000000000,"z":-16600000000000000000}},"30021028":{"solarSystemId":30021028,"solarSystemName":"OC3-3M8","location":{"x":-49600000000000000000,"y":-3290000000000000000,"z":-16200000000000000000}},"30021029":{"solarSystemId":30021029,"solarSystemName":"IGB-BN8","location":{"x":-50600000000000000000,"y":-2980000000000000000,"z":-18000000000000000000}},"30021030":{"solarSystemId":30021030,"solarSystemName":"ATJ-7N8","location":{"x":-50800000000000000000,"y":-3100000000000000000,"z":-16900000000000000000}},"30021031":{"solarSystemId":30021031,"solarSystemName":"O34-MM8","location":{"x":-50200000000000000000,"y":-2730000000000000000,"z":-16800000000000000000}},"30021032":{"solarSystemId":30021032,"solarSystemName":"UDN-PK8","location":{"x":-48700000000000000000,"y":-2680000000000000000,"z":-15300000000000000000}},"30021033":{"solarSystemId":30021033,"solarSystemName":"E7Q-FL8","location":{"x":-49200000000000000000,"y":-2780000000000000000,"z":-16000000000000000000}},"30021034":{"solarSystemId":30021034,"solarSystemName":"ELL-RK8","location":{"x":-48700000000000000000,"y":-2810000000000000000,"z":-15600000000000000000}},"30021035":{"solarSystemId":30021035,"solarSystemName":"IL7-0L8","location":{"x":-48900000000000000000,"y":-2920000000000000000,"z":-15400000000000000000}},"30021036":{"solarSystemId":30021036,"solarSystemName":"AMF-BL8","location":{"x":-49200000000000000000,"y":-2490000000000000000,"z":-15700000000000000000}},"30021037":{"solarSystemId":30021037,"solarSystemName":"OVK-1L8","location":{"x":-48800000000000000000,"y":-2580000000000000000,"z":-16200000000000000000}},"30021038":{"solarSystemId":30021038,"solarSystemName":"ECM-DL8","location":{"x":-49100000000000000000,"y":-2710000000000000000,"z":-16400000000000000000}},"30021039":{"solarSystemId":30021039,"solarSystemName":"ADT-1L8","location":{"x":-48600000000000000000,"y":-2890000000000000000,"z":-16900000000000000000}},"30021040":{"solarSystemId":30021040,"solarSystemName":"ENS-6L8","location":{"x":-48700000000000000000,"y":-2930000000000000000,"z":-17100000000000000000}},"30021041":{"solarSystemId":30021041,"solarSystemName":"E76-BL8","location":{"x":-49000000000000000000,"y":-2770000000000000000,"z":-16300000000000000000}},"30021042":{"solarSystemId":30021042,"solarSystemName":"E4B-GL8","location":{"x":-49000000000000000000,"y":-2560000000000000000,"z":-17000000000000000000}},"30021043":{"solarSystemId":30021043,"solarSystemName":"I6C-CM8","location":{"x":-49700000000000000000,"y":-2560000000000000000,"z":-17000000000000000000}},"30021044":{"solarSystemId":30021044,"solarSystemName":"E1M-7G8","location":{"x":-45500000000000000000,"y":-7680000000000000000,"z":-8850000000000000000}},"30021045":{"solarSystemId":30021045,"solarSystemName":"Airgetlam","location":{"x":-46500000000000000000,"y":-7450000000000000000,"z":-15400000000000000000}},"30021046":{"solarSystemId":30021046,"solarSystemName":"IG5-6J8","location":{"x":-47100000000000000000,"y":-7920000000000000000,"z":-11100000000000000000}},"30021047":{"solarSystemId":30021047,"solarSystemName":"OL2-CH8","location":{"x":-46200000000000000000,"y":-8220000000000000000,"z":-11100000000000000000}},"30021048":{"solarSystemId":30021048,"solarSystemName":"I29-RJ8","location":{"x":-47800000000000000000,"y":-8080000000000000000,"z":-7610000000000000000}},"30021049":{"solarSystemId":30021049,"solarSystemName":"Caecus","location":{"x":-57700000000000000000,"y":-1560000000000000000,"z":-14500000000000000000}},"30021050":{"solarSystemId":30021050,"solarSystemName":"E6B-8V8","location":{"x":-58600000000000000000,"y":-1940000000000000000,"z":-15700000000000000000}},"30021051":{"solarSystemId":30021051,"solarSystemName":"E5V-2S8","location":{"x":-55200000000000000000,"y":-1130000000000000000,"z":-15000000000000000000}},"30021052":{"solarSystemId":30021052,"solarSystemName":"EGH-8T8","location":{"x":-56700000000000000000,"y":-1770000000000000000,"z":-16100000000000000000}},"30021053":{"solarSystemId":30021053,"solarSystemName":"ILD-MR8","location":{"x":-54500000000000000000,"y":-1850000000000000000,"z":-15900000000000000000}},"30021054":{"solarSystemId":30021054,"solarSystemName":"EHB-419","location":{"x":-63300000000000000000,"y":-1490000000000000000,"z":-10700000000000000000}},"30021055":{"solarSystemId":30021055,"solarSystemName":"ED8-M19","location":{"x":-64800000000000000000,"y":-1940000000000000000,"z":-12500000000000000000}},"30021056":{"solarSystemId":30021056,"solarSystemName":"OLK-K19","location":{"x":-64500000000000000000,"y":-2180000000000000000,"z":-13800000000000000000}},"30021057":{"solarSystemId":30021057,"solarSystemName":"IVP-229","location":{"x":-65900000000000000000,"y":-713000000000000000,"z":-12300000000000000000}},"30021058":{"solarSystemId":30021058,"solarSystemName":"I28-C19","location":{"x":-63600000000000000000,"y":-647000000000000000,"z":-14000000000000000000}},"30021059":{"solarSystemId":30021059,"solarSystemName":"ESN-519","location":{"x":-62300000000000000000,"y":-2390000000000000000,"z":-18600000000000000000}},"30021060":{"solarSystemId":30021060,"solarSystemName":"EMR-ST8","location":{"x":-57400000000000000000,"y":-2620000000000000000,"z":-18200000000000000000}},"30021061":{"solarSystemId":30021061,"solarSystemName":"A28-K09","location":{"x":-60800000000000000000,"y":-2230000000000000000,"z":-18100000000000000000}},"30021062":{"solarSystemId":30021062,"solarSystemName":"EV5-V19","location":{"x":-65200000000000000000,"y":-1740000000000000000,"z":-16100000000000000000}},"30021063":{"solarSystemId":30021063,"solarSystemName":"OP8-LV8","location":{"x":-59100000000000000000,"y":-2240000000000000000,"z":-16600000000000000000}},"30021064":{"solarSystemId":30021064,"solarSystemName":"IB7-B29","location":{"x":-67300000000000000000,"y":-1720000000000000000,"z":-13900000000000000000}},"30021065":{"solarSystemId":30021065,"solarSystemName":"ETB-629","location":{"x":-66800000000000000000,"y":-1320000000000000000,"z":-13700000000000000000}},"30021066":{"solarSystemId":30021066,"solarSystemName":"ESH-F29","location":{"x":-67700000000000000000,"y":-2020000000000000000,"z":-15100000000000000000}},"30021067":{"solarSystemId":30021067,"solarSystemName":"U7J-029","location":{"x":-65700000000000000000,"y":-1880000000000000000,"z":-13000000000000000000}},"30021068":{"solarSystemId":30021068,"solarSystemName":"IMD-429","location":{"x":-65900000000000000000,"y":-2220000000000000000,"z":-14300000000000000000}},"30021069":{"solarSystemId":30021069,"solarSystemName":"O01-739","location":{"x":-77300000000000000000,"y":-4400000000000000000,"z":-17500000000000000000}},"30021070":{"solarSystemId":30021070,"solarSystemName":"OD8-739","location":{"x":-77500000000000000000,"y":-4300000000000000000,"z":-17000000000000000000}},"30021071":{"solarSystemId":30021071,"solarSystemName":"UCF-V19","location":{"x":-65600000000000000000,"y":-1790000000000000000,"z":-12600000000000000000}},"30021072":{"solarSystemId":30021072,"solarSystemName":"EN2-R09","location":{"x":-60500000000000000000,"y":-1640000000000000000,"z":-21900000000000000000}},"30021073":{"solarSystemId":30021073,"solarSystemName":"E65-J09","location":{"x":-60100000000000000000,"y":-3630000000000000000,"z":-20200000000000000000}},"30021074":{"solarSystemId":30021074,"solarSystemName":"UN7-319","location":{"x":-62000000000000000000,"y":-2110000000000000000,"z":-18900000000000000000}},"30021075":{"solarSystemId":30021075,"solarSystemName":"E86-F19","location":{"x":-62300000000000000000,"y":-2610000000000000000,"z":-21500000000000000000}},"30021076":{"solarSystemId":30021076,"solarSystemName":"AJB-T19","location":{"x":-64200000000000000000,"y":-2810000000000000000,"z":-20200000000000000000}},"30021077":{"solarSystemId":30021077,"solarSystemName":"IRN-KV8","location":{"x":-58300000000000000000,"y":-1790000000000000000,"z":-20000000000000000000}},"30021078":{"solarSystemId":30021078,"solarSystemName":"E12-709","location":{"x":-59300000000000000000,"y":-1860000000000000000,"z":-20300000000000000000}},"30021079":{"solarSystemId":30021079,"solarSystemName":"OPM-NT8","location":{"x":-56800000000000000000,"y":-1850000000000000000,"z":-19200000000000000000}},"30021080":{"solarSystemId":30021080,"solarSystemName":"OFT-JV8","location":{"x":-58700000000000000000,"y":-1950000000000000000,"z":-17800000000000000000}},"30021081":{"solarSystemId":30021081,"solarSystemName":"UL1-VV8","location":{"x":-58800000000000000000,"y":-696000000000000000,"z":-20300000000000000000}},"30021082":{"solarSystemId":30021082,"solarSystemName":"AJP-H29","location":{"x":-68700000000000000000,"y":-1400000000000000000,"z":-10700000000000000000}},"30021083":{"solarSystemId":30021083,"solarSystemName":"I0D-929","location":{"x":-67500000000000000000,"y":-1370000000000000000,"z":-10800000000000000000}},"30021084":{"solarSystemId":30021084,"solarSystemName":"ALQ-S19","location":{"x":-65600000000000000000,"y":-1600000000000000000,"z":-12000000000000000000}},"30021085":{"solarSystemId":30021085,"solarSystemName":"O01-F29","location":{"x":-68200000000000000000,"y":-302000000000000000,"z":-10400000000000000000}},"30021086":{"solarSystemId":30021086,"solarSystemName":"A2F-D29","location":{"x":-68100000000000000000,"y":-266000000000000000,"z":-10300000000000000000}},"30021087":{"solarSystemId":30021087,"solarSystemName":"OQ3-G29","location":{"x":-66800000000000000000,"y":-3030000000000000000,"z":6190000000000000000}},"30021088":{"solarSystemId":30021088,"solarSystemName":"OGT-M29","location":{"x":-68300000000000000000,"y":-1400000000000000000,"z":5090000000000000000}},"30021089":{"solarSystemId":30021089,"solarSystemName":"EQ8-P29","location":{"x":-68500000000000000000,"y":-2560000000000000000,"z":6420000000000000000}},"30021090":{"solarSystemId":30021090,"solarSystemName":"O75-T29","location":{"x":-70000000000000000000,"y":-3410000000000000000,"z":5980000000000000000}},"30021091":{"solarSystemId":30021091,"solarSystemName":"U17-R29","location":{"x":-69400000000000000000,"y":-2620000000000000000,"z":5470000000000000000}},"30021092":{"solarSystemId":30021092,"solarSystemName":"E6V-839","location":{"x":-77100000000000000000,"y":1120000000000000000,"z":8250000000000000000}},"30021093":{"solarSystemId":30021093,"solarSystemName":"OFM-339","location":{"x":-71500000000000000000,"y":-2440000000000000000,"z":8440000000000000000}},"30021094":{"solarSystemId":30021094,"solarSystemName":"EP2-539","location":{"x":-73900000000000000000,"y":-1600000000000000000,"z":6620000000000000000}},"30021095":{"solarSystemId":30021095,"solarSystemName":"IL6-939","location":{"x":-77800000000000000000,"y":-722000000000000000,"z":6870000000000000000}},"30021096":{"solarSystemId":30021096,"solarSystemName":"E49-239","location":{"x":-70800000000000000000,"y":-2160000000000000000,"z":9390000000000000000}},"30021097":{"solarSystemId":30021097,"solarSystemName":"IG9-B39","location":{"x":-78800000000000000000,"y":-3000000000000000000,"z":7540000000000000000}},"30021098":{"solarSystemId":30021098,"solarSystemName":"AHH-V29","location":{"x":-70900000000000000000,"y":-508000000000000000,"z":3490000000000000000}},"30021099":{"solarSystemId":30021099,"solarSystemName":"EC2-S29","location":{"x":-69800000000000000000,"y":-654000000000000000,"z":5160000000000000000}},"30021100":{"solarSystemId":30021100,"solarSystemName":"ETB-039","location":{"x":-71100000000000000000,"y":-1040000000000000000,"z":3800000000000000000}},"30021101":{"solarSystemId":30021101,"solarSystemName":"EM1-239","location":{"x":-71700000000000000000,"y":460000000000000000,"z":5410000000000000000}},"30021102":{"solarSystemId":30021102,"solarSystemName":"OCL-039","location":{"x":-71600000000000000000,"y":-417000000000000000,"z":2060000000000000000}},"30021103":{"solarSystemId":30021103,"solarSystemName":"A5N-T29","location":{"x":-69000000000000000000,"y":-1210000000000000000,"z":10800000000000000000}},"30021104":{"solarSystemId":30021104,"solarSystemName":"E38-V29","location":{"x":-68900000000000000000,"y":-1470000000000000000,"z":11200000000000000000}},"30021105":{"solarSystemId":30021105,"solarSystemName":"E1L-M29","location":{"x":-66200000000000000000,"y":-1300000000000000000,"z":12600000000000000000}},"30021106":{"solarSystemId":30021106,"solarSystemName":"OC2-329","location":{"x":-63700000000000000000,"y":-653000000000000000,"z":9160000000000000000}},"30021107":{"solarSystemId":30021107,"solarSystemName":"E6P-139","location":{"x":-70200000000000000000,"y":-2910000000000000000,"z":11000000000000000000}},"30021108":{"solarSystemId":30021108,"solarSystemName":"Diutius","location":{"x":-77800000000000000000,"y":-321000000000000000,"z":3880000000000000000}},"30021109":{"solarSystemId":30021109,"solarSystemName":"UJ5-639","location":{"x":-75500000000000000000,"y":-170000000000000000,"z":3400000000000000000}},"30021110":{"solarSystemId":30021110,"solarSystemName":"E6B-539","location":{"x":-75400000000000000000,"y":165000000000000000,"z":-668000000000000000}},"30021111":{"solarSystemId":30021111,"solarSystemName":"EH4-339","location":{"x":-72400000000000000000,"y":-1460000000000000000,"z":3170000000000000000}},"30021112":{"solarSystemId":30021112,"solarSystemName":"I8C-839","location":{"x":-77800000000000000000,"y":-566000000000000000,"z":3670000000000000000}},"30021113":{"solarSystemId":30021113,"solarSystemName":"EBR-739","location":{"x":-78000000000000000000,"y":534000000000000000,"z":1440000000000000000}},"30021114":{"solarSystemId":30021114,"solarSystemName":"EV5-G39","location":{"x":-83000000000000000000,"y":-1820000000000000000,"z":14500000000000000000}},"30021115":{"solarSystemId":30021115,"solarSystemName":"IGT-F39","location":{"x":-82700000000000000000,"y":-1340000000000000000,"z":15000000000000000000}},"30021116":{"solarSystemId":30021116,"solarSystemName":"I33-F39","location":{"x":-81900000000000000000,"y":-1040000000000000000,"z":13700000000000000000}},"30021117":{"solarSystemId":30021117,"solarSystemName":"ELQ-D39","location":{"x":-81400000000000000000,"y":-1290000000000000000,"z":14700000000000000000}},"30021118":{"solarSystemId":30021118,"solarSystemName":"ON7-D39","location":{"x":-80500000000000000000,"y":-1240000000000000000,"z":15600000000000000000}},"30021119":{"solarSystemId":30021119,"solarSystemName":"I80-D39","location":{"x":-81300000000000000000,"y":-2330000000000000000,"z":10900000000000000000}},"30021120":{"solarSystemId":30021120,"solarSystemName":"E91-H39","location":{"x":-85200000000000000000,"y":-253000000000000000,"z":14000000000000000000}},"30021121":{"solarSystemId":30021121,"solarSystemName":"IDF-G39","location":{"x":-83900000000000000000,"y":-33300000000000000,"z":15700000000000000000}},"30021122":{"solarSystemId":30021122,"solarSystemName":"ISN-G39","location":{"x":-85100000000000000000,"y":-874000000000000000,"z":12500000000000000000}},"30021123":{"solarSystemId":30021123,"solarSystemName":"UQ8-H39","location":{"x":-87600000000000000000,"y":-471000000000000000,"z":14200000000000000000}},"30021124":{"solarSystemId":30021124,"solarSystemName":"OQM-C39","location":{"x":-79800000000000000000,"y":-1150000000000000000,"z":15600000000000000000}},"30021125":{"solarSystemId":30021125,"solarSystemName":"I22-B39","location":{"x":-76900000000000000000,"y":-117000000000000000,"z":13500000000000000000}},"30021126":{"solarSystemId":30021126,"solarSystemName":"U5H-D39","location":{"x":-79000000000000000000,"y":1630000000000000000,"z":20300000000000000000}},"30021127":{"solarSystemId":30021127,"solarSystemName":"I1L-F39","location":{"x":-80900000000000000000,"y":904000000000000000,"z":18900000000000000000}},"30021128":{"solarSystemId":30021128,"solarSystemName":"OJB-F39","location":{"x":-80500000000000000000,"y":732000000000000000,"z":19500000000000000000}},"30021129":{"solarSystemId":30021129,"solarSystemName":"EJP-939","location":{"x":-79100000000000000000,"y":-284000000000000000,"z":4400000000000000000}},"30021130":{"solarSystemId":30021130,"solarSystemName":"EBD-C39","location":{"x":-80700000000000000000,"y":767000000000000000,"z":6410000000000000000}},"30021131":{"solarSystemId":30021131,"solarSystemName":"OVJ-B39","location":{"x":-79400000000000000000,"y":248000000000000000,"z":7340000000000000000}},"30021132":{"solarSystemId":30021132,"solarSystemName":"ES4-C39","location":{"x":-80400000000000000000,"y":660000000000000000,"z":6180000000000000000}},"30021133":{"solarSystemId":30021133,"solarSystemName":"IDS-B39","location":{"x":-79600000000000000000,"y":-182000000000000000,"z":7370000000000000000}},"30021134":{"solarSystemId":30021134,"solarSystemName":"I4G-939","location":{"x":-77500000000000000000,"y":-2260000000000000000,"z":8350000000000000000}},"30021135":{"solarSystemId":30021135,"solarSystemName":"A2F-639","location":{"x":-75400000000000000000,"y":899000000000000000,"z":9550000000000000000}},"30021136":{"solarSystemId":30021136,"solarSystemName":"ETH-739","location":{"x":-75900000000000000000,"y":-1690000000000000000,"z":10900000000000000000}},"30021137":{"solarSystemId":30021137,"solarSystemName":"UQ3-839","location":{"x":-76300000000000000000,"y":-3080000000000000000,"z":9980000000000000000}},"30021138":{"solarSystemId":30021138,"solarSystemName":"EGN-639","location":{"x":-75700000000000000000,"y":-1850000000000000000,"z":10300000000000000000}},"30021139":{"solarSystemId":30021139,"solarSystemName":"E54-719","location":{"x":-62900000000000000000,"y":-4160000000000000000,"z":765000000000000000}},"30021140":{"solarSystemId":30021140,"solarSystemName":"EK0-C19","location":{"x":-63700000000000000000,"y":-3290000000000000000,"z":-2040000000000000000}},"30021141":{"solarSystemId":30021141,"solarSystemName":"E75-B19","location":{"x":-63700000000000000000,"y":-3790000000000000000,"z":-2950000000000000000}},"30021142":{"solarSystemId":30021142,"solarSystemName":"A5V-V09","location":{"x":-62200000000000000000,"y":-4370000000000000000,"z":-416000000000000000}},"30021143":{"solarSystemId":30021143,"solarSystemName":"OKC-F09","location":{"x":-61100000000000000000,"y":-5630000000000000000,"z":-3030000000000000000}},"30021144":{"solarSystemId":30021144,"solarSystemName":"ETV-929","location":{"x":-66800000000000000000,"y":-4750000000000000000,"z":795000000000000000}},"30021145":{"solarSystemId":30021145,"solarSystemName":"U4T-K19","location":{"x":-64400000000000000000,"y":-4960000000000000000,"z":-1080000000000000000}},"30021146":{"solarSystemId":30021146,"solarSystemName":"EKJ-829","location":{"x":-67000000000000000000,"y":-2920000000000000000,"z":-521000000000000000}},"30021147":{"solarSystemId":30021147,"solarSystemName":"ERT-629","location":{"x":-66500000000000000000,"y":-4910000000000000000,"z":-507000000000000000}},"30021148":{"solarSystemId":30021148,"solarSystemName":"EDS-J29","location":{"x":-68700000000000000000,"y":-1950000000000000000,"z":-2500000000000000000}},"30021149":{"solarSystemId":30021149,"solarSystemName":"EFG-R29","location":{"x":-70700000000000000000,"y":-1040000000000000000,"z":-3190000000000000000}},"30021150":{"solarSystemId":30021150,"solarSystemName":"I0R-V29","location":{"x":-71800000000000000000,"y":-359000000000000000,"z":-3660000000000000000}},"30021151":{"solarSystemId":30021151,"solarSystemName":"EJB-M29","location":{"x":-69600000000000000000,"y":-1340000000000000000,"z":-4430000000000000000}},"30021152":{"solarSystemId":30021152,"solarSystemName":"Ferrum","location":{"x":-73200000000000000000,"y":-600000000000000000,"z":-4530000000000000000}},"30021153":{"solarSystemId":30021153,"solarSystemName":"O7J-P29","location":{"x":-70200000000000000000,"y":-1090000000000000000,"z":-4780000000000000000}},"30021154":{"solarSystemId":30021154,"solarSystemName":"E3M-Q29","location":{"x":-70300000000000000000,"y":-2370000000000000000,"z":-800000000000000000}},"30021155":{"solarSystemId":30021155,"solarSystemName":"AL6-H29","location":{"x":-68400000000000000000,"y":-1190000000000000000,"z":-1230000000000000000}},"30021156":{"solarSystemId":30021156,"solarSystemName":"EQM-K29","location":{"x":-69000000000000000000,"y":-1640000000000000000,"z":-2440000000000000000}},"30021157":{"solarSystemId":30021157,"solarSystemName":"E91-P29","location":{"x":-69500000000000000000,"y":-1190000000000000000,"z":685000000000000000}},"30021158":{"solarSystemId":30021158,"solarSystemName":"OVP-R29","location":{"x":-70600000000000000000,"y":-2350000000000000000,"z":-1180000000000000000}},"30021159":{"solarSystemId":30021159,"solarSystemName":"ERG-J19","location":{"x":-64200000000000000000,"y":-7110000000000000000,"z":-5630000000000000000}},"30021160":{"solarSystemId":30021160,"solarSystemName":"E17-229","location":{"x":-65600000000000000000,"y":-7310000000000000000,"z":-6900000000000000000}},"30021161":{"solarSystemId":30021161,"solarSystemName":"O4N-B19","location":{"x":-63400000000000000000,"y":-6970000000000000000,"z":-3270000000000000000}},"30021162":{"solarSystemId":30021162,"solarSystemName":"E3G-P19","location":{"x":-64600000000000000000,"y":-6720000000000000000,"z":-2600000000000000000}},"30021163":{"solarSystemId":30021163,"solarSystemName":"I49-829","location":{"x":-66900000000000000000,"y":-7350000000000000000,"z":-6470000000000000000}},"30021164":{"solarSystemId":30021164,"solarSystemName":"OBD-K29","location":{"x":-69000000000000000000,"y":-3000000000000000000,"z":-7880000000000000000}},"30021165":{"solarSystemId":30021165,"solarSystemName":"I75-429","location":{"x":-66400000000000000000,"y":-1850000000000000000,"z":-6680000000000000000}},"30021166":{"solarSystemId":30021166,"solarSystemName":"E8Q-B29","location":{"x":-67700000000000000000,"y":-1520000000000000000,"z":-4530000000000000000}},"30021167":{"solarSystemId":30021167,"solarSystemName":"ENL-G29","location":{"x":-68600000000000000000,"y":-1620000000000000000,"z":-3570000000000000000}},"30021168":{"solarSystemId":30021168,"solarSystemName":"A96-139","location":{"x":-72600000000000000000,"y":-1880000000000000000,"z":-8000000000000000000}},"30021169":{"solarSystemId":30021169,"solarSystemName":"U.C0L.K31","location":{"x":-16200000000000000000,"y":-1300000000000000000,"z":-28800000000000000000}},"30021170":{"solarSystemId":30021170,"solarSystemName":"T.TVL.W31","location":{"x":-16800000000000000000,"y":-1290000000000000000,"z":-27100000000000000000}},"30021171":{"solarSystemId":30021171,"solarSystemName":"D.3ZN.X01","location":{"x":-14800000000000000000,"y":-1180000000000000000,"z":-26400000000000000000}},"30021172":{"solarSystemId":30021172,"solarSystemName":"H.BRL.J21","location":{"x":-16600000000000000000,"y":-1250000000000000000,"z":-28400000000000000000}},"30021173":{"solarSystemId":30021173,"solarSystemName":"I.PZN.FS1","location":{"x":-14900000000000000000,"y":-1540000000000000000,"z":-25900000000000000000}},"30021174":{"solarSystemId":30021174,"solarSystemName":"E.N6L.Z61","location":{"x":-16400000000000000000,"y":-43800000000000000,"z":-27300000000000000000}},"30021175":{"solarSystemId":30021175,"solarSystemName":"N.L1R.FCL","location":{"x":-15000000000000000000,"y":-523000000000000000,"z":-28200000000000000000}},"30021176":{"solarSystemId":30021176,"solarSystemName":"D.4XN.RJH","location":{"x":-14800000000000000000,"y":-893000000000000000,"z":-20700000000000000000}},"30021177":{"solarSystemId":30021177,"solarSystemName":"H.Z5R.021","location":{"x":-15200000000000000000,"y":-1230000000000000000,"z":-20300000000000000000}},"30021178":{"solarSystemId":30021178,"solarSystemName":"S.8GN.561","location":{"x":-14700000000000000000,"y":-1380000000000000000,"z":-22200000000000000000}},"30021179":{"solarSystemId":30021179,"solarSystemName":"E.JMR.44J","location":{"x":-15600000000000000000,"y":-905000000000000000,"z":-22400000000000000000}},"30021180":{"solarSystemId":30021180,"solarSystemName":"I.ZRR.F1R","location":{"x":-15500000000000000000,"y":-470000000000000000,"z":-21700000000000000000}},"30021181":{"solarSystemId":30021181,"solarSystemName":"C.Y3N.PMZ","location":{"x":-14000000000000000000,"y":-1030000000000000000,"z":-20500000000000000000}},"30021182":{"solarSystemId":30021182,"solarSystemName":"O.WJN.JXP","location":{"x":-14800000000000000000,"y":-679000000000000000,"z":-21600000000000000000}},"30021183":{"solarSystemId":30021183,"solarSystemName":"T.B4D.S31","location":{"x":-17500000000000000000,"y":-1270000000000000000,"z":-24700000000000000000}},"30021184":{"solarSystemId":30021184,"solarSystemName":"I.2EL.EF6","location":{"x":-17300000000000000000,"y":-241000000000000000,"z":-24400000000000000000}},"30021185":{"solarSystemId":30021185,"solarSystemName":"D.SPD.JGZ","location":{"x":-18000000000000000000,"y":-1040000000000000000,"z":-25100000000000000000}},"30021186":{"solarSystemId":30021186,"solarSystemName":"E.KBC.CFC","location":{"x":-19300000000000000000,"y":-601000000000000000,"z":-23200000000000000000}},"30021187":{"solarSystemId":30021187,"solarSystemName":"Rökkur","location":{"x":-19200000000000000000,"y":-1000000000000000000,"z":-24700000000000000000}},"30021188":{"solarSystemId":30021188,"solarSystemName":"I.PCC.HEB","location":{"x":-19000000000000000000,"y":-828000000000000000,"z":-24700000000000000000}},"30021189":{"solarSystemId":30021189,"solarSystemName":"O.J7C.P6B","location":{"x":-18700000000000000000,"y":-800000000000000000,"z":-23500000000000000000}},"30021190":{"solarSystemId":30021190,"solarSystemName":"C.0SM.C3Y","location":{"x":-20000000000000000000,"y":-977000000000000000,"z":-25800000000000000000}},"30021191":{"solarSystemId":30021191,"solarSystemName":"M.28M.5NB","location":{"x":-19900000000000000000,"y":-806000000000000000,"z":-24300000000000000000}},"30021192":{"solarSystemId":30021192,"solarSystemName":"E.CBT.7GC","location":{"x":-13500000000000000000,"y":-603000000000000000,"z":-23200000000000000000}},"30021193":{"solarSystemId":30021193,"solarSystemName":"R.PJT.XQ5","location":{"x":-13600000000000000000,"y":204000000000000000,"z":-23800000000000000000}},"30021194":{"solarSystemId":30021194,"solarSystemName":"E.JCN.THC","location":{"x":-14400000000000000000,"y":-604000000000000000,"z":-23200000000000000000}},"30021195":{"solarSystemId":30021195,"solarSystemName":"E.6JT.F29","location":{"x":-13600000000000000000,"y":-327000000000000000,"z":-23600000000000000000}},"30021196":{"solarSystemId":30021196,"solarSystemName":"R.BJT.4ZT","location":{"x":-13600000000000000000,"y":-428000000000000000,"z":-23300000000000000000}},"30021197":{"solarSystemId":30021197,"solarSystemName":"U.0LN.WHV","location":{"x":-14300000000000000000,"y":-713000000000000000,"z":-24300000000000000000}},"30021198":{"solarSystemId":30021198,"solarSystemName":"I.HTR.5C9","location":{"x":-15400000000000000000,"y":-342000000000000000,"z":-23200000000000000000}},"30021199":{"solarSystemId":30021199,"solarSystemName":"C.TSR.1CG","location":{"x":-15400000000000000000,"y":-847000000000000000,"z":-22600000000000000000}},"30021200":{"solarSystemId":30021200,"solarSystemName":"R.10S.1TE","location":{"x":-11500000000000000000,"y":-1130000000000000000,"z":-18500000000000000000}},"30021201":{"solarSystemId":30021201,"solarSystemName":"S.T3T.5DL","location":{"x":-12800000000000000000,"y":-521000000000000000,"z":-19200000000000000000}},"30021202":{"solarSystemId":30021202,"solarSystemName":"U.ZCS.MWZ","location":{"x":-12100000000000000000,"y":-1040000000000000000,"z":-19000000000000000000}},"30021203":{"solarSystemId":30021203,"solarSystemName":"R.SJS.3RY","location":{"x":-12400000000000000000,"y":-988000000000000000,"z":-18900000000000000000}},"30021204":{"solarSystemId":30021204,"solarSystemName":"I.8LT.S51","location":{"x":-13200000000000000000,"y":-1350000000000000000,"z":-19100000000000000000}},"30021205":{"solarSystemId":30021205,"solarSystemName":"H.MDS.511","location":{"x":-12100000000000000000,"y":-1200000000000000000,"z":-18700000000000000000}},"30021206":{"solarSystemId":30021206,"solarSystemName":"N.H4S.3EW","location":{"x":-11700000000000000000,"y":-1080000000000000000,"z":-19000000000000000000}},"30021207":{"solarSystemId":30021207,"solarSystemName":"A.H7T.GKP","location":{"x":-13000000000000000000,"y":-683000000000000000,"z":-19300000000000000000}},"30021208":{"solarSystemId":30021208,"solarSystemName":"M.WMT.Z0W","location":{"x":-13300000000000000000,"y":-1050000000000000000,"z":-19400000000000000000}},"30021209":{"solarSystemId":30021209,"solarSystemName":"R.8FC.L5P","location":{"x":-19200000000000000000,"y":-655000000000000000,"z":-27100000000000000000}},"30021210":{"solarSystemId":30021210,"solarSystemName":"A.EQD.451","location":{"x":-18000000000000000000,"y":-1340000000000000000,"z":-27600000000000000000}},"30021211":{"solarSystemId":30021211,"solarSystemName":"S.LLC.M71","location":{"x":-19000000000000000000,"y":-1420000000000000000,"z":-27500000000000000000}},"30021212":{"solarSystemId":30021212,"solarSystemName":"O.D5C.DEF","location":{"x":-18600000000000000000,"y":-792000000000000000,"z":-27500000000000000000}},"30021213":{"solarSystemId":30021213,"solarSystemName":"C.8TC.TRK","location":{"x":-18900000000000000000,"y":-1100000000000000000,"z":-27700000000000000000}},"30021214":{"solarSystemId":30021214,"solarSystemName":"M.RLC.KNY","location":{"x":-19000000000000000000,"y":-987000000000000000,"z":-26300000000000000000}},"30021215":{"solarSystemId":30021215,"solarSystemName":"T.74T.5LQ","location":{"x":-12800000000000000000,"y":-737000000000000000,"z":-19800000000000000000}},"30021216":{"solarSystemId":30021216,"solarSystemName":"N.4VS.YFM","location":{"x":-12200000000000000000,"y":-637000000000000000,"z":-21100000000000000000}},"30021217":{"solarSystemId":30021217,"solarSystemName":"I.SQS.T11","location":{"x":-12300000000000000000,"y":-1200000000000000000,"z":-20200000000000000000}},"30021218":{"solarSystemId":30021218,"solarSystemName":"D.X0T.HDP","location":{"x":-12700000000000000000,"y":-666000000000000000,"z":-22300000000000000000}},"30021219":{"solarSystemId":30021219,"solarSystemName":"U.R6S.20P","location":{"x":-11800000000000000000,"y":-649000000000000000,"z":-20700000000000000000}},"30021220":{"solarSystemId":30021220,"solarSystemName":"T.ZTT.7W4","location":{"x":-13100000000000000000,"y":-177000000000000000,"z":-21600000000000000000}},"30021221":{"solarSystemId":30021221,"solarSystemName":"E.FGS.H45","location":{"x":-12400000000000000000,"y":186000000000000000,"z":-22800000000000000000}},"30021222":{"solarSystemId":30021222,"solarSystemName":"M.6GT.401","location":{"x":-13500000000000000000,"y":-1160000000000000000,"z":-20400000000000000000}},"30021223":{"solarSystemId":30021223,"solarSystemName":"H.BXR.RRS","location":{"x":-15900000000000000000,"y":-375000000000000000,"z":-24400000000000000000}},"30021224":{"solarSystemId":30021224,"solarSystemName":"H.MNR.XPZ","location":{"x":-15400000000000000000,"y":-1030000000000000000,"z":-25800000000000000000}},"30021225":{"solarSystemId":30021225,"solarSystemName":"N.Y4R.5KD","location":{"x":-15200000000000000000,"y":-574000000000000000,"z":-24900000000000000000}},"30021226":{"solarSystemId":30021226,"solarSystemName":"H.SCR.4FE","location":{"x":-15600000000000000000,"y":-1140000000000000000,"z":-25400000000000000000}},"30021227":{"solarSystemId":30021227,"solarSystemName":"H.G9R.4HM","location":{"x":-15300000000000000000,"y":-640000000000000000,"z":-24600000000000000000}},"30021228":{"solarSystemId":30021228,"solarSystemName":"M.VDR.CJJ","location":{"x":-15600000000000000000,"y":-929000000000000000,"z":-25100000000000000000}},"30021229":{"solarSystemId":30021229,"solarSystemName":"O.10L.ZME","location":{"x":-16100000000000000000,"y":-1140000000000000000,"z":-24600000000000000000}},"30021230":{"solarSystemId":30021230,"solarSystemName":"C.CWN.VWX","location":{"x":-14900000000000000000,"y":-970000000000000000,"z":-25900000000000000000}},"30021231":{"solarSystemId":30021231,"solarSystemName":"O.SER.E2B","location":{"x":-16100000000000000000,"y":-796000000000000000,"z":-24100000000000000000}},"30021232":{"solarSystemId":30021232,"solarSystemName":"N.451.3K2","location":{"x":-42800000000000000000,"y":-3390000000000000000,"z":-21900000000000000000}},"30021233":{"solarSystemId":30021233,"solarSystemName":"D.K41.KJ1","location":{"x":-42600000000000000000,"y":-2090000000000000000,"z":-20000000000000000000}},"30021234":{"solarSystemId":30021234,"solarSystemName":"I.V41.6M1","location":{"x":-42200000000000000000,"y":-1770000000000000000,"z":-20700000000000000000}},"30021235":{"solarSystemId":30021235,"solarSystemName":"N.851.BM1","location":{"x":-42900000000000000000,"y":-1790000000000000000,"z":-19800000000000000000}},"30021236":{"solarSystemId":30021236,"solarSystemName":"U.M51.252","location":{"x":-43300000000000000000,"y":-2490000000000000000,"z":-19700000000000000000}},"30021237":{"solarSystemId":30021237,"solarSystemName":"M.461.GMH","location":{"x":-44000000000000000000,"y":-885000000000000000,"z":-20000000000000000000}},"30021238":{"solarSystemId":30021238,"solarSystemName":"T.451.Z12","location":{"x":-42800000000000000000,"y":-2370000000000000000,"z":-19300000000000000000}},"30021239":{"solarSystemId":30021239,"solarSystemName":"E.851.7B1","location":{"x":-43000000000000000000,"y":-1950000000000000000,"z":-19600000000000000000}},"30021240":{"solarSystemId":30021240,"solarSystemName":"H.251.BL1","location":{"x":-42800000000000000000,"y":-1680000000000000000,"z":-19400000000000000000}},"30021241":{"solarSystemId":30021241,"solarSystemName":"I.T51.FB1","location":{"x":-43100000000000000000,"y":-1970000000000000000,"z":-19700000000000000000}},"30021242":{"solarSystemId":30021242,"solarSystemName":"R.451.D12","location":{"x":-42800000000000000000,"y":-2360000000000000000,"z":-19200000000000000000}},"30021243":{"solarSystemId":30021243,"solarSystemName":"R.C51.9K1","location":{"x":-43300000000000000000,"y":-2240000000000000000,"z":-19000000000000000000}},"30021244":{"solarSystemId":30021244,"solarSystemName":"I.X41.3C1","location":{"x":-42400000000000000000,"y":-1730000000000000000,"z":-18600000000000000000}},"30021245":{"solarSystemId":30021245,"solarSystemName":"T.Z31.FQ1","location":{"x":-41400000000000000000,"y":-1900000000000000000,"z":-17300000000000000000}},"30021246":{"solarSystemId":30021246,"solarSystemName":"H.R31.9E1","location":{"x":-40800000000000000000,"y":-2280000000000000000,"z":-17900000000000000000}},"30021247":{"solarSystemId":30021247,"solarSystemName":"I.G31.202","location":{"x":-41200000000000000000,"y":-2310000000000000000,"z":-17600000000000000000}},"30021248":{"solarSystemId":30021248,"solarSystemName":"L.841.C61","location":{"x":-41800000000000000000,"y":-1390000000000000000,"z":-17200000000000000000}},"30021249":{"solarSystemId":30021249,"solarSystemName":"O.H31.YNW","location":{"x":-41200000000000000000,"y":-1060000000000000000,"z":-18300000000000000000}},"30021250":{"solarSystemId":30021250,"solarSystemName":"C.B31.SR1","location":{"x":-41200000000000000000,"y":-1630000000000000000,"z":-17700000000000000000}},"30021251":{"solarSystemId":30021251,"solarSystemName":"N.851.PT1","location":{"x":-43000000000000000000,"y":-1570000000000000000,"z":-19100000000000000000}},"30021252":{"solarSystemId":30021252,"solarSystemName":"E.761.4Q1","location":{"x":-44100000000000000000,"y":-1880000000000000000,"z":-18600000000000000000}},"30021253":{"solarSystemId":30021253,"solarSystemName":"O.561.7KV","location":{"x":-44000000000000000000,"y":-719000000000000000,"z":-20000000000000000000}},"30021254":{"solarSystemId":30021254,"solarSystemName":"M.W61.KBH","location":{"x":-44900000000000000000,"y":-891000000000000000,"z":-18800000000000000000}},"30021255":{"solarSystemId":30021255,"solarSystemName":"M.661.NQ2","location":{"x":-44000000000000000000,"y":95000000000000000,"z":-17800000000000000000}},"30021256":{"solarSystemId":30021256,"solarSystemName":"M.Y41.2HV","location":{"x":-42500000000000000000,"y":-712000000000000000,"z":-17700000000000000000}},"30021257":{"solarSystemId":30021257,"solarSystemName":"U.X71.0B1","location":{"x":-45900000000000000000,"y":-1950000000000000000,"z":-20100000000000000000}},"30021258":{"solarSystemId":30021258,"solarSystemName":"A.181.N32","location":{"x":-46200000000000000000,"y":-2430000000000000000,"z":-20800000000000000000}},"30021259":{"solarSystemId":30021259,"solarSystemName":"R.981.NB1","location":{"x":-46400000000000000000,"y":-1960000000000000000,"z":-20600000000000000000}},"30021260":{"solarSystemId":30021260,"solarSystemName":"E.C81.LY2","location":{"x":-46700000000000000000,"y":-3300000000000000000,"z":-19600000000000000000}},"30021261":{"solarSystemId":30021261,"solarSystemName":"S.Q81.HX1","location":{"x":-46900000000000000000,"y":-2120000000000000000,"z":-20600000000000000000}},"30021262":{"solarSystemId":30021262,"solarSystemName":"S.K71.Z62","location":{"x":-46100000000000000000,"y":-2550000000000000000,"z":-20600000000000000000}},"30021263":{"solarSystemId":30021263,"solarSystemName":"S.ZHF.PBF","location":{"x":-25100000000000000000,"y":-782000000000000000,"z":-23000000000000000000}},"30021264":{"solarSystemId":30021264,"solarSystemName":"A.NDB.QCL","location":{"x":-25900000000000000000,"y":-523000000000000000,"z":-22800000000000000000}},"30021265":{"solarSystemId":30021265,"solarSystemName":"E.PTB.73Q","location":{"x":-25800000000000000000,"y":-724000000000000000,"z":-23500000000000000000}},"30021266":{"solarSystemId":30021266,"solarSystemName":"S.6FF.SNZ","location":{"x":-25000000000000000000,"y":-1020000000000000000,"z":-24300000000000000000}},"30021267":{"solarSystemId":30021267,"solarSystemName":"E.1NB.V5Q","location":{"x":-25800000000000000000,"y":-727000000000000000,"z":-23000000000000000000}},"30021268":{"solarSystemId":30021268,"solarSystemName":"B.YPB.ZJ2","location":{"x":-26000000000000000000,"y":-101000000000000000,"z":-24600000000000000000}},"30021269":{"solarSystemId":30021269,"solarSystemName":"O.61B.8ZJ","location":{"x":-25400000000000000000,"y":-933000000000000000,"z":-23000000000000000000}},"30021270":{"solarSystemId":30021270,"solarSystemName":"O.Y4F.2Q7","location":{"x":-24400000000000000000,"y":-275000000000000000,"z":-24800000000000000000}},"30021271":{"solarSystemId":30021271,"solarSystemName":"C.TSB.NL8","location":{"x":-25700000000000000000,"y":-304000000000000000,"z":-24500000000000000000}},"30021272":{"solarSystemId":30021272,"solarSystemName":"E.14G.TBC","location":{"x":-26700000000000000000,"y":-602000000000000000,"z":-26900000000000000000}},"30021273":{"solarSystemId":30021273,"solarSystemName":"D.TDB.MDH","location":{"x":-25900000000000000000,"y":-882000000000000000,"z":-28000000000000000000}},"30021274":{"solarSystemId":30021274,"solarSystemName":"M.GBG.PT2","location":{"x":-27300000000000000000,"y":-85100000000000000,"z":-28100000000000000000}},"30021275":{"solarSystemId":30021275,"solarSystemName":"M.YFG.ECZ","location":{"x":-27300000000000000000,"y":-1030000000000000000,"z":-26800000000000000000}},"30021276":{"solarSystemId":30021276,"solarSystemName":"C.4RG.F95","location":{"x":-27000000000000000000,"y":-191000000000000000,"z":-27900000000000000000}},"30021277":{"solarSystemId":30021277,"solarSystemName":"C.CVG.H33","location":{"x":-27200000000000000000,"y":112000000000000000,"z":-27300000000000000000}},"30021278":{"solarSystemId":30021278,"solarSystemName":"L.DRB.KEK","location":{"x":-25800000000000000000,"y":-1120000000000000000,"z":-25900000000000000000}},"30021279":{"solarSystemId":30021279,"solarSystemName":"S.H0G.KL1","location":{"x":-26500000000000000000,"y":-1690000000000000000,"z":-26700000000000000000}},"30021280":{"solarSystemId":30021280,"solarSystemName":"L.37B.H6E","location":{"x":-25600000000000000000,"y":-1120000000000000000,"z":-25800000000000000000}},"30021281":{"solarSystemId":30021281,"solarSystemName":"O.CHB.997","location":{"x":-26200000000000000000,"y":-263000000000000000,"z":-25600000000000000000}},"30021282":{"solarSystemId":30021282,"solarSystemName":"M.PLB.ER9","location":{"x":-25900000000000000000,"y":-340000000000000000,"z":-25400000000000000000}},"30021283":{"solarSystemId":30021283,"solarSystemName":"B.CYQ.YCS","location":{"x":-24100000000000000000,"y":-379000000000000000,"z":-27000000000000000000}},"30021284":{"solarSystemId":30021284,"solarSystemName":"Auðn","location":{"x":-26400000000000000000,"y":-192000000000000000,"z":-26300000000000000000}},"30021285":{"solarSystemId":30021285,"solarSystemName":"I.MMB.MQX","location":{"x":-26000000000000000000,"y":-960000000000000000,"z":-28500000000000000000}},"30021286":{"solarSystemId":30021286,"solarSystemName":"A.EYG.VGG","location":{"x":-27500000000000000000,"y":-855000000000000000,"z":-28400000000000000000}},"30021287":{"solarSystemId":30021287,"solarSystemName":"B.JHG.Y7W","location":{"x":-27400000000000000000,"y":-1050000000000000000,"z":-28700000000000000000}},"30021288":{"solarSystemId":30021288,"solarSystemName":"M.Q0G.EQR","location":{"x":-26500000000000000000,"y":-492000000000000000,"z":-28700000000000000000}},"30021289":{"solarSystemId":30021289,"solarSystemName":"M.S8G.HXP","location":{"x":-26800000000000000000,"y":-679000000000000000,"z":-29400000000000000000}},"30021290":{"solarSystemId":30021290,"solarSystemName":"C.GGB.W61","location":{"x":-26200000000000000000,"y":-1400000000000000000,"z":-29900000000000000000}},"30021291":{"solarSystemId":30021291,"solarSystemName":"E.CXB.QLW","location":{"x":-26300000000000000000,"y":-1060000000000000000,"z":-22800000000000000000}},"30021292":{"solarSystemId":30021292,"solarSystemName":"A.0NB.E0Y","location":{"x":-25800000000000000000,"y":-974000000000000000,"z":-23700000000000000000}},"30021293":{"solarSystemId":30021293,"solarSystemName":"I.W7G.RR1","location":{"x":-26800000000000000000,"y":-1640000000000000000,"z":-24100000000000000000}},"30021294":{"solarSystemId":30021294,"solarSystemName":"R.6ZB.851","location":{"x":-26400000000000000000,"y":-1340000000000000000,"z":-24300000000000000000}},"30021295":{"solarSystemId":30021295,"solarSystemName":"R.9QB.GHZ","location":{"x":-26100000000000000000,"y":-1040000000000000000,"z":-23700000000000000000}},"30021296":{"solarSystemId":30021296,"solarSystemName":"T.S8G.H81","location":{"x":-26800000000000000000,"y":-1470000000000000000,"z":-23400000000000000000}},"30021297":{"solarSystemId":30021297,"solarSystemName":"B.RXG.L41","location":{"x":-27500000000000000000,"y":-1310000000000000000,"z":-23200000000000000000}},"30021298":{"solarSystemId":30021298,"solarSystemName":"R.0XF.QTJ","location":{"x":-25100000000000000000,"y":-914000000000000000,"z":-24200000000000000000}},"30021299":{"solarSystemId":30021299,"solarSystemName":"T.CXB.M21","location":{"x":-26300000000000000000,"y":-1240000000000000000,"z":-24900000000000000000}},"30021300":{"solarSystemId":30021300,"solarSystemName":"D.HMB.7R1","location":{"x":-26000000000000000000,"y":-1630000000000000000,"z":-24600000000000000000}},"30021301":{"solarSystemId":30021301,"solarSystemName":"U.6BB.D9J","location":{"x":-26200000000000000000,"y":-911000000000000000,"z":-24600000000000000000}},"30021302":{"solarSystemId":30021302,"solarSystemName":"N.G9B.E81","location":{"x":-25700000000000000000,"y":-1480000000000000000,"z":-25600000000000000000}},"30021303":{"solarSystemId":30021303,"solarSystemName":"D.J8B.821","location":{"x":-25700000000000000000,"y":-1230000000000000000,"z":-23900000000000000000}},"30021304":{"solarSystemId":30021304,"solarSystemName":"UKL-N78","location":{"x":-35400000000000000000,"y":-5760000000000000000,"z":-24500000000000000000}},"30021305":{"solarSystemId":30021305,"solarSystemName":"ICG-8G8","location":{"x":-37500000000000000000,"y":-7990000000000000000,"z":-29500000000000000000}},"30021306":{"solarSystemId":30021306,"solarSystemName":"AJD-T88","location":{"x":-36500000000000000000,"y":-3960000000000000000,"z":-24900000000000000000}},"30021307":{"solarSystemId":30021307,"solarSystemName":"IPN-2C8","location":{"x":-36500000000000000000,"y":-6100000000000000000,"z":-27200000000000000000}},"30021308":{"solarSystemId":30021308,"solarSystemName":"ILF-BC8","location":{"x":-37200000000000000000,"y":-4430000000000000000,"z":-27100000000000000000}},"30021309":{"solarSystemId":30021309,"solarSystemName":"OR5-KD8","location":{"x":-35200000000000000000,"y":-5730000000000000000,"z":-30800000000000000000}},"30021310":{"solarSystemId":30021310,"solarSystemName":"EB3-9C8","location":{"x":-34200000000000000000,"y":-4600000000000000000,"z":-30500000000000000000}},"30021311":{"solarSystemId":30021311,"solarSystemName":"IQB-9C8","location":{"x":-35000000000000000000,"y":-5030000000000000000,"z":-29600000000000000000}},"30021312":{"solarSystemId":30021312,"solarSystemName":"ENM-8F8","location":{"x":-35600000000000000000,"y":-5380000000000000000,"z":-31100000000000000000}},"30021313":{"solarSystemId":30021313,"solarSystemName":"I0M-4C8","location":{"x":-33800000000000000000,"y":-5390000000000000000,"z":-30500000000000000000}},"30021314":{"solarSystemId":30021314,"solarSystemName":"A3V-898","location":{"x":-33900000000000000000,"y":-4040000000000000000,"z":-28500000000000000000}},"30021315":{"solarSystemId":30021315,"solarSystemName":"Imbrium","location":{"x":-34400000000000000000,"y":-3290000000000000000,"z":-28500000000000000000}},"30021316":{"solarSystemId":30021316,"solarSystemName":"E61-H98","location":{"x":-33900000000000000000,"y":-3820000000000000000,"z":-28900000000000000000}},"30021317":{"solarSystemId":30021317,"solarSystemName":"OLF-JB8","location":{"x":-35400000000000000000,"y":-4180000000000000000,"z":-28400000000000000000}},"30021318":{"solarSystemId":30021318,"solarSystemName":"UM8-9B8","location":{"x":-35000000000000000000,"y":-3090000000000000000,"z":-28700000000000000000}},"30021319":{"solarSystemId":30021319,"solarSystemName":"OVD-9D8","location":{"x":-34700000000000000000,"y":-5150000000000000000,"z":-31100000000000000000}},"30021320":{"solarSystemId":30021320,"solarSystemName":"ORV-HG8","location":{"x":-35900000000000000000,"y":-4990000000000000000,"z":-32400000000000000000}},"30021321":{"solarSystemId":30021321,"solarSystemName":"IS5-VG8","location":{"x":-37100000000000000000,"y":-2970000000000000000,"z":-32000000000000000000}},"30021322":{"solarSystemId":30021322,"solarSystemName":"EV1-MC8","location":{"x":-33700000000000000000,"y":-3630000000000000000,"z":-31600000000000000000}},"30021323":{"solarSystemId":30021323,"solarSystemName":"EFV-7G8","location":{"x":-35500000000000000000,"y":-3470000000000000000,"z":-32700000000000000000}},"30021324":{"solarSystemId":30021324,"solarSystemName":"EPT-0J8","location":{"x":-28700000000000000000,"y":-4740000000000000000,"z":-39400000000000000000}},"30021325":{"solarSystemId":30021325,"solarSystemName":"UGJ-VD8","location":{"x":-27800000000000000000,"y":-4030000000000000000,"z":-37100000000000000000}},"30021326":{"solarSystemId":30021326,"solarSystemName":"EPG-4J8","location":{"x":-28900000000000000000,"y":-4480000000000000000,"z":-39500000000000000000}},"30021327":{"solarSystemId":30021327,"solarSystemName":"A9F-CF8","location":{"x":-28400000000000000000,"y":-3690000000000000000,"z":-37200000000000000000}},"30021328":{"solarSystemId":30021328,"solarSystemName":"EH0-VH8","location":{"x":-30400000000000000000,"y":-4060000000000000000,"z":-38400000000000000000}},"30021329":{"solarSystemId":30021329,"solarSystemName":"E77-498","location":{"x":-30200000000000000000,"y":-5380000000000000000,"z":-31500000000000000000}},"30021330":{"solarSystemId":30021330,"solarSystemName":"OPH-798","location":{"x":-30500000000000000000,"y":-4830000000000000000,"z":-31500000000000000000}},"30021331":{"solarSystemId":30021331,"solarSystemName":"ENG-T98","location":{"x":-31200000000000000000,"y":-5100000000000000000,"z":-31600000000000000000}},"30021332":{"solarSystemId":30021332,"solarSystemName":"E66-Q98","location":{"x":-31000000000000000000,"y":-4690000000000000000,"z":-31700000000000000000}},"30021333":{"solarSystemId":30021333,"solarSystemName":"UHQ-D98","location":{"x":-31000000000000000000,"y":-4880000000000000000,"z":-31300000000000000000}},"30021334":{"solarSystemId":30021334,"solarSystemName":"E92-3H8","location":{"x":-29500000000000000000,"y":-5820000000000000000,"z":-37800000000000000000}},"30021335":{"solarSystemId":30021335,"solarSystemName":"O19-298","location":{"x":-30000000000000000000,"y":-3630000000000000000,"z":-32000000000000000000}},"30021336":{"solarSystemId":30021336,"solarSystemName":"A19-888","location":{"x":-29700000000000000000,"y":-4680000000000000000,"z":-31300000000000000000}},"30021337":{"solarSystemId":30021337,"solarSystemName":"ICG-RH8","location":{"x":-30600000000000000000,"y":-4330000000000000000,"z":-38200000000000000000}},"30021338":{"solarSystemId":30021338,"solarSystemName":"ECN-D88","location":{"x":-30400000000000000000,"y":-3310000000000000000,"z":-31100000000000000000}},"30021339":{"solarSystemId":30021339,"solarSystemName":"O24-BB8","location":{"x":-31300000000000000000,"y":-4840000000000000000,"z":-31900000000000000000}},"30021340":{"solarSystemId":30021340,"solarSystemName":"E5C-KC8","location":{"x":-32600000000000000000,"y":-6380000000000000000,"z":-31900000000000000000}},"30021341":{"solarSystemId":30021341,"solarSystemName":"IH6-3B8","location":{"x":-31500000000000000000,"y":-4920000000000000000,"z":-31500000000000000000}},"30021342":{"solarSystemId":30021342,"solarSystemName":"E4J-9B8","location":{"x":-31600000000000000000,"y":-5910000000000000000,"z":-31400000000000000000}},"30021343":{"solarSystemId":30021343,"solarSystemName":"Letum","location":{"x":-31800000000000000000,"y":-4770000000000000000,"z":-31600000000000000000}},"30021344":{"solarSystemId":30021344,"solarSystemName":"A12-4S8","location":{"x":-52100000000000000000,"y":-1730000000000000000,"z":-25600000000000000000}},"30021345":{"solarSystemId":30021345,"solarSystemName":"USB-HS8","location":{"x":-52600000000000000000,"y":-1920000000000000000,"z":-25800000000000000000}},"30021346":{"solarSystemId":30021346,"solarSystemName":"I7C-RS8","location":{"x":-52800000000000000000,"y":-1960000000000000000,"z":-26100000000000000000}},"30021347":{"solarSystemId":30021347,"solarSystemName":"Nequam","location":{"x":-52900000000000000000,"y":-1830000000000000000,"z":-27000000000000000000}},"30021348":{"solarSystemId":30021348,"solarSystemName":"EV0-JT8","location":{"x":-53800000000000000000,"y":-1630000000000000000,"z":-26900000000000000000}},"30021349":{"solarSystemId":30021349,"solarSystemName":"AB2-6T8","location":{"x":-52400000000000000000,"y":-1210000000000000000,"z":-28200000000000000000}},"30021350":{"solarSystemId":30021350,"solarSystemName":"IP8-ST8","location":{"x":-54100000000000000000,"y":-1940000000000000000,"z":-27700000000000000000}},"30021351":{"solarSystemId":30021351,"solarSystemName":"E9D-NT8","location":{"x":-53900000000000000000,"y":-1090000000000000000,"z":-27300000000000000000}},"30021352":{"solarSystemId":30021352,"solarSystemName":"E1L-QT8","location":{"x":-53400000000000000000,"y":-911000000000000000,"z":-28700000000000000000}},"30021353":{"solarSystemId":30021353,"solarSystemName":"IC2-H09","location":{"x":-55800000000000000000,"y":-720000000000000000,"z":-31200000000000000000}},"30021354":{"solarSystemId":30021354,"solarSystemName":"E33-1T8","location":{"x":-50800000000000000000,"y":-1240000000000000000,"z":-30800000000000000000}},"30021355":{"solarSystemId":30021355,"solarSystemName":"OVC-DT8","location":{"x":-48400000000000000000,"y":-838000000000000000,"z":-35600000000000000000}},"30021356":{"solarSystemId":30021356,"solarSystemName":"ID8-BV8","location":{"x":-52000000000000000000,"y":-759000000000000000,"z":-33100000000000000000}},"30021357":{"solarSystemId":30021357,"solarSystemName":"O5H-PT8","location":{"x":-51300000000000000000,"y":-772000000000000000,"z":-32300000000000000000}},"30021358":{"solarSystemId":30021358,"solarSystemName":"OJ5-9V8","location":{"x":-51300000000000000000,"y":-461000000000000000,"z":-34200000000000000000}},"30021359":{"solarSystemId":30021359,"solarSystemName":"UB7-7V8","location":{"x":-56100000000000000000,"y":-1330000000000000000,"z":-24700000000000000000}},"30021360":{"solarSystemId":30021360,"solarSystemName":"E1F-HT8","location":{"x":-54900000000000000000,"y":-1600000000000000000,"z":-24300000000000000000}},"30021361":{"solarSystemId":30021361,"solarSystemName":"AD3-9T8","location":{"x":-54700000000000000000,"y":-780000000000000000,"z":-23700000000000000000}},"30021362":{"solarSystemId":30021362,"solarSystemName":"APM-5S8","location":{"x":-53300000000000000000,"y":-844000000000000000,"z":-23100000000000000000}},"30021363":{"solarSystemId":30021363,"solarSystemName":"OBL-HS8","location":{"x":-53600000000000000000,"y":-668000000000000000,"z":-23400000000000000000}},"30021364":{"solarSystemId":30021364,"solarSystemName":"N.341.D61","location":{"x":-41600000000000000000,"y":-1390000000000000000,"z":-13200000000000000000}},"30021365":{"solarSystemId":30021365,"solarSystemName":"N.751.QT1","location":{"x":-42900000000000000000,"y":-1570000000000000000,"z":-13800000000000000000}},"30021366":{"solarSystemId":30021366,"solarSystemName":"B.931.D1X","location":{"x":-40700000000000000000,"y":-938000000000000000,"z":-12900000000000000000}},"30021367":{"solarSystemId":30021367,"solarSystemName":"M.H31.8NZ","location":{"x":-41200000000000000000,"y":-1020000000000000000,"z":-15300000000000000000}},"30021368":{"solarSystemId":30021368,"solarSystemName":"O.141.JD1","location":{"x":-41600000000000000000,"y":-1720000000000000000,"z":-13100000000000000000}},"30021369":{"solarSystemId":30021369,"solarSystemName":"B.331.K9W","location":{"x":-40500000000000000000,"y":-1060000000000000000,"z":-14200000000000000000}},"30021370":{"solarSystemId":30021370,"solarSystemName":"M.341.QQW","location":{"x":-41600000000000000000,"y":-1070000000000000000,"z":-13900000000000000000}},"30021371":{"solarSystemId":30021371,"solarSystemName":"N.X81.9L2","location":{"x":-47100000000000000000,"y":-2820000000000000000,"z":-18500000000000000000}},"30021372":{"solarSystemId":30021372,"solarSystemName":"I.C31.VF3","location":{"x":-40900000000000000000,"y":-4240000000000000000,"z":-16400000000000000000}},"30021373":{"solarSystemId":30021373,"solarSystemName":"I.741.XR2","location":{"x":-41800000000000000000,"y":-2800000000000000000,"z":-22100000000000000000}},"30021374":{"solarSystemId":30021374,"solarSystemName":"L.D11.4X1","location":{"x":-38600000000000000000,"y":-2090000000000000000,"z":-13300000000000000000}},"30021375":{"solarSystemId":30021375,"solarSystemName":"A.891.8F2","location":{"x":-47600000000000000000,"y":-3070000000000000000,"z":-17500000000000000000}},"30021376":{"solarSystemId":30021376,"solarSystemName":"E.DFE.XJ1","location":{"x":-36500000000000000000,"y":-2080000000000000000,"z":-10800000000000000000}},"30021377":{"solarSystemId":30021377,"solarSystemName":"H.201.ED2","location":{"x":-37000000000000000000,"y":-2880000000000000000,"z":-12400000000000000000}},"30021378":{"solarSystemId":30021378,"solarSystemName":"A.H11.2X1","location":{"x":-38900000000000000000,"y":-2090000000000000000,"z":-12500000000000000000}},"30021379":{"solarSystemId":30021379,"solarSystemName":"S.V01.7Z1","location":{"x":-37600000000000000000,"y":-2170000000000000000,"z":-10300000000000000000}},"30021380":{"solarSystemId":30021380,"solarSystemName":"R.K01.V02","location":{"x":-38000000000000000000,"y":-2330000000000000000,"z":-11200000000000000000}},"30021381":{"solarSystemId":30021381,"solarSystemName":"T.401.M42","location":{"x":-37000000000000000000,"y":-2470000000000000000,"z":-10000000000000000000}},"30021382":{"solarSystemId":30021382,"solarSystemName":"C.B01.V71","location":{"x":-37700000000000000000,"y":-1430000000000000000,"z":-11200000000000000000}},"30021383":{"solarSystemId":30021383,"solarSystemName":"A.D51.Z91","location":{"x":-43200000000000000000,"y":-1510000000000000000,"z":-15300000000000000000}},"30021384":{"solarSystemId":30021384,"solarSystemName":"S.W41.V01","location":{"x":-42600000000000000000,"y":-1180000000000000000,"z":-16000000000000000000}},"30021385":{"solarSystemId":30021385,"solarSystemName":"I.X41.XX1","location":{"x":-42500000000000000000,"y":-2120000000000000000,"z":-15100000000000000000}},"30021386":{"solarSystemId":30021386,"solarSystemName":"H.C61.BM1","location":{"x":-44400000000000000000,"y":-1790000000000000000,"z":-13600000000000000000}},"30021387":{"solarSystemId":30021387,"solarSystemName":"C.F51.HVL","location":{"x":-43400000000000000000,"y":-527000000000000000,"z":-16000000000000000000}},"30021388":{"solarSystemId":30021388,"solarSystemName":"M.J31.KF1","location":{"x":-41300000000000000000,"y":-1940000000000000000,"z":-15100000000000000000}},"30021389":{"solarSystemId":30021389,"solarSystemName":"C.W41.P1C","location":{"x":-42600000000000000000,"y":-578000000000000000,"z":-17200000000000000000}},"30021390":{"solarSystemId":30021390,"solarSystemName":"H.T81.7R1","location":{"x":-46500000000000000000,"y":-1630000000000000000,"z":-13800000000000000000}},"30021391":{"solarSystemId":30021391,"solarSystemName":"S.771.YB1","location":{"x":-45200000000000000000,"y":-1980000000000000000,"z":-13300000000000000000}},"30021392":{"solarSystemId":30021392,"solarSystemName":"L.771.P62","location":{"x":-45200000000000000000,"y":-2540000000000000000,"z":-13300000000000000000}},"30021393":{"solarSystemId":30021393,"solarSystemName":"U.Q71.F21","location":{"x":-45700000000000000000,"y":-1250000000000000000,"z":-12900000000000000000}},"30021394":{"solarSystemId":30021394,"solarSystemName":"E.971.MG1","location":{"x":-45300000000000000000,"y":-2000000000000000000,"z":-13800000000000000000}},"30021395":{"solarSystemId":30021395,"solarSystemName":"M.J71.H41","location":{"x":-45900000000000000000,"y":-1320000000000000000,"z":-13000000000000000000}},"30021396":{"solarSystemId":30021396,"solarSystemName":"R.F11.XW1","location":{"x":-38800000000000000000,"y":-2230000000000000000,"z":-11300000000000000000}},"30021397":{"solarSystemId":30021397,"solarSystemName":"L.M21.952","location":{"x":-39800000000000000000,"y":-2500000000000000000,"z":-9790000000000000000}},"30021398":{"solarSystemId":30021398,"solarSystemName":"T.821.V21","location":{"x":-39500000000000000000,"y":-1250000000000000000,"z":-9800000000000000000}},"30021399":{"solarSystemId":30021399,"solarSystemName":"H.621.9D2","location":{"x":-39400000000000000000,"y":-2860000000000000000,"z":-10700000000000000000}},"30021400":{"solarSystemId":30021400,"solarSystemName":"L.C21.6D2","location":{"x":-39800000000000000000,"y":-2850000000000000000,"z":-10100000000000000000}},"30021401":{"solarSystemId":30021401,"solarSystemName":"O.431.ET1","location":{"x":-40500000000000000000,"y":-1580000000000000000,"z":-11500000000000000000}},"30021402":{"solarSystemId":30021402,"solarSystemName":"O.721.8N1","location":{"x":-39500000000000000000,"y":-1590000000000000000,"z":-9690000000000000000}},"30021403":{"solarSystemId":30021403,"solarSystemName":"B.G11.QRY","location":{"x":-38900000000000000000,"y":-988000000000000000,"z":-10400000000000000000}},"30021404":{"solarSystemId":30021404,"solarSystemName":"T.481.RMY","location":{"x":-46300000000000000000,"y":-992000000000000000,"z":-9250000000000000000}},"30021405":{"solarSystemId":30021405,"solarSystemName":"L.S61.G91","location":{"x":-44200000000000000000,"y":-1500000000000000000,"z":-10300000000000000000}},"30021406":{"solarSystemId":30021406,"solarSystemName":"M.G51.XD5","location":{"x":-43500000000000000000,"y":-198000000000000000,"z":-13200000000000000000}},"30021407":{"solarSystemId":30021407,"solarSystemName":"M.Y31.XVQ","location":{"x":-41400000000000000000,"y":-743000000000000000,"z":-12400000000000000000}},"30021408":{"solarSystemId":30021408,"solarSystemName":"M.B31.S5H","location":{"x":-41200000000000000000,"y":-871000000000000000,"z":-12200000000000000000}},"30021409":{"solarSystemId":30021409,"solarSystemName":"M.251.Z3V","location":{"x":-42700000000000000000,"y":-689000000000000000,"z":-12100000000000000000}},"30021410":{"solarSystemId":30021410,"solarSystemName":"M.C21.101","location":{"x":-39800000000000000000,"y":-1150000000000000000,"z":-12200000000000000000}},"30021411":{"solarSystemId":30021411,"solarSystemName":"T.D41.R21","location":{"x":-42100000000000000000,"y":-1240000000000000000,"z":-10700000000000000000}},"30021412":{"solarSystemId":30021412,"solarSystemName":"N.451.4W1","location":{"x":-42800000000000000000,"y":-2200000000000000000,"z":-11800000000000000000}},"30021413":{"solarSystemId":30021413,"solarSystemName":"A.E41.D81","location":{"x":-42600000000000000000,"y":-1460000000000000000,"z":-12000000000000000000}},"30021414":{"solarSystemId":30021414,"solarSystemName":"D.R51.X21","location":{"x":-43100000000000000000,"y":-1250000000000000000,"z":-11900000000000000000}},"30021415":{"solarSystemId":30021415,"solarSystemName":"C.K41.131","location":{"x":-42600000000000000000,"y":-1260000000000000000,"z":-10700000000000000000}},"30021416":{"solarSystemId":30021416,"solarSystemName":"C.151.BR3","location":{"x":-42700000000000000000,"y":-124000000000000000,"z":-10500000000000000000}},"30021417":{"solarSystemId":30021417,"solarSystemName":"M.541.ZT1","location":{"x":-41700000000000000000,"y":-1580000000000000000,"z":-12000000000000000000}},"30021418":{"solarSystemId":30021418,"solarSystemName":"I.R51.B0E","location":{"x":-43100000000000000000,"y":-1120000000000000000,"z":-12200000000000000000}},"30021419":{"solarSystemId":30021419,"solarSystemName":"U.H51.PE1","location":{"x":-43500000000000000000,"y":-2290000000000000000,"z":-11900000000000000000}},"30021420":{"solarSystemId":30021420,"solarSystemName":"T.561.841","location":{"x":-44000000000000000000,"y":-1310000000000000000,"z":-11500000000000000000}},"30021421":{"solarSystemId":30021421,"solarSystemName":"D.L61.SJ1","location":{"x":-44300000000000000000,"y":-2060000000000000000,"z":-11700000000000000000}},"30021422":{"solarSystemId":30021422,"solarSystemName":"T.C51.4W1","location":{"x":-43200000000000000000,"y":-2200000000000000000,"z":-11300000000000000000}},"30021423":{"solarSystemId":30021423,"solarSystemName":"M.G51.V11","location":{"x":-43500000000000000000,"y":-1210000000000000000,"z":-11600000000000000000}},"30021424":{"solarSystemId":30021424,"solarSystemName":"D.P71.741","location":{"x":-45600000000000000000,"y":-1310000000000000000,"z":-11100000000000000000}},"30021425":{"solarSystemId":30021425,"solarSystemName":"T.771.522","location":{"x":-45200000000000000000,"y":-2380000000000000000,"z":-11400000000000000000}},"30021426":{"solarSystemId":30021426,"solarSystemName":"R.Z61.M42","location":{"x":-44800000000000000000,"y":-2470000000000000000,"z":-12300000000000000000}},"30021427":{"solarSystemId":30021427,"solarSystemName":"I.W61.L32","location":{"x":-44900000000000000000,"y":-2430000000000000000,"z":-12400000000000000000}},"30021428":{"solarSystemId":30021428,"solarSystemName":"D.N61.RZ1","location":{"x":-44200000000000000000,"y":-2180000000000000000,"z":-10800000000000000000}},"30021429":{"solarSystemId":30021429,"solarSystemName":"C.671.L51","location":{"x":-45200000000000000000,"y":-1350000000000000000,"z":-10900000000000000000}},"30021430":{"solarSystemId":30021430,"solarSystemName":"ATC-3J8","location":{"x":-47100000000000000000,"y":-2220000000000000000,"z":-15600000000000000000}},"30021431":{"solarSystemId":30021431,"solarSystemName":"I4V-2K8","location":{"x":-48000000000000000000,"y":-1530000000000000000,"z":-15500000000000000000}},"30021432":{"solarSystemId":30021432,"solarSystemName":"AJ6-9J8","location":{"x":-47300000000000000000,"y":-2330000000000000000,"z":-15700000000000000000}},"30021433":{"solarSystemId":30021433,"solarSystemName":"UDN-6J8","location":{"x":-47200000000000000000,"y":-2430000000000000000,"z":-15500000000000000000}},"30021434":{"solarSystemId":30021434,"solarSystemName":"U8D-CJ8","location":{"x":-47400000000000000000,"y":-2310000000000000000,"z":-15400000000000000000}},"30021435":{"solarSystemId":30021435,"solarSystemName":"E66-1J8","location":{"x":-47200000000000000000,"y":-1870000000000000000,"z":-15000000000000000000}},"30021436":{"solarSystemId":30021436,"solarSystemName":"E1M-4L8","location":{"x":-48600000000000000000,"y":-3440000000000000000,"z":-17100000000000000000}},"30021437":{"solarSystemId":30021437,"solarSystemName":"USP-GN8","location":{"x":-50800000000000000000,"y":-6840000000000000000,"z":-15400000000000000000}},"30021438":{"solarSystemId":30021438,"solarSystemName":"EFH-NJ8","location":{"x":-46900000000000000000,"y":-3470000000000000000,"z":-18000000000000000000}},"30021439":{"solarSystemId":30021439,"solarSystemName":"E50-DJ8","location":{"x":-46600000000000000000,"y":-3320000000000000000,"z":-18000000000000000000}},"30021440":{"solarSystemId":30021440,"solarSystemName":"OC3-HK8","location":{"x":-47500000000000000000,"y":-7220000000000000000,"z":-16600000000000000000}},"30021441":{"solarSystemId":30021441,"solarSystemName":"E2T-NK8","location":{"x":-48500000000000000000,"y":-2630000000000000000,"z":-16000000000000000000}},"30021442":{"solarSystemId":30021442,"solarSystemName":"I4B-VJ8","location":{"x":-47900000000000000000,"y":-2290000000000000000,"z":-15300000000000000000}},"30021443":{"solarSystemId":30021443,"solarSystemName":"APG-MK8","location":{"x":-48500000000000000000,"y":-2390000000000000000,"z":-16200000000000000000}},"30021444":{"solarSystemId":30021444,"solarSystemName":"E8R-1K8","location":{"x":-47900000000000000000,"y":-2350000000000000000,"z":-15600000000000000000}},"30021445":{"solarSystemId":30021445,"solarSystemName":"UBF-8K8","location":{"x":-48100000000000000000,"y":-2430000000000000000,"z":-15800000000000000000}},"30021446":{"solarSystemId":30021446,"solarSystemName":"UTC-LK8","location":{"x":-48500000000000000000,"y":-2780000000000000000,"z":-15700000000000000000}},"30021447":{"solarSystemId":30021447,"solarSystemName":"EQ4-5K8","location":{"x":-47800000000000000000,"y":-2420000000000000000,"z":-16600000000000000000}},"30021448":{"solarSystemId":30021448,"solarSystemName":"I1F-309","location":{"x":-58100000000000000000,"y":-1540000000000000000,"z":-23300000000000000000}},"30021449":{"solarSystemId":30021449,"solarSystemName":"IRB-HK8","location":{"x":-48300000000000000000,"y":-1090000000000000000,"z":-16700000000000000000}},"30021450":{"solarSystemId":30021450,"solarSystemName":"IQ8-029","location":{"x":-63500000000000000000,"y":-717000000000000000,"z":-23500000000000000000}},"30021451":{"solarSystemId":30021451,"solarSystemName":"ECF-519","location":{"x":-60600000000000000000,"y":-789000000000000000,"z":-24700000000000000000}},"30021452":{"solarSystemId":30021452,"solarSystemName":"U18-GK8","location":{"x":-48300000000000000000,"y":-3050000000000000000,"z":-16000000000000000000}},"30021453":{"solarSystemId":30021453,"solarSystemName":"ABS-BJ8","location":{"x":-47300000000000000000,"y":-3130000000000000000,"z":-15400000000000000000}},"30021454":{"solarSystemId":30021454,"solarSystemName":"UFH-GK8","location":{"x":-48300000000000000000,"y":-3060000000000000000,"z":-15900000000000000000}},"30021455":{"solarSystemId":30021455,"solarSystemName":"O55-MJ8","location":{"x":-47500000000000000000,"y":-3400000000000000000,"z":-15200000000000000000}},"30021456":{"solarSystemId":30021456,"solarSystemName":"IMS-LJ8","location":{"x":-47700000000000000000,"y":-2740000000000000000,"z":-14800000000000000000}},"30021457":{"solarSystemId":30021457,"solarSystemName":"Niveus","location":{"x":-46100000000000000000,"y":-2660000000000000000,"z":-16200000000000000000}},"30021458":{"solarSystemId":30021458,"solarSystemName":"ESP-RH8","location":{"x":-46800000000000000000,"y":-2490000000000000000,"z":-15700000000000000000}},"30021459":{"solarSystemId":30021459,"solarSystemName":"IDT-FJ8","location":{"x":-47300000000000000000,"y":-2590000000000000000,"z":-16000000000000000000}},"30021460":{"solarSystemId":30021460,"solarSystemName":"E9L-PJ8","location":{"x":-47500000000000000000,"y":-2340000000000000000,"z":-16400000000000000000}},"30021461":{"solarSystemId":30021461,"solarSystemName":"E8R-7J8","location":{"x":-47000000000000000000,"y":-2540000000000000000,"z":-16200000000000000000}},"30021462":{"solarSystemId":30021462,"solarSystemName":"OTQ-CG8","location":{"x":-45600000000000000000,"y":-2720000000000000000,"z":-15400000000000000000}},"30021463":{"solarSystemId":30021463,"solarSystemName":"Q:246S","location":{"x":-25500000000000000000,"y":-690000000000000000,"z":-4070000000000000000}},"30021464":{"solarSystemId":30021464,"solarSystemName":"B:3RIK","location":{"x":-25900000000000000000,"y":-605000000000000000,"z":-3770000000000000000}},"30021465":{"solarSystemId":30021465,"solarSystemName":"P:3T43","location":{"x":-25900000000000000000,"y":-1270000000000000000,"z":-4140000000000000000}},"30021466":{"solarSystemId":30021466,"solarSystemName":"U:VR24","location":{"x":-26400000000000000000,"y":-1030000000000000000,"z":-4270000000000000000}},"30021467":{"solarSystemId":30021467,"solarSystemName":"Z:1ATN","location":{"x":-25800000000000000000,"y":-1570000000000000000,"z":-4010000000000000000}},"30021468":{"solarSystemId":30021468,"solarSystemName":"F:39VL","location":{"x":-26200000000000000000,"y":-491000000000000000,"z":-4080000000000000000}},"30021469":{"solarSystemId":30021469,"solarSystemName":"Y:1A09","location":{"x":-26100000000000000000,"y":-1320000000000000000,"z":-4040000000000000000}},"30021470":{"solarSystemId":30021470,"solarSystemName":"B:13L5","location":{"x":-25900000000000000000,"y":-710000000000000000,"z":-3500000000000000000}},"30021471":{"solarSystemId":30021471,"solarSystemName":"F:1EAK","location":{"x":-26300000000000000000,"y":-532000000000000000,"z":-3790000000000000000}},"30021472":{"solarSystemId":30021472,"solarSystemName":"J:27VV","location":{"x":-26500000000000000000,"y":-706000000000000000,"z":-3820000000000000000}},"30021473":{"solarSystemId":30021473,"solarSystemName":"P:22OA","location":{"x":-26200000000000000000,"y":-658000000000000000,"z":-3360000000000000000}},"30021474":{"solarSystemId":30021474,"solarSystemName":"M:2LSK","location":{"x":-26500000000000000000,"y":172000000000000000,"z":-3630000000000000000}},"30021475":{"solarSystemId":30021475,"solarSystemName":"H:2IA1","location":{"x":-26200000000000000000,"y":-559000000000000000,"z":-4000000000000000000}},"30021476":{"solarSystemId":30021476,"solarSystemName":"B:SK8R","location":{"x":-25800000000000000000,"y":-777000000000000000,"z":-3420000000000000000}},"30021477":{"solarSystemId":30021477,"solarSystemName":"Z:1LLL","location":{"x":-26600000000000000000,"y":-1130000000000000000,"z":-3920000000000000000}},"30021478":{"solarSystemId":30021478,"solarSystemName":"D:17TN","location":{"x":-25500000000000000000,"y":-598000000000000000,"z":-3760000000000000000}},"30021479":{"solarSystemId":30021479,"solarSystemName":"U:15V0","location":{"x":-28800000000000000000,"y":-517000000000000000,"z":-5790000000000000000}},"30021480":{"solarSystemId":30021480,"solarSystemName":"D:2517","location":{"x":-28400000000000000000,"y":-341000000000000000,"z":-6470000000000000000}},"30021481":{"solarSystemId":30021481,"solarSystemName":"F:2TS6","location":{"x":-28500000000000000000,"y":-457000000000000000,"z":-5450000000000000000}},"30021482":{"solarSystemId":30021482,"solarSystemName":"B:1E4I","location":{"x":-28400000000000000000,"y":-374000000000000000,"z":-5620000000000000000}},"30021483":{"solarSystemId":30021483,"solarSystemName":"Q:2412","location":{"x":-28600000000000000000,"y":-1150000000000000000,"z":-6740000000000000000}},"30021484":{"solarSystemId":30021484,"solarSystemName":"D:1804","location":{"x":-28100000000000000000,"y":-513000000000000000,"z":-6770000000000000000}},"30021485":{"solarSystemId":30021485,"solarSystemName":"M:4VVI","location":{"x":-28500000000000000000,"y":-1030000000000000000,"z":-6150000000000000000}},"30021486":{"solarSystemId":30021486,"solarSystemName":"Z:172N","location":{"x":-28800000000000000000,"y":-693000000000000000,"z":-5450000000000000000}},"30021487":{"solarSystemId":30021487,"solarSystemName":"Z:IVE9","location":{"x":-28900000000000000000,"y":-897000000000000000,"z":-6130000000000000000}},"30021488":{"solarSystemId":30021488,"solarSystemName":"G:17R3","location":{"x":-28900000000000000000,"y":-533000000000000000,"z":-6120000000000000000}},"30021489":{"solarSystemId":30021489,"solarSystemName":"F:1I0I","location":{"x":-28600000000000000000,"y":-923000000000000000,"z":-5840000000000000000}},"30021490":{"solarSystemId":30021490,"solarSystemName":"M:2VVV","location":{"x":-28100000000000000000,"y":-944000000000000000,"z":-6400000000000000000}},"30021491":{"solarSystemId":30021491,"solarSystemName":"U:1R91","location":{"x":-27800000000000000000,"y":-1510000000000000000,"z":-7320000000000000000}},"30021492":{"solarSystemId":30021492,"solarSystemName":"U:1EI9","location":{"x":-29300000000000000000,"y":-345000000000000000,"z":-6050000000000000000}},"30021493":{"solarSystemId":30021493,"solarSystemName":"U:1TNT","location":{"x":-28600000000000000000,"y":-769000000000000000,"z":-6610000000000000000}},"30021494":{"solarSystemId":30021494,"solarSystemName":"P:LTNL","location":{"x":-28100000000000000000,"y":-955000000000000000,"z":-6940000000000000000}},"30021495":{"solarSystemId":30021495,"solarSystemName":"Y:1TOV","location":{"x":-29000000000000000000,"y":-241000000000000000,"z":-5730000000000000000}},"30021496":{"solarSystemId":30021496,"solarSystemName":"F:342K","location":{"x":-28200000000000000000,"y":-1110000000000000000,"z":-6820000000000000000}},"30021497":{"solarSystemId":30021497,"solarSystemName":"M:3L0T","location":{"x":-28500000000000000000,"y":-39300000000000000,"z":-5940000000000000000}},"30021498":{"solarSystemId":30021498,"solarSystemName":"P:23NL","location":{"x":-27800000000000000000,"y":-898000000000000000,"z":-6260000000000000000}},"30021499":{"solarSystemId":30021499,"solarSystemName":"B:37L2","location":{"x":-27700000000000000000,"y":-926000000000000000,"z":-6820000000000000000}},"30021500":{"solarSystemId":30021500,"solarSystemName":"B:2A2I","location":{"x":-27500000000000000000,"y":-523000000000000000,"z":-6490000000000000000}},"30021501":{"solarSystemId":30021501,"solarSystemName":"H:1373","location":{"x":-27600000000000000000,"y":-627000000000000000,"z":-5890000000000000000}},"30021502":{"solarSystemId":30021502,"solarSystemName":"G:26I4","location":{"x":-28100000000000000000,"y":-1170000000000000000,"z":-6410000000000000000}},"30021503":{"solarSystemId":30021503,"solarSystemName":"P:E00O","location":{"x":-27000000000000000000,"y":-519000000000000000,"z":-6740000000000000000}},"30021504":{"solarSystemId":30021504,"solarSystemName":"Q:S9AN","location":{"x":-26900000000000000000,"y":-1070000000000000000,"z":-6890000000000000000}},"30021505":{"solarSystemId":30021505,"solarSystemName":"M:134E","location":{"x":-27100000000000000000,"y":-862000000000000000,"z":-7000000000000000000}},"30021506":{"solarSystemId":30021506,"solarSystemName":"J:1687","location":{"x":-27500000000000000000,"y":-793000000000000000,"z":-7180000000000000000}},"30021507":{"solarSystemId":30021507,"solarSystemName":"U:1OOE","location":{"x":-27500000000000000000,"y":-404000000000000000,"z":-6530000000000000000}},"30021508":{"solarSystemId":30021508,"solarSystemName":"G:1KEA","location":{"x":-27200000000000000000,"y":-283000000000000000,"z":-6410000000000000000}},"30021509":{"solarSystemId":30021509,"solarSystemName":"G:1LRL","location":{"x":-27400000000000000000,"y":-971000000000000000,"z":-6300000000000000000}},"30021510":{"solarSystemId":30021510,"solarSystemName":"J:3ESI","location":{"x":-27200000000000000000,"y":-499000000000000000,"z":-6890000000000000000}},"30021511":{"solarSystemId":30021511,"solarSystemName":"Q:1KT7","location":{"x":-27000000000000000000,"y":-815000000000000000,"z":-6740000000000000000}},"30021512":{"solarSystemId":30021512,"solarSystemName":"F:20A9","location":{"x":-27900000000000000000,"y":-1010000000000000000,"z":-6040000000000000000}},"30021513":{"solarSystemId":30021513,"solarSystemName":"B:1K9S","location":{"x":-26800000000000000000,"y":-633000000000000000,"z":-6560000000000000000}},"30021514":{"solarSystemId":30021514,"solarSystemName":"F:2NAT","location":{"x":-27200000000000000000,"y":-1070000000000000000,"z":-6190000000000000000}},"30021515":{"solarSystemId":30021515,"solarSystemName":"F:2LO5","location":{"x":-26900000000000000000,"y":-1080000000000000000,"z":-6200000000000000000}},"30021516":{"solarSystemId":30021516,"solarSystemName":"F:KAN7","location":{"x":-26700000000000000000,"y":-1110000000000000000,"z":-5260000000000000000}},"30021517":{"solarSystemId":30021517,"solarSystemName":"Z:1O51","location":{"x":-27500000000000000000,"y":-1100000000000000000,"z":-5990000000000000000}},"30021518":{"solarSystemId":30021518,"solarSystemName":"G:3AAI","location":{"x":-26900000000000000000,"y":-997000000000000000,"z":-6250000000000000000}},"30021519":{"solarSystemId":30021519,"solarSystemName":"P:19O9","location":{"x":-27000000000000000000,"y":-1250000000000000000,"z":-6290000000000000000}},"30021520":{"solarSystemId":30021520,"solarSystemName":"Z:11LK","location":{"x":-26500000000000000000,"y":-1960000000000000000,"z":-6330000000000000000}},"30021521":{"solarSystemId":30021521,"solarSystemName":"H:25IK","location":{"x":-27100000000000000000,"y":-1640000000000000000,"z":-5790000000000000000}},"30021522":{"solarSystemId":30021522,"solarSystemName":"H:2R93","location":{"x":-26400000000000000000,"y":-1320000000000000000,"z":-5730000000000000000}},"30021523":{"solarSystemId":30021523,"solarSystemName":"H:1LVV","location":{"x":-27100000000000000000,"y":-1300000000000000000,"z":-6070000000000000000}},"30021524":{"solarSystemId":30021524,"solarSystemName":"J:LO91","location":{"x":-27600000000000000000,"y":-1780000000000000000,"z":-6170000000000000000}},"30021525":{"solarSystemId":30021525,"solarSystemName":"U:34KV","location":{"x":-27700000000000000000,"y":-974000000000000000,"z":-5800000000000000000}},"30021526":{"solarSystemId":30021526,"solarSystemName":"B:1LR4","location":{"x":-26600000000000000000,"y":-554000000000000000,"z":-4210000000000000000}},"30021527":{"solarSystemId":30021527,"solarSystemName":"B:1NKE","location":{"x":-27300000000000000000,"y":-612000000000000000,"z":-4420000000000000000}},"30021528":{"solarSystemId":30021528,"solarSystemName":"Z:VRVN","location":{"x":-27500000000000000000,"y":-125000000000000000,"z":-4800000000000000000}},"30021529":{"solarSystemId":30021529,"solarSystemName":"U:1IOI","location":{"x":-27700000000000000000,"y":-528000000000000000,"z":-4680000000000000000}},"30021530":{"solarSystemId":30021530,"solarSystemName":"Z:20K1","location":{"x":-27300000000000000000,"y":-379000000000000000,"z":-3290000000000000000}},"30021531":{"solarSystemId":30021531,"solarSystemName":"P:10I4","location":{"x":-27000000000000000000,"y":-16900000000000000,"z":-4280000000000000000}},"30021532":{"solarSystemId":30021532,"solarSystemName":"B:47VA","location":{"x":-27700000000000000000,"y":-690000000000000000,"z":-4170000000000000000}},"30021533":{"solarSystemId":30021533,"solarSystemName":"Y:1S4N","location":{"x":-27500000000000000000,"y":-568000000000000000,"z":-4680000000000000000}},"30021534":{"solarSystemId":30021534,"solarSystemName":"D:T1VA","location":{"x":-27900000000000000000,"y":470000000000000000,"z":-5120000000000000000}},"30021535":{"solarSystemId":30021535,"solarSystemName":"Q:1VTL","location":{"x":-27700000000000000000,"y":-644000000000000000,"z":-4570000000000000000}},"30021536":{"solarSystemId":30021536,"solarSystemName":"H:2VSV","location":{"x":-27300000000000000000,"y":-256000000000000000,"z":-4070000000000000000}},"30021537":{"solarSystemId":30021537,"solarSystemName":"B:1RR5","location":{"x":-27600000000000000000,"y":-748000000000000000,"z":-4570000000000000000}},"30021538":{"solarSystemId":30021538,"solarSystemName":"H:33TV","location":{"x":-27700000000000000000,"y":-760000000000000000,"z":-4530000000000000000}},"30021539":{"solarSystemId":30021539,"solarSystemName":"H:19IO","location":{"x":-26900000000000000000,"y":-645000000000000000,"z":-3740000000000000000}},"30021540":{"solarSystemId":30021540,"solarSystemName":"J:3287","location":{"x":-26700000000000000000,"y":-817000000000000000,"z":-6120000000000000000}},"30021541":{"solarSystemId":30021541,"solarSystemName":"F:17K1","location":{"x":-26000000000000000000,"y":-661000000000000000,"z":-5750000000000000000}},"30021542":{"solarSystemId":30021542,"solarSystemName":"Y:2TL9","location":{"x":-26500000000000000000,"y":-859000000000000000,"z":-6420000000000000000}},"30021543":{"solarSystemId":30021543,"solarSystemName":"Z:ALON","location":{"x":-25900000000000000000,"y":-846000000000000000,"z":-5750000000000000000}},"30021544":{"solarSystemId":30021544,"solarSystemName":"H:6ROS","location":{"x":-26800000000000000000,"y":-793000000000000000,"z":-5720000000000000000}},"30021545":{"solarSystemId":30021545,"solarSystemName":"Y:46RN","location":{"x":-26600000000000000000,"y":-887000000000000000,"z":-6180000000000000000}},"30021546":{"solarSystemId":30021546,"solarSystemName":"Y:IET2","location":{"x":-26900000000000000000,"y":-817000000000000000,"z":-6170000000000000000}},"30021547":{"solarSystemId":30021547,"solarSystemName":"G:3A7S","location":{"x":-26400000000000000000,"y":-1230000000000000000,"z":-5980000000000000000}},"30021548":{"solarSystemId":30021548,"solarSystemName":"M:142A","location":{"x":-26700000000000000000,"y":-797000000000000000,"z":-5680000000000000000}},"30021549":{"solarSystemId":30021549,"solarSystemName":"Y:2TL8","location":{"x":-26600000000000000000,"y":-876000000000000000,"z":-5980000000000000000}},"30021550":{"solarSystemId":30021550,"solarSystemName":"G:2N16","location":{"x":-26700000000000000000,"y":-913000000000000000,"z":-6490000000000000000}},"30021551":{"solarSystemId":30021551,"solarSystemName":"Z:5059","location":{"x":-26400000000000000000,"y":-792000000000000000,"z":-6050000000000000000}},"30021552":{"solarSystemId":30021552,"solarSystemName":"U:111L","location":{"x":-26600000000000000000,"y":-614000000000000000,"z":-6370000000000000000}},"30021553":{"solarSystemId":30021553,"solarSystemName":"M:AVVT","location":{"x":-26400000000000000000,"y":-872000000000000000,"z":-5930000000000000000}},"30021554":{"solarSystemId":30021554,"solarSystemName":"D:2200","location":{"x":-27800000000000000000,"y":-476000000000000000,"z":-5320000000000000000}},"30021555":{"solarSystemId":30021555,"solarSystemName":"D:4TNA","location":{"x":-27000000000000000000,"y":-921000000000000000,"z":-5040000000000000000}},"30021556":{"solarSystemId":30021556,"solarSystemName":"M:S7AR","location":{"x":-28400000000000000000,"y":-846000000000000000,"z":-5020000000000000000}},"30021557":{"solarSystemId":30021557,"solarSystemName":"M:1K57","location":{"x":-27000000000000000000,"y":-1430000000000000000,"z":-4910000000000000000}},"30021558":{"solarSystemId":30021558,"solarSystemName":"P:3O98","location":{"x":-27800000000000000000,"y":-531000000000000000,"z":-4850000000000000000}},"30021559":{"solarSystemId":30021559,"solarSystemName":"Y:O345","location":{"x":-28200000000000000000,"y":-682000000000000000,"z":-5040000000000000000}},"30021560":{"solarSystemId":30021560,"solarSystemName":"U:346S","location":{"x":-27400000000000000000,"y":-869000000000000000,"z":-5310000000000000000}},"30021561":{"solarSystemId":30021561,"solarSystemName":"Y:1EI5","location":{"x":-27100000000000000000,"y":-764000000000000000,"z":-5130000000000000000}},"30021562":{"solarSystemId":30021562,"solarSystemName":"B:19ES","location":{"x":-27700000000000000000,"y":-1160000000000000000,"z":-4580000000000000000}},"30021563":{"solarSystemId":30021563,"solarSystemName":"Z:22L8","location":{"x":-27600000000000000000,"y":-884000000000000000,"z":-5050000000000000000}},"30021564":{"solarSystemId":30021564,"solarSystemName":"G:1IAS","location":{"x":-27900000000000000000,"y":-1100000000000000000,"z":-4540000000000000000}},"30021565":{"solarSystemId":30021565,"solarSystemName":"B:1IT6","location":{"x":-27400000000000000000,"y":-618000000000000000,"z":-5310000000000000000}},"30021566":{"solarSystemId":30021566,"solarSystemName":"D:26NA","location":{"x":-27900000000000000000,"y":-584000000000000000,"z":-5170000000000000000}},"30021567":{"solarSystemId":30021567,"solarSystemName":"B:1A19","location":{"x":-27700000000000000000,"y":-229000000000000000,"z":-5350000000000000000}},"30021568":{"solarSystemId":30021568,"solarSystemName":"G:1E93","location":{"x":-26200000000000000000,"y":-825000000000000000,"z":-5390000000000000000}},"30021569":{"solarSystemId":30021569,"solarSystemName":"Z:1ERV","location":{"x":-26200000000000000000,"y":-437000000000000000,"z":-5610000000000000000}},"30021570":{"solarSystemId":30021570,"solarSystemName":"D:AR0R","location":{"x":-26600000000000000000,"y":-779000000000000000,"z":-5150000000000000000}},"30021571":{"solarSystemId":30021571,"solarSystemName":"U:AV24","location":{"x":-27000000000000000000,"y":-530000000000000000,"z":-5250000000000000000}},"30021572":{"solarSystemId":30021572,"solarSystemName":"B:18L7","location":{"x":-26000000000000000000,"y":-427000000000000000,"z":-5340000000000000000}},"30021573":{"solarSystemId":30021573,"solarSystemName":"D:1IL3","location":{"x":-26100000000000000000,"y":-965000000000000000,"z":-5380000000000000000}},"30021574":{"solarSystemId":30021574,"solarSystemName":"F:1T1K","location":{"x":-26300000000000000000,"y":-744000000000000000,"z":-5160000000000000000}},"30021575":{"solarSystemId":30021575,"solarSystemName":"Z:10NI","location":{"x":-26700000000000000000,"y":-825000000000000000,"z":-5170000000000000000}},"30021576":{"solarSystemId":30021576,"solarSystemName":"P:NO58","location":{"x":-26000000000000000000,"y":-354000000000000000,"z":-4990000000000000000}},"30021577":{"solarSystemId":30021577,"solarSystemName":"D:K9K8","location":{"x":-26100000000000000000,"y":-550000000000000000,"z":-4850000000000000000}},"30021578":{"solarSystemId":30021578,"solarSystemName":"G:13E5","location":{"x":-26100000000000000000,"y":-908000000000000000,"z":-5430000000000000000}},"30021579":{"solarSystemId":30021579,"solarSystemName":"B:2RO0","location":{"x":-26000000000000000000,"y":-766000000000000000,"z":-5330000000000000000}},"30021580":{"solarSystemId":30021580,"solarSystemName":"Y:351K","location":{"x":-26400000000000000000,"y":-176000000000000000,"z":-5450000000000000000}},"30021581":{"solarSystemId":30021581,"solarSystemName":"Q:17E0","location":{"x":-26900000000000000000,"y":-452000000000000000,"z":-5030000000000000000}},"30021582":{"solarSystemId":30021582,"solarSystemName":"Y:288T","location":{"x":-26100000000000000000,"y":-538000000000000000,"z":-5330000000000000000}},"30021583":{"solarSystemId":30021583,"solarSystemName":"D:286N","location":{"x":-25800000000000000000,"y":-616000000000000000,"z":-5170000000000000000}},"30021584":{"solarSystemId":30021584,"solarSystemName":"Y:154S","location":{"x":-26600000000000000000,"y":-702000000000000000,"z":-4740000000000000000}},"30021585":{"solarSystemId":30021585,"solarSystemName":"G:184O","location":{"x":-27100000000000000000,"y":-684000000000000000,"z":-5390000000000000000}},"30021586":{"solarSystemId":30021586,"solarSystemName":"H:1NR8","location":{"x":-27000000000000000000,"y":-2480000000000000000,"z":-6760000000000000000}},"30021587":{"solarSystemId":30021587,"solarSystemName":"D:4LK7","location":{"x":-28800000000000000000,"y":-982000000000000000,"z":-5870000000000000000}},"30021588":{"solarSystemId":30021588,"solarSystemName":"Y:1172","location":{"x":-28100000000000000000,"y":-1430000000000000000,"z":-5480000000000000000}},"30021589":{"solarSystemId":30021589,"solarSystemName":"B:19SE","location":{"x":-28800000000000000000,"y":-1570000000000000000,"z":-5220000000000000000}},"30021590":{"solarSystemId":30021590,"solarSystemName":"B:100A","location":{"x":-27200000000000000000,"y":-3110000000000000000,"z":-6070000000000000000}},"30021591":{"solarSystemId":30021591,"solarSystemName":"H:178K","location":{"x":-28200000000000000000,"y":-3170000000000000000,"z":-4230000000000000000}},"30021592":{"solarSystemId":30021592,"solarSystemName":"F:18O7","location":{"x":-28700000000000000000,"y":-3130000000000000000,"z":-6520000000000000000}},"30021593":{"solarSystemId":30021593,"solarSystemName":"Z:183A","location":{"x":-29000000000000000000,"y":-837000000000000000,"z":-5870000000000000000}},"30021594":{"solarSystemId":30021594,"solarSystemName":"Q:1ELA","location":{"x":-29200000000000000000,"y":-1450000000000000000,"z":-4710000000000000000}},"30021595":{"solarSystemId":30021595,"solarSystemName":"H:2I97","location":{"x":-29000000000000000000,"y":-1330000000000000000,"z":-5090000000000000000}},"30021596":{"solarSystemId":30021596,"solarSystemName":"M:206K","location":{"x":-29000000000000000000,"y":-1060000000000000000,"z":-5020000000000000000}},"30021597":{"solarSystemId":30021597,"solarSystemName":"G:37KK","location":{"x":-28900000000000000000,"y":-2170000000000000000,"z":-6720000000000000000}},"30021598":{"solarSystemId":30021598,"solarSystemName":"M:1SLO","location":{"x":-28000000000000000000,"y":-2160000000000000000,"z":-5640000000000000000}},"30021599":{"solarSystemId":30021599,"solarSystemName":"D:1SSO","location":{"x":-28900000000000000000,"y":-1550000000000000000,"z":-6680000000000000000}},"30021600":{"solarSystemId":30021600,"solarSystemName":"B:TS79","location":{"x":-29000000000000000000,"y":-2120000000000000000,"z":-6870000000000000000}},"30021601":{"solarSystemId":30021601,"solarSystemName":"H:V65I","location":{"x":-28300000000000000000,"y":-1040000000000000000,"z":-5840000000000000000}},"30021602":{"solarSystemId":30021602,"solarSystemName":"EGH-5Q8","location":{"x":-52900000000000000000,"y":-3280000000000000000,"z":873000000000000000}},"30021603":{"solarSystemId":30021603,"solarSystemName":"I2M-7P8","location":{"x":-52400000000000000000,"y":-4410000000000000000,"z":-3340000000000000000}},"30021604":{"solarSystemId":30021604,"solarSystemName":"OKK-KP8","location":{"x":-52800000000000000000,"y":-2760000000000000000,"z":-1730000000000000000}},"30021605":{"solarSystemId":30021605,"solarSystemName":"EQ9-3Q8","location":{"x":-53300000000000000000,"y":-3070000000000000000,"z":-1810000000000000000}},"30021606":{"solarSystemId":30021606,"solarSystemName":"AR4-8N8","location":{"x":-51600000000000000000,"y":-1780000000000000000,"z":-1640000000000000000}},"30021607":{"solarSystemId":30021607,"solarSystemName":"EQT-LN8","location":{"x":-51900000000000000000,"y":-5250000000000000000,"z":-4330000000000000000}},"30021608":{"solarSystemId":30021608,"solarSystemName":"AC8-QS8","location":{"x":-56300000000000000000,"y":-4720000000000000000,"z":-2110000000000000000}},"30021609":{"solarSystemId":30021609,"solarSystemName":"IPS-DS8","location":{"x":-56000000000000000000,"y":-3960000000000000000,"z":-2250000000000000000}},"30021610":{"solarSystemId":30021610,"solarSystemName":"EKD-FK8","location":{"x":-48300000000000000000,"y":-8430000000000000000,"z":-4670000000000000000}},"30021611":{"solarSystemId":30021611,"solarSystemName":"ITP-RQ8","location":{"x":-53400000000000000000,"y":-8420000000000000000,"z":-4190000000000000000}},"30021612":{"solarSystemId":30021612,"solarSystemName":"ET5-GR8","location":{"x":-54400000000000000000,"y":-3400000000000000000,"z":-412000000000000000}},"30021613":{"solarSystemId":30021613,"solarSystemName":"A7C-2S8","location":{"x":-55200000000000000000,"y":-3920000000000000000,"z":-885000000000000000}},"30021614":{"solarSystemId":30021614,"solarSystemName":"E49-KS8","location":{"x":-56100000000000000000,"y":-4070000000000000000,"z":-1940000000000000000}},"30021615":{"solarSystemId":30021615,"solarSystemName":"I3T-NS8","location":{"x":-56200000000000000000,"y":-4610000000000000000,"z":-1810000000000000000}},"30021616":{"solarSystemId":30021616,"solarSystemName":"I5B-VR8","location":{"x":-54900000000000000000,"y":-4140000000000000000,"z":178000000000000000}},"30021617":{"solarSystemId":30021617,"solarSystemName":"Alghoarismi","location":{"x":-60900000000000000000,"y":-4070000000000000000,"z":433000000000000000}},"30021618":{"solarSystemId":30021618,"solarSystemName":"IK6-SS8","location":{"x":-56100000000000000000,"y":-3120000000000000000,"z":857000000000000000}},"30021619":{"solarSystemId":30021619,"solarSystemName":"IMR-9S8","location":{"x":-55500000000000000000,"y":-3210000000000000000,"z":1010000000000000000}},"30021620":{"solarSystemId":30021620,"solarSystemName":"E8K-6T8","location":{"x":-56600000000000000000,"y":-2940000000000000000,"z":1350000000000000000}},"30021621":{"solarSystemId":30021621,"solarSystemName":"IHV-TT8","location":{"x":-58800000000000000000,"y":-1170000000000000000,"z":-5270000000000000000}},"30021622":{"solarSystemId":30021622,"solarSystemName":"A60-SP8","location":{"x":-53100000000000000000,"y":-3030000000000000000,"z":-2310000000000000000}},"30021623":{"solarSystemId":30021623,"solarSystemName":"ICM-PN8","location":{"x":-52100000000000000000,"y":-3040000000000000000,"z":-3350000000000000000}},"30021624":{"solarSystemId":30021624,"solarSystemName":"OHP-9R8","location":{"x":-54700000000000000000,"y":-2550000000000000000,"z":-2970000000000000000}},"30021625":{"solarSystemId":30021625,"solarSystemName":"EJJ-2R8","location":{"x":-54500000000000000000,"y":-1280000000000000000,"z":-3060000000000000000}},"30021626":{"solarSystemId":30021626,"solarSystemName":"IM7-3P8","location":{"x":-52600000000000000000,"y":-1790000000000000000,"z":-4150000000000000000}},"30021627":{"solarSystemId":30021627,"solarSystemName":"O7Q-TR8","location":{"x":-55100000000000000000,"y":-5080000000000000000,"z":-2850000000000000000}},"30021628":{"solarSystemId":30021628,"solarSystemName":"O4H-DR8","location":{"x":-54600000000000000000,"y":-4440000000000000000,"z":-3730000000000000000}},"30021629":{"solarSystemId":30021629,"solarSystemName":"A7Q-JP8","location":{"x":-53000000000000000000,"y":-3990000000000000000,"z":-4710000000000000000}},"30021630":{"solarSystemId":30021630,"solarSystemName":"O0R-GS8","location":{"x":-56100000000000000000,"y":-4130000000000000000,"z":-3460000000000000000}},"30021631":{"solarSystemId":30021631,"solarSystemName":"EGV-BS8","location":{"x":-56000000000000000000,"y":-3260000000000000000,"z":-2940000000000000000}},"30021632":{"solarSystemId":30021632,"solarSystemName":"EP3-8R8","location":{"x":-54200000000000000000,"y":-2810000000000000000,"z":-211000000000000000}},"30021633":{"solarSystemId":30021633,"solarSystemName":"IF4-9Q8","location":{"x":-53200000000000000000,"y":-2430000000000000000,"z":-155000000000000000}},"30021634":{"solarSystemId":30021634,"solarSystemName":"ER4-5S8","location":{"x":-55200000000000000000,"y":-2560000000000000000,"z":999000000000000000}},"30021635":{"solarSystemId":30021635,"solarSystemName":"EBF-GR8","location":{"x":-54300000000000000000,"y":-1760000000000000000,"z":1020000000000000000}},"30021636":{"solarSystemId":30021636,"solarSystemName":"IBL-6Q8","location":{"x":-53300000000000000000,"y":-1710000000000000000,"z":-645000000000000000}},"30021637":{"solarSystemId":30021637,"solarSystemName":"E23-7S8","location":{"x":-55200000000000000000,"y":-2650000000000000000,"z":1290000000000000000}},"30021638":{"solarSystemId":30021638,"solarSystemName":"E5H-6S8","location":{"x":-55100000000000000000,"y":-2990000000000000000,"z":1750000000000000000}},"30021639":{"solarSystemId":30021639,"solarSystemName":"A28-GS8","location":{"x":-56000000000000000000,"y":-676000000000000000,"z":-614000000000000000}},"30021640":{"solarSystemId":30021640,"solarSystemName":"AQG-TR8","location":{"x":-54800000000000000000,"y":-526000000000000000,"z":1640000000000000000}},"30021641":{"solarSystemId":30021641,"solarSystemName":"IRN-8S8","location":{"x":-55500000000000000000,"y":-2050000000000000000,"z":575000000000000000}},"30021642":{"solarSystemId":30021642,"solarSystemName":"D.BJZ.CY1","location":{"x":-33200000000000000000,"y":2140000000000000000,"z":-5560000000000000000}},"30021643":{"solarSystemId":30021643,"solarSystemName":"T.SJZ.QML","location":{"x":-33200000000000000000,"y":524000000000000000,"z":-7200000000000000000}},"30021644":{"solarSystemId":30021644,"solarSystemName":"L.ZCY.NPT","location":{"x":-31700000000000000000,"y":417000000000000000,"z":-6450000000000000000}},"30021645":{"solarSystemId":30021645,"solarSystemName":"O.TLY.8XG","location":{"x":-31600000000000000000,"y":-858000000000000000,"z":-6530000000000000000}},"30021646":{"solarSystemId":30021646,"solarSystemName":"B.7TY.G51","location":{"x":-31500000000000000000,"y":1360000000000000000,"z":-6430000000000000000}},"30021647":{"solarSystemId":30021647,"solarSystemName":"O.RZJ.KT3","location":{"x":-29800000000000000000,"y":122000000000000000,"z":-6090000000000000000}},"30021648":{"solarSystemId":30021648,"solarSystemName":"C.DFY.2BL","location":{"x":-31900000000000000000,"y":-529000000000000000,"z":-6640000000000000000}},"30021649":{"solarSystemId":30021649,"solarSystemName":"C.SCX.163","location":{"x":-30600000000000000000,"y":115000000000000000,"z":-5910000000000000000}},"30021650":{"solarSystemId":30021650,"solarSystemName":"O.9QY.ZJ8","location":{"x":-31900000000000000000,"y":-317000000000000000,"z":-6240000000000000000}},"30021651":{"solarSystemId":30021651,"solarSystemName":"C.HZY.QC3","location":{"x":-32200000000000000000,"y":-127000000000000000,"z":-6890000000000000000}},"30021652":{"solarSystemId":30021652,"solarSystemName":"A.ZZY.BT1","location":{"x":-32200000000000000000,"y":-1570000000000000000,"z":-3070000000000000000}},"30021653":{"solarSystemId":30021653,"solarSystemName":"H.42Z.8GH","location":{"x":-32400000000000000000,"y":-891000000000000000,"z":-2340000000000000000}},"30021654":{"solarSystemId":30021654,"solarSystemName":"M.3GZ.6MW","location":{"x":-33100000000000000000,"y":-1060000000000000000,"z":-3600000000000000000}},"30021655":{"solarSystemId":30021655,"solarSystemName":"O.GVY.LNT","location":{"x":-31800000000000000000,"y":-410000000000000000,"z":-1700000000000000000}},"30021656":{"solarSystemId":30021656,"solarSystemName":"T.VQZ.CYR","location":{"x":-33000000000000000000,"y":-499000000000000000,"z":-2420000000000000000}},"30021657":{"solarSystemId":30021657,"solarSystemName":"C.ZWZ.WKB","location":{"x":-33400000000000000000,"y":-827000000000000000,"z":-3220000000000000000}},"30021658":{"solarSystemId":30021658,"solarSystemName":"C.NDZ.MNE","location":{"x":-32800000000000000000,"y":-1130000000000000000,"z":-2790000000000000000}},"30021659":{"solarSystemId":30021659,"solarSystemName":"M.6LW.DS7","location":{"x":-33900000000000000000,"y":-264000000000000000,"z":-2490000000000000000}},"30021660":{"solarSystemId":30021660,"solarSystemName":"M.3PZ.3MP","location":{"x":-32900000000000000000,"y":-668000000000000000,"z":-2960000000000000000}},"30021661":{"solarSystemId":30021661,"solarSystemName":"C.XXW.28M","location":{"x":-34400000000000000000,"y":-622000000000000000,"z":-1540000000000000000}},"30021662":{"solarSystemId":30021662,"solarSystemName":"M.53Z.171","location":{"x":-32400000000000000000,"y":-1410000000000000000,"z":-3370000000000000000}},"30021663":{"solarSystemId":30021663,"solarSystemName":"M.WGW.D52","location":{"x":-34300000000000000000,"y":-78200000000000000,"z":-1970000000000000000}},"30021664":{"solarSystemId":30021664,"solarSystemName":"I.87Z.X71","location":{"x":-32500000000000000000,"y":-1430000000000000000,"z":-4140000000000000000}},"30021665":{"solarSystemId":30021665,"solarSystemName":"R.PLZ.R43","location":{"x":-32800000000000000000,"y":-3620000000000000000,"z":-5560000000000000000}},"30021666":{"solarSystemId":30021666,"solarSystemName":"T.SHW.2Z1","location":{"x":-34300000000000000000,"y":-2160000000000000000,"z":-6650000000000000000}},"30021667":{"solarSystemId":30021667,"solarSystemName":"A.T6Z.TP1","location":{"x":-32500000000000000000,"y":-1810000000000000000,"z":-4400000000000000000}},"30021668":{"solarSystemId":30021668,"solarSystemName":"I.WRZ.VK1","location":{"x":-32800000000000000000,"y":-2260000000000000000,"z":-5700000000000000000}},"30021669":{"solarSystemId":30021669,"solarSystemName":"T.WCW.KT2","location":{"x":-34000000000000000000,"y":-2740000000000000000,"z":-5220000000000000000}},"30021670":{"solarSystemId":30021670,"solarSystemName":"T.55Z.KS1","location":{"x":-32500000000000000000,"y":-1550000000000000000,"z":-4430000000000000000}},"30021671":{"solarSystemId":30021671,"solarSystemName":"N.GXZ.472","location":{"x":-33200000000000000000,"y":-2560000000000000000,"z":-5610000000000000000}},"30021672":{"solarSystemId":30021672,"solarSystemName":"N.ZWY.LM1","location":{"x":-32200000000000000000,"y":-1780000000000000000,"z":-4570000000000000000}},"30021673":{"solarSystemId":30021673,"solarSystemName":"C.P7Z.NWW","location":{"x":-32600000000000000000,"y":-1080000000000000000,"z":-4690000000000000000}},"30021674":{"solarSystemId":30021674,"solarSystemName":"L.SPY.7W1","location":{"x":-31800000000000000000,"y":68900000000000000,"z":-4050000000000000000}},"30021675":{"solarSystemId":30021675,"solarSystemName":"A.NCX.H11","location":{"x":-30600000000000000000,"y":-1220000000000000000,"z":-3990000000000000000}},"30021676":{"solarSystemId":30021676,"solarSystemName":"M.PQY.E05","location":{"x":-31900000000000000000,"y":181000000000000000,"z":-3310000000000000000}},"30021677":{"solarSystemId":30021677,"solarSystemName":"C.J4X.6YD","location":{"x":-30100000000000000000,"y":-571000000000000000,"z":-3450000000000000000}},"30021678":{"solarSystemId":30021678,"solarSystemName":"R.79Y.7E7","location":{"x":-31500000000000000000,"y":287000000000000000,"z":-3570000000000000000}},"30021679":{"solarSystemId":30021679,"solarSystemName":"B.Q9X.EM1","location":{"x":-30300000000000000000,"y":-1800000000000000000,"z":-4200000000000000000}},"30021680":{"solarSystemId":30021680,"solarSystemName":"M.GZX.93S","location":{"x":-31000000000000000000,"y":-364000000000000000,"z":-3400000000000000000}},"30021681":{"solarSystemId":30021681,"solarSystemName":"B.QKX.Z4C","location":{"x":-31100000000000000000,"y":-582000000000000000,"z":-2660000000000000000}},"30021682":{"solarSystemId":30021682,"solarSystemName":"B.47X.SC2","location":{"x":-30200000000000000000,"y":-90500000000000000,"z":-2590000000000000000}},"30021683":{"solarSystemId":30021683,"solarSystemName":"C.V7X.YFC","location":{"x":-30200000000000000000,"y":-601000000000000000,"z":-2690000000000000000}},"30021684":{"solarSystemId":30021684,"solarSystemName":"M.BEX.SB1","location":{"x":-31100000000000000000,"y":61200000000000000,"z":-2930000000000000000}},"30021685":{"solarSystemId":30021685,"solarSystemName":"B.P9X.EK9","location":{"x":-30300000000000000000,"y":359000000000000000,"z":-3990000000000000000}},"30021686":{"solarSystemId":30021686,"solarSystemName":"R.1MZ.T7T","location":{"x":-32900000000000000000,"y":-405000000000000000,"z":-4350000000000000000}},"30021687":{"solarSystemId":30021687,"solarSystemName":"N.4LZ.F01","location":{"x":-32800000000000000000,"y":-1180000000000000000,"z":-4370000000000000000}},"30021688":{"solarSystemId":30021688,"solarSystemName":"M.SYZ.DH4","location":{"x":-33300000000000000000,"y":172000000000000000,"z":-3570000000000000000}},"30021689":{"solarSystemId":30021689,"solarSystemName":"B.XKY.BBN","location":{"x":-32200000000000000000,"y":-458000000000000000,"z":-4810000000000000000}},"30021690":{"solarSystemId":30021690,"solarSystemName":"C.BZY.D9C","location":{"x":-32200000000000000000,"y":-587000000000000000,"z":-5060000000000000000}},"30021691":{"solarSystemId":30021691,"solarSystemName":"S.YTZ.5T3","location":{"x":-32700000000000000000,"y":-121000000000000000,"z":-4340000000000000000}},"30021692":{"solarSystemId":30021692,"solarSystemName":"E.MZZ.PW5","location":{"x":-33300000000000000000,"y":-213000000000000000,"z":-4600000000000000000}},"30021693":{"solarSystemId":30021693,"solarSystemName":"B.R2W.EF6","location":{"x":-33500000000000000000,"y":-241000000000000000,"z":-5700000000000000000}},"30021694":{"solarSystemId":30021694,"solarSystemName":"O.P7K.YFH","location":{"x":-34900000000000000000,"y":-27800000000000000,"z":-4040000000000000000}},"30021695":{"solarSystemId":30021695,"solarSystemName":"C.GTW.BQ9","location":{"x":-33900000000000000000,"y":-348000000000000000,"z":-3980000000000000000}},"30021696":{"solarSystemId":30021696,"solarSystemName":"C.66W.LQT","location":{"x":-33700000000000000000,"y":-419000000000000000,"z":-5960000000000000000}},"30021697":{"solarSystemId":30021697,"solarSystemName":"O.REZ.V8K","location":{"x":-33400000000000000000,"y":-1090000000000000000,"z":-5080000000000000000}},"30021698":{"solarSystemId":30021698,"solarSystemName":"C.TPZ.MHY","location":{"x":-32900000000000000000,"y":-1000000000000000000,"z":-4320000000000000000}},"30021699":{"solarSystemId":30021699,"solarSystemName":"D.KQY.1C1","location":{"x":-31900000000000000000,"y":-1730000000000000000,"z":-5370000000000000000}},"30021700":{"solarSystemId":30021700,"solarSystemName":"T.3QY.891","location":{"x":-31900000000000000000,"y":-1490000000000000000,"z":-4140000000000000000}},"30021701":{"solarSystemId":30021701,"solarSystemName":"U.ESY.9P1","location":{"x":-31500000000000000000,"y":-1810000000000000000,"z":-5520000000000000000}},"30021702":{"solarSystemId":30021702,"solarSystemName":"G.DRY.Q51","location":{"x":-31600000000000000000,"y":-1360000000000000000,"z":-5560000000000000000}},"30021703":{"solarSystemId":30021703,"solarSystemName":"C.VHY.JDQ","location":{"x":-32000000000000000000,"y":-738000000000000000,"z":-4240000000000000000}},"30021704":{"solarSystemId":30021704,"solarSystemName":"C.28Y.SDC","location":{"x":-31400000000000000000,"y":-594000000000000000,"z":-4760000000000000000}},"30021705":{"solarSystemId":30021705,"solarSystemName":"A.3BX.1T1","location":{"x":-30800000000000000000,"y":-1550000000000000000,"z":-5290000000000000000}},"30021706":{"solarSystemId":30021706,"solarSystemName":"T.THY.691","location":{"x":-32000000000000000000,"y":-1480000000000000000,"z":-4680000000000000000}},"30021707":{"solarSystemId":30021707,"solarSystemName":"E.VVY.P4B","location":{"x":-31800000000000000000,"y":-798000000000000000,"z":-4530000000000000000}},"30021708":{"solarSystemId":30021708,"solarSystemName":"N.M5Y.P01","location":{"x":-31300000000000000000,"y":-1170000000000000000,"z":-5010000000000000000}},"30021709":{"solarSystemId":30021709,"solarSystemName":"H.C4Y.TS1","location":{"x":-31300000000000000000,"y":-1530000000000000000,"z":-5110000000000000000}},"30021710":{"solarSystemId":30021710,"solarSystemName":"H.MBY.FL1","location":{"x":-31900000000000000000,"y":-1680000000000000000,"z":-5170000000000000000}},"30021711":{"solarSystemId":30021711,"solarSystemName":"I.TDY.331","location":{"x":-31700000000000000000,"y":-1260000000000000000,"z":-5360000000000000000}},"30021712":{"solarSystemId":30021712,"solarSystemName":"G.ZRX.2P1","location":{"x":-30500000000000000000,"y":-1800000000000000000,"z":-5050000000000000000}},"30021713":{"solarSystemId":30021713,"solarSystemName":"T.9LW.6X1","location":{"x":-33900000000000000000,"y":-2100000000000000000,"z":-5790000000000000000}},"30021714":{"solarSystemId":30021714,"solarSystemName":"D.B6W.8S1","location":{"x":-33700000000000000000,"y":-1520000000000000000,"z":-5580000000000000000}},"30021715":{"solarSystemId":30021715,"solarSystemName":"M.FMZ.8GH","location":{"x":-32900000000000000000,"y":-891000000000000000,"z":-5400000000000000000}},"30021716":{"solarSystemId":30021716,"solarSystemName":"A.TCW.TW1","location":{"x":-34000000000000000000,"y":-2210000000000000000,"z":-5710000000000000000}},"30021717":{"solarSystemId":30021717,"solarSystemName":"L.XCZ.Z71","location":{"x":-32900000000000000000,"y":-1440000000000000000,"z":-5350000000000000000}},"30021718":{"solarSystemId":30021718,"solarSystemName":"S.BZZ.381","location":{"x":-33300000000000000000,"y":-1440000000000000000,"z":-6060000000000000000}},"30021719":{"solarSystemId":30021719,"solarSystemName":"N.HDW.KZG","location":{"x":-34000000000000000000,"y":-861000000000000000,"z":-5660000000000000000}},"30021720":{"solarSystemId":30021720,"solarSystemName":"H.WHZ.FCY","location":{"x":-33200000000000000000,"y":-992000000000000000,"z":-5430000000000000000}},"30021721":{"solarSystemId":30021721,"solarSystemName":"C.S3Z.M1Q","location":{"x":-32400000000000000000,"y":-722000000000000000,"z":-5470000000000000000}},"30021722":{"solarSystemId":30021722,"solarSystemName":"B.0HZ.961","location":{"x":-33100000000000000000,"y":-1380000000000000000,"z":-5690000000000000000}},"30021723":{"solarSystemId":30021723,"solarSystemName":"B.1XW.DDZ","location":{"x":-34400000000000000000,"y":-1030000000000000000,"z":-5720000000000000000}},"30021724":{"solarSystemId":30021724,"solarSystemName":"D.XRZ.ZEX","location":{"x":-32800000000000000000,"y":-973000000000000000,"z":-6050000000000000000}},"30021725":{"solarSystemId":30021725,"solarSystemName":"H.8HZ.C71","location":{"x":-33200000000000000000,"y":-1420000000000000000,"z":-6660000000000000000}},"30021726":{"solarSystemId":30021726,"solarSystemName":"B.TPY.0ZK","location":{"x":-31800000000000000000,"y":-1110000000000000000,"z":-6900000000000000000}},"30021727":{"solarSystemId":30021727,"solarSystemName":"I.X2Z.N11","location":{"x":-32400000000000000000,"y":-1200000000000000000,"z":-6770000000000000000}},"30021728":{"solarSystemId":30021728,"solarSystemName":"N.H5Z.N6W","location":{"x":-32500000000000000000,"y":-1050000000000000000,"z":-7610000000000000000}},"30021729":{"solarSystemId":30021729,"solarSystemName":"R.97Z.R51","location":{"x":-32500000000000000000,"y":-1350000000000000000,"z":-6070000000000000000}},"30021730":{"solarSystemId":30021730,"solarSystemName":"O.2TZ.C0M","location":{"x":-32700000000000000000,"y":-613000000000000000,"z":-7250000000000000000}},"30021731":{"solarSystemId":30021731,"solarSystemName":"B.FHZ.99T","location":{"x":-33200000000000000000,"y":-407000000000000000,"z":-6060000000000000000}},"30021732":{"solarSystemId":30021732,"solarSystemName":"M.6ZZ.L0J","location":{"x":-33300000000000000000,"y":-901000000000000000,"z":-6400000000000000000}},"30021733":{"solarSystemId":30021733,"solarSystemName":"C.RHZ.R3N","location":{"x":-33200000000000000000,"y":-436000000000000000,"z":-6130000000000000000}},"30021734":{"solarSystemId":30021734,"solarSystemName":"M.ECZ.SS1","location":{"x":-32900000000000000000,"y":-1530000000000000000,"z":-6750000000000000000}},"30021735":{"solarSystemId":30021735,"solarSystemName":"G:299A","location":{"x":-17100000000000000000,"y":-1610000000000000000,"z":-11100000000000000000}},"30021736":{"solarSystemId":30021736,"solarSystemName":"Y:2285","location":{"x":-16400000000000000000,"y":-254000000000000000,"z":-12500000000000000000}},"30021737":{"solarSystemId":30021737,"solarSystemName":"Z:4ENA","location":{"x":-16200000000000000000,"y":-1030000000000000000,"z":-12300000000000000000}},"30021738":{"solarSystemId":30021738,"solarSystemName":"Q:1220","location":{"x":-16900000000000000000,"y":-1210000000000000000,"z":-11200000000000000000}},"30021739":{"solarSystemId":30021739,"solarSystemName":"M:207V","location":{"x":-17000000000000000000,"y":-1320000000000000000,"z":-12000000000000000000}},"30021740":{"solarSystemId":30021740,"solarSystemName":"M:1I9O","location":{"x":-17300000000000000000,"y":-1300000000000000000,"z":-11800000000000000000}},"30021741":{"solarSystemId":30021741,"solarSystemName":"B:13TV","location":{"x":-17100000000000000000,"y":-1230000000000000000,"z":-11500000000000000000}},"30021742":{"solarSystemId":30021742,"solarSystemName":"M:1RKK","location":{"x":-16800000000000000000,"y":-878000000000000000,"z":-11400000000000000000}},"30021743":{"solarSystemId":30021743,"solarSystemName":"Q:S6T6","location":{"x":-17600000000000000000,"y":-690000000000000000,"z":-11600000000000000000}},"30021744":{"solarSystemId":30021744,"solarSystemName":"F:2LOI","location":{"x":-17600000000000000000,"y":-2060000000000000000,"z":-11400000000000000000}},"30021745":{"solarSystemId":30021745,"solarSystemName":"H:1814","location":{"x":-15600000000000000000,"y":-3030000000000000000,"z":-11600000000000000000}},"30021746":{"solarSystemId":30021746,"solarSystemName":"M:12T1","location":{"x":-16400000000000000000,"y":-1230000000000000000,"z":-11100000000000000000}},"30021747":{"solarSystemId":30021747,"solarSystemName":"Z:27S0","location":{"x":-18600000000000000000,"y":-1380000000000000000,"z":-11400000000000000000}},"30021748":{"solarSystemId":30021748,"solarSystemName":"P:VSTE","location":{"x":-16900000000000000000,"y":-1580000000000000000,"z":-12400000000000000000}},"30021749":{"solarSystemId":30021749,"solarSystemName":"Z:1778","location":{"x":-16300000000000000000,"y":-1420000000000000000,"z":-11200000000000000000}},"30021750":{"solarSystemId":30021750,"solarSystemName":"Y:2642","location":{"x":-20100000000000000000,"y":-566000000000000000,"z":-11700000000000000000}},"30021751":{"solarSystemId":30021751,"solarSystemName":"H:265V","location":{"x":-19400000000000000000,"y":879000000000000000,"z":-11100000000000000000}},"30021752":{"solarSystemId":30021752,"solarSystemName":"J:1IK3","location":{"x":-18600000000000000000,"y":2130000000000000000,"z":-11200000000000000000}},"30021753":{"solarSystemId":30021753,"solarSystemName":"D:LTL9","location":{"x":-19700000000000000000,"y":423000000000000000,"z":-10300000000000000000}},"30021754":{"solarSystemId":30021754,"solarSystemName":"Z:4LR1","location":{"x":-19900000000000000000,"y":-703000000000000000,"z":-11100000000000000000}},"30021755":{"solarSystemId":30021755,"solarSystemName":"G:3VK6","location":{"x":-20200000000000000000,"y":-161000000000000000,"z":-12100000000000000000}},"30021756":{"solarSystemId":30021756,"solarSystemName":"H:1810","location":{"x":-19600000000000000000,"y":-430000000000000000,"z":-11500000000000000000}},"30021757":{"solarSystemId":30021757,"solarSystemName":"G:25V8","location":{"x":-20800000000000000000,"y":670000000000000000,"z":-12300000000000000000}},"30021758":{"solarSystemId":30021758,"solarSystemName":"G:1EV0","location":{"x":-20600000000000000000,"y":583000000000000000,"z":-12100000000000000000}},"30021759":{"solarSystemId":30021759,"solarSystemName":"Q:26S7","location":{"x":-19000000000000000000,"y":838000000000000000,"z":-11000000000000000000}},"30021760":{"solarSystemId":30021760,"solarSystemName":"Z:275E","location":{"x":-18500000000000000000,"y":583000000000000000,"z":-12400000000000000000}},"30021761":{"solarSystemId":30021761,"solarSystemName":"D:29K6","location":{"x":-18900000000000000000,"y":402000000000000000,"z":-11400000000000000000}},"30021762":{"solarSystemId":30021762,"solarSystemName":"G:1SO8","location":{"x":-20600000000000000000,"y":410000000000000000,"z":-12000000000000000000}},"30021763":{"solarSystemId":30021763,"solarSystemName":"Y:20OO","location":{"x":-20500000000000000000,"y":-302000000000000000,"z":-11200000000000000000}},"30021764":{"solarSystemId":30021764,"solarSystemName":"Y:1750","location":{"x":-18700000000000000000,"y":2640000000000000000,"z":-11600000000000000000}},"30021765":{"solarSystemId":30021765,"solarSystemName":"M:2E5K","location":{"x":-17800000000000000000,"y":-751000000000000000,"z":-10900000000000000000}},"30021766":{"solarSystemId":30021766,"solarSystemName":"F:28L7","location":{"x":-18100000000000000000,"y":-724000000000000000,"z":-10700000000000000000}},"30021767":{"solarSystemId":30021767,"solarSystemName":"M:228N","location":{"x":-18400000000000000000,"y":-534000000000000000,"z":-10900000000000000000}},"30021768":{"solarSystemId":30021768,"solarSystemName":"G:2EE0","location":{"x":-18400000000000000000,"y":-661000000000000000,"z":-11000000000000000000}},"30021769":{"solarSystemId":30021769,"solarSystemName":"B:VAOV","location":{"x":-18700000000000000000,"y":-836000000000000000,"z":-10600000000000000000}},"30021770":{"solarSystemId":30021770,"solarSystemName":"Z:1061","location":{"x":-19000000000000000000,"y":-979000000000000000,"z":-11200000000000000000}},"30021771":{"solarSystemId":30021771,"solarSystemName":"M:11O3","location":{"x":-18300000000000000000,"y":-790000000000000000,"z":-10400000000000000000}},"30021772":{"solarSystemId":30021772,"solarSystemName":"F:S567","location":{"x":-17800000000000000000,"y":-196000000000000000,"z":-11000000000000000000}},"30021773":{"solarSystemId":30021773,"solarSystemName":"Z:15AI","location":{"x":-18600000000000000000,"y":-786000000000000000,"z":-10600000000000000000}},"30021774":{"solarSystemId":30021774,"solarSystemName":"U:NV6N","location":{"x":-19100000000000000000,"y":-995000000000000000,"z":-10600000000000000000}},"30021775":{"solarSystemId":30021775,"solarSystemName":"Z:OI59","location":{"x":-19100000000000000000,"y":-615000000000000000,"z":-10800000000000000000}},"30021776":{"solarSystemId":30021776,"solarSystemName":"J:I40A","location":{"x":-18900000000000000000,"y":-1010000000000000000,"z":-11500000000000000000}},"30021777":{"solarSystemId":30021777,"solarSystemName":"M:77T8","location":{"x":-18800000000000000000,"y":-1310000000000000000,"z":-11400000000000000000}},"30021778":{"solarSystemId":30021778,"solarSystemName":"Y:1S16","location":{"x":-18500000000000000000,"y":-731000000000000000,"z":-10200000000000000000}},"30021779":{"solarSystemId":30021779,"solarSystemName":"H:N7E1","location":{"x":-18800000000000000000,"y":-1110000000000000000,"z":-11100000000000000000}},"30021780":{"solarSystemId":30021780,"solarSystemName":"Q:1N5R","location":{"x":-17000000000000000000,"y":-255000000000000000,"z":-12000000000000000000}},"30021781":{"solarSystemId":30021781,"solarSystemName":"J:3TLA","location":{"x":-17500000000000000000,"y":451000000000000000,"z":-11000000000000000000}},"30021782":{"solarSystemId":30021782,"solarSystemName":"M:359V","location":{"x":-15500000000000000000,"y":905000000000000000,"z":-12000000000000000000}},"30021783":{"solarSystemId":30021783,"solarSystemName":"Q:T7LR","location":{"x":-16700000000000000000,"y":1200000000000000000,"z":-11900000000000000000}},"30021784":{"solarSystemId":30021784,"solarSystemName":"B:16RA","location":{"x":-17700000000000000000,"y":-184000000000000000,"z":-11100000000000000000}},"30021785":{"solarSystemId":30021785,"solarSystemName":"Z:1674","location":{"x":-17700000000000000000,"y":-255000000000000000,"z":-10800000000000000000}},"30021786":{"solarSystemId":30021786,"solarSystemName":"D:19K4","location":{"x":-17500000000000000000,"y":-545000000000000000,"z":-11400000000000000000}},"30021787":{"solarSystemId":30021787,"solarSystemName":"Q:39N6","location":{"x":-17300000000000000000,"y":-43200000000000000,"z":-11700000000000000000}},"30021788":{"solarSystemId":30021788,"solarSystemName":"G:L0VA","location":{"x":-15900000000000000000,"y":1310000000000000000,"z":-12600000000000000000}},"30021789":{"solarSystemId":30021789,"solarSystemName":"M:27AE","location":{"x":-16600000000000000000,"y":1730000000000000000,"z":-11900000000000000000}},"30021790":{"solarSystemId":30021790,"solarSystemName":"U:28NO","location":{"x":-16900000000000000000,"y":908000000000000000,"z":-11200000000000000000}},"30021791":{"solarSystemId":30021791,"solarSystemName":"G:O047","location":{"x":-17100000000000000000,"y":988000000000000000,"z":-11100000000000000000}},"30021792":{"solarSystemId":30021792,"solarSystemName":"Q:15O9","location":{"x":-16100000000000000000,"y":727000000000000000,"z":-12300000000000000000}},"30021793":{"solarSystemId":30021793,"solarSystemName":"Z:1E5S","location":{"x":-16500000000000000000,"y":341000000000000000,"z":-12700000000000000000}},"30021794":{"solarSystemId":30021794,"solarSystemName":"Q:1RK7","location":{"x":-16400000000000000000,"y":-246000000000000000,"z":-13100000000000000000}},"30021795":{"solarSystemId":30021795,"solarSystemName":"D:1TT4","location":{"x":-16100000000000000000,"y":-879000000000000000,"z":-13300000000000000000}},"30021796":{"solarSystemId":30021796,"solarSystemName":"M:1SN3","location":{"x":-17000000000000000000,"y":860000000000000000,"z":-13300000000000000000}},"30021797":{"solarSystemId":30021797,"solarSystemName":"G:20A0","location":{"x":-18000000000000000000,"y":-1460000000000000000,"z":-13600000000000000000}},"30021798":{"solarSystemId":30021798,"solarSystemName":"U:1AIR","location":{"x":-17900000000000000000,"y":-1340000000000000000,"z":-13400000000000000000}},"30021799":{"solarSystemId":30021799,"solarSystemName":"Y:3KLE","location":{"x":-14300000000000000000,"y":-49000000000000000,"z":-12400000000000000000}},"30021800":{"solarSystemId":30021800,"solarSystemName":"M:3V07","location":{"x":-18200000000000000000,"y":-1980000000000000000,"z":-13600000000000000000}},"30021801":{"solarSystemId":30021801,"solarSystemName":"B:1VIK","location":{"x":-17600000000000000000,"y":-253000000000000000,"z":-13500000000000000000}},"30021802":{"solarSystemId":30021802,"solarSystemName":"F:3NN2","location":{"x":-15200000000000000000,"y":-1300000000000000000,"z":-12300000000000000000}},"30021803":{"solarSystemId":30021803,"solarSystemName":"F:21N1","location":{"x":-15300000000000000000,"y":-331000000000000000,"z":-14100000000000000000}},"30021804":{"solarSystemId":30021804,"solarSystemName":"U:1T04","location":{"x":-16000000000000000000,"y":-303000000000000000,"z":-13500000000000000000}},"30021805":{"solarSystemId":30021805,"solarSystemName":"F:38L0","location":{"x":-15200000000000000000,"y":22600000000000000,"z":-13200000000000000000}},"30021806":{"solarSystemId":30021806,"solarSystemName":"Q:22T0","location":{"x":-14300000000000000000,"y":-374000000000000000,"z":-13000000000000000000}},"30021807":{"solarSystemId":30021807,"solarSystemName":"Y:1S66","location":{"x":-14600000000000000000,"y":187000000000000000,"z":-12500000000000000000}},"30021808":{"solarSystemId":30021808,"solarSystemName":"D:16VR","location":{"x":-17800000000000000000,"y":866000000000000000,"z":-13500000000000000000}},"30021809":{"solarSystemId":30021809,"solarSystemName":"M:21RR","location":{"x":-16500000000000000000,"y":-270000000000000000,"z":-13900000000000000000}},"30021810":{"solarSystemId":30021810,"solarSystemName":"P:1L03","location":{"x":-16700000000000000000,"y":-466000000000000000,"z":-14800000000000000000}},"30021811":{"solarSystemId":30021811,"solarSystemName":"J:1846","location":{"x":-16600000000000000000,"y":-561000000000000000,"z":-13900000000000000000}},"30021812":{"solarSystemId":30021812,"solarSystemName":"Y:4V9K","location":{"x":-16700000000000000000,"y":-1160000000000000000,"z":-14500000000000000000}},"30021813":{"solarSystemId":30021813,"solarSystemName":"B:3OII","location":{"x":-16900000000000000000,"y":-509000000000000000,"z":-14700000000000000000}},"30021814":{"solarSystemId":30021814,"solarSystemName":"B:ERIK","location":{"x":-16400000000000000000,"y":-498000000000000000,"z":-14200000000000000000}},"30021815":{"solarSystemId":30021815,"solarSystemName":"Z:1619","location":{"x":-17900000000000000000,"y":-489000000000000000,"z":-13700000000000000000}},"30021816":{"solarSystemId":30021816,"solarSystemName":"D:EKR8","location":{"x":-17200000000000000000,"y":-820000000000000000,"z":-14000000000000000000}},"30021817":{"solarSystemId":30021817,"solarSystemName":"D:2880","location":{"x":-17200000000000000000,"y":-714000000000000000,"z":-14400000000000000000}},"30021818":{"solarSystemId":30021818,"solarSystemName":"G:1R7N","location":{"x":-16400000000000000000,"y":-559000000000000000,"z":-14600000000000000000}},"30021819":{"solarSystemId":30021819,"solarSystemName":"M:N2R4","location":{"x":-17200000000000000000,"y":298000000000000000,"z":-14200000000000000000}},"30021820":{"solarSystemId":30021820,"solarSystemName":"F:17T5","location":{"x":-17300000000000000000,"y":-1240000000000000000,"z":-13700000000000000000}},"30021821":{"solarSystemId":30021821,"solarSystemName":"D:3V5T","location":{"x":-18800000000000000000,"y":-790000000000000000,"z":-13600000000000000000}},"30021822":{"solarSystemId":30021822,"solarSystemName":"F:27NN","location":{"x":-19400000000000000000,"y":-775000000000000000,"z":-13500000000000000000}},"30021823":{"solarSystemId":30021823,"solarSystemName":"M:1SA0","location":{"x":-20100000000000000000,"y":649000000000000000,"z":-13600000000000000000}},"30021824":{"solarSystemId":30021824,"solarSystemName":"G:LLE6","location":{"x":-18900000000000000000,"y":917000000000000000,"z":-12600000000000000000}},"30021825":{"solarSystemId":30021825,"solarSystemName":"G:219A","location":{"x":-20100000000000000000,"y":108000000000000000,"z":-12200000000000000000}},"30021826":{"solarSystemId":30021826,"solarSystemName":"J:3AI0","location":{"x":-20100000000000000000,"y":-931000000000000000,"z":-14200000000000000000}},"30021827":{"solarSystemId":30021827,"solarSystemName":"Z:33OO","location":{"x":-19800000000000000000,"y":-823000000000000000,"z":-14500000000000000000}},"30021828":{"solarSystemId":30021828,"solarSystemName":"J:2358","location":{"x":-19200000000000000000,"y":-621000000000000000,"z":-12700000000000000000}},"30021829":{"solarSystemId":30021829,"solarSystemName":"F:3SL7","location":{"x":-19800000000000000000,"y":-922000000000000000,"z":-13500000000000000000}},"30021830":{"solarSystemId":30021830,"solarSystemName":"M:281I","location":{"x":-20100000000000000000,"y":-821000000000000000,"z":-12900000000000000000}},"30021831":{"solarSystemId":30021831,"solarSystemName":"G:105O","location":{"x":-20300000000000000000,"y":532000000000000000,"z":-12900000000000000000}},"30021832":{"solarSystemId":30021832,"solarSystemName":"B:3R82","location":{"x":-20000000000000000000,"y":431000000000000000,"z":-13200000000000000000}},"30021833":{"solarSystemId":30021833,"solarSystemName":"D:25O1","location":{"x":-19700000000000000000,"y":402000000000000000,"z":-13700000000000000000}},"30021834":{"solarSystemId":30021834,"solarSystemName":"M:1VT7","location":{"x":-19300000000000000000,"y":-1100000000000000000,"z":-13200000000000000000}},"30021835":{"solarSystemId":30021835,"solarSystemName":"U:3RO2","location":{"x":-19500000000000000000,"y":-817000000000000000,"z":-11300000000000000000}},"30021836":{"solarSystemId":30021836,"solarSystemName":"J:1653","location":{"x":-19500000000000000000,"y":-761000000000000000,"z":-11600000000000000000}},"30021837":{"solarSystemId":30021837,"solarSystemName":"J:RES6","location":{"x":-19700000000000000000,"y":-1290000000000000000,"z":-11600000000000000000}},"30021838":{"solarSystemId":30021838,"solarSystemName":"Q:944K","location":{"x":-18900000000000000000,"y":-781000000000000000,"z":-11700000000000000000}},"30021839":{"solarSystemId":30021839,"solarSystemName":"Q:28A7","location":{"x":-19700000000000000000,"y":-821000000000000000,"z":-11700000000000000000}},"30021840":{"solarSystemId":30021840,"solarSystemName":"H:2KOV","location":{"x":-18600000000000000000,"y":-1670000000000000000,"z":-12300000000000000000}},"30021841":{"solarSystemId":30021841,"solarSystemName":"B:1A24","location":{"x":-18700000000000000000,"y":-1410000000000000000,"z":-12200000000000000000}},"30021842":{"solarSystemId":30021842,"solarSystemName":"D:K958","location":{"x":-18400000000000000000,"y":-2100000000000000000,"z":-12000000000000000000}},"30021843":{"solarSystemId":30021843,"solarSystemName":"Q:882E","location":{"x":-18700000000000000000,"y":-2140000000000000000,"z":-12900000000000000000}},"30021844":{"solarSystemId":30021844,"solarSystemName":"F:KVI2","location":{"x":-18700000000000000000,"y":-1460000000000000000,"z":-12400000000000000000}},"30021845":{"solarSystemId":30021845,"solarSystemName":"G:NOOV","location":{"x":-19000000000000000000,"y":-1970000000000000000,"z":-11500000000000000000}},"30021846":{"solarSystemId":30021846,"solarSystemName":"J:46V2","location":{"x":-19800000000000000000,"y":-1370000000000000000,"z":-11700000000000000000}},"30021847":{"solarSystemId":30021847,"solarSystemName":"M:344E","location":{"x":-17600000000000000000,"y":-207000000000000000,"z":-12200000000000000000}},"30021848":{"solarSystemId":30021848,"solarSystemName":"Y:3VA2","location":{"x":-17900000000000000000,"y":-465000000000000000,"z":-12000000000000000000}},"30021849":{"solarSystemId":30021849,"solarSystemName":"B:ERAA","location":{"x":-18300000000000000000,"y":-1300000000000000000,"z":-12900000000000000000}},"30021850":{"solarSystemId":30021850,"solarSystemName":"H:2I5R","location":{"x":-17400000000000000000,"y":-1030000000000000000,"z":-13000000000000000000}},"30021851":{"solarSystemId":30021851,"solarSystemName":"M:T74S","location":{"x":-18100000000000000000,"y":-1180000000000000000,"z":-13400000000000000000}},"30021852":{"solarSystemId":30021852,"solarSystemName":"Q:1911","location":{"x":-18300000000000000000,"y":-1080000000000000000,"z":-12000000000000000000}},"30021853":{"solarSystemId":30021853,"solarSystemName":"Q:T8V5","location":{"x":-18500000000000000000,"y":-1180000000000000000,"z":-12900000000000000000}},"30021854":{"solarSystemId":30021854,"solarSystemName":"Z:E608","location":{"x":-17800000000000000000,"y":-820000000000000000,"z":-12600000000000000000}},"30021855":{"solarSystemId":30021855,"solarSystemName":"J:NSI4","location":{"x":-17100000000000000000,"y":-482000000000000000,"z":-12800000000000000000}},"30021856":{"solarSystemId":30021856,"solarSystemName":"J:N7NI","location":{"x":-18200000000000000000,"y":-1070000000000000000,"z":-12000000000000000000}},"30021857":{"solarSystemId":30021857,"solarSystemName":"D:157O","location":{"x":-18400000000000000000,"y":-1460000000000000000,"z":-12500000000000000000}},"30021858":{"solarSystemId":30021858,"solarSystemName":"D:IT01","location":{"x":-17600000000000000000,"y":-1630000000000000000,"z":-12700000000000000000}},"30021859":{"solarSystemId":30021859,"solarSystemName":"Z:SLA7","location":{"x":-17300000000000000000,"y":-1150000000000000000,"z":-12300000000000000000}},"30021860":{"solarSystemId":30021860,"solarSystemName":"B:EE7O","location":{"x":-17800000000000000000,"y":-1150000000000000000,"z":-12000000000000000000}},"30021861":{"solarSystemId":30021861,"solarSystemName":"U:3367","location":{"x":-18200000000000000000,"y":754000000000000000,"z":-15600000000000000000}},"30021862":{"solarSystemId":30021862,"solarSystemName":"B:2632","location":{"x":-17600000000000000000,"y":1640000000000000000,"z":-16400000000000000000}},"30021863":{"solarSystemId":30021863,"solarSystemName":"B:457T","location":{"x":-18100000000000000000,"y":371000000000000000,"z":-14500000000000000000}},"30021864":{"solarSystemId":30021864,"solarSystemName":"Z:OEI7","location":{"x":-19800000000000000000,"y":715000000000000000,"z":-15000000000000000000}},"30021865":{"solarSystemId":30021865,"solarSystemName":"P:21V2","location":{"x":-18800000000000000000,"y":1410000000000000000,"z":-16000000000000000000}},"30021866":{"solarSystemId":30021866,"solarSystemName":"P:1RA8","location":{"x":-18900000000000000000,"y":1210000000000000000,"z":-16800000000000000000}},"30021867":{"solarSystemId":30021867,"solarSystemName":"B:1EN9","location":{"x":-19300000000000000000,"y":1720000000000000000,"z":-14800000000000000000}},"30021868":{"solarSystemId":30021868,"solarSystemName":"U:1R9I","location":{"x":-17700000000000000000,"y":1050000000000000000,"z":-14600000000000000000}},"30021869":{"solarSystemId":30021869,"solarSystemName":"G:2LS9","location":{"x":-18900000000000000000,"y":297000000000000000,"z":-14900000000000000000}},"30021870":{"solarSystemId":30021870,"solarSystemName":"D:RRVN","location":{"x":-20300000000000000000,"y":560000000000000000,"z":-15600000000000000000}},"30021871":{"solarSystemId":30021871,"solarSystemName":"J:1TIN","location":{"x":-19000000000000000000,"y":1410000000000000000,"z":-15600000000000000000}},"30021872":{"solarSystemId":30021872,"solarSystemName":"B:329R","location":{"x":-18000000000000000000,"y":845000000000000000,"z":-14600000000000000000}},"30021873":{"solarSystemId":30021873,"solarSystemName":"G:1O5A","location":{"x":-17400000000000000000,"y":-848000000000000000,"z":-16000000000000000000}},"30021874":{"solarSystemId":30021874,"solarSystemName":"B:35OR","location":{"x":-17600000000000000000,"y":-741000000000000000,"z":-16500000000000000000}},"30021875":{"solarSystemId":30021875,"solarSystemName":"D:3984","location":{"x":-16800000000000000000,"y":-1200000000000000000,"z":-15400000000000000000}},"30021876":{"solarSystemId":30021876,"solarSystemName":"D:421O","location":{"x":-17300000000000000000,"y":-1570000000000000000,"z":-15200000000000000000}},"30021877":{"solarSystemId":30021877,"solarSystemName":"Y:32OE","location":{"x":-18700000000000000000,"y":-1300000000000000000,"z":-16400000000000000000}},"30021878":{"solarSystemId":30021878,"solarSystemName":"H:1570","location":{"x":-18700000000000000000,"y":-1110000000000000000,"z":-16600000000000000000}},"30021879":{"solarSystemId":30021879,"solarSystemName":"Y:4299","location":{"x":-17000000000000000000,"y":-849000000000000000,"z":-17300000000000000000}},"30021880":{"solarSystemId":30021880,"solarSystemName":"Q:3918","location":{"x":-17000000000000000000,"y":-569000000000000000,"z":-16400000000000000000}},"30021881":{"solarSystemId":30021881,"solarSystemName":"Z:2909","location":{"x":-17400000000000000000,"y":-815000000000000000,"z":-15500000000000000000}},"30021882":{"solarSystemId":30021882,"solarSystemName":"Z:1L59","location":{"x":-16800000000000000000,"y":-600000000000000000,"z":-16800000000000000000}},"30021883":{"solarSystemId":30021883,"solarSystemName":"P:3380","location":{"x":-16900000000000000000,"y":-505000000000000000,"z":-17300000000000000000}},"30021884":{"solarSystemId":30021884,"solarSystemName":"J:1N2L","location":{"x":-16100000000000000000,"y":-907000000000000000,"z":-16000000000000000000}},"30021885":{"solarSystemId":30021885,"solarSystemName":"Y:232V","location":{"x":-18900000000000000000,"y":-999000000000000000,"z":-16400000000000000000}},"30021886":{"solarSystemId":30021886,"solarSystemName":"Y:E250","location":{"x":-16800000000000000000,"y":-737000000000000000,"z":-17500000000000000000}},"30021887":{"solarSystemId":30021887,"solarSystemName":"M:4S56","location":{"x":-16500000000000000000,"y":-149000000000000000,"z":-17700000000000000000}},"30021888":{"solarSystemId":30021888,"solarSystemName":"M:2898","location":{"x":-17000000000000000000,"y":-623000000000000000,"z":-17900000000000000000}},"30021889":{"solarSystemId":30021889,"solarSystemName":"H:2ANO","location":{"x":-17900000000000000000,"y":595000000000000000,"z":-18000000000000000000}},"30021890":{"solarSystemId":30021890,"solarSystemName":"Z:1RNI","location":{"x":-16800000000000000000,"y":-644000000000000000,"z":-17700000000000000000}},"30021891":{"solarSystemId":30021891,"solarSystemName":"D:1OL5","location":{"x":-18300000000000000000,"y":-541000000000000000,"z":-18700000000000000000}},"30021892":{"solarSystemId":30021892,"solarSystemName":"B:2LLS","location":{"x":-18000000000000000000,"y":-861000000000000000,"z":-18200000000000000000}},"30021893":{"solarSystemId":30021893,"solarSystemName":"H:13OO","location":{"x":-17800000000000000000,"y":605000000000000000,"z":-17900000000000000000}},"30021894":{"solarSystemId":30021894,"solarSystemName":"Q:ENT1","location":{"x":-16600000000000000000,"y":892000000000000000,"z":-17500000000000000000}},"30021895":{"solarSystemId":30021895,"solarSystemName":"G:RTVT","location":{"x":-17600000000000000000,"y":1210000000000000000,"z":-18200000000000000000}},"30021896":{"solarSystemId":30021896,"solarSystemName":"Y:2A5V","location":{"x":-17300000000000000000,"y":1150000000000000000,"z":-17100000000000000000}},"30021897":{"solarSystemId":30021897,"solarSystemName":"Y:25KO","location":{"x":-16800000000000000000,"y":777000000000000000,"z":-17400000000000000000}},"30021898":{"solarSystemId":30021898,"solarSystemName":"J:1O14","location":{"x":-17600000000000000000,"y":2080000000000000000,"z":-17400000000000000000}},"30021899":{"solarSystemId":30021899,"solarSystemName":"H:35I3","location":{"x":-18700000000000000000,"y":924000000000000000,"z":-19900000000000000000}},"30021900":{"solarSystemId":30021900,"solarSystemName":"Z:26R1","location":{"x":-20200000000000000000,"y":2350000000000000000,"z":-17400000000000000000}},"30021901":{"solarSystemId":30021901,"solarSystemName":"H:2N7E","location":{"x":-17700000000000000000,"y":2680000000000000000,"z":-17100000000000000000}},"30021902":{"solarSystemId":30021902,"solarSystemName":"U:LS5V","location":{"x":-20800000000000000000,"y":935000000000000000,"z":-17100000000000000000}},"30021903":{"solarSystemId":30021903,"solarSystemName":"Q:K89L","location":{"x":-16700000000000000000,"y":2410000000000000000,"z":-17900000000000000000}},"30021904":{"solarSystemId":30021904,"solarSystemName":"U:39OA","location":{"x":-16900000000000000000,"y":1090000000000000000,"z":-19500000000000000000}},"30021905":{"solarSystemId":30021905,"solarSystemName":"Y:2R16","location":{"x":-18800000000000000000,"y":1840000000000000000,"z":-19000000000000000000}},"30021906":{"solarSystemId":30021906,"solarSystemName":"Z:TAAN","location":{"x":-18500000000000000000,"y":44400000000000000,"z":-19500000000000000000}},"30021907":{"solarSystemId":30021907,"solarSystemName":"Z:301I","location":{"x":-16700000000000000000,"y":201000000000000000,"z":-16700000000000000000}},"30021908":{"solarSystemId":30021908,"solarSystemName":"G:2AT7","location":{"x":-16700000000000000000,"y":2170000000000000000,"z":-16300000000000000000}},"30021909":{"solarSystemId":30021909,"solarSystemName":"Q:LO7I","location":{"x":-16700000000000000000,"y":2170000000000000000,"z":-16300000000000000000}},"30021910":{"solarSystemId":30021910,"solarSystemName":"M:16LA","location":{"x":-15800000000000000000,"y":1270000000000000000,"z":-17900000000000000000}},"30021911":{"solarSystemId":30021911,"solarSystemName":"P:28RA","location":{"x":-17300000000000000000,"y":826000000000000000,"z":-16100000000000000000}},"30021912":{"solarSystemId":30021912,"solarSystemName":"Q:2NL3","location":{"x":-16500000000000000000,"y":960000000000000000,"z":-16500000000000000000}},"30021913":{"solarSystemId":30021913,"solarSystemName":"M:2498","location":{"x":-16700000000000000000,"y":1730000000000000000,"z":-15200000000000000000}},"30021914":{"solarSystemId":30021914,"solarSystemName":"G:2339","location":{"x":-16700000000000000000,"y":1710000000000000000,"z":-15600000000000000000}},"30021915":{"solarSystemId":30021915,"solarSystemName":"Y:1ES1","location":{"x":-16800000000000000000,"y":1820000000000000000,"z":-15800000000000000000}},"30021916":{"solarSystemId":30021916,"solarSystemName":"G:31VI","location":{"x":-16900000000000000000,"y":2230000000000000000,"z":-17300000000000000000}},"30021917":{"solarSystemId":30021917,"solarSystemName":"P:I797","location":{"x":-17100000000000000000,"y":2260000000000000000,"z":-15700000000000000000}},"30021918":{"solarSystemId":30021918,"solarSystemName":"Q:49R9","location":{"x":-17100000000000000000,"y":1550000000000000000,"z":-15900000000000000000}},"30021919":{"solarSystemId":30021919,"solarSystemName":"B:1V14","location":{"x":-14300000000000000000,"y":-655000000000000000,"z":-16500000000000000000}},"30021920":{"solarSystemId":30021920,"solarSystemName":"F:1N1L","location":{"x":-13700000000000000000,"y":-484000000000000000,"z":-17100000000000000000}},"30021921":{"solarSystemId":30021921,"solarSystemName":"Z:1T42","location":{"x":-13500000000000000000,"y":-918000000000000000,"z":-17200000000000000000}},"30021922":{"solarSystemId":30021922,"solarSystemName":"P:1II0","location":{"x":-16300000000000000000,"y":-1340000000000000000,"z":-17000000000000000000}},"30021923":{"solarSystemId":30021923,"solarSystemName":"Y:E51L","location":{"x":-15600000000000000000,"y":-1420000000000000000,"z":-16700000000000000000}},"30021924":{"solarSystemId":30021924,"solarSystemName":"G:S736","location":{"x":-15800000000000000000,"y":-492000000000000000,"z":-16700000000000000000}},"30021925":{"solarSystemId":30021925,"solarSystemName":"G:18N1","location":{"x":-13400000000000000000,"y":-857000000000000000,"z":-16700000000000000000}},"30021926":{"solarSystemId":30021926,"solarSystemName":"U:19K9","location":{"x":-15200000000000000000,"y":-824000000000000000,"z":-16900000000000000000}},"30021927":{"solarSystemId":30021927,"solarSystemName":"D:1OR2","location":{"x":-14100000000000000000,"y":-840000000000000000,"z":-16700000000000000000}},"30021928":{"solarSystemId":30021928,"solarSystemName":"M:1ELE","location":{"x":-13800000000000000000,"y":-648000000000000000,"z":-16500000000000000000}},"30021929":{"solarSystemId":30021929,"solarSystemName":"Z:48K7","location":{"x":-14900000000000000000,"y":-914000000000000000,"z":-17100000000000000000}},"30021930":{"solarSystemId":30021930,"solarSystemName":"P:22ET","location":{"x":-15300000000000000000,"y":-639000000000000000,"z":-16200000000000000000}},"30021931":{"solarSystemId":30021931,"solarSystemName":"Q:23VN","location":{"x":-15800000000000000000,"y":-957000000000000000,"z":-16800000000000000000}},"30021932":{"solarSystemId":30021932,"solarSystemName":"U:2E8K","location":{"x":-15100000000000000000,"y":-774000000000000000,"z":-17000000000000000000}},"30021933":{"solarSystemId":30021933,"solarSystemName":"P:13R2","location":{"x":-13800000000000000000,"y":-613000000000000000,"z":-16000000000000000000}},"30021934":{"solarSystemId":30021934,"solarSystemName":"Z:34O8","location":{"x":-17900000000000000000,"y":-648000000000000000,"z":-15800000000000000000}},"30021935":{"solarSystemId":30021935,"solarSystemName":"G:1A0A","location":{"x":-19000000000000000000,"y":-691000000000000000,"z":-15200000000000000000}},"30021936":{"solarSystemId":30021936,"solarSystemName":"U:3S10","location":{"x":-20200000000000000000,"y":-646000000000000000,"z":-15800000000000000000}},"30021937":{"solarSystemId":30021937,"solarSystemName":"H:TV2L","location":{"x":-19900000000000000000,"y":-1550000000000000000,"z":-14800000000000000000}},"30021938":{"solarSystemId":30021938,"solarSystemName":"P:16ON","location":{"x":-19800000000000000000,"y":-1580000000000000000,"z":-16300000000000000000}},"30021939":{"solarSystemId":30021939,"solarSystemName":"P:16R5","location":{"x":-20100000000000000000,"y":-1860000000000000000,"z":-14500000000000000000}},"30021940":{"solarSystemId":30021940,"solarSystemName":"F:19O9","location":{"x":-19800000000000000000,"y":-1680000000000000000,"z":-15400000000000000000}},"30021941":{"solarSystemId":30021941,"solarSystemName":"H:1IOV","location":{"x":-18800000000000000000,"y":-1400000000000000000,"z":-15000000000000000000}},"30021942":{"solarSystemId":30021942,"solarSystemName":"H:SVIV","location":{"x":-20100000000000000000,"y":-1660000000000000000,"z":-14900000000000000000}},"30021943":{"solarSystemId":30021943,"solarSystemName":"J:33K2","location":{"x":-19500000000000000000,"y":-1590000000000000000,"z":-15500000000000000000}},"30021944":{"solarSystemId":30021944,"solarSystemName":"D:1SST","location":{"x":-19100000000000000000,"y":-1570000000000000000,"z":-14100000000000000000}},"30021945":{"solarSystemId":30021945,"solarSystemName":"Q:3412","location":{"x":-19400000000000000000,"y":-839000000000000000,"z":-14700000000000000000}},"30021946":{"solarSystemId":30021946,"solarSystemName":"P:26R3","location":{"x":-20000000000000000000,"y":-652000000000000000,"z":-15900000000000000000}},"30021947":{"solarSystemId":30021947,"solarSystemName":"P:3E7A","location":{"x":-19800000000000000000,"y":-586000000000000000,"z":-16500000000000000000}},"30021948":{"solarSystemId":30021948,"solarSystemName":"U:1O9K","location":{"x":-19600000000000000000,"y":-587000000000000000,"z":-16600000000000000000}},"30021949":{"solarSystemId":30021949,"solarSystemName":"H:1V4L","location":{"x":-19900000000000000000,"y":-1110000000000000000,"z":-14900000000000000000}},"30021950":{"solarSystemId":30021950,"solarSystemName":"J:S507","location":{"x":-18700000000000000000,"y":-1070000000000000000,"z":-14100000000000000000}},"30021951":{"solarSystemId":30021951,"solarSystemName":"F:39R1","location":{"x":-19600000000000000000,"y":-1150000000000000000,"z":-15900000000000000000}},"30021952":{"solarSystemId":30021952,"solarSystemName":"H:3I3L","location":{"x":-18300000000000000000,"y":-651000000000000000,"z":-16100000000000000000}},"30021953":{"solarSystemId":30021953,"solarSystemName":"J:2I1O","location":{"x":-20800000000000000000,"y":3420000000000000000,"z":-15400000000000000000}},"30021954":{"solarSystemId":30021954,"solarSystemName":"Y:2TAK","location":{"x":-17900000000000000000,"y":1650000000000000000,"z":-14000000000000000000}},"30021955":{"solarSystemId":30021955,"solarSystemName":"D:25K8","location":{"x":-20100000000000000000,"y":2320000000000000000,"z":-13900000000000000000}},"30021956":{"solarSystemId":30021956,"solarSystemName":"B:R6R1","location":{"x":-17600000000000000000,"y":2730000000000000000,"z":-15100000000000000000}},"30021957":{"solarSystemId":30021957,"solarSystemName":"M:2327","location":{"x":-20600000000000000000,"y":2040000000000000000,"z":-14200000000000000000}},"30021958":{"solarSystemId":30021958,"solarSystemName":"B:25VV","location":{"x":-19900000000000000000,"y":1620000000000000000,"z":-14000000000000000000}},"30021959":{"solarSystemId":30021959,"solarSystemName":"M:21AS","location":{"x":-18500000000000000000,"y":1530000000000000000,"z":-13400000000000000000}},"30021960":{"solarSystemId":30021960,"solarSystemName":"M:102E","location":{"x":-19500000000000000000,"y":2840000000000000000,"z":-14500000000000000000}},"30021961":{"solarSystemId":30021961,"solarSystemName":"A.0NK.9Y2","location":{"x":-35000000000000000000,"y":-3290000000000000000,"z":-5270000000000000000}},"30021962":{"solarSystemId":30021962,"solarSystemName":"A.Y7E.1R2","location":{"x":-36000000000000000000,"y":-2780000000000000000,"z":-5080000000000000000}},"30021963":{"solarSystemId":30021963,"solarSystemName":"S.T01.P02","location":{"x":-37300000000000000000,"y":-2330000000000000000,"z":-4870000000000000000}},"30021964":{"solarSystemId":30021964,"solarSystemName":"N.ZFE.612","location":{"x":-36500000000000000000,"y":-2350000000000000000,"z":-6750000000000000000}},"30021965":{"solarSystemId":30021965,"solarSystemName":"S.MYE.7Q2","location":{"x":-36700000000000000000,"y":-3040000000000000000,"z":-7570000000000000000}},"30021966":{"solarSystemId":30021966,"solarSystemName":"N.XFE.MR2","location":{"x":-36500000000000000000,"y":-2790000000000000000,"z":-8680000000000000000}},"30021967":{"solarSystemId":30021967,"solarSystemName":"N.J01.9J2","location":{"x":-37800000000000000000,"y":-3220000000000000000,"z":-8300000000000000000}},"30021968":{"solarSystemId":30021968,"solarSystemName":"E.6VE.PN2","location":{"x":-36400000000000000000,"y":-2760000000000000000,"z":-8180000000000000000}},"30021969":{"solarSystemId":30021969,"solarSystemName":"S.BLE.BH1","location":{"x":-36300000000000000000,"y":-2040000000000000000,"z":-9920000000000000000}},"30021970":{"solarSystemId":30021970,"solarSystemName":"H.FSE.2V1","location":{"x":-36100000000000000000,"y":-1840000000000000000,"z":-8860000000000000000}},"30021971":{"solarSystemId":30021971,"solarSystemName":"S.HGE.152","location":{"x":-36600000000000000000,"y":-2490000000000000000,"z":-8760000000000000000}},"30021972":{"solarSystemId":30021972,"solarSystemName":"U.PZE.ZD1","location":{"x":-36800000000000000000,"y":-1730000000000000000,"z":-9270000000000000000}},"30021973":{"solarSystemId":30021973,"solarSystemName":"C.R01.W7X","location":{"x":-37400000000000000000,"y":-946000000000000000,"z":-8980000000000000000}},"30021974":{"solarSystemId":30021974,"solarSystemName":"M.CQE.ZXY","location":{"x":-36500000000000000000,"y":-1000000000000000000,"z":-8980000000000000000}},"30021975":{"solarSystemId":30021975,"solarSystemName":"M.VGE.QPJ","location":{"x":-36600000000000000000,"y":-922000000000000000,"z":-9470000000000000000}},"30021976":{"solarSystemId":30021976,"solarSystemName":"C.XKE.BBE","location":{"x":-36900000000000000000,"y":-1140000000000000000,"z":-9500000000000000000}},"30021977":{"solarSystemId":30021977,"solarSystemName":"R.FEK.1X1","location":{"x":-35700000000000000000,"y":-2090000000000000000,"z":-8670000000000000000}},"30021978":{"solarSystemId":30021978,"solarSystemName":"R.DPK.JL1","location":{"x":-35300000000000000000,"y":-1690000000000000000,"z":-11100000000000000000}},"30021979":{"solarSystemId":30021979,"solarSystemName":"H.C5E.ZB1","location":{"x":-35900000000000000000,"y":-1980000000000000000,"z":-9920000000000000000}},"30021980":{"solarSystemId":30021980,"solarSystemName":"U.L1E.TN1","location":{"x":-35800000000000000000,"y":-1600000000000000000,"z":-8460000000000000000}},"30021981":{"solarSystemId":30021981,"solarSystemName":"T.BPK.YY1","location":{"x":-35300000000000000000,"y":-2160000000000000000,"z":-10700000000000000000}},"30021982":{"solarSystemId":30021982,"solarSystemName":"E.DNK.WK1","location":{"x":-35000000000000000000,"y":-2270000000000000000,"z":-10800000000000000000}},"30021983":{"solarSystemId":30021983,"solarSystemName":"I.CKK.NZ1","location":{"x":-35700000000000000000,"y":-2180000000000000000,"z":-10900000000000000000}},"30021984":{"solarSystemId":30021984,"solarSystemName":"N.89E.RT1","location":{"x":-36100000000000000000,"y":-1560000000000000000,"z":-10100000000000000000}},"30021985":{"solarSystemId":30021985,"solarSystemName":"I.4VK.YL1","location":{"x":-35300000000000000000,"y":-1690000000000000000,"z":-9980000000000000000}},"30021986":{"solarSystemId":30021986,"solarSystemName":"N.LNW.LN1","location":{"x":-33900000000000000000,"y":-1600000000000000000,"z":-9580000000000000000}},"30021987":{"solarSystemId":30021987,"solarSystemName":"S.H7K.08T","location":{"x":-34900000000000000000,"y":-405000000000000000,"z":-9320000000000000000}},"30021988":{"solarSystemId":30021988,"solarSystemName":"I.6DW.PD1","location":{"x":-34000000000000000000,"y":-1710000000000000000,"z":-10200000000000000000}},"30021989":{"solarSystemId":30021989,"solarSystemName":"E.XQK.QMJ","location":{"x":-35300000000000000000,"y":-921000000000000000,"z":-10200000000000000000}},"30021990":{"solarSystemId":30021990,"solarSystemName":"N.5XW.WN1","location":{"x":-34400000000000000000,"y":-1620000000000000000,"z":-10000000000000000000}},"30021991":{"solarSystemId":30021991,"solarSystemName":"E.91K.3Q1","location":{"x":-34600000000000000000,"y":-1880000000000000000,"z":-10600000000000000000}},"30021992":{"solarSystemId":30021992,"solarSystemName":"B.Q1K.091","location":{"x":-34600000000000000000,"y":-1480000000000000000,"z":-9850000000000000000}},"30021993":{"solarSystemId":30021993,"solarSystemName":"M.CKW.NTF","location":{"x":-34500000000000000000,"y":-769000000000000000,"z":-10100000000000000000}},"30021994":{"solarSystemId":30021994,"solarSystemName":"B.Y2W.Q39","location":{"x":-33500000000000000000,"y":-328000000000000000,"z":-10300000000000000000}},"30021995":{"solarSystemId":30021995,"solarSystemName":"N.NXW.842","location":{"x":-34400000000000000000,"y":-2460000000000000000,"z":-7550000000000000000}},"30021996":{"solarSystemId":30021996,"solarSystemName":"T.5XW.GL1","location":{"x":-34400000000000000000,"y":-1680000000000000000,"z":-6890000000000000000}},"30021997":{"solarSystemId":30021997,"solarSystemName":"L.V9K.MH1","location":{"x":-34900000000000000000,"y":-2040000000000000000,"z":-7130000000000000000}},"30021998":{"solarSystemId":30021998,"solarSystemName":"S.T4E.XH1","location":{"x":-35900000000000000000,"y":-2050000000000000000,"z":-7560000000000000000}},"30021999":{"solarSystemId":30021999,"solarSystemName":"D.92E.YE1","location":{"x":-35800000000000000000,"y":-2300000000000000000,"z":-8250000000000000000}},"30022000":{"solarSystemId":30022000,"solarSystemName":"S.PNK.KD1","location":{"x":-35000000000000000000,"y":-1730000000000000000,"z":-7140000000000000000}},"30022001":{"solarSystemId":30022001,"solarSystemName":"N.16E.3C1","location":{"x":-36000000000000000000,"y":-1730000000000000000,"z":-8150000000000000000}},"30022002":{"solarSystemId":30022002,"solarSystemName":"E.2HK.LM1","location":{"x":-35500000000000000000,"y":-1780000000000000000,"z":-8060000000000000000}},"30022003":{"solarSystemId":30022003,"solarSystemName":"N.N1W.TP2","location":{"x":-33500000000000000000,"y":-92700000000000000,"z":-8690000000000000000}},"30022004":{"solarSystemId":30022004,"solarSystemName":"A.MFK.L11","location":{"x":-35400000000000000000,"y":1210000000000000000,"z":-8650000000000000000}},"30022005":{"solarSystemId":30022005,"solarSystemName":"S.0WW.ZFE","location":{"x":-34500000000000000000,"y":-1140000000000000000,"z":-8920000000000000000}},"30022006":{"solarSystemId":30022006,"solarSystemName":"U.9LE.YV1","location":{"x":-36300000000000000000,"y":-1870000000000000000,"z":-8400000000000000000}},"30022007":{"solarSystemId":30022007,"solarSystemName":"C.C5E.JPZ","location":{"x":-35900000000000000000,"y":-1030000000000000000,"z":-8280000000000000000}},"30022008":{"solarSystemId":30022008,"solarSystemName":"M.Q3E.S05","location":{"x":-35900000000000000000,"y":-181000000000000000,"z":-9010000000000000000}},"30022009":{"solarSystemId":30022009,"solarSystemName":"O.14E.4EB","location":{"x":-35900000000000000000,"y":-828000000000000000,"z":-8850000000000000000}},"30022010":{"solarSystemId":30022010,"solarSystemName":"M.601.WTY","location":{"x":-37100000000000000000,"y":-986000000000000000,"z":-8470000000000000000}},"30022011":{"solarSystemId":30022011,"solarSystemName":"T.CNW.2V1","location":{"x":-33900000000000000000,"y":-1840000000000000000,"z":-9640000000000000000}},"30022012":{"solarSystemId":30022012,"solarSystemName":"D.CTW.PZ1","location":{"x":-33800000000000000000,"y":-2180000000000000000,"z":-8530000000000000000}},"30022013":{"solarSystemId":30022013,"solarSystemName":"E.98K.8H1","location":{"x":-34900000000000000000,"y":-2030000000000000000,"z":-8440000000000000000}},"30022014":{"solarSystemId":30022014,"solarSystemName":"H.MBK.CD1","location":{"x":-35400000000000000000,"y":-1710000000000000000,"z":-9120000000000000000}},"30022015":{"solarSystemId":30022015,"solarSystemName":"R.7TK.0R1","location":{"x":-35000000000000000000,"y":-1620000000000000000,"z":-9010000000000000000}},"30022016":{"solarSystemId":30022016,"solarSystemName":"I.3EW.NW1","location":{"x":-34600000000000000000,"y":-2210000000000000000,"z":-9020000000000000000}},"30022017":{"solarSystemId":30022017,"solarSystemName":"R.X0K.1N1","location":{"x":-34600000000000000000,"y":-1590000000000000000,"z":-8830000000000000000}},"30022018":{"solarSystemId":30022018,"solarSystemName":"A.5NW.MQ1","location":{"x":-33900000000000000000,"y":-1890000000000000000,"z":-9780000000000000000}},"30022019":{"solarSystemId":30022019,"solarSystemName":"N.5GW.TF1","location":{"x":-34300000000000000000,"y":-1920000000000000000,"z":-9350000000000000000}},"30022020":{"solarSystemId":30022020,"solarSystemName":"B:1TEO","location":{"x":-25900000000000000000,"y":-1110000000000000000,"z":-8670000000000000000}},"30022021":{"solarSystemId":30022021,"solarSystemName":"J:1EN5","location":{"x":-25500000000000000000,"y":-1150000000000000000,"z":-9380000000000000000}},"30022022":{"solarSystemId":30022022,"solarSystemName":"Q:199O","location":{"x":-25600000000000000000,"y":-1380000000000000000,"z":-9010000000000000000}},"30022023":{"solarSystemId":30022023,"solarSystemName":"G:187T","location":{"x":-25800000000000000000,"y":-565000000000000000,"z":-9260000000000000000}},"30022024":{"solarSystemId":30022024,"solarSystemName":"Z:12T8","location":{"x":-26000000000000000000,"y":-1380000000000000000,"z":-9090000000000000000}},"30022025":{"solarSystemId":30022025,"solarSystemName":"Q:27V0","location":{"x":-25900000000000000000,"y":-1810000000000000000,"z":-8830000000000000000}},"30022026":{"solarSystemId":30022026,"solarSystemName":"B:3R05","location":{"x":-25600000000000000000,"y":-1320000000000000000,"z":-9620000000000000000}},"30022027":{"solarSystemId":30022027,"solarSystemName":"Y:1S09","location":{"x":-25500000000000000000,"y":-995000000000000000,"z":-9120000000000000000}},"30022028":{"solarSystemId":30022028,"solarSystemName":"Q:29S3","location":{"x":-26800000000000000000,"y":-1200000000000000000,"z":-8390000000000000000}},"30022029":{"solarSystemId":30022029,"solarSystemName":"B:2I91","location":{"x":-25600000000000000000,"y":-624000000000000000,"z":-9270000000000000000}},"30022030":{"solarSystemId":30022030,"solarSystemName":"G:1960","location":{"x":-25400000000000000000,"y":-1270000000000000000,"z":-9070000000000000000}},"30022031":{"solarSystemId":30022031,"solarSystemName":"M:7KIL","location":{"x":-26900000000000000000,"y":-1010000000000000000,"z":-8730000000000000000}},"30022032":{"solarSystemId":30022032,"solarSystemName":"G:2I24","location":{"x":-25500000000000000000,"y":-1270000000000000000,"z":-9050000000000000000}},"30022033":{"solarSystemId":30022033,"solarSystemName":"Z:22R9","location":{"x":-28600000000000000000,"y":-1610000000000000000,"z":-8980000000000000000}},"30022034":{"solarSystemId":30022034,"solarSystemName":"B:3757","location":{"x":-29000000000000000000,"y":-801000000000000000,"z":-8660000000000000000}},"30022035":{"solarSystemId":30022035,"solarSystemName":"Y:12R7","location":{"x":-28800000000000000000,"y":-550000000000000000,"z":-8120000000000000000}},"30022036":{"solarSystemId":30022036,"solarSystemName":"U:2RI6","location":{"x":-28300000000000000000,"y":-1080000000000000000,"z":-9110000000000000000}},"30022037":{"solarSystemId":30022037,"solarSystemName":"Y:1I91","location":{"x":-28400000000000000000,"y":-1150000000000000000,"z":-9180000000000000000}},"30022038":{"solarSystemId":30022038,"solarSystemName":"G:2I9R","location":{"x":-28400000000000000000,"y":-915000000000000000,"z":-7780000000000000000}},"30022039":{"solarSystemId":30022039,"solarSystemName":"M:1VKT","location":{"x":-28000000000000000000,"y":-611000000000000000,"z":-7810000000000000000}},"30022040":{"solarSystemId":30022040,"solarSystemName":"B:K5E1","location":{"x":-28200000000000000000,"y":82300000000000000,"z":-8870000000000000000}},"30022041":{"solarSystemId":30022041,"solarSystemName":"Q:2835","location":{"x":-28400000000000000000,"y":-724000000000000000,"z":-7820000000000000000}},"30022042":{"solarSystemId":30022042,"solarSystemName":"J:33KS","location":{"x":-28100000000000000000,"y":-264000000000000000,"z":-8800000000000000000}},"30022043":{"solarSystemId":30022043,"solarSystemName":"U:TO62","location":{"x":-27200000000000000000,"y":-7640000000000000,"z":-8410000000000000000}},"30022044":{"solarSystemId":30022044,"solarSystemName":"Y:1A7A","location":{"x":-29300000000000000000,"y":-634000000000000000,"z":-8190000000000000000}},"30022045":{"solarSystemId":30022045,"solarSystemName":"B:1LEA","location":{"x":-27500000000000000000,"y":283000000000000000,"z":-9140000000000000000}},"30022046":{"solarSystemId":30022046,"solarSystemName":"U:2696","location":{"x":-24600000000000000000,"y":-907000000000000000,"z":-9730000000000000000}},"30022047":{"solarSystemId":30022047,"solarSystemName":"B:3TL1","location":{"x":-24100000000000000000,"y":-950000000000000000,"z":-9290000000000000000}},"30022048":{"solarSystemId":30022048,"solarSystemName":"G:ET4I","location":{"x":-23900000000000000000,"y":-1030000000000000000,"z":-9820000000000000000}},"30022049":{"solarSystemId":30022049,"solarSystemName":"B:199I","location":{"x":-24100000000000000000,"y":-903000000000000000,"z":-8930000000000000000}},"30022050":{"solarSystemId":30022050,"solarSystemName":"G:3E9R","location":{"x":-24100000000000000000,"y":-698000000000000000,"z":-9590000000000000000}},"30022051":{"solarSystemId":30022051,"solarSystemName":"Z:189E","location":{"x":-23400000000000000000,"y":-612000000000000000,"z":-9300000000000000000}},"30022052":{"solarSystemId":30022052,"solarSystemName":"P:E8V5","location":{"x":-24600000000000000000,"y":-732000000000000000,"z":-9680000000000000000}},"30022053":{"solarSystemId":30022053,"solarSystemName":"G:2S3E","location":{"x":-23600000000000000000,"y":-1120000000000000000,"z":-9330000000000000000}},"30022054":{"solarSystemId":30022054,"solarSystemName":"B:38V3","location":{"x":-24300000000000000000,"y":-777000000000000000,"z":-9550000000000000000}},"30022055":{"solarSystemId":30022055,"solarSystemName":"H:26RV","location":{"x":-24300000000000000000,"y":-856000000000000000,"z":-9760000000000000000}},"30022056":{"solarSystemId":30022056,"solarSystemName":"J:2TRV","location":{"x":-23500000000000000000,"y":-647000000000000000,"z":-9250000000000000000}},"30022057":{"solarSystemId":30022057,"solarSystemName":"Y:TVNV","location":{"x":-24100000000000000000,"y":-822000000000000000,"z":-9410000000000000000}},"30022058":{"solarSystemId":30022058,"solarSystemName":"Q:1RA4","location":{"x":-24400000000000000000,"y":-972000000000000000,"z":-9980000000000000000}},"30022059":{"solarSystemId":30022059,"solarSystemName":"H:V08R","location":{"x":-23400000000000000000,"y":-643000000000000000,"z":-9290000000000000000}},"30022060":{"solarSystemId":30022060,"solarSystemName":"J:2A7I","location":{"x":-23800000000000000000,"y":-1100000000000000000,"z":-9950000000000000000}},"30022061":{"solarSystemId":30022061,"solarSystemName":"P:39S1","location":{"x":-26200000000000000000,"y":-1420000000000000000,"z":-9800000000000000000}},"30022062":{"solarSystemId":30022062,"solarSystemName":"Y:VSS2","location":{"x":-27100000000000000000,"y":-1230000000000000000,"z":-9880000000000000000}},"30022063":{"solarSystemId":30022063,"solarSystemName":"B:16VN","location":{"x":-27200000000000000000,"y":-1540000000000000000,"z":-9090000000000000000}},"30022064":{"solarSystemId":30022064,"solarSystemName":"Y:O12S","location":{"x":-26600000000000000000,"y":-915000000000000000,"z":-10100000000000000000}},"30022065":{"solarSystemId":30022065,"solarSystemName":"H:V3IE","location":{"x":-27100000000000000000,"y":-1340000000000000000,"z":-9590000000000000000}},"30022066":{"solarSystemId":30022066,"solarSystemName":"D:23TS","location":{"x":-26600000000000000000,"y":-1330000000000000000,"z":-9870000000000000000}},"30022067":{"solarSystemId":30022067,"solarSystemName":"G:3547","location":{"x":-26700000000000000000,"y":-1210000000000000000,"z":-9540000000000000000}},"30022068":{"solarSystemId":30022068,"solarSystemName":"Z:2724","location":{"x":-26700000000000000000,"y":-1290000000000000000,"z":-9950000000000000000}},"30022069":{"solarSystemId":30022069,"solarSystemName":"G:3EL5","location":{"x":-26600000000000000000,"y":-1340000000000000000,"z":-9640000000000000000}},"30022070":{"solarSystemId":30022070,"solarSystemName":"H:3EIV","location":{"x":-26900000000000000000,"y":-1350000000000000000,"z":-9810000000000000000}},"30022071":{"solarSystemId":30022071,"solarSystemName":"B:2ES8","location":{"x":-26800000000000000000,"y":-1350000000000000000,"z":-10100000000000000000}},"30022072":{"solarSystemId":30022072,"solarSystemName":"B:TI93","location":{"x":-26100000000000000000,"y":-1210000000000000000,"z":-9830000000000000000}},"30022073":{"solarSystemId":30022073,"solarSystemName":"P:2707","location":{"x":-25000000000000000000,"y":-1150000000000000000,"z":-8920000000000000000}},"30022074":{"solarSystemId":30022074,"solarSystemName":"F:3A6R","location":{"x":-25500000000000000000,"y":-1130000000000000000,"z":-8830000000000000000}},"30022075":{"solarSystemId":30022075,"solarSystemName":"Z:1308","location":{"x":-25700000000000000000,"y":-982000000000000000,"z":-8670000000000000000}},"30022076":{"solarSystemId":30022076,"solarSystemName":"U:230A","location":{"x":-25800000000000000000,"y":-744000000000000000,"z":-8860000000000000000}},"30022077":{"solarSystemId":30022077,"solarSystemName":"U:VETR","location":{"x":-24900000000000000000,"y":-810000000000000000,"z":-8190000000000000000}},"30022078":{"solarSystemId":30022078,"solarSystemName":"Z:OR3R","location":{"x":-25300000000000000000,"y":-308000000000000000,"z":-8370000000000000000}},"30022079":{"solarSystemId":30022079,"solarSystemName":"M:41A9","location":{"x":-25400000000000000000,"y":-1250000000000000000,"z":-8350000000000000000}},"30022080":{"solarSystemId":30022080,"solarSystemName":"J:1KE2","location":{"x":-24600000000000000000,"y":-850000000000000000,"z":-8680000000000000000}},"30022081":{"solarSystemId":30022081,"solarSystemName":"U:1V31","location":{"x":-24700000000000000000,"y":-1100000000000000000,"z":-8040000000000000000}},"30022082":{"solarSystemId":30022082,"solarSystemName":"M:12LI","location":{"x":-25200000000000000000,"y":-839000000000000000,"z":-8750000000000000000}},"30022083":{"solarSystemId":30022083,"solarSystemName":"H:306I","location":{"x":-24900000000000000000,"y":-704000000000000000,"z":-8430000000000000000}},"30022084":{"solarSystemId":30022084,"solarSystemName":"U:34KK","location":{"x":-25300000000000000000,"y":-816000000000000000,"z":-8350000000000000000}},"30022085":{"solarSystemId":30022085,"solarSystemName":"U:1SVO","location":{"x":-25600000000000000000,"y":-847000000000000000,"z":-8330000000000000000}},"30022086":{"solarSystemId":30022086,"solarSystemName":"J:125R","location":{"x":-25100000000000000000,"y":-576000000000000000,"z":-8370000000000000000}},"30022087":{"solarSystemId":30022087,"solarSystemName":"H:2T18","location":{"x":-26300000000000000000,"y":-1130000000000000000,"z":-10400000000000000000}},"30022088":{"solarSystemId":30022088,"solarSystemName":"J:3SRE","location":{"x":-25700000000000000000,"y":-1180000000000000000,"z":-10100000000000000000}},"30022089":{"solarSystemId":30022089,"solarSystemName":"P:268S","location":{"x":-25200000000000000000,"y":-975000000000000000,"z":-10000000000000000000}},"30022090":{"solarSystemId":30022090,"solarSystemName":"H:193O","location":{"x":-25000000000000000000,"y":43300000000000000,"z":-11300000000000000000}},"30022091":{"solarSystemId":30022091,"solarSystemName":"Y:14OK","location":{"x":-26000000000000000000,"y":-1120000000000000000,"z":-10700000000000000000}},"30022092":{"solarSystemId":30022092,"solarSystemName":"G:E7T6","location":{"x":-25100000000000000000,"y":-1540000000000000000,"z":-10300000000000000000}},"30022093":{"solarSystemId":30022093,"solarSystemName":"Y:KKOA","location":{"x":-26900000000000000000,"y":-371000000000000000,"z":-10600000000000000000}},"30022094":{"solarSystemId":30022094,"solarSystemName":"H:27EI","location":{"x":-27100000000000000000,"y":-1450000000000000000,"z":-11100000000000000000}},"30022095":{"solarSystemId":30022095,"solarSystemName":"G:27N4","location":{"x":-25800000000000000000,"y":-127000000000000000,"z":-10900000000000000000}},"30022096":{"solarSystemId":30022096,"solarSystemName":"Z:2825","location":{"x":-26100000000000000000,"y":-943000000000000000,"z":-10400000000000000000}},"30022097":{"solarSystemId":30022097,"solarSystemName":"Z:2203","location":{"x":-25900000000000000000,"y":-1380000000000000000,"z":-10900000000000000000}},"30022098":{"solarSystemId":30022098,"solarSystemName":"F:1ES9","location":{"x":-25400000000000000000,"y":125000000000000000,"z":-10900000000000000000}},"30022099":{"solarSystemId":30022099,"solarSystemName":"F:2SO8","location":{"x":-25600000000000000000,"y":-547000000000000000,"z":-10300000000000000000}},"30022100":{"solarSystemId":30022100,"solarSystemName":"F:3LTN","location":{"x":-25200000000000000000,"y":-1050000000000000000,"z":-10200000000000000000}},"30022101":{"solarSystemId":30022101,"solarSystemName":"Z:3E92","location":{"x":-25600000000000000000,"y":-2820000000000000000,"z":-10100000000000000000}},"30022102":{"solarSystemId":30022102,"solarSystemName":"D:EN1O","location":{"x":-26400000000000000000,"y":-2440000000000000000,"z":-9900000000000000000}},"30022103":{"solarSystemId":30022103,"solarSystemName":"B:115R","location":{"x":-26600000000000000000,"y":-1840000000000000000,"z":-9120000000000000000}},"30022104":{"solarSystemId":30022104,"solarSystemName":"P:20N0","location":{"x":-25900000000000000000,"y":-1860000000000000000,"z":-10600000000000000000}},"30022105":{"solarSystemId":30022105,"solarSystemName":"U:1NEN","location":{"x":-25400000000000000000,"y":-1970000000000000000,"z":-9670000000000000000}},"30022106":{"solarSystemId":30022106,"solarSystemName":"Z:16AO","location":{"x":-25800000000000000000,"y":-1780000000000000000,"z":-10800000000000000000}},"30022107":{"solarSystemId":30022107,"solarSystemName":"P:RII8","location":{"x":-25500000000000000000,"y":-2210000000000000000,"z":-11400000000000000000}},"30022108":{"solarSystemId":30022108,"solarSystemName":"Y:KAN7","location":{"x":-26700000000000000000,"y":-3070000000000000000,"z":-8870000000000000000}},"30022109":{"solarSystemId":30022109,"solarSystemName":"H:14I0","location":{"x":-25700000000000000000,"y":-2610000000000000000,"z":-9940000000000000000}},"30022110":{"solarSystemId":30022110,"solarSystemName":"P:3O12","location":{"x":-25600000000000000000,"y":-2690000000000000000,"z":-10300000000000000000}},"30022111":{"solarSystemId":30022111,"solarSystemName":"B:1O2T","location":{"x":-26500000000000000000,"y":-3070000000000000000,"z":-10300000000000000000}},"30022112":{"solarSystemId":30022112,"solarSystemName":"Q:3N14","location":{"x":-26300000000000000000,"y":-1020000000000000000,"z":-8110000000000000000}},"30022113":{"solarSystemId":30022113,"solarSystemName":"U:3RV9","location":{"x":-26400000000000000000,"y":-573000000000000000,"z":-7570000000000000000}},"30022114":{"solarSystemId":30022114,"solarSystemName":"F:2655","location":{"x":-28300000000000000000,"y":-509000000000000000,"z":-7450000000000000000}},"30022115":{"solarSystemId":30022115,"solarSystemName":"Y:22N7","location":{"x":-26500000000000000000,"y":-197000000000000000,"z":-8620000000000000000}},"30022116":{"solarSystemId":30022116,"solarSystemName":"F:34ON","location":{"x":-27100000000000000000,"y":-1010000000000000000,"z":-8640000000000000000}},"30022117":{"solarSystemId":30022117,"solarSystemName":"Y:2I47","location":{"x":-26900000000000000000,"y":-1180000000000000000,"z":-7390000000000000000}},"30022118":{"solarSystemId":30022118,"solarSystemName":"Q:14IV","location":{"x":-28000000000000000000,"y":-903000000000000000,"z":-7720000000000000000}},"30022119":{"solarSystemId":30022119,"solarSystemName":"Y:4TT4","location":{"x":-26900000000000000000,"y":-888000000000000000,"z":-8250000000000000000}},"30022120":{"solarSystemId":30022120,"solarSystemName":"U:165O","location":{"x":-26400000000000000000,"y":-626000000000000000,"z":-7540000000000000000}},"30022121":{"solarSystemId":30022121,"solarSystemName":"Z:25AO","location":{"x":-27200000000000000000,"y":-810000000000000000,"z":-8220000000000000000}},"30022122":{"solarSystemId":30022122,"solarSystemName":"Y:3539","location":{"x":-28000000000000000000,"y":-717000000000000000,"z":-7380000000000000000}},"30022123":{"solarSystemId":30022123,"solarSystemName":"H:2718","location":{"x":-26300000000000000000,"y":-418000000000000000,"z":-7990000000000000000}},"30022124":{"solarSystemId":30022124,"solarSystemName":"H:12N1","location":{"x":-27700000000000000000,"y":-116000000000000000,"z":-7410000000000000000}},"30022125":{"solarSystemId":30022125,"solarSystemName":"D:2KT0","location":{"x":-26300000000000000000,"y":-495000000000000000,"z":-8000000000000000000}},"30022126":{"solarSystemId":30022126,"solarSystemName":"B:1332","location":{"x":-27100000000000000000,"y":-306000000000000000,"z":-7640000000000000000}},"30022127":{"solarSystemId":30022127,"solarSystemName":"Y:1TR0","location":{"x":-26500000000000000000,"y":382000000000000000,"z":-8780000000000000000}},"30022128":{"solarSystemId":30022128,"solarSystemName":"U:1V94","location":{"x":-27900000000000000000,"y":-769000000000000000,"z":-7480000000000000000}},"30022129":{"solarSystemId":30022129,"solarSystemName":"J:3S9V","location":{"x":-27600000000000000000,"y":-2010000000000000000,"z":-8330000000000000000}},"30022130":{"solarSystemId":30022130,"solarSystemName":"Z:2O89","location":{"x":-27100000000000000000,"y":-2750000000000000000,"z":-8980000000000000000}},"30022131":{"solarSystemId":30022131,"solarSystemName":"B:LT5K","location":{"x":-28300000000000000000,"y":-1320000000000000000,"z":-8190000000000000000}},"30022132":{"solarSystemId":30022132,"solarSystemName":"H:1L0N","location":{"x":-27600000000000000000,"y":-1540000000000000000,"z":-8590000000000000000}},"30022133":{"solarSystemId":30022133,"solarSystemName":"F:1T15","location":{"x":-27000000000000000000,"y":-2670000000000000000,"z":-8310000000000000000}},"30022134":{"solarSystemId":30022134,"solarSystemName":"Z:1297","location":{"x":-27100000000000000000,"y":-2680000000000000000,"z":-8230000000000000000}},"30022135":{"solarSystemId":30022135,"solarSystemName":"Y:38E3","location":{"x":-28600000000000000000,"y":-1550000000000000000,"z":-8320000000000000000}},"30022136":{"solarSystemId":30022136,"solarSystemName":"Z:LK8R","location":{"x":-27300000000000000000,"y":-1250000000000000000,"z":-8400000000000000000}},"30022137":{"solarSystemId":30022137,"solarSystemName":"D:2ST7","location":{"x":-27800000000000000000,"y":-2270000000000000000,"z":-8620000000000000000}},"30022138":{"solarSystemId":30022138,"solarSystemName":"J:2N6N","location":{"x":-27000000000000000000,"y":-2270000000000000000,"z":-8110000000000000000}},"30022139":{"solarSystemId":30022139,"solarSystemName":"G:3E5V","location":{"x":-27900000000000000000,"y":-1260000000000000000,"z":-8530000000000000000}},"30022140":{"solarSystemId":30022140,"solarSystemName":"B:30NN","location":{"x":-27700000000000000000,"y":-1570000000000000000,"z":-8320000000000000000}},"30022141":{"solarSystemId":30022141,"solarSystemName":"M:IR00","location":{"x":-26000000000000000000,"y":-2730000000000000000,"z":-8300000000000000000}},"30022142":{"solarSystemId":30022142,"solarSystemName":"H:263V","location":{"x":-26700000000000000000,"y":-3020000000000000000,"z":-8600000000000000000}},"30022143":{"solarSystemId":30022143,"solarSystemName":"P:1S65","location":{"x":-26600000000000000000,"y":-2280000000000000000,"z":-8440000000000000000}},"30022144":{"solarSystemId":30022144,"solarSystemName":"G:21I4","location":{"x":-26900000000000000000,"y":-2860000000000000000,"z":-8280000000000000000}},"30022145":{"solarSystemId":30022145,"solarSystemName":"U:176V","location":{"x":-26700000000000000000,"y":-2480000000000000000,"z":-7640000000000000000}},"30022146":{"solarSystemId":30022146,"solarSystemName":"J:3INO","location":{"x":-26100000000000000000,"y":-3030000000000000000,"z":-8580000000000000000}},"30022147":{"solarSystemId":30022147,"solarSystemName":"Z:2IKT","location":{"x":-26000000000000000000,"y":-2160000000000000000,"z":-6760000000000000000}},"30022148":{"solarSystemId":30022148,"solarSystemName":"Q:3ES1","location":{"x":-27400000000000000000,"y":-2250000000000000000,"z":-7310000000000000000}},"30022149":{"solarSystemId":30022149,"solarSystemName":"Y:1ET5","location":{"x":-25900000000000000000,"y":-2530000000000000000,"z":-7810000000000000000}},"30022150":{"solarSystemId":30022150,"solarSystemName":"Q:50SO","location":{"x":-23300000000000000000,"y":-662000000000000000,"z":-13400000000000000000}},"30022151":{"solarSystemId":30022151,"solarSystemName":"U:1267","location":{"x":-23700000000000000000,"y":-1250000000000000000,"z":-12800000000000000000}},"30022152":{"solarSystemId":30022152,"solarSystemName":"Q:1899","location":{"x":-23400000000000000000,"y":-1580000000000000000,"z":-12500000000000000000}},"30022153":{"solarSystemId":30022153,"solarSystemName":"D:K15N","location":{"x":-23000000000000000000,"y":-2950000000000000000,"z":-13100000000000000000}},"30022154":{"solarSystemId":30022154,"solarSystemName":"U:24V0","location":{"x":-23800000000000000000,"y":-1510000000000000000,"z":-12100000000000000000}},"30022155":{"solarSystemId":30022155,"solarSystemName":"B:128E","location":{"x":-24500000000000000000,"y":-1890000000000000000,"z":-12300000000000000000}},"30022156":{"solarSystemId":30022156,"solarSystemName":"J:130S","location":{"x":-23500000000000000000,"y":-2070000000000000000,"z":-12700000000000000000}},"30022157":{"solarSystemId":30022157,"solarSystemName":"Y:2L9L","location":{"x":-23600000000000000000,"y":-1170000000000000000,"z":-13600000000000000000}},"30022158":{"solarSystemId":30022158,"solarSystemName":"M:1O3V","location":{"x":-23900000000000000000,"y":-1280000000000000000,"z":-11900000000000000000}},"30022159":{"solarSystemId":30022159,"solarSystemName":"Z:2E2K","location":{"x":-23700000000000000000,"y":-1340000000000000000,"z":-13000000000000000000}},"30022160":{"solarSystemId":30022160,"solarSystemName":"H:17V3","location":{"x":-24200000000000000000,"y":-1510000000000000000,"z":-13200000000000000000}},"30022161":{"solarSystemId":30022161,"solarSystemName":"B:2L84","location":{"x":-23400000000000000000,"y":-1140000000000000000,"z":-12000000000000000000}},"30022162":{"solarSystemId":30022162,"solarSystemName":"Y:1IL9","location":{"x":-23700000000000000000,"y":-1630000000000000000,"z":-12400000000000000000}},"30022163":{"solarSystemId":30022163,"solarSystemName":"Z:3OOK","location":{"x":-23800000000000000000,"y":-1430000000000000000,"z":-12300000000000000000}},"30022164":{"solarSystemId":30022164,"solarSystemName":"F:3IT8","location":{"x":-23600000000000000000,"y":-2510000000000000000,"z":-11600000000000000000}},"30022165":{"solarSystemId":30022165,"solarSystemName":"F:3T66","location":{"x":-22600000000000000000,"y":-1010000000000000000,"z":-14100000000000000000}},"30022166":{"solarSystemId":30022166,"solarSystemName":"D:1TEN","location":{"x":-23000000000000000000,"y":-1290000000000000000,"z":-14700000000000000000}},"30022167":{"solarSystemId":30022167,"solarSystemName":"B:3A97","location":{"x":-22600000000000000000,"y":-2180000000000000000,"z":-14200000000000000000}},"30022168":{"solarSystemId":30022168,"solarSystemName":"H:19I0","location":{"x":-23100000000000000000,"y":-1340000000000000000,"z":-13800000000000000000}},"30022169":{"solarSystemId":30022169,"solarSystemName":"D:2N73","location":{"x":-23500000000000000000,"y":-1080000000000000000,"z":-14000000000000000000}},"30022170":{"solarSystemId":30022170,"solarSystemName":"B:390V","location":{"x":-22400000000000000000,"y":-1100000000000000000,"z":-14500000000000000000}},"30022171":{"solarSystemId":30022171,"solarSystemName":"J:2TIE","location":{"x":-22700000000000000000,"y":-1610000000000000000,"z":-15000000000000000000}},"30022172":{"solarSystemId":30022172,"solarSystemName":"H:K9K8","location":{"x":-23500000000000000000,"y":-2040000000000000000,"z":-14200000000000000000}},"30022173":{"solarSystemId":30022173,"solarSystemName":"P:3S71","location":{"x":-22700000000000000000,"y":-1770000000000000000,"z":-14100000000000000000}},"30022174":{"solarSystemId":30022174,"solarSystemName":"B:R92A","location":{"x":-22600000000000000000,"y":-1320000000000000000,"z":-14100000000000000000}},"30022175":{"solarSystemId":30022175,"solarSystemName":"M:10RR","location":{"x":-22800000000000000000,"y":-1450000000000000000,"z":-14300000000000000000}},"30022176":{"solarSystemId":30022176,"solarSystemName":"Z:66E4","location":{"x":-22400000000000000000,"y":-1890000000000000000,"z":-15000000000000000000}},"30022177":{"solarSystemId":30022177,"solarSystemName":"G:26VA","location":{"x":-23900000000000000000,"y":-598000000000000000,"z":-11300000000000000000}},"30022178":{"solarSystemId":30022178,"solarSystemName":"P:34I6","location":{"x":-23200000000000000000,"y":-439000000000000000,"z":-11000000000000000000}},"30022179":{"solarSystemId":30022179,"solarSystemName":"J:17VT","location":{"x":-23200000000000000000,"y":-1000000000000000000,"z":-10800000000000000000}},"30022180":{"solarSystemId":30022180,"solarSystemName":"B:1IRA","location":{"x":-24000000000000000000,"y":-282000000000000000,"z":-11100000000000000000}},"30022181":{"solarSystemId":30022181,"solarSystemName":"P:1NSK","location":{"x":-23300000000000000000,"y":-1030000000000000000,"z":-10600000000000000000}},"30022182":{"solarSystemId":30022182,"solarSystemName":"H:OI0K","location":{"x":-23300000000000000000,"y":-833000000000000000,"z":-11000000000000000000}},"30022183":{"solarSystemId":30022183,"solarSystemName":"M:1OK1","location":{"x":-23100000000000000000,"y":-762000000000000000,"z":-11600000000000000000}},"30022184":{"solarSystemId":30022184,"solarSystemName":"M:35N6","location":{"x":-23600000000000000000,"y":-715000000000000000,"z":-11100000000000000000}},"30022185":{"solarSystemId":30022185,"solarSystemName":"G:2TKV","location":{"x":-23400000000000000000,"y":-291000000000000000,"z":-11300000000000000000}},"30022186":{"solarSystemId":30022186,"solarSystemName":"Y:17I6","location":{"x":-24200000000000000000,"y":-26500000000000000,"z":-10900000000000000000}},"30022187":{"solarSystemId":30022187,"solarSystemName":"U:1A9K","location":{"x":-23300000000000000000,"y":-654000000000000000,"z":-11400000000000000000}},"30022188":{"solarSystemId":30022188,"solarSystemName":"M:13OT","location":{"x":-23500000000000000000,"y":-906000000000000000,"z":-11400000000000000000}},"30022189":{"solarSystemId":30022189,"solarSystemName":"Q:T03I","location":{"x":-23200000000000000000,"y":-1050000000000000000,"z":-10300000000000000000}},"30022190":{"solarSystemId":30022190,"solarSystemName":"U:T5T7","location":{"x":-23300000000000000000,"y":-1170000000000000000,"z":-10300000000000000000}},"30022191":{"solarSystemId":30022191,"solarSystemName":"F:1S0T","location":{"x":-21800000000000000000,"y":-644000000000000000,"z":-14200000000000000000}},"30022192":{"solarSystemId":30022192,"solarSystemName":"P:18I7","location":{"x":-21700000000000000000,"y":-908000000000000000,"z":-13600000000000000000}},"30022193":{"solarSystemId":30022193,"solarSystemName":"U:17VO","location":{"x":-21500000000000000000,"y":-1390000000000000000,"z":-13600000000000000000}},"30022194":{"solarSystemId":30022194,"solarSystemName":"B:1A46","location":{"x":-21200000000000000000,"y":-1410000000000000000,"z":-13000000000000000000}},"30022195":{"solarSystemId":30022195,"solarSystemName":"P:1T65","location":{"x":-21600000000000000000,"y":-655000000000000000,"z":-13500000000000000000}},"30022196":{"solarSystemId":30022196,"solarSystemName":"U:28VL","location":{"x":-21700000000000000000,"y":-907000000000000000,"z":-14300000000000000000}},"30022197":{"solarSystemId":30022197,"solarSystemName":"P:17NO","location":{"x":-21000000000000000000,"y":-1190000000000000000,"z":-13700000000000000000}},"30022198":{"solarSystemId":30022198,"solarSystemName":"J:7N33","location":{"x":-21500000000000000000,"y":-842000000000000000,"z":-12700000000000000000}},"30022199":{"solarSystemId":30022199,"solarSystemName":"J:4O5I","location":{"x":-21500000000000000000,"y":-1300000000000000000,"z":-12700000000000000000}},"30022200":{"solarSystemId":30022200,"solarSystemName":"J:2R5O","location":{"x":-22000000000000000000,"y":-1610000000000000000,"z":-14100000000000000000}},"30022201":{"solarSystemId":30022201,"solarSystemName":"U:10LE","location":{"x":-21500000000000000000,"y":-1610000000000000000,"z":-13800000000000000000}},"30022202":{"solarSystemId":30022202,"solarSystemName":"P:2KO3","location":{"x":-21700000000000000000,"y":-1110000000000000000,"z":-13500000000000000000}},"30022203":{"solarSystemId":30022203,"solarSystemName":"P:1KAK","location":{"x":-21900000000000000000,"y":-778000000000000000,"z":-13400000000000000000}},"30022204":{"solarSystemId":30022204,"solarSystemName":"P:1IRR","location":{"x":-22300000000000000000,"y":-1500000000000000000,"z":-13100000000000000000}},"30022205":{"solarSystemId":30022205,"solarSystemName":"P:4I02","location":{"x":-22200000000000000000,"y":-1410000000000000000,"z":-13600000000000000000}},"30022206":{"solarSystemId":30022206,"solarSystemName":"F:14LI","location":{"x":-23000000000000000000,"y":-1110000000000000000,"z":-12700000000000000000}},"30022207":{"solarSystemId":30022207,"solarSystemName":"G:1STO","location":{"x":-22600000000000000000,"y":-827000000000000000,"z":-12700000000000000000}},"30022208":{"solarSystemId":30022208,"solarSystemName":"U:1AOR","location":{"x":-22300000000000000000,"y":-1390000000000000000,"z":-12800000000000000000}},"30022209":{"solarSystemId":30022209,"solarSystemName":"U:1OT1","location":{"x":-22100000000000000000,"y":-1560000000000000000,"z":-12400000000000000000}},"30022210":{"solarSystemId":30022210,"solarSystemName":"F:11IO","location":{"x":-22100000000000000000,"y":-1950000000000000000,"z":-13000000000000000000}},"30022211":{"solarSystemId":30022211,"solarSystemName":"P:IS1A","location":{"x":-22500000000000000000,"y":-932000000000000000,"z":-13000000000000000000}},"30022212":{"solarSystemId":30022212,"solarSystemName":"Z:160R","location":{"x":-23100000000000000000,"y":-1090000000000000000,"z":-12500000000000000000}},"30022213":{"solarSystemId":30022213,"solarSystemName":"F:1I80","location":{"x":-22600000000000000000,"y":-1290000000000000000,"z":-13000000000000000000}},"30022214":{"solarSystemId":30022214,"solarSystemName":"Z:1V60","location":{"x":-23100000000000000000,"y":-1740000000000000000,"z":-12700000000000000000}},"30022215":{"solarSystemId":30022215,"solarSystemName":"B:1TKL","location":{"x":-23000000000000000000,"y":-938000000000000000,"z":-12000000000000000000}},"30022216":{"solarSystemId":30022216,"solarSystemName":"H:1TNL","location":{"x":-22600000000000000000,"y":-572000000000000000,"z":-14300000000000000000}},"30022217":{"solarSystemId":30022217,"solarSystemName":"Q:25V2","location":{"x":-21800000000000000000,"y":523000000000000000,"z":-13200000000000000000}},"30022218":{"solarSystemId":30022218,"solarSystemName":"Y:2I75","location":{"x":-23300000000000000000,"y":-738000000000000000,"z":-12000000000000000000}},"30022219":{"solarSystemId":30022219,"solarSystemName":"M:18KS","location":{"x":-22800000000000000000,"y":-1170000000000000000,"z":-12100000000000000000}},"30022220":{"solarSystemId":30022220,"solarSystemName":"B:1K3O","location":{"x":-23300000000000000000,"y":-892000000000000000,"z":-11900000000000000000}},"30022221":{"solarSystemId":30022221,"solarSystemName":"P:28T6","location":{"x":-22700000000000000000,"y":-689000000000000000,"z":-14100000000000000000}},"30022222":{"solarSystemId":30022222,"solarSystemName":"Y:32L9","location":{"x":-23000000000000000000,"y":86100000000000000,"z":-12900000000000000000}},"30022223":{"solarSystemId":30022223,"solarSystemName":"Z:1LER","location":{"x":-23100000000000000000,"y":710000000000000000,"z":-13700000000000000000}},"30022224":{"solarSystemId":30022224,"solarSystemName":"M:2EO4","location":{"x":-22800000000000000000,"y":-363000000000000000,"z":-11900000000000000000}},"30022225":{"solarSystemId":30022225,"solarSystemName":"M:2NSV","location":{"x":-23500000000000000000,"y":505000000000000000,"z":-13700000000000000000}},"30022226":{"solarSystemId":30022226,"solarSystemName":"F:2R42","location":{"x":-22500000000000000000,"y":67300000000000000,"z":-12300000000000000000}},"30022227":{"solarSystemId":30022227,"solarSystemName":"F:2V00","location":{"x":-22000000000000000000,"y":651000000000000000,"z":-13600000000000000000}},"30022228":{"solarSystemId":30022228,"solarSystemName":"Y:3L00","location":{"x":-20800000000000000000,"y":-1020000000000000000,"z":-14400000000000000000}},"30022229":{"solarSystemId":30022229,"solarSystemName":"D:1E4O","location":{"x":-22000000000000000000,"y":-1340000000000000000,"z":-15600000000000000000}},"30022230":{"solarSystemId":30022230,"solarSystemName":"Q:234O","location":{"x":-21400000000000000000,"y":-882000000000000000,"z":-14500000000000000000}},"30022231":{"solarSystemId":30022231,"solarSystemName":"Z:OI29","location":{"x":-20300000000000000000,"y":-1330000000000000000,"z":-14400000000000000000}},"30022232":{"solarSystemId":30022232,"solarSystemName":"Q:1I9N","location":{"x":-20500000000000000000,"y":-1360000000000000000,"z":-15200000000000000000}},"30022233":{"solarSystemId":30022233,"solarSystemName":"M:27EN","location":{"x":-21200000000000000000,"y":-772000000000000000,"z":-15100000000000000000}},"30022234":{"solarSystemId":30022234,"solarSystemName":"P:3A2R","location":{"x":-21600000000000000000,"y":-938000000000000000,"z":-14500000000000000000}},"30022235":{"solarSystemId":30022235,"solarSystemName":"H:1KOL","location":{"x":-21700000000000000000,"y":-634000000000000000,"z":-15300000000000000000}},"30022236":{"solarSystemId":30022236,"solarSystemName":"D:TR4A","location":{"x":-21900000000000000000,"y":-1370000000000000000,"z":-14600000000000000000}},"30022237":{"solarSystemId":30022237,"solarSystemName":"G:1K4L","location":{"x":-20900000000000000000,"y":-1020000000000000000,"z":-16100000000000000000}},"30022238":{"solarSystemId":30022238,"solarSystemName":"J:3N11","location":{"x":-21700000000000000000,"y":-791000000000000000,"z":-14700000000000000000}},"30022239":{"solarSystemId":30022239,"solarSystemName":"B:27LI","location":{"x":-21400000000000000000,"y":-941000000000000000,"z":-15800000000000000000}},"30022240":{"solarSystemId":30022240,"solarSystemName":"Q:S6ER","location":{"x":-20200000000000000000,"y":-898000000000000000,"z":-14500000000000000000}},"30022241":{"solarSystemId":30022241,"solarSystemName":"B:1973","location":{"x":-20900000000000000000,"y":-622000000000000000,"z":-14600000000000000000}},"30022242":{"solarSystemId":30022242,"solarSystemName":"H:1S6O","location":{"x":-20700000000000000000,"y":-906000000000000000,"z":-14100000000000000000}},"30022243":{"solarSystemId":30022243,"solarSystemName":"G:1VSI","location":{"x":-20700000000000000000,"y":-18800000000000000,"z":-13500000000000000000}},"30022244":{"solarSystemId":30022244,"solarSystemName":"U:EO7E","location":{"x":-21000000000000000000,"y":201000000000000000,"z":-14200000000000000000}},"30022245":{"solarSystemId":30022245,"solarSystemName":"J:2331","location":{"x":-20800000000000000000,"y":-438000000000000000,"z":-14000000000000000000}},"30022246":{"solarSystemId":30022246,"solarSystemName":"U:2RE9","location":{"x":-21300000000000000000,"y":-587000000000000000,"z":-13600000000000000000}},"30022247":{"solarSystemId":30022247,"solarSystemName":"B:3SVS","location":{"x":-21500000000000000000,"y":-702000000000000000,"z":-14200000000000000000}},"30022248":{"solarSystemId":30022248,"solarSystemName":"J:35R1","location":{"x":-21000000000000000000,"y":-870000000000000000,"z":-14200000000000000000}},"30022249":{"solarSystemId":30022249,"solarSystemName":"B:20IO","location":{"x":-21000000000000000000,"y":-463000000000000000,"z":-14800000000000000000}},"30022250":{"solarSystemId":30022250,"solarSystemName":"F:1LOK","location":{"x":-20900000000000000000,"y":-573000000000000000,"z":-14300000000000000000}},"30022251":{"solarSystemId":30022251,"solarSystemName":"U:1334","location":{"x":-20200000000000000000,"y":577000000000000000,"z":-13400000000000000000}},"30022252":{"solarSystemId":30022252,"solarSystemName":"D:355T","location":{"x":-20300000000000000000,"y":653000000000000000,"z":-14400000000000000000}},"30022253":{"solarSystemId":30022253,"solarSystemName":"Y:3AK0","location":{"x":-20900000000000000000,"y":-952000000000000000,"z":-12500000000000000000}},"30022254":{"solarSystemId":30022254,"solarSystemName":"P:1NK5","location":{"x":-20200000000000000000,"y":-859000000000000000,"z":-12500000000000000000}},"30022255":{"solarSystemId":30022255,"solarSystemName":"P:9LL9","location":{"x":-20900000000000000000,"y":-1030000000000000000,"z":-11600000000000000000}},"30022256":{"solarSystemId":30022256,"solarSystemName":"D:L00A","location":{"x":-21700000000000000000,"y":-690000000000000000,"z":-11900000000000000000}},"30022257":{"solarSystemId":30022257,"solarSystemName":"F:IS8K","location":{"x":-20700000000000000000,"y":-1320000000000000000,"z":-12600000000000000000}},"30022258":{"solarSystemId":30022258,"solarSystemName":"G:OTVR","location":{"x":-22100000000000000000,"y":-857000000000000000,"z":-12200000000000000000}},"30022259":{"solarSystemId":30022259,"solarSystemName":"D:1NN5","location":{"x":-20700000000000000000,"y":-917000000000000000,"z":-12800000000000000000}},"30022260":{"solarSystemId":30022260,"solarSystemName":"M:3763","location":{"x":-21200000000000000000,"y":-760000000000000000,"z":-12300000000000000000}},"30022261":{"solarSystemId":30022261,"solarSystemName":"Q:I2VA","location":{"x":-21700000000000000000,"y":-1010000000000000000,"z":-11500000000000000000}},"30022262":{"solarSystemId":30022262,"solarSystemName":"G:75OA","location":{"x":-21200000000000000000,"y":-857000000000000000,"z":-12200000000000000000}},"30022263":{"solarSystemId":30022263,"solarSystemName":"M:15V8","location":{"x":-20900000000000000000,"y":-820000000000000000,"z":-11600000000000000000}},"30022264":{"solarSystemId":30022264,"solarSystemName":"F:LE4I","location":{"x":-20500000000000000000,"y":-683000000000000000,"z":-11800000000000000000}},"30022265":{"solarSystemId":30022265,"solarSystemName":"Z:342N","location":{"x":-21900000000000000000,"y":-1160000000000000000,"z":-12100000000000000000}},"30022266":{"solarSystemId":30022266,"solarSystemName":"U:138V","location":{"x":-19600000000000000000,"y":-2070000000000000000,"z":-14100000000000000000}},"30022267":{"solarSystemId":30022267,"solarSystemName":"Q:1A59","location":{"x":-20100000000000000000,"y":-3450000000000000000,"z":-13500000000000000000}},"30022268":{"solarSystemId":30022268,"solarSystemName":"B:2RNV","location":{"x":-19700000000000000000,"y":-2060000000000000000,"z":-12400000000000000000}},"30022269":{"solarSystemId":30022269,"solarSystemName":"F:4V72","location":{"x":-19600000000000000000,"y":-1440000000000000000,"z":-13500000000000000000}},"30022270":{"solarSystemId":30022270,"solarSystemName":"J:1A7V","location":{"x":-20400000000000000000,"y":-1830000000000000000,"z":-13100000000000000000}},"30022271":{"solarSystemId":30022271,"solarSystemName":"F:49K0","location":{"x":-20700000000000000000,"y":-1610000000000000000,"z":-12900000000000000000}},"30022272":{"solarSystemId":30022272,"solarSystemName":"D:2275","location":{"x":-19900000000000000000,"y":-2040000000000000000,"z":-11900000000000000000}},"30022273":{"solarSystemId":30022273,"solarSystemName":"D:15KA","location":{"x":-20900000000000000000,"y":-1800000000000000000,"z":-14300000000000000000}},"30022274":{"solarSystemId":30022274,"solarSystemName":"P:32LT","location":{"x":-20500000000000000000,"y":-2280000000000000000,"z":-13200000000000000000}},"30022275":{"solarSystemId":30022275,"solarSystemName":"G:2K0R","location":{"x":-19900000000000000000,"y":-1550000000000000000,"z":-12600000000000000000}},"30022276":{"solarSystemId":30022276,"solarSystemName":"M:R9TK","location":{"x":-21200000000000000000,"y":-1540000000000000000,"z":-14200000000000000000}},"30022277":{"solarSystemId":30022277,"solarSystemName":"Z:16O2","location":{"x":-19700000000000000000,"y":-2600000000000000000,"z":-14600000000000000000}},"30022278":{"solarSystemId":30022278,"solarSystemName":"D:24A4","location":{"x":-21100000000000000000,"y":-1920000000000000000,"z":-13200000000000000000}},"30022279":{"solarSystemId":30022279,"solarSystemName":"E.FBT.6C2","location":{"x":13500000000000000000,"y":-2890000000000000000,"z":-3850000000000000000}},"30022280":{"solarSystemId":30022280,"solarSystemName":"D.6VT.WX3","location":{"x":13400000000000000000,"y":-4430000000000000000,"z":-3320000000000000000}},"30022281":{"solarSystemId":30022281,"solarSystemName":"D.6ZT.DD4","location":{"x":13700000000000000000,"y":-5170000000000000000,"z":-4740000000000000000}},"30022282":{"solarSystemId":30022282,"solarSystemName":"N.FLT.913","location":{"x":13200000000000000000,"y":-3510000000000000000,"z":-4240000000000000000}},"30022283":{"solarSystemId":30022283,"solarSystemName":"I.KBN.K14","location":{"x":14700000000000000000,"y":-4680000000000000000,"z":-3000000000000000000}},"30022284":{"solarSystemId":30022284,"solarSystemName":"C.VPT.ZD4","location":{"x":13400000000000000000,"y":-5180000000000000000,"z":-2880000000000000000}},"30022285":{"solarSystemId":30022285,"solarSystemName":"H.HJT.4L2","location":{"x":13600000000000000000,"y":-2820000000000000000,"z":-7280000000000000000}},"30022286":{"solarSystemId":30022286,"solarSystemName":"D.PFR.YE3","location":{"x":15800000000000000000,"y":-4610000000000000000,"z":-5960000000000000000}},"30022287":{"solarSystemId":30022287,"solarSystemName":"I.RBR.654","location":{"x":15800000000000000000,"y":-4800000000000000000,"z":-5870000000000000000}},"30022288":{"solarSystemId":30022288,"solarSystemName":"U.8YR.QW3","location":{"x":16000000000000000000,"y":-4530000000000000000,"z":-5980000000000000000}},"30022289":{"solarSystemId":30022289,"solarSystemName":"T.24R.Q83","location":{"x":15100000000000000000,"y":-3770000000000000000,"z":-3050000000000000000}},"30022290":{"solarSystemId":30022290,"solarSystemName":"I.7CS.9L5","location":{"x":12100000000000000000,"y":-6280000000000000000,"z":-6910000000000000000}},"30022291":{"solarSystemId":30022291,"solarSystemName":"I.729.YP5","location":{"x":10500000000000000000,"y":-6440000000000000000,"z":-5220000000000000000}},"30022292":{"solarSystemId":30022292,"solarSystemName":"N.XXS.QL5","location":{"x":12500000000000000000,"y":-6290000000000000000,"z":-6030000000000000000}},"30022293":{"solarSystemId":30022293,"solarSystemName":"I.CST.Q35","location":{"x":13100000000000000000,"y":-5900000000000000000,"z":-6760000000000000000}},"30022294":{"solarSystemId":30022294,"solarSystemName":"N.CQS.EE6","location":{"x":12300000000000000000,"y":-8070000000000000000,"z":-7760000000000000000}},"30022295":{"solarSystemId":30022295,"solarSystemName":"H.68N.H95","location":{"x":14100000000000000000,"y":-6120000000000000000,"z":-4280000000000000000}},"30022296":{"solarSystemId":30022296,"solarSystemName":"N.DWS.647","location":{"x":12600000000000000000,"y":-8220000000000000000,"z":-5400000000000000000}},"30022297":{"solarSystemId":30022297,"solarSystemName":"T.06T.GQ6","location":{"x":12900000000000000000,"y":-7660000000000000000,"z":-4750000000000000000}},"30022298":{"solarSystemId":30022298,"solarSystemName":"T.9ST.4W5","location":{"x":13100000000000000000,"y":-6810000000000000000,"z":-3890000000000000000}},"30022299":{"solarSystemId":30022299,"solarSystemName":"O.2LT.HJ4","location":{"x":13200000000000000000,"y":-5540000000000000000,"z":-4190000000000000000}},"30022300":{"solarSystemId":30022300,"solarSystemName":"M.SE9.FB5","location":{"x":11500000000000000000,"y":-6580000000000000000,"z":-3630000000000000000}},"30022301":{"solarSystemId":30022301,"solarSystemName":"U.P2C.2B8","location":{"x":18500000000000000000,"y":-10000000000000000000,"z":-8340000000000000000}},"30022302":{"solarSystemId":30022302,"solarSystemName":"E.5PD.3X6","location":{"x":17900000000000000000,"y":-7860000000000000000,"z":-11800000000000000000}},"30022303":{"solarSystemId":30022303,"solarSystemName":"T.3TN.VE5","location":{"x":14200000000000000000,"y":-6900000000000000000,"z":-8640000000000000000}},"30022304":{"solarSystemId":30022304,"solarSystemName":"S.MWN.RB7","location":{"x":14900000000000000000,"y":-8880000000000000000,"z":-7340000000000000000}},"30022305":{"solarSystemId":30022305,"solarSystemName":"S.YLQ.Y09","location":{"x":23600000000000000000,"y":-10400000000000000000,"z":-10300000000000000000}},"30022306":{"solarSystemId":30022306,"solarSystemName":"R.CWT.CE7","location":{"x":13700000000000000000,"y":-9210000000000000000,"z":-8300000000000000000}},"30022307":{"solarSystemId":30022307,"solarSystemName":"S.PZV.MK8","location":{"x":22900000000000000000,"y":-10300000000000000000,"z":-10000000000000000000}},"30022308":{"solarSystemId":30022308,"solarSystemName":"I.1DT.BY6","location":{"x":13200000000000000000,"y":-7920000000000000000,"z":-12600000000000000000}},"30022309":{"solarSystemId":30022309,"solarSystemName":"I.RHS.428","location":{"x":12400000000000000000,"y":-9300000000000000000,"z":-11300000000000000000}},"30022310":{"solarSystemId":30022310,"solarSystemName":"E.3WN.RF7","location":{"x":14900000000000000000,"y":-8840000000000000000,"z":-13200000000000000000}},"30022311":{"solarSystemId":30022311,"solarSystemName":"E.VBS.EY6","location":{"x":12300000000000000000,"y":-7930000000000000000,"z":-13900000000000000000}},"30022312":{"solarSystemId":30022312,"solarSystemName":"M.CKN.Y17","location":{"x":14900000000000000000,"y":-8140000000000000000,"z":-13000000000000000000}},"30022313":{"solarSystemId":30022313,"solarSystemName":"Q:39E1","location":{"x":1910000000000000000,"y":-1460000000000000000,"z":-14400000000000000000}},"30022314":{"solarSystemId":30022314,"solarSystemName":"U:N5NE","location":{"x":2200000000000000000,"y":-1350000000000000000,"z":-14900000000000000000}},"30022315":{"solarSystemId":30022315,"solarSystemName":"F:1L53","location":{"x":2770000000000000000,"y":-606000000000000000,"z":-15200000000000000000}},"30022316":{"solarSystemId":30022316,"solarSystemName":"D:125A","location":{"x":2730000000000000000,"y":-1230000000000000000,"z":-14600000000000000000}},"30022317":{"solarSystemId":30022317,"solarSystemName":"Z:22OT","location":{"x":2700000000000000000,"y":-685000000000000000,"z":-14700000000000000000}},"30022318":{"solarSystemId":30022318,"solarSystemName":"H:371O","location":{"x":2800000000000000000,"y":-956000000000000000,"z":-14700000000000000000}},"30022319":{"solarSystemId":30022319,"solarSystemName":"P:2N08","location":{"x":2850000000000000000,"y":-717000000000000000,"z":-14800000000000000000}},"30022320":{"solarSystemId":30022320,"solarSystemName":"Z:220O","location":{"x":1710000000000000000,"y":-1000000000000000000,"z":-14800000000000000000}},"30022321":{"solarSystemId":30022321,"solarSystemName":"F:1873","location":{"x":3070000000000000000,"y":-1140000000000000000,"z":-14800000000000000000}},"30022322":{"solarSystemId":30022322,"solarSystemName":"M:2NEE","location":{"x":1340000000000000000,"y":-857000000000000000,"z":-15100000000000000000}},"30022323":{"solarSystemId":30022323,"solarSystemName":"D:KKVA","location":{"x":1140000000000000000,"y":344000000000000000,"z":-14200000000000000000}},"30022324":{"solarSystemId":30022324,"solarSystemName":"Y:1AKL","location":{"x":787000000000000000,"y":30300000000000000,"z":-15400000000000000000}},"30022325":{"solarSystemId":30022325,"solarSystemName":"U:1469","location":{"x":1210000000000000000,"y":-1120000000000000000,"z":-15300000000000000000}},"30022326":{"solarSystemId":30022326,"solarSystemName":"Y:1L06","location":{"x":2010000000000000000,"y":427000000000000000,"z":-13900000000000000000}},"30022327":{"solarSystemId":30022327,"solarSystemName":"Z:2711","location":{"x":1930000000000000000,"y":-251000000000000000,"z":-15700000000000000000}},"30022328":{"solarSystemId":30022328,"solarSystemName":"J:INAO","location":{"x":2360000000000000000,"y":81600000000000000,"z":-14200000000000000000}},"30022329":{"solarSystemId":30022329,"solarSystemName":"Y:3E4R","location":{"x":1000000000000000000,"y":-217000000000000000,"z":-14800000000000000000}},"30022330":{"solarSystemId":30022330,"solarSystemName":"M:26OO","location":{"x":1600000000000000000,"y":-436000000000000000,"z":-14100000000000000000}},"30022331":{"solarSystemId":30022331,"solarSystemName":"D:3E27","location":{"x":1650000000000000000,"y":-230000000000000000,"z":-15000000000000000000}},"30022332":{"solarSystemId":30022332,"solarSystemName":"D:K02T","location":{"x":1770000000000000000,"y":36500000000000000,"z":-15500000000000000000}},"30022333":{"solarSystemId":30022333,"solarSystemName":"J:2KIT","location":{"x":-89900000000000000,"y":-238000000000000000,"z":-16100000000000000000}},"30022334":{"solarSystemId":30022334,"solarSystemName":"M:256S","location":{"x":-675000000000000000,"y":-299000000000000000,"z":-15700000000000000000}},"30022335":{"solarSystemId":30022335,"solarSystemName":"Y:11SS","location":{"x":-758000000000000000,"y":-949000000000000000,"z":-16600000000000000000}},"30022336":{"solarSystemId":30022336,"solarSystemName":"J:1TVT","location":{"x":-132000000000000000,"y":-507000000000000000,"z":-16700000000000000000}},"30022337":{"solarSystemId":30022337,"solarSystemName":"G:2N03","location":{"x":317000000000000000,"y":-329000000000000000,"z":-16300000000000000000}},"30022338":{"solarSystemId":30022338,"solarSystemName":"D:3LLK","location":{"x":-964000000000000000,"y":-352000000000000000,"z":-15700000000000000000}},"30022339":{"solarSystemId":30022339,"solarSystemName":"Z:27OE","location":{"x":-368000000000000000,"y":-407000000000000000,"z":-16100000000000000000}},"30022340":{"solarSystemId":30022340,"solarSystemName":"D:26E1","location":{"x":-153000000000000000,"y":-12600000000000000,"z":-15400000000000000000}},"30022341":{"solarSystemId":30022341,"solarSystemName":"U:1TVV","location":{"x":-361000000000000000,"y":-434000000000000000,"z":-15800000000000000000}},"30022342":{"solarSystemId":30022342,"solarSystemName":"M:227O","location":{"x":-778000000000000000,"y":-578000000000000000,"z":-15600000000000000000}},"30022343":{"solarSystemId":30022343,"solarSystemName":"D:17S6","location":{"x":590000000000000000,"y":-942000000000000000,"z":-13500000000000000000}},"30022344":{"solarSystemId":30022344,"solarSystemName":"Y:2603","location":{"x":1220000000000000000,"y":-2450000000000000000,"z":-14400000000000000000}},"30022345":{"solarSystemId":30022345,"solarSystemName":"Q:3A71","location":{"x":498000000000000000,"y":-1060000000000000000,"z":-14700000000000000000}},"30022346":{"solarSystemId":30022346,"solarSystemName":"U:2120","location":{"x":165000000000000000,"y":-1340000000000000000,"z":-14600000000000000000}},"30022347":{"solarSystemId":30022347,"solarSystemName":"Z:11A3","location":{"x":706000000000000000,"y":-853000000000000000,"z":-14200000000000000000}},"30022348":{"solarSystemId":30022348,"solarSystemName":"J:VTVN","location":{"x":195000000000000000,"y":171000000000000000,"z":-14900000000000000000}},"30022349":{"solarSystemId":30022349,"solarSystemName":"B:2K94","location":{"x":630000000000000000,"y":-496000000000000000,"z":-13400000000000000000}},"30022350":{"solarSystemId":30022350,"solarSystemName":"U:1S10","location":{"x":794000000000000000,"y":-22800000000000000,"z":-13800000000000000000}},"30022351":{"solarSystemId":30022351,"solarSystemName":"P:2T61","location":{"x":1490000000000000000,"y":-1510000000000000000,"z":-14100000000000000000}},"30022352":{"solarSystemId":30022352,"solarSystemName":"B:2V4T","location":{"x":2430000000000000000,"y":-845000000000000000,"z":-15900000000000000000}},"30022353":{"solarSystemId":30022353,"solarSystemName":"J:251V","location":{"x":3240000000000000000,"y":-1100000000000000000,"z":-14900000000000000000}},"30022354":{"solarSystemId":30022354,"solarSystemName":"Y:2551","location":{"x":3500000000000000000,"y":-798000000000000000,"z":-15100000000000000000}},"30022355":{"solarSystemId":30022355,"solarSystemName":"G:3SI0","location":{"x":3290000000000000000,"y":-920000000000000000,"z":-15500000000000000000}},"30022356":{"solarSystemId":30022356,"solarSystemName":"G:1N80","location":{"x":3660000000000000000,"y":-1240000000000000000,"z":-14800000000000000000}},"30022357":{"solarSystemId":30022357,"solarSystemName":"Y:ETRI","location":{"x":2830000000000000000,"y":-592000000000000000,"z":-15600000000000000000}},"30022358":{"solarSystemId":30022358,"solarSystemName":"Y:27OK","location":{"x":3630000000000000000,"y":-737000000000000000,"z":-14700000000000000000}},"30022359":{"solarSystemId":30022359,"solarSystemName":"U:275N","location":{"x":3200000000000000000,"y":-1600000000000000000,"z":-14800000000000000000}},"30022360":{"solarSystemId":30022360,"solarSystemName":"J:35O7","location":{"x":3520000000000000000,"y":-691000000000000000,"z":-14900000000000000000}},"30022361":{"solarSystemId":30022361,"solarSystemName":"F:36R9","location":{"x":457000000000000000,"y":436000000000000000,"z":-16600000000000000000}},"30022362":{"solarSystemId":30022362,"solarSystemName":"B:S8RT","location":{"x":681000000000000000,"y":161000000000000000,"z":-15800000000000000000}},"30022363":{"solarSystemId":30022363,"solarSystemName":"J:27N5","location":{"x":1320000000000000000,"y":-374000000000000000,"z":-16900000000000000000}},"30022364":{"solarSystemId":30022364,"solarSystemName":"M:299E","location":{"x":-449000000000000000,"y":-1770000000000000000,"z":-18400000000000000000}},"30022365":{"solarSystemId":30022365,"solarSystemName":"Z:3RR9","location":{"x":786000000000000000,"y":-657000000000000000,"z":-16300000000000000000}},"30022366":{"solarSystemId":30022366,"solarSystemName":"M:3E4A","location":{"x":374000000000000000,"y":-642000000000000000,"z":-16900000000000000000}},"30022367":{"solarSystemId":30022367,"solarSystemName":"G:1EOI","location":{"x":1760000000000000000,"y":-786000000000000000,"z":-16200000000000000000}},"30022368":{"solarSystemId":30022368,"solarSystemName":"G:2OI7","location":{"x":837000000000000000,"y":-637000000000000000,"z":-16500000000000000000}},"30022369":{"solarSystemId":30022369,"solarSystemName":"Q:369S","location":{"x":691000000000000000,"y":714000000000000000,"z":-16600000000000000000}},"30022370":{"solarSystemId":30022370,"solarSystemName":"B:2A39","location":{"x":-242000000000000000,"y":-1530000000000000000,"z":-17500000000000000000}},"30022371":{"solarSystemId":30022371,"solarSystemName":"H:2K2N","location":{"x":3570000000000000000,"y":-2170000000000000000,"z":-15800000000000000000}},"30022372":{"solarSystemId":30022372,"solarSystemName":"F:3ET2","location":{"x":2100000000000000000,"y":-2540000000000000000,"z":-15500000000000000000}},"30022373":{"solarSystemId":30022373,"solarSystemName":"Q:3O4E","location":{"x":3600000000000000000,"y":-2680000000000000000,"z":-13600000000000000000}},"30022374":{"solarSystemId":30022374,"solarSystemName":"P:3TOR","location":{"x":4110000000000000000,"y":-3580000000000000000,"z":-15200000000000000000}},"30022375":{"solarSystemId":30022375,"solarSystemName":"M:2VOE","location":{"x":4060000000000000000,"y":-1120000000000000000,"z":-14100000000000000000}},"30022376":{"solarSystemId":30022376,"solarSystemName":"J:1TNS","location":{"x":3980000000000000000,"y":-4120000000000000000,"z":-14000000000000000000}},"30022377":{"solarSystemId":30022377,"solarSystemName":"Z:1T62","location":{"x":2470000000000000000,"y":-456000000000000000,"z":-16500000000000000000}},"30022378":{"solarSystemId":30022378,"solarSystemName":"H:3EO1","location":{"x":2120000000000000000,"y":-808000000000000000,"z":-16900000000000000000}},"30022379":{"solarSystemId":30022379,"solarSystemName":"M:3284","location":{"x":1730000000000000000,"y":-611000000000000000,"z":-17300000000000000000}},"30022380":{"solarSystemId":30022380,"solarSystemName":"J:1OSR","location":{"x":2300000000000000000,"y":-31100000000000000,"z":-17100000000000000000}},"30022381":{"solarSystemId":30022381,"solarSystemName":"D:2I01","location":{"x":1950000000000000000,"y":-954000000000000000,"z":-16800000000000000000}},"30022382":{"solarSystemId":30022382,"solarSystemName":"J:1R31","location":{"x":1900000000000000000,"y":-175000000000000000,"z":-16900000000000000000}},"30022383":{"solarSystemId":30022383,"solarSystemName":"H:26SA","location":{"x":2210000000000000000,"y":194000000000000000,"z":-18000000000000000000}},"30022384":{"solarSystemId":30022384,"solarSystemName":"Q:KT6N","location":{"x":2250000000000000000,"y":-93300000000000000,"z":-16500000000000000000}},"30022385":{"solarSystemId":30022385,"solarSystemName":"Y:399E","location":{"x":2250000000000000000,"y":356000000000000000,"z":-17600000000000000000}},"30022386":{"solarSystemId":30022386,"solarSystemName":"D:1T83","location":{"x":11100000000000000000,"y":-745000000000000000,"z":-6000000000000000000}},"30022387":{"solarSystemId":30022387,"solarSystemName":"F:1EKL","location":{"x":11100000000000000000,"y":-956000000000000000,"z":-5580000000000000000}},"30022388":{"solarSystemId":30022388,"solarSystemName":"F:E16I","location":{"x":10700000000000000000,"y":-1140000000000000000,"z":-6410000000000000000}},"30022389":{"solarSystemId":30022389,"solarSystemName":"U:RN9R","location":{"x":11000000000000000000,"y":-744000000000000000,"z":-5370000000000000000}},"30022390":{"solarSystemId":30022390,"solarSystemName":"F:145L","location":{"x":11000000000000000000,"y":-973000000000000000,"z":-6110000000000000000}},"30022391":{"solarSystemId":30022391,"solarSystemName":"Y:TOEO","location":{"x":10900000000000000000,"y":-435000000000000000,"z":-5970000000000000000}},"30022392":{"solarSystemId":30022392,"solarSystemName":"P:3IA0","location":{"x":11400000000000000000,"y":-284000000000000000,"z":-5780000000000000000}},"30022393":{"solarSystemId":30022393,"solarSystemName":"P:1K06","location":{"x":10900000000000000000,"y":-296000000000000000,"z":-5670000000000000000}},"30022394":{"solarSystemId":30022394,"solarSystemName":"D:2463","location":{"x":11100000000000000000,"y":-277000000000000000,"z":-5760000000000000000}},"30022395":{"solarSystemId":30022395,"solarSystemName":"U:12IR","location":{"x":11300000000000000000,"y":-768000000000000000,"z":-5350000000000000000}},"30022396":{"solarSystemId":30022396,"solarSystemName":"P:2A0V","location":{"x":11500000000000000000,"y":-1250000000000000000,"z":-5230000000000000000}},"30022397":{"solarSystemId":30022397,"solarSystemName":"P:2E11","location":{"x":11000000000000000000,"y":-1100000000000000000,"z":-5190000000000000000}},"30022398":{"solarSystemId":30022398,"solarSystemName":"Q:2A86","location":{"x":10700000000000000000,"y":2100000000000000000,"z":-4570000000000000000}},"30022399":{"solarSystemId":30022399,"solarSystemName":"B:2LOI","location":{"x":9530000000000000000,"y":-331000000000000000,"z":-5590000000000000000}},"30022400":{"solarSystemId":30022400,"solarSystemName":"G:EN4O","location":{"x":11000000000000000000,"y":499000000000000000,"z":-5920000000000000000}},"30022401":{"solarSystemId":30022401,"solarSystemName":"P:1S5T","location":{"x":10100000000000000000,"y":312000000000000000,"z":-6490000000000000000}},"30022402":{"solarSystemId":30022402,"solarSystemName":"M:269S","location":{"x":10500000000000000000,"y":-653000000000000000,"z":-5320000000000000000}},"30022403":{"solarSystemId":30022403,"solarSystemName":"G:32E2","location":{"x":10800000000000000000,"y":-26700000000000000,"z":-5540000000000000000}},"30022404":{"solarSystemId":30022404,"solarSystemName":"D:24E7","location":{"x":10600000000000000000,"y":-866000000000000000,"z":-5200000000000000000}},"30022405":{"solarSystemId":30022405,"solarSystemName":"D:TLIV","location":{"x":10400000000000000000,"y":1090000000000000000,"z":-4800000000000000000}},"30022406":{"solarSystemId":30022406,"solarSystemName":"G:3OOV","location":{"x":13500000000000000000,"y":2520000000000000000,"z":-6330000000000000000}},"30022407":{"solarSystemId":30022407,"solarSystemName":"Y:3EK1","location":{"x":13200000000000000000,"y":1790000000000000000,"z":-8350000000000000000}},"30022408":{"solarSystemId":30022408,"solarSystemName":"Q:1K41","location":{"x":13300000000000000000,"y":-802000000000000000,"z":-8410000000000000000}},"30022409":{"solarSystemId":30022409,"solarSystemName":"Q:ES4A","location":{"x":12500000000000000000,"y":-646000000000000000,"z":-8630000000000000000}},"30022410":{"solarSystemId":30022410,"solarSystemName":"Q:27KV","location":{"x":11400000000000000000,"y":-807000000000000000,"z":-8470000000000000000}},"30022411":{"solarSystemId":30022411,"solarSystemName":"D:1528","location":{"x":11600000000000000000,"y":254000000000000000,"z":-8250000000000000000}},"30022412":{"solarSystemId":30022412,"solarSystemName":"H:3912","location":{"x":11600000000000000000,"y":-322000000000000000,"z":-8340000000000000000}},"30022413":{"solarSystemId":30022413,"solarSystemName":"M:115K","location":{"x":11400000000000000000,"y":71500000000000000,"z":-8020000000000000000}},"30022414":{"solarSystemId":30022414,"solarSystemName":"G:3705","location":{"x":10400000000000000000,"y":437000000000000000,"z":-7850000000000000000}},"30022415":{"solarSystemId":30022415,"solarSystemName":"U:1I5O","location":{"x":11300000000000000000,"y":80100000000000000,"z":-6850000000000000000}},"30022416":{"solarSystemId":30022416,"solarSystemName":"G:28VT","location":{"x":11300000000000000000,"y":-953000000000000000,"z":-6710000000000000000}},"30022417":{"solarSystemId":30022417,"solarSystemName":"M:3RT3","location":{"x":11800000000000000000,"y":-258000000000000000,"z":-6330000000000000000}},"30022418":{"solarSystemId":30022418,"solarSystemName":"F:134S","location":{"x":11400000000000000000,"y":274000000000000000,"z":-6520000000000000000}},"30022419":{"solarSystemId":30022419,"solarSystemName":"H:E0N1","location":{"x":10300000000000000000,"y":19300000000000000,"z":-6460000000000000000}},"30022420":{"solarSystemId":30022420,"solarSystemName":"P:470N","location":{"x":11000000000000000000,"y":-306000000000000000,"z":-6980000000000000000}},"30022421":{"solarSystemId":30022421,"solarSystemName":"J:2EVS","location":{"x":10100000000000000000,"y":48700000000000000,"z":-7430000000000000000}},"30022422":{"solarSystemId":30022422,"solarSystemName":"M:18KI","location":{"x":10200000000000000000,"y":3110000000000000,"z":-6290000000000000000}},"30022423":{"solarSystemId":30022423,"solarSystemName":"H:1I95","location":{"x":11500000000000000000,"y":-111000000000000000,"z":-6140000000000000000}},"30022424":{"solarSystemId":30022424,"solarSystemName":"Z:1VOL","location":{"x":10400000000000000000,"y":-8640000000000000,"z":-6050000000000000000}},"30022425":{"solarSystemId":30022425,"solarSystemName":"M:3N6S","location":{"x":11800000000000000000,"y":-202000000000000000,"z":-7170000000000000000}},"30022426":{"solarSystemId":30022426,"solarSystemName":"P:2146","location":{"x":12900000000000000000,"y":-295000000000000000,"z":-8520000000000000000}},"30022427":{"solarSystemId":30022427,"solarSystemName":"B:3303","location":{"x":11700000000000000000,"y":18900000000000000,"z":-7340000000000000000}},"30022428":{"solarSystemId":30022428,"solarSystemName":"M:17T0","location":{"x":12200000000000000000,"y":-298000000000000000,"z":-6770000000000000000}},"30022429":{"solarSystemId":30022429,"solarSystemName":"B:1N92","location":{"x":12500000000000000000,"y":-144000000000000000,"z":-7380000000000000000}},"30022430":{"solarSystemId":30022430,"solarSystemName":"J:1NO2","location":{"x":12000000000000000000,"y":-139000000000000000,"z":-7570000000000000000}},"30022431":{"solarSystemId":30022431,"solarSystemName":"Q:3872","location":{"x":11800000000000000000,"y":-19900000000000000,"z":-6590000000000000000}},"30022432":{"solarSystemId":30022432,"solarSystemName":"D:33AR","location":{"x":12100000000000000000,"y":-381000000000000000,"z":-7660000000000000000}},"30022433":{"solarSystemId":30022433,"solarSystemName":"Z:31T7","location":{"x":11900000000000000000,"y":-473000000000000000,"z":-6380000000000000000}},"30022434":{"solarSystemId":30022434,"solarSystemName":"P:3AEN","location":{"x":9830000000000000000,"y":-465000000000000000,"z":-7090000000000000000}},"30022435":{"solarSystemId":30022435,"solarSystemName":"J:2NR6","location":{"x":10300000000000000000,"y":-1050000000000000000,"z":-7080000000000000000}},"30022436":{"solarSystemId":30022436,"solarSystemName":"Q:T1I0","location":{"x":9710000000000000000,"y":-1690000000000000000,"z":-6730000000000000000}},"30022437":{"solarSystemId":30022437,"solarSystemName":"G:1E53","location":{"x":10300000000000000000,"y":-337000000000000000,"z":-6510000000000000000}},"30022438":{"solarSystemId":30022438,"solarSystemName":"Z:383E","location":{"x":10600000000000000000,"y":-1720000000000000000,"z":-6590000000000000000}},"30022439":{"solarSystemId":30022439,"solarSystemName":"M:KI0S","location":{"x":9710000000000000000,"y":-411000000000000000,"z":-6670000000000000000}},"30022440":{"solarSystemId":30022440,"solarSystemName":"G:EKA7","location":{"x":10800000000000000000,"y":-1200000000000000000,"z":-7000000000000000000}},"30022441":{"solarSystemId":30022441,"solarSystemName":"P:2RKS","location":{"x":9800000000000000000,"y":-39300000000000000,"z":-7120000000000000000}},"30022442":{"solarSystemId":30022442,"solarSystemName":"U:3747","location":{"x":11100000000000000000,"y":-1050000000000000000,"z":-6990000000000000000}},"30022443":{"solarSystemId":30022443,"solarSystemName":"B:2063","location":{"x":11000000000000000000,"y":-935000000000000000,"z":-6870000000000000000}},"30022444":{"solarSystemId":30022444,"solarSystemName":"U:VT84","location":{"x":9640000000000000000,"y":-236000000000000000,"z":-6730000000000000000}},"30022445":{"solarSystemId":30022445,"solarSystemName":"Y:1TV7","location":{"x":10300000000000000000,"y":-961000000000000000,"z":-7220000000000000000}},"30022446":{"solarSystemId":30022446,"solarSystemName":"Q:3IKA","location":{"x":8930000000000000000,"y":33400000000000000,"z":-8530000000000000000}},"30022447":{"solarSystemId":30022447,"solarSystemName":"D:1IO6","location":{"x":9230000000000000000,"y":-434000000000000000,"z":-9470000000000000000}},"30022448":{"solarSystemId":30022448,"solarSystemName":"F:22KE","location":{"x":9460000000000000000,"y":-261000000000000000,"z":-9880000000000000000}},"30022449":{"solarSystemId":30022449,"solarSystemName":"Q:1224","location":{"x":9630000000000000000,"y":251000000000000000,"z":-7480000000000000000}},"30022450":{"solarSystemId":30022450,"solarSystemName":"J:1V1A","location":{"x":9360000000000000000,"y":-134000000000000000,"z":-7570000000000000000}},"30022451":{"solarSystemId":30022451,"solarSystemName":"P:T6O7","location":{"x":9410000000000000000,"y":-498000000000000000,"z":-9110000000000000000}},"30022452":{"solarSystemId":30022452,"solarSystemName":"F:1EV6","location":{"x":9400000000000000000,"y":-531000000000000000,"z":-9670000000000000000}},"30022453":{"solarSystemId":30022453,"solarSystemName":"D:28EV","location":{"x":9640000000000000000,"y":-661000000000000000,"z":-8320000000000000000}},"30022454":{"solarSystemId":30022454,"solarSystemName":"H:34VT","location":{"x":9010000000000000000,"y":-335000000000000000,"z":-8420000000000000000}},"30022455":{"solarSystemId":30022455,"solarSystemName":"D:23K0","location":{"x":9560000000000000000,"y":-279000000000000000,"z":-8350000000000000000}},"30022456":{"solarSystemId":30022456,"solarSystemName":"D:L97N","location":{"x":8890000000000000000,"y":137000000000000000,"z":-8070000000000000000}},"30022457":{"solarSystemId":30022457,"solarSystemName":"U:10E3","location":{"x":9090000000000000000,"y":-499000000000000000,"z":-8260000000000000000}},"30022458":{"solarSystemId":30022458,"solarSystemName":"J:30AL","location":{"x":11500000000000000000,"y":-2680000000000000000,"z":-6880000000000000000}},"30022459":{"solarSystemId":30022459,"solarSystemName":"Y:2472","location":{"x":11900000000000000000,"y":-2440000000000000000,"z":-6640000000000000000}},"30022460":{"solarSystemId":30022460,"solarSystemName":"P:3T36","location":{"x":10300000000000000000,"y":-921000000000000000,"z":-8210000000000000000}},"30022461":{"solarSystemId":30022461,"solarSystemName":"G:26R9","location":{"x":11300000000000000000,"y":-1440000000000000000,"z":-7040000000000000000}},"30022462":{"solarSystemId":30022462,"solarSystemName":"H:4VL5","location":{"x":10900000000000000000,"y":-1800000000000000000,"z":-7500000000000000000}},"30022463":{"solarSystemId":30022463,"solarSystemName":"H:287N","location":{"x":10000000000000000000,"y":-2010000000000000000,"z":-8170000000000000000}},"30022464":{"solarSystemId":30022464,"solarSystemName":"Z:1RK8","location":{"x":11500000000000000000,"y":-1570000000000000000,"z":-6700000000000000000}},"30022465":{"solarSystemId":30022465,"solarSystemName":"Y:S81T","location":{"x":10900000000000000000,"y":-1840000000000000000,"z":-6280000000000000000}},"30022466":{"solarSystemId":30022466,"solarSystemName":"P:3SS4","location":{"x":11200000000000000000,"y":-1370000000000000000,"z":-7960000000000000000}},"30022467":{"solarSystemId":30022467,"solarSystemName":"G:33IT","location":{"x":10900000000000000000,"y":-2230000000000000000,"z":-6870000000000000000}},"30022468":{"solarSystemId":30022468,"solarSystemName":"P:1EE6","location":{"x":9850000000000000000,"y":20400000000000000,"z":-8990000000000000000}},"30022469":{"solarSystemId":30022469,"solarSystemName":"F:365K","location":{"x":10700000000000000000,"y":-501000000000000000,"z":-9110000000000000000}},"30022470":{"solarSystemId":30022470,"solarSystemName":"D:1VA2","location":{"x":10200000000000000000,"y":-196000000000000000,"z":-8420000000000000000}},"30022471":{"solarSystemId":30022471,"solarSystemName":"Q:ONS6","location":{"x":10200000000000000000,"y":-113000000000000000,"z":-8620000000000000000}},"30022472":{"solarSystemId":30022472,"solarSystemName":"D:KT9N","location":{"x":10400000000000000000,"y":-9430000000000000,"z":-9210000000000000000}},"30022473":{"solarSystemId":30022473,"solarSystemName":"G:1SO0","location":{"x":11000000000000000000,"y":-349000000000000000,"z":-8480000000000000000}},"30022474":{"solarSystemId":30022474,"solarSystemName":"Q:2NE9","location":{"x":10800000000000000000,"y":-152000000000000000,"z":-9320000000000000000}},"30022475":{"solarSystemId":30022475,"solarSystemName":"J:1V7S","location":{"x":11000000000000000000,"y":-78000000000000000,"z":-8610000000000000000}},"30022476":{"solarSystemId":30022476,"solarSystemName":"M:38I0","location":{"x":9680000000000000000,"y":-174000000000000000,"z":-9110000000000000000}},"30022477":{"solarSystemId":30022477,"solarSystemName":"M:30R8","location":{"x":11100000000000000000,"y":-436000000000000000,"z":-9270000000000000000}},"30022478":{"solarSystemId":30022478,"solarSystemName":"D:3T9A","location":{"x":11000000000000000000,"y":-143000000000000000,"z":-9580000000000000000}},"30022479":{"solarSystemId":30022479,"solarSystemName":"Q:3881","location":{"x":-1550000000000000000,"y":-1880000000000000000,"z":-15900000000000000000}},"30022480":{"solarSystemId":30022480,"solarSystemName":"Y:E8ER","location":{"x":-2030000000000000000,"y":-962000000000000000,"z":-15100000000000000000}},"30022481":{"solarSystemId":30022481,"solarSystemName":"J:4431","location":{"x":-2060000000000000000,"y":-330000000000000000,"z":-15900000000000000000}},"30022482":{"solarSystemId":30022482,"solarSystemName":"P:34R8","location":{"x":-1740000000000000000,"y":-849000000000000000,"z":-17000000000000000000}},"30022483":{"solarSystemId":30022483,"solarSystemName":"F:1SEO","location":{"x":-2260000000000000000,"y":-412000000000000000,"z":-17300000000000000000}},"30022484":{"solarSystemId":30022484,"solarSystemName":"D:KIOS","location":{"x":-1340000000000000000,"y":-360000000000000000,"z":-16600000000000000000}},"30022485":{"solarSystemId":30022485,"solarSystemName":"H:1O98","location":{"x":-344000000000000000,"y":-1500000000000000000,"z":-16900000000000000000}},"30022486":{"solarSystemId":30022486,"solarSystemName":"Y:1SE3","location":{"x":-2050000000000000000,"y":-877000000000000000,"z":-15900000000000000000}},"30022487":{"solarSystemId":30022487,"solarSystemName":"B:2R2K","location":{"x":-1140000000000000000,"y":-539000000000000000,"z":-16600000000000000000}},"30022488":{"solarSystemId":30022488,"solarSystemName":"Y:325I","location":{"x":-1820000000000000000,"y":-929000000000000000,"z":-15700000000000000000}},"30022489":{"solarSystemId":30022489,"solarSystemName":"Z:31SV","location":{"x":-1470000000000000000,"y":-175000000000000000,"z":-16200000000000000000}},"30022490":{"solarSystemId":30022490,"solarSystemName":"H:3ITL","location":{"x":535000000000000000,"y":-1340000000000000000,"z":-18000000000000000000}},"30022491":{"solarSystemId":30022491,"solarSystemName":"U:24KT","location":{"x":2390000000000000000,"y":-397000000000000000,"z":-19100000000000000000}},"30022492":{"solarSystemId":30022492,"solarSystemName":"D:3969","location":{"x":2220000000000000000,"y":-561000000000000000,"z":-18600000000000000000}},"30022493":{"solarSystemId":30022493,"solarSystemName":"H:EV5L","location":{"x":761000000000000000,"y":134000000000000000,"z":-18100000000000000000}},"30022494":{"solarSystemId":30022494,"solarSystemName":"Y:T637","location":{"x":1780000000000000000,"y":-573000000000000000,"z":-18300000000000000000}},"30022495":{"solarSystemId":30022495,"solarSystemName":"Y:31OL","location":{"x":2070000000000000000,"y":-704000000000000000,"z":-19000000000000000000}},"30022496":{"solarSystemId":30022496,"solarSystemName":"Q:2209","location":{"x":2630000000000000000,"y":-803000000000000000,"z":-18700000000000000000}},"30022497":{"solarSystemId":30022497,"solarSystemName":"Q:22IK","location":{"x":1270000000000000000,"y":-674000000000000000,"z":-18100000000000000000}},"30022498":{"solarSystemId":30022498,"solarSystemName":"Y:T607","location":{"x":536000000000000000,"y":-578000000000000000,"z":-17900000000000000000}},"30022499":{"solarSystemId":30022499,"solarSystemName":"U:213L","location":{"x":-2710000000000000000,"y":-969000000000000000,"z":-18000000000000000000}},"30022500":{"solarSystemId":30022500,"solarSystemName":"Y:2AAA","location":{"x":-2910000000000000000,"y":-883000000000000000,"z":-17800000000000000000}},"30022501":{"solarSystemId":30022501,"solarSystemName":"Q:372V","location":{"x":-2530000000000000000,"y":-1250000000000000000,"z":-15900000000000000000}},"30022502":{"solarSystemId":30022502,"solarSystemName":"Q:OTTR","location":{"x":-4530000000000000000,"y":-1060000000000000000,"z":-17800000000000000000}},"30022503":{"solarSystemId":30022503,"solarSystemName":"G:LO31","location":{"x":-2450000000000000000,"y":-460000000000000000,"z":-17100000000000000000}},"30022504":{"solarSystemId":30022504,"solarSystemName":"B:1EA5","location":{"x":-3500000000000000000,"y":-1720000000000000000,"z":-19400000000000000000}},"30022505":{"solarSystemId":30022505,"solarSystemName":"J:15VR","location":{"x":-4640000000000000000,"y":-808000000000000000,"z":-17000000000000000000}},"30022506":{"solarSystemId":30022506,"solarSystemName":"B:309N","location":{"x":-1090000000000000000,"y":-839000000000000000,"z":-19300000000000000000}},"30022507":{"solarSystemId":30022507,"solarSystemName":"J:27TA","location":{"x":-2170000000000000000,"y":-1280000000000000000,"z":-18800000000000000000}},"30022508":{"solarSystemId":30022508,"solarSystemName":"G:27SN","location":{"x":-917000000000000000,"y":-221000000000000000,"z":-20800000000000000000}},"30022509":{"solarSystemId":30022509,"solarSystemName":"U:257K","location":{"x":-331000000000000000,"y":279000000000000000,"z":-18800000000000000000}},"30022510":{"solarSystemId":30022510,"solarSystemName":"Y:27IK","location":{"x":-813000000000000000,"y":443000000000000000,"z":-19000000000000000000}},"30022511":{"solarSystemId":30022511,"solarSystemName":"Y:3V15","location":{"x":24300000000000000,"y":-409000000000000000,"z":-19900000000000000000}},"30022512":{"solarSystemId":30022512,"solarSystemName":"Z:2L07","location":{"x":-265000000000000000,"y":-345000000000000000,"z":-20100000000000000000}},"30022513":{"solarSystemId":30022513,"solarSystemName":"H:304S","location":{"x":-2150000000000000000,"y":-377000000000000000,"z":-20300000000000000000}},"30022514":{"solarSystemId":30022514,"solarSystemName":"G:LTKL","location":{"x":-38700000000000000,"y":-563000000000000000,"z":-20700000000000000000}},"30022515":{"solarSystemId":30022515,"solarSystemName":"G:E9V5","location":{"x":-1050000000000000000,"y":-557000000000000000,"z":-19800000000000000000}},"30022516":{"solarSystemId":30022516,"solarSystemName":"P:21NE","location":{"x":-3590000000000000000,"y":441000000000000000,"z":-20300000000000000000}},"30022517":{"solarSystemId":30022517,"solarSystemName":"Z:11OI","location":{"x":-4380000000000000000,"y":164000000000000000,"z":-22200000000000000000}},"30022518":{"solarSystemId":30022518,"solarSystemName":"Y:SKL6","location":{"x":-4810000000000000000,"y":78900000000000000,"z":-21200000000000000000}},"30022519":{"solarSystemId":30022519,"solarSystemName":"U:2443","location":{"x":-4240000000000000000,"y":-895000000000000000,"z":-22400000000000000000}},"30022520":{"solarSystemId":30022520,"solarSystemName":"J:22NR","location":{"x":-3940000000000000000,"y":-517000000000000000,"z":-22900000000000000000}},"30022521":{"solarSystemId":30022521,"solarSystemName":"Z:3N42","location":{"x":-3850000000000000000,"y":-91100000000000000,"z":-20200000000000000000}},"30022522":{"solarSystemId":30022522,"solarSystemName":"H:1T1V","location":{"x":-3970000000000000000,"y":-851000000000000000,"z":-19900000000000000000}},"30022523":{"solarSystemId":30022523,"solarSystemName":"Y:1996","location":{"x":-3510000000000000000,"y":-685000000000000000,"z":-22200000000000000000}},"30022524":{"solarSystemId":30022524,"solarSystemName":"M:EAV4","location":{"x":-1410000000000000000,"y":1140000000000000000,"z":-16000000000000000000}},"30022525":{"solarSystemId":30022525,"solarSystemName":"U:1NT1","location":{"x":-1160000000000000000,"y":892000000000000000,"z":-15900000000000000000}},"30022526":{"solarSystemId":30022526,"solarSystemName":"Z:1826","location":{"x":-908000000000000000,"y":784000000000000000,"z":-14700000000000000000}},"30022527":{"solarSystemId":30022527,"solarSystemName":"Z:233T","location":{"x":-2010000000000000000,"y":337000000000000000,"z":-15300000000000000000}},"30022528":{"solarSystemId":30022528,"solarSystemName":"Y:1ATL","location":{"x":-1400000000000000000,"y":1430000000000000000,"z":-16200000000000000000}},"30022529":{"solarSystemId":30022529,"solarSystemName":"Q:1TR6","location":{"x":-2100000000000000000,"y":1710000000000000000,"z":-15200000000000000000}},"30022530":{"solarSystemId":30022530,"solarSystemName":"U:159I","location":{"x":-1140000000000000000,"y":2150000000000000000,"z":-16300000000000000000}},"30022531":{"solarSystemId":30022531,"solarSystemName":"D:1OVK","location":{"x":-584000000000000000,"y":541000000000000000,"z":-15300000000000000000}},"30022532":{"solarSystemId":30022532,"solarSystemName":"M:14R5","location":{"x":-1490000000000000000,"y":911000000000000000,"z":-14500000000000000000}},"30022533":{"solarSystemId":30022533,"solarSystemName":"Z:10A6","location":{"x":-1200000000000000000,"y":1450000000000000000,"z":-15900000000000000000}},"30022534":{"solarSystemId":30022534,"solarSystemName":"B:3AA9","location":{"x":-3540000000000000000,"y":-563000000000000000,"z":-19400000000000000000}},"30022535":{"solarSystemId":30022535,"solarSystemName":"U:1T88","location":{"x":-3470000000000000000,"y":-733000000000000000,"z":-17800000000000000000}},"30022536":{"solarSystemId":30022536,"solarSystemName":"J:3377","location":{"x":-4020000000000000000,"y":-435000000000000000,"z":-19500000000000000000}},"30022537":{"solarSystemId":30022537,"solarSystemName":"M:ES1A","location":{"x":-2610000000000000000,"y":-879000000000000000,"z":-18500000000000000000}},"30022538":{"solarSystemId":30022538,"solarSystemName":"F:4O1L","location":{"x":-3940000000000000000,"y":-395000000000000000,"z":-19700000000000000000}},"30022539":{"solarSystemId":30022539,"solarSystemName":"P:S6LR","location":{"x":-4610000000000000000,"y":-756000000000000000,"z":-18800000000000000000}},"30022540":{"solarSystemId":30022540,"solarSystemName":"B:N32T","location":{"x":-4400000000000000000,"y":21500000000000000,"z":-18700000000000000000}},"30022541":{"solarSystemId":30022541,"solarSystemName":"D:1RKR","location":{"x":-3580000000000000000,"y":-1010000000000000000,"z":-19400000000000000000}},"30022542":{"solarSystemId":30022542,"solarSystemName":"P:1V8L","location":{"x":-3590000000000000000,"y":-478000000000000000,"z":-18700000000000000000}},"30022543":{"solarSystemId":30022543,"solarSystemName":"F:I74V","location":{"x":-803000000000000000,"y":-400000000000000000,"z":-17100000000000000000}},"30022544":{"solarSystemId":30022544,"solarSystemName":"G:3T5T","location":{"x":-1140000000000000000,"y":-170000000000000000,"z":-18600000000000000000}},"30022545":{"solarSystemId":30022545,"solarSystemName":"D:2371","location":{"x":-1220000000000000000,"y":-369000000000000000,"z":-17800000000000000000}},"30022546":{"solarSystemId":30022546,"solarSystemName":"G:2O08","location":{"x":-994000000000000000,"y":-306000000000000000,"z":-17200000000000000000}},"30022547":{"solarSystemId":30022547,"solarSystemName":"D:1538","location":{"x":-740000000000000000,"y":-579000000000000000,"z":-17600000000000000000}},"30022548":{"solarSystemId":30022548,"solarSystemName":"Y:4226","location":{"x":-922000000000000000,"y":-478000000000000000,"z":-18100000000000000000}},"30022549":{"solarSystemId":30022549,"solarSystemName":"F:3SL8","location":{"x":-1680000000000000000,"y":-630000000000000000,"z":-18600000000000000000}},"30022550":{"solarSystemId":30022550,"solarSystemName":"U:3R6I","location":{"x":-1470000000000000000,"y":-367000000000000000,"z":-18900000000000000000}},"30022551":{"solarSystemId":30022551,"solarSystemName":"D:33I6","location":{"x":-983000000000000000,"y":-484000000000000000,"z":-17900000000000000000}},"30022552":{"solarSystemId":30022552,"solarSystemName":"I.30R.XE1","location":{"x":15000000000000000000,"y":-71900000000000000,"z":-1010000000000000000}},"30022553":{"solarSystemId":30022553,"solarSystemName":"A.EHN.XK3","location":{"x":14700000000000000000,"y":-143000000000000000,"z":-1970000000000000000}},"30022554":{"solarSystemId":30022554,"solarSystemName":"N.0KN.P25","location":{"x":14900000000000000000,"y":-183000000000000000,"z":-1270000000000000000}},"30022555":{"solarSystemId":30022555,"solarSystemName":"R.3VR.LPR","location":{"x":15700000000000000000,"y":-489000000000000000,"z":-884000000000000000}},"30022556":{"solarSystemId":30022556,"solarSystemName":"E.LZN.R02","location":{"x":14900000000000000000,"y":-72500000000000000,"z":-1640000000000000000}},"30022557":{"solarSystemId":30022557,"solarSystemName":"A.YFL.221","location":{"x":16900000000000000000,"y":-1230000000000000000,"z":-1530000000000000000}},"30022558":{"solarSystemId":30022558,"solarSystemName":"S.8KN.RS1","location":{"x":14900000000000000000,"y":-47800000000000000,"z":-886000000000000000}},"30022559":{"solarSystemId":30022559,"solarSystemName":"N.9LL.N39","location":{"x":16700000000000000000,"y":-328000000000000000,"z":-1880000000000000000}},"30022560":{"solarSystemId":30022560,"solarSystemName":"H.KZR.FN1","location":{"x":16000000000000000000,"y":-50300000000000000,"z":-1780000000000000000}},"30022561":{"solarSystemId":30022561,"solarSystemName":"U.3CR.WT2","location":{"x":15600000000000000000,"y":2740000000000000000,"z":-724000000000000000}},"30022562":{"solarSystemId":30022562,"solarSystemName":"H.ZEL.7YC","location":{"x":17300000000000000000,"y":-607000000000000000,"z":-1450000000000000000}},"30022563":{"solarSystemId":30022563,"solarSystemName":"R.DPL.1K2","location":{"x":16800000000000000000,"y":106000000000000000,"z":-225000000000000000}},"30022564":{"solarSystemId":30022564,"solarSystemName":"U.T6L.RW2","location":{"x":16400000000000000000,"y":105000000000000000,"z":-639000000000000000}},"30022565":{"solarSystemId":30022565,"solarSystemName":"A.C7D.B45","location":{"x":17600000000000000000,"y":-185000000000000000,"z":-841000000000000000}},"30022566":{"solarSystemId":30022566,"solarSystemName":"S.R1C.W35","location":{"x":18500000000000000000,"y":-185000000000000000,"z":-317000000000000000}},"30022567":{"solarSystemId":30022567,"solarSystemName":"S.7YD.T52","location":{"x":18300000000000000000,"y":-78100000000000000,"z":-1760000000000000000}},"30022568":{"solarSystemId":30022568,"solarSystemName":"S.R1D.ZZ2","location":{"x":17300000000000000000,"y":105000000000000000,"z":-1540000000000000000}},"30022569":{"solarSystemId":30022569,"solarSystemName":"U.8QL.DLP","location":{"x":16900000000000000000,"y":665000000000000000,"z":-1500000000000000000}},"30022570":{"solarSystemId":30022570,"solarSystemName":"C.X1D.FB9","location":{"x":17400000000000000000,"y":-350000000000000000,"z":-648000000000000000}},"30022571":{"solarSystemId":30022571,"solarSystemName":"T.KST.801","location":{"x":13100000000000000000,"y":1160000000000000000,"z":-2240000000000000000}},"30022572":{"solarSystemId":30022572,"solarSystemName":"I.D9N.KZ6","location":{"x":14200000000000000000,"y":-249000000000000000,"z":-1570000000000000000}},"30022573":{"solarSystemId":30022573,"solarSystemName":"C.2BT.V14","location":{"x":13500000000000000000,"y":-146000000000000000,"z":-1720000000000000000}},"30022574":{"solarSystemId":30022574,"solarSystemName":"R.TGN.KQR","location":{"x":14700000000000000000,"y":492000000000000000,"z":-1810000000000000000}},"30022575":{"solarSystemId":30022575,"solarSystemName":"H.DWT.K04","location":{"x":13700000000000000000,"y":-145000000000000000,"z":-2270000000000000000}},"30022576":{"solarSystemId":30022576,"solarSystemName":"A.BQS.ZV5","location":{"x":12300000000000000000,"y":-203000000000000000,"z":-1690000000000000000}},"30022577":{"solarSystemId":30022577,"solarSystemName":"D.33N.LY6","location":{"x":13900000000000000000,"y":247000000000000000,"z":-2020000000000000000}},"30022578":{"solarSystemId":30022578,"solarSystemName":"T.3QT.4Y1","location":{"x":13400000000000000000,"y":-66600000000000000,"z":-2370000000000000000}},"30022579":{"solarSystemId":30022579,"solarSystemName":"U.CRT.596","location":{"x":13200000000000000000,"y":227000000000000000,"z":-1860000000000000000}},"30022580":{"solarSystemId":30022580,"solarSystemName":"A.3NN.YB1","location":{"x":14300000000000000000,"y":61800000000000000,"z":-1650000000000000000}},"30022581":{"solarSystemId":30022581,"solarSystemName":"C.B2T.HE6","location":{"x":12800000000000000000,"y":-252000000000000000,"z":-2680000000000000000}},"30022582":{"solarSystemId":30022582,"solarSystemName":"R.M9R.SL8","location":{"x":15300000000000000000,"y":-304000000000000000,"z":-3390000000000000000}},"30022583":{"solarSystemId":30022583,"solarSystemName":"R.KGR.W73","location":{"x":15900000000000000000,"y":117000000000000000,"z":-3700000000000000000}},"30022584":{"solarSystemId":30022584,"solarSystemName":"D.S8L.NT6","location":{"x":16400000000000000000,"y":-229000000000000000,"z":-3620000000000000000}},"30022585":{"solarSystemId":30022585,"solarSystemName":"I.7ZL.5NP","location":{"x":17200000000000000000,"y":-662000000000000000,"z":-4320000000000000000}},"30022586":{"solarSystemId":30022586,"solarSystemName":"D.Q9L.P94","location":{"x":16500000000000000000,"y":-155000000000000000,"z":-3390000000000000000}},"30022587":{"solarSystemId":30022587,"solarSystemName":"N.W2L.XS3","location":{"x":16200000000000000000,"y":120000000000000000,"z":-4660000000000000000}},"30022588":{"solarSystemId":30022588,"solarSystemName":"H.JDL.VFD","location":{"x":16700000000000000000,"y":565000000000000000,"z":-2520000000000000000}},"30022589":{"solarSystemId":30022589,"solarSystemName":"R.LYL.VQD","location":{"x":17100000000000000000,"y":-564000000000000000,"z":-4510000000000000000}},"30022590":{"solarSystemId":30022590,"solarSystemName":"E.KEL.4YC","location":{"x":17300000000000000000,"y":-19000000000000000,"z":-4420000000000000000}},"30022591":{"solarSystemId":30022591,"solarSystemName":"E.64L.XPG","location":{"x":16300000000000000000,"y":-850000000000000000,"z":-4270000000000000000}},"30022592":{"solarSystemId":30022592,"solarSystemName":"N.MXN.275","location":{"x":14800000000000000000,"y":-188000000000000000,"z":-2850000000000000000}},"30022593":{"solarSystemId":30022593,"solarSystemName":"T.X3N.ZEN","location":{"x":14000000000000000000,"y":-468000000000000000,"z":-2830000000000000000}},"30022594":{"solarSystemId":30022594,"solarSystemName":"D.XHN.Y04","location":{"x":14700000000000000000,"y":-145000000000000000,"z":-2550000000000000000}},"30022595":{"solarSystemId":30022595,"solarSystemName":"L.QFN.6S2","location":{"x":14600000000000000000,"y":2610000000000000,"z":-2690000000000000000}},"30022596":{"solarSystemId":30022596,"solarSystemName":"N.EJN.1T1","location":{"x":14800000000000000000,"y":48500000000000000,"z":-2460000000000000000}},"30022597":{"solarSystemId":30022597,"solarSystemName":"E.YVN.K41","location":{"x":14600000000000000000,"y":-41600000000000000,"z":-3310000000000000000}},"30022598":{"solarSystemId":30022598,"solarSystemName":"A.KYT.HV3","location":{"x":13700000000000000000,"y":-130000000000000000,"z":-2910000000000000000}},"30022599":{"solarSystemId":30022599,"solarSystemName":"I.KHN.Y93","location":{"x":14700000000000000000,"y":-119000000000000000,"z":-3130000000000000000}},"30022600":{"solarSystemId":30022600,"solarSystemName":"M.9CN.BX1","location":{"x":14400000000000000000,"y":-66100000000000000,"z":-2910000000000000000}},"30022601":{"solarSystemId":30022601,"solarSystemName":"M.FMN.YS8","location":{"x":14500000000000000000,"y":-300000000000000000,"z":-2260000000000000000}},"30022602":{"solarSystemId":30022602,"solarSystemName":"I.S5N.0P5","location":{"x":14000000000000000000,"y":-200000000000000000,"z":243000000000000000}},"30022603":{"solarSystemId":30022603,"solarSystemName":"L.YGT.CQ1","location":{"x":13500000000000000000,"y":59100000000000000,"z":-234000000000000000}},"30022604":{"solarSystemId":30022604,"solarSystemName":"D.BCN.WY5","location":{"x":14400000000000000000,"y":-212000000000000000,"z":-761000000000000000}},"30022605":{"solarSystemId":30022605,"solarSystemName":"R.VHT.ZS6","location":{"x":13600000000000000000,"y":-228000000000000000,"z":-573000000000000000}},"30022606":{"solarSystemId":30022606,"solarSystemName":"M.GXS.JX2","location":{"x":12500000000000000000,"y":102000000000000000,"z":-395000000000000000}},"30022607":{"solarSystemId":30022607,"solarSystemName":"I.D1N.3T4","location":{"x":13900000000000000000,"y":-157000000000000000,"z":499000000000000000}},"30022608":{"solarSystemId":30022608,"solarSystemName":"I.NPN.K8G","location":{"x":14500000000000000000,"y":-819069000000000,"z":-239000000000000000}},"30022609":{"solarSystemId":30022609,"solarSystemName":"T.YYT.8RJ","location":{"x":13700000000000000000,"y":-916000000000000000,"z":-88600000000000000}},"30022610":{"solarSystemId":30022610,"solarSystemName":"N.H3T.HS7","location":{"x":12800000000000000000,"y":-264000000000000000,"z":-1050000000000000000}},"30022611":{"solarSystemId":30022611,"solarSystemName":"L.DDN.HL8","location":{"x":14400000000000000000,"y":-305000000000000000,"z":41700000000000000}},"30022612":{"solarSystemId":30022612,"solarSystemName":"S.4WT.DH2","location":{"x":13700000000000000000,"y":-99600000000000000,"z":-62900000000000000}},"30022613":{"solarSystemId":30022613,"solarSystemName":"S.4XT.495","location":{"x":13600000000000000000,"y":-190000000000000000,"z":-1380000000000000000}},"30022614":{"solarSystemId":30022614,"solarSystemName":"E.G5T.JQX","location":{"x":12900000000000000000,"y":-30000000000000000,"z":-1210000000000000}},"30022615":{"solarSystemId":30022615,"solarSystemName":"D.XDR.431","location":{"x":15600000000000000000,"y":-39600000000000000,"z":-981000000000000000}},"30022616":{"solarSystemId":30022616,"solarSystemName":"R.T5R.FQT","location":{"x":15200000000000000000,"y":-420000000000000000,"z":-37000000000000000}},"30022617":{"solarSystemId":30022617,"solarSystemName":"N.F9R.RXJ","location":{"x":15300000000000000000,"y":29100000000000000,"z":-66800000000000000}},"30022618":{"solarSystemId":30022618,"solarSystemName":"I.ENR.X81","location":{"x":15500000000000000000,"y":-46000000000000000,"z":-202000000000000000}},"30022619":{"solarSystemId":30022619,"solarSystemName":"U.BFR.M6T","location":{"x":15800000000000000000,"y":-404000000000000000,"z":-721000000000000000}},"30022620":{"solarSystemId":30022620,"solarSystemName":"T.P3R.F12","location":{"x":15100000000000000000,"y":-73900000000000000,"z":-440000000000000000}},"30022621":{"solarSystemId":30022621,"solarSystemName":"T.N3R.7X2","location":{"x":15100000000000000000,"y":102000000000000000,"z":-465000000000000000}},"30022622":{"solarSystemId":30022622,"solarSystemName":"A.EKN.J02","location":{"x":15000000000000000000,"y":-72900000000000000,"z":-119000000000000000}},"30022623":{"solarSystemId":30022623,"solarSystemName":"C.V4R.QG1","location":{"x":15200000000000000000,"y":-62600000000000000,"z":-4630000000000000}},"30022624":{"solarSystemId":30022624,"solarSystemName":"U.93R.6KS","location":{"x":15100000000000000000,"y":-394000000000000000,"z":-2250000000000000000}},"30022625":{"solarSystemId":30022625,"solarSystemName":"A.ECR.L31","location":{"x":15600000000000000000,"y":39900000000000000,"z":-2300000000000000000}},"30022626":{"solarSystemId":30022626,"solarSystemName":"U.TTR.J44","location":{"x":15400000000000000000,"y":-150000000000000000,"z":-3240000000000000000}},"30022627":{"solarSystemId":30022627,"solarSystemName":"E.XLR.2T1","location":{"x":15500000000000000000,"y":-48500000000000000,"z":-2010000000000000000}},"30022628":{"solarSystemId":30022628,"solarSystemName":"A.NDR.9JL","location":{"x":15500000000000000000,"y":-533000000000000000,"z":-2470000000000000000}},"30022629":{"solarSystemId":30022629,"solarSystemName":"H.2KR.DN9","location":{"x":16100000000000000000,"y":-338000000000000000,"z":-2900000000000000000}},"30022630":{"solarSystemId":30022630,"solarSystemName":"S.KTR.WZ9","location":{"x":15400000000000000000,"y":-357000000000000000,"z":-2450000000000000000}},"30022631":{"solarSystemId":30022631,"solarSystemName":"S.9NR.1E4","location":{"x":15400000000000000000,"y":-179000000000000000,"z":-3150000000000000000}},"30022632":{"solarSystemId":30022632,"solarSystemName":"D.H1R.H06","location":{"x":15100000000000000000,"y":-217000000000000000,"z":-2830000000000000000}},"30022633":{"solarSystemId":30022633,"solarSystemName":"A.JSD.CYN","location":{"x":17700000000000000000,"y":-463000000000000000,"z":-3120000000000000000}},"30022634":{"solarSystemId":30022634,"solarSystemName":"D.CZD.0XV","location":{"x":18300000000000000000,"y":-714000000000000000,"z":-3650000000000000000}},"30022635":{"solarSystemId":30022635,"solarSystemName":"I.RCD.JT3","location":{"x":17900000000000000000,"y":121000000000000000,"z":-3200000000000000000}},"30022636":{"solarSystemId":30022636,"solarSystemName":"R.ESD.BB8","location":{"x":17700000000000000000,"y":-314000000000000000,"z":-2600000000000000000}},"30022637":{"solarSystemId":30022637,"solarSystemName":"N.4ZL.99N","location":{"x":17200000000000000000,"y":-443000000000000000,"z":-2350000000000000000}},"30022638":{"solarSystemId":30022638,"solarSystemName":"I.2LD.L1B","location":{"x":17800000000000000000,"y":794000000000000000,"z":-2010000000000000000}},"30022639":{"solarSystemId":30022639,"solarSystemName":"T.W9D.V9N","location":{"x":17700000000000000000,"y":-443000000000000000,"z":-2760000000000000000}},"30022640":{"solarSystemId":30022640,"solarSystemName":"L.6ND.8F1","location":{"x":17700000000000000000,"y":-60000000000000000,"z":-2280000000000000000}},"30022641":{"solarSystemId":30022641,"solarSystemName":"I.WSD.93D","location":{"x":17700000000000000000,"y":-544000000000000000,"z":-3300000000000000000}},"30022642":{"solarSystemId":30022642,"solarSystemName":"Z:513N","location":{"x":6510000000000000000,"y":-241000000000000000,"z":-14000000000000000000}},"30022643":{"solarSystemId":30022643,"solarSystemName":"Y:2R4S","location":{"x":6280000000000000000,"y":-300000000000000000,"z":-14300000000000000000}},"30022644":{"solarSystemId":30022644,"solarSystemName":"B:14O4","location":{"x":6890000000000000000,"y":-425000000000000000,"z":-13500000000000000000}},"30022645":{"solarSystemId":30022645,"solarSystemName":"Q:3OST","location":{"x":5910000000000000000,"y":-324000000000000000,"z":-13800000000000000000}},"30022646":{"solarSystemId":30022646,"solarSystemName":"B:2AIA","location":{"x":6130000000000000000,"y":-365000000000000000,"z":-14700000000000000000}},"30022647":{"solarSystemId":30022647,"solarSystemName":"D:35KL","location":{"x":6880000000000000000,"y":-283000000000000000,"z":-13600000000000000000}},"30022648":{"solarSystemId":30022648,"solarSystemName":"Z:25OK","location":{"x":5950000000000000000,"y":-414000000000000000,"z":-14600000000000000000}},"30022649":{"solarSystemId":30022649,"solarSystemName":"Q:1EKA","location":{"x":6280000000000000000,"y":-137000000000000000,"z":-14300000000000000000}},"30022650":{"solarSystemId":30022650,"solarSystemName":"Y:SSE8","location":{"x":6640000000000000000,"y":-402000000000000000,"z":-13600000000000000000}},"30022651":{"solarSystemId":30022651,"solarSystemName":"G:KL21","location":{"x":8010000000000000000,"y":33500000000000000,"z":-13900000000000000000}},"30022652":{"solarSystemId":30022652,"solarSystemName":"J:14S4","location":{"x":7810000000000000000,"y":12300000000000000,"z":-14900000000000000000}},"30022653":{"solarSystemId":30022653,"solarSystemName":"U:261V","location":{"x":6930000000000000000,"y":536000000000000000,"z":-14000000000000000000}},"30022654":{"solarSystemId":30022654,"solarSystemName":"B:I499","location":{"x":7160000000000000000,"y":154000000000000000,"z":-14800000000000000000}},"30022655":{"solarSystemId":30022655,"solarSystemName":"D:1R76","location":{"x":6570000000000000000,"y":-119000000000000000,"z":-15000000000000000000}},"30022656":{"solarSystemId":30022656,"solarSystemName":"F:1RAS","location":{"x":7390000000000000000,"y":-181000000000000000,"z":-15100000000000000000}},"30022657":{"solarSystemId":30022657,"solarSystemName":"M:33KL","location":{"x":8130000000000000000,"y":312000000000000000,"z":-14300000000000000000}},"30022658":{"solarSystemId":30022658,"solarSystemName":"F:O573","location":{"x":6330000000000000000,"y":-34100000000000000,"z":-14900000000000000000}},"30022659":{"solarSystemId":30022659,"solarSystemName":"M:30L8","location":{"x":7470000000000000000,"y":2070000000000000,"z":-14000000000000000000}},"30022660":{"solarSystemId":30022660,"solarSystemName":"H:2T95","location":{"x":6970000000000000000,"y":-486000000000000000,"z":-11700000000000000000}},"30022661":{"solarSystemId":30022661,"solarSystemName":"P:1ERT","location":{"x":5960000000000000000,"y":-244000000000000000,"z":-12100000000000000000}},"30022662":{"solarSystemId":30022662,"solarSystemName":"Z:2IOK","location":{"x":6460000000000000000,"y":-295000000000000000,"z":-12700000000000000000}},"30022663":{"solarSystemId":30022663,"solarSystemName":"Y:3I53","location":{"x":6870000000000000000,"y":215000000000000000,"z":-12600000000000000000}},"30022664":{"solarSystemId":30022664,"solarSystemName":"Z:2092","location":{"x":5690000000000000000,"y":45400000000000000,"z":-12200000000000000000}},"30022665":{"solarSystemId":30022665,"solarSystemName":"M:2AN4","location":{"x":6270000000000000000,"y":-229000000000000000,"z":-12700000000000000000}},"30022666":{"solarSystemId":30022666,"solarSystemName":"D:17EV","location":{"x":7320000000000000000,"y":-159000000000000000,"z":-12400000000000000000}},"30022667":{"solarSystemId":30022667,"solarSystemName":"J:304K","location":{"x":7340000000000000000,"y":1100000000000000000,"z":-13000000000000000000}},"30022668":{"solarSystemId":30022668,"solarSystemName":"J:3EAA","location":{"x":6970000000000000000,"y":54500000000000000,"z":-12200000000000000000}},"30022669":{"solarSystemId":30022669,"solarSystemName":"H:31OE","location":{"x":6880000000000000000,"y":429000000000000000,"z":-15400000000000000000}},"30022670":{"solarSystemId":30022670,"solarSystemName":"D:1S59","location":{"x":6680000000000000000,"y":286000000000000000,"z":-16100000000000000000}},"30022671":{"solarSystemId":30022671,"solarSystemName":"M:27S6","location":{"x":6670000000000000000,"y":-79200000000000000,"z":-15500000000000000000}},"30022672":{"solarSystemId":30022672,"solarSystemName":"U:3TER","location":{"x":6360000000000000000,"y":216000000000000000,"z":-16000000000000000000}},"30022673":{"solarSystemId":30022673,"solarSystemName":"P:38KS","location":{"x":6250000000000000000,"y":-162000000000000000,"z":-15000000000000000000}},"30022674":{"solarSystemId":30022674,"solarSystemName":"M:245V","location":{"x":6860000000000000000,"y":-924000000000000000,"z":-15000000000000000000}},"30022675":{"solarSystemId":30022675,"solarSystemName":"D:1568","location":{"x":6890000000000000000,"y":226000000000000000,"z":-15300000000000000000}},"30022676":{"solarSystemId":30022676,"solarSystemName":"B:2AVO","location":{"x":6750000000000000000,"y":-204000000000000000,"z":-15500000000000000000}},"30022677":{"solarSystemId":30022677,"solarSystemName":"J:2ARS","location":{"x":7880000000000000000,"y":-86900000000000000,"z":-15800000000000000000}},"30022678":{"solarSystemId":30022678,"solarSystemName":"P:236R","location":{"x":7730000000000000000,"y":120000000000000000,"z":-16100000000000000000}},"30022679":{"solarSystemId":30022679,"solarSystemName":"H:1RSA","location":{"x":7040000000000000000,"y":-1170000000000000000,"z":-16000000000000000000}},"30022680":{"solarSystemId":30022680,"solarSystemName":"Z:1VOS","location":{"x":7560000000000000000,"y":-666000000000000000,"z":-16100000000000000000}},"30022681":{"solarSystemId":30022681,"solarSystemName":"F:2S35","location":{"x":7760000000000000000,"y":-51900000000000000,"z":-15700000000000000000}},"30022682":{"solarSystemId":30022682,"solarSystemName":"M:2I2L","location":{"x":7390000000000000000,"y":35400000000000000,"z":-16100000000000000000}},"30022683":{"solarSystemId":30022683,"solarSystemName":"B:2L34","location":{"x":7750000000000000000,"y":-239000000000000000,"z":-15800000000000000000}},"30022684":{"solarSystemId":30022684,"solarSystemName":"Q:T7ER","location":{"x":8160000000000000000,"y":-394000000000000000,"z":-16200000000000000000}},"30022685":{"solarSystemId":30022685,"solarSystemName":"Q:26A2","location":{"x":9520000000000000000,"y":-408000000000000000,"z":-15200000000000000000}},"30022686":{"solarSystemId":30022686,"solarSystemName":"F:1063","location":{"x":9160000000000000000,"y":-695000000000000000,"z":-14900000000000000000}},"30022687":{"solarSystemId":30022687,"solarSystemName":"P:3TVA","location":{"x":8500000000000000000,"y":-471000000000000000,"z":-14900000000000000000}},"30022688":{"solarSystemId":30022688,"solarSystemName":"Z:1KEI","location":{"x":10000000000000000000,"y":-225000000000000000,"z":-15800000000000000000}},"30022689":{"solarSystemId":30022689,"solarSystemName":"U:1VT4","location":{"x":9570000000000000000,"y":270000000000000000,"z":-14500000000000000000}},"30022690":{"solarSystemId":30022690,"solarSystemName":"P:1L9N","location":{"x":10000000000000000000,"y":352000000000000000,"z":-14500000000000000000}},"30022691":{"solarSystemId":30022691,"solarSystemName":"J:E3O9","location":{"x":8970000000000000000,"y":137000000000000000,"z":-14800000000000000000}},"30022692":{"solarSystemId":30022692,"solarSystemName":"G:1344","location":{"x":8670000000000000000,"y":-1480000000000000000,"z":-15700000000000000000}},"30022693":{"solarSystemId":30022693,"solarSystemName":"Q:2910","location":{"x":7810000000000000000,"y":-849000000000000000,"z":-12600000000000000000}},"30022694":{"solarSystemId":30022694,"solarSystemName":"G:11K0","location":{"x":7720000000000000000,"y":-4350000000000000,"z":-12600000000000000000}},"30022695":{"solarSystemId":30022695,"solarSystemName":"U:2R56","location":{"x":7650000000000000000,"y":58600000000000000,"z":-12700000000000000000}},"30022696":{"solarSystemId":30022696,"solarSystemName":"J:3RNS","location":{"x":7550000000000000000,"y":-91300000000000000,"z":-12900000000000000000}},"30022697":{"solarSystemId":30022697,"solarSystemName":"Y:3VO9","location":{"x":8700000000000000000,"y":50900000000000000,"z":-13200000000000000000}},"30022698":{"solarSystemId":30022698,"solarSystemName":"D:I1N1","location":{"x":8510000000000000000,"y":7230000000000000,"z":-13100000000000000000}},"30022699":{"solarSystemId":30022699,"solarSystemName":"D:N35T","location":{"x":8070000000000000000,"y":-245000000000000000,"z":-13000000000000000000}},"30022700":{"solarSystemId":30022700,"solarSystemName":"F:16V2","location":{"x":7950000000000000000,"y":-275000000000000000,"z":-12700000000000000000}},"30022701":{"solarSystemId":30022701,"solarSystemName":"M:OR55","location":{"x":7500000000000000000,"y":-508000000000000000,"z":-13200000000000000000}},"30022702":{"solarSystemId":30022702,"solarSystemName":"J:3O7N","location":{"x":6950000000000000000,"y":-1980000000000000000,"z":-12600000000000000000}},"30022703":{"solarSystemId":30022703,"solarSystemName":"Z:3ENR","location":{"x":8450000000000000000,"y":-1180000000000000000,"z":-13500000000000000000}},"30022704":{"solarSystemId":30022704,"solarSystemName":"G:T2RK","location":{"x":8060000000000000000,"y":-1580000000000000000,"z":-16200000000000000000}},"30022705":{"solarSystemId":30022705,"solarSystemName":"B:2258","location":{"x":6570000000000000000,"y":-1170000000000000000,"z":-14600000000000000000}},"30022706":{"solarSystemId":30022706,"solarSystemName":"F:2719","location":{"x":7820000000000000000,"y":-163000000000000000,"z":-15200000000000000000}},"30022707":{"solarSystemId":30022707,"solarSystemName":"G:3IE4","location":{"x":7510000000000000000,"y":-1320000000000000000,"z":-12700000000000000000}},"30022708":{"solarSystemId":30022708,"solarSystemName":"P:34K9","location":{"x":7440000000000000000,"y":-1260000000000000000,"z":-13100000000000000000}},"30022709":{"solarSystemId":30022709,"solarSystemName":"G:1TVO","location":{"x":7500000000000000000,"y":-849000000000000000,"z":-14000000000000000000}},"30022710":{"solarSystemId":30022710,"solarSystemName":"S.ZL4.8Q7","location":{"x":5150000000000000000,"y":-275000000000000000,"z":-19300000000000000000}},"30022711":{"solarSystemId":30022711,"solarSystemName":"S.1Y3.KPN","location":{"x":4430000000000000000,"y":-454000000000000000,"z":-18800000000000000000}},"30022712":{"solarSystemId":30022712,"solarSystemName":"E.RL4.H2H","location":{"x":5130000000000000000,"y":-868000000000000000,"z":-19300000000000000000}},"30022713":{"solarSystemId":30022713,"solarSystemName":"A.X14.57P","location":{"x":4680000000000000000,"y":-657000000000000000,"z":-19400000000000000000}},"30022714":{"solarSystemId":30022714,"solarSystemName":"N.N84.BS1","location":{"x":4910000000000000000,"y":-1540000000000000000,"z":-20900000000000000000}},"30022715":{"solarSystemId":30022715,"solarSystemName":"U.N64.QH9","location":{"x":4840000000000000000,"y":-352000000000000000,"z":-19400000000000000000}},"30022716":{"solarSystemId":30022716,"solarSystemName":"H.7H4.8FL","location":{"x":5480000000000000000,"y":-528000000000000000,"z":-20900000000000000000}},"30022717":{"solarSystemId":30022717,"solarSystemName":"U.CZ2.TS4","location":{"x":3330000000000000000,"y":-156000000000000000,"z":-23100000000000000000}},"30022718":{"solarSystemId":30022718,"solarSystemName":"E.372.EFY","location":{"x":2560000000000000000,"y":-998000000000000000,"z":-23400000000000000000}},"30022719":{"solarSystemId":30022719,"solarSystemName":"R.1K1.06R","location":{"x":2240000000000000000,"y":-475000000000000000,"z":-22100000000000000000}},"30022720":{"solarSystemId":30022720,"solarSystemName":"H.K22.R75","location":{"x":2410000000000000000,"y":-189000000000000000,"z":-22000000000000000000}},"30022721":{"solarSystemId":30022721,"solarSystemName":"A.9G2.0G1","location":{"x":3150000000000000000,"y":-61900000000000000,"z":-23100000000000000000}},"30022722":{"solarSystemId":30022722,"solarSystemName":"I.YF2.C87","location":{"x":3090000000000000000,"y":262000000000000000,"z":-23000000000000000000}},"30022723":{"solarSystemId":30022723,"solarSystemName":"S.E72.2KS","location":{"x":2590000000000000000,"y":-394000000000000000,"z":-22800000000000000000}},"30022724":{"solarSystemId":30022724,"solarSystemName":"U.KB1.482","location":{"x":1980000000000000000,"y":-2600000000000000000,"z":-18700000000000000000}},"30022725":{"solarSystemId":30022725,"solarSystemName":"I.PL1.NDV","location":{"x":1680000000000000000,"y":-702000000000000000,"z":-19600000000000000000}},"30022726":{"solarSystemId":30022726,"solarSystemName":"R.8R1.5PJ","location":{"x":1630000000000000000,"y":-921000000000000000,"z":-19600000000000000000}},"30022727":{"solarSystemId":30022727,"solarSystemName":"U.Q11.YL1","location":{"x":1210000000000000000,"y":52800000000000000,"z":-21000000000000000000}},"30022728":{"solarSystemId":30022728,"solarSystemName":"D.GHC.JTP","location":{"x":604000000000000000,"y":-662000000000000000,"z":-19300000000000000000}},"30022729":{"solarSystemId":30022729,"solarSystemName":"E.0BG.M63","location":{"x":853000000000000000,"y":-115000000000000000,"z":-19700000000000000000}},"30022730":{"solarSystemId":30022730,"solarSystemName":"H.XM1.QTV","location":{"x":1800000000000000000,"y":-698000000000000000,"z":-19700000000000000000}},"30022731":{"solarSystemId":30022731,"solarSystemName":"E.6T1.MQ7","location":{"x":1560000000000000000,"y":8600000000000000,"z":-19900000000000000000}},"30022732":{"solarSystemId":30022732,"solarSystemName":"T.DSW.3FT","location":{"x":1060000000000000000,"y":420000000000000000,"z":-19200000000000000000}},"30022733":{"solarSystemId":30022733,"solarSystemName":"N.2S4.D32","location":{"x":4970000000000000000,"y":-76000000000000000,"z":-22500000000000000000}},"30022734":{"solarSystemId":30022734,"solarSystemName":"E.RQ4.01F","location":{"x":5350000000000000000,"y":-758000000000000000,"z":-21800000000000000000}},"30022735":{"solarSystemId":30022735,"solarSystemName":"D.XC4.M51","location":{"x":5220000000000000000,"y":-1350000000000000000,"z":-21800000000000000000}},"30022736":{"solarSystemId":30022736,"solarSystemName":"R.5B4.FXW","location":{"x":5410000000000000000,"y":-1070000000000000000,"z":-22000000000000000000}},"30022737":{"solarSystemId":30022737,"solarSystemName":"U.YH4.EWS","location":{"x":5510000000000000000,"y":-12300000000000000,"z":-21400000000000000000}},"30022738":{"solarSystemId":30022738,"solarSystemName":"T.NT4.CXN","location":{"x":5020000000000000000,"y":-462000000000000000,"z":-21600000000000000000}},"30022739":{"solarSystemId":30022739,"solarSystemName":"U.286.E4L","location":{"x":7210000000000000000,"y":-510000000000000000,"z":-20000000000000000000}},"30022740":{"solarSystemId":30022740,"solarSystemName":"E.1J6.J28","location":{"x":7820000000000000000,"y":9110000000000000,"z":-20400000000000000000}},"30022741":{"solarSystemId":30022741,"solarSystemName":"U.557.493","location":{"x":8260000000000000000,"y":-118000000000000000,"z":-20300000000000000000}},"30022742":{"solarSystemId":30022742,"solarSystemName":"T.HM5.ETE","location":{"x":6400000000000000000,"y":35300000000000000,"z":-20000000000000000000}},"30022743":{"solarSystemId":30022743,"solarSystemName":"R.VF6.6MR","location":{"x":7700000000000000000,"y":-488000000000000000,"z":-20600000000000000000}},"30022744":{"solarSystemId":30022744,"solarSystemName":"R.5K6.62B","location":{"x":8000000000000000000,"y":-795000000000000000,"z":-21100000000000000000}},"30022745":{"solarSystemId":30022745,"solarSystemName":"S.1T6.TSP","location":{"x":7320000000000000000,"y":-660000000000000000,"z":-20200000000000000000}},"30022746":{"solarSystemId":30022746,"solarSystemName":"D.192.YSF","location":{"x":2630000000000000000,"y":-769000000000000000,"z":-20100000000000000000}},"30022747":{"solarSystemId":30022747,"solarSystemName":"G.Y37.M7L","location":{"x":-257000000000000000,"y":-513000000000000000,"z":-21100000000000000000}},"30022748":{"solarSystemId":30022748,"solarSystemName":"A.T4Q.6FM","location":{"x":725000000000000000,"y":-636000000000000000,"z":-21000000000000000000}},"30022749":{"solarSystemId":30022749,"solarSystemName":"T.9X2.DL1","location":{"x":3250000000000000000,"y":-1670000000000000000,"z":-21500000000000000000}},"30022750":{"solarSystemId":30022750,"solarSystemName":"T.S21.JXL","location":{"x":1240000000000000000,"y":-535000000000000000,"z":-21300000000000000000}},"30022751":{"solarSystemId":30022751,"solarSystemName":"N.J82.X91","location":{"x":82000000000000000,"y":-1510000000000000000,"z":-21600000000000000000}},"30022752":{"solarSystemId":30022752,"solarSystemName":"E.HWL.8JY","location":{"x":538000000000000000,"y":-1000000000000000000,"z":-20700000000000000000}},"30022753":{"solarSystemId":30022753,"solarSystemName":"T.3R3.J24","location":{"x":3930000000000000000,"y":-147000000000000000,"z":-22600000000000000000}},"30022754":{"solarSystemId":30022754,"solarSystemName":"U.9Z3.XW1","location":{"x":4480000000000000000,"y":2180000000000000,"z":-21200000000000000000}},"30022755":{"solarSystemId":30022755,"solarSystemName":"R.0R2.NTT","location":{"x":2770000000000000000,"y":409000000000000000,"z":-22000000000000000000}},"30022756":{"solarSystemId":30022756,"solarSystemName":"N.GW3.KK9","location":{"x":4530000000000000000,"y":359000000000000000,"z":-20500000000000000000}},"30022757":{"solarSystemId":30022757,"solarSystemName":"R.Y82.12R","location":{"x":2630000000000000000,"y":-471000000000000000,"z":-21300000000000000000}},"30022758":{"solarSystemId":30022758,"solarSystemName":"E.R43.8F3","location":{"x":3620000000000000000,"y":132000000000000000,"z":-21000000000000000000}},"30022759":{"solarSystemId":30022759,"solarSystemName":"A.B53.S1H","location":{"x":3660000000000000000,"y":-866000000000000000,"z":-21100000000000000000}},"30022760":{"solarSystemId":30022760,"solarSystemName":"E.J75.SQR","location":{"x":6040000000000000000,"y":-491000000000000000,"z":-21200000000000000000}},"30022761":{"solarSystemId":30022761,"solarSystemName":"H.QL5.D01","location":{"x":6290000000000000000,"y":-1170000000000000000,"z":-24500000000000000000}},"30022762":{"solarSystemId":30022762,"solarSystemName":"U.413.8ZS","location":{"x":3500000000000000000,"y":-392000000000000000,"z":-23000000000000000000}},"30022763":{"solarSystemId":30022763,"solarSystemName":"T.XB5.635","location":{"x":6590000000000000000,"y":-184000000000000000,"z":-24100000000000000000}},"30022764":{"solarSystemId":30022764,"solarSystemName":"I.J34.S2R","location":{"x":4750000000000000000,"y":-471000000000000000,"z":-23000000000000000000}},"30022765":{"solarSystemId":30022765,"solarSystemName":"E.ND5.HZC","location":{"x":6320000000000000000,"y":-609000000000000000,"z":-24400000000000000000}},"30022766":{"solarSystemId":30022766,"solarSystemName":"E.W75.5C2","location":{"x":6050000000000000000,"y":90300000000000000,"z":-23200000000000000000}},"30022767":{"solarSystemId":30022767,"solarSystemName":"UJ5-HT8","location":{"x":35400000000000000000,"y":-1070000000000000000,"z":962000000000000000}},"30022768":{"solarSystemId":30022768,"solarSystemName":"O9D-CR8","location":{"x":32300000000000000000,"y":-2410000000000000000,"z":528000000000000000}},"30022769":{"solarSystemId":30022769,"solarSystemName":"ODM-DT8","location":{"x":35200000000000000000,"y":-1160000000000000000,"z":967000000000000000}},"30022770":{"solarSystemId":30022770,"solarSystemName":"OB2-9P8","location":{"x":30400000000000000000,"y":-2810000000000000000,"z":-1170000000000000000}},"30022771":{"solarSystemId":30022771,"solarSystemName":"E07-KR8","location":{"x":32700000000000000000,"y":-3380000000000000000,"z":-1170000000000000000}},"30022772":{"solarSystemId":30022772,"solarSystemName":"ED3-3V8","location":{"x":36400000000000000000,"y":-3580000000000000000,"z":44300000000000000}},"30022773":{"solarSystemId":30022773,"solarSystemName":"UQG-7V8","location":{"x":36700000000000000000,"y":-3640000000000000000,"z":-430000000000000000}},"30022774":{"solarSystemId":30022774,"solarSystemName":"I8Q-7V8","location":{"x":36700000000000000000,"y":-3450000000000000000,"z":247000000000000000}},"30022775":{"solarSystemId":30022775,"solarSystemName":"O4N-1V8","location":{"x":36400000000000000000,"y":-3310000000000000000,"z":-147000000000000000}},"30022776":{"solarSystemId":30022776,"solarSystemName":"EKQ-HV8","location":{"x":37100000000000000000,"y":-3580000000000000000,"z":258000000000000000}},"30022777":{"solarSystemId":30022777,"solarSystemName":"INF-BT8","location":{"x":35200000000000000000,"y":-3570000000000000000,"z":-816000000000000000}},"30022778":{"solarSystemId":30022778,"solarSystemName":"U86-TV8","location":{"x":38000000000000000000,"y":-3340000000000000000,"z":-1050000000000000000}},"30022779":{"solarSystemId":30022779,"solarSystemName":"I44-TT8","location":{"x":36200000000000000000,"y":-3780000000000000000,"z":-700000000000000000}},"30022780":{"solarSystemId":30022780,"solarSystemName":"EJ0-GS8","location":{"x":34100000000000000000,"y":-3630000000000000000,"z":-2410000000000000000}},"30022781":{"solarSystemId":30022781,"solarSystemName":"IHB-JV8","location":{"x":37300000000000000000,"y":-3080000000000000000,"z":-675000000000000000}},"30022782":{"solarSystemId":30022782,"solarSystemName":"IMR-029","location":{"x":43800000000000000000,"y":-4730000000000000000,"z":-4980000000000000000}},"30022783":{"solarSystemId":30022783,"solarSystemName":"ETB-D19","location":{"x":41600000000000000000,"y":-3330000000000000000,"z":303000000000000000}},"30022784":{"solarSystemId":30022784,"solarSystemName":"EK0-2V8","location":{"x":37100000000000000000,"y":-549000000000000000,"z":-7060000000000000000}},"30022785":{"solarSystemId":30022785,"solarSystemName":"E8C-N19","location":{"x":42900000000000000000,"y":-4950000000000000000,"z":-4490000000000000000}},"30022786":{"solarSystemId":30022786,"solarSystemName":"EMR-619","location":{"x":41200000000000000000,"y":-889000000000000000,"z":-95600000000000000}},"30022787":{"solarSystemId":30022787,"solarSystemName":"EJJ-5V8","location":{"x":36200000000000000000,"y":-2890000000000000000,"z":2000000000000000000}},"30022788":{"solarSystemId":30022788,"solarSystemName":"AL1-CT8","location":{"x":35100000000000000000,"y":-3220000000000000000,"z":571000000000000000}},"30022789":{"solarSystemId":30022789,"solarSystemName":"U49-5V8","location":{"x":36300000000000000000,"y":-3060000000000000000,"z":1660000000000000000}},"30022790":{"solarSystemId":30022790,"solarSystemName":"ERN-RT8","location":{"x":35900000000000000000,"y":-2820000000000000000,"z":885000000000000000}},"30022791":{"solarSystemId":30022791,"solarSystemName":"I9R-BV8","location":{"x":36600000000000000000,"y":-3010000000000000000,"z":1410000000000000000}},"30022792":{"solarSystemId":30022792,"solarSystemName":"IJJ-VV8","location":{"x":36800000000000000000,"y":-1840000000000000000,"z":5980000000000000000}},"30022793":{"solarSystemId":30022793,"solarSystemName":"AL6-019","location":{"x":39200000000000000000,"y":-3390000000000000000,"z":5810000000000000000}},"30022794":{"solarSystemId":30022794,"solarSystemName":"IR9-919","location":{"x":40500000000000000000,"y":-1620000000000000000,"z":4810000000000000000}},"30022795":{"solarSystemId":30022795,"solarSystemName":"IG4-P09","location":{"x":38700000000000000000,"y":-1800000000000000000,"z":6200000000000000000}},"30022796":{"solarSystemId":30022796,"solarSystemName":"URT-L09","location":{"x":38500000000000000000,"y":-1410000000000000000,"z":5970000000000000000}},"30022797":{"solarSystemId":30022797,"solarSystemName":"ILK-C29","location":{"x":45000000000000000000,"y":-1210000000000000000,"z":3470000000000000000}},"30022798":{"solarSystemId":30022798,"solarSystemName":"IQ3-N19","location":{"x":42100000000000000000,"y":-2970000000000000000,"z":2870000000000000000}},"30022799":{"solarSystemId":30022799,"solarSystemName":"E6B-C29","location":{"x":45300000000000000000,"y":-1470000000000000000,"z":1720000000000000000}},"30022800":{"solarSystemId":30022800,"solarSystemName":"IGN-D29","location":{"x":45800000000000000000,"y":-2780000000000000000,"z":-529000000000000000}},"30022801":{"solarSystemId":30022801,"solarSystemName":"I6V-G29","location":{"x":45900000000000000000,"y":-3230000000000000000,"z":2100000000000000000}},"30022802":{"solarSystemId":30022802,"solarSystemName":"ISV-LS8","location":{"x":33700000000000000000,"y":-4180000000000000000,"z":1470000000000000000}},"30022803":{"solarSystemId":30022803,"solarSystemName":"AB7-MS8","location":{"x":33700000000000000000,"y":-1540000000000000000,"z":2370000000000000000}},"30022804":{"solarSystemId":30022804,"solarSystemName":"I5V-RS8","location":{"x":33900000000000000000,"y":-1920000000000000000,"z":2410000000000000000}},"30022805":{"solarSystemId":30022805,"solarSystemName":"IN2-NS8","location":{"x":33600000000000000000,"y":-2770000000000000000,"z":2340000000000000000}},"30022806":{"solarSystemId":30022806,"solarSystemName":"I0R-8T8","location":{"x":34200000000000000000,"y":-3490000000000000000,"z":3440000000000000000}},"30022807":{"solarSystemId":30022807,"solarSystemName":"ERG-439","location":{"x":49100000000000000000,"y":-1590000000000000000,"z":14400000000000000000}},"30022808":{"solarSystemId":30022808,"solarSystemName":"ITV-339","location":{"x":46400000000000000000,"y":-2080000000000000000,"z":18300000000000000000}},"30022809":{"solarSystemId":30022809,"solarSystemName":"U9K-S29","location":{"x":47300000000000000000,"y":-1800000000000000000,"z":7470000000000000000}},"30022810":{"solarSystemId":30022810,"solarSystemName":"Logn","location":{"x":49800000000000000000,"y":-1850000000000000000,"z":14900000000000000000}},"30022811":{"solarSystemId":30022811,"solarSystemName":"E4T-539","location":{"x":49500000000000000000,"y":-1900000000000000000,"z":16800000000000000000}},"30022812":{"solarSystemId":30022812,"solarSystemName":"O54-Q29","location":{"x":46500000000000000000,"y":-1490000000000000000,"z":7940000000000000000}},"30022813":{"solarSystemId":30022813,"solarSystemName":"A86-729","location":{"x":41700000000000000000,"y":-1570000000000000000,"z":12200000000000000000}},"30022814":{"solarSystemId":30022814,"solarSystemName":"A01-M19","location":{"x":40900000000000000000,"y":-1530000000000000000,"z":8000000000000000000}},"30022815":{"solarSystemId":30022815,"solarSystemName":"ORT-D19","location":{"x":39800000000000000000,"y":-1560000000000000000,"z":8890000000000000000}},"30022816":{"solarSystemId":30022816,"solarSystemName":"ODM-929","location":{"x":42100000000000000000,"y":-1630000000000000000,"z":12300000000000000000}},"30022817":{"solarSystemId":30022817,"solarSystemName":"AR9-329","location":{"x":40700000000000000000,"y":-1950000000000000000,"z":12000000000000000000}},"30022818":{"solarSystemId":30022818,"solarSystemName":"EMD-B19","location":{"x":39200000000000000000,"y":-1990000000000000000,"z":9830000000000000000}},"30022819":{"solarSystemId":30022819,"solarSystemName":"OH4-929","location":{"x":42000000000000000000,"y":-1910000000000000000,"z":12500000000000000000}},"30022820":{"solarSystemId":30022820,"solarSystemName":"B:2EK5","location":{"x":116000000000000000,"y":5710000000000000000,"z":-16800000000000000000}},"30022821":{"solarSystemId":30022821,"solarSystemName":"Y:30OT","location":{"x":1950000000000000000,"y":2980000000000000000,"z":-12300000000000000000}},"30022822":{"solarSystemId":30022822,"solarSystemName":"H:3OE9","location":{"x":1350000000000000000,"y":8170000000000000000,"z":-14100000000000000000}},"30022823":{"solarSystemId":30022823,"solarSystemName":"U:3IV1","location":{"x":2450000000000000000,"y":6360000000000000000,"z":-18200000000000000000}},"30022824":{"solarSystemId":30022824,"solarSystemName":"B:R9S9","location":{"x":5170000000000000000,"y":632000000000000000,"z":-21100000000000000000}},"30022825":{"solarSystemId":30022825,"solarSystemName":"G:34TV","location":{"x":2210000000000000000,"y":-57800000000000000,"z":-10600000000000000000}},"30022826":{"solarSystemId":30022826,"solarSystemName":"M:210R","location":{"x":1780000000000000000,"y":965000000000000000,"z":-9650000000000000000}},"30022827":{"solarSystemId":30022827,"solarSystemName":"Z:1R8R","location":{"x":2350000000000000000,"y":-367000000000000000,"z":-10700000000000000000}},"30022828":{"solarSystemId":30022828,"solarSystemName":"Q:1TI2","location":{"x":1660000000000000000,"y":1210000000000000000,"z":-9660000000000000000}},"30022829":{"solarSystemId":30022829,"solarSystemName":"U:26T3","location":{"x":3260000000000000000,"y":-2000000000000000000,"z":-11200000000000000000}},"30022830":{"solarSystemId":30022830,"solarSystemName":"Y:26E7","location":{"x":2480000000000000000,"y":1180000000000000000,"z":-10700000000000000000}},"30022831":{"solarSystemId":30022831,"solarSystemName":"U:1436","location":{"x":2650000000000000000,"y":-614000000000000000,"z":-10300000000000000000}},"30022832":{"solarSystemId":30022832,"solarSystemName":"Q:21SR","location":{"x":2450000000000000000,"y":-982000000000000000,"z":-11100000000000000000}},"30022833":{"solarSystemId":30022833,"solarSystemName":"J:1OAR","location":{"x":1660000000000000000,"y":101000000000000000,"z":-10700000000000000000}},"30022834":{"solarSystemId":30022834,"solarSystemName":"D:1E22","location":{"x":2570000000000000000,"y":-126000000000000000,"z":-10800000000000000000}},"30022835":{"solarSystemId":30022835,"solarSystemName":"G:14VS","location":{"x":3690000000000000000,"y":-458000000000000000,"z":-10400000000000000000}},"30022836":{"solarSystemId":30022836,"solarSystemName":"P:21K9","location":{"x":3060000000000000000,"y":-227000000000000000,"z":-10300000000000000000}},"30022837":{"solarSystemId":30022837,"solarSystemName":"M:O22R","location":{"x":878000000000000000,"y":286000000000000000,"z":-11500000000000000000}},"30022838":{"solarSystemId":30022838,"solarSystemName":"Q:1OKL","location":{"x":1490000000000000000,"y":661000000000000000,"z":-11800000000000000000}},"30022839":{"solarSystemId":30022839,"solarSystemName":"Q:1TI5","location":{"x":1000000000000000000,"y":-464000000000000000,"z":-12100000000000000000}},"30022840":{"solarSystemId":30022840,"solarSystemName":"Y:SN7I","location":{"x":1710000000000000000,"y":-109000000000000000,"z":-11800000000000000000}},"30022841":{"solarSystemId":30022841,"solarSystemName":"G:22N4","location":{"x":2250000000000000000,"y":-687000000000000000,"z":-11500000000000000000}},"30022842":{"solarSystemId":30022842,"solarSystemName":"F:323A","location":{"x":1520000000000000000,"y":-478000000000000000,"z":-11800000000000000000}},"30022843":{"solarSystemId":30022843,"solarSystemName":"G:33R3","location":{"x":1260000000000000000,"y":-269000000000000000,"z":-11200000000000000000}},"30022844":{"solarSystemId":30022844,"solarSystemName":"Y:104A","location":{"x":1060000000000000000,"y":271000000000000000,"z":-12100000000000000000}},"30022845":{"solarSystemId":30022845,"solarSystemName":"Y:15I5","location":{"x":1970000000000000000,"y":-514000000000000000,"z":-11300000000000000000}},"30022846":{"solarSystemId":30022846,"solarSystemName":"D:1E79","location":{"x":860000000000000000,"y":-192000000000000000,"z":-11600000000000000000}},"30022847":{"solarSystemId":30022847,"solarSystemName":"Q:1A96","location":{"x":1440000000000000000,"y":-549000000000000000,"z":-11100000000000000000}},"30022848":{"solarSystemId":30022848,"solarSystemName":"Z:IN4O","location":{"x":1090000000000000000,"y":-563000000000000000,"z":-11700000000000000000}},"30022849":{"solarSystemId":30022849,"solarSystemName":"H:13LL","location":{"x":1320000000000000000,"y":356000000000000000,"z":-12000000000000000000}},"30022850":{"solarSystemId":30022850,"solarSystemName":"Y:14EL","location":{"x":3050000000000000000,"y":-858000000000000000,"z":-12200000000000000000}},"30022851":{"solarSystemId":30022851,"solarSystemName":"M:1R5T","location":{"x":3130000000000000000,"y":-793000000000000000,"z":-11100000000000000000}},"30022852":{"solarSystemId":30022852,"solarSystemName":"D:T339","location":{"x":2760000000000000000,"y":-358000000000000000,"z":-11700000000000000000}},"30022853":{"solarSystemId":30022853,"solarSystemName":"G:1496","location":{"x":2450000000000000000,"y":-306000000000000000,"z":-11100000000000000000}},"30022854":{"solarSystemId":30022854,"solarSystemName":"G:3ERE","location":{"x":2970000000000000000,"y":-725000000000000000,"z":-11000000000000000000}},"30022855":{"solarSystemId":30022855,"solarSystemName":"G:16R5","location":{"x":2990000000000000000,"y":-790000000000000000,"z":-12100000000000000000}},"30022856":{"solarSystemId":30022856,"solarSystemName":"M:19L0","location":{"x":2730000000000000000,"y":-260000000000000000,"z":-12000000000000000000}},"30022857":{"solarSystemId":30022857,"solarSystemName":"M:4V5N","location":{"x":2300000000000000000,"y":799000000000000000,"z":-12200000000000000000}},"30022858":{"solarSystemId":30022858,"solarSystemName":"Y:35S7","location":{"x":3170000000000000000,"y":-939000000000000000,"z":-12000000000000000000}},"30022859":{"solarSystemId":30022859,"solarSystemName":"B:3E9L","location":{"x":2820000000000000000,"y":148000000000000000,"z":-11700000000000000000}},"30022860":{"solarSystemId":30022860,"solarSystemName":"P:1O40","location":{"x":3300000000000000000,"y":88400000000000000,"z":-12400000000000000000}},"30022861":{"solarSystemId":30022861,"solarSystemName":"F:2182","location":{"x":2980000000000000000,"y":-491000000000000000,"z":-12400000000000000000}},"30022862":{"solarSystemId":30022862,"solarSystemName":"B:V343","location":{"x":2480000000000000000,"y":-310000000000000000,"z":-13800000000000000000}},"30022863":{"solarSystemId":30022863,"solarSystemName":"G:3344","location":{"x":2560000000000000000,"y":-603000000000000000,"z":-13000000000000000000}},"30022864":{"solarSystemId":30022864,"solarSystemName":"M:1V3R","location":{"x":2550000000000000000,"y":-1060000000000000000,"z":-12600000000000000000}},"30022865":{"solarSystemId":30022865,"solarSystemName":"Y:294I","location":{"x":2860000000000000000,"y":160000000000000000,"z":-13800000000000000000}},"30022866":{"solarSystemId":30022866,"solarSystemName":"M:ES79","location":{"x":2500000000000000000,"y":-571000000000000000,"z":-12500000000000000000}},"30022867":{"solarSystemId":30022867,"solarSystemName":"G:NS54","location":{"x":2170000000000000000,"y":-453000000000000000,"z":-13600000000000000000}},"30022868":{"solarSystemId":30022868,"solarSystemName":"H:E23A","location":{"x":2500000000000000000,"y":-458000000000000000,"z":-13700000000000000000}},"30022869":{"solarSystemId":30022869,"solarSystemName":"Q:2AAV","location":{"x":2450000000000000000,"y":-349000000000000000,"z":-13200000000000000000}},"30022870":{"solarSystemId":30022870,"solarSystemName":"P:1K6S","location":{"x":2340000000000000000,"y":30200000000000000,"z":-13600000000000000000}},"30022871":{"solarSystemId":30022871,"solarSystemName":"Z:AV3T","location":{"x":2500000000000000000,"y":-424000000000000000,"z":-12400000000000000000}},"30022872":{"solarSystemId":30022872,"solarSystemName":"H.V66.NM4","location":{"x":7160000000000000000,"y":-164000000000000000,"z":-16400000000000000000}},"30022873":{"solarSystemId":30022873,"solarSystemName":"D.JL6.J6T","location":{"x":7450000000000000000,"y":-404000000000000000,"z":-17200000000000000000}},"30022874":{"solarSystemId":30022874,"solarSystemName":"T.MN6.ZM4","location":{"x":7370000000000000000,"y":-164000000000000000,"z":-16900000000000000000}},"30022875":{"solarSystemId":30022875,"solarSystemName":"D.HR6.0ZR","location":{"x":7410000000000000000,"y":-500000000000000000,"z":-16300000000000000000}},"30022876":{"solarSystemId":30022876,"solarSystemName":"T.9T6.WRS","location":{"x":7320000000000000000,"y":-376000000000000000,"z":-17400000000000000000}},"30022877":{"solarSystemId":30022877,"solarSystemName":"N.2M6.LQR","location":{"x":7530000000000000000,"y":-491000000000000000,"z":-16700000000000000000}},"30022878":{"solarSystemId":30022878,"solarSystemName":"I.DV6.XQF","location":{"x":7620000000000000000,"y":-24400000000000000,"z":-16500000000000000000}},"30022879":{"solarSystemId":30022879,"solarSystemName":"E.C36.LBE","location":{"x":7040000000000000000,"y":-35700000000000000,"z":-16600000000000000000}},"30022880":{"solarSystemId":30022880,"solarSystemName":"T.Q08.KYN","location":{"x":9250000000000000000,"y":14500000000000000,"z":-17600000000000000000}},"30022881":{"solarSystemId":30022881,"solarSystemName":"L.DP7.DLT","location":{"x":8740000000000000000,"y":-413000000000000000,"z":-17300000000000000000}},"30022882":{"solarSystemId":30022882,"solarSystemName":"L.9H7.S81","location":{"x":8950000000000000000,"y":45400000000000000,"z":-17700000000000000000}},"30022883":{"solarSystemId":30022883,"solarSystemName":"I.R77.SNC","location":{"x":8340000000000000000,"y":-590000000000000000,"z":-17700000000000000000}},"30022884":{"solarSystemId":30022884,"solarSystemName":"U.ND7.TXN","location":{"x":8620000000000000000,"y":-462000000000000000,"z":-17200000000000000000}},"30022885":{"solarSystemId":30022885,"solarSystemName":"U.PH7.974","location":{"x":8960000000000000000,"y":152000000000000000,"z":-18200000000000000000}},"30022886":{"solarSystemId":30022886,"solarSystemName":"L.VB7.T4M","location":{"x":8880000000000000000,"y":-617000000000000000,"z":-17900000000000000000}},"30022887":{"solarSystemId":30022887,"solarSystemName":"U.W77.CW2","location":{"x":8360000000000000000,"y":-105000000000000000,"z":-18600000000000000000}},"30022888":{"solarSystemId":30022888,"solarSystemName":"U.0R7.RS6","location":{"x":8540000000000000000,"y":228000000000000000,"z":-17800000000000000000}},"30022889":{"solarSystemId":30022889,"solarSystemName":"H.SX6.7R6","location":{"x":7870000000000000000,"y":-231000000000000000,"z":-17600000000000000000}},"30022890":{"solarSystemId":30022890,"solarSystemName":"D.037.MF7","location":{"x":8180000000000000000,"y":-276000000000000000,"z":-18500000000000000000}},"30022891":{"solarSystemId":30022891,"solarSystemName":"S.MT7.B1Q","location":{"x":8490000000000000000,"y":-22600000000000000,"z":-18600000000000000000}},"30022892":{"solarSystemId":30022892,"solarSystemName":"D.037.6XS","location":{"x":8180000000000000000,"y":-390000000000000000,"z":-18700000000000000000}},"30022893":{"solarSystemId":30022893,"solarSystemName":"H.G77.QZ6","location":{"x":8350000000000000000,"y":248000000000000000,"z":-18000000000000000000}},"30022894":{"solarSystemId":30022894,"solarSystemName":"S.EB7.M07","location":{"x":8900000000000000000,"y":253000000000000000,"z":-15800000000000000000}},"30022895":{"solarSystemId":30022895,"solarSystemName":"T.R77.HY8","location":{"x":8340000000000000000,"y":-319000000000000000,"z":-15900000000000000000}},"30022896":{"solarSystemId":30022896,"solarSystemName":"T.SR7.154","location":{"x":8550000000000000000,"y":150000000000000000,"z":-15100000000000000000}},"30022897":{"solarSystemId":30022897,"solarSystemName":"E.M27.5F6","location":{"x":8160000000000000000,"y":240000000000000000,"z":-16500000000000000000}},"30022898":{"solarSystemId":30022898,"solarSystemName":"H.R58.6V9","location":{"x":9420000000000000000,"y":-346000000000000000,"z":-15500000000000000000}},"30022899":{"solarSystemId":30022899,"solarSystemName":"S.527.VR7","location":{"x":8150000000000000000,"y":-268000000000000000,"z":-15300000000000000000}},"30022900":{"solarSystemId":30022900,"solarSystemName":"H.SV7.J5S","location":{"x":8770000000000000000,"y":-367000000000000000,"z":-16100000000000000000}},"30022901":{"solarSystemId":30022901,"solarSystemName":"H.2E6.1G1","location":{"x":8040000000000000000,"y":62000000000000000,"z":-15400000000000000000}},"30022902":{"solarSystemId":30022902,"solarSystemName":"A.KH9.H9D","location":{"x":11300000000000000000,"y":551000000000000000,"z":-14700000000000000000}},"30022903":{"solarSystemId":30022903,"solarSystemName":"R.ES9.2VC","location":{"x":10800000000000000000,"y":-598000000000000000,"z":-14900000000000000000}},"30022904":{"solarSystemId":30022904,"solarSystemName":"N.BQ9.77W","location":{"x":11100000000000000000,"y":32900000000000000,"z":-14700000000000000000}},"30022905":{"solarSystemId":30022905,"solarSystemName":"R.0D9.JW6","location":{"x":10900000000000000000,"y":-250000000000000000,"z":-15800000000000000000}},"30022906":{"solarSystemId":30022906,"solarSystemName":"D.V0S.Z0L","location":{"x":11600000000000000000,"y":505000000000000000,"z":-16300000000000000000}},"30022907":{"solarSystemId":30022907,"solarSystemName":"H.JK8.KM2","location":{"x":10300000000000000000,"y":92300000000000000,"z":-15000000000000000000}},"30022908":{"solarSystemId":30022908,"solarSystemName":"H.509.5DH","location":{"x":10400000000000000000,"y":-27600000000000000,"z":-14200000000000000000}},"30022909":{"solarSystemId":30022909,"solarSystemName":"S.FQ8.MZQ","location":{"x":9970000000000000000,"y":-753000000000000000,"z":-15700000000000000000}},"30022910":{"solarSystemId":30022910,"solarSystemName":"I.JV9.821","location":{"x":11100000000000000000,"y":-38600000000000000,"z":-14500000000000000000}},"30022911":{"solarSystemId":30022911,"solarSystemName":"R.5SS.KZ6","location":{"x":11900000000000000000,"y":-249000000000000000,"z":-16600000000000000000}},"30022912":{"solarSystemId":30022912,"solarSystemName":"R.TJ9.KM4","location":{"x":11300000000000000000,"y":-5140000000000000,"z":-15600000000000000000}},"30022913":{"solarSystemId":30022913,"solarSystemName":"I.XL6.1D5","location":{"x":7450000000000000000,"y":-197000000000000000,"z":-18700000000000000000}},"30022914":{"solarSystemId":30022914,"solarSystemName":"N.CK5.3C1","location":{"x":6860000000000000000,"y":-54200000000000000,"z":-18600000000000000000}},"30022915":{"solarSystemId":30022915,"solarSystemName":"T.376.7C6","location":{"x":7170000000000000000,"y":234000000000000000,"z":-18600000000000000000}},"30022916":{"solarSystemId":30022916,"solarSystemName":"N.6M6.KND","location":{"x":7540000000000000000,"y":17300000000000000,"z":-18600000000000000000}},"30022917":{"solarSystemId":30022917,"solarSystemName":"S.DD6.GS4","location":{"x":7480000000000000000,"y":-156000000000000000,"z":-17900000000000000000}},"30022918":{"solarSystemId":30022918,"solarSystemName":"A.HB6.BK7","location":{"x":7740000000000000000,"y":-287000000000000000,"z":-18300000000000000000}},"30022919":{"solarSystemId":30022919,"solarSystemName":"S.486.356","location":{"x":7210000000000000000,"y":222000000000000000,"z":-18300000000000000000}},"30022920":{"solarSystemId":30022920,"solarSystemName":"H.709.HCT","location":{"x":10400000000000000000,"y":415000000000000000,"z":-16800000000000000000}},"30022921":{"solarSystemId":30022921,"solarSystemName":"T.XD9.W1R","location":{"x":10900000000000000000,"y":-471000000000000000,"z":-16100000000000000000}},"30022922":{"solarSystemId":30022922,"solarSystemName":"R.678.YX3","location":{"x":9480000000000000000,"y":138000000000000000,"z":-16600000000000000000}},"30022923":{"solarSystemId":30022923,"solarSystemName":"E.D69.JXD","location":{"x":10600000000000000000,"y":-571000000000000000,"z":-16200000000000000000}},"30022924":{"solarSystemId":30022924,"solarSystemName":"S.T29.LT5","location":{"x":10500000000000000000,"y":-193000000000000000,"z":-17100000000000000000}},"30022925":{"solarSystemId":30022925,"solarSystemName":"I.6C8.435","location":{"x":9810000000000000000,"y":-184000000000000000,"z":-16500000000000000000}},"30022926":{"solarSystemId":30022926,"solarSystemName":"R.KP8.KQ6","location":{"x":9910000000000000000,"y":240000000000000000,"z":-17000000000000000000}},"30022927":{"solarSystemId":30022927,"solarSystemName":"A.BS8.TE1","location":{"x":9610000000000000000,"y":-2280000000000000000,"z":-15100000000000000000}},"30022928":{"solarSystemId":30022928,"solarSystemName":"U.097.EC2","location":{"x":8390000000000000000,"y":-2920000000000000000,"z":-17200000000000000000}},"30022929":{"solarSystemId":30022929,"solarSystemName":"H.K88.EBP","location":{"x":9550000000000000000,"y":-674000000000000000,"z":-16500000000000000000}},"30022930":{"solarSystemId":30022930,"solarSystemName":"R.S58.X2X","location":{"x":9420000000000000000,"y":-940000000000000000,"z":-17300000000000000000}},"30022931":{"solarSystemId":30022931,"solarSystemName":"N.SD7.P48","location":{"x":8620000000000000000,"y":293000000000000000,"z":-17000000000000000000}},"30022932":{"solarSystemId":30022932,"solarSystemName":"D.L97.K9P","location":{"x":8410000000000000000,"y":-660000000000000000,"z":-16400000000000000000}},"30022933":{"solarSystemId":30022933,"solarSystemName":"N.XL7.K3E","location":{"x":8610000000000000000,"y":-1120000000000000000,"z":-16200000000000000000}},"30022934":{"solarSystemId":30022934,"solarSystemName":"N.6Y9.SJ6","location":{"x":355000000000000000,"y":-245000000000000000,"z":-23800000000000000000}},"30022935":{"solarSystemId":30022935,"solarSystemName":"H.H41.779","location":{"x":1320000000000000000,"y":332000000000000000,"z":-23600000000000000000}},"30022936":{"solarSystemId":30022936,"solarSystemName":"R.5WY.S4G","location":{"x":-1010000000000000000,"y":-834000000000000000,"z":-23400000000000000000}},"30022937":{"solarSystemId":30022937,"solarSystemName":"E.CSX.4T1","location":{"x":949000000000000000,"y":-48600000000000000,"z":-23800000000000000000}},"30022938":{"solarSystemId":30022938,"solarSystemName":"E.CPP.ZB5","location":{"x":669000000000000000,"y":206000000000000000,"z":-26200000000000000000}},"30022939":{"solarSystemId":30022939,"solarSystemName":"I.HP1.4RS","location":{"x":1830000000000000000,"y":-375000000000000000,"z":-26400000000000000000}},"30022940":{"solarSystemId":30022940,"solarSystemName":"I.RC1.HMD","location":{"x":1740000000000000000,"y":560000000000000000,"z":-26000000000000000000}},"30022941":{"solarSystemId":30022941,"solarSystemName":"I.Y33.JPK","location":{"x":-3600000000000000000,"y":-1100000000000000000,"z":-22900000000000000000}},"30022942":{"solarSystemId":30022942,"solarSystemName":"H.9P3.381","location":{"x":-4120000000000000000,"y":45100000000000000,"z":-23400000000000000000}},"30022943":{"solarSystemId":30022943,"solarSystemName":"H.8H3.2F8","location":{"x":-4330000000000000000,"y":-312000000000000000,"z":-23900000000000000000}},"30022944":{"solarSystemId":30022944,"solarSystemName":"H.P54.31T","location":{"x":-4810000000000000000,"y":-398000000000000000,"z":-23700000000000000000}},"30022945":{"solarSystemId":30022945,"solarSystemName":"R.K03.R31","location":{"x":-3490000000000000000,"y":-1280000000000000000,"z":-23000000000000000000}},"30022946":{"solarSystemId":30022946,"solarSystemName":"I.1B2.EYZ","location":{"x":-3100000000000000000,"y":-1040000000000000000,"z":-22700000000000000000}},"30022947":{"solarSystemId":30022947,"solarSystemName":"E.RX3.C01","location":{"x":-4410000000000000000,"y":-1170000000000000000,"z":-23200000000000000000}},"30022948":{"solarSystemId":30022948,"solarSystemName":"D.26V.0K4","location":{"x":-691000000000000000,"y":-178000000000000000,"z":-21900000000000000000}},"30022949":{"solarSystemId":30022949,"solarSystemName":"E.PGR.2SC","location":{"x":-495000000000000000,"y":-588000000000000000,"z":-21900000000000000000}},"30022950":{"solarSystemId":30022950,"solarSystemName":"E.HF1.3MX","location":{"x":-1940000000000000000,"y":-956000000000000000,"z":-22600000000000000000}},"30022951":{"solarSystemId":30022951,"solarSystemName":"A.0RV.H6N","location":{"x":-699000000000000000,"y":-440000000000000000,"z":-23100000000000000000}},"30022952":{"solarSystemId":30022952,"solarSystemName":"U.D01.BLT","location":{"x":-1170000000000000000,"y":-413000000000000000,"z":-22600000000000000000}},"30022953":{"solarSystemId":30022953,"solarSystemName":"D.4CE.RWD","location":{"x":-1140000000000000000,"y":-574000000000000000,"z":-22500000000000000000}},"30022954":{"solarSystemId":30022954,"solarSystemName":"I.0M1.98J","location":{"x":-1770000000000000000,"y":-910000000000000000,"z":-22400000000000000000}},"30022955":{"solarSystemId":30022955,"solarSystemName":"S.CC1.SM1","location":{"x":-1750000000000000000,"y":-1780000000000000000,"z":-23800000000000000000}},"30022956":{"solarSystemId":30022956,"solarSystemName":"E.892.4GV","location":{"x":-2640000000000000000,"y":-711000000000000000,"z":-24800000000000000000}},"30022957":{"solarSystemId":30022957,"solarSystemName":"R.1S2.R31","location":{"x":-2670000000000000000,"y":-1280000000000000000,"z":-23700000000000000000}},"30022958":{"solarSystemId":30022958,"solarSystemName":"I.JP1.D9V","location":{"x":-1830000000000000000,"y":-695000000000000000,"z":-24300000000000000000}},"30022959":{"solarSystemId":30022959,"solarSystemName":"I.C22.RYB","location":{"x":-2400000000000000000,"y":-824000000000000000,"z":-23500000000000000000}},"30022960":{"solarSystemId":30022960,"solarSystemName":"E.CS1.ECR","location":{"x":-1530000000000000000,"y":-488000000000000000,"z":-23300000000000000000}},"30022961":{"solarSystemId":30022961,"solarSystemName":"A.N23.19Z","location":{"x":-3550000000000000000,"y":-1020000000000000000,"z":-23700000000000000000}},"30022962":{"solarSystemId":30022962,"solarSystemName":"I.6B2.W7W","location":{"x":-3110000000000000000,"y":-1050000000000000000,"z":-23700000000000000000}},"30022963":{"solarSystemId":30022963,"solarSystemName":"U.HV2.9VK","location":{"x":-3020000000000000000,"y":-1100000000000000000,"z":-23400000000000000000}},"30022964":{"solarSystemId":30022964,"solarSystemName":"S.6E2.2ZY","location":{"x":-3430000000000000000,"y":-1000000000000000000,"z":-23300000000000000000}},"30022965":{"solarSystemId":30022965,"solarSystemName":"S.3E2.5RP","location":{"x":-3430000000000000000,"y":-663000000000000000,"z":-23600000000000000000}},"30022966":{"solarSystemId":30022966,"solarSystemName":"U.613.R9D","location":{"x":-3500000000000000000,"y":-551000000000000000,"z":-23600000000000000000}},"30022967":{"solarSystemId":30022967,"solarSystemName":"H.E03.J8H","location":{"x":-3490000000000000000,"y":-875000000000000000,"z":-24000000000000000000}},"30022968":{"solarSystemId":30022968,"solarSystemName":"U.CG1.K51","location":{"x":-2000000000000000000,"y":-1370000000000000000,"z":-23100000000000000000}},"30022969":{"solarSystemId":30022969,"solarSystemName":"S.W42.4DN","location":{"x":-2480000000000000000,"y":-449000000000000000,"z":-22600000000000000000}},"30022970":{"solarSystemId":30022970,"solarSystemName":"S.KC2.G0J","location":{"x":-2920000000000000000,"y":-902000000000000000,"z":-23600000000000000000}},"30022971":{"solarSystemId":30022971,"solarSystemName":"D.6Q2.RE2","location":{"x":-3030000000000000000,"y":-107000000000000000,"z":-23500000000000000000}},"30022972":{"solarSystemId":30022972,"solarSystemName":"N.DV2.R2Z","location":{"x":-3010000000000000000,"y":-1010000000000000000,"z":-22800000000000000000}},"30022973":{"solarSystemId":30022973,"solarSystemName":"E.P22.C8L","location":{"x":-2400000000000000000,"y":-514000000000000000,"z":-23100000000000000000}},"30022974":{"solarSystemId":30022974,"solarSystemName":"I.PN2.XTX","location":{"x":-2760000000000000000,"y":-950000000000000000,"z":-23100000000000000000}},"30022975":{"solarSystemId":30022975,"solarSystemName":"D.761.X2B","location":{"x":1380000000000000000,"y":-796000000000000000,"z":-22500000000000000000}},"30022976":{"solarSystemId":30022976,"solarSystemName":"N.19Z.4SL","location":{"x":-31800000000000000,"y":-516000000000000000,"z":-22100000000000000000}},"30022977":{"solarSystemId":30022977,"solarSystemName":"N.Y8L.M71","location":{"x":514000000000000000,"y":44500000000000000,"z":-22200000000000000000}},"30022978":{"solarSystemId":30022978,"solarSystemName":"U.NCV.616","location":{"x":22000000000000000,"y":218000000000000000,"z":-23100000000000000000}},"30022979":{"solarSystemId":30022979,"solarSystemName":"N.6EZ.KY8","location":{"x":1040000000000000000,"y":-320000000000000000,"z":-21200000000000000000}},"30022980":{"solarSystemId":30022980,"solarSystemName":"S.1J1.914","location":{"x":-64200000000000000,"y":146000000000000000,"z":-23000000000000000000}},"30022981":{"solarSystemId":30022981,"solarSystemName":"E.91R.D78","location":{"x":14700000000000000,"y":-297000000000000000,"z":-22900000000000000000}},"30022982":{"solarSystemId":30022982,"solarSystemName":"A.F7R.B21","location":{"x":-477000000000000000,"y":-1250000000000000000,"z":-26600000000000000000}},"30022983":{"solarSystemId":30022983,"solarSystemName":"E.FD2.E81","location":{"x":-2870000000000000000,"y":-1480000000000000000,"z":-24200000000000000000}},"30022984":{"solarSystemId":30022984,"solarSystemName":"T.6DR.9Y1","location":{"x":-485000000000000000,"y":-2140000000000000000,"z":-23900000000000000000}},"30022985":{"solarSystemId":30022985,"solarSystemName":"N.L72.PR1","location":{"x":-2570000000000000000,"y":-1640000000000000000,"z":-23600000000000000000}},"30022986":{"solarSystemId":30022986,"solarSystemName":"S.JX2.WTW","location":{"x":-3270000000000000000,"y":-1060000000000000000,"z":-24500000000000000000}},"30022987":{"solarSystemId":30022987,"solarSystemName":"T.MT1.911","location":{"x":-1570000000000000000,"y":-1200000000000000000,"z":-27300000000000000000}},"30022988":{"solarSystemId":30022988,"solarSystemName":"S.TN1.2XF","location":{"x":-1600000000000000000,"y":-786000000000000000,"z":-26400000000000000000}},"30022989":{"solarSystemId":30022989,"solarSystemName":"T.JX1.B3X","location":{"x":-2120000000000000000,"y":-941000000000000000,"z":-21000000000000000000}},"30022990":{"solarSystemId":30022990,"solarSystemName":"I.QS2.2BG","location":{"x":-2690000000000000000,"y":-854000000000000000,"z":-21200000000000000000}},"30022991":{"solarSystemId":30022991,"solarSystemName":"I.MM2.71C","location":{"x":-2940000000000000000,"y":-578000000000000000,"z":-21200000000000000000}},"30022992":{"solarSystemId":30022992,"solarSystemName":"D.NT2.Q34","location":{"x":-2720000000000000000,"y":148000000000000000,"z":-21700000000000000000}},"30022993":{"solarSystemId":30022993,"solarSystemName":"S.8F2.HLX","location":{"x":-3070000000000000000,"y":-953000000000000000,"z":-21200000000000000000}},"30022994":{"solarSystemId":30022994,"solarSystemName":"H.7H1.5HH","location":{"x":-2030000000000000000,"y":-892000000000000000,"z":-21400000000000000000}},"30022995":{"solarSystemId":30022995,"solarSystemName":"L.562.KV5","location":{"x":-2530000000000000000,"y":-203000000000000000,"z":-21400000000000000000}},"30022996":{"solarSystemId":30022996,"solarSystemName":"A.H9S.TYQ","location":{"x":371000000000000000,"y":-751000000000000000,"z":-24300000000000000000}},"30022997":{"solarSystemId":30022997,"solarSystemName":"I.Y0F.3X2","location":{"x":-758000000000000000,"y":101000000000000000,"z":-25200000000000000000}},"30022998":{"solarSystemId":30022998,"solarSystemName":"I.LC3.WGD","location":{"x":127000000000000000,"y":-567000000000000000,"z":-25700000000000000000}},"30022999":{"solarSystemId":30022999,"solarSystemName":"A.NL5.176","location":{"x":-196000000000000000,"y":224000000000000000,"z":-26200000000000000000}},"30023000":{"solarSystemId":30023000,"solarSystemName":"A.6J3.BKT","location":{"x":-136000000000000000,"y":-431000000000000000,"z":-24200000000000000000}},"30023001":{"solarSystemId":30023001,"solarSystemName":"E.01X.S25","location":{"x":-938000000000000000,"y":-183000000000000000,"z":-26100000000000000000}},"30023002":{"solarSystemId":30023002,"solarSystemName":"A.D7T.FWD","location":{"x":13000000000000000000,"y":-574000000000000000,"z":-9340000000000000000}},"30023003":{"solarSystemId":30023003,"solarSystemName":"I.K7T.YGN","location":{"x":13000000000000000000,"y":-459000000000000000,"z":-9480000000000000000}},"30023004":{"solarSystemId":30023004,"solarSystemName":"U.T4T.W5L","location":{"x":12800000000000000000,"y":-511000000000000000,"z":-9320000000000000000}},"30023005":{"solarSystemId":30023005,"solarSystemName":"S.4RT.GH9","location":{"x":13200000000000000000,"y":-352000000000000000,"z":-9660000000000000000}},"30023006":{"solarSystemId":30023006,"solarSystemName":"A.XJS.HXN","location":{"x":12500000000000000000,"y":-462000000000000000,"z":-8940000000000000000}},"30023007":{"solarSystemId":30023007,"solarSystemName":"A.1TT.YW8","location":{"x":13100000000000000000,"y":322000000000000000,"z":-9450000000000000000}},"30023008":{"solarSystemId":30023008,"solarSystemName":"E.2BS.N18","location":{"x":12300000000000000000,"y":-290000000000000000,"z":-8710000000000000000}},"30023009":{"solarSystemId":30023009,"solarSystemName":"H.VWS.FCS","location":{"x":12600000000000000000,"y":379000000000000000,"z":-9340000000000000000}},"30023010":{"solarSystemId":30023010,"solarSystemName":"N.J6T.7VT","location":{"x":12900000000000000000,"y":-418000000000000000,"z":-8950000000000000000}},"30023011":{"solarSystemId":30023011,"solarSystemName":"E.FEN.HJ6","location":{"x":15000000000000000000,"y":245000000000000000,"z":-11300000000000000000}},"30023012":{"solarSystemId":30023012,"solarSystemName":"I.N1R.GVS","location":{"x":15000000000000000000,"y":383000000000000000,"z":-11000000000000000000}},"30023013":{"solarSystemId":30023013,"solarSystemName":"H.LFN.X37","location":{"x":14600000000000000000,"y":-257000000000000000,"z":-10400000000000000000}},"30023014":{"solarSystemId":30023014,"solarSystemName":"S.20N.MJD","location":{"x":13800000000000000000,"y":569000000000000000,"z":-11300000000000000000}},"30023015":{"solarSystemId":30023015,"solarSystemName":"T.W1R.KDL","location":{"x":15100000000000000000,"y":522000000000000000,"z":-11400000000000000000}},"30023016":{"solarSystemId":30023016,"solarSystemName":"T.CYN.D6Q","location":{"x":14800000000000000000,"y":728000000000000000,"z":-10800000000000000000}},"30023017":{"solarSystemId":30023017,"solarSystemName":"R.06R.YCC","location":{"x":15200000000000000000,"y":595000000000000000,"z":-11000000000000000000}},"30023018":{"solarSystemId":30023018,"solarSystemName":"S.7FN.WZ3","location":{"x":14600000000000000000,"y":141000000000000000,"z":-10900000000000000000}},"30023019":{"solarSystemId":30023019,"solarSystemName":"T.X0L.J54","location":{"x":16200000000000000000,"y":151000000000000000,"z":-9920000000000000000}},"30023020":{"solarSystemId":30023020,"solarSystemName":"N.END.SXD","location":{"x":17800000000000000000,"y":-570000000000000000,"z":-11200000000000000000}},"30023021":{"solarSystemId":30023021,"solarSystemName":"U.XCL.FFN","location":{"x":16700000000000000000,"y":457000000000000000,"z":-10800000000000000000}},"30023022":{"solarSystemId":30023022,"solarSystemName":"D.T5T.75L","location":{"x":12900000000000000000,"y":-510000000000000000,"z":-10900000000000000000}},"30023023":{"solarSystemId":30023023,"solarSystemName":"M.R6D.4F1","location":{"x":17500000000000000000,"y":-1910000000000000000,"z":-11100000000000000000}},"30023024":{"solarSystemId":30023024,"solarSystemName":"M.66L.C41","location":{"x":16400000000000000000,"y":-1320000000000000000,"z":-12300000000000000000}},"30023025":{"solarSystemId":30023025,"solarSystemName":"O.RTR.VH1","location":{"x":15400000000000000000,"y":-2040000000000000000,"z":-11200000000000000000}},"30023026":{"solarSystemId":30023026,"solarSystemName":"U.769.KC1","location":{"x":10600000000000000000,"y":-1760000000000000000,"z":-11000000000000000000}},"30023027":{"solarSystemId":30023027,"solarSystemName":"T.F59.801","location":{"x":10600000000000000000,"y":-1160000000000000000,"z":-12200000000000000000}},"30023028":{"solarSystemId":30023028,"solarSystemName":"E.S09.DHN","location":{"x":10400000000000000000,"y":-460000000000000000,"z":-10600000000000000000}},"30023029":{"solarSystemId":30023029,"solarSystemName":"D.EV8.XD1","location":{"x":9940000000000000000,"y":-1720000000000000000,"z":-12100000000000000000}},"30023030":{"solarSystemId":30023030,"solarSystemName":"I.ZT8.ZPQ","location":{"x":9650000000000000000,"y":-742000000000000000,"z":-10800000000000000000}},"30023031":{"solarSystemId":30023031,"solarSystemName":"N.F99.KDL","location":{"x":10700000000000000000,"y":-522000000000000000,"z":-10600000000000000000}},"30023032":{"solarSystemId":30023032,"solarSystemName":"I.63S.VJ1","location":{"x":11600000000000000000,"y":-2080000000000000000,"z":-10600000000000000000}},"30023033":{"solarSystemId":30023033,"solarSystemName":"R.3Z9.QSC","location":{"x":11400000000000000000,"y":-588000000000000000,"z":-11100000000000000000}},"30023034":{"solarSystemId":30023034,"solarSystemName":"I.GS9.NG4","location":{"x":10800000000000000000,"y":-170000000000000000,"z":-10700000000000000000}},"30023035":{"solarSystemId":30023035,"solarSystemName":"A.BF9.3L9","location":{"x":11200000000000000000,"y":-340000000000000000,"z":-10500000000000000000}},"30023036":{"solarSystemId":30023036,"solarSystemName":"N.VS9.T55","location":{"x":10800000000000000000,"y":-186000000000000000,"z":-10500000000000000000}},"30023037":{"solarSystemId":30023037,"solarSystemName":"D.ML9.12S","location":{"x":10900000000000000000,"y":-363000000000000000,"z":-11100000000000000000}},"30023038":{"solarSystemId":30023038,"solarSystemName":"D.H19.9F2","location":{"x":10400000000000000000,"y":-96000000000000000,"z":-11100000000000000000}},"30023039":{"solarSystemId":30023039,"solarSystemName":"I.0C9.KG1","location":{"x":11000000000000000000,"y":-63000000000000000,"z":-11200000000000000000}},"30023040":{"solarSystemId":30023040,"solarSystemName":"N.3T9.ZM1","location":{"x":10800000000000000000,"y":-56200000000000000,"z":-10900000000000000000}},"30023041":{"solarSystemId":30023041,"solarSystemName":"I.DD9.6GW","location":{"x":10900000000000000000,"y":-33500000000000000,"z":-10900000000000000000}},"30023042":{"solarSystemId":30023042,"solarSystemName":"S.P09.PF8","location":{"x":10400000000000000000,"y":-313000000000000000,"z":-10800000000000000000}},"30023043":{"solarSystemId":30023043,"solarSystemName":"H.17T.5L1","location":{"x":12900000000000000000,"y":-1660000000000000000,"z":-12800000000000000000}},"30023044":{"solarSystemId":30023044,"solarSystemName":"E.NMS.659","location":{"x":12200000000000000000,"y":-330000000000000000,"z":-11800000000000000000}},"30023045":{"solarSystemId":30023045,"solarSystemName":"T.Z5S.2K9","location":{"x":11700000000000000000,"y":-358000000000000000,"z":-12500000000000000000}},"30023046":{"solarSystemId":30023046,"solarSystemName":"I.EE8.G7V","location":{"x":10400000000000000000,"y":-693000000000000000,"z":-12100000000000000000}},"30023047":{"solarSystemId":30023047,"solarSystemName":"D.V5S.G2R","location":{"x":11700000000000000000,"y":-471000000000000000,"z":-11100000000000000000}},"30023048":{"solarSystemId":30023048,"solarSystemName":"E.ZP9.5C5","location":{"x":11100000000000000000,"y":-198000000000000000,"z":-12100000000000000000}},"30023049":{"solarSystemId":30023049,"solarSystemName":"S.MW9.FG5","location":{"x":11400000000000000000,"y":6460000000000000,"z":-10700000000000000000}},"30023050":{"solarSystemId":30023050,"solarSystemName":"H.TP9.K24","location":{"x":11000000000000000000,"y":-147000000000000000,"z":-11500000000000000000}},"30023051":{"solarSystemId":30023051,"solarSystemName":"I.J0T.DX9","location":{"x":12700000000000000000,"y":-354000000000000000,"z":-11700000000000000000}},"30023052":{"solarSystemId":30023052,"solarSystemName":"U.H4T.RRR","location":{"x":12900000000000000000,"y":-483000000000000000,"z":-12100000000000000000}},"30023053":{"solarSystemId":30023053,"solarSystemName":"A.N6T.CZ1","location":{"x":12900000000000000000,"y":-68100000000000000,"z":-12300000000000000000}},"30023054":{"solarSystemId":30023054,"solarSystemName":"R.ETS.5Q6","location":{"x":12000000000000000000,"y":239000000000000000,"z":-12700000000000000000}},"30023055":{"solarSystemId":30023055,"solarSystemName":"U.YDT.RNS","location":{"x":13300000000000000000,"y":374000000000000000,"z":-12700000000000000000}},"30023056":{"solarSystemId":30023056,"solarSystemName":"T.42N.T19","location":{"x":13900000000000000000,"y":-326000000000000000,"z":-13400000000000000000}},"30023057":{"solarSystemId":30023057,"solarSystemName":"U.SBT.TYE","location":{"x":13500000000000000000,"y":35900000000000000,"z":-13900000000000000000}},"30023058":{"solarSystemId":30023058,"solarSystemName":"S.7ES.C51","location":{"x":12700000000000000000,"y":-1350000000000000000,"z":-8610000000000000000}},"30023059":{"solarSystemId":30023059,"solarSystemName":"D.TY9.RRN","location":{"x":11400000000000000000,"y":-447000000000000000,"z":-10900000000000000000}},"30023060":{"solarSystemId":30023060,"solarSystemName":"R.6RS.X0W","location":{"x":12000000000000000000,"y":-1050000000000000000,"z":-8980000000000000000}},"30023061":{"solarSystemId":30023061,"solarSystemName":"S.TH9.LK1","location":{"x":11300000000000000000,"y":-2250000000000000000,"z":-9500000000000000000}},"30023062":{"solarSystemId":30023062,"solarSystemName":"D.LRS.051","location":{"x":12000000000000000000,"y":-1330000000000000000,"z":-9940000000000000000}},"30023063":{"solarSystemId":30023063,"solarSystemName":"T.5F9.DF1","location":{"x":11100000000000000000,"y":-1930000000000000000,"z":-9550000000000000000}},"30023064":{"solarSystemId":30023064,"solarSystemName":"S.WG9.H63","location":{"x":11200000000000000000,"y":-116000000000000000,"z":-9790000000000000000}},"30023065":{"solarSystemId":30023065,"solarSystemName":"T.Y7S.FN7","location":{"x":11800000000000000000,"y":-266000000000000000,"z":-9000000000000000000}},"30023066":{"solarSystemId":30023066,"solarSystemName":"Q:3R9O","location":{"x":1220000000000000000,"y":5900000000000000000,"z":-4880000000000000000}},"30023067":{"solarSystemId":30023067,"solarSystemName":"B:2L92","location":{"x":1140000000000000000,"y":4910000000000000000,"z":-5240000000000000000}},"30023068":{"solarSystemId":30023068,"solarSystemName":"J:2LLK","location":{"x":552000000000000000,"y":5650000000000000000,"z":-6580000000000000000}},"30023069":{"solarSystemId":30023069,"solarSystemName":"F:3191","location":{"x":-622000000000000000,"y":4580000000000000000,"z":-5260000000000000000}},"30023070":{"solarSystemId":30023070,"solarSystemName":"F:36E2","location":{"x":891000000000000000,"y":3610000000000000000,"z":-5340000000000000000}},"30023071":{"solarSystemId":30023071,"solarSystemName":"M:3EA9","location":{"x":-95400000000000000,"y":5260000000000000000,"z":-6160000000000000000}},"30023072":{"solarSystemId":30023072,"solarSystemName":"Q:2RE4","location":{"x":1050000000000000000,"y":2620000000000000000,"z":-6170000000000000000}},"30023073":{"solarSystemId":30023073,"solarSystemName":"H:294N","location":{"x":3070000000000000000,"y":3470000000000000000,"z":-5970000000000000000}},"30023074":{"solarSystemId":30023074,"solarSystemName":"Y:3TOO","location":{"x":3340000000000000000,"y":3610000000000000000,"z":-6120000000000000000}},"30023075":{"solarSystemId":30023075,"solarSystemName":"F:384K","location":{"x":1960000000000000000,"y":2960000000000000000,"z":-6490000000000000000}},"30023076":{"solarSystemId":30023076,"solarSystemName":"G:3RRN","location":{"x":3220000000000000000,"y":3350000000000000000,"z":-6010000000000000000}},"30023077":{"solarSystemId":30023077,"solarSystemName":"B:290L","location":{"x":2830000000000000000,"y":3590000000000000000,"z":-5720000000000000000}},"30023078":{"solarSystemId":30023078,"solarSystemName":"Q:3RNI","location":{"x":2370000000000000000,"y":2390000000000000000,"z":-4490000000000000000}},"30023079":{"solarSystemId":30023079,"solarSystemName":"D:3S3V","location":{"x":2590000000000000000,"y":2370000000000000000,"z":-6010000000000000000}},"30023080":{"solarSystemId":30023080,"solarSystemName":"G:I6O8","location":{"x":3200000000000000000,"y":3360000000000000000,"z":-5270000000000000000}},"30023081":{"solarSystemId":30023081,"solarSystemName":"F:1K6L","location":{"x":1700000000000000000,"y":1290000000000000000,"z":-6800000000000000000}},"30023082":{"solarSystemId":30023082,"solarSystemName":"Q:35IE","location":{"x":1250000000000000000,"y":2800000000000000000,"z":-2650000000000000000}},"30023083":{"solarSystemId":30023083,"solarSystemName":"H:3N1A","location":{"x":2520000000000000000,"y":1100000000000000000,"z":-3470000000000000000}},"30023084":{"solarSystemId":30023084,"solarSystemName":"J:1RRL","location":{"x":2130000000000000000,"y":635000000000000000,"z":-3010000000000000000}},"30023085":{"solarSystemId":30023085,"solarSystemName":"D:N1A5","location":{"x":1750000000000000000,"y":1970000000000000000,"z":-1380000000000000000}},"30023086":{"solarSystemId":30023086,"solarSystemName":"Q:18A3","location":{"x":1240000000000000000,"y":1200000000000000000,"z":-2780000000000000000}},"30023087":{"solarSystemId":30023087,"solarSystemName":"D:352I","location":{"x":1830000000000000000,"y":2520000000000000000,"z":-3800000000000000000}},"30023088":{"solarSystemId":30023088,"solarSystemName":"U:3799","location":{"x":1460000000000000000,"y":611000000000000000,"z":-3300000000000000000}},"30023089":{"solarSystemId":30023089,"solarSystemName":"M:3RR3","location":{"x":3340000000000000000,"y":1830000000000000000,"z":-1450000000000000000}},"30023090":{"solarSystemId":30023090,"solarSystemName":"G:3T3V","location":{"x":1160000000000000000,"y":1840000000000000000,"z":-3300000000000000000}},"30023091":{"solarSystemId":30023091,"solarSystemName":"B:21RA","location":{"x":1640000000000000000,"y":942000000000000000,"z":-2110000000000000000}},"30023092":{"solarSystemId":30023092,"solarSystemName":"G:E61V","location":{"x":2060000000000000000,"y":1910000000000000000,"z":-2530000000000000000}},"30023093":{"solarSystemId":30023093,"solarSystemName":"P:3EN1","location":{"x":889000000000000000,"y":1060000000000000000,"z":-3160000000000000000}},"30023094":{"solarSystemId":30023094,"solarSystemName":"D:1VKS","location":{"x":2960000000000000000,"y":1950000000000000000,"z":-1340000000000000000}},"30023095":{"solarSystemId":30023095,"solarSystemName":"B:39IV","location":{"x":3310000000000000000,"y":5210000000000000000,"z":232000000000000000}},"30023096":{"solarSystemId":30023096,"solarSystemName":"U:3OE0","location":{"x":3610000000000000000,"y":5280000000000000000,"z":-2020000000000000000}},"30023097":{"solarSystemId":30023097,"solarSystemName":"G:2948","location":{"x":2070000000000000000,"y":6220000000000000000,"z":-1570000000000000000}},"30023098":{"solarSystemId":30023098,"solarSystemName":"B:3TE0","location":{"x":4430000000000000000,"y":5110000000000000000,"z":-413000000000000000}},"30023099":{"solarSystemId":30023099,"solarSystemName":"P:31TO","location":{"x":5250000000000000000,"y":3380000000000000000,"z":-2060000000000000000}},"30023100":{"solarSystemId":30023100,"solarSystemName":"Z:36AV","location":{"x":4650000000000000000,"y":3340000000000000000,"z":-3370000000000000000}},"30023101":{"solarSystemId":30023101,"solarSystemName":"Y:2ES6","location":{"x":3260000000000000000,"y":6660000000000000000,"z":-7350000000000000000}},"30023102":{"solarSystemId":30023102,"solarSystemName":"H:2V02","location":{"x":3980000000000000000,"y":6910000000000000000,"z":-11500000000000000000}},"30023103":{"solarSystemId":30023103,"solarSystemName":"B:3NET","location":{"x":1960000000000000000,"y":8060000000000000000,"z":-9490000000000000000}},"30023104":{"solarSystemId":30023104,"solarSystemName":"F:3I5R","location":{"x":-96300000000000000,"y":7730000000000000000,"z":-13100000000000000000}},"30023105":{"solarSystemId":30023105,"solarSystemName":"Y:3RI9","location":{"x":1760000000000000000,"y":7460000000000000000,"z":-10300000000000000000}},"30023106":{"solarSystemId":30023106,"solarSystemName":"R.LKL.QQ3","location":{"x":17200000000000000000,"y":131000000000000000,"z":-6330000000000000000}},"30023107":{"solarSystemId":30023107,"solarSystemName":"S.DWR.R1E","location":{"x":16000000000000000000,"y":-1120000000000000000,"z":-5750000000000000000}},"30023108":{"solarSystemId":30023108,"solarSystemName":"T.TVL.C01","location":{"x":16800000000000000000,"y":-36600000000000000,"z":-5870000000000000000}},"30023109":{"solarSystemId":30023109,"solarSystemName":"L.4WR.GV8","location":{"x":16000000000000000000,"y":-310000000000000000,"z":-6010000000000000000}},"30023110":{"solarSystemId":30023110,"solarSystemName":"D.E5D.XDW","location":{"x":17500000000000000000,"y":-1060000000000000000,"z":-5290000000000000000}},"30023111":{"solarSystemId":30023111,"solarSystemName":"E.SWL.MS1","location":{"x":17200000000000000000,"y":-47900000000000000,"z":-6980000000000000000}},"30023112":{"solarSystemId":30023112,"solarSystemName":"R.0GL.F76","location":{"x":17000000000000000000,"y":-225000000000000000,"z":-5690000000000000000}},"30023113":{"solarSystemId":30023113,"solarSystemName":"D.CPD.EML","location":{"x":18000000000000000000,"y":-525000000000000000,"z":-5580000000000000000}},"30023114":{"solarSystemId":30023114,"solarSystemName":"R.4TL.XM1","location":{"x":16500000000000000000,"y":56100000000000000,"z":-6340000000000000000}},"30023115":{"solarSystemId":30023115,"solarSystemName":"U.RNL.GG4","location":{"x":16600000000000000000,"y":-171000000000000000,"z":-5560000000000000000}},"30023116":{"solarSystemId":30023116,"solarSystemName":"H.44L.QJ3","location":{"x":16300000000000000000,"y":-137000000000000000,"z":-6150000000000000000}},"30023117":{"solarSystemId":30023117,"solarSystemName":"S.HRC.VK2","location":{"x":18900000000000000000,"y":-107000000000000000,"z":-7280000000000000000}},"30023118":{"solarSystemId":30023118,"solarSystemName":"S.ERC.F53","location":{"x":19000000000000000000,"y":114000000000000000,"z":-8150000000000000000}},"30023119":{"solarSystemId":30023119,"solarSystemName":"A.4RC.7N6","location":{"x":18900000000000000000,"y":230000000000000000,"z":-7000000000000000000}},"30023120":{"solarSystemId":30023120,"solarSystemName":"C.VVM.001","location":{"x":20300000000000000000,"y":-1150000000000000000,"z":-7330000000000000000}},"30023121":{"solarSystemId":30023121,"solarSystemName":"M.22D.KJJ","location":{"x":17400000000000000000,"y":-930000000000000000,"z":-8470000000000000000}},"30023122":{"solarSystemId":30023122,"solarSystemName":"M.Z1C.D7K","location":{"x":18500000000000000000,"y":-1090000000000000000,"z":-7960000000000000000}},"30023123":{"solarSystemId":30023123,"solarSystemName":"M.3PC.DFY","location":{"x":19100000000000000000,"y":-997000000000000000,"z":-7470000000000000000}},"30023124":{"solarSystemId":30023124,"solarSystemName":"S.PCM.WHN","location":{"x":20200000000000000000,"y":460000000000000000,"z":-3860000000000000000}},"30023125":{"solarSystemId":30023125,"solarSystemName":"A.QDM.X4X","location":{"x":20200000000000000000,"y":29400000000000000,"z":-4140000000000000000}},"30023126":{"solarSystemId":30023126,"solarSystemName":"U.FDM.J59","location":{"x":20200000000000000000,"y":331000000000000000,"z":-5150000000000000000}},"30023127":{"solarSystemId":30023127,"solarSystemName":"U.14M.7F1","location":{"x":19700000000000000000,"y":-59900000000000000,"z":-5120000000000000000}},"30023128":{"solarSystemId":30023128,"solarSystemName":"E.PDM.M0T","location":{"x":20200000000000000000,"y":397000000000000000,"z":-5270000000000000000}},"30023129":{"solarSystemId":30023129,"solarSystemName":"N.CKC.QMR","location":{"x":19500000000000000000,"y":-488000000000000000,"z":-4780000000000000000}},"30023130":{"solarSystemId":30023130,"solarSystemName":"L.DDM.Y04","location":{"x":20200000000000000000,"y":-4530000000000000,"z":-4520000000000000000}},"30023131":{"solarSystemId":30023131,"solarSystemName":"U.E7P.1C4","location":{"x":21000000000000000000,"y":162000000000000000,"z":-6180000000000000000}},"30023132":{"solarSystemId":30023132,"solarSystemName":"S.41Q.2HN","location":{"x":23100000000000000000,"y":459000000000000000,"z":-7930000000000000000}},"30023133":{"solarSystemId":30023133,"solarSystemName":"T.9VV.Q0Z","location":{"x":22600000000000000000,"y":-31500000000000000,"z":-7580000000000000000}},"30023134":{"solarSystemId":30023134,"solarSystemName":"E.DHP.8P5","location":{"x":21600000000000000000,"y":-201000000000000000,"z":-6140000000000000000}},"30023135":{"solarSystemId":30023135,"solarSystemName":"N.P9B.4B6","location":{"x":25700000000000000000,"y":-241000000000000000,"z":-7160000000000000000}},"30023136":{"solarSystemId":30023136,"solarSystemName":"A.5MV.GLP","location":{"x":22500000000000000000,"y":-665000000000000000,"z":-8330000000000000000}},"30023137":{"solarSystemId":30023137,"solarSystemName":"E.PED.511","location":{"x":18400000000000000000,"y":37400000000000000,"z":-5870000000000000000}},"30023138":{"solarSystemId":30023138,"solarSystemName":"S.84C.07B","location":{"x":18600000000000000000,"y":25000000000000000,"z":-6860000000000000000}},"30023139":{"solarSystemId":30023139,"solarSystemName":"I.0ZD.CJT","location":{"x":18300000000000000000,"y":-425000000000000000,"z":-5200000000000000000}},"30023140":{"solarSystemId":30023140,"solarSystemName":"E.CVC.469","location":{"x":19100000000000000000,"y":-331000000000000000,"z":-6050000000000000000}},"30023141":{"solarSystemId":30023141,"solarSystemName":"H.WKD.FXD","location":{"x":18400000000000000000,"y":-570000000000000000,"z":-5890000000000000000}},"30023142":{"solarSystemId":30023142,"solarSystemName":"S.TQD.7P4","location":{"x":18000000000000000000,"y":165000000000000000,"z":-6780000000000000000}},"30023143":{"solarSystemId":30023143,"solarSystemName":"L.88C.WL4","location":{"x":18700000000000000000,"y":-161000000000000000,"z":-5440000000000000000}},"30023144":{"solarSystemId":30023144,"solarSystemName":"E.QQC.MHS","location":{"x":19200000000000000000,"y":388000000000000000,"z":-6090000000000000000}},"30023145":{"solarSystemId":30023145,"solarSystemName":"L.ZWC.GJT","location":{"x":19500000000000000000,"y":-425000000000000000,"z":-2900000000000000000}},"30023146":{"solarSystemId":30023146,"solarSystemName":"R.48C.S0N","location":{"x":18700000000000000000,"y":433000000000000000,"z":-3820000000000000000}},"30023147":{"solarSystemId":30023147,"solarSystemName":"I.V8D.BQR","location":{"x":17600000000000000000,"y":-492000000000000000,"z":-4630000000000000000}},"30023148":{"solarSystemId":30023148,"solarSystemName":"U.Z0C.0C8","location":{"x":18500000000000000000,"y":-306000000000000000,"z":-4150000000000000000}},"30023149":{"solarSystemId":30023149,"solarSystemName":"E.LNP.CD8","location":{"x":21200000000000000000,"y":-306000000000000000,"z":-4280000000000000000}},"30023150":{"solarSystemId":30023150,"solarSystemName":"D.ENM.52L","location":{"x":20100000000000000000,"y":-507000000000000000,"z":-3350000000000000000}},"30023151":{"solarSystemId":30023151,"solarSystemName":"U.LSM.4GN","location":{"x":20000000000000000000,"y":-458000000000000000,"z":-3070000000000000000}},"30023152":{"solarSystemId":30023152,"solarSystemName":"C.VLP.T41","location":{"x":21300000000000000000,"y":-1310000000000000000,"z":-5630000000000000000}},"30023153":{"solarSystemId":30023153,"solarSystemName":"L.JGC.H75","location":{"x":19300000000000000000,"y":-6040000000000000000,"z":-11200000000000000000}},"30023154":{"solarSystemId":30023154,"solarSystemName":"H.FKD.K82","location":{"x":18400000000000000000,"y":-2630000000000000000,"z":-11000000000000000000}},"30023155":{"solarSystemId":30023155,"solarSystemName":"T.RDC.491","location":{"x":19000000000000000000,"y":-1480000000000000000,"z":-6110000000000000000}},"30023156":{"solarSystemId":30023156,"solarSystemName":"N.YHC.E64","location":{"x":19300000000000000000,"y":-4860000000000000000,"z":-7880000000000000000}},"30023157":{"solarSystemId":30023157,"solarSystemName":"R.QVC.4S4","location":{"x":19200000000000000000,"y":-4980000000000000000,"z":-7700000000000000000}},"30023158":{"solarSystemId":30023158,"solarSystemName":"N.3SM.KJN","location":{"x":20000000000000000000,"y":-462000000000000000,"z":-5330000000000000000}},"30023159":{"solarSystemId":30023159,"solarSystemName":"N.QZM.B59","location":{"x":20600000000000000000,"y":-331000000000000000,"z":-6250000000000000000}},"30023160":{"solarSystemId":30023160,"solarSystemName":"L.1NM.4PP","location":{"x":20000000000000000000,"y":-669000000000000000,"z":-5520000000000000000}},"30023161":{"solarSystemId":30023161,"solarSystemName":"E.JGM.0V9","location":{"x":20500000000000000000,"y":-346000000000000000,"z":-5890000000000000000}},"30023162":{"solarSystemId":30023162,"solarSystemName":"R.Q9M.61N","location":{"x":19900000000000000000,"y":-434000000000000000,"z":-5340000000000000000}},"30023163":{"solarSystemId":30023163,"solarSystemName":"C.VDM.1TJ","location":{"x":20200000000000000000,"y":-913000000000000000,"z":-6560000000000000000}},"30023164":{"solarSystemId":30023164,"solarSystemName":"C.W6M.L2X","location":{"x":19800000000000000000,"y":-940000000000000000,"z":-5650000000000000000}},"30023165":{"solarSystemId":30023165,"solarSystemName":"C.M3M.01G","location":{"x":19700000000000000000,"y":-830000000000000000,"z":-6130000000000000000}},"30023166":{"solarSystemId":30023166,"solarSystemName":"T.LKM.E4S","location":{"x":20700000000000000000,"y":-366000000000000000,"z":-8180000000000000000}},"30023167":{"solarSystemId":30023167,"solarSystemName":"H.N6V.G91","location":{"x":22100000000000000000,"y":-47000000000000000,"z":-8930000000000000000}},"30023168":{"solarSystemId":30023168,"solarSystemName":"L.S3M.5H8","location":{"x":19700000000000000000,"y":315000000000000000,"z":-9360000000000000000}},"30023169":{"solarSystemId":30023169,"solarSystemName":"I.C1M.M13","location":{"x":19700000000000000000,"y":110000000000000000,"z":-8430000000000000000}},"30023170":{"solarSystemId":30023170,"solarSystemName":"R.CSP.3K8","location":{"x":21100000000000000000,"y":322000000000000000,"z":-8700000000000000000}},"30023171":{"solarSystemId":30023171,"solarSystemName":"T.0XM.1B1","location":{"x":20500000000000000000,"y":60900000000000000,"z":-8350000000000000000}},"30023172":{"solarSystemId":30023172,"solarSystemName":"A.81P.4ZQ","location":{"x":20800000000000000000,"y":23500000000000000,"z":-5380000000000000000}},"30023173":{"solarSystemId":30023173,"solarSystemName":"E.03P.LR8","location":{"x":20900000000000000000,"y":-303000000000000000,"z":-5130000000000000000}},"30023174":{"solarSystemId":30023174,"solarSystemName":"U.87P.T92","location":{"x":21000000000000000000,"y":-82600000000000000,"z":-5480000000000000000}},"30023175":{"solarSystemId":30023175,"solarSystemName":"N.7XM.S58","location":{"x":20500000000000000000,"y":-294000000000000000,"z":-5280000000000000000}},"30023176":{"solarSystemId":30023176,"solarSystemName":"U.5YM.WD9","location":{"x":20600000000000000000,"y":-342000000000000000,"z":-5250000000000000000}},"30023177":{"solarSystemId":30023177,"solarSystemName":"U.VXM.GXN","location":{"x":20600000000000000000,"y":462000000000000000,"z":-5540000000000000000}},"30023178":{"solarSystemId":30023178,"solarSystemName":"E.2HM.2RR","location":{"x":20500000000000000000,"y":-483000000000000000,"z":-5510000000000000000}},"30023179":{"solarSystemId":30023179,"solarSystemName":"N.5SH.NL4","location":{"x":28000000000000000000,"y":-160000000000000000,"z":-11900000000000000000}},"30023180":{"solarSystemId":30023180,"solarSystemName":"T.KKG.E54","location":{"x":27600000000000000000,"y":-151000000000000000,"z":-11000000000000000000}},"30023181":{"solarSystemId":30023181,"solarSystemName":"U.GSH.K95","location":{"x":28100000000000000000,"y":-191000000000000000,"z":-11800000000000000000}},"30023182":{"solarSystemId":30023182,"solarSystemName":"H.4ZG.86L","location":{"x":27500000000000000000,"y":-511000000000000000,"z":-10900000000000000000}},"30023183":{"solarSystemId":30023183,"solarSystemName":"S.P9H.FV2","location":{"x":28000000000000000000,"y":-94200000000000000,"z":-8880000000000000000}},"30023184":{"solarSystemId":30023184,"solarSystemName":"E.J0F.S09","location":{"x":24200000000000000000,"y":325000000000000000,"z":-10800000000000000000}},"30023185":{"solarSystemId":30023185,"solarSystemName":"N.0HQ.H1S","location":{"x":23900000000000000000,"y":362000000000000000,"z":-12500000000000000000}},"30023186":{"solarSystemId":30023186,"solarSystemName":"L.06F.XNS","location":{"x":24400000000000000000,"y":375000000000000000,"z":-11500000000000000000}},"30023187":{"solarSystemId":30023187,"solarSystemName":"I.K0Q.R17","location":{"x":23100000000000000000,"y":254000000000000000,"z":-11500000000000000000}},"30023188":{"solarSystemId":30023188,"solarSystemName":"N.78Q.R82","location":{"x":23400000000000000000,"y":81500000000000000,"z":-12700000000000000000}},"30023189":{"solarSystemId":30023189,"solarSystemName":"O.6WV.LK1","location":{"x":23000000000000000000,"y":-2250000000000000000,"z":-13800000000000000000}},"30023190":{"solarSystemId":30023190,"solarSystemName":"I70-0T8","location":{"x":32900000000000000000,"y":-13800000000000000000,"z":-9610000000000000000}},"30023191":{"solarSystemId":30023191,"solarSystemName":"AK6-9R8","location":{"x":32500000000000000000,"y":-5510000000000000000,"z":-10200000000000000000}},"30023192":{"solarSystemId":30023192,"solarSystemName":"OB2-HN8","location":{"x":28000000000000000000,"y":-10000000000000000000,"z":-15800000000000000000}},"30023193":{"solarSystemId":30023193,"solarSystemName":"IF4-HP8","location":{"x":28900000000000000000,"y":-10100000000000000000,"z":-16100000000000000000}},"30023194":{"solarSystemId":30023194,"solarSystemName":"E91-LV8","location":{"x":35300000000000000000,"y":-15000000000000000000,"z":-12500000000000000000}},"30023195":{"solarSystemId":30023195,"solarSystemName":"EBL-0R8","location":{"x":30000000000000000000,"y":-13800000000000000000,"z":-10600000000000000000}},"30023196":{"solarSystemId":30023196,"solarSystemName":"IBF-KM8","location":{"x":27200000000000000000,"y":-12600000000000000000,"z":-8820000000000000000}},"30023197":{"solarSystemId":30023197,"solarSystemName":"UD9-7N8","location":{"x":28100000000000000000,"y":-11700000000000000000,"z":-10500000000000000000}},"30023198":{"solarSystemId":30023198,"solarSystemName":"OH5-3N8","location":{"x":27400000000000000000,"y":-13300000000000000000,"z":-10000000000000000000}},"30023199":{"solarSystemId":30023199,"solarSystemName":"ISV-PN8","location":{"x":27800000000000000000,"y":-14000000000000000000,"z":-10100000000000000000}},"30023200":{"solarSystemId":30023200,"solarSystemName":"E8D-NL8","location":{"x":25900000000000000000,"y":-13700000000000000000,"z":-9160000000000000000}},"30023201":{"solarSystemId":30023201,"solarSystemName":"EGB-1L8","location":{"x":25600000000000000000,"y":-12500000000000000000,"z":-9770000000000000000}},"30023202":{"solarSystemId":30023202,"solarSystemName":"IBF-RL8","location":{"x":26300000000000000000,"y":-12600000000000000000,"z":-9640000000000000000}},"30023203":{"solarSystemId":30023203,"solarSystemName":"OKK-GL8","location":{"x":26000000000000000000,"y":-12800000000000000000,"z":-8890000000000000000}},"30023204":{"solarSystemId":30023204,"solarSystemName":"OBS-FM8","location":{"x":26600000000000000000,"y":-13500000000000000000,"z":-8400000000000000000}},"30023205":{"solarSystemId":30023205,"solarSystemName":"A18-RM8","location":{"x":27100000000000000000,"y":-13500000000000000000,"z":-9590000000000000000}},"30023206":{"solarSystemId":30023206,"solarSystemName":"I8K-SQ8","location":{"x":29800000000000000000,"y":-14000000000000000000,"z":-10500000000000000000}},"30023207":{"solarSystemId":30023207,"solarSystemName":"ERH-MP8","location":{"x":29100000000000000000,"y":-13300000000000000000,"z":-9040000000000000000}},"30023208":{"solarSystemId":30023208,"solarSystemName":"ELR-6P8","location":{"x":28800000000000000000,"y":-12300000000000000000,"z":-10000000000000000000}},"30023209":{"solarSystemId":30023209,"solarSystemName":"OHB-FR8","location":{"x":30600000000000000000,"y":-14000000000000000000,"z":-9710000000000000000}},"30023210":{"solarSystemId":30023210,"solarSystemName":"O4H-9N8","location":{"x":27800000000000000000,"y":-13100000000000000000,"z":-8910000000000000000}},"30023211":{"solarSystemId":30023211,"solarSystemName":"OHP-SS8","location":{"x":32000000000000000000,"y":-15000000000000000000,"z":-13100000000000000000}},"30023212":{"solarSystemId":30023212,"solarSystemName":"EJP-DV8","location":{"x":34800000000000000000,"y":-15000000000000000000,"z":-13200000000000000000}},"30023213":{"solarSystemId":30023213,"solarSystemName":"EVJ-MT8","location":{"x":33300000000000000000,"y":-14700000000000000000,"z":-14400000000000000000}},"30023214":{"solarSystemId":30023214,"solarSystemName":"EVC-LS8","location":{"x":31600000000000000000,"y":-15500000000000000000,"z":-12100000000000000000}},"30023215":{"solarSystemId":30023215,"solarSystemName":"I8Q-FT8","location":{"x":32900000000000000000,"y":-15300000000000000000,"z":-13700000000000000000}},"30023216":{"solarSystemId":30023216,"solarSystemName":"ECS-709","location":{"x":35100000000000000000,"y":-18900000000000000000,"z":-3490000000000000000}},"30023217":{"solarSystemId":30023217,"solarSystemName":"ECF-C09","location":{"x":34500000000000000000,"y":-21000000000000000000,"z":-2340000000000000000}},"30023218":{"solarSystemId":30023218,"solarSystemName":"E4N-QV8","location":{"x":34400000000000000000,"y":-18500000000000000000,"z":-2280000000000000000}},"30023219":{"solarSystemId":30023219,"solarSystemName":"ERN-C09","location":{"x":35300000000000000000,"y":-19400000000000000000,"z":-3060000000000000000}},"30023220":{"solarSystemId":30023220,"solarSystemName":"U5H-909","location":{"x":35300000000000000000,"y":-19100000000000000000,"z":-3070000000000000000}},"30023221":{"solarSystemId":30023221,"solarSystemName":"OP2-C29","location":{"x":41800000000000000000,"y":-20200000000000000000,"z":-2990000000000000000}},"30023222":{"solarSystemId":30023222,"solarSystemName":"E0R-C19","location":{"x":37800000000000000000,"y":-20500000000000000000,"z":-3740000000000000000}},"30023223":{"solarSystemId":30023223,"solarSystemName":"ACS-119","location":{"x":36900000000000000000,"y":-20100000000000000000,"z":-4190000000000000000}},"30023224":{"solarSystemId":30023224,"solarSystemName":"U33-B09","location":{"x":35200000000000000000,"y":-19600000000000000000,"z":-4300000000000000000}},"30023225":{"solarSystemId":30023225,"solarSystemName":"ELK-R09","location":{"x":36400000000000000000,"y":-19800000000000000000,"z":-3720000000000000000}},"30023226":{"solarSystemId":30023226,"solarSystemName":"E1F-6R8","location":{"x":32500000000000000000,"y":-5080000000000000000,"z":-10000000000000000000}},"30023227":{"solarSystemId":30023227,"solarSystemName":"I81-PQ8","location":{"x":31900000000000000000,"y":-5220000000000000000,"z":-9320000000000000000}},"30023228":{"solarSystemId":30023228,"solarSystemName":"OFN-DQ8","location":{"x":31700000000000000000,"y":-5150000000000000000,"z":-9140000000000000000}},"30023229":{"solarSystemId":30023229,"solarSystemName":"I9D-KQ8","location":{"x":31900000000000000000,"y":-4640000000000000000,"z":-9530000000000000000}},"30023230":{"solarSystemId":30023230,"solarSystemName":"IVQ-5Q8","location":{"x":31500000000000000000,"y":-5200000000000000000,"z":-9020000000000000000}},"30023231":{"solarSystemId":30023231,"solarSystemName":"E76-FP8","location":{"x":28500000000000000000,"y":-13300000000000000000,"z":-12100000000000000000}},"30023232":{"solarSystemId":30023232,"solarSystemName":"ON8-DN8","location":{"x":27800000000000000000,"y":-13100000000000000000,"z":-10300000000000000000}},"30023233":{"solarSystemId":30023233,"solarSystemName":"IVC-PN8","location":{"x":28400000000000000000,"y":-11900000000000000000,"z":-10700000000000000000}},"30023234":{"solarSystemId":30023234,"solarSystemName":"IR4-2P8","location":{"x":28500000000000000000,"y":-12400000000000000000,"z":-10600000000000000000}},"30023235":{"solarSystemId":30023235,"solarSystemName":"O1S-GP8","location":{"x":28500000000000000000,"y":-14000000000000000000,"z":-11300000000000000000}},"30023236":{"solarSystemId":30023236,"solarSystemName":"EML-NP8","location":{"x":29400000000000000000,"y":-12600000000000000000,"z":-6530000000000000000}},"30023237":{"solarSystemId":30023237,"solarSystemName":"E86-JS8","location":{"x":32400000000000000000,"y":-13300000000000000000,"z":-5130000000000000000}},"30023238":{"solarSystemId":30023238,"solarSystemName":"OPM-RP8","location":{"x":29500000000000000000,"y":-12600000000000000000,"z":-6920000000000000000}},"30023239":{"solarSystemId":30023239,"solarSystemName":"ESH-7R8","location":{"x":30700000000000000000,"y":-12700000000000000000,"z":-2740000000000000000}},"30023240":{"solarSystemId":30023240,"solarSystemName":"EM7-DR8","location":{"x":30800000000000000000,"y":-12700000000000000000,"z":-2900000000000000000}},"30023241":{"solarSystemId":30023241,"solarSystemName":"I7Q-7M8","location":{"x":26600000000000000000,"y":-12600000000000000000,"z":-3050000000000000000}},"30023242":{"solarSystemId":30023242,"solarSystemName":"EQ4-VK8","location":{"x":25800000000000000000,"y":-12000000000000000000,"z":-7840000000000000000}},"30023243":{"solarSystemId":30023243,"solarSystemName":"IJ0-KN8","location":{"x":27500000000000000000,"y":-14600000000000000000,"z":-8920000000000000000}},"30023244":{"solarSystemId":30023244,"solarSystemName":"EML-5N8","location":{"x":27100000000000000000,"y":-14600000000000000000,"z":-5720000000000000000}},"30023245":{"solarSystemId":30023245,"solarSystemName":"A39-NN8","location":{"x":28200000000000000000,"y":-12900000000000000000,"z":-6520000000000000000}},"30023246":{"solarSystemId":30023246,"solarSystemName":"D:2NLL","location":{"x":7670000000000000000,"y":4660000000000000000,"z":-1770000000000000000}},"30023247":{"solarSystemId":30023247,"solarSystemName":"Y:3582","location":{"x":5870000000000000000,"y":4580000000000000000,"z":-3500000000000000000}},"30023248":{"solarSystemId":30023248,"solarSystemName":"B:2NT7","location":{"x":7810000000000000000,"y":5790000000000000000,"z":-2060000000000000000}},"30023249":{"solarSystemId":30023249,"solarSystemName":"M:31A1","location":{"x":7860000000000000000,"y":4330000000000000000,"z":-5110000000000000000}},"30023250":{"solarSystemId":30023250,"solarSystemName":"Z:K045","location":{"x":6290000000000000000,"y":6620000000000000000,"z":-1620000000000000000}},"30023251":{"solarSystemId":30023251,"solarSystemName":"M:1AS2","location":{"x":6960000000000000000,"y":3440000000000000000,"z":-4690000000000000000}},"30023252":{"solarSystemId":30023252,"solarSystemName":"Q:3TLK","location":{"x":7280000000000000000,"y":6520000000000000000,"z":-4650000000000000000}},"30023253":{"solarSystemId":30023253,"solarSystemName":"F:37A6","location":{"x":6330000000000000000,"y":7280000000000000000,"z":-5250000000000000000}},"30023254":{"solarSystemId":30023254,"solarSystemName":"Z:3OE3","location":{"x":6990000000000000000,"y":6570000000000000000,"z":-3350000000000000000}},"30023255":{"solarSystemId":30023255,"solarSystemName":"J:3S56","location":{"x":4900000000000000000,"y":5750000000000000000,"z":-6130000000000000000}},"30023256":{"solarSystemId":30023256,"solarSystemName":"Y:30SS","location":{"x":4400000000000000000,"y":8020000000000000000,"z":-3350000000000000000}},"30023257":{"solarSystemId":30023257,"solarSystemName":"B:3I8V","location":{"x":8100000000000000000,"y":10400000000000000000,"z":-2010000000000000000}},"30023258":{"solarSystemId":30023258,"solarSystemName":"P:302S","location":{"x":7250000000000000000,"y":11500000000000000000,"z":-2000000000000000000}},"30023259":{"solarSystemId":30023259,"solarSystemName":"H:3I9A","location":{"x":5470000000000000000,"y":10200000000000000000,"z":-2330000000000000000}},"30023260":{"solarSystemId":30023260,"solarSystemName":"M:3455","location":{"x":4620000000000000000,"y":10600000000000000000,"z":-327000000000000000}},"30023261":{"solarSystemId":30023261,"solarSystemName":"Z:3A1I","location":{"x":8040000000000000000,"y":8710000000000000000,"z":-2700000000000000000}},"30023262":{"solarSystemId":30023262,"solarSystemName":"Y:36VS","location":{"x":8040000000000000000,"y":6500000000000000000,"z":-9340000000000000000}},"30023263":{"solarSystemId":30023263,"solarSystemName":"Z:3N64","location":{"x":9220000000000000000,"y":9360000000000000000,"z":-7340000000000000000}},"30023264":{"solarSystemId":30023264,"solarSystemName":"J:3556","location":{"x":7860000000000000000,"y":9620000000000000000,"z":-9680000000000000000}},"30023265":{"solarSystemId":30023265,"solarSystemName":"H:3NA6","location":{"x":8560000000000000000,"y":9940000000000000000,"z":-4650000000000000000}},"30023266":{"solarSystemId":30023266,"solarSystemName":"P:2A43","location":{"x":9180000000000000000,"y":9730000000000000000,"z":-5430000000000000000}},"30023267":{"solarSystemId":30023267,"solarSystemName":"D:3V1L","location":{"x":12400000000000000000,"y":9630000000000000000,"z":-2530000000000000000}},"30023268":{"solarSystemId":30023268,"solarSystemName":"Z:3RAS","location":{"x":10700000000000000000,"y":11000000000000000000,"z":767000000000000000}},"30023269":{"solarSystemId":30023269,"solarSystemName":"Y:2REE","location":{"x":9140000000000000000,"y":8170000000000000000,"z":287000000000000000}},"30023270":{"solarSystemId":30023270,"solarSystemName":"Z:2RS3","location":{"x":7820000000000000000,"y":7130000000000000000,"z":-625000000000000000}},"30023271":{"solarSystemId":30023271,"solarSystemName":"Q:37SE","location":{"x":7620000000000000000,"y":6570000000000000000,"z":-334000000000000000}},"30023272":{"solarSystemId":30023272,"solarSystemName":"J:3ES7","location":{"x":12200000000000000000,"y":6370000000000000000,"z":-6910000000000000000}},"30023273":{"solarSystemId":30023273,"solarSystemName":"U:3212","location":{"x":10800000000000000000,"y":5210000000000000000,"z":-7910000000000000000}},"30023274":{"solarSystemId":30023274,"solarSystemName":"Y:2R10","location":{"x":11000000000000000000,"y":5460000000000000000,"z":-6730000000000000000}},"30023275":{"solarSystemId":30023275,"solarSystemName":"M:33K8","location":{"x":8900000000000000000,"y":5180000000000000000,"z":-6010000000000000000}},"30023276":{"solarSystemId":30023276,"solarSystemName":"D:2LA5","location":{"x":10900000000000000000,"y":5760000000000000000,"z":-8770000000000000000}},"30023277":{"solarSystemId":30023277,"solarSystemName":"F:39LI","location":{"x":5480000000000000000,"y":7800000000000000000,"z":-4740000000000000000}},"30023278":{"solarSystemId":30023278,"solarSystemName":"J:2NN0","location":{"x":3950000000000000000,"y":9530000000000000000,"z":-3760000000000000000}},"30023279":{"solarSystemId":30023279,"solarSystemName":"D:3E5T","location":{"x":5740000000000000000,"y":10600000000000000000,"z":-6240000000000000000}},"30023280":{"solarSystemId":30023280,"solarSystemName":"J:3VT3","location":{"x":5920000000000000000,"y":9710000000000000000,"z":-7380000000000000000}},"30023281":{"solarSystemId":30023281,"solarSystemName":"F:2A1N","location":{"x":3970000000000000000,"y":8050000000000000000,"z":-6470000000000000000}},"30023282":{"solarSystemId":30023282,"solarSystemName":"R.6V8.7GN","location":{"x":9920000000000000000,"y":-459000000000000000,"z":-19900000000000000000}},"30023283":{"solarSystemId":30023283,"solarSystemName":"S.N38.SL4","location":{"x":9350000000000000000,"y":-160000000000000000,"z":-18700000000000000000}},"30023284":{"solarSystemId":30023284,"solarSystemName":"L.KD8.73R","location":{"x":9800000000000000000,"y":-472000000000000000,"z":-19300000000000000000}},"30023285":{"solarSystemId":30023285,"solarSystemName":"T.WD8.6J1","location":{"x":9800000000000000000,"y":64400000000000000,"z":-19100000000000000000}},"30023286":{"solarSystemId":30023286,"solarSystemName":"A.B18.1H2","location":{"x":9280000000000000000,"y":-99100000000000000,"z":-19300000000000000000}},"30023287":{"solarSystemId":30023287,"solarSystemName":"I.DX8.QV5","location":{"x":10200000000000000000,"y":202000000000000000,"z":-20500000000000000000}},"30023288":{"solarSystemId":30023288,"solarSystemName":"L.EV8.KT5","location":{"x":9940000000000000000,"y":-194000000000000000,"z":-19800000000000000000}},"30023289":{"solarSystemId":30023289,"solarSystemName":"D.PZ8.MXR","location":{"x":10300000000000000000,"y":-498000000000000000,"z":-19000000000000000000}},"30023290":{"solarSystemId":30023290,"solarSystemName":"U.B07.ZPD","location":{"x":8100000000000000000,"y":-562000000000000000,"z":-21700000000000000000}},"30023291":{"solarSystemId":30023291,"solarSystemName":"T.477.7V5","location":{"x":8330000000000000000,"y":-202000000000000000,"z":-21300000000000000000}},"30023292":{"solarSystemId":30023292,"solarSystemName":"E.DR7.MR7","location":{"x":8560000000000000000,"y":267000000000000000,"z":-21200000000000000000}},"30023293":{"solarSystemId":30023293,"solarSystemName":"R.EM6.DYT","location":{"x":7570000000000000000,"y":-427000000000000000,"z":-21500000000000000000}},"30023294":{"solarSystemId":30023294,"solarSystemName":"U.JJ6.K92","location":{"x":7850000000000000000,"y":-83300000000000000,"z":-22000000000000000000}},"30023295":{"solarSystemId":30023295,"solarSystemName":"S.CJ6.4WS","location":{"x":7840000000000000000,"y":-393000000000000000,"z":-22300000000000000000}},"30023296":{"solarSystemId":30023296,"solarSystemName":"R.Q87.B68","location":{"x":8380000000000000000,"y":-296000000000000000,"z":-21200000000000000000}},"30023297":{"solarSystemId":30023297,"solarSystemName":"D.KT7.T07","location":{"x":8500000000000000000,"y":253000000000000000,"z":-21900000000000000000}},"30023298":{"solarSystemId":30023298,"solarSystemName":"A.DW5.XM3","location":{"x":6830000000000000000,"y":-128000000000000000,"z":-22000000000000000000}},"30023299":{"solarSystemId":30023299,"solarSystemName":"L.RD6.P96","location":{"x":7470000000000000000,"y":-227000000000000000,"z":-21300000000000000000}},"30023300":{"solarSystemId":30023300,"solarSystemName":"I.0G7.65D","location":{"x":8900000000000000000,"y":-546000000000000000,"z":-23800000000000000000}},"30023301":{"solarSystemId":30023301,"solarSystemName":"E.Z18.5C8","location":{"x":9290000000000000000,"y":-306000000000000000,"z":-22200000000000000000}},"30023302":{"solarSystemId":30023302,"solarSystemName":"L.ZT9.E4Q","location":{"x":10800000000000000000,"y":-22700000000000000,"z":-22600000000000000000}},"30023303":{"solarSystemId":30023303,"solarSystemName":"S.12T.GT6","location":{"x":12800000000000000000,"y":229000000000000000,"z":-23100000000000000000}},"30023304":{"solarSystemId":30023304,"solarSystemName":"H.579.Q11","location":{"x":10600000000000000000,"y":-37900000000000000,"z":-22700000000000000000}},"30023305":{"solarSystemId":30023305,"solarSystemName":"E.QQ7.ZMS","location":{"x":8810000000000000000,"y":-380000000000000000,"z":-23400000000000000000}},"30023306":{"solarSystemId":30023306,"solarSystemName":"R.T67.166","location":{"x":8300000000000000000,"y":-223000000000000000,"z":-19400000000000000000}},"30023307":{"solarSystemId":30023307,"solarSystemName":"E.C77.5EZ","location":{"x":8340000000000000000,"y":32600000000000000,"z":-19800000000000000000}},"30023308":{"solarSystemId":30023308,"solarSystemName":"A.V87.CD6","location":{"x":8380000000000000000,"y":-234000000000000000,"z":-19900000000000000000}},"30023309":{"solarSystemId":30023309,"solarSystemName":"A.6F6.CE4","location":{"x":7680000000000000000,"y":180000000000000000,"z":-19300000000000000000}},"30023310":{"solarSystemId":30023310,"solarSystemName":"R.067.H12","location":{"x":8290000000000000000,"y":-74100000000000000,"z":-20000000000000000000}},"30023311":{"solarSystemId":30023311,"solarSystemName":"L.J57.RLS","location":{"x":8280000000000000000,"y":11800000000000000,"z":-18800000000000000000}},"30023312":{"solarSystemId":30023312,"solarSystemName":"R.477.V81","location":{"x":8330000000000000000,"y":-45700000000000000,"z":-19500000000000000000}},"30023313":{"solarSystemId":30023313,"solarSystemName":"N.2J7.TK5","location":{"x":8970000000000000000,"y":-214000000000000000,"z":-21200000000000000000}},"30023314":{"solarSystemId":30023314,"solarSystemName":"R.8T7.53M","location":{"x":8480000000000000000,"y":-616000000000000000,"z":-21700000000000000000}},"30023315":{"solarSystemId":30023315,"solarSystemName":"N.7Z8.90C","location":{"x":10200000000000000000,"y":-577000000000000000,"z":-20300000000000000000}},"30023316":{"solarSystemId":30023316,"solarSystemName":"R.3P7.FEL","location":{"x":8720000000000000000,"y":-540000000000000000,"z":-21500000000000000000}},"30023317":{"solarSystemId":30023317,"solarSystemName":"C.PS9.M22","location":{"x":10800000000000000000,"y":-2400000000000000000,"z":-22300000000000000000}},"30023318":{"solarSystemId":30023318,"solarSystemName":"I.1B6.R57","location":{"x":7710000000000000000,"y":-258000000000000000,"z":-19100000000000000000}},"30023319":{"solarSystemId":30023319,"solarSystemName":"H.456.JBQ","location":{"x":7100000000000000000,"y":-746000000000000000,"z":-19000000000000000000}},"30023320":{"solarSystemId":30023320,"solarSystemName":"A.D26.7W3","location":{"x":7010000000000000000,"y":-141000000000000000,"z":-18900000000000000000}},"30023321":{"solarSystemId":30023321,"solarSystemName":"I.C46.KPN","location":{"x":7080000000000000000,"y":-454000000000000000,"z":-19200000000000000000}},"30023322":{"solarSystemId":30023322,"solarSystemName":"E.N26.2HC","location":{"x":7000000000000000000,"y":-604000000000000000,"z":-19000000000000000000}},"30023323":{"solarSystemId":30023323,"solarSystemName":"T.KR6.XY1","location":{"x":7420000000000000000,"y":67400000000000000,"z":-19300000000000000000}},"30023324":{"solarSystemId":30023324,"solarSystemName":"T.XG6.67D","location":{"x":7780000000000000000,"y":-549000000000000000,"z":-18900000000000000000}},"30023325":{"solarSystemId":30023325,"solarSystemName":"D.6B7.DY2","location":{"x":8870000000000000000,"y":103000000000000000,"z":-24500000000000000000}},"30023326":{"solarSystemId":30023326,"solarSystemName":"I.GN6.1N1","location":{"x":7380000000000000000,"y":-49600000000000000,"z":-24400000000000000000}},"30023327":{"solarSystemId":30023327,"solarSystemName":"T.9D6.JZ9","location":{"x":7470000000000000000,"y":-357000000000000000,"z":-24100000000000000000}},"30023328":{"solarSystemId":30023328,"solarSystemName":"U.0S6.2KN","location":{"x":7280000000000000000,"y":466000000000000000,"z":-23600000000000000000}},"30023329":{"solarSystemId":30023329,"solarSystemName":"E.7E6.587","location":{"x":8040000000000000000,"y":261000000000000000,"z":-23800000000000000000}},"30023330":{"solarSystemId":30023330,"solarSystemName":"E.3M7.43R","location":{"x":8690000000000000000,"y":472000000000000000,"z":-24300000000000000000}},"30023331":{"solarSystemId":30023331,"solarSystemName":"U.Q96.JR4","location":{"x":7260000000000000000,"y":160000000000000000,"z":-22900000000000000000}},"30023332":{"solarSystemId":30023332,"solarSystemName":"N.NXS.TXW","location":{"x":12500000000000000000,"y":-1070000000000000000,"z":-17400000000000000000}},"30023333":{"solarSystemId":30023333,"solarSystemName":"E.H0N.CC3","location":{"x":13900000000000000000,"y":-127000000000000000,"z":-19200000000000000000}},"30023334":{"solarSystemId":30023334,"solarSystemName":"S.53N.JWH","location":{"x":13900000000000000000,"y":28100000000000000,"z":-19200000000000000000}},"30023335":{"solarSystemId":30023335,"solarSystemName":"R.0P9.15G","location":{"x":11000000000000000000,"y":-834000000000000000,"z":-19100000000000000000}},"30023336":{"solarSystemId":30023336,"solarSystemName":"I.3VT.XKK","location":{"x":13400000000000000000,"y":1120000000000000000,"z":-21400000000000000000}},"30023337":{"solarSystemId":30023337,"solarSystemName":"O.1JN.022","location":{"x":14700000000000000000,"y":-2380000000000000000,"z":-21000000000000000000}},"30023338":{"solarSystemId":30023338,"solarSystemName":"T.KTT.3ST","location":{"x":13100000000000000000,"y":408000000000000000,"z":-22600000000000000000}},"30023339":{"solarSystemId":30023339,"solarSystemName":"N.YVS.NF6","location":{"x":12200000000000000000,"y":-240000000000000000,"z":-25000000000000000000}},"30023340":{"solarSystemId":30023340,"solarSystemName":"A.RMN.LXZ","location":{"x":14500000000000000000,"y":-32500000000000000,"z":-22400000000000000000}},"30023341":{"solarSystemId":30023341,"solarSystemName":"S.QVN.6PM","location":{"x":14500000000000000000,"y":633000000000000000,"z":-22800000000000000000}},"30023342":{"solarSystemId":30023342,"solarSystemName":"T.ELN.L81","location":{"x":14400000000000000000,"y":-45500000000000000,"z":-24300000000000000000}},"30023343":{"solarSystemId":30023343,"solarSystemName":"A.ECM.369","location":{"x":20200000000000000000,"y":-10600000000000000000,"z":3210000000000000000}},"30023344":{"solarSystemId":30023344,"solarSystemName":"H.R0M.FT9","location":{"x":19600000000000000000,"y":-10800000000000000000,"z":4300000000000000000}},"30023345":{"solarSystemId":30023345,"solarSystemName":"A.L8D.C06","location":{"x":17600000000000000000,"y":-6940000000000000000,"z":4670000000000000000}},"30023346":{"solarSystemId":30023346,"solarSystemName":"M.KSD.CSR","location":{"x":17700000000000000000,"y":-15400000000000000000,"z":6450000000000000000}},"30023347":{"solarSystemId":30023347,"solarSystemName":"M.Z1L.Z15","location":{"x":16200000000000000000,"y":-5830000000000000000,"z":6020000000000000000}},"30023348":{"solarSystemId":30023348,"solarSystemName":"R.8XP.603","location":{"x":21700000000000000000,"y":-3470000000000000000,"z":2960000000000000000}},"30023349":{"solarSystemId":30023349,"solarSystemName":"A.4XC.MK2","location":{"x":19400000000000000000,"y":-3410000000000000000,"z":3410000000000000000}},"30023350":{"solarSystemId":30023350,"solarSystemName":"E.LYD.F15","location":{"x":18300000000000000000,"y":-5820000000000000000,"z":4700000000000000000}},"30023351":{"solarSystemId":30023351,"solarSystemName":"T.M3V.TF2","location":{"x":22000000000000000000,"y":-3080000000000000000,"z":2330000000000000000}},"30023352":{"solarSystemId":30023352,"solarSystemName":"R.FJM.GTW","location":{"x":20500000000000000000,"y":-1060000000000000000,"z":1570000000000000000}},"30023353":{"solarSystemId":30023353,"solarSystemName":"N.W4C.SM2","location":{"x":18600000000000000000,"y":-2930000000000000000,"z":3720000000000000000}},"30023354":{"solarSystemId":30023354,"solarSystemName":"T.PCM.SDH","location":{"x":20200000000000000000,"y":-882000000000000000,"z":7080000000000000000}},"30023355":{"solarSystemId":30023355,"solarSystemName":"A.4KL.RNL","location":{"x":17200000000000000000,"y":-518000000000000000,"z":4470000000000000000}},"30023356":{"solarSystemId":30023356,"solarSystemName":"N.79M.DRZ","location":{"x":19900000000000000000,"y":-1020000000000000000,"z":7360000000000000000}},"30023357":{"solarSystemId":30023357,"solarSystemName":"I.LHD.J9W","location":{"x":18200000000000000000,"y":-1060000000000000000,"z":7490000000000000000}},"30023358":{"solarSystemId":30023358,"solarSystemName":"A.12M.S8X","location":{"x":19700000000000000000,"y":-946000000000000000,"z":6850000000000000000}},"30023359":{"solarSystemId":30023359,"solarSystemName":"T.Y1M.6G3","location":{"x":19700000000000000000,"y":-4300000000000000000,"z":4640000000000000000}},"30023360":{"solarSystemId":30023360,"solarSystemName":"T.YTP.FEN","location":{"x":21200000000000000000,"y":-468000000000000000,"z":5030000000000000000}},"30023361":{"solarSystemId":30023361,"solarSystemName":"N.C6C.HC2","location":{"x":18700000000000000000,"y":-2910000000000000000,"z":4260000000000000000}},"30023362":{"solarSystemId":30023362,"solarSystemName":"H.D1D.Z72","location":{"x":17300000000000000000,"y":-2590000000000000000,"z":4960000000000000000}},"30023363":{"solarSystemId":30023363,"solarSystemName":"S.KBL.NN2","location":{"x":17000000000000000000,"y":-2750000000000000000,"z":3660000000000000000}},"30023364":{"solarSystemId":30023364,"solarSystemName":"R.63L.Z62","location":{"x":16300000000000000000,"y":-2550000000000000000,"z":3610000000000000000}},"30023365":{"solarSystemId":30023365,"solarSystemName":"S.3PL.F82","location":{"x":16800000000000000000,"y":-2620000000000000000,"z":3310000000000000000}},"30023366":{"solarSystemId":30023366,"solarSystemName":"U.Q3D.GP2","location":{"x":17400000000000000000,"y":-2980000000000000000,"z":3490000000000000000}},"30023367":{"solarSystemId":30023367,"solarSystemName":"I.3EL.Q82","location":{"x":17300000000000000000,"y":-2620000000000000000,"z":5570000000000000000}},"30023368":{"solarSystemId":30023368,"solarSystemName":"L.GSD.X92","location":{"x":17700000000000000000,"y":-2660000000000000000,"z":3560000000000000000}},"30023369":{"solarSystemId":30023369,"solarSystemName":"D.P3P.LY6","location":{"x":20900000000000000000,"y":-7910000000000000000,"z":1390000000000000000}},"30023370":{"solarSystemId":30023370,"solarSystemName":"D.BPP.398","location":{"x":21400000000000000000,"y":-9550000000000000000,"z":1990000000000000000}},"30023371":{"solarSystemId":30023371,"solarSystemName":"H.VZV.CS6","location":{"x":22900000000000000000,"y":-7300000000000000000,"z":1260000000000000000}},"30023372":{"solarSystemId":30023372,"solarSystemName":"D.1MP.029","location":{"x":21400000000000000000,"y":-10400000000000000000,"z":3210000000000000000}},"30023373":{"solarSystemId":30023373,"solarSystemName":"N.3WV.6W6","location":{"x":23000000000000000000,"y":-7970000000000000000,"z":-498000000000000000}},"30023374":{"solarSystemId":30023374,"solarSystemName":"E.9F3.6QP","location":{"x":4230000000000000000,"y":-671000000000000000,"z":-24400000000000000000}},"30023375":{"solarSystemId":30023375,"solarSystemName":"H.CP3.QS9","location":{"x":4130000000000000000,"y":-336000000000000000,"z":-24800000000000000000}},"30023376":{"solarSystemId":30023376,"solarSystemName":"T.9M4.4MT","location":{"x":5230000000000000000,"y":-416000000000000000,"z":-23900000000000000000}},"30023377":{"solarSystemId":30023377,"solarSystemName":"S.FQ3.VKJ","location":{"x":4200000000000000000,"y":-935000000000000000,"z":-25800000000000000000}},"30023378":{"solarSystemId":30023378,"solarSystemName":"D.G63.NYN","location":{"x":3700000000000000000,"y":-463000000000000000,"z":-25200000000000000000}},"30023379":{"solarSystemId":30023379,"solarSystemName":"I.GJ2.RJZ","location":{"x":3230000000000000000,"y":-1040000000000000000,"z":-23600000000000000000}},"30023380":{"solarSystemId":30023380,"solarSystemName":"N.R92.Z3W","location":{"x":2650000000000000000,"y":-1050000000000000000,"z":-27500000000000000000}},"30023381":{"solarSystemId":30023381,"solarSystemName":"A.LD2.NNH","location":{"x":2860000000000000000,"y":-879000000000000000,"z":-29300000000000000000}},"30023382":{"solarSystemId":30023382,"solarSystemName":"U.JL2.SXM","location":{"x":2840000000000000000,"y":-642000000000000000,"z":-29000000000000000000}},"30023383":{"solarSystemId":30023383,"solarSystemName":"H.NM2.SEY","location":{"x":2930000000000000000,"y":-1010000000000000000,"z":-28000000000000000000}},"30023384":{"solarSystemId":30023384,"solarSystemName":"L.192.HY2","location":{"x":2630000000000000000,"y":103000000000000000,"z":-28500000000000000000}},"30023385":{"solarSystemId":30023385,"solarSystemName":"D.B91.Z9H","location":{"x":1500000000000000000,"y":-876000000000000000,"z":-29000000000000000000}},"30023386":{"solarSystemId":30023386,"solarSystemName":"S.0R3.S7S","location":{"x":3930000000000000000,"y":-369000000000000000,"z":-28100000000000000000}},"30023387":{"solarSystemId":30023387,"solarSystemName":"A.233.15H","location":{"x":3570000000000000000,"y":-870000000000000000,"z":-27800000000000000000}},"30023388":{"solarSystemId":30023388,"solarSystemName":"R.WG2.P4Q","location":{"x":3170000000000000000,"y":-726000000000000000,"z":-27700000000000000000}},"30023389":{"solarSystemId":30023389,"solarSystemName":"N.103.L6Q","location":{"x":3460000000000000000,"y":-728000000000000000,"z":-27300000000000000000}},"30023390":{"solarSystemId":30023390,"solarSystemName":"U.PE2.XCP","location":{"x":3440000000000000000,"y":-667000000000000000,"z":-27900000000000000000}},"30023391":{"solarSystemId":30023391,"solarSystemName":"S.W13.01D","location":{"x":3530000000000000000,"y":-542000000000000000,"z":-27800000000000000000}},"30023392":{"solarSystemId":30023392,"solarSystemName":"D.H92.6F5","location":{"x":2660000000000000000,"y":-204000000000000000,"z":-24700000000000000000}},"30023393":{"solarSystemId":30023393,"solarSystemName":"S.QB2.FG5","location":{"x":3120000000000000000,"y":207000000000000000,"z":-24800000000000000000}},"30023394":{"solarSystemId":30023394,"solarSystemName":"S.L32.8C5","location":{"x":2430000000000000000,"y":-198000000000000000,"z":-24600000000000000000}},"30023395":{"solarSystemId":30023395,"solarSystemName":"S.Q91.EKY","location":{"x":1500000000000000000,"y":-1010000000000000000,"z":-24200000000000000000}},"30023396":{"solarSystemId":30023396,"solarSystemName":"I.0X2.4Q3","location":{"x":3240000000000000000,"y":-131000000000000000,"z":-24600000000000000000}},"30023397":{"solarSystemId":30023397,"solarSystemName":"E.3F2.0PL","location":{"x":3070000000000000000,"y":-525000000000000000,"z":-25700000000000000000}},"30023398":{"solarSystemId":30023398,"solarSystemName":"H.086.BW5","location":{"x":7210000000000000000,"y":214000000000000000,"z":-25000000000000000000}},"30023399":{"solarSystemId":30023399,"solarSystemName":"S.6Z4.DXS","location":{"x":5630000000000000000,"y":-390000000000000000,"z":-25800000000000000000}},"30023400":{"solarSystemId":30023400,"solarSystemName":"D.BK5.RBN","location":{"x":6870000000000000000,"y":-458000000000000000,"z":-25100000000000000000}},"30023401":{"solarSystemId":30023401,"solarSystemName":"R.BZ5.9YS","location":{"x":6800000000000000000,"y":-391000000000000000,"z":-25600000000000000000}},"30023402":{"solarSystemId":30023402,"solarSystemName":"U.3P5.ZK6","location":{"x":6420000000000000000,"y":-251000000000000000,"z":-24500000000000000000}},"30023403":{"solarSystemId":30023403,"solarSystemName":"R.WW4.XD5","location":{"x":5690000000000000000,"y":-198000000000000000,"z":-25800000000000000000}},"30023404":{"solarSystemId":30023404,"solarSystemName":"R.X05.1D1","location":{"x":5790000000000000000,"y":53000000000000000,"z":-26300000000000000000}},"30023405":{"solarSystemId":30023405,"solarSystemName":"I.2G4.FYT","location":{"x":5440000000000000000,"y":-427000000000000000,"z":-25900000000000000000}},"30023406":{"solarSystemId":30023406,"solarSystemName":"A.814.E83","location":{"x":4660000000000000000,"y":-118000000000000000,"z":-26900000000000000000}},"30023407":{"solarSystemId":30023407,"solarSystemName":"N.9Y4.ND6","location":{"x":5590000000000000000,"y":-233000000000000000,"z":-26200000000000000000}},"30023408":{"solarSystemId":30023408,"solarSystemName":"R.FJ4.59S","location":{"x":5540000000000000000,"y":-371000000000000000,"z":-25600000000000000000}},"30023409":{"solarSystemId":30023409,"solarSystemName":"E.VJ4.ZZC","location":{"x":5530000000000000000,"y":-609000000000000000,"z":-26800000000000000000}},"30023410":{"solarSystemId":30023410,"solarSystemName":"E.JZ4.X98","location":{"x":5650000000000000000,"y":-299000000000000000,"z":-26000000000000000000}},"30023411":{"solarSystemId":30023411,"solarSystemName":"H.985.NRD","location":{"x":6060000000000000000,"y":-556000000000000000,"z":-26700000000000000000}},"30023412":{"solarSystemId":30023412,"solarSystemName":"S.TN4.V8C","location":{"x":5060000000000000000,"y":-586000000000000000,"z":-28500000000000000000}},"30023413":{"solarSystemId":30023413,"solarSystemName":"T.JF3.BK9","location":{"x":4240000000000000000,"y":-359000000000000000,"z":-28900000000000000000}},"30023414":{"solarSystemId":30023414,"solarSystemName":"S.SF3.Z94","location":{"x":4230000000000000000,"y":-155000000000000000,"z":-28500000000000000000}},"30023415":{"solarSystemId":30023415,"solarSystemName":"S.354.K11","location":{"x":4800000000000000000,"y":-1220000000000000000,"z":-28600000000000000000}},"30023416":{"solarSystemId":30023416,"solarSystemName":"D.WE3.7RP","location":{"x":4610000000000000000,"y":-663000000000000000,"z":-28200000000000000000}},"30023417":{"solarSystemId":30023417,"solarSystemName":"R.YF2.PY5","location":{"x":3090000000000000000,"y":211000000000000000,"z":-28400000000000000000}},"30023418":{"solarSystemId":30023418,"solarSystemName":"T.XN2.XR3","location":{"x":2770000000000000000,"y":-124000000000000000,"z":-27700000000000000000}},"30023419":{"solarSystemId":30023419,"solarSystemName":"L.9G2.87M","location":{"x":3150000000000000000,"y":-621000000000000000,"z":-26500000000000000000}},"30023420":{"solarSystemId":30023420,"solarSystemName":"T.BL2.LKX","location":{"x":2840000000000000000,"y":30300000000000000,"z":-27500000000000000000}},"30023421":{"solarSystemId":30023421,"solarSystemName":"N.6M2.0R1","location":{"x":2930000000000000000,"y":-50700000000000000,"z":-27000000000000000000}},"30023422":{"solarSystemId":30023422,"solarSystemName":"N.4F2.GQN","location":{"x":3070000000000000000,"y":-456000000000000000,"z":-26600000000000000000}},"30023423":{"solarSystemId":30023423,"solarSystemName":"R.YD2.P47","location":{"x":2880000000000000000,"y":-257000000000000000,"z":-26300000000000000000}},"30023424":{"solarSystemId":30023424,"solarSystemName":"H.BH2.894","location":{"x":3200000000000000000,"y":-155000000000000000,"z":-26100000000000000000}},"30023425":{"solarSystemId":30023425,"solarSystemName":"R.S1Q.GR8","location":{"x":23100000000000000000,"y":-9720000000000000000,"z":-12400000000000000000}},"30023426":{"solarSystemId":30023426,"solarSystemName":"R.N3P.RD6","location":{"x":20900000000000000000,"y":-7470000000000000000,"z":-13200000000000000000}},"30023427":{"solarSystemId":30023427,"solarSystemName":"N.76P.708","location":{"x":21000000000000000000,"y":-9230000000000000000,"z":-12000000000000000000}},"30023428":{"solarSystemId":30023428,"solarSystemName":"T.TJV.6Y7","location":{"x":22800000000000000000,"y":-9050000000000000000,"z":-11700000000000000000}},"30023429":{"solarSystemId":30023429,"solarSystemName":"B.ZWV.9B5","location":{"x":23000000000000000000,"y":-6570000000000000000,"z":-13400000000000000000}},"30023430":{"solarSystemId":30023430,"solarSystemName":"T.8CB.05S","location":{"x":26000000000000000000,"y":-11700000000000000000,"z":-9950000000000000000}},"30023431":{"solarSystemId":30023431,"solarSystemName":"R.ZQB.YV9","location":{"x":26100000000000000000,"y":-11100000000000000000,"z":-10500000000000000000}},"30023432":{"solarSystemId":30023432,"solarSystemName":"R.BLF.769","location":{"x":24700000000000000000,"y":-10600000000000000000,"z":-11600000000000000000}},"30023433":{"solarSystemId":30023433,"solarSystemName":"S.JYB.3P8","location":{"x":26400000000000000000,"y":-9880000000000000000,"z":-15600000000000000000}},"30023434":{"solarSystemId":30023434,"solarSystemName":"S.W1F.CMS","location":{"x":24300000000000000000,"y":-12200000000000000000,"z":-14400000000000000000}},"30023435":{"solarSystemId":30023435,"solarSystemName":"A.2CM.EV9","location":{"x":20200000000000000000,"y":-11100000000000000000,"z":-13200000000000000000}},"30023436":{"solarSystemId":30023436,"solarSystemName":"A.PLM.9B7","location":{"x":20100000000000000000,"y":-8870000000000000000,"z":-11100000000000000000}},"30023437":{"solarSystemId":30023437,"solarSystemName":"H.0GM.E58","location":{"x":20400000000000000000,"y":-9440000000000000000,"z":-9470000000000000000}},"30023438":{"solarSystemId":30023438,"solarSystemName":"L.7KM.M38","location":{"x":20700000000000000000,"y":-9350000000000000000,"z":-9360000000000000000}},"30023439":{"solarSystemId":30023439,"solarSystemName":"D.0EM.6C6","location":{"x":20700000000000000000,"y":-7500000000000000000,"z":-9900000000000000000}},"30023440":{"solarSystemId":30023440,"solarSystemName":"H.1EP.BW7","location":{"x":21900000000000000000,"y":-9140000000000000000,"z":-10600000000000000000}},"30023441":{"solarSystemId":30023441,"solarSystemName":"L.SXD.VF8","location":{"x":18200000000000000000,"y":-10000000000000000000,"z":-9640000000000000000}},"30023442":{"solarSystemId":30023442,"solarSystemName":"N.YGC.FR7","location":{"x":19300000000000000000,"y":-8560000000000000000,"z":-10300000000000000000}},"30023443":{"solarSystemId":30023443,"solarSystemName":"R.GSD.337","location":{"x":17700000000000000000,"y":-8180000000000000000,"z":-9870000000000000000}},"30023444":{"solarSystemId":30023444,"solarSystemName":"I.GGC.M86","location":{"x":19300000000000000000,"y":-7230000000000000000,"z":-9640000000000000000}},"30023445":{"solarSystemId":30023445,"solarSystemName":"R.24D.XP6","location":{"x":17400000000000000000,"y":-7600000000000000000,"z":-10100000000000000000}},"30023446":{"solarSystemId":30023446,"solarSystemName":"D.1JV.4V6","location":{"x":22800000000000000000,"y":-7610000000000000000,"z":-9890000000000000000}},"30023447":{"solarSystemId":30023447,"solarSystemName":"R.G1Q.V97","location":{"x":23100000000000000000,"y":-8420000000000000000,"z":-12400000000000000000}},"30023448":{"solarSystemId":30023448,"solarSystemName":"D.MPF.306","location":{"x":24900000000000000000,"y":-6920000000000000000,"z":-10400000000000000000}},"30023449":{"solarSystemId":30023449,"solarSystemName":"E.LFQ.8T7","location":{"x":23800000000000000000,"y":-8480000000000000000,"z":-9760000000000000000}},"30023450":{"solarSystemId":30023450,"solarSystemName":"D.CLQ.8Q4","location":{"x":23600000000000000000,"y":-5340000000000000000,"z":-8210000000000000000}},"30023451":{"solarSystemId":30023451,"solarSystemName":"N.EZF.XNX","location":{"x":25300000000000000000,"y":-951000000000000000,"z":-890000000000000000}},"30023452":{"solarSystemId":30023452,"solarSystemName":"U.7HB.KDP","location":{"x":26200000000000000000,"y":-666000000000000000,"z":-943000000000000000}},"30023453":{"solarSystemId":30023453,"solarSystemName":"R.07G.Y7X","location":{"x":26800000000000000000,"y":-946000000000000000,"z":-1070000000000000000}},"30023454":{"solarSystemId":30023454,"solarSystemName":"H.K2H.V2M","location":{"x":27800000000000000000,"y":-615000000000000000,"z":-239000000000000000}},"30023455":{"solarSystemId":30023455,"solarSystemName":"E.2CB.V81","location":{"x":25900000000000000000,"y":45700000000000000,"z":-1700000000000000000}},"30023456":{"solarSystemId":30023456,"solarSystemName":"I.DNG.XL4","location":{"x":27000000000000000000,"y":-161000000000000000,"z":-1000000000000000000}},"30023457":{"solarSystemId":30023457,"solarSystemName":"N.XRV.E9T","location":{"x":22400000000000000000,"y":-408000000000000000,"z":-1290000000000000000}},"30023458":{"solarSystemId":30023458,"solarSystemName":"H.XNQ.TJ8","location":{"x":23500000000000000000,"y":-317000000000000000,"z":-958000000000000000}},"30023459":{"solarSystemId":30023459,"solarSystemName":"R.ZWV.B1N","location":{"x":23000000000000000000,"y":-434000000000000000,"z":-2440000000000000000}},"30023460":{"solarSystemId":30023460,"solarSystemName":"N.1SF.DF2","location":{"x":24600000000000000000,"y":-3080000000000000000,"z":-474000000000000000}},"30023461":{"solarSystemId":30023461,"solarSystemName":"A.DKF.501","location":{"x":25300000000000000000,"y":-1160000000000000000,"z":-1830000000000000000}},"30023462":{"solarSystemId":30023462,"solarSystemName":"N.YSB.Y72","location":{"x":25800000000000000000,"y":-2590000000000000000,"z":-2220000000000000000}},"30023463":{"solarSystemId":30023463,"solarSystemName":"E.RDF.4GM","location":{"x":24800000000000000000,"y":639000000000000000,"z":-3260000000000000000}},"30023464":{"solarSystemId":30023464,"solarSystemName":"R.6VH.LFY","location":{"x":28400000000000000000,"y":-997000000000000000,"z":-3800000000000000000}},"30023465":{"solarSystemId":30023465,"solarSystemName":"D.M1X.HNR","location":{"x":30000000000000000000,"y":-483000000000000000,"z":-4870000000000000000}},"30023466":{"solarSystemId":30023466,"solarSystemName":"U.FPB.6N2","location":{"x":26000000000000000000,"y":-2750000000000000000,"z":-3680000000000000000}},"30023467":{"solarSystemId":30023467,"solarSystemName":"H.FNJ.QNZ","location":{"x":29300000000000000000,"y":-1020000000000000000,"z":-2960000000000000000}},"30023468":{"solarSystemId":30023468,"solarSystemName":"T.DGJ.XLC","location":{"x":29700000000000000000,"y":-593000000000000000,"z":-3660000000000000000}},"30023469":{"solarSystemId":30023469,"solarSystemName":"H.63X.TP9","location":{"x":30100000000000000000,"y":-345000000000000000,"z":-4840000000000000000}},"30023470":{"solarSystemId":30023470,"solarSystemName":"M.T8H.NJ3","location":{"x":28000000000000000000,"y":-4370000000000000000,"z":-2520000000000000000}},"30023471":{"solarSystemId":30023471,"solarSystemName":"E.3SF.901","location":{"x":24600000000000000000,"y":-1160000000000000000,"z":1310000000000000000}},"30023472":{"solarSystemId":30023472,"solarSystemName":"I.RTF.RTC","location":{"x":24600000000000000000,"y":-589000000000000000,"z":2300000000000000000}},"30023473":{"solarSystemId":30023473,"solarSystemName":"I.XYQ.3PP","location":{"x":24100000000000000000,"y":-669000000000000000,"z":2420000000000000000}},"30023474":{"solarSystemId":30023474,"solarSystemName":"U.S1F.5Z1","location":{"x":24300000000000000000,"y":-2170000000000000000,"z":5320000000000000000}},"30023475":{"solarSystemId":30023475,"solarSystemName":"L.K0B.1MQ","location":{"x":25400000000000000000,"y":-740000000000000000,"z":1450000000000000000}},"30023476":{"solarSystemId":30023476,"solarSystemName":"R.KCV.P1M","location":{"x":22500000000000000000,"y":-614000000000000000,"z":5060000000000000000}},"30023477":{"solarSystemId":30023477,"solarSystemName":"H.MQQ.J4F","location":{"x":23800000000000000000,"y":-762000000000000000,"z":3460000000000000000}},"30023478":{"solarSystemId":30023478,"solarSystemName":"U.Q6G.2TM","location":{"x":26800000000000000000,"y":-625000000000000000,"z":858000000000000000}},"30023479":{"solarSystemId":30023479,"solarSystemName":"I.LGB.V2Q","location":{"x":26200000000000000000,"y":-724000000000000000,"z":831000000000000000}},"30023480":{"solarSystemId":30023480,"solarSystemName":"H.M7B.XLF","location":{"x":25600000000000000000,"y":-773000000000000000,"z":774000000000000000}},"30023481":{"solarSystemId":30023481,"solarSystemName":"T.NCF.XSG","location":{"x":24800000000000000000,"y":-841000000000000000,"z":-288000000000000000}},"30023482":{"solarSystemId":30023482,"solarSystemName":"R.DSG.K4H","location":{"x":26900000000000000000,"y":-870000000000000000,"z":1460000000000000000}},"30023483":{"solarSystemId":30023483,"solarSystemName":"L.C9G.Y4B","location":{"x":26900000000000000000,"y":-798000000000000000,"z":560000000000000000}},"30023484":{"solarSystemId":30023484,"solarSystemName":"R.HSB.YFX","location":{"x":25800000000000000000,"y":-961000000000000000,"z":1610000000000000000}},"30023485":{"solarSystemId":30023485,"solarSystemName":"D.QEM.7F2","location":{"x":20700000000000000000,"y":-3070000000000000000,"z":-735000000000000000}},"30023486":{"solarSystemId":30023486,"solarSystemName":"A.H2M.3T4","location":{"x":19700000000000000000,"y":-5010000000000000000,"z":-192000000000000000}},"30023487":{"solarSystemId":30023487,"solarSystemName":"A.ZTP.RW7","location":{"x":21200000000000000000,"y":-285000000000000000,"z":-1490000000000000000}},"30023488":{"solarSystemId":30023488,"solarSystemName":"E.WFC.BH2","location":{"x":19200000000000000000,"y":-3200000000000000000,"z":1060000000000000000}},"30023489":{"solarSystemId":30023489,"solarSystemName":"D.VQP.DY4","location":{"x":21500000000000000000,"y":-5600000000000000000,"z":324000000000000000}},"30023490":{"solarSystemId":30023490,"solarSystemName":"O.ELV.2J1","location":{"x":22400000000000000000,"y":-2060000000000000000,"z":-171000000000000000}},"30023491":{"solarSystemId":30023491,"solarSystemName":"G.C5H.FQ1","location":{"x":27900000000000000000,"y":59300000000000000,"z":-8570000000000000000}},"30023492":{"solarSystemId":30023492,"solarSystemName":"U.PJH.3GS","location":{"x":28600000000000000000,"y":-386000000000000000,"z":-4670000000000000000}},"30023493":{"solarSystemId":30023493,"solarSystemName":"D.PSB.M22","location":{"x":25700000000000000000,"y":-2400000000000000000,"z":-5400000000000000000}},"30023494":{"solarSystemId":30023494,"solarSystemName":"L.YZG.1RS","location":{"x":27600000000000000000,"y":-375000000000000000,"z":-3980000000000000000}},"30023495":{"solarSystemId":30023495,"solarSystemName":"D.4JH.JL9","location":{"x":28600000000000000000,"y":-341000000000000000,"z":-4010000000000000000}},"30023496":{"solarSystemId":30023496,"solarSystemName":"U.YMG.M31","location":{"x":27200000000000000000,"y":-40000000000000000,"z":-7320000000000000000}},"30023497":{"solarSystemId":30023497,"solarSystemName":"E2S-N09","location":{"x":39700000000000000000,"y":-2880000000000000000,"z":1500000000000000000}},"30023498":{"solarSystemId":30023498,"solarSystemName":"I2F-S09","location":{"x":40000000000000000000,"y":-3630000000000000000,"z":734000000000000000}},"30023499":{"solarSystemId":30023499,"solarSystemName":"EV5-519","location":{"x":40800000000000000000,"y":-3580000000000000000,"z":876000000000000000}},"30023500":{"solarSystemId":30023500,"solarSystemName":"EKC-719","location":{"x":41000000000000000000,"y":-3300000000000000000,"z":780000000000000000}},"30023501":{"solarSystemId":30023501,"solarSystemName":"ES4-809","location":{"x":38400000000000000000,"y":-3440000000000000000,"z":1390000000000000000}},"30023502":{"solarSystemId":30023502,"solarSystemName":"E7C-509","location":{"x":38600000000000000000,"y":-3670000000000000000,"z":-2610000000000000000}},"30023503":{"solarSystemId":30023503,"solarSystemName":"OMR-D09","location":{"x":39200000000000000000,"y":-903000000000000000,"z":-1080000000000000000}},"30023504":{"solarSystemId":30023504,"solarSystemName":"EV0-409","location":{"x":38500000000000000000,"y":-754000000000000000,"z":-1580000000000000000}},"30023505":{"solarSystemId":30023505,"solarSystemName":"AVJ-709","location":{"x":38800000000000000000,"y":-1070000000000000000,"z":-1220000000000000000}},"30023506":{"solarSystemId":30023506,"solarSystemName":"EPF-M09","location":{"x":39700000000000000000,"y":-3540000000000000000,"z":-140000000000000000}},"30023507":{"solarSystemId":30023507,"solarSystemName":"I70-319","location":{"x":41100000000000000000,"y":-804000000000000000,"z":-1590000000000000000}},"30023508":{"solarSystemId":30023508,"solarSystemName":"I49-G19","location":{"x":42300000000000000000,"y":-784000000000000000,"z":-2360000000000000000}},"30023509":{"solarSystemId":30023509,"solarSystemName":"EKJ-G19","location":{"x":42300000000000000000,"y":-840000000000000000,"z":-2230000000000000000}},"30023510":{"solarSystemId":30023510,"solarSystemName":"IV0-T09","location":{"x":40300000000000000000,"y":-1300000000000000000,"z":-394000000000000000}},"30023511":{"solarSystemId":30023511,"solarSystemName":"O8Q-Q09","location":{"x":40400000000000000000,"y":-850000000000000000,"z":-1920000000000000000}},"30023512":{"solarSystemId":30023512,"solarSystemName":"EJP-019","location":{"x":40500000000000000000,"y":-1010000000000000000,"z":-59500000000000000}},"30023513":{"solarSystemId":30023513,"solarSystemName":"O8C-V09","location":{"x":40400000000000000000,"y":-1080000000000000000,"z":194000000000000000}},"30023514":{"solarSystemId":30023514,"solarSystemName":"E3G-019","location":{"x":40500000000000000000,"y":-1140000000000000000,"z":238000000000000000}},"30023515":{"solarSystemId":30023515,"solarSystemName":"OSH-T09","location":{"x":40300000000000000000,"y":-1130000000000000000,"z":241000000000000000}},"30023516":{"solarSystemId":30023516,"solarSystemName":"ID8-T09","location":{"x":40300000000000000000,"y":-1030000000000000000,"z":247000000000000000}},"30023517":{"solarSystemId":30023517,"solarSystemName":"E28-RV8","location":{"x":37700000000000000000,"y":-908000000000000000,"z":1640000000000000000}},"30023518":{"solarSystemId":30023518,"solarSystemName":"E70-909","location":{"x":38200000000000000000,"y":-1420000000000000000,"z":3880000000000000000}},"30023519":{"solarSystemId":30023519,"solarSystemName":"IHV-MV8","location":{"x":37300000000000000000,"y":-2910000000000000000,"z":1650000000000000000}},"30023520":{"solarSystemId":30023520,"solarSystemName":"EC2-PV8","location":{"x":37400000000000000000,"y":-3050000000000000000,"z":1760000000000000000}},"30023521":{"solarSystemId":30023521,"solarSystemName":"EG4-6V8","location":{"x":36200000000000000000,"y":-2540000000000000000,"z":2720000000000000000}},"30023522":{"solarSystemId":30023522,"solarSystemName":"E9K-H09","location":{"x":39700000000000000000,"y":-4770000000000000000,"z":-7300000000000000000}},"30023523":{"solarSystemId":30023523,"solarSystemName":"O6P-F19","location":{"x":42200000000000000000,"y":-4760000000000000000,"z":-5290000000000000000}},"30023524":{"solarSystemId":30023524,"solarSystemName":"I91-D09","location":{"x":39400000000000000000,"y":-3320000000000000000,"z":-5700000000000000000}},"30023525":{"solarSystemId":30023525,"solarSystemName":"AHV-719","location":{"x":41700000000000000000,"y":-2890000000000000000,"z":-6760000000000000000}},"30023526":{"solarSystemId":30023526,"solarSystemName":"I7J-619","location":{"x":41500000000000000000,"y":-4360000000000000000,"z":-5660000000000000000}},"30023527":{"solarSystemId":30023527,"solarSystemName":"E0D-H19","location":{"x":42400000000000000000,"y":-3320000000000000000,"z":-10500000000000000000}},"30023528":{"solarSystemId":30023528,"solarSystemName":"E49-N09","location":{"x":40200000000000000000,"y":-3120000000000000000,"z":-11000000000000000000}},"30023529":{"solarSystemId":30023529,"solarSystemName":"O1L-B09","location":{"x":39200000000000000000,"y":-3410000000000000000,"z":-10700000000000000000}},"30023530":{"solarSystemId":30023530,"solarSystemName":"IB7-J19","location":{"x":42300000000000000000,"y":-5260000000000000000,"z":-12300000000000000000}},"30023531":{"solarSystemId":30023531,"solarSystemName":"E17-819","location":{"x":41300000000000000000,"y":-5210000000000000000,"z":-12500000000000000000}},"30023532":{"solarSystemId":30023532,"solarSystemName":"E1L-T19","location":{"x":43500000000000000000,"y":-5300000000000000000,"z":-11400000000000000000}},"30023533":{"solarSystemId":30023533,"solarSystemName":"EVC-6V8","location":{"x":37200000000000000000,"y":-2680000000000000000,"z":-8640000000000000000}},"30023534":{"solarSystemId":30023534,"solarSystemName":"O0D-009","location":{"x":38400000000000000000,"y":-4080000000000000000,"z":-5990000000000000000}},"30023535":{"solarSystemId":30023535,"solarSystemName":"I0R-RV8","location":{"x":38200000000000000000,"y":-4630000000000000000,"z":-5870000000000000000}},"30023536":{"solarSystemId":30023536,"solarSystemName":"IDM-LS8","location":{"x":34600000000000000000,"y":-3230000000000000000,"z":-6400000000000000000}},"30023537":{"solarSystemId":30023537,"solarSystemName":"A07-VT8","location":{"x":36700000000000000000,"y":-3860000000000000000,"z":-6530000000000000000}},"30023538":{"solarSystemId":30023538,"solarSystemName":"ES4-NT8","location":{"x":36100000000000000000,"y":-4750000000000000000,"z":-9470000000000000000}},"30023539":{"solarSystemId":30023539,"solarSystemName":"EKC-TT8","location":{"x":36300000000000000000,"y":-5870000000000000000,"z":-11100000000000000000}},"30023540":{"solarSystemId":30023540,"solarSystemName":"IMD-QV8","location":{"x":38200000000000000000,"y":-3350000000000000000,"z":-11200000000000000000}},"30023541":{"solarSystemId":30023541,"solarSystemName":"E65-7T8","location":{"x":35100000000000000000,"y":-5150000000000000000,"z":-11200000000000000000}},"30023542":{"solarSystemId":30023542,"solarSystemName":"AP8-9S8","location":{"x":34000000000000000000,"y":-5260000000000000000,"z":-8130000000000000000}},"30023543":{"solarSystemId":30023543,"solarSystemName":"E0L-FR8","location":{"x":32700000000000000000,"y":-233000000000000000,"z":-13900000000000000000}},"30023544":{"solarSystemId":30023544,"solarSystemName":"UQM-GV8","location":{"x":37100000000000000000,"y":-578000000000000000,"z":-15800000000000000000}},"30023545":{"solarSystemId":30023545,"solarSystemName":"O3G-3S8","location":{"x":32800000000000000000,"y":-226000000000000000,"z":-17600000000000000000}},"30023546":{"solarSystemId":30023546,"solarSystemName":"IN2-209","location":{"x":38100000000000000000,"y":-843000000000000000,"z":-15000000000000000000}},"30023547":{"solarSystemId":30023547,"solarSystemName":"I2M-JR8","location":{"x":32600000000000000000,"y":-391000000000000000,"z":-15100000000000000000}},"30023548":{"solarSystemId":30023548,"solarSystemName":"U3G-HQ8","location":{"x":32100000000000000000,"y":-664000000000000000,"z":-5730000000000000000}},"30023549":{"solarSystemId":30023549,"solarSystemName":"E9D-5S8","location":{"x":33700000000000000000,"y":-3700000000000000000,"z":-2850000000000000000}},"30023550":{"solarSystemId":30023550,"solarSystemName":"ED3-0R8","location":{"x":32100000000000000000,"y":-3580000000000000000,"z":-2930000000000000000}},"30023551":{"solarSystemId":30023551,"solarSystemName":"EJ0-5Q8","location":{"x":31900000000000000000,"y":-747000000000000000,"z":-6360000000000000000}},"30023552":{"solarSystemId":30023552,"solarSystemName":"IBF-NQ8","location":{"x":32300000000000000000,"y":-126000000000000000,"z":-7040000000000000000}},"30023553":{"solarSystemId":30023553,"solarSystemName":"EG4-H19","location":{"x":42600000000000000000,"y":-626000000000000000,"z":-4090000000000000000}},"30023554":{"solarSystemId":30023554,"solarSystemName":"ALQ-L29","location":{"x":47200000000000000000,"y":-1480000000000000000,"z":-2390000000000000000}},"30023555":{"solarSystemId":30023555,"solarSystemName":"OCF-N29","location":{"x":47600000000000000000,"y":-1230000000000000000,"z":-1930000000000000000}},"30023556":{"solarSystemId":30023556,"solarSystemName":"ES4-R19","location":{"x":43100000000000000000,"y":-805000000000000000,"z":445000000000000000}},"30023557":{"solarSystemId":30023557,"solarSystemName":"OSN-V19","location":{"x":43900000000000000000,"y":-1180000000000000000,"z":-5670000000000000000}},"30023558":{"solarSystemId":30023558,"solarSystemName":"E55-JN8","location":{"x":30000000000000000000,"y":-4020000000000000000,"z":-9510000000000000000}},"30023559":{"solarSystemId":30023559,"solarSystemName":"IB2-LR8","location":{"x":33000000000000000000,"y":-4330000000000000000,"z":-8800000000000000000}},"30023560":{"solarSystemId":30023560,"solarSystemName":"EQ9-SQ8","location":{"x":31900000000000000000,"y":-250000000000000000,"z":-14200000000000000000}},"30023561":{"solarSystemId":30023561,"solarSystemName":"IPG-QN8","location":{"x":29400000000000000000,"y":-317000000000000000,"z":-16500000000000000000}},"30023562":{"solarSystemId":30023562,"solarSystemName":"I5B-5R8","location":{"x":32200000000000000000,"y":-186000000000000000,"z":-14600000000000000000}},"30023563":{"solarSystemId":30023563,"solarSystemName":"L.F2L.FC3","location":{"x":16200000000000000000,"y":-4060000000000000000,"z":-3700000000000000000}},"30023564":{"solarSystemId":30023564,"solarSystemName":"N.QPD.T36","location":{"x":18000000000000000000,"y":-7040000000000000000,"z":-3030000000000000000}},"30023565":{"solarSystemId":30023565,"solarSystemName":"T.X9C.F34","location":{"x":18800000000000000000,"y":-4740000000000000000,"z":-3890000000000000000}},"30023566":{"solarSystemId":30023566,"solarSystemName":"G.K4L.JL3","location":{"x":16300000000000000000,"y":-3990000000000000000,"z":-4140000000000000000}},"30023567":{"solarSystemId":30023567,"solarSystemName":"T.2MD.PD3","location":{"x":17900000000000000000,"y":-4020000000000000000,"z":-2890000000000000000}},"30023568":{"solarSystemId":30023568,"solarSystemName":"R.L5R.DV8","location":{"x":15200000000000000000,"y":-9930000000000000000,"z":-325000000000000000}},"30023569":{"solarSystemId":30023569,"solarSystemName":"U.MRD.LY6","location":{"x":17800000000000000000,"y":-7910000000000000000,"z":-1210000000000000000}},"30023570":{"solarSystemId":30023570,"solarSystemName":"E.1ND.9L8","location":{"x":17700000000000000000,"y":-9740000000000000000,"z":-2720000000000000000}},"30023571":{"solarSystemId":30023571,"solarSystemName":"E.B0D.GH8","location":{"x":17300000000000000000,"y":-10100000000000000000,"z":878000000000000000}},"30023572":{"solarSystemId":30023572,"solarSystemName":"I.VRR.5L8","location":{"x":15500000000000000000,"y":-9730000000000000000,"z":2320000000000000000}},"30023573":{"solarSystemId":30023573,"solarSystemName":"H.4MR.WY5","location":{"x":15600000000000000000,"y":-6770000000000000000,"z":-3070000000000000000}},"30023574":{"solarSystemId":30023574,"solarSystemName":"N.VWR.DL5","location":{"x":16100000000000000000,"y":-6290000000000000000,"z":-2780000000000000000}},"30023575":{"solarSystemId":30023575,"solarSystemName":"E.Q4R.445","location":{"x":15200000000000000000,"y":-5910000000000000000,"z":-3390000000000000000}},"30023576":{"solarSystemId":30023576,"solarSystemName":"N.55R.N26","location":{"x":15200000000000000000,"y":-7000000000000000000,"z":-2650000000000000000}},"30023577":{"solarSystemId":30023577,"solarSystemName":"C.1PR.765","location":{"x":15600000000000000000,"y":-5990000000000000000,"z":-3120000000000000000}},"30023578":{"solarSystemId":30023578,"solarSystemName":"L.0XR.TJ2","location":{"x":15900000000000000000,"y":-3220000000000000000,"z":-6590000000000000000}},"30023579":{"solarSystemId":30023579,"solarSystemName":"I.TER.RX3","location":{"x":16100000000000000000,"y":-4410000000000000000,"z":-8720000000000000000}},"30023580":{"solarSystemId":30023580,"solarSystemName":"E.9PR.EM4","location":{"x":15600000000000000000,"y":-5260000000000000000,"z":-6920000000000000000}},"30023581":{"solarSystemId":30023581,"solarSystemName":"N.58L.3D4","location":{"x":16400000000000000000,"y":-5160000000000000000,"z":-6330000000000000000}},"30023582":{"solarSystemId":30023582,"solarSystemName":"U.XQL.RR3","location":{"x":16900000000000000000,"y":-3940000000000000000,"z":-7850000000000000000}},"30023583":{"solarSystemId":30023583,"solarSystemName":"T.92D.H17","location":{"x":17400000000000000000,"y":-8130000000000000000,"z":-2690000000000000000}},"30023584":{"solarSystemId":30023584,"solarSystemName":"I.CKR.EN8","location":{"x":16100000000000000000,"y":-9690000000000000000,"z":-3830000000000000000}},"30023585":{"solarSystemId":30023585,"solarSystemName":"T.7TC.KN6","location":{"x":18900000000000000000,"y":-7380000000000000000,"z":-2560000000000000000}},"30023586":{"solarSystemId":30023586,"solarSystemName":"L.22L.YC6","location":{"x":16200000000000000000,"y":-7530000000000000000,"z":-4250000000000000000}},"30023587":{"solarSystemId":30023587,"solarSystemName":"A.3PR.DD4","location":{"x":15600000000000000000,"y":-5170000000000000000,"z":-5610000000000000000}},"30023588":{"solarSystemId":30023588,"solarSystemName":"E.V9P.584","location":{"x":21100000000000000000,"y":-4910000000000000000,"z":-3900000000000000000}},"30023589":{"solarSystemId":30023589,"solarSystemName":"S.0BV.0H5","location":{"x":22700000000000000000,"y":-6630000000000000000,"z":-4880000000000000000}},"30023590":{"solarSystemId":30023590,"solarSystemName":"E.83P.TX4","location":{"x":20900000000000000000,"y":-5560000000000000000,"z":-2380000000000000000}},"30023591":{"solarSystemId":30023591,"solarSystemName":"E.ZSV.JL4","location":{"x":22300000000000000000,"y":-5150000000000000000,"z":-2460000000000000000}},"30023592":{"solarSystemId":30023592,"solarSystemName":"N.NVM.EM4","location":{"x":20300000000000000000,"y":-5260000000000000000,"z":-387000000000000000}},"30023593":{"solarSystemId":30023593,"solarSystemName":"H.VPN.N22","location":{"x":14500000000000000000,"y":2390000000000000000,"z":-4380000000000000000}},"30023594":{"solarSystemId":30023594,"solarSystemName":"A.ZCR.XYC","location":{"x":15600000000000000000,"y":608000000000000000,"z":-4790000000000000000}},"30023595":{"solarSystemId":30023595,"solarSystemName":"O.3HN.348","location":{"x":14700000000000000000,"y":-293000000000000000,"z":-4550000000000000000}},"30023596":{"solarSystemId":30023596,"solarSystemName":"E.F9R.MQ1","location":{"x":15300000000000000000,"y":59200000000000000,"z":-4540000000000000000}},"30023597":{"solarSystemId":30023597,"solarSystemName":"S.Y7R.F91","location":{"x":15300000000000000000,"y":1470000000000000,"z":-4800000000000000000}},"30023598":{"solarSystemId":30023598,"solarSystemName":"I.59R.8J2","location":{"x":15300000000000000000,"y":101000000000000000,"z":-4840000000000000000}},"30023599":{"solarSystemId":30023599,"solarSystemName":"L.L6R.7T7","location":{"x":15200000000000000000,"y":-265000000000000000,"z":-3720000000000000000}},"30023600":{"solarSystemId":30023600,"solarSystemName":"R.BYN.VWS","location":{"x":14800000000000000000,"y":394000000000000000,"z":-4830000000000000000}},"30023601":{"solarSystemId":30023601,"solarSystemName":"U.5MR.S3P","location":{"x":15600000000000000000,"y":-20400000000000000,"z":-4600000000000000000}},"30023602":{"solarSystemId":30023602,"solarSystemName":"E.5XN.PW4","location":{"x":14800000000000000000,"y":-5540000000000000,"z":-4350000000000000000}},"30023603":{"solarSystemId":30023603,"solarSystemName":"L.QJN.QN6","location":{"x":14800000000000000000,"y":230000000000000000,"z":-3570000000000000000}},"30023604":{"solarSystemId":30023604,"solarSystemName":"R.44D.MZ7","location":{"x":17400000000000000000,"y":-284000000000000000,"z":-9460000000000000000}},"30023605":{"solarSystemId":30023605,"solarSystemName":"S.QLM.XE4","location":{"x":20100000000000000000,"y":180000000000000000,"z":-11800000000000000000}},"30023606":{"solarSystemId":30023606,"solarSystemName":"N.R1M.9HC","location":{"x":19700000000000000000,"y":-18900000000000000,"z":-10600000000000000000}},"30023607":{"solarSystemId":30023607,"solarSystemName":"R.3PD.FH4","location":{"x":17900000000000000000,"y":172000000000000000,"z":-9680000000000000000}},"30023608":{"solarSystemId":30023608,"solarSystemName":"T.11C.NTT","location":{"x":18500000000000000000,"y":409000000000000000,"z":-12500000000000000000}},"30023609":{"solarSystemId":30023609,"solarSystemName":"I.9GC.GLR","location":{"x":19300000000000000000,"y":485000000000000000,"z":-11000000000000000000}},"30023610":{"solarSystemId":30023610,"solarSystemName":"S.79N.Q72","location":{"x":14200000000000000000,"y":80700000000000000,"z":-6920000000000000000}},"30023611":{"solarSystemId":30023611,"solarSystemName":"H.R7R.VS6","location":{"x":15300000000000000000,"y":228000000000000000,"z":-5680000000000000000}},"30023612":{"solarSystemId":30023612,"solarSystemName":"E.7YN.604","location":{"x":14800000000000000000,"y":144000000000000000,"z":-6650000000000000000}},"30023613":{"solarSystemId":30023613,"solarSystemName":"I.4DN.MD2","location":{"x":14400000000000000000,"y":89600000000000000,"z":-5560000000000000000}},"30023614":{"solarSystemId":30023614,"solarSystemName":"H.ZMN.S71","location":{"x":14500000000000000000,"y":44300000000000000,"z":-6190000000000000000}},"30023615":{"solarSystemId":30023615,"solarSystemName":"E.W4N.QL1","location":{"x":14000000000000000000,"y":-52500000000000000,"z":-5940000000000000000}},"30023616":{"solarSystemId":30023616,"solarSystemName":"R.GFN.054","location":{"x":14600000000000000000,"y":150000000000000000,"z":-5770000000000000000}},"30023617":{"solarSystemId":30023617,"solarSystemName":"B.8NN.KSD","location":{"x":14300000000000000000,"y":-553000000000000000,"z":-7110000000000000000}},"30023618":{"solarSystemId":30023618,"solarSystemName":"O.Q5N.EVQ","location":{"x":14000000000000000000,"y":-743000000000000000,"z":-5400000000000000000}},"30023619":{"solarSystemId":30023619,"solarSystemName":"U.JMP.VVM","location":{"x":21400000000000000000,"y":635000000000000000,"z":-13300000000000000000}},"30023620":{"solarSystemId":30023620,"solarSystemName":"E.8EP.C57","location":{"x":21900000000000000000,"y":258000000000000000,"z":-14400000000000000000}},"30023621":{"solarSystemId":30023621,"solarSystemName":"A.WEP.R31","location":{"x":21900000000000000000,"y":-39900000000000000,"z":-13700000000000000000}},"30023622":{"solarSystemId":30023622,"solarSystemName":"H.52M.S74","location":{"x":19700000000000000000,"y":-152000000000000000,"z":-15000000000000000000}},"30023623":{"solarSystemId":30023623,"solarSystemName":"I.QBM.40G","location":{"x":20400000000000000000,"y":-829000000000000000,"z":-14700000000000000000}},"30023624":{"solarSystemId":30023624,"solarSystemName":"S.NWP.BQT","location":{"x":21800000000000000000,"y":420000000000000000,"z":-15500000000000000000}},"30023625":{"solarSystemId":30023625,"solarSystemName":"M.XPC.1S2","location":{"x":19100000000000000000,"y":-2670000000000000000,"z":-13900000000000000000}},"30023626":{"solarSystemId":30023626,"solarSystemName":"I.9DV.4F9","location":{"x":22500000000000000000,"y":348000000000000000,"z":-16700000000000000000}},"30023627":{"solarSystemId":30023627,"solarSystemName":"E.LNC.RLQ","location":{"x":18900000000000000000,"y":737000000000000000,"z":-18600000000000000000}},"30023628":{"solarSystemId":30023628,"solarSystemName":"R.4YP.TNF","location":{"x":21700000000000000000,"y":771000000000000000,"z":-15800000000000000000}},"30023629":{"solarSystemId":30023629,"solarSystemName":"C.VXP.MT2","location":{"x":21700000000000000000,"y":-2720000000000000000,"z":-16600000000000000000}},"30023630":{"solarSystemId":30023630,"solarSystemName":"O.83Q.782","location":{"x":23200000000000000000,"y":-2600000000000000000,"z":-15800000000000000000}},"30023631":{"solarSystemId":30023631,"solarSystemName":"H.JLR.NDS","location":{"x":15500000000000000000,"y":-378000000000000000,"z":-7800000000000000000}},"30023632":{"solarSystemId":30023632,"solarSystemName":"U.T5R.548","location":{"x":15200000000000000000,"y":293000000000000000,"z":-9050000000000000000}},"30023633":{"solarSystemId":30023633,"solarSystemName":"S.PRL.RP2","location":{"x":16600000000000000000,"y":92800000000000000,"z":-8270000000000000000}},"30023634":{"solarSystemId":30023634,"solarSystemName":"N.51L.6N2","location":{"x":16200000000000000000,"y":85800000000000000,"z":-7580000000000000000}},"30023635":{"solarSystemId":30023635,"solarSystemName":"D.6SR.K1M","location":{"x":15400000000000000000,"y":19200000000000000,"z":-7650000000000000000}},"30023636":{"solarSystemId":30023636,"solarSystemName":"S.NER.Z77","location":{"x":16100000000000000000,"y":261000000000000000,"z":-6200000000000000000}},"30023637":{"solarSystemId":30023637,"solarSystemName":"U.CDR.V2D","location":{"x":15500000000000000000,"y":-543000000000000000,"z":-9500000000000000000}},"30023638":{"solarSystemId":30023638,"solarSystemName":"B.JCN.QT1","location":{"x":14400000000000000000,"y":-1570000000000000000,"z":-7160000000000000000}},"30023639":{"solarSystemId":30023639,"solarSystemName":"T.6LV.757","location":{"x":22400000000000000000,"y":-8260000000000000000,"z":-7060000000000000000}},"30023640":{"solarSystemId":30023640,"solarSystemName":"I.EXP.NJ7","location":{"x":21700000000000000000,"y":-8990000000000000000,"z":-7580000000000000000}},"30023641":{"solarSystemId":30023641,"solarSystemName":"U.91P.QV7","location":{"x":20800000000000000000,"y":-8780000000000000000,"z":-7060000000000000000}},"30023642":{"solarSystemId":30023642,"solarSystemName":"U.0ZV.GT8","location":{"x":22900000000000000000,"y":-9650000000000000000,"z":-7790000000000000000}},"30023643":{"solarSystemId":30023643,"solarSystemName":"U.FLV.917","location":{"x":22400000000000000000,"y":-8120000000000000000,"z":-7350000000000000000}},"30023644":{"solarSystemId":30023644,"solarSystemName":"E.DWM.WV7","location":{"x":20700000000000000000,"y":-8790000000000000000,"z":-1930000000000000000}},"30023645":{"solarSystemId":30023645,"solarSystemName":"E.MLQ.368","location":{"x":23600000000000000000,"y":-9440000000000000000,"z":-6450000000000000000}},"30023646":{"solarSystemId":30023646,"solarSystemName":"H.GVV.9H6","location":{"x":22600000000000000000,"y":-7790000000000000000,"z":-4010000000000000000}},"30023647":{"solarSystemId":30023647,"solarSystemName":"A.5CQ.KG7","location":{"x":23600000000000000000,"y":-8930000000000000000,"z":-5740000000000000000}},"30023648":{"solarSystemId":30023648,"solarSystemName":"I.69V.R69","location":{"x":22200000000000000000,"y":-10600000000000000000,"z":-3960000000000000000}},"30023649":{"solarSystemId":30023649,"solarSystemName":"S.38M.VP6","location":{"x":19900000000000000000,"y":-7590000000000000000,"z":-2750000000000000000}},"30023650":{"solarSystemId":30023650,"solarSystemName":"A.32Q.F37","location":{"x":23100000000000000000,"y":-8200000000000000000,"z":-4570000000000000000}},"30023651":{"solarSystemId":30023651,"solarSystemName":"A.9WF.K0S","location":{"x":25300000000000000000,"y":-11600000000000000000,"z":-8730000000000000000}},"30023652":{"solarSystemId":30023652,"solarSystemName":"R.PCF.NV9","location":{"x":24800000000000000000,"y":-11100000000000000000,"z":-9960000000000000000}},"30023653":{"solarSystemId":30023653,"solarSystemName":"N.HRF.6Z9","location":{"x":24700000000000000000,"y":-11400000000000000000,"z":-8870000000000000000}},"30023654":{"solarSystemId":30023654,"solarSystemName":"H.ERQ.J2S","location":{"x":23600000000000000000,"y":-11600000000000000000,"z":-9950000000000000000}},"30023655":{"solarSystemId":30023655,"solarSystemName":"L.N3F.XZ9","location":{"x":24300000000000000000,"y":-11400000000000000000,"z":-8550000000000000000}},"30023656":{"solarSystemId":30023656,"solarSystemName":"I.08Q.J98","location":{"x":23300000000000000000,"y":-9580000000000000000,"z":-8470000000000000000}},"30023657":{"solarSystemId":30023657,"solarSystemName":"D.B4V.G09","location":{"x":22100000000000000000,"y":-10400000000000000000,"z":-9780000000000000000}},"30023658":{"solarSystemId":30023658,"solarSystemName":"L.9NV.6L9","location":{"x":22300000000000000000,"y":-10900000000000000000,"z":-9030000000000000000}},"30023659":{"solarSystemId":30023659,"solarSystemName":"N.7KP.8D8","location":{"x":21800000000000000000,"y":-9770000000000000000,"z":-8700000000000000000}},"30023660":{"solarSystemId":30023660,"solarSystemName":"T.E2V.NZ9","location":{"x":22000000000000000000,"y":-11400000000000000000,"z":-8720000000000000000}},"30023661":{"solarSystemId":30023661,"solarSystemName":"R.BFM.7H5","location":{"x":20400000000000000000,"y":-6640000000000000000,"z":-7700000000000000000}},"30023662":{"solarSystemId":30023662,"solarSystemName":"T.4FC.BZ4","location":{"x":19200000000000000000,"y":-5650000000000000000,"z":-7690000000000000000}},"30023663":{"solarSystemId":30023663,"solarSystemName":"A.3MD.585","location":{"x":17900000000000000000,"y":-6060000000000000000,"z":-7050000000000000000}},"30023664":{"solarSystemId":30023664,"solarSystemName":"T.ZRC.T56","location":{"x":18900000000000000000,"y":-7110000000000000000,"z":-8070000000000000000}},"30023665":{"solarSystemId":30023665,"solarSystemName":"I.WJC.X46","location":{"x":19400000000000000000,"y":-7090000000000000000,"z":-6580000000000000000}},"30023666":{"solarSystemId":30023666,"solarSystemName":"R.THV.MP4","location":{"x":22800000000000000000,"y":-5280000000000000000,"z":-6540000000000000000}},"30023667":{"solarSystemId":30023667,"solarSystemName":"T.FSQ.XQ3","location":{"x":23400000000000000000,"y":-4210000000000000000,"z":-6790000000000000000}},"30023668":{"solarSystemId":30023668,"solarSystemName":"A.B5V.FW4","location":{"x":22100000000000000000,"y":-5680000000000000000,"z":-6570000000000000000}},"30023669":{"solarSystemId":30023669,"solarSystemName":"R.68V.HM3","location":{"x":22200000000000000000,"y":-4100000000000000000,"z":-7200000000000000000}},"30023670":{"solarSystemId":30023670,"solarSystemName":"A.ZHP.HR5","location":{"x":21600000000000000000,"y":-6260000000000000000,"z":-7200000000000000000}},"30023671":{"solarSystemId":30023671,"solarSystemName":"I.08L.V39","location":{"x":16400000000000000000,"y":328000000000000000,"z":-14000000000000000000}},"30023672":{"solarSystemId":30023672,"solarSystemName":"I.CER.SY4","location":{"x":16100000000000000000,"y":175000000000000000,"z":-14600000000000000000}},"30023673":{"solarSystemId":30023673,"solarSystemName":"U.95L.E2M","location":{"x":16300000000000000000,"y":616000000000000000,"z":-13800000000000000000}},"30023674":{"solarSystemId":30023674,"solarSystemName":"T.S2L.RP8","location":{"x":16200000000000000000,"y":309000000000000000,"z":-13400000000000000000}},"30023675":{"solarSystemId":30023675,"solarSystemName":"H.FGR.123","location":{"x":15800000000000000000,"y":-3450000000000000,"z":-13500000000000000000}},"30023676":{"solarSystemId":30023676,"solarSystemName":"R.3JL.K1B","location":{"x":17000000000000000000,"y":-795000000000000000,"z":-13700000000000000000}},"30023677":{"solarSystemId":30023677,"solarSystemName":"S.ZVL.W1L","location":{"x":16900000000000000000,"y":507000000000000000,"z":-13800000000000000000}},"30023678":{"solarSystemId":30023678,"solarSystemName":"R.22D.4G6","location":{"x":17400000000000000000,"y":-242000000000000000,"z":-17100000000000000000}},"30023679":{"solarSystemId":30023679,"solarSystemName":"A.LLD.1W8","location":{"x":17800000000000000000,"y":321000000000000000,"z":-16700000000000000000}},"30023680":{"solarSystemId":30023680,"solarSystemName":"A.RQL.MN4","location":{"x":16900000000000000000,"y":-158000000000000000,"z":-15600000000000000000}},"30023681":{"solarSystemId":30023681,"solarSystemName":"R.4MR.NX8","location":{"x":15600000000000000000,"y":-9940000000000000,"z":-17000000000000000000}},"30023682":{"solarSystemId":30023682,"solarSystemName":"E.K2D.7B3","location":{"x":17400000000000000000,"y":133000000000000000,"z":-16700000000000000000}},"30023683":{"solarSystemId":30023683,"solarSystemName":"D.FBL.3H2","location":{"x":17000000000000000000,"y":-99200000000000000,"z":-16000000000000000000}},"30023684":{"solarSystemId":30023684,"solarSystemName":"N.MVR.H3P","location":{"x":15700000000000000000,"y":-653000000000000000,"z":-17000000000000000000}},"30023685":{"solarSystemId":30023685,"solarSystemName":"U.9DR.EJ1","location":{"x":15500000000000000000,"y":65300000000000000,"z":-18000000000000000000}},"30023686":{"solarSystemId":30023686,"solarSystemName":"T.TJR.DZ7","location":{"x":15900000000000000000,"y":-284000000000000000,"z":-19000000000000000000}},"30023687":{"solarSystemId":30023687,"solarSystemName":"N.DFT.SZ5","location":{"x":13500000000000000000,"y":-212000000000000000,"z":-18200000000000000000}},"30023688":{"solarSystemId":30023688,"solarSystemName":"N.BMR.CZ6","location":{"x":15600000000000000000,"y":-248000000000000000,"z":-18500000000000000000}},"30023689":{"solarSystemId":30023689,"solarSystemName":"N.LQT.YW5","location":{"x":13400000000000000000,"y":214000000000000000,"z":-18500000000000000000}},"30023690":{"solarSystemId":30023690,"solarSystemName":"R.3ES.GH1","location":{"x":12600000000000000000,"y":63900000000000000,"z":-15900000000000000000}},"30023691":{"solarSystemId":30023691,"solarSystemName":"R.S9S.79X","location":{"x":11900000000000000000,"y":947000000000000000,"z":-17000000000000000000}},"30023692":{"solarSystemId":30023692,"solarSystemName":"A.KZT.H4Z","location":{"x":13700000000000000000,"y":1010000000000000000,"z":-16200000000000000000}},"30023693":{"solarSystemId":30023693,"solarSystemName":"L.69T.F0S","location":{"x":13000000000000000000,"y":361000000000000000,"z":-16400000000000000000}},"30023694":{"solarSystemId":30023694,"solarSystemName":"A.V6R.NF1","location":{"x":15200000000000000000,"y":60100000000000000,"z":-15000000000000000000}},"30023695":{"solarSystemId":30023695,"solarSystemName":"S.2GT.GVG","location":{"x":13500000000000000000,"y":851000000000000000,"z":-16400000000000000000}},"30023696":{"solarSystemId":30023696,"solarSystemName":"E.G3L.5XN","location":{"x":16300000000000000000,"y":462000000000000000,"z":-12400000000000000000}},"30023697":{"solarSystemId":30023697,"solarSystemName":"H.WSL.50R","location":{"x":16500000000000000000,"y":469000000000000000,"z":-12400000000000000000}},"30023698":{"solarSystemId":30023698,"solarSystemName":"L.TNR.L4N","location":{"x":15400000000000000000,"y":437000000000000000,"z":-11800000000000000000}},"30023699":{"solarSystemId":30023699,"solarSystemName":"E.X3D.L09","location":{"x":17400000000000000000,"y":325000000000000000,"z":-13000000000000000000}},"30023700":{"solarSystemId":30023700,"solarSystemName":"H.C2L.ZD9","location":{"x":16200000000000000000,"y":342000000000000000,"z":-11400000000000000000}},"30023701":{"solarSystemId":30023701,"solarSystemName":"N.P0R.WTC","location":{"x":15000000000000000000,"y":590000000000000000,"z":-13000000000000000000}},"30023702":{"solarSystemId":30023702,"solarSystemName":"A.N6L.2D2","location":{"x":16400000000000000000,"y":89000000000000000,"z":-11100000000000000000}},"30023703":{"solarSystemId":30023703,"solarSystemName":"H.1VB.TF2","location":{"x":26100000000000000000,"y":-3080000000000000000,"z":-19600000000000000000}},"30023704":{"solarSystemId":30023704,"solarSystemName":"S.99Q.Q93","location":{"x":23400000000000000000,"y":-119000000000000000,"z":-20800000000000000000}},"30023705":{"solarSystemId":30023705,"solarSystemName":"I.3PF.F88","location":{"x":24900000000000000000,"y":-298000000000000000,"z":-18500000000000000000}},"30023706":{"solarSystemId":30023706,"solarSystemName":"C.9BQ.QY2","location":{"x":23900000000000000000,"y":-3300000000000000000,"z":-19800000000000000000}},"30023707":{"solarSystemId":30023707,"solarSystemName":"M.9FQ.KB2","location":{"x":23800000000000000000,"y":-3130000000000000000,"z":-19500000000000000000}},"30023708":{"solarSystemId":30023708,"solarSystemName":"U.8KL.TDC","location":{"x":17200000000000000000,"y":-594000000000000000,"z":-21200000000000000000}},"30023709":{"solarSystemId":30023709,"solarSystemName":"E.1GL.NJL","location":{"x":17000000000000000000,"y":-533000000000000000,"z":-20400000000000000000}},"30023710":{"solarSystemId":30023710,"solarSystemName":"D.3SD.CT2","location":{"x":17700000000000000000,"y":-2720000000000000000,"z":-20300000000000000000}},"30023711":{"solarSystemId":30023711,"solarSystemName":"R.7WL.MR5","location":{"x":17200000000000000000,"y":-195000000000000000,"z":-19100000000000000000}},"30023712":{"solarSystemId":30023712,"solarSystemName":"N.SBD.QQV","location":{"x":18100000000000000000,"y":-708000000000000000,"z":-19300000000000000000}},"30023713":{"solarSystemId":30023713,"solarSystemName":"E.M6D.8LJ","location":{"x":17500000000000000000,"y":-917000000000000000,"z":-21600000000000000000}},"30023714":{"solarSystemId":30023714,"solarSystemName":"U.NSQ.KX1","location":{"x":23400000000000000000,"y":66400000000000000,"z":-18400000000000000000}},"30023715":{"solarSystemId":30023715,"solarSystemName":"H.V2F.ED1","location":{"x":24300000000000000000,"y":54000000000000000,"z":-17100000000000000000}},"30023716":{"solarSystemId":30023716,"solarSystemName":"R.LPQ.2Y2","location":{"x":23700000000000000000,"y":103000000000000000,"z":-18500000000000000000}},"30023717":{"solarSystemId":30023717,"solarSystemName":"N.76F.3X1","location":{"x":24400000000000000000,"y":-65400000000000000,"z":-17300000000000000000}},"30023718":{"solarSystemId":30023718,"solarSystemName":"S.35F.6W5","location":{"x":24400000000000000000,"y":-213000000000000000,"z":-17000000000000000000}},"30023719":{"solarSystemId":30023719,"solarSystemName":"S.K9V.G85","location":{"x":22300000000000000000,"y":-190000000000000000,"z":-24200000000000000000}},"30023720":{"solarSystemId":30023720,"solarSystemName":"A.6VB.E3D","location":{"x":26100000000000000000,"y":-17000000000000000,"z":-21200000000000000000}},"30023721":{"solarSystemId":30023721,"solarSystemName":"N.3QH.HGL","location":{"x":28400000000000000000,"y":16600000000000000,"z":-22000000000000000000}},"30023722":{"solarSystemId":30023722,"solarSystemName":"N.0CQ.G85","location":{"x":23600000000000000000,"y":190000000000000000,"z":-19800000000000000000}},"30023723":{"solarSystemId":30023723,"solarSystemName":"T.6FB.ZE3","location":{"x":26100000000000000000,"y":-144000000000000000,"z":-21400000000000000000}},"30023724":{"solarSystemId":30023724,"solarSystemName":"C.7VQ.ZV4","location":{"x":23800000000000000000,"y":-5330000000000000000,"z":-26300000000000000000}},"30023725":{"solarSystemId":30023725,"solarSystemName":"O.2PQ.YE3","location":{"x":23700000000000000000,"y":-4610000000000000000,"z":-25500000000000000000}},"30023726":{"solarSystemId":30023726,"solarSystemName":"G.EHQ.L84","location":{"x":24000000000000000000,"y":-4920000000000000000,"z":-25700000000000000000}},"30023727":{"solarSystemId":30023727,"solarSystemName":"Z:NO9V","location":{"x":5130000000000000000,"y":-922000000000000000,"z":-14800000000000000000}},"30023728":{"solarSystemId":30023728,"solarSystemName":"U:3V4E","location":{"x":4710000000000000000,"y":-288000000000000000,"z":-15300000000000000000}},"30023729":{"solarSystemId":30023729,"solarSystemName":"G:1VIN","location":{"x":5080000000000000000,"y":-858000000000000000,"z":-15600000000000000000}},"30023730":{"solarSystemId":30023730,"solarSystemName":"Q:13K7","location":{"x":3860000000000000000,"y":-832000000000000000,"z":-15800000000000000000}},"30023731":{"solarSystemId":30023731,"solarSystemName":"G:4RLV","location":{"x":4180000000000000000,"y":-997000000000000000,"z":-14600000000000000000}},"30023732":{"solarSystemId":30023732,"solarSystemName":"P:1K87","location":{"x":4850000000000000000,"y":-465000000000000000,"z":-15400000000000000000}},"30023733":{"solarSystemId":30023733,"solarSystemName":"Z:12L2","location":{"x":3720000000000000000,"y":-1030000000000000000,"z":-15600000000000000000}},"30023734":{"solarSystemId":30023734,"solarSystemName":"H:4TAK","location":{"x":3830000000000000000,"y":-516000000000000000,"z":-14800000000000000000}},"30023735":{"solarSystemId":30023735,"solarSystemName":"Q:2RTR","location":{"x":4840000000000000000,"y":-741000000000000000,"z":-15400000000000000000}},"30023736":{"solarSystemId":30023736,"solarSystemName":"B:2E9K","location":{"x":3280000000000000000,"y":-924000000000000000,"z":-17200000000000000000}},"30023737":{"solarSystemId":30023737,"solarSystemName":"Q:1195","location":{"x":3570000000000000000,"y":-313000000000000000,"z":-16700000000000000000}},"30023738":{"solarSystemId":30023738,"solarSystemName":"H:346K","location":{"x":3040000000000000000,"y":-8080000000000000,"z":-15900000000000000000}},"30023739":{"solarSystemId":30023739,"solarSystemName":"D:2KI0","location":{"x":3760000000000000000,"y":-1290000000000000000,"z":-16500000000000000000}},"30023740":{"solarSystemId":30023740,"solarSystemName":"P:N443","location":{"x":3290000000000000000,"y":-1010000000000000000,"z":-17200000000000000000}},"30023741":{"solarSystemId":30023741,"solarSystemName":"J:1EE2","location":{"x":4220000000000000000,"y":-170000000000000000,"z":-16600000000000000000}},"30023742":{"solarSystemId":30023742,"solarSystemName":"Q:1OIR","location":{"x":4050000000000000000,"y":14800000000000000,"z":-17400000000000000000}},"30023743":{"solarSystemId":30023743,"solarSystemName":"Q:VK50","location":{"x":3670000000000000000,"y":-682000000000000000,"z":-17100000000000000000}},"30023744":{"solarSystemId":30023744,"solarSystemName":"M:219N","location":{"x":3500000000000000000,"y":-950000000000000000,"z":-16500000000000000000}},"30023745":{"solarSystemId":30023745,"solarSystemName":"P:37S8","location":{"x":3020000000000000000,"y":3090000000000000000,"z":-15700000000000000000}},"30023746":{"solarSystemId":30023746,"solarSystemName":"Y:4N65","location":{"x":3550000000000000000,"y":683000000000000000,"z":-17100000000000000000}},"30023747":{"solarSystemId":30023747,"solarSystemName":"M:1T1N","location":{"x":4210000000000000000,"y":1370000000000000000,"z":-17200000000000000000}},"30023748":{"solarSystemId":30023748,"solarSystemName":"M:2OIV","location":{"x":3970000000000000000,"y":324000000000000000,"z":-14900000000000000000}},"30023749":{"solarSystemId":30023749,"solarSystemName":"J:2896","location":{"x":2840000000000000000,"y":772000000000000000,"z":-17900000000000000000}},"30023750":{"solarSystemId":30023750,"solarSystemName":"F:1IL1","location":{"x":5320000000000000000,"y":1430000000000000000,"z":-16900000000000000000}},"30023751":{"solarSystemId":30023751,"solarSystemName":"D:2868","location":{"x":3840000000000000000,"y":1710000000000000000,"z":-17400000000000000000}},"30023752":{"solarSystemId":30023752,"solarSystemName":"M:1R3E","location":{"x":5690000000000000000,"y":-335000000000000000,"z":-17400000000000000000}},"30023753":{"solarSystemId":30023753,"solarSystemName":"P:3V1R","location":{"x":6650000000000000000,"y":-750000000000000000,"z":-17000000000000000000}},"30023754":{"solarSystemId":30023754,"solarSystemName":"U:32IV","location":{"x":5530000000000000000,"y":-933000000000000000,"z":-17400000000000000000}},"30023755":{"solarSystemId":30023755,"solarSystemName":"Q:KNS4","location":{"x":5460000000000000000,"y":-666000000000000000,"z":-16900000000000000000}},"30023756":{"solarSystemId":30023756,"solarSystemName":"P:2270","location":{"x":6300000000000000000,"y":-350000000000000000,"z":-18000000000000000000}},"30023757":{"solarSystemId":30023757,"solarSystemName":"U:1K39","location":{"x":4960000000000000000,"y":202000000000000000,"z":-17800000000000000000}},"30023758":{"solarSystemId":30023758,"solarSystemName":"G:1TTA","location":{"x":6020000000000000000,"y":-466000000000000000,"z":-17800000000000000000}},"30023759":{"solarSystemId":30023759,"solarSystemName":"J:3N12","location":{"x":5030000000000000000,"y":-408000000000000000,"z":-18600000000000000000}},"30023760":{"solarSystemId":30023760,"solarSystemName":"IN7-L29","location":{"x":44200000000000000000,"y":-8000000000000000000,"z":-24000000000000000000}},"30023761":{"solarSystemId":30023761,"solarSystemName":"I54-129","location":{"x":41400000000000000000,"y":-7400000000000000000,"z":-22400000000000000000}},"30023762":{"solarSystemId":30023762,"solarSystemName":"E33-M29","location":{"x":45500000000000000000,"y":-8310000000000000000,"z":-20200000000000000000}},"30023763":{"solarSystemId":30023763,"solarSystemName":"EJ5-D29","location":{"x":43200000000000000000,"y":-9100000000000000000,"z":-22800000000000000000}},"30023764":{"solarSystemId":30023764,"solarSystemName":"EF3-629","location":{"x":42500000000000000000,"y":-7950000000000000000,"z":-21700000000000000000}},"30023765":{"solarSystemId":30023765,"solarSystemName":"U9K-329","location":{"x":42300000000000000000,"y":-7740000000000000000,"z":-19800000000000000000}},"30023766":{"solarSystemId":30023766,"solarSystemName":"I5H-L29","location":{"x":44500000000000000000,"y":-7080000000000000000,"z":-23800000000000000000}},"30023767":{"solarSystemId":30023767,"solarSystemName":"ENL-N19","location":{"x":40500000000000000000,"y":-7590000000000000000,"z":-22200000000000000000}},"30023768":{"solarSystemId":30023768,"solarSystemName":"A91-619","location":{"x":39100000000000000000,"y":-9100000000000000000,"z":-20300000000000000000}},"30023769":{"solarSystemId":30023769,"solarSystemName":"EJP-P19","location":{"x":41400000000000000000,"y":-8710000000000000000,"z":-18200000000000000000}},"30023770":{"solarSystemId":30023770,"solarSystemName":"ISH-M19","location":{"x":39800000000000000000,"y":-8400000000000000000,"z":-23900000000000000000}},"30023771":{"solarSystemId":30023771,"solarSystemName":"UMD-J09","location":{"x":37200000000000000000,"y":-9220000000000000000,"z":-20600000000000000000}},"30023772":{"solarSystemId":30023772,"solarSystemName":"ARG-B29","location":{"x":42500000000000000000,"y":-9900000000000000000,"z":-23300000000000000000}},"30023773":{"solarSystemId":30023773,"solarSystemName":"OQM-R19","location":{"x":37600000000000000000,"y":-5430000000000000000,"z":-31900000000000000000}},"30023774":{"solarSystemId":30023774,"solarSystemName":"E2S-829","location":{"x":41900000000000000000,"y":-8000000000000000000,"z":-25600000000000000000}},"30023775":{"solarSystemId":30023775,"solarSystemName":"OFT-T19","location":{"x":40700000000000000000,"y":-7960000000000000000,"z":-24000000000000000000}},"30023776":{"solarSystemId":30023776,"solarSystemName":"IK0-529","location":{"x":41200000000000000000,"y":-8070000000000000000,"z":-24000000000000000000}},"30023777":{"solarSystemId":30023777,"solarSystemName":"E9D-R19","location":{"x":40400000000000000000,"y":-8260000000000000000,"z":-23700000000000000000}},"30023778":{"solarSystemId":30023778,"solarSystemName":"IPF-729","location":{"x":41600000000000000000,"y":-6660000000000000000,"z":-26000000000000000000}},"30023779":{"solarSystemId":30023779,"solarSystemName":"EHV-Q29","location":{"x":45400000000000000000,"y":-9750000000000000000,"z":-24400000000000000000}},"30023780":{"solarSystemId":30023780,"solarSystemName":"I70-L29","location":{"x":44100000000000000000,"y":-10100000000000000000,"z":-23000000000000000000}},"30023781":{"solarSystemId":30023781,"solarSystemName":"ENR-P29","location":{"x":44700000000000000000,"y":-10500000000000000000,"z":-25100000000000000000}},"30023782":{"solarSystemId":30023782,"solarSystemName":"US4-K29","location":{"x":44100000000000000000,"y":-10100000000000000000,"z":-22600000000000000000}},"30023783":{"solarSystemId":30023783,"solarSystemName":"APS-S29","location":{"x":45600000000000000000,"y":-10900000000000000000,"z":-24700000000000000000}},"30023784":{"solarSystemId":30023784,"solarSystemName":"EF3-L09","location":{"x":38300000000000000000,"y":-218000000000000000,"z":-21200000000000000000}},"30023785":{"solarSystemId":30023785,"solarSystemName":"IVJ-119","location":{"x":38500000000000000000,"y":8350000000000000,"z":-23600000000000000000}},"30023786":{"solarSystemId":30023786,"solarSystemName":"ID8-409","location":{"x":36200000000000000000,"y":-550000000000000000,"z":-23400000000000000000}},"30023787":{"solarSystemId":30023787,"solarSystemName":"UJ5-L19","location":{"x":41200000000000000000,"y":248000000000000000,"z":-21500000000000000000}},"30023788":{"solarSystemId":30023788,"solarSystemName":"O0D-P09","location":{"x":38500000000000000000,"y":-187000000000000000,"z":-21600000000000000000}},"30023789":{"solarSystemId":30023789,"solarSystemName":"OP8-619","location":{"x":39800000000000000000,"y":-354000000000000000,"z":-21100000000000000000}},"30023790":{"solarSystemId":30023790,"solarSystemName":"E8Q-J19","location":{"x":40900000000000000000,"y":358000000000000000,"z":-21800000000000000000}},"30023791":{"solarSystemId":30023791,"solarSystemName":"O.32R.QY4","location":{"x":15100000000000000000,"y":-5610000000000000000,"z":3730000000000000000}},"30023792":{"solarSystemId":30023792,"solarSystemName":"G.PNR.SV4","location":{"x":15400000000000000000,"y":-5310000000000000000,"z":2770000000000000000}},"30023793":{"solarSystemId":30023793,"solarSystemName":"M.71R.MS5","location":{"x":15000000000000000000,"y":-6140000000000000000,"z":3240000000000000000}},"30023794":{"solarSystemId":30023794,"solarSystemName":"B.H3L.K25","location":{"x":16300000000000000000,"y":-5870000000000000000,"z":3700000000000000000}},"30023795":{"solarSystemId":30023795,"solarSystemName":"M.Y4L.255","location":{"x":16300000000000000000,"y":-5950000000000000000,"z":3580000000000000000}},"30023796":{"solarSystemId":30023796,"solarSystemName":"O.RMR.5Y4","location":{"x":15600000000000000000,"y":-5590000000000000000,"z":4840000000000000000}},"30023797":{"solarSystemId":30023797,"solarSystemName":"S.M9R.1R9","location":{"x":15300000000000000000,"y":-339000000000000000,"z":585000000000000000}},"30023798":{"solarSystemId":30023798,"solarSystemName":"U.VLR.JEL","location":{"x":15500000000000000000,"y":-540000000000000000,"z":224000000000000000}},"30023799":{"solarSystemId":30023799,"solarSystemName":"I.PMR.4M1","location":{"x":15600000000000000000,"y":55300000000000000,"z":636000000000000000}},"30023800":{"solarSystemId":30023800,"solarSystemName":"A.P0L.0DF","location":{"x":16200000000000000000,"y":-774000000000000000,"z":920000000000000000}},"30023801":{"solarSystemId":30023801,"solarSystemName":"E.1WR.1P7","location":{"x":16000000000000000000,"y":-273000000000000000,"z":311000000000000000}},"30023802":{"solarSystemId":30023802,"solarSystemName":"E.7HR.GZ9","location":{"x":15900000000000000000,"y":-357000000000000000,"z":250000000000000000}},"30023803":{"solarSystemId":30023803,"solarSystemName":"H.Q4L.55T","location":{"x":16300000000000000000,"y":-402000000000000000,"z":321000000000000000}},"30023804":{"solarSystemId":30023804,"solarSystemName":"I.94L.9XL","location":{"x":16300000000000000000,"y":-534000000000000000,"z":432000000000000000}},"30023805":{"solarSystemId":30023805,"solarSystemName":"A.GRR.F7L","location":{"x":15500000000000000000,"y":-513000000000000000,"z":-140000000000000000}},"30023806":{"solarSystemId":30023806,"solarSystemName":"C.BEN.X9V","location":{"x":15000000000000000000,"y":-21700000000000000,"z":479000000000000000}},"30023807":{"solarSystemId":30023807,"solarSystemName":"R.KDN.PL4","location":{"x":14400000000000000000,"y":-5140000000000000000,"z":2700000000000000000}},"30023808":{"solarSystemId":30023808,"solarSystemName":"R.9DT.QK4","location":{"x":13200000000000000000,"y":-5720000000000000000,"z":3290000000000000000}},"30023809":{"solarSystemId":30023809,"solarSystemName":"M.32N.FJ4","location":{"x":13900000000000000000,"y":-5540000000000000000,"z":3210000000000000000}},"30023810":{"solarSystemId":30023810,"solarSystemName":"O.16N.8H4","location":{"x":14100000000000000000,"y":-5490000000000000000,"z":2870000000000000000}},"30023811":{"solarSystemId":30023811,"solarSystemName":"O.L8N.Y25","location":{"x":14100000000000000000,"y":-5870000000000000000,"z":2660000000000000000}},"30023812":{"solarSystemId":30023812,"solarSystemName":"U.8BR.FJ3","location":{"x":15800000000000000000,"y":-4380000000000000000,"z":2470000000000000000}},"30023813":{"solarSystemId":30023813,"solarSystemName":"D.1CN.PD3","location":{"x":14400000000000000000,"y":-4020000000000000000,"z":1990000000000000000}},"30023814":{"solarSystemId":30023814,"solarSystemName":"R.Q9L.3J2","location":{"x":16500000000000000000,"y":-3210000000000000000,"z":3430000000000000000}},"30023815":{"solarSystemId":30023815,"solarSystemName":"A.5FR.X52","location":{"x":15800000000000000000,"y":-2520000000000000000,"z":3300000000000000000}},"30023816":{"solarSystemId":30023816,"solarSystemName":"H.CBR.081","location":{"x":15800000000000000000,"y":-1440000000000000000,"z":1640000000000000000}},"30023817":{"solarSystemId":30023817,"solarSystemName":"U.1ZL.KK2","location":{"x":17200000000000000000,"y":-3420000000000000000,"z":3360000000000000000}},"30023818":{"solarSystemId":30023818,"solarSystemName":"I.24L.WV2","location":{"x":16300000000000000000,"y":-3020000000000000000,"z":3050000000000000000}},"30023819":{"solarSystemId":30023819,"solarSystemName":"U.L6R.ZJ1","location":{"x":15200000000000000000,"y":-2090000000000000000,"z":3260000000000000000}},"30023820":{"solarSystemId":30023820,"solarSystemName":"A.MC6.V61","location":{"x":7510000000000000000,"y":-1390000000000000000,"z":-29900000000000000000}},"30023821":{"solarSystemId":30023821,"solarSystemName":"S.PD6.C9G","location":{"x":7480000000000000000,"y":-839000000000000000,"z":-26900000000000000000}},"30023822":{"solarSystemId":30023822,"solarSystemName":"N.SL5.N3F","location":{"x":6280000000000000000,"y":-760000000000000000,"z":-27600000000000000000}},"30023823":{"solarSystemId":30023823,"solarSystemName":"H.427.CP1","location":{"x":8150000000000000000,"y":-1820000000000000000,"z":-29000000000000000000}},"30023824":{"solarSystemId":30023824,"solarSystemName":"D.DP5.7N9","location":{"x":6430000000000000000,"y":-338000000000000000,"z":-28200000000000000000}},"30023825":{"solarSystemId":30023825,"solarSystemName":"U.RDS.Z23","location":{"x":12100000000000000000,"y":-111000000000000000,"z":-27900000000000000000}},"30023826":{"solarSystemId":30023826,"solarSystemName":"T.SM4.ECX","location":{"x":5240000000000000000,"y":-956000000000000000,"z":-28000000000000000000}},"30023827":{"solarSystemId":30023827,"solarSystemName":"H.17S.1Q5","location":{"x":11800000000000000000,"y":-203000000000000000,"z":-26900000000000000000}},"30023828":{"solarSystemId":30023828,"solarSystemName":"E.5TT.P67","location":{"x":13100000000000000000,"y":260000000000000000,"z":-34300000000000000000}},"30023829":{"solarSystemId":30023829,"solarSystemName":"U.6JN.T71","location":{"x":14700000000000000000,"y":44300000000000000,"z":-27700000000000000000}},"30023830":{"solarSystemId":30023830,"solarSystemName":"A.VF7.MZ3","location":{"x":8850000000000000000,"y":140000000000000000,"z":-26400000000000000000}},"30023831":{"solarSystemId":30023831,"solarSystemName":"N.658.0J9","location":{"x":9410000000000000000,"y":352000000000000000,"z":-27000000000000000000}},"30023832":{"solarSystemId":30023832,"solarSystemName":"I.6D6.JE1","location":{"x":7470000000000000000,"y":-71800000000000000,"z":-25900000000000000000}},"30023833":{"solarSystemId":30023833,"solarSystemName":"N.QX8.0YP","location":{"x":10200000000000000000,"y":679000000000000000,"z":-26900000000000000000}},"30023834":{"solarSystemId":30023834,"solarSystemName":"R.TJ7.M49","location":{"x":8980000000000000000,"y":329000000000000000,"z":-27700000000000000000}},"30023835":{"solarSystemId":30023835,"solarSystemName":"R.8D7.3BS","location":{"x":8620000000000000000,"y":385000000000000000,"z":-32800000000000000000}},"30023836":{"solarSystemId":30023836,"solarSystemName":"T.9ZS.B11","location":{"x":12500000000000000000,"y":-37900000000000000,"z":-31100000000000000000}},"30023837":{"solarSystemId":30023837,"solarSystemName":"R.RR7.LS6","location":{"x":8550000000000000000,"y":228000000000000000,"z":-32800000000000000000}},"30023838":{"solarSystemId":30023838,"solarSystemName":"H.WT7.445","location":{"x":8500000000000000000,"y":185000000000000000,"z":-33500000000000000000}},"30023839":{"solarSystemId":30023839,"solarSystemName":"S.4ES.WB2","location":{"x":12700000000000000000,"y":-97900000000000000,"z":-31700000000000000000}},"30023840":{"solarSystemId":30023840,"solarSystemName":"F:3R3S","location":{"x":5610000000000000000,"y":-1330000000000000000,"z":-9490000000000000000}},"30023841":{"solarSystemId":30023841,"solarSystemName":"P:131I","location":{"x":5610000000000000000,"y":-1740000000000000000,"z":-8910000000000000000}},"30023842":{"solarSystemId":30023842,"solarSystemName":"H:30IA","location":{"x":6330000000000000000,"y":-1230000000000000000,"z":-8380000000000000000}},"30023843":{"solarSystemId":30023843,"solarSystemName":"Q:1K5L","location":{"x":6060000000000000000,"y":-541000000000000000,"z":-7830000000000000000}},"30023844":{"solarSystemId":30023844,"solarSystemName":"B:4T32","location":{"x":5630000000000000000,"y":-365000000000000000,"z":-7560000000000000000}},"30023845":{"solarSystemId":30023845,"solarSystemName":"Z:1LLK","location":{"x":5980000000000000000,"y":-64500000000000000,"z":-7630000000000000000}},"30023846":{"solarSystemId":30023846,"solarSystemName":"M:22NO","location":{"x":6300000000000000000,"y":-996000000000000000,"z":-8240000000000000000}},"30023847":{"solarSystemId":30023847,"solarSystemName":"Q:1NT4","location":{"x":6130000000000000000,"y":-578000000000000000,"z":-7720000000000000000}},"30023848":{"solarSystemId":30023848,"solarSystemName":"Q:3739","location":{"x":5900000000000000000,"y":69200000000000000,"z":-8360000000000000000}},"30023849":{"solarSystemId":30023849,"solarSystemName":"Z:1S7S","location":{"x":5720000000000000000,"y":-849000000000000000,"z":-8740000000000000000}},"30023850":{"solarSystemId":30023850,"solarSystemName":"Y:2552","location":{"x":5320000000000000000,"y":-61000000000000000,"z":-9230000000000000000}},"30023851":{"solarSystemId":30023851,"solarSystemName":"P:3E41","location":{"x":5600000000000000000,"y":-457000000000000000,"z":-7810000000000000000}},"30023852":{"solarSystemId":30023852,"solarSystemName":"B:2I64","location":{"x":5890000000000000000,"y":-611000000000000000,"z":-9380000000000000000}},"30023853":{"solarSystemId":30023853,"solarSystemName":"J:279K","location":{"x":5770000000000000000,"y":-494000000000000000,"z":-9620000000000000000}},"30023854":{"solarSystemId":30023854,"solarSystemName":"H:43R5","location":{"x":6390000000000000000,"y":-914000000000000000,"z":-7910000000000000000}},"30023855":{"solarSystemId":30023855,"solarSystemName":"Q:28R1","location":{"x":6530000000000000000,"y":-721000000000000000,"z":-8740000000000000000}},"30023856":{"solarSystemId":30023856,"solarSystemName":"Z:2E61","location":{"x":5360000000000000000,"y":-393000000000000000,"z":-7430000000000000000}},"30023857":{"solarSystemId":30023857,"solarSystemName":"M:3S76","location":{"x":8580000000000000000,"y":891000000000000000,"z":-11600000000000000000}},"30023858":{"solarSystemId":30023858,"solarSystemName":"Q:3NOS","location":{"x":7640000000000000000,"y":722000000000000000,"z":-11700000000000000000}},"30023859":{"solarSystemId":30023859,"solarSystemName":"D:R344","location":{"x":6910000000000000000,"y":-607000000000000000,"z":-11300000000000000000}},"30023860":{"solarSystemId":30023860,"solarSystemName":"Y:1633","location":{"x":7870000000000000000,"y":-397000000000000000,"z":-10300000000000000000}},"30023861":{"solarSystemId":30023861,"solarSystemName":"Q:3354","location":{"x":7670000000000000000,"y":-423000000000000000,"z":-10500000000000000000}},"30023862":{"solarSystemId":30023862,"solarSystemName":"P:2NI9","location":{"x":7540000000000000000,"y":1110000000000000000,"z":-11200000000000000000}},"30023863":{"solarSystemId":30023863,"solarSystemName":"G:1L2S","location":{"x":8430000000000000000,"y":1370000000000000000,"z":-13000000000000000000}},"30023864":{"solarSystemId":30023864,"solarSystemName":"U:I6V7","location":{"x":8080000000000000000,"y":-290000000000000000,"z":-10400000000000000000}},"30023865":{"solarSystemId":30023865,"solarSystemName":"Y:3ERL","location":{"x":6360000000000000000,"y":370000000000000000,"z":-10800000000000000000}},"30023866":{"solarSystemId":30023866,"solarSystemName":"Y:3N52","location":{"x":7960000000000000000,"y":-525000000000000000,"z":-10100000000000000000}},"30023867":{"solarSystemId":30023867,"solarSystemName":"M:19TT","location":{"x":8070000000000000000,"y":-7880000000000000,"z":-10700000000000000000}},"30023868":{"solarSystemId":30023868,"solarSystemName":"Q:28AE","location":{"x":7010000000000000000,"y":-335000000000000000,"z":-10600000000000000000}},"30023869":{"solarSystemId":30023869,"solarSystemName":"B:3I5L","location":{"x":5820000000000000000,"y":-558000000000000000,"z":-9840000000000000000}},"30023870":{"solarSystemId":30023870,"solarSystemName":"Y:L06A","location":{"x":6610000000000000000,"y":820000000000000000,"z":-9540000000000000000}},"30023871":{"solarSystemId":30023871,"solarSystemName":"G:2N02","location":{"x":5880000000000000000,"y":12700000000000000,"z":-10100000000000000000}},"30023872":{"solarSystemId":30023872,"solarSystemName":"D:1RLK","location":{"x":6490000000000000000,"y":143000000000000000,"z":-9750000000000000000}},"30023873":{"solarSystemId":30023873,"solarSystemName":"H:2OSE","location":{"x":5920000000000000000,"y":-350000000000000000,"z":-9630000000000000000}},"30023874":{"solarSystemId":30023874,"solarSystemName":"Z:33I1","location":{"x":6050000000000000000,"y":136000000000000000,"z":-9650000000000000000}},"30023875":{"solarSystemId":30023875,"solarSystemName":"F:254L","location":{"x":6170000000000000000,"y":32200000000000000,"z":-10200000000000000000}},"30023876":{"solarSystemId":30023876,"solarSystemName":"D:1IO3","location":{"x":6340000000000000000,"y":46600000000000000,"z":-8970000000000000000}},"30023877":{"solarSystemId":30023877,"solarSystemName":"F:2E45","location":{"x":6320000000000000000,"y":-518000000000000000,"z":-9610000000000000000}},"30023878":{"solarSystemId":30023878,"solarSystemName":"Z:2A0N","location":{"x":5610000000000000000,"y":-431000000000000000,"z":-10000000000000000000}},"30023879":{"solarSystemId":30023879,"solarSystemName":"P:1S89","location":{"x":6940000000000000000,"y":-189000000000000000,"z":-10100000000000000000}},"30023880":{"solarSystemId":30023880,"solarSystemName":"H:KKTA","location":{"x":6880000000000000000,"y":-381000000000000000,"z":-10200000000000000000}},"30023881":{"solarSystemId":30023881,"solarSystemName":"Y:NLVO","location":{"x":5450000000000000000,"y":-571000000000000000,"z":-11300000000000000000}},"30023882":{"solarSystemId":30023882,"solarSystemName":"Z:1K88","location":{"x":6180000000000000000,"y":-183000000000000000,"z":-10900000000000000000}},"30023883":{"solarSystemId":30023883,"solarSystemName":"G:N9VK","location":{"x":6620000000000000000,"y":-743000000000000000,"z":-10700000000000000000}},"30023884":{"solarSystemId":30023884,"solarSystemName":"F:49I9","location":{"x":6350000000000000000,"y":-793000000000000000,"z":-11000000000000000000}},"30023885":{"solarSystemId":30023885,"solarSystemName":"Q:2I1K","location":{"x":5100000000000000000,"y":-465000000000000000,"z":-10900000000000000000}},"30023886":{"solarSystemId":30023886,"solarSystemName":"U:2V59","location":{"x":5920000000000000000,"y":-697000000000000000,"z":-11100000000000000000}},"30023887":{"solarSystemId":30023887,"solarSystemName":"J:3EIL","location":{"x":6020000000000000000,"y":-283000000000000000,"z":-11100000000000000000}},"30023888":{"solarSystemId":30023888,"solarSystemName":"Q:3A41","location":{"x":6220000000000000000,"y":-251000000000000000,"z":-11500000000000000000}},"30023889":{"solarSystemId":30023889,"solarSystemName":"B:1VE7","location":{"x":5280000000000000000,"y":-240000000000000000,"z":-11000000000000000000}},"30023890":{"solarSystemId":30023890,"solarSystemName":"Q:N076","location":{"x":6550000000000000000,"y":-682000000000000000,"z":-10600000000000000000}},"30023891":{"solarSystemId":30023891,"solarSystemName":"J:3S6O","location":{"x":2950000000000000000,"y":2190000000000000000,"z":-10200000000000000000}},"30023892":{"solarSystemId":30023892,"solarSystemName":"Z:3NRT","location":{"x":5190000000000000000,"y":2730000000000000000,"z":-9810000000000000000}},"30023893":{"solarSystemId":30023893,"solarSystemName":"U:3E0E","location":{"x":4000000000000000000,"y":640000000000000000,"z":-9060000000000000000}},"30023894":{"solarSystemId":30023894,"solarSystemName":"F:3811","location":{"x":3620000000000000000,"y":940000000000000000,"z":-10200000000000000000}},"30023895":{"solarSystemId":30023895,"solarSystemName":"U:3R69","location":{"x":5390000000000000000,"y":634000000000000000,"z":-11100000000000000000}},"30023896":{"solarSystemId":30023896,"solarSystemName":"H:34O6","location":{"x":4910000000000000000,"y":1760000000000000000,"z":-10400000000000000000}},"30023897":{"solarSystemId":30023897,"solarSystemName":"B:2AV1","location":{"x":5960000000000000000,"y":2090000000000000000,"z":-8950000000000000000}},"30023898":{"solarSystemId":30023898,"solarSystemName":"Z:1TS1","location":{"x":5840000000000000000,"y":21900000000000000,"z":-9930000000000000000}},"30023899":{"solarSystemId":30023899,"solarSystemName":"H:2EKS","location":{"x":4430000000000000000,"y":2750000000000000000,"z":-11900000000000000000}},"30023900":{"solarSystemId":30023900,"solarSystemName":"D:2LET","location":{"x":3680000000000000000,"y":435000000000000000,"z":-11000000000000000000}},"30023901":{"solarSystemId":30023901,"solarSystemName":"G:1ET0","location":{"x":6940000000000000000,"y":-1250000000000000000,"z":-10700000000000000000}},"30023902":{"solarSystemId":30023902,"solarSystemName":"Z:3E00","location":{"x":7610000000000000000,"y":-1630000000000000000,"z":-10300000000000000000}},"30023903":{"solarSystemId":30023903,"solarSystemName":"M:1KVL","location":{"x":7160000000000000000,"y":-1260000000000000000,"z":-12000000000000000000}},"30023904":{"solarSystemId":30023904,"solarSystemName":"U:364I","location":{"x":7300000000000000000,"y":-301000000000000000,"z":-10300000000000000000}},"30023905":{"solarSystemId":30023905,"solarSystemName":"F:K4L1","location":{"x":7530000000000000000,"y":-672000000000000000,"z":-10800000000000000000}},"30023906":{"solarSystemId":30023906,"solarSystemName":"M:3OO6","location":{"x":6460000000000000000,"y":-2070000000000000000,"z":-9620000000000000000}},"30023907":{"solarSystemId":30023907,"solarSystemName":"M:31O6","location":{"x":6000000000000000000,"y":-1440000000000000000,"z":-9910000000000000000}},"30023908":{"solarSystemId":30023908,"solarSystemName":"G:3502","location":{"x":6790000000000000000,"y":-1220000000000000000,"z":-11600000000000000000}},"30023909":{"solarSystemId":30023909,"solarSystemName":"Y:25RA","location":{"x":6500000000000000000,"y":-1480000000000000000,"z":-11100000000000000000}},"30023910":{"solarSystemId":30023910,"solarSystemName":"J:390I","location":{"x":7440000000000000000,"y":-1040000000000000000,"z":-10900000000000000000}},"30023911":{"solarSystemId":30023911,"solarSystemName":"J:1V3T","location":{"x":6780000000000000000,"y":-1080000000000000000,"z":-10600000000000000000}},"30023912":{"solarSystemId":30023912,"solarSystemName":"U:3V9I","location":{"x":7410000000000000000,"y":-813000000000000000,"z":-9000000000000000000}},"30023913":{"solarSystemId":30023913,"solarSystemName":"B:TRA9","location":{"x":7410000000000000000,"y":-125000000000000000,"z":-8790000000000000000}},"30023914":{"solarSystemId":30023914,"solarSystemName":"B:2VR4","location":{"x":6780000000000000000,"y":-938000000000000000,"z":-9290000000000000000}},"30023915":{"solarSystemId":30023915,"solarSystemName":"M:11O8","location":{"x":6880000000000000000,"y":-476000000000000000,"z":-8640000000000000000}},"30023916":{"solarSystemId":30023916,"solarSystemName":"Q:200S","location":{"x":7510000000000000000,"y":-974000000000000000,"z":-9550000000000000000}},"30023917":{"solarSystemId":30023917,"solarSystemName":"M:256K","location":{"x":7240000000000000000,"y":-675000000000000000,"z":-9030000000000000000}},"30023918":{"solarSystemId":30023918,"solarSystemName":"Z:1OK5","location":{"x":7140000000000000000,"y":-493000000000000000,"z":-9740000000000000000}},"30023919":{"solarSystemId":30023919,"solarSystemName":"D:1N2O","location":{"x":6810000000000000000,"y":-91400000000000000,"z":-8870000000000000000}},"30023920":{"solarSystemId":30023920,"solarSystemName":"M:212O","location":{"x":7330000000000000000,"y":79300000000000000,"z":-9310000000000000000}},"30023921":{"solarSystemId":30023921,"solarSystemName":"G:11O2","location":{"x":7190000000000000000,"y":-366000000000000000,"z":-9100000000000000000}},"30023922":{"solarSystemId":30023922,"solarSystemName":"F:16A6","location":{"x":7140000000000000000,"y":-697000000000000000,"z":-9330000000000000000}},"30023923":{"solarSystemId":30023923,"solarSystemName":"Y:3773","location":{"x":7250000000000000000,"y":-615000000000000000,"z":-9190000000000000000}},"30023924":{"solarSystemId":30023924,"solarSystemName":"Y:1SOO","location":{"x":6820000000000000000,"y":355000000000000000,"z":-9090000000000000000}},"30023925":{"solarSystemId":30023925,"solarSystemName":"J:2TO7","location":{"x":4960000000000000000,"y":-645000000000000000,"z":-9680000000000000000}},"30023926":{"solarSystemId":30023926,"solarSystemName":"Q:1S2V","location":{"x":4830000000000000000,"y":-94800000000000000,"z":-9500000000000000000}},"30023927":{"solarSystemId":30023927,"solarSystemName":"Q:32LS","location":{"x":4650000000000000000,"y":-468000000000000000,"z":-9970000000000000000}},"30023928":{"solarSystemId":30023928,"solarSystemName":"P:RT0R","location":{"x":4110000000000000000,"y":-840000000000000000,"z":-9810000000000000000}},"30023929":{"solarSystemId":30023929,"solarSystemName":"B:TNRI","location":{"x":5040000000000000000,"y":-488000000000000000,"z":-10200000000000000000}},"30023930":{"solarSystemId":30023930,"solarSystemName":"F:28E1","location":{"x":4370000000000000000,"y":-596000000000000000,"z":-10700000000000000000}},"30023931":{"solarSystemId":30023931,"solarSystemName":"D:26V1","location":{"x":5210000000000000000,"y":-741000000000000000,"z":-9920000000000000000}},"30023932":{"solarSystemId":30023932,"solarSystemName":"J:2L9R","location":{"x":4880000000000000000,"y":-129000000000000000,"z":-9460000000000000000}},"30023933":{"solarSystemId":30023933,"solarSystemName":"Y:2OK4","location":{"x":4170000000000000000,"y":-1070000000000000000,"z":-9680000000000000000}},"30023934":{"solarSystemId":30023934,"solarSystemName":"G:2ORO","location":{"x":4790000000000000000,"y":-250000000000000000,"z":-9930000000000000000}},"30023935":{"solarSystemId":30023935,"solarSystemName":"M:29N7","location":{"x":4650000000000000000,"y":-856000000000000000,"z":-10300000000000000000}},"30023936":{"solarSystemId":30023936,"solarSystemName":"M:21IS","location":{"x":4730000000000000000,"y":-733000000000000000,"z":-9760000000000000000}},"30023937":{"solarSystemId":30023937,"solarSystemName":"M:327I","location":{"x":4580000000000000000,"y":-1180000000000000000,"z":-11100000000000000000}},"30023938":{"solarSystemId":30023938,"solarSystemName":"M:20EE","location":{"x":5750000000000000000,"y":-1220000000000000000,"z":-10400000000000000000}},"30023939":{"solarSystemId":30023939,"solarSystemName":"B:1VAR","location":{"x":4830000000000000000,"y":-984000000000000000,"z":-10900000000000000000}},"30023940":{"solarSystemId":30023940,"solarSystemName":"F:2I2E","location":{"x":4720000000000000000,"y":-1110000000000000000,"z":-11600000000000000000}},"30023941":{"solarSystemId":30023941,"solarSystemName":"U:1RI4","location":{"x":4780000000000000000,"y":-329000000000000000,"z":-11000000000000000000}},"30023942":{"solarSystemId":30023942,"solarSystemName":"B:3957","location":{"x":5010000000000000000,"y":-467000000000000000,"z":-11200000000000000000}},"30023943":{"solarSystemId":30023943,"solarSystemName":"J:LSL7","location":{"x":3960000000000000000,"y":-826000000000000000,"z":-11200000000000000000}},"30023944":{"solarSystemId":30023944,"solarSystemName":"Q:IN02","location":{"x":4710000000000000000,"y":-1130000000000000000,"z":-11300000000000000000}},"30023945":{"solarSystemId":30023945,"solarSystemName":"Y:2N4T","location":{"x":4920000000000000000,"y":-1870000000000000000,"z":-10800000000000000000}},"30023946":{"solarSystemId":30023946,"solarSystemName":"F:LVNS","location":{"x":4810000000000000000,"y":-1260000000000000000,"z":-11000000000000000000}},"30023947":{"solarSystemId":30023947,"solarSystemName":"P:4V95","location":{"x":4540000000000000000,"y":-569000000000000000,"z":-11700000000000000000}},"30023948":{"solarSystemId":30023948,"solarSystemName":"D:2ARO","location":{"x":3750000000000000000,"y":-357000000000000000,"z":-7820000000000000000}},"30023949":{"solarSystemId":30023949,"solarSystemName":"D:2E7A","location":{"x":4240000000000000000,"y":-128000000000000000,"z":-9140000000000000000}},"30023950":{"solarSystemId":30023950,"solarSystemName":"H:1T16","location":{"x":3540000000000000000,"y":-467000000000000000,"z":-8620000000000000000}},"30023951":{"solarSystemId":30023951,"solarSystemName":"F:3I9E","location":{"x":5240000000000000000,"y":-61800000000000000,"z":-9240000000000000000}},"30023952":{"solarSystemId":30023952,"solarSystemName":"D:26AL","location":{"x":4420000000000000000,"y":-358000000000000000,"z":-9110000000000000000}},"30023953":{"solarSystemId":30023953,"solarSystemName":"M:101T","location":{"x":4240000000000000000,"y":-867000000000000000,"z":-8250000000000000000}},"30023954":{"solarSystemId":30023954,"solarSystemName":"U:3725","location":{"x":4250000000000000000,"y":789000000000000000,"z":-8130000000000000000}},"30023955":{"solarSystemId":30023955,"solarSystemName":"H:VRK3","location":{"x":3880000000000000000,"y":273680000000000,"z":-8530000000000000000}},"30023956":{"solarSystemId":30023956,"solarSystemName":"P:N7A1","location":{"x":4900000000000000000,"y":46400000000000000,"z":-8110000000000000000}},"30023957":{"solarSystemId":30023957,"solarSystemName":"U:374L","location":{"x":3850000000000000000,"y":-146000000000000000,"z":-9310000000000000000}},"30023958":{"solarSystemId":30023958,"solarSystemName":"F:1OO4","location":{"x":3530000000000000000,"y":-907000000000000000,"z":-8970000000000000000}},"30023959":{"solarSystemId":30023959,"solarSystemName":"B:274K","location":{"x":3280000000000000000,"y":-718000000000000000,"z":-8840000000000000000}},"30023960":{"solarSystemId":30023960,"solarSystemName":"D:1LT6","location":{"x":3880000000000000000,"y":-768000000000000000,"z":-8750000000000000000}},"30023961":{"solarSystemId":30023961,"solarSystemName":"J:IAET","location":{"x":5220000000000000000,"y":96700000000000000,"z":-7910000000000000000}},"30023962":{"solarSystemId":30023962,"solarSystemName":"P:1RA7","location":{"x":7950000000000000000,"y":16500000000000000,"z":-11400000000000000000}},"30023963":{"solarSystemId":30023963,"solarSystemName":"Q:KVN1","location":{"x":8460000000000000000,"y":10200000000000000,"z":-11900000000000000000}},"30023964":{"solarSystemId":30023964,"solarSystemName":"Q:2KOR","location":{"x":8310000000000000000,"y":-78200000000000000,"z":-11400000000000000000}},"30023965":{"solarSystemId":30023965,"solarSystemName":"H:27V5","location":{"x":7900000000000000000,"y":-487000000000000000,"z":-10900000000000000000}},"30023966":{"solarSystemId":30023966,"solarSystemName":"B:1N0T","location":{"x":8390000000000000000,"y":-228000000000000000,"z":-11800000000000000000}},"30023967":{"solarSystemId":30023967,"solarSystemName":"F:1LK4","location":{"x":8190000000000000000,"y":-425000000000000000,"z":-10800000000000000000}},"30023968":{"solarSystemId":30023968,"solarSystemName":"Y:22V1","location":{"x":7790000000000000000,"y":-193000000000000000,"z":-11500000000000000000}},"30023969":{"solarSystemId":30023969,"solarSystemName":"P:2NT3","location":{"x":7100000000000000000,"y":-197000000000000000,"z":-11600000000000000000}},"30023970":{"solarSystemId":30023970,"solarSystemName":"P:3292","location":{"x":8600000000000000000,"y":-266000000000000000,"z":-11300000000000000000}},"30023971":{"solarSystemId":30023971,"solarSystemName":"M:1I59","location":{"x":7760000000000000000,"y":-231000000000000000,"z":-11000000000000000000}},"30023972":{"solarSystemId":30023972,"solarSystemName":"U:250E","location":{"x":9690000000000000000,"y":-807000000000000000,"z":-11000000000000000000}},"30023973":{"solarSystemId":30023973,"solarSystemName":"H:1TKT","location":{"x":9890000000000000000,"y":-68500000000000000,"z":-10400000000000000000}},"30023974":{"solarSystemId":30023974,"solarSystemName":"D:1E86","location":{"x":9570000000000000000,"y":-223000000000000000,"z":-11100000000000000000}},"30023975":{"solarSystemId":30023975,"solarSystemName":"P:3631","location":{"x":9760000000000000000,"y":75200000000000000,"z":-9900000000000000000}},"30023976":{"solarSystemId":30023976,"solarSystemName":"U:L3LV","location":{"x":9170000000000000000,"y":122000000000000000,"z":-11400000000000000000}},"30023977":{"solarSystemId":30023977,"solarSystemName":"Z:EI04","location":{"x":9300000000000000000,"y":36700000000000000,"z":-11500000000000000000}},"30023978":{"solarSystemId":30023978,"solarSystemName":"Y:31RR","location":{"x":9920000000000000000,"y":-168000000000000000,"z":-10500000000000000000}},"30023979":{"solarSystemId":30023979,"solarSystemName":"Y:1725","location":{"x":10200000000000000000,"y":-356000000000000000,"z":-11400000000000000000}},"30023980":{"solarSystemId":30023980,"solarSystemName":"P:2NTL","location":{"x":9800000000000000000,"y":-279000000000000000,"z":-11500000000000000000}},"30023981":{"solarSystemId":30023981,"solarSystemName":"M:2597","location":{"x":9670000000000000000,"y":-572000000000000000,"z":-11500000000000000000}},"30023982":{"solarSystemId":30023982,"solarSystemName":"F:37O9","location":{"x":9750000000000000000,"y":-61200000000000000,"z":-10700000000000000000}},"30023983":{"solarSystemId":30023983,"solarSystemName":"G:12T4","location":{"x":10000000000000000000,"y":-285000000000000000,"z":-11600000000000000000}},"30023984":{"solarSystemId":30023984,"solarSystemName":"B:IVSL","location":{"x":9720000000000000000,"y":-378000000000000000,"z":-10800000000000000000}},"30023985":{"solarSystemId":30023985,"solarSystemName":"G:2IT1","location":{"x":8970000000000000000,"y":-619000000000000000,"z":-12700000000000000000}},"30023986":{"solarSystemId":30023986,"solarSystemName":"Y:2IAE","location":{"x":9220000000000000000,"y":-1020000000000000000,"z":-12800000000000000000}},"30023987":{"solarSystemId":30023987,"solarSystemName":"Q:3T6R","location":{"x":9310000000000000000,"y":-356000000000000000,"z":-13100000000000000000}},"30023988":{"solarSystemId":30023988,"solarSystemName":"F:1RRA","location":{"x":8720000000000000000,"y":31600000000000000,"z":-13500000000000000000}},"30023989":{"solarSystemId":30023989,"solarSystemName":"Q:1K72","location":{"x":9360000000000000000,"y":-960000000000000000,"z":-11800000000000000000}},"30023990":{"solarSystemId":30023990,"solarSystemName":"G:277R","location":{"x":8870000000000000000,"y":-1080000000000000000,"z":-13100000000000000000}},"30023991":{"solarSystemId":30023991,"solarSystemName":"M:16VA","location":{"x":8960000000000000000,"y":-544000000000000000,"z":-11800000000000000000}},"30023992":{"solarSystemId":30023992,"solarSystemName":"M:279E","location":{"x":9790000000000000000,"y":-880000000000000000,"z":-13500000000000000000}},"30023993":{"solarSystemId":30023993,"solarSystemName":"F:293R","location":{"x":11800000000000000000,"y":1750000000000000000,"z":-11100000000000000000}},"30023994":{"solarSystemId":30023994,"solarSystemName":"F:2OK3","location":{"x":9600000000000000000,"y":6270000000000000000,"z":-12400000000000000000}},"30023995":{"solarSystemId":30023995,"solarSystemName":"H:3T8A","location":{"x":7840000000000000000,"y":1590000000000000000,"z":-13700000000000000000}},"30023996":{"solarSystemId":30023996,"solarSystemName":"Y:2L3A","location":{"x":10600000000000000000,"y":249000000000000000,"z":-13600000000000000000}},"30023997":{"solarSystemId":30023997,"solarSystemName":"B:24V9","location":{"x":10100000000000000000,"y":760000000000000000,"z":-11700000000000000000}},"30023998":{"solarSystemId":30023998,"solarSystemName":"B:1N83","location":{"x":8670000000000000000,"y":-34700000000000000,"z":-10600000000000000000}},"30023999":{"solarSystemId":30023999,"solarSystemName":"H:NI3L","location":{"x":8510000000000000000,"y":-802000000000000000,"z":-10800000000000000000}},"30024000":{"solarSystemId":30024000,"solarSystemName":"F:2IKK","location":{"x":8940000000000000000,"y":-284000000000000000,"z":-10700000000000000000}},"30024001":{"solarSystemId":30024001,"solarSystemName":"D:3R55","location":{"x":8980000000000000000,"y":72500000000000000,"z":-10900000000000000000}},"30024002":{"solarSystemId":30024002,"solarSystemName":"Q:4KEE","location":{"x":9620000000000000000,"y":-612000000000000000,"z":-10300000000000000000}},"30024003":{"solarSystemId":30024003,"solarSystemName":"M:38SI","location":{"x":8710000000000000000,"y":-1120000000000000000,"z":-10900000000000000000}},"30024004":{"solarSystemId":30024004,"solarSystemName":"Z:10LR","location":{"x":8490000000000000000,"y":-86500000000000000,"z":-10300000000000000000}},"30024005":{"solarSystemId":30024005,"solarSystemName":"M:34RK","location":{"x":9130000000000000000,"y":-320000000000000000,"z":-10200000000000000000}},"30024006":{"solarSystemId":30024006,"solarSystemName":"Z:23A2","location":{"x":9130000000000000000,"y":-514000000000000000,"z":-10800000000000000000}},"30024007":{"solarSystemId":30024007,"solarSystemName":"Q:39S8","location":{"x":8620000000000000000,"y":-284000000000000000,"z":-10300000000000000000}},"30024008":{"solarSystemId":30024008,"solarSystemName":"F:30A1","location":{"x":8610000000000000000,"y":305000000000000000,"z":-10100000000000000000}},"30024009":{"solarSystemId":30024009,"solarSystemName":"J:3NE5","location":{"x":8690000000000000000,"y":-193000000000000000,"z":-10600000000000000000}},"30024010":{"solarSystemId":30024010,"solarSystemName":"Q:35EA","location":{"x":7960000000000000000,"y":-691000000000000000,"z":-12200000000000000000}},"30024011":{"solarSystemId":30024011,"solarSystemName":"G:I4EK","location":{"x":7680000000000000000,"y":-997000000000000000,"z":-12300000000000000000}},"30024012":{"solarSystemId":30024012,"solarSystemName":"Q:1O50","location":{"x":8110000000000000000,"y":-1030000000000000000,"z":-11700000000000000000}},"30024013":{"solarSystemId":30024013,"solarSystemName":"G:1746","location":{"x":8170000000000000000,"y":-744000000000000000,"z":-11900000000000000000}},"30024014":{"solarSystemId":30024014,"solarSystemName":"H:1KT8","location":{"x":8250000000000000000,"y":-799000000000000000,"z":-11300000000000000000}},"30024015":{"solarSystemId":30024015,"solarSystemName":"F:2110","location":{"x":8480000000000000000,"y":-904000000000000000,"z":-11300000000000000000}},"30024016":{"solarSystemId":30024016,"solarSystemName":"Z:36KS","location":{"x":7490000000000000000,"y":-521000000000000000,"z":-11800000000000000000}},"30024017":{"solarSystemId":30024017,"solarSystemName":"H:E8AR","location":{"x":8650000000000000000,"y":-521000000000000000,"z":-11300000000000000000}},"30024018":{"solarSystemId":30024018,"solarSystemName":"Z:R90K","location":{"x":7940000000000000000,"y":-494000000000000000,"z":-11200000000000000000}},"30024019":{"solarSystemId":30024019,"solarSystemName":"Y:38T8","location":{"x":10300000000000000000,"y":-236000000000000000,"z":-13600000000000000000}},"30024020":{"solarSystemId":30024020,"solarSystemName":"F:1505","location":{"x":9980000000000000000,"y":222000000000000000,"z":-13200000000000000000}},"30024021":{"solarSystemId":30024021,"solarSystemName":"Q:32T9","location":{"x":10800000000000000000,"y":-65800000000000000,"z":-13800000000000000000}},"30024022":{"solarSystemId":30024022,"solarSystemName":"Q:33K7","location":{"x":9970000000000000000,"y":-45700000000000000,"z":-13300000000000000000}},"30024023":{"solarSystemId":30024023,"solarSystemName":"G:20N1","location":{"x":10300000000000000000,"y":-142000000000000000,"z":-13400000000000000000}},"30024024":{"solarSystemId":30024024,"solarSystemName":"F:3NEI","location":{"x":10500000000000000000,"y":93300000000000000,"z":-13700000000000000000}},"30024025":{"solarSystemId":30024025,"solarSystemName":"F:K5A1","location":{"x":9810000000000000000,"y":7350000000000000,"z":-13400000000000000000}},"30024026":{"solarSystemId":30024026,"solarSystemName":"M:1II5","location":{"x":10200000000000000000,"y":-165000000000000000,"z":-13500000000000000000}},"30024027":{"solarSystemId":30024027,"solarSystemName":"U:119K","location":{"x":10100000000000000000,"y":-466000000000000000,"z":-13500000000000000000}},"30024028":{"solarSystemId":30024028,"solarSystemName":"G:3SV2","location":{"x":9630000000000000000,"y":97600000000000000,"z":-12200000000000000000}},"30024029":{"solarSystemId":30024029,"solarSystemName":"Y:3045","location":{"x":10400000000000000000,"y":38700000000000000,"z":-12600000000000000000}},"30024030":{"solarSystemId":30024030,"solarSystemName":"Q:1K8K","location":{"x":9900000000000000000,"y":-455000000000000000,"z":-12400000000000000000}},"30024031":{"solarSystemId":30024031,"solarSystemName":"P:2VTE","location":{"x":9730000000000000000,"y":51400000000000000,"z":-12300000000000000000}},"30024032":{"solarSystemId":30024032,"solarSystemName":"B:E051","location":{"x":9830000000000000000,"y":-493000000000000000,"z":-11900000000000000000}},"30024033":{"solarSystemId":30024033,"solarSystemName":"D:39N7","location":{"x":10400000000000000000,"y":-327000000000000000,"z":-11900000000000000000}},"30024034":{"solarSystemId":30024034,"solarSystemName":"B:S120","location":{"x":9760000000000000000,"y":-383000000000000000,"z":-11900000000000000000}},"30024035":{"solarSystemId":30024035,"solarSystemName":"D:28NL","location":{"x":9930000000000000000,"y":-70100000000000000,"z":-12700000000000000000}},"30024036":{"solarSystemId":30024036,"solarSystemName":"F:1SA2","location":{"x":9920000000000000000,"y":-219000000000000000,"z":-12000000000000000000}},"30024037":{"solarSystemId":30024037,"solarSystemName":"J:384A","location":{"x":6000000000000000000,"y":3690000000000000000,"z":-12400000000000000000}},"30024038":{"solarSystemId":30024038,"solarSystemName":"M:3IO3","location":{"x":5350000000000000000,"y":2630000000000000000,"z":-13900000000000000000}},"30024039":{"solarSystemId":30024039,"solarSystemName":"H:37R4","location":{"x":4030000000000000000,"y":1030000000000000000,"z":-14100000000000000000}},"30024040":{"solarSystemId":30024040,"solarSystemName":"Q:3R2A","location":{"x":3880000000000000000,"y":2710000000000000000,"z":-15500000000000000000}},"30024041":{"solarSystemId":30024041,"solarSystemName":"J:3I3T","location":{"x":3390000000000000000,"y":2160000000000000000,"z":-12800000000000000000}},"30024042":{"solarSystemId":30024042,"solarSystemName":"G:L2AL","location":{"x":5010000000000000000,"y":297000000000000000,"z":-13100000000000000000}},"30024043":{"solarSystemId":30024043,"solarSystemName":"B:SRSL","location":{"x":5750000000000000000,"y":2610000000000000000,"z":-12800000000000000000}},"30024044":{"solarSystemId":30024044,"solarSystemName":"U:36NN","location":{"x":4000000000000000000,"y":100000000000000000,"z":-11500000000000000000}},"30024045":{"solarSystemId":30024045,"solarSystemName":"J:RKVI","location":{"x":3500000000000000000,"y":-993000000000000000,"z":-11200000000000000000}},"30024046":{"solarSystemId":30024046,"solarSystemName":"U:1EV7","location":{"x":3890000000000000000,"y":-253000000000000000,"z":-11100000000000000000}},"30024047":{"solarSystemId":30024047,"solarSystemName":"U:26KR","location":{"x":3670000000000000000,"y":-169000000000000000,"z":-10800000000000000000}},"30024048":{"solarSystemId":30024048,"solarSystemName":"M:3T0T","location":{"x":3550000000000000000,"y":-716000000000000000,"z":-12000000000000000000}},"30024049":{"solarSystemId":30024049,"solarSystemName":"Q:1VER","location":{"x":3770000000000000000,"y":-220000000000000000,"z":-10700000000000000000}},"30024050":{"solarSystemId":30024050,"solarSystemName":"B:24R1","location":{"x":3890000000000000000,"y":-22300000000000000,"z":-11900000000000000000}},"30024051":{"solarSystemId":30024051,"solarSystemName":"G:3VNK","location":{"x":3310000000000000000,"y":-427000000000000000,"z":-11000000000000000000}},"30024052":{"solarSystemId":30024052,"solarSystemName":"M:264N","location":{"x":3840000000000000000,"y":-124000000000000000,"z":-11000000000000000000}},"30024053":{"solarSystemId":30024053,"solarSystemName":"U:12TI","location":{"x":3820000000000000000,"y":-438000000000000000,"z":-11400000000000000000}},"30024054":{"solarSystemId":30024054,"solarSystemName":"Z:20I2","location":{"x":3850000000000000000,"y":-472000000000000000,"z":-12000000000000000000}},"30024055":{"solarSystemId":30024055,"solarSystemName":"M:4I98","location":{"x":6640000000000000000,"y":-1300000000000000000,"z":-13400000000000000000}},"30024056":{"solarSystemId":30024056,"solarSystemName":"H:OLVE","location":{"x":5560000000000000000,"y":-509000000000000000,"z":-14200000000000000000}},"30024057":{"solarSystemId":30024057,"solarSystemName":"Q:1T8V","location":{"x":5830000000000000000,"y":-414000000000000000,"z":-14500000000000000000}},"30024058":{"solarSystemId":30024058,"solarSystemName":"B:T0K0","location":{"x":5950000000000000000,"y":-945000000000000000,"z":-13300000000000000000}},"30024059":{"solarSystemId":30024059,"solarSystemName":"Q:2LOS","location":{"x":5450000000000000000,"y":-1070000000000000000,"z":-12100000000000000000}},"30024060":{"solarSystemId":30024060,"solarSystemName":"M:TIO3","location":{"x":4740000000000000000,"y":-647000000000000000,"z":-12900000000000000000}},"30024061":{"solarSystemId":30024061,"solarSystemName":"F:1SNL","location":{"x":6020000000000000000,"y":-606000000000000000,"z":-13200000000000000000}},"30024062":{"solarSystemId":30024062,"solarSystemName":"Q:27NR","location":{"x":5390000000000000000,"y":-126000000000000000,"z":-12700000000000000000}},"30024063":{"solarSystemId":30024063,"solarSystemName":"Q:1LEV","location":{"x":5980000000000000000,"y":-876000000000000000,"z":-13600000000000000000}},"30024064":{"solarSystemId":30024064,"solarSystemName":"P:3277","location":{"x":3970000000000000000,"y":-464000000000000000,"z":-12400000000000000000}},"30024065":{"solarSystemId":30024065,"solarSystemName":"H:3INE","location":{"x":5370000000000000000,"y":-2080000000000000000,"z":-11600000000000000000}},"30024066":{"solarSystemId":30024066,"solarSystemName":"B:3T01","location":{"x":3740000000000000000,"y":-1540000000000000000,"z":-12100000000000000000}},"30024067":{"solarSystemId":30024067,"solarSystemName":"F:2L6L","location":{"x":5320000000000000000,"y":-545000000000000000,"z":-11900000000000000000}},"30024068":{"solarSystemId":30024068,"solarSystemName":"H:1L16","location":{"x":4730000000000000000,"y":-2030000000000000000,"z":-12300000000000000000}},"30024069":{"solarSystemId":30024069,"solarSystemName":"H:1TL7","location":{"x":5690000000000000000,"y":-1710000000000000000,"z":-11300000000000000000}},"30024070":{"solarSystemId":30024070,"solarSystemName":"Y:2997","location":{"x":4750000000000000000,"y":-2360000000000000000,"z":-11900000000000000000}},"30024071":{"solarSystemId":30024071,"solarSystemName":"Z:127A","location":{"x":4950000000000000000,"y":-594000000000000000,"z":-12100000000000000000}},"30024072":{"solarSystemId":30024072,"solarSystemName":"H:263O","location":{"x":4730000000000000000,"y":-984000000000000000,"z":-12600000000000000000}},"30024073":{"solarSystemId":30024073,"solarSystemName":"G:2N56","location":{"x":4060000000000000000,"y":432000000000000000,"z":-12600000000000000000}},"30024074":{"solarSystemId":30024074,"solarSystemName":"F:235R","location":{"x":4270000000000000000,"y":-375000000000000000,"z":-14000000000000000000}},"30024075":{"solarSystemId":30024075,"solarSystemName":"M:1A93","location":{"x":4440000000000000000,"y":82900000000000000,"z":-13500000000000000000}},"30024076":{"solarSystemId":30024076,"solarSystemName":"D:39O9","location":{"x":3250000000000000000,"y":207000000000000000,"z":-14300000000000000000}},"30024077":{"solarSystemId":30024077,"solarSystemName":"Q:50K9","location":{"x":4250000000000000000,"y":256000000000000000,"z":-13400000000000000000}},"30024078":{"solarSystemId":30024078,"solarSystemName":"Q:K9S8","location":{"x":4270000000000000000,"y":-1140000000000000000,"z":-13800000000000000000}},"30024079":{"solarSystemId":30024079,"solarSystemName":"Y:1A51","location":{"x":4250000000000000000,"y":299000000000000000,"z":-13400000000000000000}},"30024080":{"solarSystemId":30024080,"solarSystemName":"F:34RK","location":{"x":4620000000000000000,"y":240000000000000000,"z":-12700000000000000000}},"30024081":{"solarSystemId":30024081,"solarSystemName":"G:11ON","location":{"x":3540000000000000000,"y":-890000000000000000,"z":-14000000000000000000}},"30024082":{"solarSystemId":30024082,"solarSystemName":"M:230R","location":{"x":4300000000000000000,"y":-513000000000000000,"z":-13500000000000000000}},"30024083":{"solarSystemId":30024083,"solarSystemName":"G:3E3A","location":{"x":3090000000000000000,"y":-830000000000000000,"z":-13900000000000000000}},"30024084":{"solarSystemId":30024084,"solarSystemName":"F:123E","location":{"x":3300000000000000000,"y":-55000000000000000,"z":-13100000000000000000}},"30024085":{"solarSystemId":30024085,"solarSystemName":"F:45NV","location":{"x":3360000000000000000,"y":-814000000000000000,"z":-13100000000000000000}},"30024086":{"solarSystemId":30024086,"solarSystemName":"H:1E33","location":{"x":4050000000000000000,"y":-648000000000000000,"z":-13200000000000000000}},"30024087":{"solarSystemId":30024087,"solarSystemName":"M:IA1T","location":{"x":2770000000000000000,"y":-411000000000000000,"z":-13500000000000000000}},"30024088":{"solarSystemId":30024088,"solarSystemName":"M:3506","location":{"x":3910000000000000000,"y":-506000000000000000,"z":-13300000000000000000}},"30024089":{"solarSystemId":30024089,"solarSystemName":"J:1I8N","location":{"x":2860000000000000000,"y":-423000000000000000,"z":-12900000000000000000}},"30024090":{"solarSystemId":30024090,"solarSystemName":"F:2IO8","location":{"x":3040000000000000000,"y":-436000000000000000,"z":-12500000000000000000}},"30024091":{"solarSystemId":30024091,"solarSystemName":"J:26V0","location":{"x":3310000000000000000,"y":-112000000000000000,"z":-13400000000000000000}},"30024092":{"solarSystemId":30024092,"solarSystemName":"U:E51L","location":{"x":3690000000000000000,"y":-947000000000000000,"z":-12800000000000000000}},"30024093":{"solarSystemId":30024093,"solarSystemName":"J:2S91","location":{"x":1860000000000000000,"y":-2580000000000000000,"z":-13000000000000000000}},"30024094":{"solarSystemId":30024094,"solarSystemName":"H:3I30","location":{"x":1860000000000000000,"y":-1170000000000000000,"z":-13700000000000000000}},"30024095":{"solarSystemId":30024095,"solarSystemName":"Q:1E08","location":{"x":2910000000000000000,"y":-1010000000000000000,"z":-14200000000000000000}},"30024096":{"solarSystemId":30024096,"solarSystemName":"B:1L93","location":{"x":846000000000000000,"y":-222000000000000000,"z":-13200000000000000000}},"30024097":{"solarSystemId":30024097,"solarSystemName":"J:29R8","location":{"x":1490000000000000000,"y":-1040000000000000000,"z":-13300000000000000000}},"30024098":{"solarSystemId":30024098,"solarSystemName":"Q:285I","location":{"x":2820000000000000000,"y":-1440000000000000000,"z":-13800000000000000000}},"30024099":{"solarSystemId":30024099,"solarSystemName":"Q:3TKK","location":{"x":1430000000000000000,"y":-806000000000000000,"z":-13100000000000000000}},"30024100":{"solarSystemId":30024100,"solarSystemName":"B:3ESE","location":{"x":3100000000000000000,"y":-1990000000000000000,"z":-13300000000000000000}},"30024101":{"solarSystemId":30024101,"solarSystemName":"M:416V","location":{"x":2030000000000000000,"y":-1280000000000000000,"z":-12900000000000000000}},"30024102":{"solarSystemId":30024102,"solarSystemName":"Q:3244","location":{"x":966000000000000000,"y":-2280000000000000000,"z":-12900000000000000000}},"32000001":{"solarSystemId":32000001,"solarSystemName":"AD001","location":{"x":5460000000000000000,"y":6020000000000000000,"z":-8330000000000000000}},"32000002":{"solarSystemId":32000002,"solarSystemName":"AD002","location":{"x":3300000000000000000,"y":4980000000000000000,"z":-5450000000000000000}},"32000003":{"solarSystemId":32000003,"solarSystemName":"AD003","location":{"x":3280000000000000000,"y":4990000000000000000,"z":-5430000000000000000}},"32000004":{"solarSystemId":32000004,"solarSystemName":"AD004","location":{"x":3260000000000000000,"y":4940000000000000000,"z":-5450000000000000000}},"32000005":{"solarSystemId":32000005,"solarSystemName":"AD005","location":{"x":3300000000000000000,"y":4990000000000000000,"z":-5480000000000000000}},"32000006":{"solarSystemId":32000006,"solarSystemName":"AD006","location":{"x":3310000000000000000,"y":4940000000000000000,"z":-5410000000000000000}},"32000007":{"solarSystemId":32000007,"solarSystemName":"AD007","location":{"x":3300000000000000000,"y":4990000000000000000,"z":-5470000000000000000}},"32000008":{"solarSystemId":32000008,"solarSystemName":"AD008","location":{"x":3320000000000000000,"y":5000000000000000000,"z":-5430000000000000000}},"32000009":{"solarSystemId":32000009,"solarSystemName":"AD009","location":{"x":3370000000000000000,"y":5110000000000000000,"z":-5400000000000000000}},"32000010":{"solarSystemId":32000010,"solarSystemName":"AD010","location":{"x":3350000000000000000,"y":5100000000000000000,"z":-5460000000000000000}},"32000011":{"solarSystemId":32000011,"solarSystemName":"AD011","location":{"x":3320000000000000000,"y":5070000000000000000,"z":-5460000000000000000}},"32000012":{"solarSystemId":32000012,"solarSystemName":"AD012","location":{"x":3380000000000000000,"y":5070000000000000000,"z":-5410000000000000000}},"32000013":{"solarSystemId":32000013,"solarSystemName":"AD013","location":{"x":3380000000000000000,"y":5100000000000000000,"z":-5460000000000000000}},"32000014":{"solarSystemId":32000014,"solarSystemName":"AD014","location":{"x":3350000000000000000,"y":5080000000000000000,"z":-5430000000000000000}},"32000015":{"solarSystemId":32000015,"solarSystemName":"AD015","location":{"x":3360000000000000000,"y":5080000000000000000,"z":-5420000000000000000}},"32000016":{"solarSystemId":32000016,"solarSystemName":"AD016","location":{"x":3380000000000000000,"y":5080000000000000000,"z":-5430000000000000000}},"32000017":{"solarSystemId":32000017,"solarSystemName":"AD017","location":{"x":3290000000000000000,"y":4950000000000000000,"z":-5660000000000000000}},"32000018":{"solarSystemId":32000018,"solarSystemName":"AD018","location":{"x":3310000000000000000,"y":4930000000000000000,"z":-5640000000000000000}},"32000019":{"solarSystemId":32000019,"solarSystemName":"AD019","location":{"x":3330000000000000000,"y":4970000000000000000,"z":-5640000000000000000}},"32000020":{"solarSystemId":32000020,"solarSystemName":"AD020","location":{"x":3310000000000000000,"y":4980000000000000000,"z":-5610000000000000000}},"32000021":{"solarSystemId":32000021,"solarSystemName":"AD021","location":{"x":3330000000000000000,"y":5000000000000000000,"z":-5630000000000000000}},"32000022":{"solarSystemId":32000022,"solarSystemName":"AD022","location":{"x":3310000000000000000,"y":4980000000000000000,"z":-5650000000000000000}},"32000023":{"solarSystemId":32000023,"solarSystemName":"AD023","location":{"x":3300000000000000000,"y":5000000000000000000,"z":-5660000000000000000}},"32000024":{"solarSystemId":32000024,"solarSystemName":"AD024","location":{"x":3320000000000000000,"y":4950000000000000000,"z":-5600000000000000000}},"32000025":{"solarSystemId":32000025,"solarSystemName":"AD025","location":{"x":3210000000000000000,"y":4930000000000000000,"z":-5530000000000000000}},"32000026":{"solarSystemId":32000026,"solarSystemName":"AD026","location":{"x":3200000000000000000,"y":4940000000000000000,"z":-5560000000000000000}},"32000027":{"solarSystemId":32000027,"solarSystemName":"AD027","location":{"x":3210000000000000000,"y":4950000000000000000,"z":-5560000000000000000}},"32000028":{"solarSystemId":32000028,"solarSystemName":"AD028","location":{"x":3150000000000000000,"y":4900000000000000000,"z":-5590000000000000000}},"32000029":{"solarSystemId":32000029,"solarSystemName":"AD029","location":{"x":3170000000000000000,"y":4950000000000000000,"z":-5590000000000000000}},"32000030":{"solarSystemId":32000030,"solarSystemName":"AD030","location":{"x":3210000000000000000,"y":4970000000000000000,"z":-5540000000000000000}},"32000031":{"solarSystemId":32000031,"solarSystemName":"AD031","location":{"x":3190000000000000000,"y":4960000000000000000,"z":-5580000000000000000}},"32000032":{"solarSystemId":32000032,"solarSystemName":"AD032","location":{"x":3160000000000000000,"y":4920000000000000000,"z":-5550000000000000000}},"32000033":{"solarSystemId":32000033,"solarSystemName":"AD033","location":{"x":3260000000000000000,"y":5160000000000000000,"z":-5530000000000000000}},"32000034":{"solarSystemId":32000034,"solarSystemName":"AD034","location":{"x":3200000000000000000,"y":5180000000000000000,"z":-5540000000000000000}},"32000035":{"solarSystemId":32000035,"solarSystemName":"AD035","location":{"x":3230000000000000000,"y":5200000000000000000,"z":-5540000000000000000}},"32000036":{"solarSystemId":32000036,"solarSystemName":"AD036","location":{"x":3240000000000000000,"y":5160000000000000000,"z":-5530000000000000000}},"32000037":{"solarSystemId":32000037,"solarSystemName":"AD037","location":{"x":3220000000000000000,"y":5230000000000000000,"z":-5540000000000000000}},"32000038":{"solarSystemId":32000038,"solarSystemName":"AD038","location":{"x":3230000000000000000,"y":5170000000000000000,"z":-5550000000000000000}},"32000039":{"solarSystemId":32000039,"solarSystemName":"AD039","location":{"x":3250000000000000000,"y":5150000000000000000,"z":-5550000000000000000}},"32000040":{"solarSystemId":32000040,"solarSystemName":"AD040","location":{"x":3270000000000000000,"y":5200000000000000000,"z":-5540000000000000000}},"32000041":{"solarSystemId":32000041,"solarSystemName":"AD041","location":{"x":4680000000000000000,"y":4490000000000000000,"z":-5470000000000000000}},"32000042":{"solarSystemId":32000042,"solarSystemName":"AD042","location":{"x":4690000000000000000,"y":4490000000000000000,"z":-5480000000000000000}},"32000043":{"solarSystemId":32000043,"solarSystemName":"AD043","location":{"x":4710000000000000000,"y":4510000000000000000,"z":-5440000000000000000}},"32000044":{"solarSystemId":32000044,"solarSystemName":"AD044","location":{"x":4700000000000000000,"y":4490000000000000000,"z":-5430000000000000000}},"32000045":{"solarSystemId":32000045,"solarSystemName":"AD045","location":{"x":4670000000000000000,"y":4500000000000000000,"z":-5430000000000000000}},"32000046":{"solarSystemId":32000046,"solarSystemName":"AD046","location":{"x":4690000000000000000,"y":4460000000000000000,"z":-5460000000000000000}},"32000047":{"solarSystemId":32000047,"solarSystemName":"AD047","location":{"x":4660000000000000000,"y":4430000000000000000,"z":-5460000000000000000}},"32000048":{"solarSystemId":32000048,"solarSystemName":"AD048","location":{"x":4640000000000000000,"y":4450000000000000000,"z":-5430000000000000000}},"32000049":{"solarSystemId":32000049,"solarSystemName":"AD049","location":{"x":4770000000000000000,"y":4540000000000000000,"z":-5530000000000000000}},"32000050":{"solarSystemId":32000050,"solarSystemName":"AD050","location":{"x":4790000000000000000,"y":4540000000000000000,"z":-5470000000000000000}},"32000051":{"solarSystemId":32000051,"solarSystemName":"AD051","location":{"x":4770000000000000000,"y":4560000000000000000,"z":-5530000000000000000}},"32000052":{"solarSystemId":32000052,"solarSystemName":"AD052","location":{"x":4760000000000000000,"y":4540000000000000000,"z":-5500000000000000000}},"32000053":{"solarSystemId":32000053,"solarSystemName":"AD053","location":{"x":4770000000000000000,"y":4550000000000000000,"z":-5500000000000000000}},"32000054":{"solarSystemId":32000054,"solarSystemName":"AD054","location":{"x":4830000000000000000,"y":4510000000000000000,"z":-5480000000000000000}},"32000055":{"solarSystemId":32000055,"solarSystemName":"AD055","location":{"x":4840000000000000000,"y":4560000000000000000,"z":-5480000000000000000}},"32000056":{"solarSystemId":32000056,"solarSystemName":"AD056","location":{"x":4770000000000000000,"y":4500000000000000000,"z":-5530000000000000000}},"32000057":{"solarSystemId":32000057,"solarSystemName":"AD057","location":{"x":4540000000000000000,"y":4540000000000000000,"z":-5380000000000000000}},"32000058":{"solarSystemId":32000058,"solarSystemName":"AD058","location":{"x":4500000000000000000,"y":4490000000000000000,"z":-5440000000000000000}},"32000059":{"solarSystemId":32000059,"solarSystemName":"AD059","location":{"x":4480000000000000000,"y":4520000000000000000,"z":-5390000000000000000}},"32000060":{"solarSystemId":32000060,"solarSystemName":"AD060","location":{"x":4520000000000000000,"y":4530000000000000000,"z":-5420000000000000000}},"32000061":{"solarSystemId":32000061,"solarSystemName":"AD061","location":{"x":4530000000000000000,"y":4550000000000000000,"z":-5450000000000000000}},"32000062":{"solarSystemId":32000062,"solarSystemName":"AD062","location":{"x":4480000000000000000,"y":4530000000000000000,"z":-5460000000000000000}},"32000063":{"solarSystemId":32000063,"solarSystemName":"AD063","location":{"x":4500000000000000000,"y":4500000000000000000,"z":-5440000000000000000}},"32000064":{"solarSystemId":32000064,"solarSystemName":"AD064","location":{"x":4520000000000000000,"y":4540000000000000000,"z":-5430000000000000000}},"32000065":{"solarSystemId":32000065,"solarSystemName":"AD065","location":{"x":4660000000000000000,"y":4350000000000000000,"z":-5310000000000000000}},"32000066":{"solarSystemId":32000066,"solarSystemName":"AD066","location":{"x":4670000000000000000,"y":4390000000000000000,"z":-5380000000000000000}},"32000067":{"solarSystemId":32000067,"solarSystemName":"AD067","location":{"x":4670000000000000000,"y":4350000000000000000,"z":-5370000000000000000}},"32000068":{"solarSystemId":32000068,"solarSystemName":"AD068","location":{"x":4720000000000000000,"y":4350000000000000000,"z":-5330000000000000000}},"32000069":{"solarSystemId":32000069,"solarSystemName":"AD069","location":{"x":4660000000000000000,"y":4370000000000000000,"z":-5380000000000000000}},"32000070":{"solarSystemId":32000070,"solarSystemName":"AD070","location":{"x":4710000000000000000,"y":4380000000000000000,"z":-5370000000000000000}},"32000071":{"solarSystemId":32000071,"solarSystemName":"AD071","location":{"x":4720000000000000000,"y":4350000000000000000,"z":-5350000000000000000}},"32000072":{"solarSystemId":32000072,"solarSystemName":"AD072","location":{"x":4650000000000000000,"y":4390000000000000000,"z":-5330000000000000000}},"32000073":{"solarSystemId":32000073,"solarSystemName":"AD073","location":{"x":4780000000000000000,"y":4520000000000000000,"z":-5540000000000000000}},"32000074":{"solarSystemId":32000074,"solarSystemName":"AD074","location":{"x":4820000000000000000,"y":4510000000000000000,"z":-5540000000000000000}},"32000075":{"solarSystemId":32000075,"solarSystemName":"AD075","location":{"x":4760000000000000000,"y":4480000000000000000,"z":-5480000000000000000}},"32000076":{"solarSystemId":32000076,"solarSystemName":"AD076","location":{"x":4820000000000000000,"y":4500000000000000000,"z":-5490000000000000000}},"32000077":{"solarSystemId":32000077,"solarSystemName":"AD077","location":{"x":4820000000000000000,"y":4480000000000000000,"z":-5540000000000000000}},"32000078":{"solarSystemId":32000078,"solarSystemName":"AD078","location":{"x":4800000000000000000,"y":4480000000000000000,"z":-5510000000000000000}},"32000079":{"solarSystemId":32000079,"solarSystemName":"AD079","location":{"x":4810000000000000000,"y":4480000000000000000,"z":-5550000000000000000}},"32000080":{"solarSystemId":32000080,"solarSystemName":"AD080","location":{"x":4790000000000000000,"y":4470000000000000000,"z":-5550000000000000000}},"32000081":{"solarSystemId":32000081,"solarSystemName":"AD081","location":{"x":4320000000000000000,"y":4990000000000000000,"z":-7560000000000000000}},"32000082":{"solarSystemId":32000082,"solarSystemName":"AD082","location":{"x":4260000000000000000,"y":5050000000000000000,"z":-7590000000000000000}},"32000083":{"solarSystemId":32000083,"solarSystemName":"AD083","location":{"x":4310000000000000000,"y":5040000000000000000,"z":-7610000000000000000}},"32000084":{"solarSystemId":32000084,"solarSystemName":"AD084","location":{"x":4270000000000000000,"y":4990000000000000000,"z":-7550000000000000000}},"32000085":{"solarSystemId":32000085,"solarSystemName":"AD085","location":{"x":4280000000000000000,"y":5030000000000000000,"z":-7600000000000000000}},"32000086":{"solarSystemId":32000086,"solarSystemName":"AD086","location":{"x":4260000000000000000,"y":5050000000000000000,"z":-7550000000000000000}},"32000087":{"solarSystemId":32000087,"solarSystemName":"AD087","location":{"x":4270000000000000000,"y":5010000000000000000,"z":-7560000000000000000}},"32000088":{"solarSystemId":32000088,"solarSystemName":"AD088","location":{"x":4260000000000000000,"y":5050000000000000000,"z":-7610000000000000000}},"32000089":{"solarSystemId":32000089,"solarSystemName":"AD089","location":{"x":4130000000000000000,"y":4910000000000000000,"z":-7620000000000000000}},"32000090":{"solarSystemId":32000090,"solarSystemName":"AD090","location":{"x":4110000000000000000,"y":4850000000000000000,"z":-7590000000000000000}},"32000091":{"solarSystemId":32000091,"solarSystemName":"AD091","location":{"x":4130000000000000000,"y":4910000000000000000,"z":-7630000000000000000}},"32000092":{"solarSystemId":32000092,"solarSystemName":"AD092","location":{"x":4090000000000000000,"y":4890000000000000000,"z":-7580000000000000000}},"32000093":{"solarSystemId":32000093,"solarSystemName":"AD093","location":{"x":4090000000000000000,"y":4920000000000000000,"z":-7630000000000000000}},"32000094":{"solarSystemId":32000094,"solarSystemName":"AD094","location":{"x":4140000000000000000,"y":4870000000000000000,"z":-7600000000000000000}},"32000095":{"solarSystemId":32000095,"solarSystemName":"AD095","location":{"x":4130000000000000000,"y":4880000000000000000,"z":-7630000000000000000}},"32000096":{"solarSystemId":32000096,"solarSystemName":"AD096","location":{"x":4110000000000000000,"y":4840000000000000000,"z":-7610000000000000000}},"32000097":{"solarSystemId":32000097,"solarSystemName":"AD097","location":{"x":4130000000000000000,"y":4930000000000000000,"z":-7820000000000000000}},"32000098":{"solarSystemId":32000098,"solarSystemName":"AD098","location":{"x":4120000000000000000,"y":4930000000000000000,"z":-7790000000000000000}},"32000099":{"solarSystemId":32000099,"solarSystemName":"AD099","location":{"x":4130000000000000000,"y":4900000000000000000,"z":-7800000000000000000}},"32000100":{"solarSystemId":32000100,"solarSystemName":"AD100","location":{"x":4100000000000000000,"y":4900000000000000000,"z":-7790000000000000000}},"32000101":{"solarSystemId":32000101,"solarSystemName":"AD101","location":{"x":4090000000000000000,"y":4950000000000000000,"z":-7760000000000000000}},"32000102":{"solarSystemId":32000102,"solarSystemName":"AD102","location":{"x":4150000000000000000,"y":4880000000000000000,"z":-7760000000000000000}},"32000103":{"solarSystemId":32000103,"solarSystemName":"AD103","location":{"x":4120000000000000000,"y":4880000000000000000,"z":-7820000000000000000}},"32000104":{"solarSystemId":32000104,"solarSystemName":"AD104","location":{"x":4110000000000000000,"y":4890000000000000000,"z":-7820000000000000000}},"32000105":{"solarSystemId":32000105,"solarSystemName":"AD105","location":{"x":4310000000000000000,"y":5000000000000000000,"z":-7680000000000000000}},"32000106":{"solarSystemId":32000106,"solarSystemName":"AD106","location":{"x":4290000000000000000,"y":5030000000000000000,"z":-7750000000000000000}},"32000107":{"solarSystemId":32000107,"solarSystemName":"AD107","location":{"x":4330000000000000000,"y":5010000000000000000,"z":-7690000000000000000}},"32000108":{"solarSystemId":32000108,"solarSystemName":"AD108","location":{"x":4280000000000000000,"y":5030000000000000000,"z":-7710000000000000000}},"32000109":{"solarSystemId":32000109,"solarSystemName":"AD109","location":{"x":4310000000000000000,"y":5070000000000000000,"z":-7700000000000000000}},"32000110":{"solarSystemId":32000110,"solarSystemName":"AD110","location":{"x":4330000000000000000,"y":5020000000000000000,"z":-7680000000000000000}},"32000111":{"solarSystemId":32000111,"solarSystemName":"AD111","location":{"x":4350000000000000000,"y":5020000000000000000,"z":-7690000000000000000}},"32000112":{"solarSystemId":32000112,"solarSystemName":"AD112","location":{"x":4290000000000000000,"y":4990000000000000000,"z":-7720000000000000000}},"32000113":{"solarSystemId":32000113,"solarSystemName":"AD113","location":{"x":4230000000000000000,"y":5040000000000000000,"z":-7700000000000000000}},"32000114":{"solarSystemId":32000114,"solarSystemName":"AD114","location":{"x":4220000000000000000,"y":5010000000000000000,"z":-7660000000000000000}},"32000115":{"solarSystemId":32000115,"solarSystemName":"AD115","location":{"x":4220000000000000000,"y":5020000000000000000,"z":-7680000000000000000}},"32000116":{"solarSystemId":32000116,"solarSystemName":"AD116","location":{"x":4210000000000000000,"y":5020000000000000000,"z":-7650000000000000000}},"32000117":{"solarSystemId":32000117,"solarSystemName":"AD117","location":{"x":4200000000000000000,"y":4980000000000000000,"z":-7640000000000000000}},"32000118":{"solarSystemId":32000118,"solarSystemName":"AD118","location":{"x":4200000000000000000,"y":4980000000000000000,"z":-7700000000000000000}},"32000119":{"solarSystemId":32000119,"solarSystemName":"AD119","location":{"x":4200000000000000000,"y":4980000000000000000,"z":-7700000000000000000}},"32000120":{"solarSystemId":32000120,"solarSystemName":"AD120","location":{"x":4210000000000000000,"y":5010000000000000000,"z":-7690000000000000000}},"32000121":{"solarSystemId":32000121,"solarSystemName":"AD121","location":{"x":4320000000000000000,"y":5170000000000000000,"z":-6090000000000000000}},"32000122":{"solarSystemId":32000122,"solarSystemName":"AD122","location":{"x":4330000000000000000,"y":5160000000000000000,"z":-6050000000000000000}},"32000123":{"solarSystemId":32000123,"solarSystemName":"AD123","location":{"x":4350000000000000000,"y":5170000000000000000,"z":-6070000000000000000}},"32000124":{"solarSystemId":32000124,"solarSystemName":"AD124","location":{"x":4340000000000000000,"y":5130000000000000000,"z":-6090000000000000000}},"32000125":{"solarSystemId":32000125,"solarSystemName":"AD125","location":{"x":4360000000000000000,"y":5130000000000000000,"z":-6120000000000000000}},"32000126":{"solarSystemId":32000126,"solarSystemName":"AD126","location":{"x":4360000000000000000,"y":5120000000000000000,"z":-6090000000000000000}},"32000127":{"solarSystemId":32000127,"solarSystemName":"AD127","location":{"x":4340000000000000000,"y":5120000000000000000,"z":-6120000000000000000}},"32000128":{"solarSystemId":32000128,"solarSystemName":"AD128","location":{"x":4340000000000000000,"y":5180000000000000000,"z":-6080000000000000000}},"32000129":{"solarSystemId":32000129,"solarSystemName":"AD129","location":{"x":4340000000000000000,"y":5340000000000000000,"z":-6230000000000000000}},"32000130":{"solarSystemId":32000130,"solarSystemName":"AD130","location":{"x":4320000000000000000,"y":5310000000000000000,"z":-6290000000000000000}},"32000131":{"solarSystemId":32000131,"solarSystemName":"AD131","location":{"x":4300000000000000000,"y":5310000000000000000,"z":-6240000000000000000}},"32000132":{"solarSystemId":32000132,"solarSystemName":"AD132","location":{"x":4370000000000000000,"y":5310000000000000000,"z":-6270000000000000000}},"32000133":{"solarSystemId":32000133,"solarSystemName":"AD133","location":{"x":4330000000000000000,"y":5350000000000000000,"z":-6250000000000000000}},"32000134":{"solarSystemId":32000134,"solarSystemName":"AD134","location":{"x":4340000000000000000,"y":5270000000000000000,"z":-6280000000000000000}},"32000135":{"solarSystemId":32000135,"solarSystemName":"AD135","location":{"x":4320000000000000000,"y":5330000000000000000,"z":-6240000000000000000}},"32000136":{"solarSystemId":32000136,"solarSystemName":"AD136","location":{"x":4380000000000000000,"y":5350000000000000000,"z":-6220000000000000000}},"32000137":{"solarSystemId":32000137,"solarSystemName":"AD137","location":{"x":4370000000000000000,"y":5340000000000000000,"z":-6010000000000000000}},"32000138":{"solarSystemId":32000138,"solarSystemName":"AD138","location":{"x":4290000000000000000,"y":5350000000000000000,"z":-6040000000000000000}},"32000139":{"solarSystemId":32000139,"solarSystemName":"AD139","location":{"x":4360000000000000000,"y":5330000000000000000,"z":-5970000000000000000}},"32000140":{"solarSystemId":32000140,"solarSystemName":"AD140","location":{"x":4330000000000000000,"y":5330000000000000000,"z":-5980000000000000000}},"32000141":{"solarSystemId":32000141,"solarSystemName":"AD141","location":{"x":4320000000000000000,"y":5300000000000000000,"z":-5980000000000000000}},"32000142":{"solarSystemId":32000142,"solarSystemName":"AD142","location":{"x":4340000000000000000,"y":5300000000000000000,"z":-6020000000000000000}},"32000143":{"solarSystemId":32000143,"solarSystemName":"AD143","location":{"x":4300000000000000000,"y":5290000000000000000,"z":-6000000000000000000}},"32000144":{"solarSystemId":32000144,"solarSystemName":"AD144","location":{"x":4360000000000000000,"y":5340000000000000000,"z":-6030000000000000000}},"32000145":{"solarSystemId":32000145,"solarSystemName":"AD145","location":{"x":4260000000000000000,"y":5140000000000000000,"z":-6140000000000000000}},"32000146":{"solarSystemId":32000146,"solarSystemName":"AD146","location":{"x":4240000000000000000,"y":5100000000000000000,"z":-6160000000000000000}},"32000147":{"solarSystemId":32000147,"solarSystemName":"AD147","location":{"x":4230000000000000000,"y":5160000000000000000,"z":-6170000000000000000}},"32000148":{"solarSystemId":32000148,"solarSystemName":"AD148","location":{"x":4250000000000000000,"y":5150000000000000000,"z":-6170000000000000000}},"32000149":{"solarSystemId":32000149,"solarSystemName":"AD149","location":{"x":4230000000000000000,"y":5160000000000000000,"z":-6160000000000000000}},"32000150":{"solarSystemId":32000150,"solarSystemName":"AD150","location":{"x":4200000000000000000,"y":5110000000000000000,"z":-6150000000000000000}},"32000151":{"solarSystemId":32000151,"solarSystemName":"AD151","location":{"x":4190000000000000000,"y":5140000000000000000,"z":-6160000000000000000}},"32000152":{"solarSystemId":32000152,"solarSystemName":"AD152","location":{"x":4260000000000000000,"y":5120000000000000000,"z":-6200000000000000000}},"32000153":{"solarSystemId":32000153,"solarSystemName":"AD153","location":{"x":4300000000000000000,"y":5180000000000000000,"z":-6050000000000000000}},"32000154":{"solarSystemId":32000154,"solarSystemName":"AD154","location":{"x":4350000000000000000,"y":5190000000000000000,"z":-5970000000000000000}},"32000155":{"solarSystemId":32000155,"solarSystemName":"AD155","location":{"x":4290000000000000000,"y":5210000000000000000,"z":-5970000000000000000}},"32000156":{"solarSystemId":32000156,"solarSystemName":"AD156","location":{"x":4290000000000000000,"y":5230000000000000000,"z":-6000000000000000000}},"32000157":{"solarSystemId":32000157,"solarSystemName":"AD157","location":{"x":4330000000000000000,"y":5190000000000000000,"z":-6000000000000000000}},"32000158":{"solarSystemId":32000158,"solarSystemName":"AD158","location":{"x":4280000000000000000,"y":5160000000000000000,"z":-6030000000000000000}},"32000159":{"solarSystemId":32000159,"solarSystemName":"AD159","location":{"x":4300000000000000000,"y":5220000000000000000,"z":-6020000000000000000}},"32000160":{"solarSystemId":32000160,"solarSystemName":"AD160","location":{"x":4360000000000000000,"y":5160000000000000000,"z":-6050000000000000000}},"32000161":{"solarSystemId":32000161,"solarSystemName":"AD161","location":{"x":4960000000000000000,"y":5580000000000000000,"z":-8950000000000000000}},"32000162":{"solarSystemId":32000162,"solarSystemName":"AD162","location":{"x":4900000000000000000,"y":5620000000000000000,"z":-8880000000000000000}},"32000163":{"solarSystemId":32000163,"solarSystemName":"AD163","location":{"x":4930000000000000000,"y":5600000000000000000,"z":-8930000000000000000}},"32000164":{"solarSystemId":32000164,"solarSystemName":"AD164","location":{"x":4960000000000000000,"y":5620000000000000000,"z":-8910000000000000000}},"32000165":{"solarSystemId":32000165,"solarSystemName":"AD165","location":{"x":4930000000000000000,"y":5590000000000000000,"z":-8950000000000000000}},"32000166":{"solarSystemId":32000166,"solarSystemName":"AD166","location":{"x":4980000000000000000,"y":5580000000000000000,"z":-8880000000000000000}},"32000167":{"solarSystemId":32000167,"solarSystemName":"AD167","location":{"x":4970000000000000000,"y":5600000000000000000,"z":-8900000000000000000}},"32000168":{"solarSystemId":32000168,"solarSystemName":"AD168","location":{"x":4950000000000000000,"y":5600000000000000000,"z":-8950000000000000000}},"32000169":{"solarSystemId":32000169,"solarSystemName":"AD169","location":{"x":5110000000000000000,"y":5520000000000000000,"z":-9030000000000000000}},"32000170":{"solarSystemId":32000170,"solarSystemName":"AD170","location":{"x":5110000000000000000,"y":5500000000000000000,"z":-9030000000000000000}},"32000171":{"solarSystemId":32000171,"solarSystemName":"AD171","location":{"x":5110000000000000000,"y":5500000000000000000,"z":-9060000000000000000}},"32000172":{"solarSystemId":32000172,"solarSystemName":"AD172","location":{"x":5070000000000000000,"y":5530000000000000000,"z":-9020000000000000000}},"32000173":{"solarSystemId":32000173,"solarSystemName":"AD173","location":{"x":5040000000000000000,"y":5490000000000000000,"z":-9070000000000000000}},"32000174":{"solarSystemId":32000174,"solarSystemName":"AD174","location":{"x":5070000000000000000,"y":5490000000000000000,"z":-9010000000000000000}},"32000175":{"solarSystemId":32000175,"solarSystemName":"AD175","location":{"x":5080000000000000000,"y":5510000000000000000,"z":-9020000000000000000}},"32000176":{"solarSystemId":32000176,"solarSystemName":"AD176","location":{"x":5080000000000000000,"y":5560000000000000000,"z":-9030000000000000000}},"32000177":{"solarSystemId":32000177,"solarSystemName":"AD177","location":{"x":5100000000000000000,"y":5730000000000000000,"z":-9050000000000000000}},"32000178":{"solarSystemId":32000178,"solarSystemName":"AD178","location":{"x":5070000000000000000,"y":5760000000000000000,"z":-9040000000000000000}},"32000179":{"solarSystemId":32000179,"solarSystemName":"AD179","location":{"x":5080000000000000000,"y":5740000000000000000,"z":-9060000000000000000}},"32000180":{"solarSystemId":32000180,"solarSystemName":"AD180","location":{"x":5110000000000000000,"y":5780000000000000000,"z":-9070000000000000000}},"32000181":{"solarSystemId":32000181,"solarSystemName":"AD181","location":{"x":5110000000000000000,"y":5750000000000000000,"z":-9020000000000000000}},"32000182":{"solarSystemId":32000182,"solarSystemName":"AD182","location":{"x":5100000000000000000,"y":5770000000000000000,"z":-9030000000000000000}},"32000183":{"solarSystemId":32000183,"solarSystemName":"AD183","location":{"x":5080000000000000000,"y":5740000000000000000,"z":-9080000000000000000}},"32000184":{"solarSystemId":32000184,"solarSystemName":"AD184","location":{"x":5080000000000000000,"y":5760000000000000000,"z":-9010000000000000000}},"32000185":{"solarSystemId":32000185,"solarSystemName":"AD185","location":{"x":4970000000000000000,"y":5570000000000000000,"z":-8820000000000000000}},"32000186":{"solarSystemId":32000186,"solarSystemName":"AD186","location":{"x":4950000000000000000,"y":5570000000000000000,"z":-8880000000000000000}},"32000187":{"solarSystemId":32000187,"solarSystemName":"AD187","location":{"x":4990000000000000000,"y":5590000000000000000,"z":-8830000000000000000}},"32000188":{"solarSystemId":32000188,"solarSystemName":"AD188","location":{"x":4920000000000000000,"y":5610000000000000000,"z":-8820000000000000000}},"32000189":{"solarSystemId":32000189,"solarSystemName":"AD189","location":{"x":4930000000000000000,"y":5620000000000000000,"z":-8880000000000000000}},"32000190":{"solarSystemId":32000190,"solarSystemName":"AD190","location":{"x":4940000000000000000,"y":5630000000000000000,"z":-8820000000000000000}},"32000191":{"solarSystemId":32000191,"solarSystemName":"AD191","location":{"x":4930000000000000000,"y":5610000000000000000,"z":-8840000000000000000}},"32000192":{"solarSystemId":32000192,"solarSystemName":"AD192","location":{"x":4920000000000000000,"y":5580000000000000000,"z":-8830000000000000000}},"32000193":{"solarSystemId":32000193,"solarSystemName":"AD193","location":{"x":5050000000000000000,"y":5620000000000000000,"z":-8810000000000000000}},"32000194":{"solarSystemId":32000194,"solarSystemName":"AD194","location":{"x":5110000000000000000,"y":5670000000000000000,"z":-8800000000000000000}},"32000195":{"solarSystemId":32000195,"solarSystemName":"AD195","location":{"x":5060000000000000000,"y":5640000000000000000,"z":-8820000000000000000}},"32000196":{"solarSystemId":32000196,"solarSystemName":"AD196","location":{"x":5080000000000000000,"y":5670000000000000000,"z":-8790000000000000000}},"32000197":{"solarSystemId":32000197,"solarSystemName":"AD197","location":{"x":5070000000000000000,"y":5650000000000000000,"z":-8850000000000000000}},"32000198":{"solarSystemId":32000198,"solarSystemName":"AD198","location":{"x":5090000000000000000,"y":5680000000000000000,"z":-8830000000000000000}},"32000199":{"solarSystemId":32000199,"solarSystemName":"AD199","location":{"x":5120000000000000000,"y":5620000000000000000,"z":-8840000000000000000}},"32000200":{"solarSystemId":32000200,"solarSystemName":"AD200","location":{"x":5100000000000000000,"y":5700000000000000000,"z":-8820000000000000000}},"34000001":{"solarSystemId":34000001,"solarSystemName":"V-001","location":{"x":-3840000000000000000,"y":2590000000000000000,"z":-8170000000000000000}},"34000002":{"solarSystemId":34000002,"solarSystemName":"V-002","location":{"x":-3900000000000000000,"y":2600000000000000000,"z":-8120000000000000000}},"34000003":{"solarSystemId":34000003,"solarSystemName":"V-003","location":{"x":-3850000000000000000,"y":2640000000000000000,"z":-8190000000000000000}},"34000004":{"solarSystemId":34000004,"solarSystemName":"V-004","location":{"x":-3910000000000000000,"y":2650000000000000000,"z":-8120000000000000000}},"34000005":{"solarSystemId":34000005,"solarSystemName":"V-005","location":{"x":-3910000000000000000,"y":2610000000000000000,"z":-8160000000000000000}},"34000006":{"solarSystemId":34000006,"solarSystemName":"V-006","location":{"x":-3870000000000000000,"y":2600000000000000000,"z":-8150000000000000000}},"34000007":{"solarSystemId":34000007,"solarSystemName":"V-007","location":{"x":-3910000000000000000,"y":2650000000000000000,"z":-8170000000000000000}},"34000008":{"solarSystemId":34000008,"solarSystemName":"V-008","location":{"x":-3910000000000000000,"y":2600000000000000000,"z":-8130000000000000000}},"34000009":{"solarSystemId":34000009,"solarSystemName":"V-009","location":{"x":-3790000000000000000,"y":2490000000000000000,"z":-8200000000000000000}},"34000010":{"solarSystemId":34000010,"solarSystemName":"V-010","location":{"x":-3780000000000000000,"y":2470000000000000000,"z":-8200000000000000000}},"34000011":{"solarSystemId":34000011,"solarSystemName":"V-011","location":{"x":-3800000000000000000,"y":2490000000000000000,"z":-8210000000000000000}},"34000012":{"solarSystemId":34000012,"solarSystemName":"V-012","location":{"x":-3810000000000000000,"y":2510000000000000000,"z":-8210000000000000000}},"34000013":{"solarSystemId":34000013,"solarSystemName":"V-013","location":{"x":-3770000000000000000,"y":2510000000000000000,"z":-8200000000000000000}},"34000014":{"solarSystemId":34000014,"solarSystemName":"V-014","location":{"x":-3790000000000000000,"y":2520000000000000000,"z":-8250000000000000000}},"34000015":{"solarSystemId":34000015,"solarSystemName":"V-015","location":{"x":-3740000000000000000,"y":2480000000000000000,"z":-8210000000000000000}},"34000016":{"solarSystemId":34000016,"solarSystemName":"V-016","location":{"x":-3760000000000000000,"y":2550000000000000000,"z":-8210000000000000000}},"34000017":{"solarSystemId":34000017,"solarSystemName":"V-017","location":{"x":-3900000000000000000,"y":2680000000000000000,"z":-8230000000000000000}},"34000018":{"solarSystemId":34000018,"solarSystemName":"V-018","location":{"x":-3870000000000000000,"y":2660000000000000000,"z":-8230000000000000000}},"34000019":{"solarSystemId":34000019,"solarSystemName":"V-019","location":{"x":-3890000000000000000,"y":2680000000000000000,"z":-8240000000000000000}},"34000020":{"solarSystemId":34000020,"solarSystemName":"V-020","location":{"x":-3900000000000000000,"y":2650000000000000000,"z":-8240000000000000000}},"34000021":{"solarSystemId":34000021,"solarSystemName":"V-021","location":{"x":-3890000000000000000,"y":2660000000000000000,"z":-8240000000000000000}},"34000022":{"solarSystemId":34000022,"solarSystemName":"V-022","location":{"x":-3940000000000000000,"y":2610000000000000000,"z":-8270000000000000000}},"34000023":{"solarSystemId":34000023,"solarSystemName":"V-023","location":{"x":-3880000000000000000,"y":2620000000000000000,"z":-8250000000000000000}},"34000024":{"solarSystemId":34000024,"solarSystemName":"V-024","location":{"x":-3900000000000000000,"y":2650000000000000000,"z":-8230000000000000000}},"34000025":{"solarSystemId":34000025,"solarSystemName":"V-025","location":{"x":-3940000000000000000,"y":2470000000000000000,"z":-8410000000000000000}},"34000026":{"solarSystemId":34000026,"solarSystemName":"V-026","location":{"x":-3890000000000000000,"y":2490000000000000000,"z":-8410000000000000000}},"34000027":{"solarSystemId":34000027,"solarSystemName":"V-027","location":{"x":-3880000000000000000,"y":2490000000000000000,"z":-8370000000000000000}},"34000028":{"solarSystemId":34000028,"solarSystemName":"V-028","location":{"x":-3940000000000000000,"y":2480000000000000000,"z":-8370000000000000000}},"34000029":{"solarSystemId":34000029,"solarSystemName":"V-029","location":{"x":-3890000000000000000,"y":2480000000000000000,"z":-8350000000000000000}},"34000030":{"solarSystemId":34000030,"solarSystemName":"V-030","location":{"x":-3880000000000000000,"y":2430000000000000000,"z":-8420000000000000000}},"34000031":{"solarSystemId":34000031,"solarSystemName":"V-031","location":{"x":-3890000000000000000,"y":2490000000000000000,"z":-8420000000000000000}},"34000032":{"solarSystemId":34000032,"solarSystemName":"V-032","location":{"x":-3890000000000000000,"y":2470000000000000000,"z":-8360000000000000000}},"34000033":{"solarSystemId":34000033,"solarSystemName":"V-033","location":{"x":-4040000000000000000,"y":2580000000000000000,"z":-8200000000000000000}},"34000034":{"solarSystemId":34000034,"solarSystemName":"V-034","location":{"x":-4030000000000000000,"y":2600000000000000000,"z":-8200000000000000000}},"34000035":{"solarSystemId":34000035,"solarSystemName":"V-035","location":{"x":-4050000000000000000,"y":2560000000000000000,"z":-8210000000000000000}},"34000036":{"solarSystemId":34000036,"solarSystemName":"V-036","location":{"x":-4050000000000000000,"y":2580000000000000000,"z":-8180000000000000000}},"34000037":{"solarSystemId":34000037,"solarSystemName":"V-037","location":{"x":-4030000000000000000,"y":2580000000000000000,"z":-8160000000000000000}},"34000038":{"solarSystemId":34000038,"solarSystemName":"V-038","location":{"x":-4020000000000000000,"y":2620000000000000000,"z":-8200000000000000000}},"34000039":{"solarSystemId":34000039,"solarSystemName":"V-039","location":{"x":-4040000000000000000,"y":2580000000000000000,"z":-8210000000000000000}},"34000040":{"solarSystemId":34000040,"solarSystemName":"V-040","location":{"x":-4070000000000000000,"y":2610000000000000000,"z":-8200000000000000000}},"34000041":{"solarSystemId":34000041,"solarSystemName":"V-041","location":{"x":-3760000000000000000,"y":2970000000000000000,"z":-8280000000000000000}},"34000042":{"solarSystemId":34000042,"solarSystemName":"V-042","location":{"x":-3730000000000000000,"y":2940000000000000000,"z":-8220000000000000000}},"34000043":{"solarSystemId":34000043,"solarSystemName":"V-043","location":{"x":-3720000000000000000,"y":2960000000000000000,"z":-8210000000000000000}},"34000044":{"solarSystemId":34000044,"solarSystemName":"V-044","location":{"x":-3690000000000000000,"y":2980000000000000000,"z":-8270000000000000000}},"34000045":{"solarSystemId":34000045,"solarSystemName":"V-045","location":{"x":-3710000000000000000,"y":2950000000000000000,"z":-8220000000000000000}},"34000046":{"solarSystemId":34000046,"solarSystemName":"V-046","location":{"x":-3740000000000000000,"y":2950000000000000000,"z":-8220000000000000000}},"34000047":{"solarSystemId":34000047,"solarSystemName":"V-047","location":{"x":-3760000000000000000,"y":2990000000000000000,"z":-8290000000000000000}},"34000048":{"solarSystemId":34000048,"solarSystemName":"V-048","location":{"x":-3690000000000000000,"y":2970000000000000000,"z":-8220000000000000000}},"34000049":{"solarSystemId":34000049,"solarSystemName":"V-049","location":{"x":-3880000000000000000,"y":2980000000000000000,"z":-8130000000000000000}},"34000050":{"solarSystemId":34000050,"solarSystemName":"V-050","location":{"x":-3820000000000000000,"y":3010000000000000000,"z":-8130000000000000000}},"34000051":{"solarSystemId":34000051,"solarSystemName":"V-051","location":{"x":-3870000000000000000,"y":2970000000000000000,"z":-8160000000000000000}},"34000052":{"solarSystemId":34000052,"solarSystemName":"V-052","location":{"x":-3810000000000000000,"y":3050000000000000000,"z":-8190000000000000000}},"34000053":{"solarSystemId":34000053,"solarSystemName":"V-053","location":{"x":-3890000000000000000,"y":3010000000000000000,"z":-8190000000000000000}},"34000054":{"solarSystemId":34000054,"solarSystemName":"V-054","location":{"x":-3890000000000000000,"y":2980000000000000000,"z":-8160000000000000000}},"34000055":{"solarSystemId":34000055,"solarSystemName":"V-055","location":{"x":-3880000000000000000,"y":3020000000000000000,"z":-8150000000000000000}},"34000056":{"solarSystemId":34000056,"solarSystemName":"V-056","location":{"x":-3840000000000000000,"y":3010000000000000000,"z":-8150000000000000000}},"34000057":{"solarSystemId":34000057,"solarSystemName":"V-057","location":{"x":-3800000000000000000,"y":3110000000000000000,"z":-8110000000000000000}},"34000058":{"solarSystemId":34000058,"solarSystemName":"V-058","location":{"x":-3780000000000000000,"y":3160000000000000000,"z":-8110000000000000000}},"34000059":{"solarSystemId":34000059,"solarSystemName":"V-059","location":{"x":-3750000000000000000,"y":3160000000000000000,"z":-8080000000000000000}},"34000060":{"solarSystemId":34000060,"solarSystemName":"V-060","location":{"x":-3780000000000000000,"y":3160000000000000000,"z":-8090000000000000000}},"34000061":{"solarSystemId":34000061,"solarSystemName":"V-061","location":{"x":-3800000000000000000,"y":3160000000000000000,"z":-8070000000000000000}},"34000062":{"solarSystemId":34000062,"solarSystemName":"V-062","location":{"x":-3760000000000000000,"y":3110000000000000000,"z":-8130000000000000000}},"34000063":{"solarSystemId":34000063,"solarSystemName":"V-063","location":{"x":-3780000000000000000,"y":3160000000000000000,"z":-8090000000000000000}},"34000064":{"solarSystemId":34000064,"solarSystemName":"V-064","location":{"x":-3790000000000000000,"y":3120000000000000000,"z":-8120000000000000000}},"34000065":{"solarSystemId":34000065,"solarSystemName":"V-065","location":{"x":-3800000000000000000,"y":3070000000000000000,"z":-8210000000000000000}},"34000066":{"solarSystemId":34000066,"solarSystemName":"V-066","location":{"x":-3740000000000000000,"y":3010000000000000000,"z":-8230000000000000000}},"34000067":{"solarSystemId":34000067,"solarSystemName":"V-067","location":{"x":-3780000000000000000,"y":3030000000000000000,"z":-8200000000000000000}},"34000068":{"solarSystemId":34000068,"solarSystemName":"V-068","location":{"x":-3720000000000000000,"y":3040000000000000000,"z":-8260000000000000000}},"34000069":{"solarSystemId":34000069,"solarSystemName":"V-069","location":{"x":-3740000000000000000,"y":3040000000000000000,"z":-8200000000000000000}},"34000070":{"solarSystemId":34000070,"solarSystemName":"V-070","location":{"x":-3750000000000000000,"y":3070000000000000000,"z":-8250000000000000000}},"34000071":{"solarSystemId":34000071,"solarSystemName":"V-071","location":{"x":-3730000000000000000,"y":3020000000000000000,"z":-8270000000000000000}},"34000072":{"solarSystemId":34000072,"solarSystemName":"V-072","location":{"x":-3780000000000000000,"y":3010000000000000000,"z":-8230000000000000000}},"34000073":{"solarSystemId":34000073,"solarSystemName":"V-073","location":{"x":-3790000000000000000,"y":3190000000000000000,"z":-8290000000000000000}},"34000074":{"solarSystemId":34000074,"solarSystemName":"V-074","location":{"x":-3730000000000000000,"y":3220000000000000000,"z":-8230000000000000000}},"34000075":{"solarSystemId":34000075,"solarSystemName":"V-075","location":{"x":-3710000000000000000,"y":3250000000000000000,"z":-8240000000000000000}},"34000076":{"solarSystemId":34000076,"solarSystemName":"V-076","location":{"x":-3760000000000000000,"y":3270000000000000000,"z":-8260000000000000000}},"34000077":{"solarSystemId":34000077,"solarSystemName":"V-077","location":{"x":-3710000000000000000,"y":3220000000000000000,"z":-8240000000000000000}},"34000078":{"solarSystemId":34000078,"solarSystemName":"V-078","location":{"x":-3750000000000000000,"y":3230000000000000000,"z":-8250000000000000000}},"34000079":{"solarSystemId":34000079,"solarSystemName":"V-079","location":{"x":-3720000000000000000,"y":3230000000000000000,"z":-8240000000000000000}},"34000080":{"solarSystemId":34000080,"solarSystemName":"V-080","location":{"x":-3740000000000000000,"y":3200000000000000000,"z":-8290000000000000000}},"34000081":{"solarSystemId":34000081,"solarSystemName":"V-081","location":{"x":-5440000000000000000,"y":2880000000000000000,"z":-5980000000000000000}},"34000082":{"solarSystemId":34000082,"solarSystemName":"V-082","location":{"x":-5450000000000000000,"y":2860000000000000000,"z":-6010000000000000000}},"34000083":{"solarSystemId":34000083,"solarSystemName":"V-083","location":{"x":-5490000000000000000,"y":2890000000000000000,"z":-6000000000000000000}},"34000084":{"solarSystemId":34000084,"solarSystemName":"V-084","location":{"x":-5440000000000000000,"y":2850000000000000000,"z":-6000000000000000000}},"34000085":{"solarSystemId":34000085,"solarSystemName":"V-085","location":{"x":-5430000000000000000,"y":2880000000000000000,"z":-5990000000000000000}},"34000086":{"solarSystemId":34000086,"solarSystemName":"V-086","location":{"x":-5410000000000000000,"y":2850000000000000000,"z":-5940000000000000000}},"34000087":{"solarSystemId":34000087,"solarSystemName":"V-087","location":{"x":-5450000000000000000,"y":2870000000000000000,"z":-5940000000000000000}},"34000088":{"solarSystemId":34000088,"solarSystemName":"V-088","location":{"x":-5450000000000000000,"y":2870000000000000000,"z":-5990000000000000000}},"34000089":{"solarSystemId":34000089,"solarSystemName":"V-089","location":{"x":-5470000000000000000,"y":2840000000000000000,"z":-5980000000000000000}},"34000090":{"solarSystemId":34000090,"solarSystemName":"V-090","location":{"x":-5470000000000000000,"y":2850000000000000000,"z":-5940000000000000000}},"34000091":{"solarSystemId":34000091,"solarSystemName":"V-091","location":{"x":-5520000000000000000,"y":2880000000000000000,"z":-5940000000000000000}},"34000092":{"solarSystemId":34000092,"solarSystemName":"V-092","location":{"x":-5480000000000000000,"y":2840000000000000000,"z":-5930000000000000000}},"34000093":{"solarSystemId":34000093,"solarSystemName":"V-093","location":{"x":-5450000000000000000,"y":2870000000000000000,"z":-5920000000000000000}},"34000094":{"solarSystemId":34000094,"solarSystemName":"V-094","location":{"x":-5510000000000000000,"y":2860000000000000000,"z":-5920000000000000000}},"34000095":{"solarSystemId":34000095,"solarSystemName":"V-095","location":{"x":-5490000000000000000,"y":2850000000000000000,"z":-5950000000000000000}},"34000096":{"solarSystemId":34000096,"solarSystemName":"V-096","location":{"x":-5510000000000000000,"y":2850000000000000000,"z":-5930000000000000000}},"34000097":{"solarSystemId":34000097,"solarSystemName":"V-097","location":{"x":-5420000000000000000,"y":2900000000000000000,"z":-5950000000000000000}},"34000098":{"solarSystemId":34000098,"solarSystemName":"V-098","location":{"x":-5470000000000000000,"y":2860000000000000000,"z":-5970000000000000000}},"34000099":{"solarSystemId":34000099,"solarSystemName":"V-099","location":{"x":-5430000000000000000,"y":2920000000000000000,"z":-5980000000000000000}},"34000100":{"solarSystemId":34000100,"solarSystemName":"V-100","location":{"x":-5470000000000000000,"y":2930000000000000000,"z":-5970000000000000000}},"34000101":{"solarSystemId":34000101,"solarSystemName":"V-101","location":{"x":-5420000000000000000,"y":2940000000000000000,"z":-5960000000000000000}},"34000102":{"solarSystemId":34000102,"solarSystemName":"V-102","location":{"x":-5420000000000000000,"y":2880000000000000000,"z":-5930000000000000000}},"34000103":{"solarSystemId":34000103,"solarSystemName":"V-103","location":{"x":-5470000000000000000,"y":2860000000000000000,"z":-5990000000000000000}},"34000104":{"solarSystemId":34000104,"solarSystemName":"V-104","location":{"x":-5480000000000000000,"y":2910000000000000000,"z":-5930000000000000000}},"34000105":{"solarSystemId":34000105,"solarSystemName":"V-105","location":{"x":-5470000000000000000,"y":3120000000000000000,"z":-6070000000000000000}},"34000106":{"solarSystemId":34000106,"solarSystemName":"V-106","location":{"x":-5450000000000000000,"y":3110000000000000000,"z":-6080000000000000000}},"34000107":{"solarSystemId":34000107,"solarSystemName":"V-107","location":{"x":-5460000000000000000,"y":3110000000000000000,"z":-6060000000000000000}},"34000108":{"solarSystemId":34000108,"solarSystemName":"V-108","location":{"x":-5420000000000000000,"y":3130000000000000000,"z":-6000000000000000000}},"34000109":{"solarSystemId":34000109,"solarSystemName":"V-109","location":{"x":-5490000000000000000,"y":3070000000000000000,"z":-6060000000000000000}},"34000110":{"solarSystemId":34000110,"solarSystemName":"V-110","location":{"x":-5500000000000000000,"y":3140000000000000000,"z":-6000000000000000000}},"34000111":{"solarSystemId":34000111,"solarSystemName":"V-111","location":{"x":-5430000000000000000,"y":3130000000000000000,"z":-6080000000000000000}},"34000112":{"solarSystemId":34000112,"solarSystemName":"V-112","location":{"x":-5480000000000000000,"y":3140000000000000000,"z":-6070000000000000000}},"34000113":{"solarSystemId":34000113,"solarSystemName":"V-113","location":{"x":-5510000000000000000,"y":3010000000000000000,"z":-5970000000000000000}},"34000114":{"solarSystemId":34000114,"solarSystemName":"V-114","location":{"x":-5540000000000000000,"y":3020000000000000000,"z":-5920000000000000000}},"34000115":{"solarSystemId":34000115,"solarSystemName":"V-115","location":{"x":-5530000000000000000,"y":3010000000000000000,"z":-5970000000000000000}},"34000116":{"solarSystemId":34000116,"solarSystemName":"V-116","location":{"x":-5550000000000000000,"y":3080000000000000000,"z":-5910000000000000000}},"34000117":{"solarSystemId":34000117,"solarSystemName":"V-117","location":{"x":-5560000000000000000,"y":3020000000000000000,"z":-5960000000000000000}},"34000118":{"solarSystemId":34000118,"solarSystemName":"V-118","location":{"x":-5530000000000000000,"y":3080000000000000000,"z":-5970000000000000000}},"34000119":{"solarSystemId":34000119,"solarSystemName":"V-119","location":{"x":-5520000000000000000,"y":3060000000000000000,"z":-5920000000000000000}},"34000120":{"solarSystemId":34000120,"solarSystemName":"V-120","location":{"x":-5530000000000000000,"y":3050000000000000000,"z":-5940000000000000000}},"34000121":{"solarSystemId":34000121,"solarSystemName":"V-121","location":{"x":-4610000000000000000,"y":2320000000000000000,"z":-6430000000000000000}},"34000122":{"solarSystemId":34000122,"solarSystemName":"V-122","location":{"x":-4550000000000000000,"y":2300000000000000000,"z":-6420000000000000000}},"34000123":{"solarSystemId":34000123,"solarSystemName":"V-123","location":{"x":-4550000000000000000,"y":2280000000000000000,"z":-6460000000000000000}},"34000124":{"solarSystemId":34000124,"solarSystemName":"V-124","location":{"x":-4560000000000000000,"y":2310000000000000000,"z":-6400000000000000000}},"34000125":{"solarSystemId":34000125,"solarSystemName":"V-125","location":{"x":-4580000000000000000,"y":2270000000000000000,"z":-6440000000000000000}},"34000126":{"solarSystemId":34000126,"solarSystemName":"V-126","location":{"x":-4570000000000000000,"y":2290000000000000000,"z":-6410000000000000000}},"34000127":{"solarSystemId":34000127,"solarSystemName":"V-127","location":{"x":-4550000000000000000,"y":2270000000000000000,"z":-6390000000000000000}},"34000128":{"solarSystemId":34000128,"solarSystemName":"V-128","location":{"x":-4600000000000000000,"y":2340000000000000000,"z":-6430000000000000000}},"34000129":{"solarSystemId":34000129,"solarSystemName":"V-129","location":{"x":-4610000000000000000,"y":2240000000000000000,"z":-6440000000000000000}},"34000130":{"solarSystemId":34000130,"solarSystemName":"V-130","location":{"x":-4640000000000000000,"y":2240000000000000000,"z":-6380000000000000000}},"34000131":{"solarSystemId":34000131,"solarSystemName":"V-131","location":{"x":-4590000000000000000,"y":2280000000000000000,"z":-6450000000000000000}},"34000132":{"solarSystemId":34000132,"solarSystemName":"V-132","location":{"x":-4620000000000000000,"y":2260000000000000000,"z":-6410000000000000000}},"34000133":{"solarSystemId":34000133,"solarSystemName":"V-133","location":{"x":-4610000000000000000,"y":2260000000000000000,"z":-6420000000000000000}},"34000134":{"solarSystemId":34000134,"solarSystemName":"V-134","location":{"x":-4590000000000000000,"y":2290000000000000000,"z":-6410000000000000000}},"34000135":{"solarSystemId":34000135,"solarSystemName":"V-135","location":{"x":-4610000000000000000,"y":2240000000000000000,"z":-6440000000000000000}},"34000136":{"solarSystemId":34000136,"solarSystemName":"V-136","location":{"x":-4630000000000000000,"y":2220000000000000000,"z":-6410000000000000000}},"34000137":{"solarSystemId":34000137,"solarSystemName":"V-137","location":{"x":-4570000000000000000,"y":2150000000000000000,"z":-6270000000000000000}},"34000138":{"solarSystemId":34000138,"solarSystemName":"V-138","location":{"x":-4560000000000000000,"y":2190000000000000000,"z":-6220000000000000000}},"34000139":{"solarSystemId":34000139,"solarSystemName":"V-139","location":{"x":-4560000000000000000,"y":2140000000000000000,"z":-6250000000000000000}},"34000140":{"solarSystemId":34000140,"solarSystemName":"V-140","location":{"x":-4590000000000000000,"y":2190000000000000000,"z":-6200000000000000000}},"34000141":{"solarSystemId":34000141,"solarSystemName":"V-141","location":{"x":-4570000000000000000,"y":2170000000000000000,"z":-6220000000000000000}},"34000142":{"solarSystemId":34000142,"solarSystemName":"V-142","location":{"x":-4600000000000000000,"y":2210000000000000000,"z":-6220000000000000000}},"34000143":{"solarSystemId":34000143,"solarSystemName":"V-143","location":{"x":-4590000000000000000,"y":2200000000000000000,"z":-6200000000000000000}},"34000144":{"solarSystemId":34000144,"solarSystemName":"V-144","location":{"x":-4620000000000000000,"y":2200000000000000000,"z":-6270000000000000000}},"34000145":{"solarSystemId":34000145,"solarSystemName":"V-145","location":{"x":-4510000000000000000,"y":2270000000000000000,"z":-6260000000000000000}},"34000146":{"solarSystemId":34000146,"solarSystemName":"V-146","location":{"x":-4540000000000000000,"y":2290000000000000000,"z":-6240000000000000000}},"34000147":{"solarSystemId":34000147,"solarSystemName":"V-147","location":{"x":-4490000000000000000,"y":2280000000000000000,"z":-6240000000000000000}},"34000148":{"solarSystemId":34000148,"solarSystemName":"V-148","location":{"x":-4560000000000000000,"y":2290000000000000000,"z":-6270000000000000000}},"34000149":{"solarSystemId":34000149,"solarSystemName":"V-149","location":{"x":-4480000000000000000,"y":2310000000000000000,"z":-6260000000000000000}},"34000150":{"solarSystemId":34000150,"solarSystemName":"V-150","location":{"x":-4560000000000000000,"y":2290000000000000000,"z":-6230000000000000000}},"34000151":{"solarSystemId":34000151,"solarSystemName":"V-151","location":{"x":-4510000000000000000,"y":2330000000000000000,"z":-6210000000000000000}},"34000152":{"solarSystemId":34000152,"solarSystemName":"V-152","location":{"x":-4540000000000000000,"y":2290000000000000000,"z":-6250000000000000000}},"34000153":{"solarSystemId":34000153,"solarSystemName":"V-153","location":{"x":-4580000000000000000,"y":2280000000000000000,"z":-6310000000000000000}},"34000154":{"solarSystemId":34000154,"solarSystemName":"V-154","location":{"x":-4630000000000000000,"y":2300000000000000000,"z":-6260000000000000000}},"34000155":{"solarSystemId":34000155,"solarSystemName":"V-155","location":{"x":-4580000000000000000,"y":2280000000000000000,"z":-6250000000000000000}},"34000156":{"solarSystemId":34000156,"solarSystemName":"V-156","location":{"x":-4620000000000000000,"y":2300000000000000000,"z":-6240000000000000000}},"34000157":{"solarSystemId":34000157,"solarSystemName":"V-157","location":{"x":-4580000000000000000,"y":2280000000000000000,"z":-6310000000000000000}},"34000158":{"solarSystemId":34000158,"solarSystemName":"V-158","location":{"x":-4660000000000000000,"y":2300000000000000000,"z":-6310000000000000000}},"34000159":{"solarSystemId":34000159,"solarSystemName":"V-159","location":{"x":-4650000000000000000,"y":2310000000000000000,"z":-6260000000000000000}},"34000160":{"solarSystemId":34000160,"solarSystemName":"V-160","location":{"x":-4580000000000000000,"y":2300000000000000000,"z":-6260000000000000000}},"34000161":{"solarSystemId":34000161,"solarSystemName":"V-161","location":{"x":-3770000000000000000,"y":2220000000000000000,"z":-6130000000000000000}},"34000162":{"solarSystemId":34000162,"solarSystemName":"V-162","location":{"x":-3720000000000000000,"y":2250000000000000000,"z":-6150000000000000000}},"34000163":{"solarSystemId":34000163,"solarSystemName":"V-163","location":{"x":-3720000000000000000,"y":2280000000000000000,"z":-6120000000000000000}},"34000164":{"solarSystemId":34000164,"solarSystemName":"V-164","location":{"x":-3710000000000000000,"y":2280000000000000000,"z":-6120000000000000000}},"34000165":{"solarSystemId":34000165,"solarSystemName":"V-165","location":{"x":-3710000000000000000,"y":2250000000000000000,"z":-6140000000000000000}},"34000166":{"solarSystemId":34000166,"solarSystemName":"V-166","location":{"x":-3720000000000000000,"y":2240000000000000000,"z":-6110000000000000000}},"34000167":{"solarSystemId":34000167,"solarSystemName":"V-167","location":{"x":-3750000000000000000,"y":2250000000000000000,"z":-6100000000000000000}},"34000168":{"solarSystemId":34000168,"solarSystemName":"V-168","location":{"x":-3710000000000000000,"y":2260000000000000000,"z":-6120000000000000000}},"34000169":{"solarSystemId":34000169,"solarSystemName":"V-169","location":{"x":-3940000000000000000,"y":2250000000000000000,"z":-5890000000000000000}},"34000170":{"solarSystemId":34000170,"solarSystemName":"V-170","location":{"x":-3980000000000000000,"y":2240000000000000000,"z":-5920000000000000000}},"34000171":{"solarSystemId":34000171,"solarSystemName":"V-171","location":{"x":-3910000000000000000,"y":2270000000000000000,"z":-5890000000000000000}},"34000172":{"solarSystemId":34000172,"solarSystemName":"V-172","location":{"x":-3940000000000000000,"y":2260000000000000000,"z":-5920000000000000000}},"34000173":{"solarSystemId":34000173,"solarSystemName":"V-173","location":{"x":-3940000000000000000,"y":2200000000000000000,"z":-5930000000000000000}},"34000174":{"solarSystemId":34000174,"solarSystemName":"V-174","location":{"x":-3960000000000000000,"y":2270000000000000000,"z":-5880000000000000000}},"34000175":{"solarSystemId":34000175,"solarSystemName":"V-175","location":{"x":-3980000000000000000,"y":2220000000000000000,"z":-5920000000000000000}},"34000176":{"solarSystemId":34000176,"solarSystemName":"V-176","location":{"x":-3920000000000000000,"y":2270000000000000000,"z":-5890000000000000000}},"34000177":{"solarSystemId":34000177,"solarSystemName":"V-177","location":{"x":-3960000000000000000,"y":2070000000000000000,"z":-5910000000000000000}},"34000178":{"solarSystemId":34000178,"solarSystemName":"V-178","location":{"x":-3970000000000000000,"y":2070000000000000000,"z":-5850000000000000000}},"34000179":{"solarSystemId":34000179,"solarSystemName":"V-179","location":{"x":-3970000000000000000,"y":2050000000000000000,"z":-5900000000000000000}},"34000180":{"solarSystemId":34000180,"solarSystemName":"V-180","location":{"x":-3900000000000000000,"y":2060000000000000000,"z":-5870000000000000000}},"34000181":{"solarSystemId":34000181,"solarSystemName":"V-181","location":{"x":-3960000000000000000,"y":2050000000000000000,"z":-5840000000000000000}},"34000182":{"solarSystemId":34000182,"solarSystemName":"V-182","location":{"x":-3960000000000000000,"y":2090000000000000000,"z":-5850000000000000000}},"34000183":{"solarSystemId":34000183,"solarSystemName":"V-183","location":{"x":-3900000000000000000,"y":2050000000000000000,"z":-5850000000000000000}},"34000184":{"solarSystemId":34000184,"solarSystemName":"V-184","location":{"x":-3930000000000000000,"y":2020000000000000000,"z":-5850000000000000000}},"34000185":{"solarSystemId":34000185,"solarSystemName":"V-185","location":{"x":-3970000000000000000,"y":2080000000000000000,"z":-5850000000000000000}},"34000186":{"solarSystemId":34000186,"solarSystemName":"V-186","location":{"x":-3970000000000000000,"y":2040000000000000000,"z":-5840000000000000000}},"34000187":{"solarSystemId":34000187,"solarSystemName":"V-187","location":{"x":-4030000000000000000,"y":2070000000000000000,"z":-5820000000000000000}},"34000188":{"solarSystemId":34000188,"solarSystemName":"V-188","location":{"x":-4000000000000000000,"y":2100000000000000000,"z":-5840000000000000000}},"34000189":{"solarSystemId":34000189,"solarSystemName":"V-189","location":{"x":-4010000000000000000,"y":2060000000000000000,"z":-5890000000000000000}},"34000190":{"solarSystemId":34000190,"solarSystemName":"V-190","location":{"x":-4010000000000000000,"y":2050000000000000000,"z":-5900000000000000000}},"34000191":{"solarSystemId":34000191,"solarSystemName":"V-191","location":{"x":-3980000000000000000,"y":2030000000000000000,"z":-5870000000000000000}},"34000192":{"solarSystemId":34000192,"solarSystemName":"V-192","location":{"x":-4020000000000000000,"y":2080000000000000000,"z":-5880000000000000000}},"34000193":{"solarSystemId":34000193,"solarSystemName":"V-193","location":{"x":-3770000000000000000,"y":2280000000000000000,"z":-6080000000000000000}},"34000194":{"solarSystemId":34000194,"solarSystemName":"V-194","location":{"x":-3750000000000000000,"y":2300000000000000000,"z":-6120000000000000000}},"34000195":{"solarSystemId":34000195,"solarSystemName":"V-195","location":{"x":-3700000000000000000,"y":2300000000000000000,"z":-6090000000000000000}},"34000196":{"solarSystemId":34000196,"solarSystemName":"V-196","location":{"x":-3740000000000000000,"y":2250000000000000000,"z":-6140000000000000000}},"34000197":{"solarSystemId":34000197,"solarSystemName":"V-197","location":{"x":-3760000000000000000,"y":2320000000000000000,"z":-6130000000000000000}},"34000198":{"solarSystemId":34000198,"solarSystemName":"V-198","location":{"x":-3730000000000000000,"y":2270000000000000000,"z":-6120000000000000000}},"34000199":{"solarSystemId":34000199,"solarSystemName":"V-199","location":{"x":-3700000000000000000,"y":2270000000000000000,"z":-6080000000000000000}},"34000200":{"solarSystemId":34000200,"solarSystemName":"V-200","location":{"x":-3730000000000000000,"y":2250000000000000000,"z":-6100000000000000000}}} \ No newline at end of file diff --git a/spec/frontier/star_spec.rb b/spec/frontier/star_spec.rb index 8d3e1ff..034a95c 100644 --- a/spec/frontier/star_spec.rb +++ b/spec/frontier/star_spec.rb @@ -5,6 +5,8 @@ describe Star do let(:stars_phase5_file) { File.read "spec/fixtures/stars_phase5.json" } subject(:stars_phase5) { JSON.parse stars_phase5_file } + let(:stars_closed_alpha_file) { File.read "spec/fixtures/stars_closed_alpha.json" } + subject(:stars_closed_alpha) { JSON.parse stars_closed_alpha_file } let(:mapping_closed_alpha_file) { File.read "spec/fixtures/mapping_closed_alpha.json" } subject(:mapping_closed_alpha) { JSON.parse mapping_closed_alpha_file } @@ -18,30 +20,53 @@ expect(sun.location.z).to eq 0 end - it "can create frontier star systems" do - id = "30000001" - loc = Coords.new stars_phase5[id]["location"]["x"], stars_phase5[id]["location"]["y"], stars_phase5[id]["location"]["z"] - a2560 = Star.new(id, mapping_closed_alpha[id], loc) - expect(a2560.id).to eq 30000001 - expect(a2560.name).to eq "A 2560" - expect(a2560.location.x).to eq -4904707237374110000 - expect(a2560.location.y).to eq -332297545060131000 - expect(a2560.location.z).to eq 122856493430790000 - end - it "knows light years" do expect(Star::LIGHT_YEAR).to eq 9460800000000000 end - it "can compute distance between two stars" do - loc = Coords.new(0, 0, 0) - sun = Star.new(1, "Sun", loc) + context "phase 5" do + it "can create frontier star systems" do + id = "30000001" + loc = Coords.new stars_phase5[id]["location"]["x"], stars_phase5[id]["location"]["y"], stars_phase5[id]["location"]["z"] + a2560 = Star.new(id, mapping_closed_alpha[id], loc) + expect(a2560.id).to eq 30000001 + expect(a2560.name).to eq "A 2560" + expect(a2560.location.x).to eq -4904707237374110000 + expect(a2560.location.y).to eq -332297545060131000 + expect(a2560.location.z).to eq 122856493430790000 + end + + it "can compute distance between two stars" do + loc = Coords.new(0, 0, 0) + sun = Star.new(1, "Sun", loc) + id = "30000001" + loc = Coords.new stars_phase5[id]["location"]["x"], stars_phase5[id]["location"]["y"], stars_phase5[id]["location"]["z"] + a2560 = Star.new(id, mapping_closed_alpha[id], loc) + expect(sun.distance_mt(a2560)).to eq 4917485989891691520 + expect(sun.distance_ly(a2560)).to eq 519.7748594084741 + end + end - id = "30000001" - loc = Coords.new stars_phase5[id]["location"]["x"], stars_phase5[id]["location"]["y"], stars_phase5[id]["location"]["z"] - a2560 = Star.new(id, mapping_closed_alpha[id], loc) + context "closed alpha (phase 6)" do + it "can create frontier star systems" do + id = "30000001" + loc = Coords.new stars_closed_alpha[id]["location"]["x"], stars_closed_alpha[id]["location"]["y"], stars_closed_alpha[id]["location"]["z"] + a2560 = Star.new(id, stars_closed_alpha[id]["solarSystemName"], loc) + expect(a2560.id).to eq 30000001 + expect(a2560.name).to eq "A 2560" + expect(a2560.location.x).to eq -3350000000000000000 + expect(a2560.location.y).to eq -510000000000000000 + expect(a2560.location.z).to eq 396000000000000000 + end - expect(sun.distance_mt(a2560)).to eq 4917485989891691520 - expect(sun.distance_ly(a2560)).to eq 519.7748594084741 + it "can compute distance between two stars" do + loc = Coords.new(0, 0, 0) + sun = Star.new(1, "Sun", loc) + id = "30000001" + loc = Coords.new stars_closed_alpha[id]["location"]["x"], stars_closed_alpha[id]["location"]["y"], stars_closed_alpha[id]["location"]["z"] + a2560 = Star.new(id, stars_closed_alpha[id]["solarSystemName"], loc) + expect(sun.distance_mt(a2560)).to eq 3411658834057121792 + expect(sun.distance_ly(a2560)).to eq 360.6099731584139 + end end end