diff --git a/utils/pom.xml b/utils/pom.xml index e433acc..21fa004 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -65,6 +65,11 @@ opencsv 2.3 + + org.apache.httpcomponents + httpclient + 4.5 + diff --git a/utils/src/main/java/ru/trader/edce/EDSession.java b/utils/src/main/java/ru/trader/edce/EDSession.java new file mode 100644 index 0000000..1473f14 --- /dev/null +++ b/utils/src/main/java/ru/trader/edce/EDSession.java @@ -0,0 +1,261 @@ +package ru.trader.edce; + +import org.apache.http.HttpEntity; +import org.apache.http.HttpResponse; +import org.apache.http.client.CookieStore; +import org.apache.http.client.ResponseHandler; +import org.apache.http.client.methods.HttpUriRequest; +import org.apache.http.client.methods.RequestBuilder; +import org.apache.http.cookie.Cookie; +import org.apache.http.impl.client.BasicCookieStore; +import org.apache.http.impl.client.CloseableHttpClient; +import org.apache.http.impl.client.HttpClients; +import org.apache.http.impl.client.LaxRedirectStrategy; +import org.apache.http.util.EntityUtils; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import java.io.*; +import java.util.Arrays; +import java.util.Date; +import java.util.function.Consumer; + +/* Connect to Elite Dangerous Companion +* Thanks Andargor(https://github.com/Andargor) for source on Python +*/ +public class EDSession { + private final static Logger LOG = LoggerFactory.getLogger(EDSession.class); + private final static String COMPANION_DOMAIN = "companion.orerve.net"; + private final static String LOGIN_URL = "https://" + COMPANION_DOMAIN + "/user/login"; + private final static String CONFIRM_URL = "https://" + COMPANION_DOMAIN + "/user/confirm"; + private final static String PROFILE_URL = "https://" + COMPANION_DOMAIN + "/profile"; + private final static String USER_AGENT = "Mozilla/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Mobile/11D257"; + private final static String COOKIE_FILE = "edce.tmp"; + + private final String login; + private final String password; + private CookieStore cookieStore; + private CloseableHttpClient httpClient; + private ED_SESSION_STATUS lastStatus; + + public EDSession(String login, String password) throws IOException, ClassNotFoundException { + this.login = login; + this.password = password; + this.lastStatus = ED_SESSION_STATUS.LOGIN_REQUIRED; + initClient(); + } + + private void initClient() throws IOException, ClassNotFoundException { + cookieStore = readCookieStore(); + checkCookie(); + httpClient = HttpClients.custom() + .setDefaultCookieStore(cookieStore) + .setUserAgent(USER_AGENT) + .setRedirectStrategy(new LaxRedirectStrategy()) + .build(); + } + + public void login(){ + LOG.info("Login to {}, email {}", COMPANION_DOMAIN, login); + HttpUriRequest loginRequest = RequestBuilder.post(LOGIN_URL) + .addParameter("email", login) + .addParameter("password", password) + .build(); + EDResponseHandler handler = new EDResponseHandler(content -> { + if (content.contains("verification code")){ + LOG.info("Verification code required"); + lastStatus = ED_SESSION_STATUS.VERIFICATION_REQUIRED; + } else { + if (content.contains("Password")){ + LOG.info("Wrong password or email"); + lastStatus = ED_SESSION_STATUS.LOGIN_FAILED; + } else { + lastStatus = ED_SESSION_STATUS.OK; + } + } + }); + try { + if (!httpClient.execute(loginRequest, handler)){ + lastStatus = ED_SESSION_STATUS.ERROR; + } + } catch (IOException e) { + LOG.error("Error on connect to {}", LOGIN_URL); + LOG.error("", e); + lastStatus = ED_SESSION_STATUS.ERROR; + } + } + + public void submitVerifyCode(String code){ + LOG.info("Submit verify code to {}", COMPANION_DOMAIN); + HttpUriRequest submitRequest = RequestBuilder.post(CONFIRM_URL) + .addParameter("code", code) + .build(); + EDResponseHandler handler = new EDResponseHandler(content -> { + if (content.contains("verification code")){ + LOG.info("Wrong verify code"); + lastStatus = ED_SESSION_STATUS.VERIFICATION_REQUIRED; + } else { + lastStatus = ED_SESSION_STATUS.OK; + } + }); + try { + if (!httpClient.execute(submitRequest, handler)){ + lastStatus = ED_SESSION_STATUS.ERROR; + } + } catch (IOException e) { + LOG.error("Error on connect to {}", CONFIRM_URL); + LOG.error("", e); + lastStatus = ED_SESSION_STATUS.ERROR; + } + } + + public void readProfile(Consumer contentConsumer){ + LOG.info("Submit profile request to {}", COMPANION_DOMAIN); + HttpUriRequest submitRequest = RequestBuilder.get(PROFILE_URL).build(); + EDResponseHandler handler = new EDResponseHandler(content -> { + if (lastStatus != ED_SESSION_STATUS.OK){ + if (content.contains("verification code")){ + LOG.info("Verification code required"); + lastStatus = ED_SESSION_STATUS.VERIFICATION_REQUIRED; + } else if (content.contains("Password")) { + LOG.info("Login required"); + lastStatus = ED_SESSION_STATUS.LOGIN_REQUIRED; + } else { + contentConsumer.accept(content); + lastStatus = ED_SESSION_STATUS.OK; + } + } else { + contentConsumer.accept(content); + } + }); + try { + if (!httpClient.execute(submitRequest, handler)){ + lastStatus = ED_SESSION_STATUS.ERROR; + } + } catch (IOException e) { + LOG.error("Error on connect to {}", CONFIRM_URL); + LOG.error("", e); + lastStatus = ED_SESSION_STATUS.ERROR; + } + } + + public ED_SESSION_STATUS getLastStatus() { + return lastStatus; + } + + public void close() throws IOException { + writeCookieStore(cookieStore); + httpClient.close(); + } + + private void checkCookie(){ + boolean appFound = false, mtkFound = false, midFound = false; + for (Cookie cookie : cookieStore.getCookies()) { + if (COMPANION_DOMAIN.equals(cookie.getDomain())) { + if ("CompanionApp".equals(cookie.getName())) { + appFound = true; + } else if ("mid".equals(cookie.getName())){ + midFound = true; + } else if ("mtk".equals(cookie.getName())){ + mtkFound = true; + } + if (appFound && mtkFound && midFound){ + LOG.debug("Old cookie found, login not required"); + lastStatus = ED_SESSION_STATUS.OK; + break; + } + } + } + } + + public void clearCookies(){ + cookieStore.clear(); + } + + public void clearExpiredCookies(){ + cookieStore.clearExpired(new Date()); + } + + private static CookieStore readCookieStore() { + LOG.debug("Read cookie store from {}", COOKIE_FILE); + File file = new File(COOKIE_FILE); + BasicCookieStore cookieStore = null; + if (file.exists()) { + try (ObjectInputStream ois = new ObjectInputStream(new FileInputStream(file))){ + cookieStore = (BasicCookieStore) ois.readObject(); + cookieStore.clearExpired(new Date()); + } catch (ClassNotFoundException | IOException e) { + LOG.warn("Error on read cookie from {}", COOKIE_FILE); + LOG.warn("", e); + } + } + if (cookieStore == null) { + LOG.debug("Not found cookie store, create new"); + cookieStore = new BasicCookieStore(); + } + return cookieStore; + } + + private static void writeCookieStore(CookieStore cookieStore) { + LOG.debug("Write cookie store to {}", COOKIE_FILE); + try (ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream(COOKIE_FILE))){ + oos.writeObject(cookieStore); + oos.flush(); + } catch (IOException e) { + LOG.warn("Error on write cookie to {}", COOKIE_FILE); + LOG.warn("", e); + } + } + + private class EDResponseHandler implements ResponseHandler { + + private final Consumer contentReader; + + public EDResponseHandler() { + this(null); + } + + public EDResponseHandler(Consumer contentReader) { + this.contentReader = contentReader; + } + + private void readContent(HttpEntity entity) throws IOException { + if (contentReader != null) { + String content = EntityUtils.toString(entity); + LOG.debug("Content: {}", content); + contentReader.accept(content); + } else { + if (LOG.isDebugEnabled()) { + LOG.debug("Content: {}", EntityUtils.toString(entity)); + } else { + EntityUtils.consume(entity); + } + } + } + + @Override + public Boolean handleResponse(HttpResponse response) throws IOException { + if (LOG.isDebugEnabled()) { + LOG.debug("Response: {}", response.getStatusLine()); + LOG.debug("Headers: {}", Arrays.toString(response.getAllHeaders())); + } + int status = response.getStatusLine().getStatusCode(); + if (status >= 200 && status < 300){ + HttpEntity entity = response.getEntity(); + if (entity != null){ + if ("application/json".equals(entity.getContentType().getValue())){ + lastStatus = ED_SESSION_STATUS.OK; + } + readContent(entity); + } + return true; + } else { + LOG.warn("Don't connect, status: {}", response.getStatusLine()); + if (LOG.isDebugEnabled()) { + LOG.debug("Content: {}", EntityUtils.toString(response.getEntity())); + } + return false; + } + } + } +} diff --git a/utils/src/main/java/ru/trader/edce/ED_SESSION_STATUS.java b/utils/src/main/java/ru/trader/edce/ED_SESSION_STATUS.java new file mode 100644 index 0000000..bc1c7ac --- /dev/null +++ b/utils/src/main/java/ru/trader/edce/ED_SESSION_STATUS.java @@ -0,0 +1,5 @@ +package ru.trader.edce; + +public enum ED_SESSION_STATUS { + OK, VERIFICATION_REQUIRED, LOGIN_FAILED, ERROR, LOGIN_REQUIRED +} diff --git a/utils/src/test/java/ru/trader/edce/EDSessionDemo.java b/utils/src/test/java/ru/trader/edce/EDSessionDemo.java new file mode 100644 index 0000000..491c8b7 --- /dev/null +++ b/utils/src/test/java/ru/trader/edce/EDSessionDemo.java @@ -0,0 +1,45 @@ +package ru.trader.edce; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import java.io.BufferedReader; +import java.io.IOException; +import java.io.InputStreamReader; + +public class EDSessionDemo { + private final static Logger LOG = LoggerFactory.getLogger(EDSessionDemo.class); + + private static String readLine(String format, Object... args) throws IOException { + if (System.console() != null) { + return System.console().readLine(format, args); + } + System.out.print(String.format(format, args)); + BufferedReader reader = new BufferedReader(new InputStreamReader( + System.in)); + return reader.readLine(); + } + + public static void main(String args[]) throws Exception { + LOG.info("Test ED Companion connect"); + EDSession edSession = new EDSession("frontier@mail.ru","elite"); + if (edSession.getLastStatus() == ED_SESSION_STATUS.OK){ + LOG.info("Check get profile"); + edSession.readProfile(s ->{}); + } + if (edSession.getLastStatus() == ED_SESSION_STATUS.LOGIN_REQUIRED) { + edSession.login(); + if (edSession.getLastStatus() == ED_SESSION_STATUS.VERIFICATION_REQUIRED) { + LOG.info("Check verification"); + String code = readLine("Verify code:"); + edSession.submitVerifyCode(code); + edSession.login(); + } + if (edSession.getLastStatus() == ED_SESSION_STATUS.OK) { + LOG.info("Check get profile"); + edSession.readProfile(s -> {}); + } + } + edSession.close(); + } +} diff --git a/utils/src/test/resources/edce/edce.json b/utils/src/test/resources/edce/edce.json new file mode 100644 index 0000000..5d0de8e --- /dev/null +++ b/utils/src/test/resources/edce/edce.json @@ -0,0 +1,6753 @@ +{ + "commander": { + "id": 126367, + "name": "MoHax", + "credits": 13882052, + "debt": 0, + "currentShipId": 2, + "alive": true, + "docked": true, + "rank": { + "combat": 3, + "trade": 4, + "explore": 3, + "crime": 0, + "service": 0, + "empire": 0, + "federation": 2, + "power": 3 + } + }, + "lastSystem": { + "id": "65179", + "name": "Ennead", + "faction": "Federation" + }, + "lastStarport": { + "id": "3223840768", + "name": "Watt Ring", + "faction": "Federation", + "commodities": [ + { + "id": "128049202", + "name": "Hydrogen Fuel", + "cost_min": 125, + "cost_max": 168, + "cost_mean": "147.00", + "homebuy": "74", + "homesell": "71", + "consumebuy": "3", + "baseCreationQty": 200, + "baseConsumptionQty": 200, + "capacity": 1239476, + "buyPrice": 0, + "sellPrice": 152, + "meanPrice": 147, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 12273, + "consumptionQty": 1227203, + "targetStock": 319073, + "stock": 0, + "demand": 659426, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Chemicals", + "volumescale": "1.3000" + }, + { + "id": "128049203", + "name": "Mineral Oil", + "cost_min": 192, + "cost_max": 325, + "cost_mean": "259.00", + "homebuy": "47", + "homesell": "42", + "consumebuy": "5", + "baseCreationQty": 647, + "baseConsumptionQty": 0, + "capacity": 39701, + "buyPrice": 120, + "sellPrice": 106, + "meanPrice": 259, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 39701, + "consumptionQty": 0, + "targetStock": 39701, + "stock": 22229, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Chemicals", + "volumescale": "1.0300" + }, + { + "id": "128049241", + "name": "Clothing", + "cost_min": 315, + "cost_max": 474, + "cost_mean": "395.00", + "homebuy": "61", + "homesell": "57", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 350, + "capacity": 2147606, + "buyPrice": 0, + "sellPrice": 465, + "meanPrice": 395, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 2147606, + "targetStock": 536901, + "stock": 0, + "demand": 1531178, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Consumer Items", + "volumescale": "1.1500" + }, + { + "id": "128049240", + "name": "Consumer Technology", + "cost_min": 6561, + "cost_max": 7500, + "cost_mean": "7031.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 27, + "capacity": 298211, + "buyPrice": 0, + "sellPrice": 7520, + "meanPrice": 7031, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 298211, + "targetStock": 74552, + "stock": 0, + "demand": 223659, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Consumer Items", + "volumescale": "1.1000" + }, + { + "id": "128049238", + "name": "Domestic Appliances", + "cost_min": 527, + "cost_max": 734, + "cost_mean": "631.00", + "homebuy": "70", + "homesell": "67", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 209, + "capacity": 641214, + "buyPrice": 0, + "sellPrice": 730, + "meanPrice": 631, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 641214, + "targetStock": 160303, + "stock": 0, + "demand": 470294, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Consumer Items", + "volumescale": "1.2500" + }, + { + "id": "128049177", + "name": "Algae", + "cost_min": 135, + "cost_max": 265, + "cost_mean": "200.00", + "homebuy": "27", + "homesell": "20", + "consumebuy": "7", + "baseCreationQty": 126, + "baseConsumptionQty": 0, + "capacity": 23196, + "buyPrice": 73, + "sellPrice": 54, + "meanPrice": 200, + "demandBracket": 0, + "stockBracket": 1, + "creationQty": 7732, + "consumptionQty": 0, + "targetStock": 7732, + "stock": 4329, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.0000" + }, + { + "id": "128049182", + "name": "Animal Meat", + "cost_min": 1286, + "cost_max": 1633, + "cost_mean": "1460.00", + "homebuy": "81", + "homesell": "79", + "consumebuy": "2", + "baseCreationQty": 19, + "baseConsumptionQty": 0, + "capacity": 1166, + "buyPrice": 1181, + "sellPrice": 1140, + "meanPrice": 1460, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 1166, + "consumptionQty": 0, + "targetStock": 1166, + "stock": 650, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.4000" + }, + { + "id": "128049189", + "name": "Coffee", + "cost_min": 1286, + "cost_max": 1633, + "cost_mean": "1460.00", + "homebuy": "81", + "homesell": "79", + "consumebuy": "2", + "baseCreationQty": 19, + "baseConsumptionQty": 0, + "capacity": 1166, + "buyPrice": 1181, + "sellPrice": 1141, + "meanPrice": 1460, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 1166, + "consumptionQty": 0, + "targetStock": 1166, + "stock": 649, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.4000" + }, + { + "id": "128049183", + "name": "Fish", + "cost_min": 403, + "cost_max": 583, + "cost_mean": "493.00", + "homebuy": "66", + "homesell": "63", + "consumebuy": "3", + "baseCreationQty": 27, + "baseConsumptionQty": 0, + "capacity": 4971, + "buyPrice": 390, + "sellPrice": 369, + "meanPrice": 493, + "demandBracket": 0, + "stockBracket": 1, + "creationQty": 1657, + "consumptionQty": 0, + "targetStock": 1657, + "stock": 925, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.2000" + }, + { + "id": "128049178", + "name": "Fruit And Vegetables", + "cost_min": 315, + "cost_max": 474, + "cost_mean": "395.00", + "homebuy": "61", + "homesell": "57", + "consumebuy": "4", + "baseCreationQty": 1748, + "baseConsumptionQty": 9, + "capacity": 363195, + "buyPrice": 293, + "sellPrice": 271, + "meanPrice": 395, + "demandBracket": 0, + "stockBracket": 1, + "creationQty": 107258, + "consumptionQty": 13807, + "targetStock": 110709, + "stock": 63511, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.1500" + }, + { + "id": "128049180", + "name": "Grain", + "cost_min": 207, + "cost_max": 342, + "cost_mean": "275.00", + "homebuy": "50", + "homesell": "45", + "consumebuy": "5", + "baseCreationQty": 5840, + "baseConsumptionQty": 29, + "capacity": 1608867, + "buyPrice": 174, + "sellPrice": 155, + "meanPrice": 275, + "demandBracket": 0, + "stockBracket": 1, + "creationQty": 358344, + "consumptionQty": 177945, + "targetStock": 402830, + "stock": 245155, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.0500" + }, + { + "id": "128049188", + "name": "Tea", + "cost_min": 1459, + "cost_max": 1833, + "cost_mean": "1646.00", + "homebuy": "82", + "homesell": "80", + "consumebuy": "2", + "baseCreationQty": 18, + "baseConsumptionQty": 0, + "capacity": 1105, + "buyPrice": 1425, + "sellPrice": 1377, + "meanPrice": 1646, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 1105, + "consumptionQty": 0, + "targetStock": 1105, + "stock": 467, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.4200" + }, + { + "id": "128064028", + "name": "Atmospheric Extractors", + "cost_min": 403, + "cost_max": 583, + "cost_mean": "493.00", + "homebuy": "66", + "homesell": "63", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 271, + "capacity": 1662860, + "buyPrice": 0, + "sellPrice": 557, + "meanPrice": 493, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 1662860, + "targetStock": 415715, + "stock": 0, + "demand": 1106579, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.2000" + }, + { + "id": "128049222", + "name": "Crop Harvesters", + "cost_min": 2142, + "cost_max": 2613, + "cost_mean": "2378.00", + "homebuy": "86", + "homesell": "85", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 322, + "capacity": 79032, + "buyPrice": 0, + "sellPrice": 2148, + "meanPrice": 2378, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 79032, + "targetStock": 19758, + "stock": 0, + "demand": 14818.5, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.4400" + }, + { + "id": "128049223", + "name": "Marine Supplies", + "cost_min": 4122, + "cost_max": 4826, + "cost_mean": "4474.00", + "homebuy": "90", + "homesell": "89", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 39, + "capacity": 9573, + "buyPrice": 0, + "sellPrice": 4133, + "meanPrice": 4474, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 9573, + "targetStock": 2393, + "stock": 0, + "demand": 1795, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.2400" + }, + { + "id": "128049217", + "name": "Power Generators", + "cost_min": 527, + "cost_max": 734, + "cost_mean": "631.00", + "homebuy": "70", + "homesell": "67", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 21, + "capacity": 5155, + "buyPrice": 0, + "sellPrice": 529, + "meanPrice": 631, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 5155, + "targetStock": 1288, + "stock": 0, + "demand": 966.75, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.2500" + }, + { + "id": "128049218", + "name": "Water Purifiers", + "cost_min": 300, + "cost_max": 456, + "cost_mean": "378.00", + "homebuy": "60", + "homesell": "56", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 37, + "capacity": 9082, + "buyPrice": 0, + "sellPrice": 301, + "meanPrice": 378, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 9082, + "targetStock": 2270, + "stock": 0, + "demand": 1703, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.1400" + }, + { + "id": "128049208", + "name": "Agricultural Medicines", + "cost_min": 1004, + "cost_max": 1303, + "cost_mean": "1154.00", + "homebuy": "79", + "homesell": "77", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 119, + "capacity": 29208, + "buyPrice": 0, + "sellPrice": 1307, + "meanPrice": 1154, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 29208, + "targetStock": 7302, + "stock": 0, + "demand": 21906, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.3600" + }, + { + "id": "128049210", + "name": "Basic Medicines", + "cost_min": 315, + "cost_max": 474, + "cost_mean": "395.00", + "homebuy": "61", + "homesell": "57", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 350, + "capacity": 322143, + "buyPrice": 0, + "sellPrice": 470, + "meanPrice": 395, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 107381, + "targetStock": 26845, + "stock": 0, + "demand": 234896, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.1500" + }, + { + "id": "128049209", + "name": "Performance Enhancers", + "cost_min": 6561, + "cost_max": 7500, + "cost_mean": "7031.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 67, + "capacity": 205557, + "buyPrice": 0, + "sellPrice": 7520, + "meanPrice": 7031, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 205557, + "targetStock": 51389, + "stock": 0, + "demand": 154168, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.1000" + }, + { + "id": "128049669", + "name": "Progenitor Cells", + "cost_min": 6561, + "cost_max": 7500, + "cost_mean": "7031.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 27, + "capacity": 165673, + "buyPrice": 0, + "sellPrice": 7520, + "meanPrice": 7031, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 165673, + "targetStock": 41418, + "stock": 0, + "demand": 124255, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.1000" + }, + { + "id": "128668550", + "name": "Painite", + "cost_min": 30000, + "cost_max": 36000, + "cost_mean": "33000.00", + "homebuy": "100", + "homesell": "100", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 15, + "capacity": 92041, + "buyPrice": 0, + "sellPrice": 36093, + "meanPrice": 33000, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 92041, + "targetStock": 23010, + "stock": 0, + "demand": 69031, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.0000" + }, + { + "id": "128049214", + "name": "Beer", + "cost_min": 175, + "cost_max": 304, + "cost_mean": "240.00", + "homebuy": "43", + "homesell": "37", + "consumebuy": "6", + "baseCreationQty": 755, + "baseConsumptionQty": 4, + "capacity": 58600, + "buyPrice": 108, + "sellPrice": 92, + "meanPrice": 240, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 46327, + "consumptionQty": 12273, + "targetStock": 49395, + "stock": 29009, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Narcotics", + "volumescale": "1.0000" + }, + { + "id": "128049216", + "name": "Liquor", + "cost_min": 624, + "cost_max": 852, + "cost_mean": "738.00", + "homebuy": "73", + "homesell": "70", + "consumebuy": "3", + "baseCreationQty": 179, + "baseConsumptionQty": 1, + "capacity": 812, + "buyPrice": 0, + "sellPrice": 816, + "meanPrice": 738, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 44, + "consumptionQty": 768, + "targetStock": 236, + "stock": 0, + "demand": 533, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Narcotics", + "volumescale": "1.2800" + }, + { + "id": "128049215", + "name": "Wine", + "cost_min": 252, + "cost_max": 396, + "cost_mean": "324.00", + "homebuy": "56", + "homesell": "52", + "consumebuy": "4", + "baseCreationQty": 452, + "baseConsumptionQty": 2, + "capacity": 40008, + "buyPrice": 193, + "sellPrice": 178, + "meanPrice": 324, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 27735, + "consumptionQty": 12273, + "targetStock": 30803, + "stock": 18596, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Narcotics", + "volumescale": "1.1000" + }, + { + "id": "128066403", + "name": "Drones", + "cost_min": 100, + "cost_max": 100, + "cost_mean": "100.00", + "homebuy": "100", + "homesell": "100", + "consumebuy": "1", + "baseCreationQty": 200, + "baseConsumptionQty": 0, + "capacity": 1227203, + "buyPrice": 102, + "sellPrice": 101, + "meanPrice": 100, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 1227203, + "consumptionQty": 0, + "targetStock": 1227203, + "stock": 1227203, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "NonMarketable", + "volumescale": "1.0000" + }, + { + "id": "128671443", + "name": "S A P8 Core Container", + "cost_min": 50000, + "cost_max": 60000, + "cost_mean": "55000.00", + "homebuy": "100", + "homesell": "100", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 200, + "capacity": 1227203, + "buyPrice": 0, + "sellPrice": 60155, + "meanPrice": 55000, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 1227203, + "targetStock": 306800, + "stock": 0, + "demand": 920403, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Salvage", + "volumescale": "1.0000" + }, + { + "id": "128049229", + "name": "Animal Monitors", + "cost_min": 300, + "cost_max": 456, + "cost_mean": "378.00", + "homebuy": "60", + "homesell": "56", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 368, + "capacity": 90323, + "buyPrice": 0, + "sellPrice": 458, + "meanPrice": 378, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 90323, + "targetStock": 22580, + "stock": 0, + "demand": 67743, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.1400" + }, + { + "id": "128049230", + "name": "Aquaponic Systems", + "cost_min": 274, + "cost_max": 424, + "cost_mean": "349.00", + "homebuy": "58", + "homesell": "54", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 408, + "capacity": 100140, + "buyPrice": 0, + "sellPrice": 426, + "meanPrice": 349, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 100140, + "targetStock": 25035, + "stock": 0, + "demand": 75105, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.1200" + }, + { + "id": "128049232", + "name": "Terrain Enrichment Systems", + "cost_min": 4705, + "cost_max": 5470, + "cost_mean": "5088.00", + "homebuy": "91", + "homesell": "90", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 35, + "capacity": 8591, + "buyPrice": 0, + "sellPrice": 5485, + "meanPrice": 5088, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 8591, + "targetStock": 2147, + "stock": 0, + "demand": 6444, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.2000" + }, + { + "id": "128049190", + "name": "Leather", + "cost_min": 175, + "cost_max": 304, + "cost_mean": "240.00", + "homebuy": "43", + "homesell": "37", + "consumebuy": "6", + "baseCreationQty": 75, + "baseConsumptionQty": 0, + "capacity": 4603, + "buyPrice": 101, + "sellPrice": 86, + "meanPrice": 240, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 4603, + "consumptionQty": 0, + "targetStock": 4603, + "stock": 2576, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Textiles", + "volumescale": "1.0000" + }, + { + "id": "128049191", + "name": "Natural Fabrics", + "cost_min": 403, + "cost_max": 583, + "cost_mean": "493.00", + "homebuy": "66", + "homesell": "63", + "consumebuy": "3", + "baseCreationQty": 271, + "baseConsumptionQty": 0, + "capacity": 16629, + "buyPrice": 322, + "sellPrice": 305, + "meanPrice": 493, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 16629, + "consumptionQty": 0, + "targetStock": 16629, + "stock": 9311, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Textiles", + "volumescale": "1.2000" + }, + { + "id": "128049244", + "name": "Biowaste", + "cost_min": 50, + "cost_max": 98, + "cost_mean": "74.00", + "homebuy": "27", + "homesell": "20", + "consumebuy": "7", + "baseCreationQty": 0, + "baseConsumptionQty": 1620, + "capacity": 9940344, + "buyPrice": 0, + "sellPrice": 99, + "meanPrice": 74, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 9940344, + "targetStock": 2485086, + "stock": 0, + "demand": 7439286, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Waste ", + "volumescale": "1.0000" + }, + { + "id": "128049236", + "name": "Non Lethal Weapons", + "cost_min": 1766, + "cost_max": 2185, + "cost_mean": "1976.00", + "homebuy": "84", + "homesell": "82", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 75, + "capacity": 9205, + "buyPrice": 0, + "sellPrice": 2191, + "meanPrice": 1976, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 9205, + "targetStock": 2301, + "stock": 0, + "demand": 6904, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Weapons", + "volumescale": "1.4500" + }, + { + "id": "128049233", + "name": "Personal Weapons", + "cost_min": 4122, + "cost_max": 4826, + "cost_mean": "4474.00", + "homebuy": "90", + "homesell": "89", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 39, + "capacity": 59827, + "buyPrice": 0, + "sellPrice": 4791, + "meanPrice": 4474, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 59827, + "targetStock": 14956, + "stock": 0, + "demand": 42639, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Weapons", + "volumescale": "1.2400" + }, + { + "id": "128049235", + "name": "Reactive Armour", + "cost_min": 2008, + "cost_max": 2461, + "cost_mean": "2235.00", + "homebuy": "85", + "homesell": "84", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 68, + "capacity": 25035, + "buyPrice": 0, + "sellPrice": 2468, + "meanPrice": 2235, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 25035, + "targetStock": 6258, + "stock": 0, + "demand": 18777, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Weapons", + "volumescale": "1.4600" + } + ], + "modules": { + "128049467": { + "id": 128049467, + "category": "weapon", + "name": "Hpt_PlasmaAccelerator_Fixed_Huge", + "cost": 13793600, + "sku": null + }, + "128049466": { + "id": 128049466, + "category": "weapon", + "name": "Hpt_PlasmaAccelerator_Fixed_Large", + "cost": 3051200, + "sku": null + }, + "128049465": { + "id": 128049465, + "category": "weapon", + "name": "Hpt_PlasmaAccelerator_Fixed_Medium", + "cost": 834200, + "sku": null + }, + "128049489": { + "id": 128049489, + "category": "weapon", + "name": "Hpt_Railgun_Fixed_Medium", + "cost": 412800, + "sku": null + }, + "128049488": { + "id": 128049488, + "category": "weapon", + "name": "Hpt_Railgun_Fixed_Small", + "cost": 51600, + "sku": null + }, + "128049493": { + "id": 128049493, + "category": "weapon", + "name": "Hpt_BasicMissileRack_Fixed_Medium", + "cost": 512400, + "sku": null + }, + "128049492": { + "id": 128049492, + "category": "weapon", + "name": "Hpt_BasicMissileRack_Fixed_Small", + "cost": 72600, + "sku": null + }, + "128049510": { + "id": 128049510, + "category": "weapon", + "name": "Hpt_AdvancedTorpPylon_Fixed_Medium", + "cost": 44800, + "sku": null + }, + "128049509": { + "id": 128049509, + "category": "weapon", + "name": "Hpt_AdvancedTorpPylon_Fixed_Small", + "cost": 11200, + "sku": null + }, + "128666725": { + "id": 128666725, + "category": "weapon", + "name": "Hpt_DumbfireMissileRack_Fixed_Medium", + "cost": 240400, + "sku": null + }, + "128666724": { + "id": 128666724, + "category": "weapon", + "name": "Hpt_DumbfireMissileRack_Fixed_Small", + "cost": 32175, + "sku": null + }, + "128049500": { + "id": 128049500, + "category": "weapon", + "name": "Hpt_MineLauncher_Fixed_Small", + "cost": 24260, + "sku": null + }, + "128049463": { + "id": 128049463, + "category": "weapon", + "name": "Hpt_MultiCannon_Turret_Medium", + "cost": 1292800, + "sku": null + }, + "128049459": { + "id": 128049459, + "category": "weapon", + "name": "Hpt_MultiCannon_Gimbal_Small", + "cost": 14250, + "sku": null + }, + "128049460": { + "id": 128049460, + "category": "weapon", + "name": "Hpt_MultiCannon_Gimbal_Medium", + "cost": 57000, + "sku": null + }, + "128049456": { + "id": 128049456, + "category": "weapon", + "name": "Hpt_MultiCannon_Fixed_Medium", + "cost": 38000, + "sku": null + }, + "128049455": { + "id": 128049455, + "category": "weapon", + "name": "Hpt_MultiCannon_Fixed_Small", + "cost": 9500, + "sku": null + }, + "128049441": { + "id": 128049441, + "category": "weapon", + "name": "Hpt_Cannon_Fixed_Huge", + "cost": 2700800, + "sku": null + }, + "128049445": { + "id": 128049445, + "category": "weapon", + "name": "Hpt_Cannon_Turret_Small", + "cost": 506400, + "sku": null + }, + "128671120": { + "id": 128671120, + "category": "weapon", + "name": "Hpt_Cannon_Gimbal_Large", + "cost": 1350400, + "sku": null + }, + "128049446": { + "id": 128049446, + "category": "weapon", + "name": "Hpt_Cannon_Turret_Medium", + "cost": 4051200, + "sku": null + }, + "128049442": { + "id": 128049442, + "category": "weapon", + "name": "Hpt_Cannon_Gimbal_Small", + "cost": 42200, + "sku": null + }, + "128049440": { + "id": 128049440, + "category": "weapon", + "name": "Hpt_Cannon_Fixed_Large", + "cost": 675200, + "sku": null + }, + "128671322": { + "id": 128671322, + "category": "weapon", + "name": "Hpt_Slugshot_Turret_Large", + "cost": 5836800, + "sku": null + }, + "128049454": { + "id": 128049454, + "category": "weapon", + "name": "Hpt_Slugshot_Turret_Medium", + "cost": 1459200, + "sku": null + }, + "128049451": { + "id": 128049451, + "category": "weapon", + "name": "Hpt_Slugshot_Gimbal_Small", + "cost": 54720, + "sku": null + }, + "128049452": { + "id": 128049452, + "category": "weapon", + "name": "Hpt_Slugshot_Gimbal_Medium", + "cost": 437760, + "sku": null + }, + "128049450": { + "id": 128049450, + "category": "weapon", + "name": "Hpt_Slugshot_Fixed_Large", + "cost": 1167360, + "sku": null + }, + "128049437": { + "id": 128049437, + "category": "weapon", + "name": "Hpt_BeamLaser_Turret_Large", + "cost": 19399600, + "sku": null + }, + "128049428": { + "id": 128049428, + "category": "weapon", + "name": "Hpt_BeamLaser_Fixed_Small", + "cost": 37430, + "sku": null + }, + "128049430": { + "id": 128049430, + "category": "weapon", + "name": "Hpt_BeamLaser_Fixed_Large", + "cost": 1177600, + "sku": null + }, + "128049432": { + "id": 128049432, + "category": "weapon", + "name": "Hpt_BeamLaser_Gimbal_Small", + "cost": 74650, + "sku": null + }, + "128049387": { + "id": 128049387, + "category": "weapon", + "name": "Hpt_PulseLaser_Gimbal_Large", + "cost": 140600, + "sku": null + }, + "128049385": { + "id": 128049385, + "category": "weapon", + "name": "Hpt_PulseLaser_Gimbal_Small", + "cost": 6600, + "sku": null + }, + "128049386": { + "id": 128049386, + "category": "weapon", + "name": "Hpt_PulseLaser_Gimbal_Medium", + "cost": 35400, + "sku": null + }, + "128049382": { + "id": 128049382, + "category": "weapon", + "name": "Hpt_PulseLaser_Fixed_Medium", + "cost": 17600, + "sku": null + }, + "128049404": { + "id": 128049404, + "category": "weapon", + "name": "Hpt_PulseLaserBurst_Gimbal_Small", + "cost": 8600, + "sku": null + }, + "128049405": { + "id": 128049405, + "category": "weapon", + "name": "Hpt_PulseLaserBurst_Gimbal_Medium", + "cost": 48500, + "sku": null + }, + "128049401": { + "id": 128049401, + "category": "weapon", + "name": "Hpt_PulseLaserBurst_Fixed_Medium", + "cost": 23000, + "sku": null + }, + "128662534": { + "id": 128662534, + "category": "utility", + "name": "Hpt_CrimeScanner_Size0_Class5", + "cost": 1097095, + "sku": null + }, + "128662533": { + "id": 128662533, + "category": "utility", + "name": "Hpt_CrimeScanner_Size0_Class4", + "cost": 365698, + "sku": null + }, + "128662532": { + "id": 128662532, + "category": "utility", + "name": "Hpt_CrimeScanner_Size0_Class3", + "cost": 121899, + "sku": null + }, + "128662531": { + "id": 128662531, + "category": "utility", + "name": "Hpt_CrimeScanner_Size0_Class2", + "cost": 40633, + "sku": null + }, + "128662524": { + "id": 128662524, + "category": "utility", + "name": "Hpt_CargoScanner_Size0_Class5", + "cost": 1097095, + "sku": null + }, + "128662523": { + "id": 128662523, + "category": "utility", + "name": "Hpt_CargoScanner_Size0_Class4", + "cost": 365698, + "sku": null + }, + "128662521": { + "id": 128662521, + "category": "utility", + "name": "Hpt_CargoScanner_Size0_Class2", + "cost": 40633, + "sku": null + }, + "128662520": { + "id": 128662520, + "category": "utility", + "name": "Hpt_CargoScanner_Size0_Class1", + "cost": 13544, + "sku": null + }, + "128049519": { + "id": 128049519, + "category": "utility", + "name": "Hpt_HeatSinkLauncher_Turret_Tiny", + "cost": 3500, + "sku": null + }, + "128049522": { + "id": 128049522, + "category": "utility", + "name": "Hpt_PlasmaPointDefence_Turret_Tiny", + "cost": 18546, + "sku": null + }, + "128662527": { + "id": 128662527, + "category": "utility", + "name": "Hpt_CloudScanner_Size0_Class3", + "cost": 121899, + "sku": null + }, + "128662526": { + "id": 128662526, + "category": "utility", + "name": "Hpt_CloudScanner_Size0_Class2", + "cost": 40633, + "sku": null + }, + "128662529": { + "id": 128662529, + "category": "utility", + "name": "Hpt_CloudScanner_Size0_Class5", + "cost": 1097095, + "sku": null + }, + "128662528": { + "id": 128662528, + "category": "utility", + "name": "Hpt_CloudScanner_Size0_Class4", + "cost": 365698, + "sku": null + }, + "128049526": { + "id": 128049526, + "category": "utility", + "name": "Hpt_MiningLaser_Fixed_Medium", + "cost": 22576, + "sku": null + }, + "128049525": { + "id": 128049525, + "category": "utility", + "name": "Hpt_MiningLaser_Fixed_Small", + "cost": 6800, + "sku": null + }, + "128049300": { + "id": 128049300, + "category": "module", + "name": "Type7_Armour_Grade3", + "cost": 15725026, + "sku": null + }, + "128049299": { + "id": 128049299, + "category": "module", + "name": "Type7_Armour_Grade2", + "cost": 6988900, + "sku": null + }, + "128049298": { + "id": 128049298, + "category": "module", + "name": "Type7_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049301": { + "id": 128049301, + "category": "module", + "name": "Type7_Armour_Mirrored", + "cost": 37163480, + "sku": null + }, + "128049302": { + "id": 128049302, + "category": "module", + "name": "Type7_Armour_Reactive", + "cost": 41182097, + "sku": null + }, + "128049282": { + "id": 128049282, + "category": "module", + "name": "CobraMkIII_Armour_Grade3", + "cost": 341746, + "sku": null + }, + "128049281": { + "id": 128049281, + "category": "module", + "name": "CobraMkIII_Armour_Grade2", + "cost": 151887, + "sku": null + }, + "128049280": { + "id": 128049280, + "category": "module", + "name": "CobraMkIII_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049283": { + "id": 128049283, + "category": "module", + "name": "CobraMkIII_Armour_Mirrored", + "cost": 797407, + "sku": null + }, + "128049284": { + "id": 128049284, + "category": "module", + "name": "CobraMkIII_Armour_Reactive", + "cost": 894995, + "sku": null + }, + "128049288": { + "id": 128049288, + "category": "module", + "name": "Type6_Armour_Grade3", + "cost": 941350, + "sku": null + }, + "128049287": { + "id": 128049287, + "category": "module", + "name": "Type6_Armour_Grade2", + "cost": 418378, + "sku": null + }, + "128049286": { + "id": 128049286, + "category": "module", + "name": "Type6_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049289": { + "id": 128049289, + "category": "module", + "name": "Type6_Armour_Mirrored", + "cost": 2224725, + "sku": null + }, + "128049290": { + "id": 128049290, + "category": "module", + "name": "Type6_Armour_Reactive", + "cost": 2465292, + "sku": null + }, + "128049252": { + "id": 128049252, + "category": "module", + "name": "SideWinder_Armour_Grade3", + "cost": 80320, + "sku": null + }, + "128049251": { + "id": 128049251, + "category": "module", + "name": "SideWinder_Armour_Grade2", + "cost": 25600, + "sku": null + }, + "128049250": { + "id": 128049250, + "category": "module", + "name": "SideWinder_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049253": { + "id": 128049253, + "category": "module", + "name": "SideWinder_Armour_Mirrored", + "cost": 132064, + "sku": null + }, + "128049254": { + "id": 128049254, + "category": "module", + "name": "SideWinder_Armour_Reactive", + "cost": 139424, + "sku": null + }, + "128049258": { + "id": 128049258, + "category": "module", + "name": "Eagle_Armour_Grade3", + "cost": 90048, + "sku": null + }, + "128049257": { + "id": 128049257, + "category": "module", + "name": "Eagle_Armour_Grade2", + "cost": 26880, + "sku": null + }, + "128049256": { + "id": 128049256, + "category": "module", + "name": "Eagle_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049259": { + "id": 128049259, + "category": "module", + "name": "Eagle_Armour_Mirrored", + "cost": 140089, + "sku": null + }, + "128049260": { + "id": 128049260, + "category": "module", + "name": "Eagle_Armour_Reactive", + "cost": 150393, + "sku": null + }, + "128049264": { + "id": 128049264, + "category": "module", + "name": "Hauler_Armour_Grade3", + "cost": 185047, + "sku": null + }, + "128049263": { + "id": 128049263, + "category": "module", + "name": "Hauler_Armour_Grade2", + "cost": 42176, + "sku": null + }, + "128049262": { + "id": 128049262, + "category": "module", + "name": "Hauler_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049265": { + "id": 128049265, + "category": "module", + "name": "Hauler_Armour_Mirrored", + "cost": 270295, + "sku": null + }, + "128049266": { + "id": 128049266, + "category": "module", + "name": "Hauler_Armour_Reactive", + "cost": 282421, + "sku": null + }, + "128049270": { + "id": 128049270, + "category": "module", + "name": "Adder_Armour_Grade3", + "cost": 79027, + "sku": null + }, + "128049269": { + "id": 128049269, + "category": "module", + "name": "Adder_Armour_Grade2", + "cost": 35123, + "sku": null + }, + "128049268": { + "id": 128049268, + "category": "module", + "name": "Adder_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049271": { + "id": 128049271, + "category": "module", + "name": "Adder_Armour_Mirrored", + "cost": 186767, + "sku": null + }, + "128049272": { + "id": 128049272, + "category": "module", + "name": "Adder_Armour_Reactive", + "cost": 206963, + "sku": null + }, + "128049336": { + "id": 128049336, + "category": "module", + "name": "Type9_Armour_Grade3", + "cost": 68900257, + "sku": null + }, + "128049335": { + "id": 128049335, + "category": "module", + "name": "Type9_Armour_Grade2", + "cost": 30622336, + "sku": null + }, + "128049334": { + "id": 128049334, + "category": "module", + "name": "Type9_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049337": { + "id": 128049337, + "category": "module", + "name": "Type9_Armour_Mirrored", + "cost": 162834275, + "sku": null + }, + "128049338": { + "id": 128049338, + "category": "module", + "name": "Type9_Armour_Reactive", + "cost": 180442119, + "sku": null + }, + "128662535": { + "id": 128662535, + "category": "module", + "name": "Int_StellarBodyDiscoveryScanner_Standard", + "cost": 1000, + "sku": null + }, + "128064338": { + "id": 128064338, + "category": "module", + "name": "Int_CargoRack_Size1_Class1", + "cost": 1000, + "sku": null + }, + "128666684": { + "id": 128666684, + "category": "module", + "name": "Int_Refinery_Size1_Class1", + "cost": 6000, + "sku": null + }, + "128666644": { + "id": 128666644, + "category": "module", + "name": "Int_FuelScoop_Size1_Class1", + "cost": 309, + "sku": null + }, + "128666704": { + "id": 128666704, + "category": "module", + "name": "Int_FSDInterdictor_Size1_Class1", + "cost": 12000, + "sku": null + }, + "128066532": { + "id": 128066532, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size1_Class1", + "cost": 600, + "sku": null + }, + "128064263": { + "id": 128064263, + "category": "module", + "name": "Int_ShieldGenerator_Size2_Class1", + "cost": 1978, + "sku": null + }, + "128064111": { + "id": 128064111, + "category": "module", + "name": "Int_Hyperdrive_Size3_Class4", + "cost": 169304, + "sku": null + }, + "128064106": { + "id": 128064106, + "category": "module", + "name": "Int_Hyperdrive_Size2_Class4", + "cost": 53408, + "sku": null + }, + "128064110": { + "id": 128064110, + "category": "module", + "name": "Int_Hyperdrive_Size3_Class3", + "cost": 56435, + "sku": null + }, + "128064105": { + "id": 128064105, + "category": "module", + "name": "Int_Hyperdrive_Size2_Class3", + "cost": 17803, + "sku": null + }, + "128064109": { + "id": 128064109, + "category": "module", + "name": "Int_Hyperdrive_Size3_Class2", + "cost": 18812, + "sku": null + }, + "128064104": { + "id": 128064104, + "category": "module", + "name": "Int_Hyperdrive_Size2_Class2", + "cost": 5934, + "sku": null + }, + "128064108": { + "id": 128064108, + "category": "module", + "name": "Int_Hyperdrive_Size3_Class1", + "cost": 6271, + "sku": null + }, + "128064103": { + "id": 128064103, + "category": "module", + "name": "Int_Hyperdrive_Size2_Class1", + "cost": 1978, + "sku": null + }, + "128064192": { + "id": 128064192, + "category": "module", + "name": "Int_PowerDistributor_Size3_Class5", + "cost": 158331, + "sku": null + }, + "128064182": { + "id": 128064182, + "category": "module", + "name": "Int_PowerDistributor_Size1_Class5", + "cost": 20195, + "sku": null + }, + "128064191": { + "id": 128064191, + "category": "module", + "name": "Int_PowerDistributor_Size3_Class4", + "cost": 63333, + "sku": null + }, + "128064181": { + "id": 128064181, + "category": "module", + "name": "Int_PowerDistributor_Size1_Class4", + "cost": 8078, + "sku": null + }, + "128064186": { + "id": 128064186, + "category": "module", + "name": "Int_PowerDistributor_Size2_Class4", + "cost": 22619, + "sku": null + }, + "128064190": { + "id": 128064190, + "category": "module", + "name": "Int_PowerDistributor_Size3_Class3", + "cost": 25333, + "sku": null + }, + "128064185": { + "id": 128064185, + "category": "module", + "name": "Int_PowerDistributor_Size2_Class3", + "cost": 9048, + "sku": null + }, + "128064180": { + "id": 128064180, + "category": "module", + "name": "Int_PowerDistributor_Size1_Class3", + "cost": 3231, + "sku": null + }, + "128064189": { + "id": 128064189, + "category": "module", + "name": "Int_PowerDistributor_Size3_Class2", + "cost": 10133, + "sku": null + }, + "128064179": { + "id": 128064179, + "category": "module", + "name": "Int_PowerDistributor_Size1_Class2", + "cost": 1293, + "sku": null + }, + "128064184": { + "id": 128064184, + "category": "module", + "name": "Int_PowerDistributor_Size2_Class2", + "cost": 3619, + "sku": null + }, + "128064188": { + "id": 128064188, + "category": "module", + "name": "Int_PowerDistributor_Size3_Class1", + "cost": 4053, + "sku": null + }, + "128064183": { + "id": 128064183, + "category": "module", + "name": "Int_PowerDistributor_Size2_Class1", + "cost": 1448, + "sku": null + }, + "128064178": { + "id": 128064178, + "category": "module", + "name": "Int_PowerDistributor_Size1_Class1", + "cost": 517, + "sku": null + }, + "128064345": { + "id": 128064345, + "category": "module", + "name": "Int_CargoRack_Size8_Class1", + "cost": 3829866, + "sku": null + }, + "128064344": { + "id": 128064344, + "category": "module", + "name": "Int_CargoRack_Size7_Class1", + "cost": 1178420, + "sku": null + }, + "128064343": { + "id": 128064343, + "category": "module", + "name": "Int_CargoRack_Size6_Class1", + "cost": 362591, + "sku": null + }, + "128064342": { + "id": 128064342, + "category": "module", + "name": "Int_CargoRack_Size5_Class1", + "cost": 111566, + "sku": null + }, + "128064341": { + "id": 128064341, + "category": "module", + "name": "Int_CargoRack_Size4_Class1", + "cost": 34328, + "sku": null + }, + "128064340": { + "id": 128064340, + "category": "module", + "name": "Int_CargoRack_Size3_Class1", + "cost": 10563, + "sku": null + }, + "128064339": { + "id": 128064339, + "category": "module", + "name": "Int_CargoRack_Size2_Class1", + "cost": 3250, + "sku": null + }, + "128064041": { + "id": 128064041, + "category": "module", + "name": "Int_Powerplant_Size3_Class4", + "cost": 169304, + "sku": null + }, + "128064036": { + "id": 128064036, + "category": "module", + "name": "Int_Powerplant_Size2_Class4", + "cost": 53408, + "sku": null + }, + "128064040": { + "id": 128064040, + "category": "module", + "name": "Int_Powerplant_Size3_Class3", + "cost": 56435, + "sku": null + }, + "128064035": { + "id": 128064035, + "category": "module", + "name": "Int_Powerplant_Size2_Class3", + "cost": 17803, + "sku": null + }, + "128064039": { + "id": 128064039, + "category": "module", + "name": "Int_Powerplant_Size3_Class2", + "cost": 18812, + "sku": null + }, + "128064034": { + "id": 128064034, + "category": "module", + "name": "Int_Powerplant_Size2_Class2", + "cost": 5934, + "sku": null + }, + "128064038": { + "id": 128064038, + "category": "module", + "name": "Int_Powerplant_Size3_Class1", + "cost": 6271, + "sku": null + }, + "128064033": { + "id": 128064033, + "category": "module", + "name": "Int_Powerplant_Size2_Class1", + "cost": 1978, + "sku": null + }, + "128663561": { + "id": 128663561, + "category": "module", + "name": "Int_StellarBodyDiscoveryScanner_Advanced", + "cost": 1545000, + "sku": null + }, + "128663560": { + "id": 128663560, + "category": "module", + "name": "Int_StellarBodyDiscoveryScanner_Intermediate", + "cost": 505000, + "sku": null + }, + "128666634": { + "id": 128666634, + "category": "module", + "name": "Int_DetailedSurfaceScanner_Tiny", + "cost": 250000, + "sku": null + }, + "128064197": { + "id": 128064197, + "category": "module", + "name": "Int_PowerDistributor_Size4_Class5", + "cost": 443328, + "sku": null + }, + "128064206": { + "id": 128064206, + "category": "module", + "name": "Int_PowerDistributor_Size6_Class4", + "cost": 1390275, + "sku": null + }, + "128064201": { + "id": 128064201, + "category": "module", + "name": "Int_PowerDistributor_Size5_Class4", + "cost": 496527, + "sku": null + }, + "128064196": { + "id": 128064196, + "category": "module", + "name": "Int_PowerDistributor_Size4_Class4", + "cost": 177331, + "sku": null + }, + "128064205": { + "id": 128064205, + "category": "module", + "name": "Int_PowerDistributor_Size6_Class3", + "cost": 556110, + "sku": null + }, + "128064204": { + "id": 128064204, + "category": "module", + "name": "Int_PowerDistributor_Size6_Class2", + "cost": 222444, + "sku": null + }, + "128064195": { + "id": 128064195, + "category": "module", + "name": "Int_PowerDistributor_Size4_Class3", + "cost": 70932, + "sku": null + }, + "128064199": { + "id": 128064199, + "category": "module", + "name": "Int_PowerDistributor_Size5_Class2", + "cost": 79444, + "sku": null + }, + "128064203": { + "id": 128064203, + "category": "module", + "name": "Int_PowerDistributor_Size6_Class1", + "cost": 88978, + "sku": null + }, + "128064194": { + "id": 128064194, + "category": "module", + "name": "Int_PowerDistributor_Size4_Class2", + "cost": 28373, + "sku": null + }, + "128064198": { + "id": 128064198, + "category": "module", + "name": "Int_PowerDistributor_Size5_Class1", + "cost": 31778, + "sku": null + }, + "128064193": { + "id": 128064193, + "category": "module", + "name": "Int_PowerDistributor_Size4_Class1", + "cost": 11349, + "sku": null + }, + "128064311": { + "id": 128064311, + "category": "module", + "name": "Int_ShieldCellBank_Size3_Class4", + "cost": 63333, + "sku": null + }, + "128064301": { + "id": 128064301, + "category": "module", + "name": "Int_ShieldCellBank_Size1_Class4", + "cost": 8078, + "sku": null + }, + "128064306": { + "id": 128064306, + "category": "module", + "name": "Int_ShieldCellBank_Size2_Class4", + "cost": 22619, + "sku": null + }, + "128064310": { + "id": 128064310, + "category": "module", + "name": "Int_ShieldCellBank_Size3_Class3", + "cost": 25333, + "sku": null + }, + "128064305": { + "id": 128064305, + "category": "module", + "name": "Int_ShieldCellBank_Size2_Class3", + "cost": 9048, + "sku": null + }, + "128064300": { + "id": 128064300, + "category": "module", + "name": "Int_ShieldCellBank_Size1_Class3", + "cost": 3231, + "sku": null + }, + "128064309": { + "id": 128064309, + "category": "module", + "name": "Int_ShieldCellBank_Size3_Class2", + "cost": 10133, + "sku": null + }, + "128064299": { + "id": 128064299, + "category": "module", + "name": "Int_ShieldCellBank_Size1_Class2", + "cost": 1293, + "sku": null + }, + "128064304": { + "id": 128064304, + "category": "module", + "name": "Int_ShieldCellBank_Size2_Class2", + "cost": 3619, + "sku": null + }, + "128064308": { + "id": 128064308, + "category": "module", + "name": "Int_ShieldCellBank_Size3_Class1", + "cost": 4053, + "sku": null + }, + "128064303": { + "id": 128064303, + "category": "module", + "name": "Int_ShieldCellBank_Size2_Class1", + "cost": 1448, + "sku": null + }, + "128064298": { + "id": 128064298, + "category": "module", + "name": "Int_ShieldCellBank_Size1_Class1", + "cost": 517, + "sku": null + }, + "128064353": { + "id": 128064353, + "category": "module", + "name": "Int_FuelTank_Size8_Class3", + "cost": 5428429, + "sku": null + }, + "128064352": { + "id": 128064352, + "category": "module", + "name": "Int_FuelTank_Size7_Class3", + "cost": 1780914, + "sku": null + }, + "128064351": { + "id": 128064351, + "category": "module", + "name": "Int_FuelTank_Size6_Class3", + "cost": 341577, + "sku": null + }, + "128064350": { + "id": 128064350, + "category": "module", + "name": "Int_FuelTank_Size5_Class3", + "cost": 97754, + "sku": null + }, + "128064349": { + "id": 128064349, + "category": "module", + "name": "Int_FuelTank_Size4_Class3", + "cost": 24734, + "sku": null + }, + "128064348": { + "id": 128064348, + "category": "module", + "name": "Int_FuelTank_Size3_Class3", + "cost": 7063, + "sku": null + }, + "128064347": { + "id": 128064347, + "category": "module", + "name": "Int_FuelTank_Size2_Class3", + "cost": 3750, + "sku": null + }, + "128064346": { + "id": 128064346, + "category": "module", + "name": "Int_FuelTank_Size1_Class3", + "cost": 1000, + "sku": null + }, + "128666723": { + "id": 128666723, + "category": "module", + "name": "Int_FSDInterdictor_Size4_Class5", + "cost": 21337344, + "sku": null + }, + "128666719": { + "id": 128666719, + "category": "module", + "name": "Int_FSDInterdictor_Size4_Class4", + "cost": 7112448, + "sku": null + }, + "128666715": { + "id": 128666715, + "category": "module", + "name": "Int_FSDInterdictor_Size4_Class3", + "cost": 2370816, + "sku": null + }, + "128666722": { + "id": 128666722, + "category": "module", + "name": "Int_FSDInterdictor_Size3_Class5", + "cost": 7620480, + "sku": null + }, + "128666718": { + "id": 128666718, + "category": "module", + "name": "Int_FSDInterdictor_Size3_Class4", + "cost": 2540160, + "sku": null + }, + "128666714": { + "id": 128666714, + "category": "module", + "name": "Int_FSDInterdictor_Size3_Class3", + "cost": 846720, + "sku": null + }, + "128666711": { + "id": 128666711, + "category": "module", + "name": "Int_FSDInterdictor_Size4_Class2", + "cost": 790272, + "sku": null + }, + "128666707": { + "id": 128666707, + "category": "module", + "name": "Int_FSDInterdictor_Size4_Class1", + "cost": 263424, + "sku": null + }, + "128666710": { + "id": 128666710, + "category": "module", + "name": "Int_FSDInterdictor_Size3_Class2", + "cost": 282240, + "sku": null + }, + "128666706": { + "id": 128666706, + "category": "module", + "name": "Int_FSDInterdictor_Size3_Class1", + "cost": 94080, + "sku": null + }, + "128066540": { + "id": 128066540, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size3_Class4", + "cost": 43200, + "sku": null + }, + "128066535": { + "id": 128066535, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size1_Class4", + "cost": 4800, + "sku": null + }, + "128066539": { + "id": 128066539, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size3_Class3", + "cost": 21600, + "sku": null + }, + "128066534": { + "id": 128066534, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size1_Class3", + "cost": 2400, + "sku": null + }, + "128066538": { + "id": 128066538, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size3_Class2", + "cost": 10800, + "sku": null + }, + "128066533": { + "id": 128066533, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size1_Class2", + "cost": 1200, + "sku": null + }, + "128066537": { + "id": 128066537, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size3_Class1", + "cost": 5400, + "sku": null + }, + "128666683": { + "id": 128666683, + "category": "module", + "name": "Int_FuelScoop_Size8_Class5", + "cost": 289042641, + "sku": null + }, + "128666675": { + "id": 128666675, + "category": "module", + "name": "Int_FuelScoop_Size8_Class4", + "cost": 72260660, + "sku": null + }, + "128666682": { + "id": 128666682, + "category": "module", + "name": "Int_FuelScoop_Size7_Class5", + "cost": 91180644, + "sku": null + }, + "128666674": { + "id": 128666674, + "category": "module", + "name": "Int_FuelScoop_Size7_Class4", + "cost": 22795161, + "sku": null + }, + "128666667": { + "id": 128666667, + "category": "module", + "name": "Int_FuelScoop_Size8_Class3", + "cost": 18065165, + "sku": null + }, + "128666666": { + "id": 128666666, + "category": "module", + "name": "Int_FuelScoop_Size7_Class3", + "cost": 5698790, + "sku": null + }, + "128666659": { + "id": 128666659, + "category": "module", + "name": "Int_FuelScoop_Size8_Class2", + "cost": 4516291, + "sku": null + }, + "128666658": { + "id": 128666658, + "category": "module", + "name": "Int_FuelScoop_Size7_Class2", + "cost": 1424698, + "sku": null + }, + "128666651": { + "id": 128666651, + "category": "module", + "name": "Int_FuelScoop_Size8_Class1", + "cost": 1083910, + "sku": null + }, + "128666650": { + "id": 128666650, + "category": "module", + "name": "Int_FuelScoop_Size7_Class1", + "cost": 341927, + "sku": null + }, + "128064151": { + "id": 128064151, + "category": "module", + "name": "Int_LifeSupport_Size3_Class4", + "cost": 63333, + "sku": null + }, + "128064141": { + "id": 128064141, + "category": "module", + "name": "Int_LifeSupport_Size1_Class4", + "cost": 8078, + "sku": null + }, + "128064146": { + "id": 128064146, + "category": "module", + "name": "Int_LifeSupport_Size2_Class4", + "cost": 22619, + "sku": null + }, + "128064150": { + "id": 128064150, + "category": "module", + "name": "Int_LifeSupport_Size3_Class3", + "cost": 25333, + "sku": null + }, + "128064145": { + "id": 128064145, + "category": "module", + "name": "Int_LifeSupport_Size2_Class3", + "cost": 9048, + "sku": null + }, + "128064140": { + "id": 128064140, + "category": "module", + "name": "Int_LifeSupport_Size1_Class3", + "cost": 3231, + "sku": null + }, + "128064149": { + "id": 128064149, + "category": "module", + "name": "Int_LifeSupport_Size3_Class2", + "cost": 10133, + "sku": null + }, + "128064139": { + "id": 128064139, + "category": "module", + "name": "Int_LifeSupport_Size1_Class2", + "cost": 1293, + "sku": null + }, + "128064144": { + "id": 128064144, + "category": "module", + "name": "Int_LifeSupport_Size2_Class2", + "cost": 3619, + "sku": null + }, + "128064148": { + "id": 128064148, + "category": "module", + "name": "Int_LifeSupport_Size3_Class1", + "cost": 4053, + "sku": null + }, + "128064143": { + "id": 128064143, + "category": "module", + "name": "Int_LifeSupport_Size2_Class1", + "cost": 1448, + "sku": null + }, + "128064138": { + "id": 128064138, + "category": "module", + "name": "Int_LifeSupport_Size1_Class1", + "cost": 517, + "sku": null + }, + "128667605": { + "id": 128667605, + "category": "module", + "name": "Int_Repairer_Size8_Class1", + "cost": 612220, + "sku": null + }, + "128667611": { + "id": 128667611, + "category": "module", + "name": "Int_Repairer_Size6_Class2", + "cost": 566870, + "sku": null + }, + "128667604": { + "id": 128667604, + "category": "module", + "name": "Int_Repairer_Size7_Class1", + "cost": 340122, + "sku": null + }, + "128667610": { + "id": 128667610, + "category": "module", + "name": "Int_Repairer_Size5_Class2", + "cost": 314928, + "sku": null + }, + "128667616": { + "id": 128667616, + "category": "module", + "name": "Int_Repairer_Size3_Class3", + "cost": 291600, + "sku": null + }, + "128667623": { + "id": 128667623, + "category": "module", + "name": "Int_Repairer_Size2_Class4", + "cost": 486000, + "sku": null + }, + "128667615": { + "id": 128667615, + "category": "module", + "name": "Int_Repairer_Size2_Class3", + "cost": 162000, + "sku": null + }, + "128667609": { + "id": 128667609, + "category": "module", + "name": "Int_Repairer_Size4_Class2", + "cost": 174960, + "sku": null + }, + "128667603": { + "id": 128667603, + "category": "module", + "name": "Int_Repairer_Size6_Class1", + "cost": 188957, + "sku": null + }, + "128667602": { + "id": 128667602, + "category": "module", + "name": "Int_Repairer_Size5_Class1", + "cost": 104976, + "sku": null + }, + "128667608": { + "id": 128667608, + "category": "module", + "name": "Int_Repairer_Size3_Class2", + "cost": 97200, + "sku": null + }, + "128667614": { + "id": 128667614, + "category": "module", + "name": "Int_Repairer_Size1_Class3", + "cost": 90000, + "sku": null + }, + "128667601": { + "id": 128667601, + "category": "module", + "name": "Int_Repairer_Size4_Class1", + "cost": 58320, + "sku": null + }, + "128064076": { + "id": 128064076, + "category": "module", + "name": "Int_Engine_Size3_Class4", + "cost": 169304, + "sku": null + }, + "128064071": { + "id": 128064071, + "category": "module", + "name": "Int_Engine_Size2_Class4", + "cost": 53408, + "sku": null + }, + "128064070": { + "id": 128064070, + "category": "module", + "name": "Int_Engine_Size2_Class3", + "cost": 17803, + "sku": null + }, + "128064074": { + "id": 128064074, + "category": "module", + "name": "Int_Engine_Size3_Class2", + "cost": 18812, + "sku": null + }, + "128064069": { + "id": 128064069, + "category": "module", + "name": "Int_Engine_Size2_Class2", + "cost": 5934, + "sku": null + }, + "128064073": { + "id": 128064073, + "category": "module", + "name": "Int_Engine_Size3_Class1", + "cost": 6271, + "sku": null + }, + "128064068": { + "id": 128064068, + "category": "module", + "name": "Int_Engine_Size2_Class1", + "cost": 1978, + "sku": null + }, + "128064337": { + "id": 128064337, + "category": "module", + "name": "Int_ShieldCellBank_Size8_Class5", + "cost": 27249391, + "sku": null + }, + "128064331": { + "id": 128064331, + "category": "module", + "name": "Int_ShieldCellBank_Size7_Class4", + "cost": 3892770, + "sku": null + }, + "128064335": { + "id": 128064335, + "category": "module", + "name": "Int_ShieldCellBank_Size8_Class3", + "cost": 4359903, + "sku": null + }, + "128064330": { + "id": 128064330, + "category": "module", + "name": "Int_ShieldCellBank_Size7_Class3", + "cost": 1557108, + "sku": null + }, + "128064334": { + "id": 128064334, + "category": "module", + "name": "Int_ShieldCellBank_Size8_Class2", + "cost": 1743961, + "sku": null + }, + "128064329": { + "id": 128064329, + "category": "module", + "name": "Int_ShieldCellBank_Size7_Class2", + "cost": 622843, + "sku": null + }, + "128064333": { + "id": 128064333, + "category": "module", + "name": "Int_ShieldCellBank_Size8_Class1", + "cost": 697584, + "sku": null + }, + "128064328": { + "id": 128064328, + "category": "module", + "name": "Int_ShieldCellBank_Size7_Class1", + "cost": 249137, + "sku": null + }, + "128064177": { + "id": 128064177, + "category": "module", + "name": "Int_LifeSupport_Size8_Class5", + "cost": 27249391, + "sku": null + }, + "128064172": { + "id": 128064172, + "category": "module", + "name": "Int_LifeSupport_Size7_Class5", + "cost": 9731925, + "sku": null + }, + "128064171": { + "id": 128064171, + "category": "module", + "name": "Int_LifeSupport_Size7_Class4", + "cost": 3892770, + "sku": null + }, + "128064175": { + "id": 128064175, + "category": "module", + "name": "Int_LifeSupport_Size8_Class3", + "cost": 4359903, + "sku": null + }, + "128064170": { + "id": 128064170, + "category": "module", + "name": "Int_LifeSupport_Size7_Class3", + "cost": 1557108, + "sku": null + }, + "128064174": { + "id": 128064174, + "category": "module", + "name": "Int_LifeSupport_Size8_Class2", + "cost": 1743961, + "sku": null + }, + "128064169": { + "id": 128064169, + "category": "module", + "name": "Int_LifeSupport_Size7_Class2", + "cost": 622843, + "sku": null + }, + "128064173": { + "id": 128064173, + "category": "module", + "name": "Int_LifeSupport_Size8_Class1", + "cost": 697584, + "sku": null + }, + "128064168": { + "id": 128064168, + "category": "module", + "name": "Int_LifeSupport_Size7_Class1", + "cost": 249137, + "sku": null + }, + "128066551": { + "id": 128066551, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size7_Class5", + "cost": 6998400, + "sku": null + }, + "128066545": { + "id": 128066545, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size5_Class4", + "cost": 388800, + "sku": null + }, + "128066549": { + "id": 128066549, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size7_Class3", + "cost": 1749600, + "sku": null + }, + "128066548": { + "id": 128066548, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size7_Class2", + "cost": 874800, + "sku": null + }, + "128066547": { + "id": 128066547, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size7_Class1", + "cost": 437400, + "sku": null + }, + "128066543": { + "id": 128066543, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size5_Class2", + "cost": 97200, + "sku": null + }, + "128066542": { + "id": 128066542, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size5_Class1", + "cost": 48600, + "sku": null + }, + "128064271": { + "id": 128064271, + "category": "module", + "name": "Int_ShieldGenerator_Size3_Class4", + "cost": 169304, + "sku": null + }, + "128064266": { + "id": 128064266, + "category": "module", + "name": "Int_ShieldGenerator_Size2_Class4", + "cost": 53408, + "sku": null + }, + "128064270": { + "id": 128064270, + "category": "module", + "name": "Int_ShieldGenerator_Size3_Class3", + "cost": 56435, + "sku": null + }, + "128064265": { + "id": 128064265, + "category": "module", + "name": "Int_ShieldGenerator_Size2_Class3", + "cost": 17803, + "sku": null + }, + "128064269": { + "id": 128064269, + "category": "module", + "name": "Int_ShieldGenerator_Size3_Class2", + "cost": 18812, + "sku": null + }, + "128064264": { + "id": 128064264, + "category": "module", + "name": "Int_ShieldGenerator_Size2_Class2", + "cost": 5934, + "sku": null + }, + "128064268": { + "id": 128064268, + "category": "module", + "name": "Int_ShieldGenerator_Size3_Class1", + "cost": 6271, + "sku": null + }, + "128671252": { + "id": 128671252, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size1_Class4", + "cost": 4800, + "sku": null + }, + "128671264": { + "id": 128671264, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size7_Class1", + "cost": 437400, + "sku": null + }, + "128671260": { + "id": 128671260, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size5_Class2", + "cost": 97200, + "sku": null + }, + "128671256": { + "id": 128671256, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size3_Class3", + "cost": 21600, + "sku": null + }, + "128671251": { + "id": 128671251, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size1_Class3", + "cost": 2400, + "sku": null + }, + "128671259": { + "id": 128671259, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size5_Class1", + "cost": 48600, + "sku": null + }, + "128671255": { + "id": 128671255, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size3_Class2", + "cost": 10800, + "sku": null + }, + "128671250": { + "id": 128671250, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size1_Class2", + "cost": 1200, + "sku": null + }, + "128671254": { + "id": 128671254, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size3_Class1", + "cost": 5400, + "sku": null + }, + "128671249": { + "id": 128671249, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size1_Class1", + "cost": 600, + "sku": null + }, + "128064067": { + "id": 128064067, + "category": "module", + "name": "Int_Powerplant_Size8_Class5", + "cost": 162586486, + "sku": null + }, + "128064062": { + "id": 128064062, + "category": "module", + "name": "Int_Powerplant_Size7_Class5", + "cost": 51289112, + "sku": null + }, + "128064066": { + "id": 128064066, + "category": "module", + "name": "Int_Powerplant_Size8_Class4", + "cost": 54195495, + "sku": null + }, + "128064065": { + "id": 128064065, + "category": "module", + "name": "Int_Powerplant_Size8_Class3", + "cost": 18065165, + "sku": null + }, + "128064060": { + "id": 128064060, + "category": "module", + "name": "Int_Powerplant_Size7_Class3", + "cost": 5698790, + "sku": null + }, + "128064064": { + "id": 128064064, + "category": "module", + "name": "Int_Powerplant_Size8_Class2", + "cost": 6021722, + "sku": null + }, + "128064059": { + "id": 128064059, + "category": "module", + "name": "Int_Powerplant_Size7_Class2", + "cost": 1899597, + "sku": null + }, + "128064063": { + "id": 128064063, + "category": "module", + "name": "Int_Powerplant_Size8_Class1", + "cost": 2007241, + "sku": null + }, + "128064058": { + "id": 128064058, + "category": "module", + "name": "Int_Powerplant_Size7_Class1", + "cost": 633199, + "sku": null + }, + "128064097": { + "id": 128064097, + "category": "module", + "name": "Int_Engine_Size7_Class5", + "cost": 51289112, + "sku": null + }, + "128064101": { + "id": 128064101, + "category": "module", + "name": "Int_Engine_Size8_Class4", + "cost": 54195495, + "sku": null + }, + "128064096": { + "id": 128064096, + "category": "module", + "name": "Int_Engine_Size7_Class4", + "cost": 17096371, + "sku": null + }, + "128064100": { + "id": 128064100, + "category": "module", + "name": "Int_Engine_Size8_Class3", + "cost": 18065165, + "sku": null + }, + "128064095": { + "id": 128064095, + "category": "module", + "name": "Int_Engine_Size7_Class3", + "cost": 5698790, + "sku": null + }, + "128064099": { + "id": 128064099, + "category": "module", + "name": "Int_Engine_Size8_Class2", + "cost": 6021722, + "sku": null + }, + "128064094": { + "id": 128064094, + "category": "module", + "name": "Int_Engine_Size7_Class2", + "cost": 1899597, + "sku": null + }, + "128064098": { + "id": 128064098, + "category": "module", + "name": "Int_Engine_Size8_Class1", + "cost": 2007241, + "sku": null + }, + "128064093": { + "id": 128064093, + "category": "module", + "name": "Int_Engine_Size7_Class1", + "cost": 633199, + "sku": null + }, + "128064136": { + "id": 128064136, + "category": "module", + "name": "Int_Hyperdrive_Size8_Class4", + "cost": 54195495, + "sku": null + }, + "128064135": { + "id": 128064135, + "category": "module", + "name": "Int_Hyperdrive_Size8_Class3", + "cost": 18065165, + "sku": null + }, + "128064130": { + "id": 128064130, + "category": "module", + "name": "Int_Hyperdrive_Size7_Class3", + "cost": 5698790, + "sku": null + }, + "128064134": { + "id": 128064134, + "category": "module", + "name": "Int_Hyperdrive_Size8_Class2", + "cost": 6021722, + "sku": null + }, + "128064129": { + "id": 128064129, + "category": "module", + "name": "Int_Hyperdrive_Size7_Class2", + "cost": 1899597, + "sku": null + }, + "128064133": { + "id": 128064133, + "category": "module", + "name": "Int_Hyperdrive_Size8_Class1", + "cost": 2007241, + "sku": null + }, + "128064128": { + "id": 128064128, + "category": "module", + "name": "Int_Hyperdrive_Size7_Class1", + "cost": 633199, + "sku": null + }, + "128064242": { + "id": 128064242, + "category": "module", + "name": "Int_Sensors_Size5_Class5", + "cost": 1241317, + "sku": null + }, + "128064237": { + "id": 128064237, + "category": "module", + "name": "Int_Sensors_Size4_Class5", + "cost": 443328, + "sku": null + }, + "128064246": { + "id": 128064246, + "category": "module", + "name": "Int_Sensors_Size6_Class4", + "cost": 1390275, + "sku": null + }, + "128064241": { + "id": 128064241, + "category": "module", + "name": "Int_Sensors_Size5_Class4", + "cost": 496527, + "sku": null + }, + "128064236": { + "id": 128064236, + "category": "module", + "name": "Int_Sensors_Size4_Class4", + "cost": 177331, + "sku": null + }, + "128064245": { + "id": 128064245, + "category": "module", + "name": "Int_Sensors_Size6_Class3", + "cost": 556110, + "sku": null + }, + "128064244": { + "id": 128064244, + "category": "module", + "name": "Int_Sensors_Size6_Class2", + "cost": 222444, + "sku": null + }, + "128064235": { + "id": 128064235, + "category": "module", + "name": "Int_Sensors_Size4_Class3", + "cost": 70932, + "sku": null + }, + "128671262": { + "id": 128671262, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size5_Class4", + "cost": 388800, + "sku": null + }, + "128671257": { + "id": 128671257, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size3_Class4", + "cost": 43200, + "sku": null + }, + "128671265": { + "id": 128671265, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size7_Class2", + "cost": 874800, + "sku": null + }, + "128671261": { + "id": 128671261, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size5_Class3", + "cost": 194400, + "sku": null + }, + "128064292": { + "id": 128064292, + "category": "module", + "name": "Int_ShieldGenerator_Size7_Class5", + "cost": 51289112, + "sku": null + }, + "128064291": { + "id": 128064291, + "category": "module", + "name": "Int_ShieldGenerator_Size7_Class4", + "cost": 17096371, + "sku": null + }, + "128064295": { + "id": 128064295, + "category": "module", + "name": "Int_ShieldGenerator_Size8_Class3", + "cost": 18065165, + "sku": null + }, + "128064294": { + "id": 128064294, + "category": "module", + "name": "Int_ShieldGenerator_Size8_Class2", + "cost": 6021722, + "sku": null + }, + "128064289": { + "id": 128064289, + "category": "module", + "name": "Int_ShieldGenerator_Size7_Class2", + "cost": 1899597, + "sku": null + }, + "128064293": { + "id": 128064293, + "category": "module", + "name": "Int_ShieldGenerator_Size8_Class1", + "cost": 2007241, + "sku": null + }, + "128064288": { + "id": 128064288, + "category": "module", + "name": "Int_ShieldGenerator_Size7_Class1", + "cost": 633199, + "sku": null + }, + "128064232": { + "id": 128064232, + "category": "module", + "name": "Int_Sensors_Size3_Class5", + "cost": 158331, + "sku": null + }, + "128064222": { + "id": 128064222, + "category": "module", + "name": "Int_Sensors_Size1_Class5", + "cost": 20195, + "sku": null + }, + "128064231": { + "id": 128064231, + "category": "module", + "name": "Int_Sensors_Size3_Class4", + "cost": 63333, + "sku": null + }, + "128064221": { + "id": 128064221, + "category": "module", + "name": "Int_Sensors_Size1_Class4", + "cost": 8078, + "sku": null + }, + "128064226": { + "id": 128064226, + "category": "module", + "name": "Int_Sensors_Size2_Class4", + "cost": 22619, + "sku": null + }, + "128064230": { + "id": 128064230, + "category": "module", + "name": "Int_Sensors_Size3_Class3", + "cost": 25333, + "sku": null + }, + "128064225": { + "id": 128064225, + "category": "module", + "name": "Int_Sensors_Size2_Class3", + "cost": 9048, + "sku": null + }, + "128666681": { + "id": 128666681, + "category": "module", + "name": "Int_FuelScoop_Size6_Class5", + "cost": 28763610, + "sku": null + }, + "128666673": { + "id": 128666673, + "category": "module", + "name": "Int_FuelScoop_Size6_Class4", + "cost": 7190903, + "sku": null + }, + "128666665": { + "id": 128666665, + "category": "module", + "name": "Int_FuelScoop_Size6_Class3", + "cost": 1797726, + "sku": null + }, + "128666672": { + "id": 128666672, + "category": "module", + "name": "Int_FuelScoop_Size5_Class4", + "cost": 2268424, + "sku": null + }, + "128666679": { + "id": 128666679, + "category": "module", + "name": "Int_FuelScoop_Size4_Class5", + "cost": 2862364, + "sku": null + }, + "128666671": { + "id": 128666671, + "category": "module", + "name": "Int_FuelScoop_Size4_Class4", + "cost": 715591, + "sku": null + }, + "128064327": { + "id": 128064327, + "category": "module", + "name": "Int_ShieldCellBank_Size6_Class5", + "cost": 3475688, + "sku": null + }, + "128064317": { + "id": 128064317, + "category": "module", + "name": "Int_ShieldCellBank_Size4_Class5", + "cost": 443328, + "sku": null + }, + "128064326": { + "id": 128064326, + "category": "module", + "name": "Int_ShieldCellBank_Size6_Class4", + "cost": 1390275, + "sku": null + }, + "128064321": { + "id": 128064321, + "category": "module", + "name": "Int_ShieldCellBank_Size5_Class4", + "cost": 496527, + "sku": null + }, + "128064316": { + "id": 128064316, + "category": "module", + "name": "Int_ShieldCellBank_Size4_Class4", + "cost": 177331, + "sku": null + }, + "128064324": { + "id": 128064324, + "category": "module", + "name": "Int_ShieldCellBank_Size6_Class2", + "cost": 222444, + "sku": null + }, + "128668546": { + "id": 128668546, + "category": "module", + "name": "Int_HullReinforcement_Size5_Class2", + "cost": 450000, + "sku": null + }, + "128668544": { + "id": 128668544, + "category": "module", + "name": "Int_HullReinforcement_Size4_Class2", + "cost": 195000, + "sku": null + }, + "128668542": { + "id": 128668542, + "category": "module", + "name": "Int_HullReinforcement_Size3_Class2", + "cost": 84000, + "sku": null + }, + "128668540": { + "id": 128668540, + "category": "module", + "name": "Int_HullReinforcement_Size2_Class2", + "cost": 36000, + "sku": null + }, + "128671247": { + "id": 128671247, + "category": "module", + "name": "Int_DroneControl_Collection_Size7_Class4", + "cost": 3499200, + "sku": null + }, + "128671242": { + "id": 128671242, + "category": "module", + "name": "Int_DroneControl_Collection_Size5_Class4", + "cost": 388800, + "sku": null + }, + "128671246": { + "id": 128671246, + "category": "module", + "name": "Int_DroneControl_Collection_Size7_Class3", + "cost": 1749600, + "sku": null + }, + "128671237": { + "id": 128671237, + "category": "module", + "name": "Int_DroneControl_Collection_Size3_Class4", + "cost": 43200, + "sku": null + }, + "128671245": { + "id": 128671245, + "category": "module", + "name": "Int_DroneControl_Collection_Size7_Class2", + "cost": 874800, + "sku": null + }, + "128064052": { + "id": 128064052, + "category": "module", + "name": "Int_Powerplant_Size5_Class5", + "cost": 5103953, + "sku": null + }, + "128064047": { + "id": 128064047, + "category": "module", + "name": "Int_Powerplant_Size4_Class5", + "cost": 1610080, + "sku": null + }, + "128064051": { + "id": 128064051, + "category": "module", + "name": "Int_Powerplant_Size5_Class4", + "cost": 1701318, + "sku": null + }, + "128064055": { + "id": 128064055, + "category": "module", + "name": "Int_Powerplant_Size6_Class3", + "cost": 1797726, + "sku": null + }, + "128064162": { + "id": 128064162, + "category": "module", + "name": "Int_LifeSupport_Size5_Class5", + "cost": 1241317, + "sku": null + }, + "128064166": { + "id": 128064166, + "category": "module", + "name": "Int_LifeSupport_Size6_Class4", + "cost": 1390275, + "sku": null + }, + "128064161": { + "id": 128064161, + "category": "module", + "name": "Int_LifeSupport_Size5_Class4", + "cost": 496527, + "sku": null + }, + "128668536": { + "id": 128668536, + "category": "module", + "name": "Hpt_ShieldBooster_Size0_Class5", + "cost": 281000, + "sku": null + }, + "128668535": { + "id": 128668535, + "category": "module", + "name": "Hpt_ShieldBooster_Size0_Class4", + "cost": 122000, + "sku": null + }, + "128668534": { + "id": 128668534, + "category": "module", + "name": "Hpt_ShieldBooster_Size0_Class3", + "cost": 53000, + "sku": null + }, + "128668545": { + "id": 128668545, + "category": "module", + "name": "Int_HullReinforcement_Size5_Class1", + "cost": 150000, + "sku": null + }, + "128668543": { + "id": 128668543, + "category": "module", + "name": "Int_HullReinforcement_Size4_Class1", + "cost": 65000, + "sku": null + }, + "128064087": { + "id": 128064087, + "category": "module", + "name": "Int_Engine_Size5_Class5", + "cost": 5103953, + "sku": null + }, + "128667727": { + "id": 128667727, + "category": "paintjob", + "name": "paintjob_CobraMkiii_Default_52", + "cost": 0, + "sku": null + }, + "128667729": { + "id": 128667729, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Faction1_01", + "cost": 0, + "sku": null + }, + "128667730": { + "id": 128667730, + "category": "paintjob", + "name": "PaintJob_Eagle_Faction1_01", + "cost": 0, + "sku": null + }, + "128667731": { + "id": 128667731, + "category": "paintjob", + "name": "PaintJob_FedDropship_Faction1_01", + "cost": 0, + "sku": null + }, + "128667732": { + "id": 128667732, + "category": "paintjob", + "name": "PaintJob_SideWinder_Faction1_01", + "cost": 0, + "sku": null + }, + "128667733": { + "id": 128667733, + "category": "paintjob", + "name": "PaintJob_Viper_Faction1_01", + "cost": 0, + "sku": null + }, + "128667734": { + "id": 128667734, + "category": "paintjob", + "name": "PaintJob_Python_Faction1_01", + "cost": 0, + "sku": null + }, + "128066428": { + "id": 128066428, + "category": "paintjob", + "name": "paintjob_cobramkiii_wireframe_01", + "cost": 0, + "sku": null + }, + "128667638": { + "id": 128667638, + "category": "paintjob", + "name": "PaintJob_Sidewinder_Merc", + "cost": 0, + "sku": null + }, + "128667639": { + "id": 128667639, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Merc", + "cost": 0, + "sku": null + }, + "128066405": { + "id": 128066405, + "category": "paintjob", + "name": "paintjob_eagle_stripe1_02", + "cost": 0, + "sku": null + }, + "128066406": { + "id": 128066406, + "category": "paintjob", + "name": "paintjob_eagle_doublestripe_01", + "cost": 0, + "sku": null + }, + "128066416": { + "id": 128066416, + "category": "paintjob", + "name": "paintjob_eagle_thirds_01", + "cost": 0, + "sku": null + }, + "128066419": { + "id": 128066419, + "category": "paintjob", + "name": "paintjob_eagle_stripe1_03", + "cost": 0, + "sku": null + }, + "128668019": { + "id": 128668019, + "category": "paintjob", + "name": "PaintJob_Eagle_Crimson", + "cost": 0, + "sku": null + }, + "128066420": { + "id": 128066420, + "category": "paintjob", + "name": "paintjob_eagle_thirds_02", + "cost": 0, + "sku": null + }, + "128066430": { + "id": 128066430, + "category": "paintjob", + "name": "paintjob_eagle_stripe1_01", + "cost": 0, + "sku": null + }, + "128066436": { + "id": 128066436, + "category": "paintjob", + "name": "paintjob_eagle_camo_03", + "cost": 0, + "sku": null + }, + "128066437": { + "id": 128066437, + "category": "paintjob", + "name": "paintjob_eagle_thirds_03", + "cost": 0, + "sku": null + }, + "128066441": { + "id": 128066441, + "category": "paintjob", + "name": "paintjob_eagle_camo_02", + "cost": 0, + "sku": null + }, + "128066449": { + "id": 128066449, + "category": "paintjob", + "name": "paintjob_eagle_doublestripe_02", + "cost": 0, + "sku": null + }, + "128066453": { + "id": 128066453, + "category": "paintjob", + "name": "paintjob_eagle_doublestripe_03", + "cost": 0, + "sku": null + }, + "128066456": { + "id": 128066456, + "category": "paintjob", + "name": "paintjob_eagle_camo_01", + "cost": 0, + "sku": null + }, + "128066404": { + "id": 128066404, + "category": "paintjob", + "name": "paintjob_sidewinder_default_02", + "cost": 0, + "sku": null + }, + "128066408": { + "id": 128066408, + "category": "paintjob", + "name": "paintjob_sidewinder_default_03", + "cost": 0, + "sku": null + }, + "128066414": { + "id": 128066414, + "category": "paintjob", + "name": "paintjob_sidewinder_doublestripe_08", + "cost": 0, + "sku": null + }, + "128066423": { + "id": 128066423, + "category": "paintjob", + "name": "paintjob_sidewinder_doublestripe_05", + "cost": 0, + "sku": null + }, + "128066431": { + "id": 128066431, + "category": "paintjob", + "name": "paintjob_sidewinder_thirds_07", + "cost": 0, + "sku": null + }, + "128066432": { + "id": 128066432, + "category": "paintjob", + "name": "paintjob_sidewinder_thirds_01", + "cost": 0, + "sku": null + }, + "128066433": { + "id": 128066433, + "category": "paintjob", + "name": "paintjob_sidewinder_doublestripe_07", + "cost": 0, + "sku": null + }, + "128066440": { + "id": 128066440, + "category": "paintjob", + "name": "paintjob_sidewinder_camo_01", + "cost": 0, + "sku": null + }, + "128066444": { + "id": 128066444, + "category": "paintjob", + "name": "paintjob_sidewinder_thirds_06", + "cost": 0, + "sku": null + }, + "128066447": { + "id": 128066447, + "category": "paintjob", + "name": "paintjob_sidewinder_camo_03", + "cost": 0, + "sku": null + }, + "128066448": { + "id": 128066448, + "category": "paintjob", + "name": "paintjob_sidewinder_default_04", + "cost": 0, + "sku": null + }, + "128066454": { + "id": 128066454, + "category": "paintjob", + "name": "paintjob_sidewinder_camo_02", + "cost": 0, + "sku": null + }, + "128667667": { + "id": 128667667, + "category": "paintjob", + "name": "PaintJob_Viper_Merc", + "cost": 0, + "sku": null + }, + "128666726": { + "id": 128666726, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Camo1_02", + "cost": 0, + "sku": null + }, + "128066407": { + "id": 128066407, + "category": "paintjob", + "name": "paintjob_viper_flag_switzerland_01", + "cost": 0, + "sku": null + }, + "128666727": { + "id": 128666727, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Camo2_03", + "cost": 0, + "sku": null + }, + "128666728": { + "id": 128666728, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Stripe1_02", + "cost": 0, + "sku": null + }, + "128066409": { + "id": 128066409, + "category": "paintjob", + "name": "paintjob_viper_flag_belgium_01", + "cost": 0, + "sku": null + }, + "128666729": { + "id": 128666729, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Stripe1_03", + "cost": 0, + "sku": null + }, + "128066410": { + "id": 128066410, + "category": "paintjob", + "name": "paintjob_viper_flag_australia_01", + "cost": 0, + "sku": null + }, + "128666730": { + "id": 128666730, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Stripe2_02", + "cost": 0, + "sku": null + }, + "128066411": { + "id": 128066411, + "category": "paintjob", + "name": "paintjob_viper_default_01", + "cost": 0, + "sku": null + }, + "128666731": { + "id": 128666731, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Stripe2_03", + "cost": 0, + "sku": null + }, + "128066412": { + "id": 128066412, + "category": "paintjob", + "name": "paintjob_viper_stripe2_02", + "cost": 0, + "sku": null + }, + "128666732": { + "id": 128666732, + "category": "paintjob", + "name": "PaintJob_Hauler_Doublestripe_01", + "cost": 0, + "sku": null + }, + "128066413": { + "id": 128066413, + "category": "paintjob", + "name": "paintjob_viper_flag_austria_01", + "cost": 0, + "sku": null + }, + "128666733": { + "id": 128666733, + "category": "paintjob", + "name": "PaintJob_Hauler_Doublestripe_02", + "cost": 0, + "sku": null + }, + "128666734": { + "id": 128666734, + "category": "paintjob", + "name": "PaintJob_Hauler_Doublestripe_03", + "cost": 0, + "sku": null + }, + "128066415": { + "id": 128066415, + "category": "paintjob", + "name": "paintjob_viper_stripe1_01", + "cost": 0, + "sku": null + }, + "128666735": { + "id": 128666735, + "category": "paintjob", + "name": "PaintJob_Hauler_Stripe1_01", + "cost": 0, + "sku": null + }, + "128666736": { + "id": 128666736, + "category": "paintjob", + "name": "PaintJob_Hauler_Stripe1_02", + "cost": 0, + "sku": null + }, + "128066417": { + "id": 128066417, + "category": "paintjob", + "name": "paintjob_viper_flag_spain_01", + "cost": 0, + "sku": null + }, + "128666737": { + "id": 128666737, + "category": "paintjob", + "name": "PaintJob_Hauler_Stripe1_03", + "cost": 0, + "sku": null + }, + "128066418": { + "id": 128066418, + "category": "paintjob", + "name": "paintjob_viper_stripe1_02", + "cost": 0, + "sku": null + }, + "128666738": { + "id": 128666738, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Hotrod_01", + "cost": 0, + "sku": null + }, + "128666739": { + "id": 128666739, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Hotrod_03", + "cost": 0, + "sku": null + }, + "128666740": { + "id": 128666740, + "category": "paintjob", + "name": "PaintJob_Eagle_Hotrod_01", + "cost": 0, + "sku": null + }, + "128066421": { + "id": 128066421, + "category": "paintjob", + "name": "paintjob_viper_flag_denmark_01", + "cost": 0, + "sku": null + }, + "128666741": { + "id": 128666741, + "category": "paintjob", + "name": "PaintJob_Eagle_Hotrod_03", + "cost": 0, + "sku": null + }, + "128066422": { + "id": 128066422, + "category": "paintjob", + "name": "paintjob_viper_police_federation_01", + "cost": 0, + "sku": null + }, + "128666742": { + "id": 128666742, + "category": "paintjob", + "name": "PaintJob_Sidewinder_Hotrod_01", + "cost": 0, + "sku": null + }, + "128666743": { + "id": 128666743, + "category": "paintjob", + "name": "PaintJob_Sidewinder_Hotrod_03", + "cost": 0, + "sku": null + }, + "128066424": { + "id": 128066424, + "category": "paintjob", + "name": "paintjob_viper_flag_newzealand_01", + "cost": 0, + "sku": null + }, + "128666744": { + "id": 128666744, + "category": "paintjob", + "name": "PaintJob_Viper_Stripe2_51", + "cost": 0, + "sku": null + }, + "128066425": { + "id": 128066425, + "category": "paintjob", + "name": "paintjob_viper_flag_italy_01", + "cost": 0, + "sku": null + }, + "128666745": { + "id": 128666745, + "category": "paintjob", + "name": "PaintJob_Viper_Stripe2_52", + "cost": 0, + "sku": null + }, + "128066426": { + "id": 128066426, + "category": "paintjob", + "name": "paintjob_viper_stripe2_04", + "cost": 0, + "sku": null + }, + "128066427": { + "id": 128066427, + "category": "paintjob", + "name": "paintjob_viper_police_independent_01", + "cost": 0, + "sku": null + }, + "128066429": { + "id": 128066429, + "category": "paintjob", + "name": "paintjob_viper_default_03", + "cost": 0, + "sku": null + }, + "128066434": { + "id": 128066434, + "category": "paintjob", + "name": "paintjob_viper_flag_uk_01", + "cost": 0, + "sku": null + }, + "128066435": { + "id": 128066435, + "category": "paintjob", + "name": "paintjob_viper_flag_germany_01", + "cost": 0, + "sku": null + }, + "128066438": { + "id": 128066438, + "category": "paintjob", + "name": "paintjob_viper_flag_netherlands_01", + "cost": 0, + "sku": null + }, + "128066439": { + "id": 128066439, + "category": "paintjob", + "name": "paintjob_viper_flag_usa_01", + "cost": 0, + "sku": null + }, + "128066442": { + "id": 128066442, + "category": "paintjob", + "name": "paintjob_viper_flag_russia_01", + "cost": 0, + "sku": null + }, + "128066443": { + "id": 128066443, + "category": "paintjob", + "name": "paintjob_viper_flag_canada_01", + "cost": 0, + "sku": null + }, + "128066445": { + "id": 128066445, + "category": "paintjob", + "name": "paintjob_viper_flag_sweden_01", + "cost": 0, + "sku": null + }, + "128066446": { + "id": 128066446, + "category": "paintjob", + "name": "paintjob_viper_flag_poland_01", + "cost": 0, + "sku": null + }, + "128066450": { + "id": 128066450, + "category": "paintjob", + "name": "paintjob_viper_flag_finland_01", + "cost": 0, + "sku": null + }, + "128066451": { + "id": 128066451, + "category": "paintjob", + "name": "paintjob_viper_flag_france_01", + "cost": 0, + "sku": null + }, + "128066452": { + "id": 128066452, + "category": "paintjob", + "name": "paintjob_viper_police_empire_01", + "cost": 0, + "sku": null + }, + "128066455": { + "id": 128066455, + "category": "paintjob", + "name": "paintjob_viper_flag_norway_01", + "cost": 0, + "sku": null + }, + "128667720": { + "id": 128667720, + "category": "paintjob", + "name": "PaintJob_Asp_Default_02", + "cost": 0, + "sku": null + }, + "128667721": { + "id": 128667721, + "category": "paintjob", + "name": "PaintJob_Asp_Default_03", + "cost": 0, + "sku": null + }, + "128667722": { + "id": 128667722, + "category": "paintjob", + "name": "PaintJob_Asp_Default_04", + "cost": 0, + "sku": null + }, + "128667723": { + "id": 128667723, + "category": "paintjob", + "name": "PaintJob_Asp_Faction1_01", + "cost": 0, + "sku": null + }, + "128667724": { + "id": 128667724, + "category": "paintjob", + "name": "PaintJob_Asp_Stripe1_02", + "cost": 0, + "sku": null + }, + "128667725": { + "id": 128667725, + "category": "paintjob", + "name": "PaintJob_Asp_Stripe1_03", + "cost": 0, + "sku": null + }, + "128667726": { + "id": 128667726, + "category": "paintjob", + "name": "PaintJob_Asp_Stripe1_04", + "cost": 0, + "sku": null + }, + "128667655": { + "id": 128667655, + "category": "decal", + "name": "Decal_Skull3", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_MERCENARY_DECAL_1000" + }, + "128667736": { + "id": 128667736, + "category": "decal", + "name": "Decal_Combat_Mostly_Harmless", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_COMBAT_DECAL_1001" + }, + "128667737": { + "id": 128667737, + "category": "decal", + "name": "Decal_Combat_Novice", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_COMBAT_DECAL_1002" + }, + "128667738": { + "id": 128667738, + "category": "decal", + "name": "Decal_Combat_Competent", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_COMBAT_DECAL_1003" + }, + "128667744": { + "id": 128667744, + "category": "decal", + "name": "Decal_Trade_Mostly_Penniless", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_TRADE_DECAL_1001" + }, + "128667745": { + "id": 128667745, + "category": "decal", + "name": "Decal_Trade_Peddler", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_TRADE_DECAL_1002" + }, + "128667746": { + "id": 128667746, + "category": "decal", + "name": "Decal_Trade_Dealer", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_TRADE_DECAL_1003" + }, + "128667747": { + "id": 128667747, + "category": "decal", + "name": "Decal_Trade_Merchant", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_TRADE_DECAL_1004" + }, + "128667752": { + "id": 128667752, + "category": "decal", + "name": "Decal_Explorer_Mostly_Aimless", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_EXPLORE_DECAL_1001" + }, + "128667753": { + "id": 128667753, + "category": "decal", + "name": "Decal_Explorer_Scout", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_EXPLORE_DECAL_1002" + }, + "128667754": { + "id": 128667754, + "category": "decal", + "name": "Decal_Explorer_Surveyor", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_EXPLORE_DECAL_1003" + } + } + }, + "stats": { + "game_time": 847776, + "missions": { + "courier": { + "missionsAccepted": 64, + "furthest": { + "distance": 9.8418152860638, + "origin": 3228189952, + "destination": "3227868416" + }, + "highestEarnings": { + "value": 0, + "distance": 0, + "origin": 0, + "destination": 0, + "faction": 0 + }, + "missionsCompleted": 36, + "creditsEarned": -9119, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 1109, + "faction": "Defence Force of LHS 1541", + "type": "CourierLegal" + }, + { + "value": 1018, + "faction": "Defence Force of LHS 1541", + "type": "CourierLegal" + }, + { + "value": 487, + "faction": "Defence Force of LHS 1541", + "type": "CourierLegal" + } + ] + }, + "deliver": { + "missionsAccepted": 105, + "furthest": { + "distance": 9.8944626243672, + "origin": 3228393472, + "destination": "3228115456" + }, + "highestEarnings": { + "value": 0, + "commodity": 0, + "qty": 0, + "distance": 0, + "origin": 0, + "destination": 0, + "faction": 0 + }, + "missionsCompleted": 98, + "creditsEarned": 1164220, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 1988, + "faction": "Crimson Energy Systems", + "type": "DeliveryLegal" + }, + { + "value": 107316, + "faction": "Gold Netcoms Commodities", + "type": "DeliveryLegal" + }, + { + "value": 65546, + "faction": "Allied LHS 1507 Dominion", + "type": "DeliveryLegal" + } + ] + }, + "collect": { + "missionsAccepted": 175, + "furthest": { + "distance": 0, + "origin": 0, + "destination": 0 + }, + "highestEarnings": { + "value": 0, + "commodity": 0, + "qty": 0, + "distance": 0, + "origin": 0, + "destination": 0, + "faction": 0 + }, + "missionsCompleted": 0, + "creditsEarned": 0, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 22145, + "faction": "Defence Force of LHS 1541", + "type": "Collect" + }, + { + "value": 3420, + "faction": "Defence Force of LHS 1541", + "type": "Collect" + }, + { + "value": 34772, + "faction": "Wolf 1323 Life Corp.", + "type": "Collect" + } + ] + }, + "assassin": { + "highestEarnings": { + "value": 199640, + "origin": "3228064512", + "faction": 0 + }, + "missionsCompleted": 25, + "creditsEarned": 1147873, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 36176, + "faction": "United Euryale First", + "type": "Massacre" + }, + { + "value": 99646, + "faction": "United Euryale First", + "type": "Assassinate" + }, + { + "value": 42589, + "faction": "United Euryale First", + "type": "Assassinate" + } + ], + "missionsAccepted": 52 + }, + "bountyHunter": { + "highestEarnings": { + "value": 0, + "origin": 0, + "faction": 0 + }, + "missionsCompleted": 0, + "creditsEarned": 0, + "missionsFailed": 0, + "latestCompleted": [], + "missionsAccepted": 0 + } + }, + "explore": { + "hyperspaceJumps": 1562, + "totalHyperspaceDistance": 26832.084787718, + "visited": { + "starsystem": [ + "GCRV 4654", + "FK5 2550", + "LHS 1914", + "Siren", + "Geawenki", + "Thiin", + "LP 307-8", + "StKM 1-626", + "BD+30 1423", + "LHS 6103", + "LHS 1814", + "LHS 1794", + "Nandjabinja", + "Susanoo", + "Wong Sher", + "74 k Orionis", + "BD+08 1303", + "Iansan", + "LHS 1857", + "Yin Sector HW-W b1-3", + "Nihursaga", + "Hahgwe", + "Alzirr", + "Toog", + "Yin Sector ZE-A d120", + "Chang Yeh", + "G 108-26", + "HR 2251", + "LHS 1838", + "Breksta", + "Amait", + "Cosi", + "Yggdrajang", + "LTT 17868", + "Yin Sector EQ-Y b2", + "Yin Sector EQ-Y b1", + "Zandu", + "Flech", + "Julanggarri", + "Ross 878", + "Kamchata", + "Tamalhikas", + "Katocudatta", + "Lumbla", + "Tascheter Sector FG-X b1-6", + "Jita Ten", + "71 Orionis", + "Tao Ti", + "LHS 1743", + "LFT 392", + "Ndozins", + "LHS 21", + "Geras", + "G 85-36", + "LP 417-213", + "V1402 Orionis", + "MCC 467", + "Suyarang", + "Chonost", + "Fular", + "LTT 11519", + "Tote", + "Psi Tauri", + "Wolf 1301", + "Tascheter Sector MS-T a3-2", + "Achlys", + "BD+14 831", + "Kungurutii", + "Ross 49", + "Dewikum", + "Yin Sector DQ-Y b1", + "Tascheter Sector FG-X b1-1", + "Tascheter Sector EG-X b1-1", + "Cahuile", + "Tascheter Sector WE-Q a5-1", + "Tascheter Sector DG-O a6-0", + "LP 771-72", + "Kappa Fornacis", + "LP 831-72", + "Zeus", + "Tascheter Sector HM-M a7-2", + "Tascheter Sector BL-O a6-1", + "Tascheter Sector YE-Q a5-0", + "Pachanwen", + "Ranginui", + "LHS 1928", + "LP 605-37", + "Sekhemet", + "Hlocidirus", + "Fionn", + "LHS 1920", + "Tascheter Sector GW-W c1-18", + "LFT 377", + "Kunlun", + "Tascheter Sector HM-M a7-1", + "LTT 1349", + "LFT 179", + "Jibitoq", + "BD-18 394", + "Autahenetsi", + "Ceti Sector AV-Y c17", + "Tetekhe", + "Ceti Sector FW-V b2-5", + "LTT 1141", + "Bandizel", + "Artemis", + "LHS 1409", + "Tascheter Sector EG-Y d106", + "Tascheter Sector BG-O a6-1", + "Tascheter Sector WZ-P a5-1", + "LHS 1573", + "G 100-4", + "V491 Persei", + "Sui Xing", + "Bonde", + "Bhadaba", + "Uchaluroja", + "Manamaya", + "LHS 197", + "Ashandras", + "LTT 11455", + "Al-Qaum", + "Herishep", + "LTT 11503", + "Ross 592", + "Itza", + "Capukanga", + "LHS 1483", + "LP 356-106", + "BD+24 543", + "39 Tauri", + "KP Tauri", + "Wolf 1278", + "Lowne 1", + "Meri", + "Apollo", + "LHS 1516", + "Wolf 1323", + "Marduk", + "LHS 1541", + "Wolf 1325", + "G 95-22", + "LHS 1507", + "Bao Yan Luo", + "Tascheter Sector HH-V b2-5", + "G 173-39", + "G 173-53", + "Theta Persei", + "LHS 1446", + "Lorana", + "Anlave", + "Wolf 46", + "V388 Cassiopeiae", + "Zeessze", + "Eta Cassiopeiae", + "Groombridge 34", + "Ross 248", + "Ross 730", + "Altair", + "Sol", + "Alpha Centauri", + "LHS 18", + "Bonitou", + "LTT 10482", + "Cephei Sector BA-A d103", + "Cephei Sector DQ-Y b4", + "Iota Cassiopeiae", + "Funji", + "T'ienimi", + "HIP 12512", + "Col 285 Sector QT-Q c5-14", + "HIP 10466", + "Col 285 Sector QT-Q c5-9", + "Col 285 Sector BH-J b10-4", + "Col 285 Sector BH-J b10-2", + "Col 285 Sector PT-Q c5-13", + "Col 285 Sector WA-L b9-0", + "HR 567", + "Col 285 Sector MY-Q c5-3", + "Col 285 Sector MY-Q c5-15", + "Undalibaluf", + "Col 285 Sector GY-F b12-4", + "BD+65 1984", + "Col 285 Sector HY-F b12-0", + "HIP 3509", + "Nootkena", + "Inovandar", + "Tegidana", + "BD+44 1040", + "LHS 1765", + "Selniang", + "Skuta", + "Gani", + "Enuma", + "Gkutat", + "Djinbin", + "Col 285 Sector NG-H a26-5", + "Col 285 Sector MA-J a25-4", + "Col 285 Sector SG-H a26-2", + "Col 285 Sector JB-N c7-7", + "Col 285 Sector JB-N c7-4", + "Synuefe XT-D a94-2", + "h2 Puppis", + "Synuefe BP-D a94-1", + "O Puppis", + "Synuefe KB-A a96-2", + "HIP 40430", + "Synuefe WR-H d11-48", + "Synuefe WQ-Z b47-5", + "Gliese 3434", + "Synuefe YK-N c23-14", + "Canopus", + "Synuefe ZK-N c23-22", + "Synuefe BH-Z b47-1", + "HIP 34755", + "HIP 35652", + "HIP 36489", + "47 G. Carinae", + "Synuefe BM-Z b47-8", + "Q Carinae", + "Synuefe DW-L c24-30", + "Synuefe IS-X b48-3", + "Chi Carinae", + "Synuefe HX-X b48-2", + "HIP 40929", + "HIP 42504", + "HIP 42459", + "E Velorum", + "Synuefe JI-W b49-12", + "HIP 42374", + "HR 3503", + "HIP 42823", + "HR 3448", + "HIP 42726", + "Omicron Velorum", + "HIP 42715", + "IC 2391 Sector LI-S b4-10", + "IC 2391 Sector SJ-Q b5-10", + "HIP 43433", + "IC 2391 Sector UJ-Q b5-8", + "IC 2391 Sector VJ-Q b5-1", + "HIP 43015", + "IC 2391 Sector MC-V c2-14", + "Synuefe GL-S b51-9", + "Synuefe LR-Q b52-2", + "V473 Carinae", + "Synuefe JE-E d13-115", + "Synuefe RX-O b53-7", + "Synuefe JE-E d13-94", + "Synuefe WD-N b54-1", + "Tureis", + "Synuefe BK-L b55-4", + "Synuefe CV-E c28-23", + "Synuefe OK-C d14-6", + "HIP 47751", + "HIP 48127", + "Synuefe KM-G b58-4", + "Synuefe XO-L a117-1", + "Synuefe AA-K a118-6", + "Wregoe KZ-S b58-7", + "HR 4091", + "Praea Euq SG-A b1", + "Praea Euq XM-Y b2", + "Praea Euq ZM-Y b1", + "Praea Euq MA-A d153", + "Praea Euq ZR-Y b0", + "Praea Euq CM-Y c9", + "HD 92405", + "Praea Euq FO-V b2-1", + "Praea Euq KU-T b3-5", + "Praea Euq PL-Y d85", + "Praea Euq TG-Q b5-3", + "HD 95633", + "Praea Euq ZM-O b6-0", + "Praea Euq LD-V c2-20", + "Praea Euq UR-W d1-63", + "Praea Euq EY-M b7-4", + "Praea Euq GJ-L b8-1", + "Praea Euq HJ-L b8-4", + "Praea Euq VR-W d1-80", + "Praea Euq RZ-R c4-2", + "Praea Euq JZ-J b9-0", + "Pro Eurl AI-I b10-3", + "Pro Eurl EW-W d1-55", + "Pro Eurl KD-S c4-7", + "Pro Eurl EW-W d1-39", + "HD 98557", + "Pro Eurl XR-I b10-0", + "Pro Eurl AN-I b10-3", + "Pro Eurl PJ-Q c5-12", + "Pro Eurl IC-V d2-40", + "Pro Eurl JC-V d2-35", + "Pro Eurl KZ-E b12-2", + "NGC 3532 Sector ZK-X d1-59", + "Pro Eurl NK-D b13-0", + "Pro Eurl HH-V d2-32", + "Pro Eurl JU-D b13-0", + "HD 100476", + "Pro Eurl LU-D b13-0", + "HD 99573", + "HD 99081", + "Pro Eurl IO-F b12-1", + "NGC 3532 Sector YP-X d1-24", + "NGC 3532 Sector EJ-M b9-1", + "NGC 3532 Sector DC-T c4-9", + "NGC 3532 Sector AL-X d1-30", + "NGC 3532 Sector PF-K b10-0", + "NGC 3532 Sector RA-K b10-1", + "NGC 3532 Sector BL-X d1-48", + "NGC 3532 Sector FR-V d2-53", + "NGC 3532 Sector EI-G b12-2", + "NGC 3532 Sector FI-G b12-0", + "NGC 3532 Sector FI-G b12-4", + "HD 98767", + "NGC 3532 Sector PU-C b14-0", + "NGC 3532 Sector RP-C b14-5", + "HD 98896", + "NGC 3532 Sector WV-A b15-4", + "NGC 3532 Sector YK-N c7-10", + "NGC 3532 Sector ID-X b16-2", + "NGC 3532 Sector LO-V b17-2", + "Pro Eurl BW-K b22-1", + "Pro Eurl AB-L b22-2", + "Pro Eurl OS-U e2-4", + "Pro Eurl CQ-P d5-68", + "Pro Eurl GR-D c12-2", + "Pro Eurl CQ-P d5-27", + "Pro Eurl OI-H b24-3", + "Pro Eurl CQ-P d5-21", + "Pro Eurl MC-J b23-2", + "Pro Eurl DQ-P d5-63", + "Pro Eurl ZJ-R d4-4", + "Pro Eurl NC-J b23-2", + "HD 99218", + "Pro Eurl JR-D c12-12", + "Pro Eurl DQ-P d5-39", + "Pro Eurl ZU-D b26-2", + "Pro Eurl HW-N d6-37", + "Pro Eurl HH-A b28-3", + "Pro Eurl QD-A c14-12", + "Pro Eurl UJ-Y c14-2", + "Pro Eurl LC-M d7-2", + "HD 104214", + "Pro Eurl WK-T b31-2", + "Pro Eurl ZP-W c15-1", + "Pro Eurl KN-P b33-2", + "Pro Eurl GR-U c16-9", + "Pro Eurl MN-P b33-1", + "Pro Eurl TO-N b34-0", + "Pro Eurl WJ-N b34-3", + "Pro Eurl XJ-N b34-6", + "Pro Eurl UD-P b33-0", + "Pro Eurl BF-N b34-4", + "Pro Eurl CF-N b34-1", + "Pro Eurl DF-N b34-2", + "Pro Eurl UD-K d8-47", + "Pro Eurl UD-K d8-85", + "Pro Eurl KG-L b35-3", + "Pro Eurl UD-K d8-73", + "Pro Eurl MG-L b35-5", + "Pro Eurl PB-L b35-1", + "Prua Dryoae UQ-Q a73-3", + "Prua Dryoae CS-O a74-1", + "Prua Dryoae FH-T b37-5", + "HD 101131", + "Prua Dryoae WF-L d9-50", + "Prua Dryoae LN-R b38-3", + "Prua Dryoae PT-P b39-7", + "Prua Dryoae MN-S e4-12", + "Prua Dryoae IJ-C a81-1", + "Prua Dryoae CD-E a80-3", + "Prua Dryoae YH-E a80-0", + "Pro Eurl ZJ-I d9-63", + "Pro Eurl HA-E b39-0", + "Pro Eurl ZJ-I d9-0", + "Pro Eurl HA-E b39-4", + "Pro Eurl ZJ-I d9-3", + "Pro Eurl ZD-G b38-0", + "Pro Eurl XI-G b38-0", + "HD 102728", + "Pro Eurl XI-G b38-1", + "Pro Eurl EK-E b39-4", + "Pro Eurl AK-I d9-55", + "Pro Eurl EA-P c19-3", + "Prua Dryoae LU-A a82-0", + "Prua Dryoae AM-J d10-40", + "Prua Dryoae AM-J d10-53", + "Prua Dryoae AM-J d10-5", + "Prua Dryoae AG-M b41-0", + "Prua Dryoae GM-K b42-1", + "Prua Dryoae HM-K b42-0", + "Prua Dryoae UU-R a86-3", + "Prua Dryoae CM-J d10-3", + "Prua Dryoae HJ-R c21-6", + "Prua Dryoae BV-R a86-5", + "Prua Dryoae DV-R a86-1", + "Prua Dryoae IJ-R c21-9", + "HD 101035", + "Prua Dryoae JJ-R c21-7", + "Swoiphs PB-Q a87-1", + "Swoiphs WH-O a88-5", + "Sifeae JD-V b43-0", + "Swoiphs BI-O a88-2", + "Sifeae LD-V b43-2", + "Sifeae VR-J c22-14", + "Sifeae RJ-T b44-5", + "Sifeae ZK-P e5-0", + "Sifeae UJ-T b44-2", + "Sifeae XU-R b45-3", + "Sifeae YU-R b45-6", + "Sifeae DB-Q b46-2", + "Sifeae EB-Q b46-2", + "Sifeae JH-O b47-5", + "HD 100137", + "Sifeae LH-O b47-3", + "NGC 4463 Sector TT-Z d42", + "NGC 4463 Sector QT-C b2-6", + "NGC 4463 Sector VZ-A b3-3", + "NGC 4463 Sector TT-Z d46", + "NGC 4463 Sector MS-Z c1-16", + "NGC 4463 Sector MS-Z c1-18", + "NGC 4463 Sector YZ-X d1-24", + "NGC 4463 Sector JX-V b5-2", + "NGC 4463 Sector ZZ-X d1-86", + "NGC 4463 Sector ZZ-X d1-82", + "NGC 4463 Sector VE-S b7-1", + "NGC 4463 Sector XZ-R b7-3", + "NGC 4463 Sector ZZ-X d1-89", + "NGC 4463 Sector ZZ-X d1-17", + "NGC 4463 Sector MH-H a16-1", + "NGC 4463 Sector GB-U c4-1", + "NGC 4463 Sector PX-N b9-2", + "NGC 4463 Sector GB-W d2-41", + "NGC 4463 Sector YJ-K b11-0", + "NGC 4463 Sector GB-W d2-37", + "NGC 4463 Sector AF-T a23-3", + "HD 101794", + "NGC 4463 Sector HL-R a24-1", + "NGC 4463 Sector KW-G b13-6", + "NGC 4463 Sector XD-M a27-1", + "NGC 4463 Sector ZD-M a27-2", + "NGC 4463 Sector JQ-I a29-1", + "NGC 4463 Sector MH-U d3-27", + "NGC 4463 Sector XN-D a32-2", + "NGC 4463 Sector DU-B a33-2", + "NGC 4463 Sector NG-Y a34-1", + "NGC 4463 Sector RN-S d4-3", + "NGC 4463 Sector ZS-U a36-3", + "NGC 4463 Sector GZ-S a37-0", + "NGC 4463 Sector OA-R a38-0", + "NGC 4463 Sector SL-P a39-1", + "NGC 4609 Sector JU-Y a5-1", + "NGC 4609 Sector SG-V a7-0", + "NGC 4609 Sector AZ-V b4-0", + "NGC 4609 Sector AK-Z d29", + "NGC 4609 Sector DA-X c2-7", + "NGC 4609 Sector AK-Z d63", + "NGC 4609 Sector AK-Z d17", + "NGC 4609 Sector AK-Z d36", + "NGC 4609 Sector LB-V c3-5", + "NGC 4609 Sector UR-R b6-4", + "NGC 4609 Sector MB-V c3-11", + "NGC 4609 Sector FQ-X d1-64", + "NGC 4609 Sector NB-V c3-9", + "NGC 4609 Sector CY-P b7-4", + "NGC 4609 Sector GQ-X d1-33", + "NGC 4609 Sector FY-P b7-4", + "NGC 4609 Sector GY-P b7-2", + "NGC 4609 Sector QB-V c3-16", + "Aucops TS-O b12-3", + "Blaa Eoq IQ-O b12-2", + "Blaa Eoq OW-M b13-3", + "Blaa Eoq TN-T c6-5", + "Blaa Eoq RH-L b14-4", + "Blaa Eoq UN-T c6-4", + "Blaa Eoq SL-T a30-1", + "Blaa Eoq UL-T a30-1", + "Blaa Eoq XL-T a30-2", + "Blaa Eoq DS-R a31-0", + "Blaa Eoq OU-V d3-3", + "Blaa Eoq MY-P a32-0", + "Blaa Eoq SE-O a33-1", + "Blaa Eoq YK-M a34-2", + "Blaa Eoq AL-M a34-3", + "Blaa Eoq CL-M a34-5", + "Blaa Eoq IR-K a35-0", + "Blaa Eoq QU-V d3-34", + "Blaa Eoq PX-I a36-2", + "Blaa Eoq QU-V d3-38", + "Blaa Eoq RU-V d3-17", + "Blaa Eoq BP-F a38-2", + "Blaa Eoq EP-F a38-3", + "Phylurn AU-Q b18-5", + "Blaa Eoq IP-F a38-4", + "Blaa Eoq LP-F a38-0", + "Blaa Eoq WA-U d4-8", + "Blaa Eoq PP-F a38-2", + "Blaa Eoq RP-F a38-0", + "Blaa Eoq XA-U d4-22", + "HD 99619", + "Blaa Eoq XP-F a38-2", + "Col 240 Sector MX-E a42-1", + "Col 240 Sector HJ-G c11-3", + "Col 240 Sector OX-M b22-1", + "Col 240 Sector PX-M b22-0", + "Col 240 Sector ZD-D a43-3", + "Col 240 Sector YX-E a42-1", + "Col 240 Sector KJ-G c11-4", + "Col 240 Sector DY-E a42-3", + "Col 240 Sector JE-D a43-0", + "Col 240 Sector HY-E a42-1", + "Col 240 Sector JY-E a42-1", + "Col 240 Sector LO-G c11-5", + "Col 240 Sector RJ-Q d5-27", + "Col 240 Sector MO-G c11-10", + "Col 240 Sector SJ-Q d5-51", + "Col 240 Sector SJ-Q d5-46", + "Col 240 Sector ZR-O b21-5", + "Col 240 Sector AS-O b21-3", + "Col 240 Sector OO-G c11-8", + "Col 240 Sector TJ-Q d5-54", + "Col 240 Sector ES-O b21-0", + "Col 240 Sector JY-M b22-0", + "2MASS J11132054-6053363", + "2MASS J11130497-6049452", + "TYC 8959-364-2", + "2MASS J11130472-6047135", + "NGC 3590 MV 4", + "NGC 3590 CLA 15", + "HD 306185", + "2MASS J11123987-6047011", + "NGC 3590 MV 12", + "NGC 3590 Sector UT-R a4-1", + "NGC 3590 Sector BA-A d12", + "Col 240 Sector AB-J b24-0", + "Col 240 Sector GH-H b25-0", + "Col 240 Sector HH-H b25-4", + "Col 240 Sector FW-C c13-7", + "IC 2944 Sector PP-Q b8-0", + "IC 2944 Sector UV-O b9-0", + "IC 2944 Sector VV-O b9-2", + "IC 2944 Sector WV-O b9-0", + "IC 2944 Sector WE-Y d1-26", + "IC 2944 Sector EX-M b10-2", + "IC 2944 Sector FX-M b10-0", + "IC 2944 Sector ER-S c5-0", + "IC 2944 Sector LD-L b11-2", + "IC 2944 Sector SE-J b12-1", + "IC 2944 Sector VP-H b13-0", + "IC 2944 Sector WP-H b13-1", + "IC 2944 Sector KX-Q c6-5", + "IC 2944 Sector CW-F b14-2", + "IC 2944 Sector HR-U d3-13", + "IC 2944 Sector FG-X e1-3", + "IC 2944 Sector QD-P c7-5", + "IC 2944 Sector RO-A b17-0", + "IC 2944 Sector SO-A b17-0", + "IC 2944 Sector TO-A b17-0", + "Statue of Liberty Sector FW-W c1-2", + "Statue of Liberty Sector OY-R b4-1", + "Statue of Liberty Sector LS-T b3-0", + "Statue of Liberty Sector OD-S b4-0", + "Statue of Liberty Sector LX-T b3-2", + "Statue of Liberty Sector DL-Y d25", + "Statue of Liberty Sector FG-Y e5", + "Statue of Liberty Sector PI-S b4-0", + "Statue of Liberty Sector QI-S b4-0", + "Statue of Liberty Sector FW-K a9-1", + "Statue of Liberty Sector IW-K a9-0", + "IC 2944 Sector XH-C a34-0", + "IC 2944 Sector ZH-C a34-0", + "IC 2944 Sector GO-A a35-0", + "IC 2944 Sector GT-A a35-1", + "IC 2944 Sector KO-A a35-1", + "IC 2944 Sector KT-A a35-2", + "IC 2944 Sector MR-U d3-20", + "IC 2944 Sector LI-C a34-0", + "Blua Eoq CI-G a65-0", + "Blua Eoq DL-Y g0", + "Blua Eoq GC-C b33-1", + "Blua Eoq TA-B a68-0", + "Blua Eoq TF-B a68-0", + "Blo Thae QH-U c16-7", + "Blo Thae MV-M b34-2", + "Blo Thae LA-N b34-1", + "NGC 3572 Sector DB-X c1-0", + "NGC 3572 Sector FR-V b2-2", + "NGC 3572 Sector AV-Y c1", + "NGC 3572 Sector EB-X c1-5", + "NGC 3572 Sector IR-V b2-0", + "NGC 3572 Sector FB-X c1-4", + "NGC 3572 Sector YE-A g2", + "NGC 3572 Sector IR-W d1-9", + "NGC 3572 Sector QN-S b4-0", + "Blo Thae BI-I b37-1", + "Blo Thae AP-I d9-17", + "Blo Thae BE-R c18-1", + "Blo Thae AS-I b37-0", + "Blo Thae BS-I b37-0", + "Blo Thae YL-K b36-0", + "Blo Thae BJ-R c18-4", + "Tyriedgoea MO-I d9-2", + "Tyriedgoea MO-I d9-20", + "Tyriedgoea PJ-K b36-1", + "Tyriedgoea II-K d8-12", + "Tyriedgoea IX-N b34-0", + "Tyriedgoea DW-P b33-0", + "Tyriedgoea BB-Q b33-0", + "Tyriedgoea AQ-R b32-0", + "Tyriedgoea DH-M d7-10", + "Tyriedgoea ZU-R b32-0", + "Tyriedgoea VO-T b31-0", + "Tyriedgoea UD-V b30-0", + "Tyriedgoea DH-M d7-2", + "Tyriedgoea LW-Y b28-0", + "Tyriedgoea LX-U e2-0", + "Tyriedgoea JQ-A b28-0", + "Tyriedgoea KQ-A b28-0", + "Tyriedgoea CW-N d6-9", + "Tyriedgoea OL-A b28-0", + "Tyriedgoea PL-A b28-0", + "Tyriedgoea DW-N d6-19", + "Tyriedgoea VR-Y b28-0", + "Tyriedgoea WR-Y b28-0", + "Col 228 Sector CW-V d2-19", + "Col 228 Sector CW-V d2-18", + "Col 228 Sector GC-U d3-3", + "Col 228 Sector PB-G b13-0", + "Col 228 Sector JY-P c6-2", + "Col 228 Sector SB-G b13-0", + "Col 228 Sector UW-F b13-1", + "Col 228 Sector ZC-E b14-1", + "Col 228 Sector KY-P c6-1", + "Col 228 Sector BD-E b14-0", + "Col 228 Sector IE-C b15-1", + "Col 228 Sector KX-T d3-13", + "Col 228 Sector TZ-N c7-4", + "Col 228 Sector NP-A b16-0", + "Col 228 Sector UZ-N c7-5", + "Col 228 Sector VQ-Y b16-0", + "Col 228 Sector ZF-M c8-0", + "Col 228 Sector ZL-Y b16-1", + "Col 228 Sector FN-W b17-1", + "NGC 3324 Sector VI-V b17-1", + "NGC 3324 Sector BP-T b18-1", + "NGC 3324 Sector CP-T b18-0", + "NGC 3324 Sector DS-J c9-8", + "NGC 3324 Sector ME-O a36-0", + "NGC 3324 Sector IY-H c10-1", + "NGC 3324 Sector CX-I a39-0", + "NGC 3324 Sector HD-H a40-2", + "NGC 3324 Sector QT-R d4-3", + "NGC 3324 Sector PJ-F a41-0", + "NGC 3324 Sector VP-D a42-4", + "NGC 3324 Sector RT-R d4-15", + "NGC 3324 Sector DR-B a43-0", + "NGC 3324 Sector FR-B a43-2", + "NGC 3324 Sector IZ-L b22-2", + "NGC 3324 Sector UU-F c11-3", + "NGC 3324 Sector UU-F c11-6", + "Eta Carinae", + "NGC 3324 Sector OU-L b22-0", + "NGC 3324 Sector LO-N b21-0", + "NGC 3324 Sector WU-F c11-4", + "NGC 3324 Sector JI-P b20-1", + "NGC 3324 Sector KI-P b20-1", + "Bleia Eork MW-U b36-1", + "Bleia Eork NW-U b36-0", + "Bleia Eork LQ-W b35-1", + "Bleia Eork VZ-M d8-7", + "Bleia Eork NQ-W b35-1", + "Bleia Eork TK-Y c17-1", + "Bleia Eork JP-Y b34-0", + "Blae Eork KD-A c17-2", + "Blae Eork ZM-Y b34-1", + "Blae Eork WG-A b34-1", + "Blae Eork XG-A b34-1", + "Blae Eork YG-A b34-1", + "Blae Eork BC-A b34-1", + "Blae Eork CH-U e3-4", + "Blae Eork ID-Y b34-0", + "Blae Eork MJ-W b35-1", + "Blae Eork QP-U b36-0", + "Blae Eork XK-W c18-1", + "Blae Eork WK-W c18-0", + "Blae Eork CI-P b39-0", + "Blae Eork GO-N b40-0", + "Blae Eork LU-L b41-1", + "Blae Eork OA-K b42-1", + "Blae Eork JD-R c21-5", + "CPD-58 2648", + "CPD-59 2627", + "2MASS J10443666-5946218", + "Blae Eork OJ-P c22-3", + "Trumpler 16 HG 1462", + "CPD-59 2591", + "Blae Eork QA-B b47-0", + "PCYC 666", + "Blae Eork SA-B b47-0", + "Blae Eork TA-B b47-0", + "2MASS J10442445-5951430", + "Blae Eork YM-H d11-18", + "Blae Eork ZK-N c23-2", + "Blae Eork HI-X b48-0", + "Blae Eork KT-V b49-0", + "Blae Eork NO-V b49-0", + "Blae Eork FR-L c24-2", + "Tr 16 Sector RA-M b8-0", + "2MASS J10432911-6003200", + "Tr 16 Sector DB-X d1-12", + "Tr 16 Sector XG-K b9-0", + "Tr 16 Sector ZG-K b9-0", + "Tr 16 Sector ND-S c4-0", + "Tr 16 Sector EB-X d1-17", + "Tr 16 Sector II-I b10-0", + "Tr 16 Sector LD-I b10-0", + "Tr 16 Sector OO-G b11-0", + "Tr 16 Sector PO-G b11-0", + "Tr 16 Sector QO-G b11-0", + "Tr 16 Sector RO-G b11-0", + "Tr 16 Sector VJ-Q c5-4", + "Tr 16 Sector TO-G b11-0", + "Tr 16 Sector VJ-G b11-0", + "Tr 16 Sector XJ-G b11-0", + "Tr 16 Sector VY-R c4-2", + "Tr 16 Sector NC-V d2-2", + "Tr 14 Sector JM-W d1-10", + "Tr 16 Sector CA-Q c5-7", + "Tr 16 Sector NC-V d2-6", + "Tr 16 Sector GG-O c6-6", + "Tr 14 Sector TY-S c3-12", + "Tr 14 Sector LC-M b7-0", + "Eta Carina Sector HR-W c1-3", + "Eta Carina Sector RT-R b4-0", + "Eta Carina Sector HR-W d1-22", + "Eta Carina Sector KC-V c2-1", + "Eta Carina Sector SJ-Q b5-0", + "Eta Carina Sector RO-Q b5-0", + "2MASS J10442897-5942343", + "Eta Carina Sector NY-Q b5-0", + "Eta Carina Sector KD-R b5-1", + "Tr 14 Sector GD-W a17-1", + "Tr 14 Sector IH-V d2-19", + "Blu Theia ND-Z c27-1", + "Blu Theia LI-Z c27-3", + "Blu Theia LI-Z c27-6", + "Blu Theia QF-Z b55-0", + "Blu Theia RT-Z d13-23", + "Blu Theia HS-Z c27-0", + "Blu Theia KE-B b55-0", + "Blu Theia FY-C b54-0", + "Blu Theia CM-B c27-3", + "Blu Theia XW-E b53-0", + "Blu Theia VB-F b53-0", + "Blu Theia QV-G b52-0", + "Blu Theia LP-I b51-0", + "Blu Theia HJ-K b50-0", + "Blu Theia EO-K b50-0", + "Blu Theia YM-M b49-0", + "Blu Theia UG-O b48-0", + "Blu Theia FM-D d12-9", + "Blu Theia NF-Q b47-0", + "Blu Theia AQ-P e5-1", + "Blu Theia HZ-R b46-0", + "Blu Theia BG-F d11-6", + "Blu Theia BG-F d11-11", + "Blu Theia AG-F d11-4", + "Blu Theia ZH-V b44-0", + "Blu Theia VW-W b43-0", + "Blu Theia TB-X b43-0", + "Blu Theia UK-M c21-1", + "Blu Theia QE-O c20-2", + "Blu Theia WZ-G d10-9", + "Blu Theia PE-O c20-0", + "Blu Theia EJ-C b41-0", + "Blu Theia FE-C b41-0", + "Blu Theia KY-P c19-1", + "Blu Theia QT-I d9-8", + "Blu Theia TW-F b39-0", + "Blu Theia QB-G b39-0", + "Blu Theia PB-G b39-0", + "Blu Theia LQ-H b38-0", + "Blu Theia JV-H b38-0", + "Blu Theia IV-H b38-0", + "Blu Theia HV-H b38-0", + "Blu Theia GV-H b38-0", + "Blu Theia FV-H b38-0", + "Blu Theia CA-I b38-0", + "Blu Theia BA-I b38-0", + "Blu Theia CV-H b38-0", + "Blu Theia DG-G b39-0", + "Blu Theia BD-Q c19-0", + "Blu Theia BG-G b39-0", + "Blu Theia LY-I d9-6", + "Blu Theia SJ-I b38-0", + "Blu Theia ND-K b37-0", + "Blu Theia GS-K d8-5", + "Blu Theia GC-M b36-0", + "Blu Theia DH-M b36-0", + "Blu Theia VU-P b34-0", + "Blu Theia SZ-P b34-0", + "Blu Theia NT-R b33-0", + "Blu Theia KY-R b33-0", + "Blu Theia FS-T b32-0", + "Blu Theia DX-T b32-0", + "Blu Theia CX-T b32-0", + "Blu Theia YX-X c15-0", + "Blu Theia VV-V b31-0", + "Blu Theia XX-X c15-0", + "Blu Theia SR-Z c14-1", + "Blu Theia WV-M d7-1", + "Blu Theia WV-M d7-2", + "Blu Theia QW-Z c14-0", + "Blu Theia CN-B b29-0", + "Blu Theia YG-D b28-0", + "Blu Theia SF-F b27-0", + "Blu Theia QU-O d6-2", + "Blu Theia GP-D c13-0", + "Tyriedgoea BP-Q d5-2", + "Tyriedgoea BP-Q d5-3", + "Tyriedgoea BP-Q d5-0", + "Tyriedgoea BP-Q d5-4", + "Tyriedgoea DK-Q d5-1", + "Blu Theia OZ-G b26-0", + "Blu Theia QU-G b26-0", + "Tyriedgoea HQ-O d6-4", + "Tyriedgoea PG-D c13-1", + "Tyriedgoea JL-O d6-7", + "Tyriedgoea RB-D c13-1", + "Tyriedgoea KY-F b26-0", + "Tyriedgoea JL-O d6-1", + "Tyriedgoea OQ-E c12-0", + "Tyriedgoea CX-H b25-0", + "Tyriedgoea LV-E c12-0", + "Tyriedgoea EF-Q d5-8", + "Tyriedgoea UV-J b24-0", + "Tyriedgoea QP-L b23-0", + "Tyriedgoea MJ-N b22-0", + "Tyriedgoea LJ-N b22-0", + "Tyriedgoea KJ-N b22-0", + "Tyriedgoea FD-P b21-0", + "Tyriedgoea ED-P b21-0", + "Tyriedgoea ZW-Q b20-0", + "Tyriedgoea VQ-S b19-0", + "Tyriedgoea TV-S b19-0", + "Tyriedgoea XD-S d4-0", + "Tyriedgoea QK-U b18-0", + "Tyriedgoea PK-U b18-0", + "Tyriedgoea OK-U b18-0", + "Tyriedgoea LP-U b18-0", + "Tyriedgoea JU-U b18-0", + "Tyriedgoea NB-M c8-1", + "Tyriedgoea BT-W b17-0", + "Tyriedgoea ZS-W b17-0", + "Tyriedgoea RX-T d3-7", + "Tyriedgoea MB-M c8-1", + "Tyriedgoea TM-Y b16-0", + "Tyriedgoea SM-Y b16-0", + "Tyriedgoea QX-T d3-3", + "Tyriedgoea QX-T d3-2", + "Tyriedgoea LV-B b15-0", + "Tyriedgoea KV-B b15-0", + "Tyriedgoea EA-O c7-0", + "Tyriedgoea ZT-P c6-0", + "Tyriedgoea CU-D b14-0", + "Tyriedgoea EQ-Y e1", + "Tyriedgoea YN-F b13-0", + "Tyriedgoea LR-V d2-7", + "Tyriedgoea UN-R c5-0", + "Tyriedgoea QH-T c4-0", + "Tyriedgoea QH-T c4-1", + "Tyriedgoea HL-X d1-4", + "Tyriedgoea FP-M b9-0", + "Tyriedgoea EP-M b9-0", + "Tyriedgoea AJ-O b8-0", + "Tyriedgoea VC-Q b7-0", + "Tyriedgoea UC-Q b7-0", + "Tyriedgoea PW-R b6-0", + "Tyriedgoea OW-R b6-0", + "Tyriedgoea BF-Z d6", + "Tyriedgoea KB-S b6-0", + "Tyriedgoea FV-T b5-0", + "Tyriedgoea AF-Z d5", + "Tyriedgoea AP-V b4-0", + "Tyriedgoea AF-Z d6", + "Tyriedgoea BK-V b4-0", + "Tyriedgoea WD-X b3-0", + "Tyriedgoea VD-A c1-2", + "Tyriedgoea RX-Y b2-0", + "Tyriedgoea VY-A d8", + "Tyriedgoea SI-A c1-2", + "Tyriedgoea JW-A b2-0", + "Tyriedgoea GL-C b1-0", + "Tyriedgoea FL-C b1-0", + "Tyriedgoea ZJ-E b0", + "Pru Eurl QH-X b58-0", + "Pru Eurl CN-A d14-2", + "Pru Eurl JG-Z b57-0", + "Pru Eurl EQ-Z c28-0", + "Pru Eurl DA-B b57-0", + "Pru Eurl CA-B b57-0", + "Pru Eurl BA-B b57-0", + "Pru Eurl WT-C b56-0", + "Pru Eurl SN-E b55-0", + "Pru Eurl PS-E b55-0", + "Pru Eurl KM-G b54-0", + "Pru Eurl JM-G b54-0", + "Pru Eurl FG-I b53-0", + "Pru Eurl XF-O e6-0", + "Pru Eurl AA-K b52-0", + "Pru Eurl VT-L b51-0", + "Pru Eurl PF-E d12-9", + "Pru Eurl QX-O b49-0", + "Pru Eurl RA-E d12-9", + "Pru Eurl GG-I c24-3", + "Pru Eurl QA-E d12-5", + "Pru Eurl DL-I c24-2", + "Pru Eurl CQ-S b47-0", + "Pru Eurl BQ-S b47-0", + "Pru Eurl XJ-U b46-0", + "Pru Eurl YE-K c23-0", + "Sifaea BV-F d11-15", + "Pru Eurl OX-X b44-0", + "Pru Eurl SZ-P e5-1", + "Pru Eurl KZ-F d11-0", + "Sifaea ZZ-X b44-0", + "Sifaea VT-H d10-9", + "Sifaea UT-N c21-0", + "Sifaea QY-Z b43-0", + "Sifaea SY-N c21-0", + "Sifaea IX-B b43-0", + "Sifaea NS-P c20-1", + "Sifaea DR-D b42-0", + "Sifaea YK-F b41-0", + "Sifaea XK-F b41-0", + "Sifaea SE-H b40-0", + "Sifaea PN-J d9-10", + "Sifaea PN-J d9-2", + "Sifaea JS-K b38-0", + "Sifaea IS-K b38-0", + "Sifaea HS-K b38-0", + "Sifaea HN-K b38-0", + "Sifaea UT-R e4-1", + "Sifaea ES-K b38-0", + "Sifaea HY-I b39-0", + "Sifaea IT-I b39-0", + "Sifaea NN-J d9-8", + "Sifaea EY-I b39-0", + "Sifaea CM-R c19-0", + "Sifaea MN-J d9-1", + "Sifaea BM-R c19-1", + "Sifaea GE-H b40-0", + "Sifaea FE-H b40-0", + "Sifaea EE-H b40-0", + "Sifaea FZ-G b40-0", + "Sifaea EZ-G b40-0", + "Sifaea DZ-G b40-0", + "Sifaea ST-R e4-0", + "Sifaea BZ-G b40-0", + "Sifaea YD-H b40-0", + "Sifaea KN-J d9-3", + "Sifaea XD-H b40-0", + "Sifaea KN-J d9-13", + "Sifaea JN-J d9-1", + "Sifaea VD-H b40-0", + "Sifaea JN-J d9-2", + "Sifaea UL-R c19-1", + "Sifaea JW-K b38-0", + "Sifaea EQ-M b37-0", + "Sifaea EH-L d8-4", + "Sifaea BF-O b36-0", + "Sifaea AF-O b36-0", + "Sifaea VY-P b35-0", + "Sifaea YE-O b36-0", + "Sifaea XE-O b36-0", + "Sifaea DH-L d8-12", + "Sifaea DH-L d8-13", + "Sifaea RY-P b35-0", + "Sifaea IZ-U c17-0", + "Sifaea LS-R b34-0", + "Sifaea CH-L d8-6", + "Sifaea CH-L d8-1", + "Sifaea GW-U b32-1", + "Sifaea AW-M d7-2", + "Sifaea DD-Y c15-0", + "Sifaea DL-W b31-0", + "Sifaea YE-Y b30-1", + "Sifaea ZV-M d7-3", + "Sifaea AA-Y b30-0", + "Sifaea WT-Z b29-0", + "Sifaea KC-V e2-2", + "Sifaea WP-O d6-16", + "Sifaea KC-V e2-3", + "Sifaea QS-B b29-0", + "Sifaea RN-B b29-1", + "Sifaea QN-B b29-0", + "Sifaea VP-O d6-1", + "Sifaea ST-Z b29-0", + "Sifaea YV-M d7-12", + "Sifaea QT-Z b29-0", + "Sifaea LN-B b29-1", + "Sifaea UP-O d6-8", + "Sifaea DM-D b28-2", + "Sifaea TP-O d6-26", + "Sifaea CH-D b28-0", + "Sifaea BH-D b28-1", + "Sifaea WA-F b27-2", + "Sifaea SP-O d6-26", + "Sifaea PZ-G b26-0", + "Sifaea OZ-G b26-1", + "Pro Eur VV-I b25-0", + "Pro Eur UV-I b25-0", + "Pro Eur PP-K b24-2", + "Pro Eur SV-I b25-0", + "Pro Eur PK-K b24-0", + "Pro Eur CK-Q d5-6", + "Pro Eur ED-O b22-0", + "Pro Eur ZW-P b21-2", + "Pro Eur YW-P b21-0", + "Pro Eur XW-P b21-0", + "Pro Eur WW-P b21-0", + "Pro Eur WS-I c10-7", + "Pro Eur QQ-R b20-0", + "Pro Eur RM-K c9-3", + "Pro Eur WD-S d4-28", + "Pro Eur MG-M c8-4", + "Pro Eur CT-W b17-2", + "Pro Eur LG-M c8-5", + "Pro Eur WM-Y b16-1", + "Pro Eur TR-Y b16-0", + "Pro Eur NL-A b16-2", + "Pro Eur FA-O c7-0", + "Pro Eur IF-C b15-0", + "Pro Eur DZ-D b14-2", + "Pro Eur CZ-D b14-1", + "Pro Eur ZN-F b13-1", + "Pro Eur YT-P c6-3", + "Pro Eur LR-V d2-36", + "Pro Eur WN-F b13-1", + "Pro Eur ZT-D b14-1", + "Pro Eur AP-D b14-1", + "Pro Eur DV-B b15-2", + "Pro Eur CV-B b15-2", + "Pro Eur NX-T d3-41", + "Pro Eur NX-T d3-32", + "Pro Eur FB-M c8-1", + "Pro Eur LN-W b17-2", + "Pro Eur NX-T d3-15", + "Pro Eur GM-K c9-0", + "Pro Eur PE-T b19-0", + "Pro Eur FM-K c9-6", + "Pro Eur RK-R b20-0", + "Pro Eur IS-I c10-0", + "Pro Eur PD-S d4-9", + "Pro Eur GW-W e1-0", + "Pro Eur EH-K c9-9", + "Pro Eur EY-U b18-1", + "Pro Eur BM-K c9-3", + "Pro Eur ET-U b18-0", + "Pro Eur AM-K c9-5", + "Pro Eur OD-S d4-23", + "Pro Eur ZL-K c9-4", + "Pro Eur ND-S d4-26", + "Pro Eur VC-V b18-0", + "Pro Eur UC-V b18-0", + "Pro Eur IX-T d3-26", + "Pro Eur SC-V b18-0", + "Pro Eur TX-U b18-1", + "Pro Eur MD-S d4-24", + "Pro Eur MD-S d4-23", + "Pro Eur OR-W b17-1", + "Pro Eur HX-T d3-18", + "Pro Eur RF-M c8-2", + "Pro Eur HL-Y b16-0", + "Pro Eur IG-Y b16-0", + "Pro Eur DA-A b16-2", + "Pro Eur GG-Y b16-0", + "Pro Eur DL-Y b16-0", + "Pro Eur GX-T d3-1", + "Sifeae IH-A b16-1", + "Sifeae GM-A b16-0", + "Sifeae FM-A b16-0", + "Sifeae VX-T d3-11", + "Sifeae UX-T d3-1", + "Sifeae LF-O c7-0", + "Sifeae SC-U d3-1", + "Sifeae NW-V d2-6", + "Sifeae NW-V d2-16", + "Sifeae OE-E b14-1", + "Sifeae NE-E b14-0", + "Sifeae QK-C b15-0", + "Sifeae QC-U d3-22", + "Sifeae OK-C b15-0", + "Sifeae MK-C b15-1", + "Sifeae DU-P c6-4", + "Sifeae JZ-D b14-0", + "Sifeae GE-E b14-0", + "Sifeae FE-E b14-0", + "Sifeae CT-F b13-0", + "Sifeae BT-F b13-0", + "Sifeae ZY-P c6-1", + "Sifeae KW-V d2-9", + "Sifeae RR-H b12-0", + "Sifeae XY-P c6-6", + "Sifeae XY-P c6-0", + "Sifeae JW-V d2-12", + "Sifeae WD-E b14-0", + "Sifeae XT-P c6-5", + "Sifeae WY-D b14-0", + "Sifeae VY-D b14-1", + "Sifeae AA-C b15-1", + "Sifeae ZZ-N c7-0", + "Sifeae AL-A b16-1", + "Sifeae VE-C b15-1", + "Sifeae YK-A b16-1", + "Sifeae MX-T d3-28", + "Sifeae ZV-Y b16-0", + "Sifeae KC-U d3-4", + "Synuefe YG-Z b47-0", + "Synuefe XK-N c23-3", + "Col 285 Sector MR-M c7-13", + "Col 285 Sector SH-B b14-7", + "Col 285 Sector RH-B b14-2", + "HIP 28150", + "Col 285 Sector NM-B b14-6", + "Hyades Sector LC-V d2-99", + "Trianguli Sector QI-T b3-6", + "Trianguli Sector PI-T b3-7", + "Trianguli Sector TU-O a6-1", + "Tascheter Sector TY-R a4-2", + "LP 415-26", + "Delta Trianguli", + "LHS 4003", + "WISE 2056+1459", + "LP 634-1", + "Volungu", + "Liaedin", + "Wolf 1062", + "IL Aquarii", + "LAWD 96", + "Core Sys Sector CQ-P a5-2", + "Alectrona", + "Hyldekagati", + "Ceti Sector CQ-Y d89", + "Ceti Sector PD-S b4-1", + "Quivira", + "Kadrusa", + "ICZ CL-X b1-5", + "ICZ EW-V b2-4", + "Sanna", + "Euryale", + "LPM 26", + "Putamasin", + "LFT 78", + "Col 285 Sector NE-R a34-0", + "LHS 160", + "LHS 1351", + "LP 91-140", + "Ennead" + ], + "starport": [ + "Bosch Terminal", + "Julian Gateway", + "Jemison Dock", + "Galvani Port", + "Wundt Gateway", + "Conrad Port", + "Knapp Vision", + "Herzfeld Landing", + "Kotov Terminal", + "Weston Orbital", + "Ricardo Landing", + "Brand City", + "Huygens Mines", + "Zudov City", + "Chomsky Ring", + "Wescott Terminal", + "Dirac Hub", + "Planck Dock", + "Hertz Colony", + "Bosch Mines", + "Blaschke Vision", + "Nicollet City", + "Ejeta Colony", + "Pierres Ring", + "Grant Terminal", + "Narvaez Orbital", + "Legendre Ring", + "Popper Dock", + "Brooks City", + "Wells Hub", + "Barcelos City", + "Perez Market", + "Lopez de Villalobos Prospect", + "Oramus Legacy", + "Henry Hub", + "Schade Platform", + "Selberg's Inheritance", + "Solovyov Orbital", + "Pierce Hanger", + "Giles Colony", + "Marshall Hub", + "Ising Hub", + "Arrhenius Hub", + "Vaucanson Hub", + "Frimout Horizons", + "Parry Terminal", + "Saberhagen Port", + "Stafford Terminal", + "Willis City", + "Romanenko Gateway", + "Jakes Enterprise", + "Budarin Terminal", + "Horowitz Gateway", + "Burke Hub", + "Perrin Ring", + "Balandin Enterprise", + "So-yeon Port", + "Potter Gateway", + "Tudela Installation", + "Quimper Ring", + "Julian City", + "Whitelaw Enterprise", + "Saunders's Dive", + "Harvestport", + "Brunton Hub", + "Nasmyth Station", + "Currie Enterprise", + "McArthur Plant", + "Lundwall City", + "Tshang Enterprise", + "Mach Dock", + "Wellman Gateway", + "Moisuc Refinery", + "Boe Enterprise", + "Gelfand Survey", + "Artyukhin Ring", + "Aitken Vision", + "Laphrian Shipyard", + "Crook Orbital", + "Rand City", + "Morgan Terminal", + "Oswald Platform", + "Aksyonov Platform", + "Coney Arena", + "Roberts Hub", + "Ayerdhal City", + "Derleth Orbital", + "Maire Gateway", + "Dedman Gateway", + "Bailey Ring", + "Humphreys Enterprise", + "Kandel Ring", + "Polya Enterprise", + "Rozhdestvensky Station", + "Cameron Survey", + "Shuttleworth Terminal", + "Yu Port", + "Bolger Vision", + "Alpers Refinery", + "Goeschke Station", + "Stebler Mines", + "Duke Hub", + "Shepard Ring", + "Cormack Orbital", + "Harris Platform", + "Fung Outpost", + "Ore Terminal", + "McDaniel Station", + "Ellison Station", + "Hennepin Enterprise", + "Luiken Port", + "Cochrane Terminal", + "McDonald Port", + "Bykovsky Ring", + "Vaucanson Settlement", + "Nicollier Ring", + "Carrier Dock", + "DG-1 Refinery", + "Blackman Terminal", + "Proteus Orbital", + "Katzenstein Settlement", + "Porta", + "Spedding Orbital", + "Anders Orbital", + "Mohmand Dock", + "Maler Hub", + "Scott Settlement", + "Sarich Port", + "Tyurin Port", + "Reisman Station", + "Fulton Landing", + "DENIS FILIPPOV", + "Rattus High", + "Port Sippar", + "Amar Station", + "Hennen City", + "Cabrera Dock", + "Haller Port", + "Pennington City", + "Foda Station", + "Stebler City", + "Gibson Settlement", + "Strekalov Dock", + "Behnken Terminal", + "Euler Port", + "Archimedes Hub", + "Ross Dock", + "Blalock Orbital", + "Pavlov Settlement", + "Galileo", + "Stein Platform", + "Beatty Landing", + "Galiano Plant", + "Rangarajan's Base", + "Jemison Refinery", + "Solo Orbiter", + "Brunel Station", + "Brendan Gateway", + "Godel Dock", + "Slipher Vision", + "EG Main HQ", + "Crown Orbital", + "Crown City", + "Watt Ring", + "Coye Orbital" + ] + }, + "greatestDistanceFromStart": 9017.2195143253, + "creditsEarned": 542823, + "bodiesCount": 0, + "scanSoldLevels": { + "lev_0": 647, + "lev_1": 489, + "lev_2": 132, + "lev_3": 0 + }, + "latestPayouts": [ + { + "market": "Port Sippar", + "value": 3218 + }, + { + "market": "Quimper Ring", + "value": 63035 + }, + { + "market": "Rangarajan's Base", + "value": 141702 + }, + { + "market": "Galiano Plant", + "value": 59372 + }, + { + "market": "Beatty Landing", + "value": 3424 + } + ], + "highestPayout": 34942, + "lastVisitedStarSystems": [ + "Ennead", + "LP 91-140", + "LHS 1351", + "LFT 78", + "LHS 1351" + ], + "bodiesSoldCount": 1268, + "bodiesFirstDiscovered": 26 + }, + "ship": { + "spend": { + "ships": 8227344, + "fuel": 160669, + "modules": 15615586, + "ammo": 232942, + "repair": 909596 + }, + "fuel_units": { + "purchased": 0, + "scooped": 2232 + }, + "insurance": { + "claims": 24, + "value": 2714138 + } + }, + "wealth": { + "maxCredits": 13882052 + }, + "trade": { + "marketIds": [ + "3228160256", + "3228321792", + "3228393472", + "3228129280", + "3228062976", + "3227948288", + "3227868160", + "3228192000", + "3228189952", + "3228190208", + "3228191232", + "3228190464", + "3228190720", + "3228244480", + "3228249088", + "3228264192", + "3228252160", + "3228251904", + "3228190976", + "3228191488", + "3228249344", + "3227868416", + "3228248064", + "3228470784", + "3228244736", + "3228471040", + "3228339968", + "3228340224", + "3228244224", + "3228247808", + "3228329472", + "3228390400", + "3223529472", + "128129272", + "3223288832", + "3228081408", + "3228081152", + "3227955968", + "3227957248", + "3228063232", + "3228028672", + "3227998208", + "3227998464", + "3228066560", + "128134648", + "128154360", + "3228040192", + "128153848", + "3228064768", + "3228065024", + "3228064256", + "3227919360", + "128169976", + "3228064000", + "128073720", + "3228077824", + "128073464", + "3228120576" + ], + "furthest": { + "distance": 99.480201783445, + "origin": 128129272, + "destination": "3228390400" + }, + "largestProfit": { + "value": 171720, + "commodity": "Beryllium", + "qty": 120, + "marketId": "3228081152" + }, + "largestProfitPerItem": { + "value": 1433, + "commodity": "Beryllium", + "marketId": "3228081152" + }, + "count": 429, + "qty": 22410, + "profit": 14759658, + "totalDistance": 198621.73693075 + }, + "mining": { + "largestProfit": { + "value": 0, + "commodity": 0, + "qty": 0, + "marketId": 0 + }, + "largestProfitPerItem": { + "value": 0, + "commodity": 0, + "marketId": 0 + }, + "count": 0, + "qty": 0, + "profit": 0, + "converted": { + "qty": 0 + } + }, + "blackMarket": { + "marketIds": [ + "3227868160", + "3228338688", + "3228189952", + "3228247808", + "3228390144", + "128130296" + ], + "furthest": { + "distance": 69224.099624264, + "origin": 0, + "destination": "3228338688" + }, + "largestProfit": { + "value": 132005, + "commodity": "OnionHead", + "qty": 17, + "marketId": "3228390144" + }, + "largestProfitPerItem": { + "value": 13130, + "commodity": "MotronaExperienceJelly", + "marketId": "128130296" + }, + "count": 13, + "qty": 67, + "profit": 292429, + "totalDistance": 556021.41706887 + }, + "stolenGoods": { + "largestProfit": { + "value": 65650, + "commodity": "MotronaExperienceJelly", + "qty": 5, + "marketId": "128130296" + }, + "largestProfitPerItem": { + "value": 13130, + "commodity": "MotronaExperienceJelly", + "marketId": "128130296" + }, + "count": 10, + "qty": 38, + "profit": 157238 + }, + "combat": { + "bounty": { + "highestClaimed": 134706, + "qty": 239, + "value": 1215158 + }, + "bond": { + "qty": 223, + "value": 1559000 + } + }, + "crime": { + "fine": { + "qty": 11, + "value": 135334, + "factions": [] + }, + "bounty": { + "highest": { + "value": 0, + "faction": 0, + "systemId": 0 + }, + "qty": 0, + "value": 0, + "factions": [] + }, + "stolenCargo": { + "qty": 75, + "value": 442840 + } + }, + "PVP": { + "kills": { + "ranks": { + "r0": 2, + "r1": 1, + "r2": 2, + "r3": 0, + "r4": 1, + "r5": 0, + "r6": 0, + "r7": 0, + "r8": 0 + } + } + }, + "NCP": { + "kills": { + "ranks": { + "r0": 2, + "r1": 4, + "r2": 2, + "r3": 3, + "r4": 1, + "r5": 0, + "r6": 0, + "r7": 0, + "r8": 0 + } + } + }, + "prealloc": true, + "ranks": { + "combat": { + "1": { + "ts": 1417719389, + "gt": 144380 + }, + "2": { + "ts": 1419164701, + "gt": 328001 + }, + "3": { + "ts": 1419789595, + "gt": 381168 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "crime": { + "1": { + "ts": 0, + "gt": 0 + }, + "2": { + "ts": 0, + "gt": 0 + }, + "3": { + "ts": 0, + "gt": 0 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "explore": { + "1": { + "ts": 1416679505, + "gt": 7340 + }, + "2": { + "ts": 1416773896, + "gt": 32330 + }, + "3": { + "ts": 1425813076, + "gt": 645416 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "trade": { + "1": { + "ts": 1417041602, + "gt": 57777 + }, + "2": { + "ts": 1417208591, + "gt": 78181 + }, + "3": { + "ts": 1417804896, + "gt": 154613 + }, + "4": { + "ts": 1421439724, + "gt": 490202 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "federation": { + "1": { + "ts": 1418494995, + "gt": 227112 + }, + "2": { + "ts": 1418496671, + "gt": 227112 + }, + "3": { + "ts": 1419692207, + "gt": 369093 + }, + "4": { + "ts": 1420382992, + "gt": 418109 + }, + "5": { + "ts": 1437243056, + "gt": 847776 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "empire": { + "1": { + "ts": 1437243056, + "gt": 847776 + }, + "2": { + "ts": 0, + "gt": 0 + }, + "3": { + "ts": 0, + "gt": 0 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + } + }, + "lastModulesBought": [ + { + "market": "EG Main HQ", + "module": "Hpt_ChaffLauncher_Tiny", + "value": 8500 + }, + { + "market": "Godel Dock", + "module": "Int_DockingComputer_Standard", + "value": 4500 + }, + { + "market": "Quimper Ring", + "module": "Hpt_ElectronicCountermeasure_Tiny", + "value": 12500 + }, + { + "market": "Quimper Ring", + "module": "Decal_Combat_Competent", + "value": 0 + }, + { + "market": "Quimper Ring", + "module": "Int_HullReinforcement_Size4_Class2", + "value": 195000 + } + ], + "illegalGoods": { + "largestProfit": { + "value": 132005, + "commodity": "OnionHead", + "qty": 17, + "marketId": "3228390144" + }, + "largestProfitPerItem": { + "value": 13130, + "commodity": "MotronaExperienceJelly", + "marketId": "128130296" + }, + "count": 10, + "qty": 45, + "profit": 239863 + }, + "NPC": { + "kills": { + "ranks": { + "r1": 14, + "r3": 17, + "r2": 14, + "r0": 3, + "r4": 12, + "r5": 13, + "rArray": 2, + "r8": 3, + "r7": 2, + "r6": 5 + } + } + }, + "vanishCounters": { + "amongPeers": 5, + "notInDanger": 5, + "isNotDying": 2 + } + }, + "ship": { + "name": "CobraMkIII", + "modules": { + "MediumHardpoint1": { + "module": { + "id": 128049460, + "name": "Hpt_MultiCannon_Gimbal_Medium", + "value": 57000, + "unloaned": 57000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 90, + "hopper": 2100 + } + } + }, + "MediumHardpoint2": { + "module": { + "id": 128049386, + "name": "Hpt_PulseLaser_Gimbal_Medium", + "value": 35400, + "unloaned": 35400, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "SmallHardpoint1": { + "module": { + "id": 128049385, + "name": "Hpt_PulseLaser_Gimbal_Small", + "value": 6600, + "unloaned": 6600, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "SmallHardpoint2": { + "module": { + "id": 128049459, + "name": "Hpt_MultiCannon_Gimbal_Small", + "value": 14250, + "unloaned": 14250, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 90, + "hopper": 2100 + } + } + }, + "TinyHardpoint1": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 8500, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "TinyHardpoint2": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 8500, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "Decal1": { + "module": { + "id": 128667738, + "name": "Decal_Combat_Competent", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Decal2": { + "module": { + "id": 128667655, + "name": "Decal_Skull3", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Decal3": { + "module": { + "id": 128667655, + "name": "Decal_Skull3", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PaintJob": { + "module": { + "id": 128666731, + "name": "PaintJob_CobraMkIII_Stripe2_03", + "value": 0, + "health": 1000000, + "on": true, + "priority": 1, + "free": true, + "unloaned": 0 + } + }, + "Armour": { + "module": { + "id": 128049282, + "name": "CobraMkIII_Armour_Grade3", + "value": 341746, + "unloaned": 341746, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PowerPlant": { + "module": { + "id": 128064045, + "name": "Int_Powerplant_Size4_Class3", + "value": 178898, + "unloaned": 178898, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "MainEngines": { + "module": { + "id": 128064082, + "name": "Int_Engine_Size4_Class5", + "value": 1610080, + "unloaned": 1610080, + "free": false, + "health": 1000000, + "on": true, + "priority": 0 + } + }, + "FrameShiftDrive": { + "module": { + "id": 128064117, + "name": "Int_Hyperdrive_Size4_Class5", + "value": 1610080, + "unloaned": 1610080, + "free": false, + "health": 1000000, + "on": true, + "priority": 3 + } + }, + "LifeSupport": { + "module": { + "id": 128064149, + "name": "Int_LifeSupport_Size3_Class2", + "value": 10133, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "unloaned": 10133 + } + }, + "PowerDistributor": { + "module": { + "id": 128064192, + "name": "Int_PowerDistributor_Size3_Class5", + "value": 158331, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "unloaned": 158331 + } + }, + "Radar": { + "module": { + "id": 128064229, + "name": "Int_Sensors_Size3_Class2", + "value": 10133, + "unloaned": 10133, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "FuelTank": { + "module": { + "id": 128064349, + "name": "Int_FuelTank_Size4_Class3", + "value": 24734, + "health": 1000000, + "on": true, + "priority": 1, + "free": false, + "unloaned": 24734 + } + }, + "Slot01_Size4": { + "module": { + "id": 128668544, + "name": "Int_HullReinforcement_Size4_Class2", + "value": 195000, + "unloaned": 195000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot02_Size4": { + "module": { + "id": 128064314, + "name": "Int_ShieldCellBank_Size4_Class2", + "value": 28373, + "unloaned": 28373, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 2 + } + } + }, + "Slot03_Size4": { + "module": { + "id": 128064274, + "name": "Int_ShieldGenerator_Size4_Class2", + "value": 59633, + "unloaned": 59633, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot04_Size2": { + "module": { + "id": 128668540, + "name": "Int_HullReinforcement_Size2_Class2", + "value": 36000, + "unloaned": 36000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot05_Size2": { + "module": { + "id": 128666709, + "name": "Int_FSDInterdictor_Size2_Class2", + "value": 100800, + "unloaned": 100800, + "free": false, + "health": 1000000, + "on": true, + "priority": 3 + } + }, + "Slot06_Size2": { + "module": { + "id": 128049549, + "name": "Int_DockingComputer_Standard", + "value": 4500, + "unloaned": 4500, + "free": false, + "health": 1000000, + "on": false, + "priority": 0 + } + } + }, + "value": { + "hull": 235787, + "modules": 4498691, + "cargo": 0, + "total": 4734478, + "unloaned": 4498691 + }, + "free": false, + "health": { + "hull": 1000000, + "shield": 1000000, + "shieldup": true + }, + "wear": { + "dirt": 11844, + "fade": 358, + "tear": 35956, + "game": 5207 + }, + "cockpitBreached": false, + "oxygenRemaining": 450000, + "fuel": { + "capacity": 16, + "lvl": 16 + }, + "reserve": { + "lvl": 1 + }, + "cargo": { + "capacity": 0, + "qty": 0, + "items": [] + }, + "passengers": [], + "refinery": null + }, + "ships": { + "0": { + "name": "SideWinder", + "station": { + "id": "3228338688", + "name": "Nicollet City" + }, + "starsystem": { + "id": "8055378940618", + "name": "Chang Yeh", + "systemaddress": "8055378940618" + } + }, + "2": { + "name": "CobraMkIII", + "station": { + "id": "3223840768", + "name": "Watt Ring" + }, + "starsystem": { + "id": "65179", + "name": "Ennead", + "systemaddress": "6680989373138" + } + } + } +} \ No newline at end of file diff --git a/utils/src/test/resources/edce/edce2.json b/utils/src/test/resources/edce/edce2.json new file mode 100644 index 0000000..50f5678 --- /dev/null +++ b/utils/src/test/resources/edce/edce2.json @@ -0,0 +1,2479 @@ +{ + "commander": { + "id": 126367, + "name": "MoHax", + "credits": 23883052, + "debt": 0, + "currentShipId": 2, + "alive": true, + "docked": true, + "rank": { + "combat": 3, + "trade": 4, + "explore": 3, + "crime": 0, + "service": 0, + "empire": 0, + "federation": 2, + "power": 3 + } + }, + "lastSystem": { + "id": "63799", + "name": "Mitra", + "faction": "Independent" + }, + "lastStarport": { + "id": "3223891712", + "name": "Tokubei Holdings", + "faction": "Independent", + "ships": { + "shipyard_list": { + "SideWinder": { + "id": 128049249, + "name": "SideWinder", + "basevalue": 32000 + }, + "Hauler": { + "id": 128049261, + "name": "Hauler", + "basevalue": 52720 + }, + "CobraMkIII": { + "id": 128049279, + "name": "CobraMkIII", + "basevalue": 379718 + }, + "Adder": { + "id": 128049267, + "name": "Adder", + "basevalue": 87808 + }, + "Type6": { + "id": 128049285, + "name": "Type6", + "basevalue": 1045945 + }, + "Eagle": { + "id": 128049255, + "name": "Eagle", + "basevalue": 44800 + } + }, + "unavailable_list": [] + } + }, + "stats": { + "game_time": 847776, + "missions": { + "courier": { + "missionsAccepted": 64, + "furthest": { + "distance": 9.8418152860638, + "origin": 3228189952, + "destination": "3227868416" + }, + "highestEarnings": { + "value": 0, + "distance": 0, + "origin": 0, + "destination": 0, + "faction": 0 + }, + "missionsCompleted": 36, + "creditsEarned": -9119, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 1109, + "faction": "Defence Force of LHS 1541", + "type": "CourierLegal" + }, + { + "value": 1018, + "faction": "Defence Force of LHS 1541", + "type": "CourierLegal" + }, + { + "value": 487, + "faction": "Defence Force of LHS 1541", + "type": "CourierLegal" + } + ] + }, + "deliver": { + "missionsAccepted": 105, + "furthest": { + "distance": 9.8944626243672, + "origin": 3228393472, + "destination": "3228115456" + }, + "highestEarnings": { + "value": 0, + "commodity": 0, + "qty": 0, + "distance": 0, + "origin": 0, + "destination": 0, + "faction": 0 + }, + "missionsCompleted": 98, + "creditsEarned": 1164220, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 1988, + "faction": "Crimson Energy Systems", + "type": "DeliveryLegal" + }, + { + "value": 107316, + "faction": "Gold Netcoms Commodities", + "type": "DeliveryLegal" + }, + { + "value": 65546, + "faction": "Allied LHS 1507 Dominion", + "type": "DeliveryLegal" + } + ] + }, + "collect": { + "missionsAccepted": 175, + "furthest": { + "distance": 0, + "origin": 0, + "destination": 0 + }, + "highestEarnings": { + "value": 0, + "commodity": 0, + "qty": 0, + "distance": 0, + "origin": 0, + "destination": 0, + "faction": 0 + }, + "missionsCompleted": 0, + "creditsEarned": 0, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 22145, + "faction": "Defence Force of LHS 1541", + "type": "Collect" + }, + { + "value": 3420, + "faction": "Defence Force of LHS 1541", + "type": "Collect" + }, + { + "value": 34772, + "faction": "Wolf 1323 Life Corp.", + "type": "Collect" + } + ] + }, + "assassin": { + "highestEarnings": { + "value": 199640, + "origin": "3228064512", + "faction": 0 + }, + "missionsCompleted": 25, + "creditsEarned": 1147873, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 36176, + "faction": "United Euryale First", + "type": "Massacre" + }, + { + "value": 99646, + "faction": "United Euryale First", + "type": "Assassinate" + }, + { + "value": 42589, + "faction": "United Euryale First", + "type": "Assassinate" + } + ], + "missionsAccepted": 52 + }, + "bountyHunter": { + "highestEarnings": { + "value": 0, + "origin": 0, + "faction": 0 + }, + "missionsCompleted": 0, + "creditsEarned": 0, + "missionsFailed": 0, + "latestCompleted": [], + "missionsAccepted": 0 + } + }, + "explore": { + "hyperspaceJumps": 1563, + "totalHyperspaceDistance": 26845.369566661, + "visited": { + "starsystem": [ + "GCRV 4654", + "FK5 2550", + "LHS 1914", + "Siren", + "Geawenki", + "Thiin", + "LP 307-8", + "StKM 1-626", + "BD+30 1423", + "LHS 6103", + "LHS 1814", + "LHS 1794", + "Nandjabinja", + "Susanoo", + "Wong Sher", + "74 k Orionis", + "BD+08 1303", + "Iansan", + "LHS 1857", + "Yin Sector HW-W b1-3", + "Nihursaga", + "Hahgwe", + "Alzirr", + "Toog", + "Yin Sector ZE-A d120", + "Chang Yeh", + "G 108-26", + "HR 2251", + "LHS 1838", + "Breksta", + "Amait", + "Cosi", + "Yggdrajang", + "LTT 17868", + "Yin Sector EQ-Y b2", + "Yin Sector EQ-Y b1", + "Zandu", + "Flech", + "Julanggarri", + "Ross 878", + "Kamchata", + "Tamalhikas", + "Katocudatta", + "Lumbla", + "Tascheter Sector FG-X b1-6", + "Jita Ten", + "71 Orionis", + "Tao Ti", + "LHS 1743", + "LFT 392", + "Ndozins", + "LHS 21", + "Geras", + "G 85-36", + "LP 417-213", + "V1402 Orionis", + "MCC 467", + "Suyarang", + "Chonost", + "Fular", + "LTT 11519", + "Tote", + "Psi Tauri", + "Wolf 1301", + "Tascheter Sector MS-T a3-2", + "Achlys", + "BD+14 831", + "Kungurutii", + "Ross 49", + "Dewikum", + "Yin Sector DQ-Y b1", + "Tascheter Sector FG-X b1-1", + "Tascheter Sector EG-X b1-1", + "Cahuile", + "Tascheter Sector WE-Q a5-1", + "Tascheter Sector DG-O a6-0", + "LP 771-72", + "Kappa Fornacis", + "LP 831-72", + "Zeus", + "Tascheter Sector HM-M a7-2", + "Tascheter Sector BL-O a6-1", + "Tascheter Sector YE-Q a5-0", + "Pachanwen", + "Ranginui", + "LHS 1928", + "LP 605-37", + "Sekhemet", + "Hlocidirus", + "Fionn", + "LHS 1920", + "Tascheter Sector GW-W c1-18", + "LFT 377", + "Kunlun", + "Tascheter Sector HM-M a7-1", + "LTT 1349", + "LFT 179", + "Jibitoq", + "BD-18 394", + "Autahenetsi", + "Ceti Sector AV-Y c17", + "Tetekhe", + "Ceti Sector FW-V b2-5", + "LTT 1141", + "Bandizel", + "Artemis", + "LHS 1409", + "Tascheter Sector EG-Y d106", + "Tascheter Sector BG-O a6-1", + "Tascheter Sector WZ-P a5-1", + "LHS 1573", + "G 100-4", + "V491 Persei", + "Sui Xing", + "Bonde", + "Bhadaba", + "Uchaluroja", + "Manamaya", + "LHS 197", + "Ashandras", + "LTT 11455", + "Al-Qaum", + "Herishep", + "LTT 11503", + "Ross 592", + "Itza", + "Capukanga", + "LHS 1483", + "LP 356-106", + "BD+24 543", + "39 Tauri", + "KP Tauri", + "Wolf 1278", + "Lowne 1", + "Meri", + "Apollo", + "LHS 1516", + "Wolf 1323", + "Marduk", + "LHS 1541", + "Wolf 1325", + "G 95-22", + "LHS 1507", + "Bao Yan Luo", + "Tascheter Sector HH-V b2-5", + "G 173-39", + "G 173-53", + "Theta Persei", + "LHS 1446", + "Lorana", + "Anlave", + "Wolf 46", + "V388 Cassiopeiae", + "Zeessze", + "Eta Cassiopeiae", + "Groombridge 34", + "Ross 248", + "Ross 730", + "Altair", + "Sol", + "Alpha Centauri", + "LHS 18", + "Bonitou", + "LTT 10482", + "Cephei Sector BA-A d103", + "Cephei Sector DQ-Y b4", + "Iota Cassiopeiae", + "Funji", + "T'ienimi", + "HIP 12512", + "Col 285 Sector QT-Q c5-14", + "HIP 10466", + "Col 285 Sector QT-Q c5-9", + "Col 285 Sector BH-J b10-4", + "Col 285 Sector BH-J b10-2", + "Col 285 Sector PT-Q c5-13", + "Col 285 Sector WA-L b9-0", + "HR 567", + "Col 285 Sector MY-Q c5-3", + "Col 285 Sector MY-Q c5-15", + "Undalibaluf", + "Col 285 Sector GY-F b12-4", + "BD+65 1984", + "Col 285 Sector HY-F b12-0", + "HIP 3509", + "Nootkena", + "Inovandar", + "Tegidana", + "BD+44 1040", + "LHS 1765", + "Selniang", + "Skuta", + "Gani", + "Enuma", + "Gkutat", + "Djinbin", + "Col 285 Sector NG-H a26-5", + "Col 285 Sector MA-J a25-4", + "Col 285 Sector SG-H a26-2", + "Col 285 Sector JB-N c7-7", + "Col 285 Sector JB-N c7-4", + "Synuefe XT-D a94-2", + "h2 Puppis", + "Synuefe BP-D a94-1", + "O Puppis", + "Synuefe KB-A a96-2", + "HIP 40430", + "Synuefe WR-H d11-48", + "Synuefe WQ-Z b47-5", + "Gliese 3434", + "Synuefe YK-N c23-14", + "Canopus", + "Synuefe ZK-N c23-22", + "Synuefe BH-Z b47-1", + "HIP 34755", + "HIP 35652", + "HIP 36489", + "47 G. Carinae", + "Synuefe BM-Z b47-8", + "Q Carinae", + "Synuefe DW-L c24-30", + "Synuefe IS-X b48-3", + "Chi Carinae", + "Synuefe HX-X b48-2", + "HIP 40929", + "HIP 42504", + "HIP 42459", + "E Velorum", + "Synuefe JI-W b49-12", + "HIP 42374", + "HR 3503", + "HIP 42823", + "HR 3448", + "HIP 42726", + "Omicron Velorum", + "HIP 42715", + "IC 2391 Sector LI-S b4-10", + "IC 2391 Sector SJ-Q b5-10", + "HIP 43433", + "IC 2391 Sector UJ-Q b5-8", + "IC 2391 Sector VJ-Q b5-1", + "HIP 43015", + "IC 2391 Sector MC-V c2-14", + "Synuefe GL-S b51-9", + "Synuefe LR-Q b52-2", + "V473 Carinae", + "Synuefe JE-E d13-115", + "Synuefe RX-O b53-7", + "Synuefe JE-E d13-94", + "Synuefe WD-N b54-1", + "Tureis", + "Synuefe BK-L b55-4", + "Synuefe CV-E c28-23", + "Synuefe OK-C d14-6", + "HIP 47751", + "HIP 48127", + "Synuefe KM-G b58-4", + "Synuefe XO-L a117-1", + "Synuefe AA-K a118-6", + "Wregoe KZ-S b58-7", + "HR 4091", + "Praea Euq SG-A b1", + "Praea Euq XM-Y b2", + "Praea Euq ZM-Y b1", + "Praea Euq MA-A d153", + "Praea Euq ZR-Y b0", + "Praea Euq CM-Y c9", + "HD 92405", + "Praea Euq FO-V b2-1", + "Praea Euq KU-T b3-5", + "Praea Euq PL-Y d85", + "Praea Euq TG-Q b5-3", + "HD 95633", + "Praea Euq ZM-O b6-0", + "Praea Euq LD-V c2-20", + "Praea Euq UR-W d1-63", + "Praea Euq EY-M b7-4", + "Praea Euq GJ-L b8-1", + "Praea Euq HJ-L b8-4", + "Praea Euq VR-W d1-80", + "Praea Euq RZ-R c4-2", + "Praea Euq JZ-J b9-0", + "Pro Eurl AI-I b10-3", + "Pro Eurl EW-W d1-55", + "Pro Eurl KD-S c4-7", + "Pro Eurl EW-W d1-39", + "HD 98557", + "Pro Eurl XR-I b10-0", + "Pro Eurl AN-I b10-3", + "Pro Eurl PJ-Q c5-12", + "Pro Eurl IC-V d2-40", + "Pro Eurl JC-V d2-35", + "Pro Eurl KZ-E b12-2", + "NGC 3532 Sector ZK-X d1-59", + "Pro Eurl NK-D b13-0", + "Pro Eurl HH-V d2-32", + "Pro Eurl JU-D b13-0", + "HD 100476", + "Pro Eurl LU-D b13-0", + "HD 99573", + "HD 99081", + "Pro Eurl IO-F b12-1", + "NGC 3532 Sector YP-X d1-24", + "NGC 3532 Sector EJ-M b9-1", + "NGC 3532 Sector DC-T c4-9", + "NGC 3532 Sector AL-X d1-30", + "NGC 3532 Sector PF-K b10-0", + "NGC 3532 Sector RA-K b10-1", + "NGC 3532 Sector BL-X d1-48", + "NGC 3532 Sector FR-V d2-53", + "NGC 3532 Sector EI-G b12-2", + "NGC 3532 Sector FI-G b12-0", + "NGC 3532 Sector FI-G b12-4", + "HD 98767", + "NGC 3532 Sector PU-C b14-0", + "NGC 3532 Sector RP-C b14-5", + "HD 98896", + "NGC 3532 Sector WV-A b15-4", + "NGC 3532 Sector YK-N c7-10", + "NGC 3532 Sector ID-X b16-2", + "NGC 3532 Sector LO-V b17-2", + "Pro Eurl BW-K b22-1", + "Pro Eurl AB-L b22-2", + "Pro Eurl OS-U e2-4", + "Pro Eurl CQ-P d5-68", + "Pro Eurl GR-D c12-2", + "Pro Eurl CQ-P d5-27", + "Pro Eurl OI-H b24-3", + "Pro Eurl CQ-P d5-21", + "Pro Eurl MC-J b23-2", + "Pro Eurl DQ-P d5-63", + "Pro Eurl ZJ-R d4-4", + "Pro Eurl NC-J b23-2", + "HD 99218", + "Pro Eurl JR-D c12-12", + "Pro Eurl DQ-P d5-39", + "Pro Eurl ZU-D b26-2", + "Pro Eurl HW-N d6-37", + "Pro Eurl HH-A b28-3", + "Pro Eurl QD-A c14-12", + "Pro Eurl UJ-Y c14-2", + "Pro Eurl LC-M d7-2", + "HD 104214", + "Pro Eurl WK-T b31-2", + "Pro Eurl ZP-W c15-1", + "Pro Eurl KN-P b33-2", + "Pro Eurl GR-U c16-9", + "Pro Eurl MN-P b33-1", + "Pro Eurl TO-N b34-0", + "Pro Eurl WJ-N b34-3", + "Pro Eurl XJ-N b34-6", + "Pro Eurl UD-P b33-0", + "Pro Eurl BF-N b34-4", + "Pro Eurl CF-N b34-1", + "Pro Eurl DF-N b34-2", + "Pro Eurl UD-K d8-47", + "Pro Eurl UD-K d8-85", + "Pro Eurl KG-L b35-3", + "Pro Eurl UD-K d8-73", + "Pro Eurl MG-L b35-5", + "Pro Eurl PB-L b35-1", + "Prua Dryoae UQ-Q a73-3", + "Prua Dryoae CS-O a74-1", + "Prua Dryoae FH-T b37-5", + "HD 101131", + "Prua Dryoae WF-L d9-50", + "Prua Dryoae LN-R b38-3", + "Prua Dryoae PT-P b39-7", + "Prua Dryoae MN-S e4-12", + "Prua Dryoae IJ-C a81-1", + "Prua Dryoae CD-E a80-3", + "Prua Dryoae YH-E a80-0", + "Pro Eurl ZJ-I d9-63", + "Pro Eurl HA-E b39-0", + "Pro Eurl ZJ-I d9-0", + "Pro Eurl HA-E b39-4", + "Pro Eurl ZJ-I d9-3", + "Pro Eurl ZD-G b38-0", + "Pro Eurl XI-G b38-0", + "HD 102728", + "Pro Eurl XI-G b38-1", + "Pro Eurl EK-E b39-4", + "Pro Eurl AK-I d9-55", + "Pro Eurl EA-P c19-3", + "Prua Dryoae LU-A a82-0", + "Prua Dryoae AM-J d10-40", + "Prua Dryoae AM-J d10-53", + "Prua Dryoae AM-J d10-5", + "Prua Dryoae AG-M b41-0", + "Prua Dryoae GM-K b42-1", + "Prua Dryoae HM-K b42-0", + "Prua Dryoae UU-R a86-3", + "Prua Dryoae CM-J d10-3", + "Prua Dryoae HJ-R c21-6", + "Prua Dryoae BV-R a86-5", + "Prua Dryoae DV-R a86-1", + "Prua Dryoae IJ-R c21-9", + "HD 101035", + "Prua Dryoae JJ-R c21-7", + "Swoiphs PB-Q a87-1", + "Swoiphs WH-O a88-5", + "Sifeae JD-V b43-0", + "Swoiphs BI-O a88-2", + "Sifeae LD-V b43-2", + "Sifeae VR-J c22-14", + "Sifeae RJ-T b44-5", + "Sifeae ZK-P e5-0", + "Sifeae UJ-T b44-2", + "Sifeae XU-R b45-3", + "Sifeae YU-R b45-6", + "Sifeae DB-Q b46-2", + "Sifeae EB-Q b46-2", + "Sifeae JH-O b47-5", + "HD 100137", + "Sifeae LH-O b47-3", + "NGC 4463 Sector TT-Z d42", + "NGC 4463 Sector QT-C b2-6", + "NGC 4463 Sector VZ-A b3-3", + "NGC 4463 Sector TT-Z d46", + "NGC 4463 Sector MS-Z c1-16", + "NGC 4463 Sector MS-Z c1-18", + "NGC 4463 Sector YZ-X d1-24", + "NGC 4463 Sector JX-V b5-2", + "NGC 4463 Sector ZZ-X d1-86", + "NGC 4463 Sector ZZ-X d1-82", + "NGC 4463 Sector VE-S b7-1", + "NGC 4463 Sector XZ-R b7-3", + "NGC 4463 Sector ZZ-X d1-89", + "NGC 4463 Sector ZZ-X d1-17", + "NGC 4463 Sector MH-H a16-1", + "NGC 4463 Sector GB-U c4-1", + "NGC 4463 Sector PX-N b9-2", + "NGC 4463 Sector GB-W d2-41", + "NGC 4463 Sector YJ-K b11-0", + "NGC 4463 Sector GB-W d2-37", + "NGC 4463 Sector AF-T a23-3", + "HD 101794", + "NGC 4463 Sector HL-R a24-1", + "NGC 4463 Sector KW-G b13-6", + "NGC 4463 Sector XD-M a27-1", + "NGC 4463 Sector ZD-M a27-2", + "NGC 4463 Sector JQ-I a29-1", + "NGC 4463 Sector MH-U d3-27", + "NGC 4463 Sector XN-D a32-2", + "NGC 4463 Sector DU-B a33-2", + "NGC 4463 Sector NG-Y a34-1", + "NGC 4463 Sector RN-S d4-3", + "NGC 4463 Sector ZS-U a36-3", + "NGC 4463 Sector GZ-S a37-0", + "NGC 4463 Sector OA-R a38-0", + "NGC 4463 Sector SL-P a39-1", + "NGC 4609 Sector JU-Y a5-1", + "NGC 4609 Sector SG-V a7-0", + "NGC 4609 Sector AZ-V b4-0", + "NGC 4609 Sector AK-Z d29", + "NGC 4609 Sector DA-X c2-7", + "NGC 4609 Sector AK-Z d63", + "NGC 4609 Sector AK-Z d17", + "NGC 4609 Sector AK-Z d36", + "NGC 4609 Sector LB-V c3-5", + "NGC 4609 Sector UR-R b6-4", + "NGC 4609 Sector MB-V c3-11", + "NGC 4609 Sector FQ-X d1-64", + "NGC 4609 Sector NB-V c3-9", + "NGC 4609 Sector CY-P b7-4", + "NGC 4609 Sector GQ-X d1-33", + "NGC 4609 Sector FY-P b7-4", + "NGC 4609 Sector GY-P b7-2", + "NGC 4609 Sector QB-V c3-16", + "Aucops TS-O b12-3", + "Blaa Eoq IQ-O b12-2", + "Blaa Eoq OW-M b13-3", + "Blaa Eoq TN-T c6-5", + "Blaa Eoq RH-L b14-4", + "Blaa Eoq UN-T c6-4", + "Blaa Eoq SL-T a30-1", + "Blaa Eoq UL-T a30-1", + "Blaa Eoq XL-T a30-2", + "Blaa Eoq DS-R a31-0", + "Blaa Eoq OU-V d3-3", + "Blaa Eoq MY-P a32-0", + "Blaa Eoq SE-O a33-1", + "Blaa Eoq YK-M a34-2", + "Blaa Eoq AL-M a34-3", + "Blaa Eoq CL-M a34-5", + "Blaa Eoq IR-K a35-0", + "Blaa Eoq QU-V d3-34", + "Blaa Eoq PX-I a36-2", + "Blaa Eoq QU-V d3-38", + "Blaa Eoq RU-V d3-17", + "Blaa Eoq BP-F a38-2", + "Blaa Eoq EP-F a38-3", + "Phylurn AU-Q b18-5", + "Blaa Eoq IP-F a38-4", + "Blaa Eoq LP-F a38-0", + "Blaa Eoq WA-U d4-8", + "Blaa Eoq PP-F a38-2", + "Blaa Eoq RP-F a38-0", + "Blaa Eoq XA-U d4-22", + "HD 99619", + "Blaa Eoq XP-F a38-2", + "Col 240 Sector MX-E a42-1", + "Col 240 Sector HJ-G c11-3", + "Col 240 Sector OX-M b22-1", + "Col 240 Sector PX-M b22-0", + "Col 240 Sector ZD-D a43-3", + "Col 240 Sector YX-E a42-1", + "Col 240 Sector KJ-G c11-4", + "Col 240 Sector DY-E a42-3", + "Col 240 Sector JE-D a43-0", + "Col 240 Sector HY-E a42-1", + "Col 240 Sector JY-E a42-1", + "Col 240 Sector LO-G c11-5", + "Col 240 Sector RJ-Q d5-27", + "Col 240 Sector MO-G c11-10", + "Col 240 Sector SJ-Q d5-51", + "Col 240 Sector SJ-Q d5-46", + "Col 240 Sector ZR-O b21-5", + "Col 240 Sector AS-O b21-3", + "Col 240 Sector OO-G c11-8", + "Col 240 Sector TJ-Q d5-54", + "Col 240 Sector ES-O b21-0", + "Col 240 Sector JY-M b22-0", + "2MASS J11132054-6053363", + "2MASS J11130497-6049452", + "TYC 8959-364-2", + "2MASS J11130472-6047135", + "NGC 3590 MV 4", + "NGC 3590 CLA 15", + "HD 306185", + "2MASS J11123987-6047011", + "NGC 3590 MV 12", + "NGC 3590 Sector UT-R a4-1", + "NGC 3590 Sector BA-A d12", + "Col 240 Sector AB-J b24-0", + "Col 240 Sector GH-H b25-0", + "Col 240 Sector HH-H b25-4", + "Col 240 Sector FW-C c13-7", + "IC 2944 Sector PP-Q b8-0", + "IC 2944 Sector UV-O b9-0", + "IC 2944 Sector VV-O b9-2", + "IC 2944 Sector WV-O b9-0", + "IC 2944 Sector WE-Y d1-26", + "IC 2944 Sector EX-M b10-2", + "IC 2944 Sector FX-M b10-0", + "IC 2944 Sector ER-S c5-0", + "IC 2944 Sector LD-L b11-2", + "IC 2944 Sector SE-J b12-1", + "IC 2944 Sector VP-H b13-0", + "IC 2944 Sector WP-H b13-1", + "IC 2944 Sector KX-Q c6-5", + "IC 2944 Sector CW-F b14-2", + "IC 2944 Sector HR-U d3-13", + "IC 2944 Sector FG-X e1-3", + "IC 2944 Sector QD-P c7-5", + "IC 2944 Sector RO-A b17-0", + "IC 2944 Sector SO-A b17-0", + "IC 2944 Sector TO-A b17-0", + "Statue of Liberty Sector FW-W c1-2", + "Statue of Liberty Sector OY-R b4-1", + "Statue of Liberty Sector LS-T b3-0", + "Statue of Liberty Sector OD-S b4-0", + "Statue of Liberty Sector LX-T b3-2", + "Statue of Liberty Sector DL-Y d25", + "Statue of Liberty Sector FG-Y e5", + "Statue of Liberty Sector PI-S b4-0", + "Statue of Liberty Sector QI-S b4-0", + "Statue of Liberty Sector FW-K a9-1", + "Statue of Liberty Sector IW-K a9-0", + "IC 2944 Sector XH-C a34-0", + "IC 2944 Sector ZH-C a34-0", + "IC 2944 Sector GO-A a35-0", + "IC 2944 Sector GT-A a35-1", + "IC 2944 Sector KO-A a35-1", + "IC 2944 Sector KT-A a35-2", + "IC 2944 Sector MR-U d3-20", + "IC 2944 Sector LI-C a34-0", + "Blua Eoq CI-G a65-0", + "Blua Eoq DL-Y g0", + "Blua Eoq GC-C b33-1", + "Blua Eoq TA-B a68-0", + "Blua Eoq TF-B a68-0", + "Blo Thae QH-U c16-7", + "Blo Thae MV-M b34-2", + "Blo Thae LA-N b34-1", + "NGC 3572 Sector DB-X c1-0", + "NGC 3572 Sector FR-V b2-2", + "NGC 3572 Sector AV-Y c1", + "NGC 3572 Sector EB-X c1-5", + "NGC 3572 Sector IR-V b2-0", + "NGC 3572 Sector FB-X c1-4", + "NGC 3572 Sector YE-A g2", + "NGC 3572 Sector IR-W d1-9", + "NGC 3572 Sector QN-S b4-0", + "Blo Thae BI-I b37-1", + "Blo Thae AP-I d9-17", + "Blo Thae BE-R c18-1", + "Blo Thae AS-I b37-0", + "Blo Thae BS-I b37-0", + "Blo Thae YL-K b36-0", + "Blo Thae BJ-R c18-4", + "Tyriedgoea MO-I d9-2", + "Tyriedgoea MO-I d9-20", + "Tyriedgoea PJ-K b36-1", + "Tyriedgoea II-K d8-12", + "Tyriedgoea IX-N b34-0", + "Tyriedgoea DW-P b33-0", + "Tyriedgoea BB-Q b33-0", + "Tyriedgoea AQ-R b32-0", + "Tyriedgoea DH-M d7-10", + "Tyriedgoea ZU-R b32-0", + "Tyriedgoea VO-T b31-0", + "Tyriedgoea UD-V b30-0", + "Tyriedgoea DH-M d7-2", + "Tyriedgoea LW-Y b28-0", + "Tyriedgoea LX-U e2-0", + "Tyriedgoea JQ-A b28-0", + "Tyriedgoea KQ-A b28-0", + "Tyriedgoea CW-N d6-9", + "Tyriedgoea OL-A b28-0", + "Tyriedgoea PL-A b28-0", + "Tyriedgoea DW-N d6-19", + "Tyriedgoea VR-Y b28-0", + "Tyriedgoea WR-Y b28-0", + "Col 228 Sector CW-V d2-19", + "Col 228 Sector CW-V d2-18", + "Col 228 Sector GC-U d3-3", + "Col 228 Sector PB-G b13-0", + "Col 228 Sector JY-P c6-2", + "Col 228 Sector SB-G b13-0", + "Col 228 Sector UW-F b13-1", + "Col 228 Sector ZC-E b14-1", + "Col 228 Sector KY-P c6-1", + "Col 228 Sector BD-E b14-0", + "Col 228 Sector IE-C b15-1", + "Col 228 Sector KX-T d3-13", + "Col 228 Sector TZ-N c7-4", + "Col 228 Sector NP-A b16-0", + "Col 228 Sector UZ-N c7-5", + "Col 228 Sector VQ-Y b16-0", + "Col 228 Sector ZF-M c8-0", + "Col 228 Sector ZL-Y b16-1", + "Col 228 Sector FN-W b17-1", + "NGC 3324 Sector VI-V b17-1", + "NGC 3324 Sector BP-T b18-1", + "NGC 3324 Sector CP-T b18-0", + "NGC 3324 Sector DS-J c9-8", + "NGC 3324 Sector ME-O a36-0", + "NGC 3324 Sector IY-H c10-1", + "NGC 3324 Sector CX-I a39-0", + "NGC 3324 Sector HD-H a40-2", + "NGC 3324 Sector QT-R d4-3", + "NGC 3324 Sector PJ-F a41-0", + "NGC 3324 Sector VP-D a42-4", + "NGC 3324 Sector RT-R d4-15", + "NGC 3324 Sector DR-B a43-0", + "NGC 3324 Sector FR-B a43-2", + "NGC 3324 Sector IZ-L b22-2", + "NGC 3324 Sector UU-F c11-3", + "NGC 3324 Sector UU-F c11-6", + "Eta Carinae", + "NGC 3324 Sector OU-L b22-0", + "NGC 3324 Sector LO-N b21-0", + "NGC 3324 Sector WU-F c11-4", + "NGC 3324 Sector JI-P b20-1", + "NGC 3324 Sector KI-P b20-1", + "Bleia Eork MW-U b36-1", + "Bleia Eork NW-U b36-0", + "Bleia Eork LQ-W b35-1", + "Bleia Eork VZ-M d8-7", + "Bleia Eork NQ-W b35-1", + "Bleia Eork TK-Y c17-1", + "Bleia Eork JP-Y b34-0", + "Blae Eork KD-A c17-2", + "Blae Eork ZM-Y b34-1", + "Blae Eork WG-A b34-1", + "Blae Eork XG-A b34-1", + "Blae Eork YG-A b34-1", + "Blae Eork BC-A b34-1", + "Blae Eork CH-U e3-4", + "Blae Eork ID-Y b34-0", + "Blae Eork MJ-W b35-1", + "Blae Eork QP-U b36-0", + "Blae Eork XK-W c18-1", + "Blae Eork WK-W c18-0", + "Blae Eork CI-P b39-0", + "Blae Eork GO-N b40-0", + "Blae Eork LU-L b41-1", + "Blae Eork OA-K b42-1", + "Blae Eork JD-R c21-5", + "CPD-58 2648", + "CPD-59 2627", + "2MASS J10443666-5946218", + "Blae Eork OJ-P c22-3", + "Trumpler 16 HG 1462", + "CPD-59 2591", + "Blae Eork QA-B b47-0", + "PCYC 666", + "Blae Eork SA-B b47-0", + "Blae Eork TA-B b47-0", + "2MASS J10442445-5951430", + "Blae Eork YM-H d11-18", + "Blae Eork ZK-N c23-2", + "Blae Eork HI-X b48-0", + "Blae Eork KT-V b49-0", + "Blae Eork NO-V b49-0", + "Blae Eork FR-L c24-2", + "Tr 16 Sector RA-M b8-0", + "2MASS J10432911-6003200", + "Tr 16 Sector DB-X d1-12", + "Tr 16 Sector XG-K b9-0", + "Tr 16 Sector ZG-K b9-0", + "Tr 16 Sector ND-S c4-0", + "Tr 16 Sector EB-X d1-17", + "Tr 16 Sector II-I b10-0", + "Tr 16 Sector LD-I b10-0", + "Tr 16 Sector OO-G b11-0", + "Tr 16 Sector PO-G b11-0", + "Tr 16 Sector QO-G b11-0", + "Tr 16 Sector RO-G b11-0", + "Tr 16 Sector VJ-Q c5-4", + "Tr 16 Sector TO-G b11-0", + "Tr 16 Sector VJ-G b11-0", + "Tr 16 Sector XJ-G b11-0", + "Tr 16 Sector VY-R c4-2", + "Tr 16 Sector NC-V d2-2", + "Tr 14 Sector JM-W d1-10", + "Tr 16 Sector CA-Q c5-7", + "Tr 16 Sector NC-V d2-6", + "Tr 16 Sector GG-O c6-6", + "Tr 14 Sector TY-S c3-12", + "Tr 14 Sector LC-M b7-0", + "Eta Carina Sector HR-W c1-3", + "Eta Carina Sector RT-R b4-0", + "Eta Carina Sector HR-W d1-22", + "Eta Carina Sector KC-V c2-1", + "Eta Carina Sector SJ-Q b5-0", + "Eta Carina Sector RO-Q b5-0", + "2MASS J10442897-5942343", + "Eta Carina Sector NY-Q b5-0", + "Eta Carina Sector KD-R b5-1", + "Tr 14 Sector GD-W a17-1", + "Tr 14 Sector IH-V d2-19", + "Blu Theia ND-Z c27-1", + "Blu Theia LI-Z c27-3", + "Blu Theia LI-Z c27-6", + "Blu Theia QF-Z b55-0", + "Blu Theia RT-Z d13-23", + "Blu Theia HS-Z c27-0", + "Blu Theia KE-B b55-0", + "Blu Theia FY-C b54-0", + "Blu Theia CM-B c27-3", + "Blu Theia XW-E b53-0", + "Blu Theia VB-F b53-0", + "Blu Theia QV-G b52-0", + "Blu Theia LP-I b51-0", + "Blu Theia HJ-K b50-0", + "Blu Theia EO-K b50-0", + "Blu Theia YM-M b49-0", + "Blu Theia UG-O b48-0", + "Blu Theia FM-D d12-9", + "Blu Theia NF-Q b47-0", + "Blu Theia AQ-P e5-1", + "Blu Theia HZ-R b46-0", + "Blu Theia BG-F d11-6", + "Blu Theia BG-F d11-11", + "Blu Theia AG-F d11-4", + "Blu Theia ZH-V b44-0", + "Blu Theia VW-W b43-0", + "Blu Theia TB-X b43-0", + "Blu Theia UK-M c21-1", + "Blu Theia QE-O c20-2", + "Blu Theia WZ-G d10-9", + "Blu Theia PE-O c20-0", + "Blu Theia EJ-C b41-0", + "Blu Theia FE-C b41-0", + "Blu Theia KY-P c19-1", + "Blu Theia QT-I d9-8", + "Blu Theia TW-F b39-0", + "Blu Theia QB-G b39-0", + "Blu Theia PB-G b39-0", + "Blu Theia LQ-H b38-0", + "Blu Theia JV-H b38-0", + "Blu Theia IV-H b38-0", + "Blu Theia HV-H b38-0", + "Blu Theia GV-H b38-0", + "Blu Theia FV-H b38-0", + "Blu Theia CA-I b38-0", + "Blu Theia BA-I b38-0", + "Blu Theia CV-H b38-0", + "Blu Theia DG-G b39-0", + "Blu Theia BD-Q c19-0", + "Blu Theia BG-G b39-0", + "Blu Theia LY-I d9-6", + "Blu Theia SJ-I b38-0", + "Blu Theia ND-K b37-0", + "Blu Theia GS-K d8-5", + "Blu Theia GC-M b36-0", + "Blu Theia DH-M b36-0", + "Blu Theia VU-P b34-0", + "Blu Theia SZ-P b34-0", + "Blu Theia NT-R b33-0", + "Blu Theia KY-R b33-0", + "Blu Theia FS-T b32-0", + "Blu Theia DX-T b32-0", + "Blu Theia CX-T b32-0", + "Blu Theia YX-X c15-0", + "Blu Theia VV-V b31-0", + "Blu Theia XX-X c15-0", + "Blu Theia SR-Z c14-1", + "Blu Theia WV-M d7-1", + "Blu Theia WV-M d7-2", + "Blu Theia QW-Z c14-0", + "Blu Theia CN-B b29-0", + "Blu Theia YG-D b28-0", + "Blu Theia SF-F b27-0", + "Blu Theia QU-O d6-2", + "Blu Theia GP-D c13-0", + "Tyriedgoea BP-Q d5-2", + "Tyriedgoea BP-Q d5-3", + "Tyriedgoea BP-Q d5-0", + "Tyriedgoea BP-Q d5-4", + "Tyriedgoea DK-Q d5-1", + "Blu Theia OZ-G b26-0", + "Blu Theia QU-G b26-0", + "Tyriedgoea HQ-O d6-4", + "Tyriedgoea PG-D c13-1", + "Tyriedgoea JL-O d6-7", + "Tyriedgoea RB-D c13-1", + "Tyriedgoea KY-F b26-0", + "Tyriedgoea JL-O d6-1", + "Tyriedgoea OQ-E c12-0", + "Tyriedgoea CX-H b25-0", + "Tyriedgoea LV-E c12-0", + "Tyriedgoea EF-Q d5-8", + "Tyriedgoea UV-J b24-0", + "Tyriedgoea QP-L b23-0", + "Tyriedgoea MJ-N b22-0", + "Tyriedgoea LJ-N b22-0", + "Tyriedgoea KJ-N b22-0", + "Tyriedgoea FD-P b21-0", + "Tyriedgoea ED-P b21-0", + "Tyriedgoea ZW-Q b20-0", + "Tyriedgoea VQ-S b19-0", + "Tyriedgoea TV-S b19-0", + "Tyriedgoea XD-S d4-0", + "Tyriedgoea QK-U b18-0", + "Tyriedgoea PK-U b18-0", + "Tyriedgoea OK-U b18-0", + "Tyriedgoea LP-U b18-0", + "Tyriedgoea JU-U b18-0", + "Tyriedgoea NB-M c8-1", + "Tyriedgoea BT-W b17-0", + "Tyriedgoea ZS-W b17-0", + "Tyriedgoea RX-T d3-7", + "Tyriedgoea MB-M c8-1", + "Tyriedgoea TM-Y b16-0", + "Tyriedgoea SM-Y b16-0", + "Tyriedgoea QX-T d3-3", + "Tyriedgoea QX-T d3-2", + "Tyriedgoea LV-B b15-0", + "Tyriedgoea KV-B b15-0", + "Tyriedgoea EA-O c7-0", + "Tyriedgoea ZT-P c6-0", + "Tyriedgoea CU-D b14-0", + "Tyriedgoea EQ-Y e1", + "Tyriedgoea YN-F b13-0", + "Tyriedgoea LR-V d2-7", + "Tyriedgoea UN-R c5-0", + "Tyriedgoea QH-T c4-0", + "Tyriedgoea QH-T c4-1", + "Tyriedgoea HL-X d1-4", + "Tyriedgoea FP-M b9-0", + "Tyriedgoea EP-M b9-0", + "Tyriedgoea AJ-O b8-0", + "Tyriedgoea VC-Q b7-0", + "Tyriedgoea UC-Q b7-0", + "Tyriedgoea PW-R b6-0", + "Tyriedgoea OW-R b6-0", + "Tyriedgoea BF-Z d6", + "Tyriedgoea KB-S b6-0", + "Tyriedgoea FV-T b5-0", + "Tyriedgoea AF-Z d5", + "Tyriedgoea AP-V b4-0", + "Tyriedgoea AF-Z d6", + "Tyriedgoea BK-V b4-0", + "Tyriedgoea WD-X b3-0", + "Tyriedgoea VD-A c1-2", + "Tyriedgoea RX-Y b2-0", + "Tyriedgoea VY-A d8", + "Tyriedgoea SI-A c1-2", + "Tyriedgoea JW-A b2-0", + "Tyriedgoea GL-C b1-0", + "Tyriedgoea FL-C b1-0", + "Tyriedgoea ZJ-E b0", + "Pru Eurl QH-X b58-0", + "Pru Eurl CN-A d14-2", + "Pru Eurl JG-Z b57-0", + "Pru Eurl EQ-Z c28-0", + "Pru Eurl DA-B b57-0", + "Pru Eurl CA-B b57-0", + "Pru Eurl BA-B b57-0", + "Pru Eurl WT-C b56-0", + "Pru Eurl SN-E b55-0", + "Pru Eurl PS-E b55-0", + "Pru Eurl KM-G b54-0", + "Pru Eurl JM-G b54-0", + "Pru Eurl FG-I b53-0", + "Pru Eurl XF-O e6-0", + "Pru Eurl AA-K b52-0", + "Pru Eurl VT-L b51-0", + "Pru Eurl PF-E d12-9", + "Pru Eurl QX-O b49-0", + "Pru Eurl RA-E d12-9", + "Pru Eurl GG-I c24-3", + "Pru Eurl QA-E d12-5", + "Pru Eurl DL-I c24-2", + "Pru Eurl CQ-S b47-0", + "Pru Eurl BQ-S b47-0", + "Pru Eurl XJ-U b46-0", + "Pru Eurl YE-K c23-0", + "Sifaea BV-F d11-15", + "Pru Eurl OX-X b44-0", + "Pru Eurl SZ-P e5-1", + "Pru Eurl KZ-F d11-0", + "Sifaea ZZ-X b44-0", + "Sifaea VT-H d10-9", + "Sifaea UT-N c21-0", + "Sifaea QY-Z b43-0", + "Sifaea SY-N c21-0", + "Sifaea IX-B b43-0", + "Sifaea NS-P c20-1", + "Sifaea DR-D b42-0", + "Sifaea YK-F b41-0", + "Sifaea XK-F b41-0", + "Sifaea SE-H b40-0", + "Sifaea PN-J d9-10", + "Sifaea PN-J d9-2", + "Sifaea JS-K b38-0", + "Sifaea IS-K b38-0", + "Sifaea HS-K b38-0", + "Sifaea HN-K b38-0", + "Sifaea UT-R e4-1", + "Sifaea ES-K b38-0", + "Sifaea HY-I b39-0", + "Sifaea IT-I b39-0", + "Sifaea NN-J d9-8", + "Sifaea EY-I b39-0", + "Sifaea CM-R c19-0", + "Sifaea MN-J d9-1", + "Sifaea BM-R c19-1", + "Sifaea GE-H b40-0", + "Sifaea FE-H b40-0", + "Sifaea EE-H b40-0", + "Sifaea FZ-G b40-0", + "Sifaea EZ-G b40-0", + "Sifaea DZ-G b40-0", + "Sifaea ST-R e4-0", + "Sifaea BZ-G b40-0", + "Sifaea YD-H b40-0", + "Sifaea KN-J d9-3", + "Sifaea XD-H b40-0", + "Sifaea KN-J d9-13", + "Sifaea JN-J d9-1", + "Sifaea VD-H b40-0", + "Sifaea JN-J d9-2", + "Sifaea UL-R c19-1", + "Sifaea JW-K b38-0", + "Sifaea EQ-M b37-0", + "Sifaea EH-L d8-4", + "Sifaea BF-O b36-0", + "Sifaea AF-O b36-0", + "Sifaea VY-P b35-0", + "Sifaea YE-O b36-0", + "Sifaea XE-O b36-0", + "Sifaea DH-L d8-12", + "Sifaea DH-L d8-13", + "Sifaea RY-P b35-0", + "Sifaea IZ-U c17-0", + "Sifaea LS-R b34-0", + "Sifaea CH-L d8-6", + "Sifaea CH-L d8-1", + "Sifaea GW-U b32-1", + "Sifaea AW-M d7-2", + "Sifaea DD-Y c15-0", + "Sifaea DL-W b31-0", + "Sifaea YE-Y b30-1", + "Sifaea ZV-M d7-3", + "Sifaea AA-Y b30-0", + "Sifaea WT-Z b29-0", + "Sifaea KC-V e2-2", + "Sifaea WP-O d6-16", + "Sifaea KC-V e2-3", + "Sifaea QS-B b29-0", + "Sifaea RN-B b29-1", + "Sifaea QN-B b29-0", + "Sifaea VP-O d6-1", + "Sifaea ST-Z b29-0", + "Sifaea YV-M d7-12", + "Sifaea QT-Z b29-0", + "Sifaea LN-B b29-1", + "Sifaea UP-O d6-8", + "Sifaea DM-D b28-2", + "Sifaea TP-O d6-26", + "Sifaea CH-D b28-0", + "Sifaea BH-D b28-1", + "Sifaea WA-F b27-2", + "Sifaea SP-O d6-26", + "Sifaea PZ-G b26-0", + "Sifaea OZ-G b26-1", + "Pro Eur VV-I b25-0", + "Pro Eur UV-I b25-0", + "Pro Eur PP-K b24-2", + "Pro Eur SV-I b25-0", + "Pro Eur PK-K b24-0", + "Pro Eur CK-Q d5-6", + "Pro Eur ED-O b22-0", + "Pro Eur ZW-P b21-2", + "Pro Eur YW-P b21-0", + "Pro Eur XW-P b21-0", + "Pro Eur WW-P b21-0", + "Pro Eur WS-I c10-7", + "Pro Eur QQ-R b20-0", + "Pro Eur RM-K c9-3", + "Pro Eur WD-S d4-28", + "Pro Eur MG-M c8-4", + "Pro Eur CT-W b17-2", + "Pro Eur LG-M c8-5", + "Pro Eur WM-Y b16-1", + "Pro Eur TR-Y b16-0", + "Pro Eur NL-A b16-2", + "Pro Eur FA-O c7-0", + "Pro Eur IF-C b15-0", + "Pro Eur DZ-D b14-2", + "Pro Eur CZ-D b14-1", + "Pro Eur ZN-F b13-1", + "Pro Eur YT-P c6-3", + "Pro Eur LR-V d2-36", + "Pro Eur WN-F b13-1", + "Pro Eur ZT-D b14-1", + "Pro Eur AP-D b14-1", + "Pro Eur DV-B b15-2", + "Pro Eur CV-B b15-2", + "Pro Eur NX-T d3-41", + "Pro Eur NX-T d3-32", + "Pro Eur FB-M c8-1", + "Pro Eur LN-W b17-2", + "Pro Eur NX-T d3-15", + "Pro Eur GM-K c9-0", + "Pro Eur PE-T b19-0", + "Pro Eur FM-K c9-6", + "Pro Eur RK-R b20-0", + "Pro Eur IS-I c10-0", + "Pro Eur PD-S d4-9", + "Pro Eur GW-W e1-0", + "Pro Eur EH-K c9-9", + "Pro Eur EY-U b18-1", + "Pro Eur BM-K c9-3", + "Pro Eur ET-U b18-0", + "Pro Eur AM-K c9-5", + "Pro Eur OD-S d4-23", + "Pro Eur ZL-K c9-4", + "Pro Eur ND-S d4-26", + "Pro Eur VC-V b18-0", + "Pro Eur UC-V b18-0", + "Pro Eur IX-T d3-26", + "Pro Eur SC-V b18-0", + "Pro Eur TX-U b18-1", + "Pro Eur MD-S d4-24", + "Pro Eur MD-S d4-23", + "Pro Eur OR-W b17-1", + "Pro Eur HX-T d3-18", + "Pro Eur RF-M c8-2", + "Pro Eur HL-Y b16-0", + "Pro Eur IG-Y b16-0", + "Pro Eur DA-A b16-2", + "Pro Eur GG-Y b16-0", + "Pro Eur DL-Y b16-0", + "Pro Eur GX-T d3-1", + "Sifeae IH-A b16-1", + "Sifeae GM-A b16-0", + "Sifeae FM-A b16-0", + "Sifeae VX-T d3-11", + "Sifeae UX-T d3-1", + "Sifeae LF-O c7-0", + "Sifeae SC-U d3-1", + "Sifeae NW-V d2-6", + "Sifeae NW-V d2-16", + "Sifeae OE-E b14-1", + "Sifeae NE-E b14-0", + "Sifeae QK-C b15-0", + "Sifeae QC-U d3-22", + "Sifeae OK-C b15-0", + "Sifeae MK-C b15-1", + "Sifeae DU-P c6-4", + "Sifeae JZ-D b14-0", + "Sifeae GE-E b14-0", + "Sifeae FE-E b14-0", + "Sifeae CT-F b13-0", + "Sifeae BT-F b13-0", + "Sifeae ZY-P c6-1", + "Sifeae KW-V d2-9", + "Sifeae RR-H b12-0", + "Sifeae XY-P c6-6", + "Sifeae XY-P c6-0", + "Sifeae JW-V d2-12", + "Sifeae WD-E b14-0", + "Sifeae XT-P c6-5", + "Sifeae WY-D b14-0", + "Sifeae VY-D b14-1", + "Sifeae AA-C b15-1", + "Sifeae ZZ-N c7-0", + "Sifeae AL-A b16-1", + "Sifeae VE-C b15-1", + "Sifeae YK-A b16-1", + "Sifeae MX-T d3-28", + "Sifeae ZV-Y b16-0", + "Sifeae KC-U d3-4", + "Synuefe YG-Z b47-0", + "Synuefe XK-N c23-3", + "Col 285 Sector MR-M c7-13", + "Col 285 Sector SH-B b14-7", + "Col 285 Sector RH-B b14-2", + "HIP 28150", + "Col 285 Sector NM-B b14-6", + "Hyades Sector LC-V d2-99", + "Trianguli Sector QI-T b3-6", + "Trianguli Sector PI-T b3-7", + "Trianguli Sector TU-O a6-1", + "Tascheter Sector TY-R a4-2", + "LP 415-26", + "Delta Trianguli", + "LHS 4003", + "WISE 2056+1459", + "LP 634-1", + "Volungu", + "Liaedin", + "Wolf 1062", + "IL Aquarii", + "LAWD 96", + "Core Sys Sector CQ-P a5-2", + "Alectrona", + "Hyldekagati", + "Ceti Sector CQ-Y d89", + "Ceti Sector PD-S b4-1", + "Quivira", + "Kadrusa", + "ICZ CL-X b1-5", + "ICZ EW-V b2-4", + "Sanna", + "Euryale", + "LPM 26", + "Putamasin", + "LFT 78", + "Col 285 Sector NE-R a34-0", + "LHS 160", + "LHS 1351", + "LP 91-140", + "Ennead", + "Mitra" + ], + "starport": [ + "Bosch Terminal", + "Julian Gateway", + "Jemison Dock", + "Galvani Port", + "Wundt Gateway", + "Conrad Port", + "Knapp Vision", + "Herzfeld Landing", + "Kotov Terminal", + "Weston Orbital", + "Ricardo Landing", + "Brand City", + "Huygens Mines", + "Zudov City", + "Chomsky Ring", + "Wescott Terminal", + "Dirac Hub", + "Planck Dock", + "Hertz Colony", + "Bosch Mines", + "Blaschke Vision", + "Nicollet City", + "Ejeta Colony", + "Pierres Ring", + "Grant Terminal", + "Narvaez Orbital", + "Legendre Ring", + "Popper Dock", + "Brooks City", + "Wells Hub", + "Barcelos City", + "Perez Market", + "Lopez de Villalobos Prospect", + "Oramus Legacy", + "Henry Hub", + "Schade Platform", + "Selberg's Inheritance", + "Solovyov Orbital", + "Pierce Hanger", + "Giles Colony", + "Marshall Hub", + "Ising Hub", + "Arrhenius Hub", + "Vaucanson Hub", + "Frimout Horizons", + "Parry Terminal", + "Saberhagen Port", + "Stafford Terminal", + "Willis City", + "Romanenko Gateway", + "Jakes Enterprise", + "Budarin Terminal", + "Horowitz Gateway", + "Burke Hub", + "Perrin Ring", + "Balandin Enterprise", + "So-yeon Port", + "Potter Gateway", + "Tudela Installation", + "Quimper Ring", + "Julian City", + "Whitelaw Enterprise", + "Saunders's Dive", + "Harvestport", + "Brunton Hub", + "Nasmyth Station", + "Currie Enterprise", + "McArthur Plant", + "Lundwall City", + "Tshang Enterprise", + "Mach Dock", + "Wellman Gateway", + "Moisuc Refinery", + "Boe Enterprise", + "Gelfand Survey", + "Artyukhin Ring", + "Aitken Vision", + "Laphrian Shipyard", + "Crook Orbital", + "Rand City", + "Morgan Terminal", + "Oswald Platform", + "Aksyonov Platform", + "Coney Arena", + "Roberts Hub", + "Ayerdhal City", + "Derleth Orbital", + "Maire Gateway", + "Dedman Gateway", + "Bailey Ring", + "Humphreys Enterprise", + "Kandel Ring", + "Polya Enterprise", + "Rozhdestvensky Station", + "Cameron Survey", + "Shuttleworth Terminal", + "Yu Port", + "Bolger Vision", + "Alpers Refinery", + "Goeschke Station", + "Stebler Mines", + "Duke Hub", + "Shepard Ring", + "Cormack Orbital", + "Harris Platform", + "Fung Outpost", + "Ore Terminal", + "McDaniel Station", + "Ellison Station", + "Hennepin Enterprise", + "Luiken Port", + "Cochrane Terminal", + "McDonald Port", + "Bykovsky Ring", + "Vaucanson Settlement", + "Nicollier Ring", + "Carrier Dock", + "DG-1 Refinery", + "Blackman Terminal", + "Proteus Orbital", + "Katzenstein Settlement", + "Porta", + "Spedding Orbital", + "Anders Orbital", + "Mohmand Dock", + "Maler Hub", + "Scott Settlement", + "Sarich Port", + "Tyurin Port", + "Reisman Station", + "Fulton Landing", + "DENIS FILIPPOV", + "Rattus High", + "Port Sippar", + "Amar Station", + "Hennen City", + "Cabrera Dock", + "Haller Port", + "Pennington City", + "Foda Station", + "Stebler City", + "Gibson Settlement", + "Strekalov Dock", + "Behnken Terminal", + "Euler Port", + "Archimedes Hub", + "Ross Dock", + "Blalock Orbital", + "Pavlov Settlement", + "Galileo", + "Stein Platform", + "Beatty Landing", + "Galiano Plant", + "Rangarajan's Base", + "Jemison Refinery", + "Solo Orbiter", + "Brunel Station", + "Brendan Gateway", + "Godel Dock", + "Slipher Vision", + "EG Main HQ", + "Crown Orbital", + "Crown City", + "Watt Ring", + "Coye Orbital", + "Tokubei Holdings" + ] + }, + "greatestDistanceFromStart": 9017.2195143253, + "creditsEarned": 542823, + "bodiesCount": 0, + "scanSoldLevels": { + "lev_0": 647, + "lev_1": 489, + "lev_2": 132, + "lev_3": 0 + }, + "latestPayouts": [ + { + "market": "Port Sippar", + "value": 3218 + }, + { + "market": "Quimper Ring", + "value": 63035 + }, + { + "market": "Rangarajan's Base", + "value": 141702 + }, + { + "market": "Galiano Plant", + "value": 59372 + }, + { + "market": "Beatty Landing", + "value": 3424 + } + ], + "highestPayout": 34942, + "lastVisitedStarSystems": [ + "Mitra", + "Ennead", + "LP 91-140", + "LHS 1351", + "LFT 78" + ], + "bodiesSoldCount": 1268, + "bodiesFirstDiscovered": 26 + }, + "ship": { + "spend": { + "ships": 8227344, + "fuel": 160669, + "modules": 15615586, + "ammo": 232942, + "repair": 909596 + }, + "fuel_units": { + "purchased": 0, + "scooped": 2232 + }, + "insurance": { + "claims": 24, + "value": 2714138 + } + }, + "wealth": { + "maxCredits": 23883052 + }, + "trade": { + "marketIds": [ + "3228160256", + "3228321792", + "3228393472", + "3228129280", + "3228062976", + "3227948288", + "3227868160", + "3228192000", + "3228189952", + "3228190208", + "3228191232", + "3228190464", + "3228190720", + "3228244480", + "3228249088", + "3228264192", + "3228252160", + "3228251904", + "3228190976", + "3228191488", + "3228249344", + "3227868416", + "3228248064", + "3228470784", + "3228244736", + "3228471040", + "3228339968", + "3228340224", + "3228244224", + "3228247808", + "3228329472", + "3228390400", + "3223529472", + "128129272", + "3223288832", + "3228081408", + "3228081152", + "3227955968", + "3227957248", + "3228063232", + "3228028672", + "3227998208", + "3227998464", + "3228066560", + "128134648", + "128154360", + "3228040192", + "128153848", + "3228064768", + "3228065024", + "3228064256", + "3227919360", + "128169976", + "3228064000", + "128073720", + "3228077824", + "128073464", + "3228120576" + ], + "furthest": { + "distance": 99.480201783445, + "origin": 128129272, + "destination": "3228390400" + }, + "largestProfit": { + "value": 171720, + "commodity": "Beryllium", + "qty": 120, + "marketId": "3228081152" + }, + "largestProfitPerItem": { + "value": 1433, + "commodity": "Beryllium", + "marketId": "3228081152" + }, + "count": 429, + "qty": 22410, + "profit": 14759658, + "totalDistance": 198621.73693075 + }, + "mining": { + "largestProfit": { + "value": 0, + "commodity": 0, + "qty": 0, + "marketId": 0 + }, + "largestProfitPerItem": { + "value": 0, + "commodity": 0, + "marketId": 0 + }, + "count": 0, + "qty": 0, + "profit": 0, + "converted": { + "qty": 0 + } + }, + "blackMarket": { + "marketIds": [ + "3227868160", + "3228338688", + "3228189952", + "3228247808", + "3228390144", + "128130296" + ], + "furthest": { + "distance": 69224.099624264, + "origin": 0, + "destination": "3228338688" + }, + "largestProfit": { + "value": 132005, + "commodity": "OnionHead", + "qty": 17, + "marketId": "3228390144" + }, + "largestProfitPerItem": { + "value": 13130, + "commodity": "MotronaExperienceJelly", + "marketId": "128130296" + }, + "count": 13, + "qty": 67, + "profit": 292429, + "totalDistance": 556021.41706887 + }, + "stolenGoods": { + "largestProfit": { + "value": 65650, + "commodity": "MotronaExperienceJelly", + "qty": 5, + "marketId": "128130296" + }, + "largestProfitPerItem": { + "value": 13130, + "commodity": "MotronaExperienceJelly", + "marketId": "128130296" + }, + "count": 10, + "qty": 38, + "profit": 157238 + }, + "combat": { + "bounty": { + "highestClaimed": 134706, + "qty": 239, + "value": 1215158 + }, + "bond": { + "qty": 223, + "value": 1559000 + } + }, + "crime": { + "fine": { + "qty": 11, + "value": 135334, + "factions": [] + }, + "bounty": { + "highest": { + "value": 0, + "faction": 0, + "systemId": 0 + }, + "qty": 0, + "value": 0, + "factions": [] + }, + "stolenCargo": { + "qty": 75, + "value": 442840 + } + }, + "PVP": { + "kills": { + "ranks": { + "r0": 2, + "r1": 1, + "r2": 2, + "r3": 0, + "r4": 1, + "r5": 0, + "r6": 0, + "r7": 0, + "r8": 0 + } + } + }, + "NCP": { + "kills": { + "ranks": { + "r0": 2, + "r1": 4, + "r2": 2, + "r3": 3, + "r4": 1, + "r5": 0, + "r6": 0, + "r7": 0, + "r8": 0 + } + } + }, + "prealloc": true, + "ranks": { + "combat": { + "1": { + "ts": 1417719389, + "gt": 144380 + }, + "2": { + "ts": 1419164701, + "gt": 328001 + }, + "3": { + "ts": 1419789595, + "gt": 381168 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "crime": { + "1": { + "ts": 0, + "gt": 0 + }, + "2": { + "ts": 0, + "gt": 0 + }, + "3": { + "ts": 0, + "gt": 0 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "explore": { + "1": { + "ts": 1416679505, + "gt": 7340 + }, + "2": { + "ts": 1416773896, + "gt": 32330 + }, + "3": { + "ts": 1425813076, + "gt": 645416 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "trade": { + "1": { + "ts": 1417041602, + "gt": 57777 + }, + "2": { + "ts": 1417208591, + "gt": 78181 + }, + "3": { + "ts": 1417804896, + "gt": 154613 + }, + "4": { + "ts": 1421439724, + "gt": 490202 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "federation": { + "1": { + "ts": 1418494995, + "gt": 227112 + }, + "2": { + "ts": 1418496671, + "gt": 227112 + }, + "3": { + "ts": 1419692207, + "gt": 369093 + }, + "4": { + "ts": 1420382992, + "gt": 418109 + }, + "5": { + "ts": 1437243056, + "gt": 847776 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "empire": { + "1": { + "ts": 1437243056, + "gt": 847776 + }, + "2": { + "ts": 0, + "gt": 0 + }, + "3": { + "ts": 0, + "gt": 0 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + } + }, + "lastModulesBought": [ + { + "market": "EG Main HQ", + "module": "Hpt_ChaffLauncher_Tiny", + "value": 8500 + }, + { + "market": "Godel Dock", + "module": "Int_DockingComputer_Standard", + "value": 4500 + }, + { + "market": "Quimper Ring", + "module": "Hpt_ElectronicCountermeasure_Tiny", + "value": 12500 + }, + { + "market": "Quimper Ring", + "module": "Decal_Combat_Competent", + "value": 0 + }, + { + "market": "Quimper Ring", + "module": "Int_HullReinforcement_Size4_Class2", + "value": 195000 + } + ], + "illegalGoods": { + "largestProfit": { + "value": 132005, + "commodity": "OnionHead", + "qty": 17, + "marketId": "3228390144" + }, + "largestProfitPerItem": { + "value": 13130, + "commodity": "MotronaExperienceJelly", + "marketId": "128130296" + }, + "count": 10, + "qty": 45, + "profit": 239863 + }, + "NPC": { + "kills": { + "ranks": { + "r1": 14, + "r3": 17, + "r2": 14, + "r0": 3, + "r4": 12, + "r5": 13, + "rArray": 2, + "r8": 3, + "r7": 2, + "r6": 5 + } + } + }, + "vanishCounters": { + "amongPeers": 5, + "notInDanger": 5, + "isNotDying": 2 + } + }, + "ship": { + "name": "CobraMkIII", + "modules": { + "MediumHardpoint1": { + "module": { + "id": 128049460, + "name": "Hpt_MultiCannon_Gimbal_Medium", + "value": 57000, + "unloaned": 57000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 90, + "hopper": 2100 + } + } + }, + "MediumHardpoint2": { + "module": { + "id": 128049386, + "name": "Hpt_PulseLaser_Gimbal_Medium", + "value": 35400, + "unloaned": 35400, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "SmallHardpoint1": { + "module": { + "id": 128049385, + "name": "Hpt_PulseLaser_Gimbal_Small", + "value": 6600, + "unloaned": 6600, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "SmallHardpoint2": { + "module": { + "id": 128049459, + "name": "Hpt_MultiCannon_Gimbal_Small", + "value": 14250, + "unloaned": 14250, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 90, + "hopper": 2100 + } + } + }, + "TinyHardpoint1": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 8500, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "TinyHardpoint2": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 8500, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "Decal1": { + "module": { + "id": 128667738, + "name": "Decal_Combat_Competent", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Decal2": { + "module": { + "id": 128667655, + "name": "Decal_Skull3", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Decal3": { + "module": { + "id": 128667655, + "name": "Decal_Skull3", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PaintJob": { + "module": { + "id": 128666731, + "name": "PaintJob_CobraMkIII_Stripe2_03", + "value": 0, + "health": 1000000, + "on": true, + "priority": 1, + "free": true, + "unloaned": 0 + } + }, + "Armour": { + "module": { + "id": 128049282, + "name": "CobraMkIII_Armour_Grade3", + "value": 341746, + "unloaned": 341746, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PowerPlant": { + "module": { + "id": 128064045, + "name": "Int_Powerplant_Size4_Class3", + "value": 178898, + "unloaned": 178898, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "MainEngines": { + "module": { + "id": 128064082, + "name": "Int_Engine_Size4_Class5", + "value": 1610080, + "unloaned": 1610080, + "free": false, + "health": 1000000, + "on": true, + "priority": 0 + } + }, + "FrameShiftDrive": { + "module": { + "id": 128064117, + "name": "Int_Hyperdrive_Size4_Class5", + "value": 1610080, + "unloaned": 1610080, + "free": false, + "health": 1000000, + "on": true, + "priority": 3 + } + }, + "LifeSupport": { + "module": { + "id": 128064149, + "name": "Int_LifeSupport_Size3_Class2", + "value": 10133, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "unloaned": 10133 + } + }, + "PowerDistributor": { + "module": { + "id": 128064192, + "name": "Int_PowerDistributor_Size3_Class5", + "value": 158331, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "unloaned": 158331 + } + }, + "Radar": { + "module": { + "id": 128064229, + "name": "Int_Sensors_Size3_Class2", + "value": 10133, + "unloaned": 10133, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "FuelTank": { + "module": { + "id": 128064349, + "name": "Int_FuelTank_Size4_Class3", + "value": 24734, + "health": 1000000, + "on": true, + "priority": 1, + "free": false, + "unloaned": 24734 + } + }, + "Slot01_Size4": { + "module": { + "id": 128668544, + "name": "Int_HullReinforcement_Size4_Class2", + "value": 195000, + "unloaned": 195000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot02_Size4": { + "module": { + "id": 128064314, + "name": "Int_ShieldCellBank_Size4_Class2", + "value": 28373, + "unloaned": 28373, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 2 + } + } + }, + "Slot03_Size4": { + "module": { + "id": 128064274, + "name": "Int_ShieldGenerator_Size4_Class2", + "value": 59633, + "unloaned": 59633, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot04_Size2": { + "module": { + "id": 128668540, + "name": "Int_HullReinforcement_Size2_Class2", + "value": 36000, + "unloaned": 36000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot05_Size2": { + "module": { + "id": 128666709, + "name": "Int_FSDInterdictor_Size2_Class2", + "value": 100800, + "unloaned": 100800, + "free": false, + "health": 1000000, + "on": true, + "priority": 3 + } + }, + "Slot06_Size2": { + "module": { + "id": 128049549, + "name": "Int_DockingComputer_Standard", + "value": 4500, + "unloaned": 4500, + "free": false, + "health": 1000000, + "on": false, + "priority": 0 + } + } + }, + "value": { + "hull": 235787, + "modules": 4498691, + "cargo": 0, + "total": 4734478, + "unloaned": 4498691 + }, + "free": false, + "health": { + "hull": 1000000, + "shield": 1000000, + "shieldup": true + }, + "wear": { + "dirt": 12115, + "fade": 371, + "tear": 35959, + "game": 5494 + }, + "cockpitBreached": false, + "oxygenRemaining": 450000, + "fuel": { + "capacity": 16, + "lvl": 14.723843 + }, + "reserve": { + "lvl": 0.581657 + }, + "cargo": { + "capacity": 0, + "qty": 0, + "items": [] + }, + "passengers": [], + "refinery": null + }, + "ships": { + "0": { + "name": "SideWinder", + "station": { + "id": "3228338688", + "name": "Nicollet City" + }, + "starsystem": { + "id": "8055378940618", + "name": "Chang Yeh", + "systemaddress": "8055378940618" + } + }, + "2": { + "name": "CobraMkIII", + "station": { + "id": "3223891712", + "name": "Tokubei Holdings" + }, + "starsystem": { + "id": "63799", + "name": "Mitra", + "systemaddress": "6131233559250" + } + } + } +} \ No newline at end of file diff --git a/utils/src/test/resources/edce/edce3.json b/utils/src/test/resources/edce/edce3.json new file mode 100644 index 0000000..928748f --- /dev/null +++ b/utils/src/test/resources/edce/edce3.json @@ -0,0 +1,4548 @@ +{ + "commander": { + "id": 126367, + "name": "MoHax", + "credits": 23883052, + "debt": 0, + "currentShipId": 2, + "alive": true, + "docked": true, + "rank": { + "combat": 3, + "trade": 4, + "explore": 3, + "crime": 0, + "service": 0, + "empire": 0, + "federation": 2, + "power": 3 + } + }, + "lastSystem": { + "id": "63318", + "name": "CD-58 538", + "faction": "Federation" + }, + "lastStarport": { + "id": "3223873536", + "name": "Haberlandt Orbital", + "faction": "Federation", + "commodities": [ + { + "id": "128049204", + "name": "Explosives", + "cost_min": 300, + "cost_max": 456, + "cost_mean": "378.00", + "homebuy": "60", + "homesell": "56", + "consumebuy": "4", + "baseCreationQty": 219.93, + "baseConsumptionQty": 0, + "capacity": 138998, + "buyPrice": 182, + "sellPrice": 169, + "meanPrice": 378, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 138998, + "consumptionQty": 0, + "targetStock": 138998, + "stock": 115475.6626, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Chemicals", + "volumescale": "1.1400" + }, + { + "id": "128049202", + "name": "Hydrogen Fuel", + "cost_min": 125, + "cost_max": 168, + "cost_mean": "147.00", + "homebuy": "74", + "homesell": "71", + "consumebuy": "3", + "baseCreationQty": 200, + "baseConsumptionQty": 200, + "capacity": 316197, + "buyPrice": 94, + "sellPrice": 89, + "meanPrice": 147, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 252800, + "consumptionQty": 63397, + "targetStock": 268649, + "stock": 268649, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Chemicals", + "volumescale": "1.3000" + }, + { + "id": "128049203", + "name": "Mineral Oil", + "cost_min": 192, + "cost_max": 325, + "cost_mean": "259.00", + "homebuy": "47", + "homesell": "42", + "consumebuy": "5", + "baseCreationQty": 0, + "baseConsumptionQty": 320.43, + "capacity": 405034, + "buyPrice": 0, + "sellPrice": 317, + "meanPrice": 259, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 405034, + "targetStock": 101258, + "stock": 0, + "demand": 288785, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Chemicals", + "volumescale": "1.0300" + }, + { + "id": "128049205", + "name": "Pesticides", + "cost_min": 223, + "cost_max": 361, + "cost_mean": "292.00", + "homebuy": "52", + "homesell": "47", + "consumebuy": "5", + "baseCreationQty": 35.51, + "baseConsumptionQty": 0, + "capacity": 11222, + "buyPrice": 149, + "sellPrice": 134, + "meanPrice": 292, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 11222, + "consumptionQty": 0, + "targetStock": 11222, + "stock": 6285, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Chemicals", + "volumescale": "1.0700" + }, + { + "id": "128049241", + "name": "Clothing", + "cost_min": 315, + "cost_max": 474, + "cost_mean": "395.00", + "homebuy": "61", + "homesell": "57", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 350, + "capacity": 110945, + "buyPrice": 0, + "sellPrice": 474, + "meanPrice": 395, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 110945, + "targetStock": 27736, + "stock": 0, + "demand": 83209, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Consumer Items", + "volumescale": "1.1500" + }, + { + "id": "128049240", + "name": "Consumer Technology", + "cost_min": 6561, + "cost_max": 7500, + "cost_mean": "7031.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 3.35, + "baseConsumptionQty": 8.91, + "capacity": 6143, + "buyPrice": 0, + "sellPrice": 6561, + "meanPrice": 7031, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 1059, + "consumptionQty": 5084, + "targetStock": 2330, + "stock": 0, + "demand": 953.25, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Consumer Items", + "volumescale": "1.1000" + }, + { + "id": "128049238", + "name": "Domestic Appliances", + "cost_min": 527, + "cost_max": 734, + "cost_mean": "631.00", + "homebuy": "70", + "homesell": "67", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 209, + "capacity": 33126, + "buyPrice": 0, + "sellPrice": 734, + "meanPrice": 631, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 33126, + "targetStock": 8281, + "stock": 0, + "demand": 24845, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Consumer Items", + "volumescale": "1.2500" + }, + { + "id": "128049182", + "name": "Animal Meat", + "cost_min": 1286, + "cost_max": 1633, + "cost_mean": "1460.00", + "homebuy": "81", + "homesell": "79", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 97, + "capacity": 30748, + "buyPrice": 0, + "sellPrice": 1449, + "meanPrice": 1460, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 30748, + "targetStock": 7686, + "stock": 0, + "demand": 14072, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.4000" + }, + { + "id": "128049189", + "name": "Coffee", + "cost_min": 1286, + "cost_max": 1633, + "cost_mean": "1460.00", + "homebuy": "81", + "homesell": "79", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 97, + "capacity": 7688, + "buyPrice": 0, + "sellPrice": 1286, + "meanPrice": 1460, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 7688, + "targetStock": 1921, + "stock": 0, + "demand": 1441.75, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.4000" + }, + { + "id": "128049183", + "name": "Fish", + "cost_min": 403, + "cost_max": 583, + "cost_mean": "493.00", + "homebuy": "66", + "homesell": "63", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 271, + "capacity": 85903, + "buyPrice": 0, + "sellPrice": 488, + "meanPrice": 493, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 85903, + "targetStock": 21475, + "stock": 0, + "demand": 39312, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.2000" + }, + { + "id": "128049184", + "name": "Food Cartridges", + "cost_min": 141, + "cost_max": 270, + "cost_mean": "206.00", + "homebuy": "31", + "homesell": "24", + "consumebuy": "7", + "baseCreationQty": 0, + "baseConsumptionQty": 452, + "capacity": 5732, + "buyPrice": 0, + "sellPrice": 141, + "meanPrice": 206, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 5732, + "targetStock": 1433, + "stock": 0, + "demand": 1074.75, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.0000" + }, + { + "id": "128049178", + "name": "Fruit And Vegetables", + "cost_min": 315, + "cost_max": 474, + "cost_mean": "395.00", + "homebuy": "61", + "homesell": "57", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 350, + "capacity": 27737, + "buyPrice": 0, + "sellPrice": 441, + "meanPrice": 395, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 27737, + "targetStock": 6934, + "stock": 0, + "demand": 17559, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.1500" + }, + { + "id": "128049180", + "name": "Grain", + "cost_min": 207, + "cost_max": 342, + "cost_mean": "275.00", + "homebuy": "50", + "homesell": "45", + "consumebuy": "5", + "baseCreationQty": 0, + "baseConsumptionQty": 584, + "capacity": 185120, + "buyPrice": 0, + "sellPrice": 207, + "meanPrice": 275, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 185120, + "targetStock": 46279, + "stock": 0, + "demand": 34710.25, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.0500" + }, + { + "id": "128049185", + "name": "Synthetic Meat", + "cost_min": 252, + "cost_max": 396, + "cost_mean": "324.00", + "homebuy": "56", + "homesell": "52", + "consumebuy": "4", + "baseCreationQty": 30.15, + "baseConsumptionQty": 74.58, + "capacity": 44021, + "buyPrice": 162, + "sellPrice": 150, + "meanPrice": 324, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 38110, + "consumptionQty": 5911, + "targetStock": 39587, + "stock": 29346.08641, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.1000" + }, + { + "id": "128049188", + "name": "Tea", + "cost_min": 1459, + "cost_max": 1833, + "cost_mean": "1646.00", + "homebuy": "82", + "homesell": "80", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 88, + "capacity": 27896, + "buyPrice": 0, + "sellPrice": 1459, + "meanPrice": 1646, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 27896, + "targetStock": 6973, + "stock": 0, + "demand": 5230.75, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.4200" + }, + { + "id": "128049197", + "name": "Polymers", + "cost_min": 152, + "cost_max": 279, + "cost_mean": "216.00", + "homebuy": "36", + "homesell": "30", + "consumebuy": "6", + "baseCreationQty": 321.75, + "baseConsumptionQty": 0, + "capacity": 305020, + "buyPrice": 71, + "sellPrice": 59, + "meanPrice": 216, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 305020, + "consumptionQty": 0, + "targetStock": 305020, + "stock": 187105, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Industrial Materials", + "volumescale": "1.0000" + }, + { + "id": "128049199", + "name": "Semiconductors", + "cost_min": 889, + "cost_max": 1168, + "cost_mean": "1029.00", + "homebuy": "77", + "homesell": "75", + "consumebuy": "2", + "baseCreationQty": 43.56, + "baseConsumptionQty": 0, + "capacity": 41295, + "buyPrice": 784, + "sellPrice": 759, + "meanPrice": 1029, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 41295, + "consumptionQty": 0, + "targetStock": 41295, + "stock": 23126, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Industrial Materials", + "volumescale": "1.3400" + }, + { + "id": "128049200", + "name": "Superconductors", + "cost_min": 6561, + "cost_max": 7500, + "cost_mean": "7031.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 88.77, + "baseConsumptionQty": 90.45, + "capacity": 198487, + "buyPrice": 0, + "sellPrice": 6700, + "meanPrice": 7031, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 84155, + "consumptionQty": 114332, + "targetStock": 112738, + "stock": 0, + "demand": 55767, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Industrial Materials", + "volumescale": "1.1000" + }, + { + "id": "128049220", + "name": "Heliostatic Furnaces", + "cost_min": 199, + "cost_max": 333, + "cost_mean": "266.00", + "homebuy": "48", + "homesell": "43", + "consumebuy": "5", + "baseCreationQty": 2059.58, + "baseConsumptionQty": 1014.42, + "capacity": 3234744, + "buyPrice": 139, + "sellPrice": 124, + "meanPrice": 266, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 1952487, + "consumptionQty": 1282257, + "targetStock": 2273051, + "stock": 1413955, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.0400" + }, + { + "id": "128049217", + "name": "Power Generators", + "cost_min": 527, + "cost_max": 734, + "cost_mean": "631.00", + "homebuy": "70", + "homesell": "67", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 83.04, + "capacity": 104966, + "buyPrice": 0, + "sellPrice": 734, + "meanPrice": 631, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 104966, + "targetStock": 26241, + "stock": 0, + "demand": 78725, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.2500" + }, + { + "id": "128049218", + "name": "Water Purifiers", + "cost_min": 300, + "cost_max": 456, + "cost_mean": "378.00", + "homebuy": "60", + "homesell": "56", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 37, + "capacity": 46770, + "buyPrice": 0, + "sellPrice": 300, + "meanPrice": 378, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 46770, + "targetStock": 11692, + "stock": 0, + "demand": 8769.5, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.1400" + }, + { + "id": "128049208", + "name": "Agricultural Medicines", + "cost_min": 1004, + "cost_max": 1303, + "cost_mean": "1154.00", + "homebuy": "79", + "homesell": "77", + "consumebuy": "2", + "baseCreationQty": 8.04, + "baseConsumptionQty": 0, + "capacity": 10163, + "buyPrice": 902, + "sellPrice": 874, + "meanPrice": 1154, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 10163, + "consumptionQty": 0, + "targetStock": 10163, + "stock": 5692, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.3600" + }, + { + "id": "128049210", + "name": "Basic Medicines", + "cost_min": 315, + "cost_max": 474, + "cost_mean": "395.00", + "homebuy": "61", + "homesell": "57", + "consumebuy": "4", + "baseCreationQty": 23.45, + "baseConsumptionQty": 115.5, + "capacity": 9242, + "buyPrice": 212, + "sellPrice": 197, + "meanPrice": 395, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 7411, + "consumptionQty": 1831, + "targetStock": 7868, + "stock": 6469.47892, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.1500" + }, + { + "id": "128049209", + "name": "Performance Enhancers", + "cost_min": 6561, + "cost_max": 7500, + "cost_mean": "7031.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 7.37, + "baseConsumptionQty": 44.55, + "capacity": 9390, + "buyPrice": 0, + "sellPrice": 6561, + "meanPrice": 7031, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 2329, + "consumptionQty": 7061, + "targetStock": 4094, + "stock": 0, + "demand": 1324, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.1000" + }, + { + "id": "128049669", + "name": "Progenitor Cells", + "cost_min": 6561, + "cost_max": 7500, + "cost_mean": "7031.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 7.37, + "baseConsumptionQty": 8.91, + "capacity": 5154, + "buyPrice": 0, + "sellPrice": 6561, + "meanPrice": 7031, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 2329, + "consumptionQty": 2825, + "targetStock": 3035, + "stock": 0, + "demand": 529.75, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.1000" + }, + { + "id": "128049176", + "name": "Aluminium", + "cost_min": 330, + "cost_max": 493, + "cost_mean": "412.00", + "homebuy": "62", + "homesell": "58", + "consumebuy": "4", + "baseCreationQty": 109.56, + "baseConsumptionQty": 0, + "capacity": 103864, + "buyPrice": 206, + "sellPrice": 192, + "meanPrice": 412, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 103864, + "consumptionQty": 0, + "targetStock": 103864, + "stock": 103864, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.1600" + }, + { + "id": "128049168", + "name": "Beryllium", + "cost_min": 8017, + "cost_max": 9080, + "cost_mean": "8549.00", + "homebuy": "94", + "homesell": "93", + "consumebuy": "1", + "baseCreationQty": 7.59, + "baseConsumptionQty": 30.82, + "capacity": 46153, + "buyPrice": 0, + "sellPrice": 8458, + "meanPrice": 8549, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 7196, + "consumptionQty": 38957, + "targetStock": 16935, + "stock": 0, + "demand": 19754, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.0400" + }, + { + "id": "128049162", + "name": "Cobalt", + "cost_min": 701, + "cost_max": 944, + "cost_mean": "823.00", + "homebuy": "74", + "homesell": "71", + "consumebuy": "3", + "baseCreationQty": 53.46, + "baseConsumptionQty": 1085.4, + "capacity": 1422638, + "buyPrice": 0, + "sellPrice": 916, + "meanPrice": 823, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 50681, + "consumptionQty": 1371957, + "targetStock": 393670, + "stock": 0, + "demand": 973634, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.3000" + }, + { + "id": "128049175", + "name": "Copper", + "cost_min": 472, + "cost_max": 668, + "cost_mean": "570.00", + "homebuy": "69", + "homesell": "66", + "consumebuy": "3", + "baseCreationQty": 765.6, + "baseConsumptionQty": 0, + "capacity": 725791, + "buyPrice": 328, + "sellPrice": 312, + "meanPrice": 570, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 725791, + "consumptionQty": 0, + "targetStock": 725791, + "stock": 725791, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.2300" + }, + { + "id": "128049170", + "name": "Gallium", + "cost_min": 5028, + "cost_max": 5824, + "cost_mean": "5426.00", + "homebuy": "92", + "homesell": "91", + "consumebuy": "1", + "baseCreationQty": 10.89, + "baseConsumptionQty": 221.1, + "capacity": 289797, + "buyPrice": 0, + "sellPrice": 5749, + "meanPrice": 5426, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 10324, + "consumptionQty": 279473, + "targetStock": 80192, + "stock": 0, + "demand": 202276, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.1800" + }, + { + "id": "128049154", + "name": "Gold", + "cost_min": 9164, + "cost_max": 10320, + "cost_mean": "9742.00", + "homebuy": "95", + "homesell": "95", + "consumebuy": "0", + "baseCreationQty": 6.93, + "baseConsumptionQty": 139.36, + "capacity": 184913, + "buyPrice": 0, + "sellPrice": 10232, + "meanPrice": 9742, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 8760, + "consumptionQty": 176153, + "targetStock": 52798, + "stock": 0, + "demand": 130875, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.0000" + }, + { + "id": "128049169", + "name": "Indium", + "cost_min": 5743, + "cost_max": 6607, + "cost_mean": "6175.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 98.34, + "baseConsumptionQty": 99.83, + "capacity": 219414, + "buyPrice": 0, + "sellPrice": 5743, + "meanPrice": 6175, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 93227, + "consumptionQty": 126187, + "targetStock": 124773, + "stock": 0, + "demand": 28458, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.1400" + }, + { + "id": "128049173", + "name": "Lithium", + "cost_min": 1555, + "cost_max": 1943, + "cost_mean": "1749.00", + "homebuy": "83", + "homesell": "81", + "consumebuy": "2", + "baseCreationQty": 274.56, + "baseConsumptionQty": 557.44, + "capacity": 964894, + "buyPrice": 0, + "sellPrice": 1787, + "meanPrice": 1749, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 260284, + "consumptionQty": 704610, + "targetStock": 436436, + "stock": 0, + "demand": 510024, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.4300" + }, + { + "id": "128671118", + "name": "Osmium", + "cost_min": 6561, + "cost_max": 7500, + "cost_mean": "7031.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 180.23, + "capacity": 227813, + "buyPrice": 0, + "sellPrice": 7500, + "meanPrice": 7031, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 227813, + "targetStock": 56953, + "stock": 0, + "demand": 170860, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.1000" + }, + { + "id": "128049153", + "name": "Palladium", + "cost_min": 12815, + "cost_max": 14239, + "cost_mean": "13527.00", + "homebuy": "97", + "homesell": "97", + "consumebuy": "0", + "baseCreationQty": 0, + "baseConsumptionQty": 107.87, + "capacity": 136349, + "buyPrice": 0, + "sellPrice": 14191, + "meanPrice": 13527, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 136349, + "targetStock": 34087, + "stock": 0, + "demand": 99698, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.0000" + }, + { + "id": "128049152", + "name": "Platinum", + "cost_min": 17936, + "cost_max": 19691, + "cost_mean": "18814.00", + "homebuy": "98", + "homesell": "98", + "consumebuy": "0", + "baseCreationQty": 0, + "baseConsumptionQty": 8.04, + "capacity": 10163, + "buyPrice": 0, + "sellPrice": 19691, + "meanPrice": 18814, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 10163, + "targetStock": 2540, + "stock": 0, + "demand": 7623, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.0000" + }, + { + "id": "128049155", + "name": "Silver", + "cost_min": 4705, + "cost_max": 5470, + "cost_mean": "5088.00", + "homebuy": "91", + "homesell": "90", + "consumebuy": "1", + "baseCreationQty": 11.55, + "baseConsumptionQty": 233.16, + "capacity": 305667, + "buyPrice": 0, + "sellPrice": 5417, + "meanPrice": 5088, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 10950, + "consumptionQty": 294717, + "targetStock": 84629, + "stock": 0, + "demand": 217511, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.2000" + }, + { + "id": "128049171", + "name": "Tantalum", + "cost_min": 3858, + "cost_max": 4534, + "cost_mean": "4196.00", + "homebuy": "90", + "homesell": "89", + "consumebuy": "1", + "baseCreationQty": 133.98, + "baseConsumptionQty": 543.37, + "capacity": 813840, + "buyPrice": 0, + "sellPrice": 4254, + "meanPrice": 4196, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 127014, + "consumptionQty": 686826, + "targetStock": 298720, + "stock": 0, + "demand": 424950, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.2600" + }, + { + "id": "128049174", + "name": "Titanium", + "cost_min": 1004, + "cost_max": 1303, + "cost_mean": "1154.00", + "homebuy": "79", + "homesell": "77", + "consumebuy": "2", + "baseCreationQty": 393.03, + "baseConsumptionQty": 0, + "capacity": 372594, + "buyPrice": 799, + "sellPrice": 774, + "meanPrice": 1154, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 372594, + "consumptionQty": 0, + "targetStock": 372594, + "stock": 372594, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.3600" + }, + { + "id": "128049172", + "name": "Uranium", + "cost_min": 2603, + "cost_max": 3134, + "cost_mean": "2869.00", + "homebuy": "87", + "homesell": "86", + "consumebuy": "1", + "baseCreationQty": 18.15, + "baseConsumptionQty": 369.84, + "capacity": 484689, + "buyPrice": 0, + "sellPrice": 3084, + "meanPrice": 2869, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 17207, + "consumptionQty": 467482, + "targetStock": 134077, + "stock": 0, + "demand": 338398, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.3800" + }, + { + "id": "128049165", + "name": "Bauxite", + "cost_min": 152, + "cost_max": 279, + "cost_mean": "216.00", + "homebuy": "36", + "homesell": "30", + "consumebuy": "6", + "baseCreationQty": 0, + "baseConsumptionQty": 1609.41, + "capacity": 2034311, + "buyPrice": 0, + "sellPrice": 267, + "meanPrice": 216, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 2034311, + "targetStock": 508577, + "stock": 0, + "demand": 1414883, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.0000" + }, + { + "id": "128049156", + "name": "Bertrandite", + "cost_min": 2439, + "cost_max": 2949, + "cost_mean": "2694.00", + "homebuy": "87", + "homesell": "86", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 191.73, + "capacity": 242349, + "buyPrice": 0, + "sellPrice": 2949, + "meanPrice": 2694, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 242349, + "targetStock": 60587, + "stock": 0, + "demand": 181762, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.4000" + }, + { + "id": "128049159", + "name": "Coltan", + "cost_min": 1370, + "cost_max": 1730, + "cost_mean": "1550.00", + "homebuy": "82", + "homesell": "80", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 303.93, + "capacity": 384171, + "buyPrice": 0, + "sellPrice": 1730, + "meanPrice": 1550, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 384171, + "targetStock": 96042, + "stock": 0, + "demand": 288129, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.4100" + }, + { + "id": "128049158", + "name": "Gallite", + "cost_min": 1883, + "cost_max": 2319, + "cost_mean": "2101.00", + "homebuy": "85", + "homesell": "84", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 513.02, + "capacity": 648464, + "buyPrice": 0, + "sellPrice": 2319, + "meanPrice": 2101, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 648464, + "targetStock": 162115, + "stock": 0, + "demand": 486349, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.4600" + }, + { + "id": "128049157", + "name": "Indite", + "cost_min": 2142, + "cost_max": 2613, + "cost_mean": "2378.00", + "homebuy": "86", + "homesell": "85", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 212.19, + "capacity": 268211, + "buyPrice": 0, + "sellPrice": 2613, + "meanPrice": 2378, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 268211, + "targetStock": 67052, + "stock": 0, + "demand": 201159, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.4400" + }, + { + "id": "128049161", + "name": "Lepidolite", + "cost_min": 589, + "cost_max": 810, + "cost_mean": "700.00", + "homebuy": "72", + "homesell": "69", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 623.37, + "capacity": 787946, + "buyPrice": 0, + "sellPrice": 810, + "meanPrice": 700, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 787946, + "targetStock": 196986, + "stock": 0, + "demand": 590960, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.2700" + }, + { + "id": "128668550", + "name": "Painite", + "cost_min": 30000, + "cost_max": 36000, + "cost_mean": "33000.00", + "homebuy": "100", + "homesell": "100", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 11.7, + "capacity": 3710, + "buyPrice": 0, + "sellPrice": 36000, + "meanPrice": 33000, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 3710, + "targetStock": 927, + "stock": 0, + "demand": 2783, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.0000" + }, + { + "id": "128049163", + "name": "Rutile", + "cost_min": 330, + "cost_max": 493, + "cost_mean": "412.00", + "homebuy": "62", + "homesell": "58", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 2773.87, + "capacity": 3506200, + "buyPrice": 0, + "sellPrice": 487, + "meanPrice": 412, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 3506200, + "targetStock": 876549, + "stock": 0, + "demand": 2554147, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.1600" + }, + { + "id": "128049160", + "name": "Uraninite", + "cost_min": 889, + "cost_max": 1168, + "cost_mean": "1029.00", + "homebuy": "77", + "homesell": "75", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 65.34, + "capacity": 82591, + "buyPrice": 0, + "sellPrice": 1076, + "meanPrice": 1029, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 82591, + "targetStock": 20647, + "stock": 0, + "demand": 46953, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.3400" + }, + { + "id": "128049214", + "name": "Beer", + "cost_min": 175, + "cost_max": 304, + "cost_mean": "240.00", + "homebuy": "43", + "homesell": "37", + "consumebuy": "6", + "baseCreationQty": 0, + "baseConsumptionQty": 755, + "capacity": 119663, + "buyPrice": 0, + "sellPrice": 301, + "meanPrice": 240, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 119663, + "targetStock": 29915, + "stock": 0, + "demand": 88010, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Narcotics", + "volumescale": "1.0000" + }, + { + "id": "128049216", + "name": "Liquor", + "cost_min": 624, + "cost_max": 852, + "cost_mean": "738.00", + "homebuy": "73", + "homesell": "70", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 179, + "capacity": 7093, + "buyPrice": 0, + "sellPrice": 851, + "meanPrice": 738, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 7093, + "targetStock": 1773, + "stock": 0, + "demand": 5295, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Narcotics", + "volumescale": "1.2800" + }, + { + "id": "128049215", + "name": "Wine", + "cost_min": 252, + "cost_max": 396, + "cost_mean": "324.00", + "homebuy": "56", + "homesell": "52", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 452, + "capacity": 143278, + "buyPrice": 0, + "sellPrice": 395, + "meanPrice": 324, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 143278, + "targetStock": 35819, + "stock": 0, + "demand": 106417, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Narcotics", + "volumescale": "1.1000" + }, + { + "id": "128066403", + "name": "Drones", + "cost_min": 100, + "cost_max": 100, + "cost_mean": "100.00", + "homebuy": "100", + "homesell": "100", + "consumebuy": "1", + "baseCreationQty": 200, + "baseConsumptionQty": 0, + "capacity": 63397, + "buyPrice": 101, + "sellPrice": 100, + "meanPrice": 100, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 63397, + "consumptionQty": 0, + "targetStock": 63397, + "stock": 63397, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "NonMarketable", + "volumescale": "1.0000" + }, + { + "id": "128671443", + "name": "S A P8 Core Container", + "cost_min": 50000, + "cost_max": 60000, + "cost_mean": "55000.00", + "homebuy": "100", + "homesell": "100", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 200, + "capacity": 63397, + "buyPrice": 0, + "sellPrice": 60000, + "meanPrice": 55000, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 63397, + "targetStock": 15849, + "stock": 0, + "demand": 47548, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Salvage", + "volumescale": "1.0000" + }, + { + "id": "128049231", + "name": "Advanced Catalysers", + "cost_min": 2778, + "cost_max": 3331, + "cost_mean": "3055.00", + "homebuy": "88", + "homesell": "87", + "consumebuy": "1", + "baseCreationQty": 14.07, + "baseConsumptionQty": 26.07, + "capacity": 46293, + "buyPrice": 0, + "sellPrice": 2778, + "meanPrice": 3055, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 13339, + "consumptionQty": 32954, + "targetStock": 21577, + "stock": 0, + "demand": 6179, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.3600" + }, + { + "id": "128049229", + "name": "Animal Monitors", + "cost_min": 300, + "cost_max": 456, + "cost_mean": "378.00", + "homebuy": "60", + "homesell": "56", + "consumebuy": "4", + "baseCreationQty": 24.79, + "baseConsumptionQty": 0, + "capacity": 23501, + "buyPrice": 223, + "sellPrice": 207, + "meanPrice": 378, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 23501, + "consumptionQty": 0, + "targetStock": 23501, + "stock": 13161, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.1400" + }, + { + "id": "128049230", + "name": "Aquaponic Systems", + "cost_min": 274, + "cost_max": 424, + "cost_mean": "349.00", + "homebuy": "58", + "homesell": "54", + "consumebuy": "4", + "baseCreationQty": 27.47, + "baseConsumptionQty": 0, + "capacity": 26042, + "buyPrice": 199, + "sellPrice": 184, + "meanPrice": 349, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 26042, + "consumptionQty": 0, + "targetStock": 26042, + "stock": 14583, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.1200" + }, + { + "id": "128049228", + "name": "Auto Fabricators", + "cost_min": 3612, + "cost_max": 4261, + "cost_mean": "3937.00", + "homebuy": "90", + "homesell": "89", + "consumebuy": "1", + "baseCreationQty": 286.09, + "baseConsumptionQty": 0, + "capacity": 271215, + "buyPrice": 3271, + "sellPrice": 3215, + "meanPrice": 3937, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 271215, + "consumptionQty": 0, + "targetStock": 271215, + "stock": 268615, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.2800" + }, + { + "id": "128049672", + "name": "Bio Reducing Lichen", + "cost_min": 944, + "cost_max": 1233, + "cost_mean": "1089.00", + "homebuy": "78", + "homesell": "76", + "consumebuy": "2", + "baseCreationQty": 8.71, + "baseConsumptionQty": 0, + "capacity": 8258, + "buyPrice": 840, + "sellPrice": 814, + "meanPrice": 1089, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 8258, + "consumptionQty": 0, + "targetStock": 8258, + "stock": 4624, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.3500" + }, + { + "id": "128049225", + "name": "Computer Components", + "cost_min": 527, + "cost_max": 734, + "cost_mean": "631.00", + "homebuy": "70", + "homesell": "67", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 701.49, + "capacity": 222362, + "buyPrice": 0, + "sellPrice": 734, + "meanPrice": 631, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 222362, + "targetStock": 55590, + "stock": 0, + "demand": 166586, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.2500" + }, + { + "id": "128049226", + "name": "Hazardous Environment Suits", + "cost_min": 274, + "cost_max": 424, + "cost_mean": "349.00", + "homebuy": "58", + "homesell": "54", + "consumebuy": "4", + "baseCreationQty": 27.47, + "baseConsumptionQty": 134.64, + "capacity": 196231, + "buyPrice": 0, + "sellPrice": 386, + "meanPrice": 349, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 26042, + "consumptionQty": 170189, + "targetStock": 68589, + "stock": 0, + "demand": 119823, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.1200" + }, + { + "id": "128049671", + "name": "Resonating Separators", + "cost_min": 5743, + "cost_max": 6607, + "cost_mean": "6175.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 199.66, + "baseConsumptionQty": 98.34, + "capacity": 313584, + "buyPrice": 5908, + "sellPrice": 5809, + "meanPrice": 6175, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 189279, + "consumptionQty": 124305, + "targetStock": 220355, + "stock": 137072, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.1400" + }, + { + "id": "128049227", + "name": "Robotics", + "cost_min": 1766, + "cost_max": 2185, + "cost_mean": "1976.00", + "homebuy": "84", + "homesell": "82", + "consumebuy": "2", + "baseCreationQty": 10.05, + "baseConsumptionQty": 0, + "capacity": 9528, + "buyPrice": 1648, + "sellPrice": 1599, + "meanPrice": 1976, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 9528, + "consumptionQty": 0, + "targetStock": 9528, + "stock": 5336, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.4500" + }, + { + "id": "128049232", + "name": "Terrain Enrichment Systems", + "cost_min": 4705, + "cost_max": 5470, + "cost_mean": "5088.00", + "homebuy": "91", + "homesell": "90", + "consumebuy": "1", + "baseCreationQty": 9.38, + "baseConsumptionQty": 0, + "capacity": 8893, + "buyPrice": 4614, + "sellPrice": 4535, + "meanPrice": 5088, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 8893, + "consumptionQty": 0, + "targetStock": 8893, + "stock": 4981, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.2000" + }, + { + "id": "128049193", + "name": "Synthetic Fabrics", + "cost_min": 186, + "cost_max": 317, + "cost_mean": "252.00", + "homebuy": "46", + "homesell": "41", + "consumebuy": "5", + "baseCreationQty": 224.73, + "baseConsumptionQty": 0, + "capacity": 213045, + "buyPrice": 87, + "sellPrice": 77, + "meanPrice": 252, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 213045, + "consumptionQty": 0, + "targetStock": 213045, + "stock": 213045, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Textiles", + "volumescale": "1.0200" + }, + { + "id": "128049244", + "name": "Biowaste", + "cost_min": 50, + "cost_max": 98, + "cost_mean": "74.00", + "homebuy": "27", + "homesell": "20", + "consumebuy": "7", + "baseCreationQty": 162, + "baseConsumptionQty": 0, + "capacity": 12799, + "buyPrice": 20, + "sellPrice": 15, + "meanPrice": 74, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 12799, + "consumptionQty": 0, + "targetStock": 12799, + "stock": 7168, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Waste ", + "volumescale": "1.0000" + }, + { + "id": "128049246", + "name": "Chemical Waste", + "cost_min": 50, + "cost_max": 107, + "cost_mean": "79.00", + "homebuy": "18", + "homesell": "10", + "consumebuy": "8", + "baseCreationQty": 0, + "baseConsumptionQty": 119.13, + "capacity": 37763, + "buyPrice": 0, + "sellPrice": 107, + "meanPrice": 79, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 37763, + "targetStock": 9440, + "stock": 0, + "demand": 28323, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Waste ", + "volumescale": "1.0000" + }, + { + "id": "128049248", + "name": "Scrap", + "cost_min": 70, + "cost_max": 122, + "cost_mean": "96.00", + "homebuy": "43", + "homesell": "37", + "consumebuy": "6", + "baseCreationQty": 101.17, + "baseConsumptionQty": 49.83, + "capacity": 94957, + "buyPrice": 0, + "sellPrice": 70, + "meanPrice": 96, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 31970, + "consumptionQty": 62987, + "targetStock": 47716, + "stock": 0, + "demand": 11810.25, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Waste ", + "volumescale": "1.0000" + }, + { + "id": "128049236", + "name": "Non Lethal Weapons", + "cost_min": 1766, + "cost_max": 2185, + "cost_mean": "1976.00", + "homebuy": "84", + "homesell": "82", + "consumebuy": "2", + "baseCreationQty": 5.36, + "baseConsumptionQty": 24.75, + "capacity": 1851, + "buyPrice": 1618, + "sellPrice": 1570, + "meanPrice": 1976, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 1694, + "consumptionQty": 157, + "targetStock": 1733, + "stock": 1120.52525, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Weapons", + "volumescale": "1.4500" + }, + { + "id": "128049235", + "name": "Reactive Armour", + "cost_min": 2008, + "cost_max": 2461, + "cost_mean": "2235.00", + "homebuy": "85", + "homesell": "84", + "consumebuy": "1", + "baseCreationQty": 4.69, + "baseConsumptionQty": 22.44, + "capacity": 1910, + "buyPrice": 1937, + "sellPrice": 1902, + "meanPrice": 2235, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 1483, + "consumptionQty": 427, + "targetStock": 1589, + "stock": 935, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Weapons", + "volumescale": "1.4600" + } + ] + }, + "stats": { + "game_time": 850655, + "missions": { + "courier": { + "missionsAccepted": 64, + "furthest": { + "distance": 9.8418152860638, + "origin": 3228189952, + "destination": "3227868416" + }, + "highestEarnings": { + "value": 0, + "distance": 0, + "origin": 0, + "destination": 0, + "faction": 0 + }, + "missionsCompleted": 36, + "creditsEarned": -9119, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 1109, + "faction": "Defence Force of LHS 1541", + "type": "CourierLegal" + }, + { + "value": 1018, + "faction": "Defence Force of LHS 1541", + "type": "CourierLegal" + }, + { + "value": 487, + "faction": "Defence Force of LHS 1541", + "type": "CourierLegal" + } + ] + }, + "deliver": { + "missionsAccepted": 105, + "furthest": { + "distance": 9.8944626243672, + "origin": 3228393472, + "destination": "3228115456" + }, + "highestEarnings": { + "value": 0, + "commodity": 0, + "qty": 0, + "distance": 0, + "origin": 0, + "destination": 0, + "faction": 0 + }, + "missionsCompleted": 98, + "creditsEarned": 1164220, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 1988, + "faction": "Crimson Energy Systems", + "type": "DeliveryLegal" + }, + { + "value": 107316, + "faction": "Gold Netcoms Commodities", + "type": "DeliveryLegal" + }, + { + "value": 65546, + "faction": "Allied LHS 1507 Dominion", + "type": "DeliveryLegal" + } + ] + }, + "collect": { + "missionsAccepted": 175, + "furthest": { + "distance": 0, + "origin": 0, + "destination": 0 + }, + "highestEarnings": { + "value": 0, + "commodity": 0, + "qty": 0, + "distance": 0, + "origin": 0, + "destination": 0, + "faction": 0 + }, + "missionsCompleted": 0, + "creditsEarned": 0, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 22145, + "faction": "Defence Force of LHS 1541", + "type": "Collect" + }, + { + "value": 3420, + "faction": "Defence Force of LHS 1541", + "type": "Collect" + }, + { + "value": 34772, + "faction": "Wolf 1323 Life Corp.", + "type": "Collect" + } + ] + }, + "assassin": { + "highestEarnings": { + "value": 199640, + "origin": "3228064512", + "faction": 0 + }, + "missionsCompleted": 25, + "creditsEarned": 1147873, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 36176, + "faction": "United Euryale First", + "type": "Massacre" + }, + { + "value": 99646, + "faction": "United Euryale First", + "type": "Assassinate" + }, + { + "value": 42589, + "faction": "United Euryale First", + "type": "Assassinate" + } + ], + "missionsAccepted": 52 + }, + "bountyHunter": { + "highestEarnings": { + "value": 0, + "origin": 0, + "faction": 0 + }, + "missionsCompleted": 0, + "creditsEarned": 0, + "missionsFailed": 0, + "latestCompleted": [], + "missionsAccepted": 0 + } + }, + "explore": { + "hyperspaceJumps": 1564, + "totalHyperspaceDistance": 26852.899065939, + "visited": { + "starsystem": [ + "GCRV 4654", + "FK5 2550", + "LHS 1914", + "Siren", + "Geawenki", + "Thiin", + "LP 307-8", + "StKM 1-626", + "BD+30 1423", + "LHS 6103", + "LHS 1814", + "LHS 1794", + "Nandjabinja", + "Susanoo", + "Wong Sher", + "74 k Orionis", + "BD+08 1303", + "Iansan", + "LHS 1857", + "Yin Sector HW-W b1-3", + "Nihursaga", + "Hahgwe", + "Alzirr", + "Toog", + "Yin Sector ZE-A d120", + "Chang Yeh", + "G 108-26", + "HR 2251", + "LHS 1838", + "Breksta", + "Amait", + "Cosi", + "Yggdrajang", + "LTT 17868", + "Yin Sector EQ-Y b2", + "Yin Sector EQ-Y b1", + "Zandu", + "Flech", + "Julanggarri", + "Ross 878", + "Kamchata", + "Tamalhikas", + "Katocudatta", + "Lumbla", + "Tascheter Sector FG-X b1-6", + "Jita Ten", + "71 Orionis", + "Tao Ti", + "LHS 1743", + "LFT 392", + "Ndozins", + "LHS 21", + "Geras", + "G 85-36", + "LP 417-213", + "V1402 Orionis", + "MCC 467", + "Suyarang", + "Chonost", + "Fular", + "LTT 11519", + "Tote", + "Psi Tauri", + "Wolf 1301", + "Tascheter Sector MS-T a3-2", + "Achlys", + "BD+14 831", + "Kungurutii", + "Ross 49", + "Dewikum", + "Yin Sector DQ-Y b1", + "Tascheter Sector FG-X b1-1", + "Tascheter Sector EG-X b1-1", + "Cahuile", + "Tascheter Sector WE-Q a5-1", + "Tascheter Sector DG-O a6-0", + "LP 771-72", + "Kappa Fornacis", + "LP 831-72", + "Zeus", + "Tascheter Sector HM-M a7-2", + "Tascheter Sector BL-O a6-1", + "Tascheter Sector YE-Q a5-0", + "Pachanwen", + "Ranginui", + "LHS 1928", + "LP 605-37", + "Sekhemet", + "Hlocidirus", + "Fionn", + "LHS 1920", + "Tascheter Sector GW-W c1-18", + "LFT 377", + "Kunlun", + "Tascheter Sector HM-M a7-1", + "LTT 1349", + "LFT 179", + "Jibitoq", + "BD-18 394", + "Autahenetsi", + "Ceti Sector AV-Y c17", + "Tetekhe", + "Ceti Sector FW-V b2-5", + "LTT 1141", + "Bandizel", + "Artemis", + "LHS 1409", + "Tascheter Sector EG-Y d106", + "Tascheter Sector BG-O a6-1", + "Tascheter Sector WZ-P a5-1", + "LHS 1573", + "G 100-4", + "V491 Persei", + "Sui Xing", + "Bonde", + "Bhadaba", + "Uchaluroja", + "Manamaya", + "LHS 197", + "Ashandras", + "LTT 11455", + "Al-Qaum", + "Herishep", + "LTT 11503", + "Ross 592", + "Itza", + "Capukanga", + "LHS 1483", + "LP 356-106", + "BD+24 543", + "39 Tauri", + "KP Tauri", + "Wolf 1278", + "Lowne 1", + "Meri", + "Apollo", + "LHS 1516", + "Wolf 1323", + "Marduk", + "LHS 1541", + "Wolf 1325", + "G 95-22", + "LHS 1507", + "Bao Yan Luo", + "Tascheter Sector HH-V b2-5", + "G 173-39", + "G 173-53", + "Theta Persei", + "LHS 1446", + "Lorana", + "Anlave", + "Wolf 46", + "V388 Cassiopeiae", + "Zeessze", + "Eta Cassiopeiae", + "Groombridge 34", + "Ross 248", + "Ross 730", + "Altair", + "Sol", + "Alpha Centauri", + "LHS 18", + "Bonitou", + "LTT 10482", + "Cephei Sector BA-A d103", + "Cephei Sector DQ-Y b4", + "Iota Cassiopeiae", + "Funji", + "T'ienimi", + "HIP 12512", + "Col 285 Sector QT-Q c5-14", + "HIP 10466", + "Col 285 Sector QT-Q c5-9", + "Col 285 Sector BH-J b10-4", + "Col 285 Sector BH-J b10-2", + "Col 285 Sector PT-Q c5-13", + "Col 285 Sector WA-L b9-0", + "HR 567", + "Col 285 Sector MY-Q c5-3", + "Col 285 Sector MY-Q c5-15", + "Undalibaluf", + "Col 285 Sector GY-F b12-4", + "BD+65 1984", + "Col 285 Sector HY-F b12-0", + "HIP 3509", + "Nootkena", + "Inovandar", + "Tegidana", + "BD+44 1040", + "LHS 1765", + "Selniang", + "Skuta", + "Gani", + "Enuma", + "Gkutat", + "Djinbin", + "Col 285 Sector NG-H a26-5", + "Col 285 Sector MA-J a25-4", + "Col 285 Sector SG-H a26-2", + "Col 285 Sector JB-N c7-7", + "Col 285 Sector JB-N c7-4", + "Synuefe XT-D a94-2", + "h2 Puppis", + "Synuefe BP-D a94-1", + "O Puppis", + "Synuefe KB-A a96-2", + "HIP 40430", + "Synuefe WR-H d11-48", + "Synuefe WQ-Z b47-5", + "Gliese 3434", + "Synuefe YK-N c23-14", + "Canopus", + "Synuefe ZK-N c23-22", + "Synuefe BH-Z b47-1", + "HIP 34755", + "HIP 35652", + "HIP 36489", + "47 G. Carinae", + "Synuefe BM-Z b47-8", + "Q Carinae", + "Synuefe DW-L c24-30", + "Synuefe IS-X b48-3", + "Chi Carinae", + "Synuefe HX-X b48-2", + "HIP 40929", + "HIP 42504", + "HIP 42459", + "E Velorum", + "Synuefe JI-W b49-12", + "HIP 42374", + "HR 3503", + "HIP 42823", + "HR 3448", + "HIP 42726", + "Omicron Velorum", + "HIP 42715", + "IC 2391 Sector LI-S b4-10", + "IC 2391 Sector SJ-Q b5-10", + "HIP 43433", + "IC 2391 Sector UJ-Q b5-8", + "IC 2391 Sector VJ-Q b5-1", + "HIP 43015", + "IC 2391 Sector MC-V c2-14", + "Synuefe GL-S b51-9", + "Synuefe LR-Q b52-2", + "V473 Carinae", + "Synuefe JE-E d13-115", + "Synuefe RX-O b53-7", + "Synuefe JE-E d13-94", + "Synuefe WD-N b54-1", + "Tureis", + "Synuefe BK-L b55-4", + "Synuefe CV-E c28-23", + "Synuefe OK-C d14-6", + "HIP 47751", + "HIP 48127", + "Synuefe KM-G b58-4", + "Synuefe XO-L a117-1", + "Synuefe AA-K a118-6", + "Wregoe KZ-S b58-7", + "HR 4091", + "Praea Euq SG-A b1", + "Praea Euq XM-Y b2", + "Praea Euq ZM-Y b1", + "Praea Euq MA-A d153", + "Praea Euq ZR-Y b0", + "Praea Euq CM-Y c9", + "HD 92405", + "Praea Euq FO-V b2-1", + "Praea Euq KU-T b3-5", + "Praea Euq PL-Y d85", + "Praea Euq TG-Q b5-3", + "HD 95633", + "Praea Euq ZM-O b6-0", + "Praea Euq LD-V c2-20", + "Praea Euq UR-W d1-63", + "Praea Euq EY-M b7-4", + "Praea Euq GJ-L b8-1", + "Praea Euq HJ-L b8-4", + "Praea Euq VR-W d1-80", + "Praea Euq RZ-R c4-2", + "Praea Euq JZ-J b9-0", + "Pro Eurl AI-I b10-3", + "Pro Eurl EW-W d1-55", + "Pro Eurl KD-S c4-7", + "Pro Eurl EW-W d1-39", + "HD 98557", + "Pro Eurl XR-I b10-0", + "Pro Eurl AN-I b10-3", + "Pro Eurl PJ-Q c5-12", + "Pro Eurl IC-V d2-40", + "Pro Eurl JC-V d2-35", + "Pro Eurl KZ-E b12-2", + "NGC 3532 Sector ZK-X d1-59", + "Pro Eurl NK-D b13-0", + "Pro Eurl HH-V d2-32", + "Pro Eurl JU-D b13-0", + "HD 100476", + "Pro Eurl LU-D b13-0", + "HD 99573", + "HD 99081", + "Pro Eurl IO-F b12-1", + "NGC 3532 Sector YP-X d1-24", + "NGC 3532 Sector EJ-M b9-1", + "NGC 3532 Sector DC-T c4-9", + "NGC 3532 Sector AL-X d1-30", + "NGC 3532 Sector PF-K b10-0", + "NGC 3532 Sector RA-K b10-1", + "NGC 3532 Sector BL-X d1-48", + "NGC 3532 Sector FR-V d2-53", + "NGC 3532 Sector EI-G b12-2", + "NGC 3532 Sector FI-G b12-0", + "NGC 3532 Sector FI-G b12-4", + "HD 98767", + "NGC 3532 Sector PU-C b14-0", + "NGC 3532 Sector RP-C b14-5", + "HD 98896", + "NGC 3532 Sector WV-A b15-4", + "NGC 3532 Sector YK-N c7-10", + "NGC 3532 Sector ID-X b16-2", + "NGC 3532 Sector LO-V b17-2", + "Pro Eurl BW-K b22-1", + "Pro Eurl AB-L b22-2", + "Pro Eurl OS-U e2-4", + "Pro Eurl CQ-P d5-68", + "Pro Eurl GR-D c12-2", + "Pro Eurl CQ-P d5-27", + "Pro Eurl OI-H b24-3", + "Pro Eurl CQ-P d5-21", + "Pro Eurl MC-J b23-2", + "Pro Eurl DQ-P d5-63", + "Pro Eurl ZJ-R d4-4", + "Pro Eurl NC-J b23-2", + "HD 99218", + "Pro Eurl JR-D c12-12", + "Pro Eurl DQ-P d5-39", + "Pro Eurl ZU-D b26-2", + "Pro Eurl HW-N d6-37", + "Pro Eurl HH-A b28-3", + "Pro Eurl QD-A c14-12", + "Pro Eurl UJ-Y c14-2", + "Pro Eurl LC-M d7-2", + "HD 104214", + "Pro Eurl WK-T b31-2", + "Pro Eurl ZP-W c15-1", + "Pro Eurl KN-P b33-2", + "Pro Eurl GR-U c16-9", + "Pro Eurl MN-P b33-1", + "Pro Eurl TO-N b34-0", + "Pro Eurl WJ-N b34-3", + "Pro Eurl XJ-N b34-6", + "Pro Eurl UD-P b33-0", + "Pro Eurl BF-N b34-4", + "Pro Eurl CF-N b34-1", + "Pro Eurl DF-N b34-2", + "Pro Eurl UD-K d8-47", + "Pro Eurl UD-K d8-85", + "Pro Eurl KG-L b35-3", + "Pro Eurl UD-K d8-73", + "Pro Eurl MG-L b35-5", + "Pro Eurl PB-L b35-1", + "Prua Dryoae UQ-Q a73-3", + "Prua Dryoae CS-O a74-1", + "Prua Dryoae FH-T b37-5", + "HD 101131", + "Prua Dryoae WF-L d9-50", + "Prua Dryoae LN-R b38-3", + "Prua Dryoae PT-P b39-7", + "Prua Dryoae MN-S e4-12", + "Prua Dryoae IJ-C a81-1", + "Prua Dryoae CD-E a80-3", + "Prua Dryoae YH-E a80-0", + "Pro Eurl ZJ-I d9-63", + "Pro Eurl HA-E b39-0", + "Pro Eurl ZJ-I d9-0", + "Pro Eurl HA-E b39-4", + "Pro Eurl ZJ-I d9-3", + "Pro Eurl ZD-G b38-0", + "Pro Eurl XI-G b38-0", + "HD 102728", + "Pro Eurl XI-G b38-1", + "Pro Eurl EK-E b39-4", + "Pro Eurl AK-I d9-55", + "Pro Eurl EA-P c19-3", + "Prua Dryoae LU-A a82-0", + "Prua Dryoae AM-J d10-40", + "Prua Dryoae AM-J d10-53", + "Prua Dryoae AM-J d10-5", + "Prua Dryoae AG-M b41-0", + "Prua Dryoae GM-K b42-1", + "Prua Dryoae HM-K b42-0", + "Prua Dryoae UU-R a86-3", + "Prua Dryoae CM-J d10-3", + "Prua Dryoae HJ-R c21-6", + "Prua Dryoae BV-R a86-5", + "Prua Dryoae DV-R a86-1", + "Prua Dryoae IJ-R c21-9", + "HD 101035", + "Prua Dryoae JJ-R c21-7", + "Swoiphs PB-Q a87-1", + "Swoiphs WH-O a88-5", + "Sifeae JD-V b43-0", + "Swoiphs BI-O a88-2", + "Sifeae LD-V b43-2", + "Sifeae VR-J c22-14", + "Sifeae RJ-T b44-5", + "Sifeae ZK-P e5-0", + "Sifeae UJ-T b44-2", + "Sifeae XU-R b45-3", + "Sifeae YU-R b45-6", + "Sifeae DB-Q b46-2", + "Sifeae EB-Q b46-2", + "Sifeae JH-O b47-5", + "HD 100137", + "Sifeae LH-O b47-3", + "NGC 4463 Sector TT-Z d42", + "NGC 4463 Sector QT-C b2-6", + "NGC 4463 Sector VZ-A b3-3", + "NGC 4463 Sector TT-Z d46", + "NGC 4463 Sector MS-Z c1-16", + "NGC 4463 Sector MS-Z c1-18", + "NGC 4463 Sector YZ-X d1-24", + "NGC 4463 Sector JX-V b5-2", + "NGC 4463 Sector ZZ-X d1-86", + "NGC 4463 Sector ZZ-X d1-82", + "NGC 4463 Sector VE-S b7-1", + "NGC 4463 Sector XZ-R b7-3", + "NGC 4463 Sector ZZ-X d1-89", + "NGC 4463 Sector ZZ-X d1-17", + "NGC 4463 Sector MH-H a16-1", + "NGC 4463 Sector GB-U c4-1", + "NGC 4463 Sector PX-N b9-2", + "NGC 4463 Sector GB-W d2-41", + "NGC 4463 Sector YJ-K b11-0", + "NGC 4463 Sector GB-W d2-37", + "NGC 4463 Sector AF-T a23-3", + "HD 101794", + "NGC 4463 Sector HL-R a24-1", + "NGC 4463 Sector KW-G b13-6", + "NGC 4463 Sector XD-M a27-1", + "NGC 4463 Sector ZD-M a27-2", + "NGC 4463 Sector JQ-I a29-1", + "NGC 4463 Sector MH-U d3-27", + "NGC 4463 Sector XN-D a32-2", + "NGC 4463 Sector DU-B a33-2", + "NGC 4463 Sector NG-Y a34-1", + "NGC 4463 Sector RN-S d4-3", + "NGC 4463 Sector ZS-U a36-3", + "NGC 4463 Sector GZ-S a37-0", + "NGC 4463 Sector OA-R a38-0", + "NGC 4463 Sector SL-P a39-1", + "NGC 4609 Sector JU-Y a5-1", + "NGC 4609 Sector SG-V a7-0", + "NGC 4609 Sector AZ-V b4-0", + "NGC 4609 Sector AK-Z d29", + "NGC 4609 Sector DA-X c2-7", + "NGC 4609 Sector AK-Z d63", + "NGC 4609 Sector AK-Z d17", + "NGC 4609 Sector AK-Z d36", + "NGC 4609 Sector LB-V c3-5", + "NGC 4609 Sector UR-R b6-4", + "NGC 4609 Sector MB-V c3-11", + "NGC 4609 Sector FQ-X d1-64", + "NGC 4609 Sector NB-V c3-9", + "NGC 4609 Sector CY-P b7-4", + "NGC 4609 Sector GQ-X d1-33", + "NGC 4609 Sector FY-P b7-4", + "NGC 4609 Sector GY-P b7-2", + "NGC 4609 Sector QB-V c3-16", + "Aucops TS-O b12-3", + "Blaa Eoq IQ-O b12-2", + "Blaa Eoq OW-M b13-3", + "Blaa Eoq TN-T c6-5", + "Blaa Eoq RH-L b14-4", + "Blaa Eoq UN-T c6-4", + "Blaa Eoq SL-T a30-1", + "Blaa Eoq UL-T a30-1", + "Blaa Eoq XL-T a30-2", + "Blaa Eoq DS-R a31-0", + "Blaa Eoq OU-V d3-3", + "Blaa Eoq MY-P a32-0", + "Blaa Eoq SE-O a33-1", + "Blaa Eoq YK-M a34-2", + "Blaa Eoq AL-M a34-3", + "Blaa Eoq CL-M a34-5", + "Blaa Eoq IR-K a35-0", + "Blaa Eoq QU-V d3-34", + "Blaa Eoq PX-I a36-2", + "Blaa Eoq QU-V d3-38", + "Blaa Eoq RU-V d3-17", + "Blaa Eoq BP-F a38-2", + "Blaa Eoq EP-F a38-3", + "Phylurn AU-Q b18-5", + "Blaa Eoq IP-F a38-4", + "Blaa Eoq LP-F a38-0", + "Blaa Eoq WA-U d4-8", + "Blaa Eoq PP-F a38-2", + "Blaa Eoq RP-F a38-0", + "Blaa Eoq XA-U d4-22", + "HD 99619", + "Blaa Eoq XP-F a38-2", + "Col 240 Sector MX-E a42-1", + "Col 240 Sector HJ-G c11-3", + "Col 240 Sector OX-M b22-1", + "Col 240 Sector PX-M b22-0", + "Col 240 Sector ZD-D a43-3", + "Col 240 Sector YX-E a42-1", + "Col 240 Sector KJ-G c11-4", + "Col 240 Sector DY-E a42-3", + "Col 240 Sector JE-D a43-0", + "Col 240 Sector HY-E a42-1", + "Col 240 Sector JY-E a42-1", + "Col 240 Sector LO-G c11-5", + "Col 240 Sector RJ-Q d5-27", + "Col 240 Sector MO-G c11-10", + "Col 240 Sector SJ-Q d5-51", + "Col 240 Sector SJ-Q d5-46", + "Col 240 Sector ZR-O b21-5", + "Col 240 Sector AS-O b21-3", + "Col 240 Sector OO-G c11-8", + "Col 240 Sector TJ-Q d5-54", + "Col 240 Sector ES-O b21-0", + "Col 240 Sector JY-M b22-0", + "2MASS J11132054-6053363", + "2MASS J11130497-6049452", + "TYC 8959-364-2", + "2MASS J11130472-6047135", + "NGC 3590 MV 4", + "NGC 3590 CLA 15", + "HD 306185", + "2MASS J11123987-6047011", + "NGC 3590 MV 12", + "NGC 3590 Sector UT-R a4-1", + "NGC 3590 Sector BA-A d12", + "Col 240 Sector AB-J b24-0", + "Col 240 Sector GH-H b25-0", + "Col 240 Sector HH-H b25-4", + "Col 240 Sector FW-C c13-7", + "IC 2944 Sector PP-Q b8-0", + "IC 2944 Sector UV-O b9-0", + "IC 2944 Sector VV-O b9-2", + "IC 2944 Sector WV-O b9-0", + "IC 2944 Sector WE-Y d1-26", + "IC 2944 Sector EX-M b10-2", + "IC 2944 Sector FX-M b10-0", + "IC 2944 Sector ER-S c5-0", + "IC 2944 Sector LD-L b11-2", + "IC 2944 Sector SE-J b12-1", + "IC 2944 Sector VP-H b13-0", + "IC 2944 Sector WP-H b13-1", + "IC 2944 Sector KX-Q c6-5", + "IC 2944 Sector CW-F b14-2", + "IC 2944 Sector HR-U d3-13", + "IC 2944 Sector FG-X e1-3", + "IC 2944 Sector QD-P c7-5", + "IC 2944 Sector RO-A b17-0", + "IC 2944 Sector SO-A b17-0", + "IC 2944 Sector TO-A b17-0", + "Statue of Liberty Sector FW-W c1-2", + "Statue of Liberty Sector OY-R b4-1", + "Statue of Liberty Sector LS-T b3-0", + "Statue of Liberty Sector OD-S b4-0", + "Statue of Liberty Sector LX-T b3-2", + "Statue of Liberty Sector DL-Y d25", + "Statue of Liberty Sector FG-Y e5", + "Statue of Liberty Sector PI-S b4-0", + "Statue of Liberty Sector QI-S b4-0", + "Statue of Liberty Sector FW-K a9-1", + "Statue of Liberty Sector IW-K a9-0", + "IC 2944 Sector XH-C a34-0", + "IC 2944 Sector ZH-C a34-0", + "IC 2944 Sector GO-A a35-0", + "IC 2944 Sector GT-A a35-1", + "IC 2944 Sector KO-A a35-1", + "IC 2944 Sector KT-A a35-2", + "IC 2944 Sector MR-U d3-20", + "IC 2944 Sector LI-C a34-0", + "Blua Eoq CI-G a65-0", + "Blua Eoq DL-Y g0", + "Blua Eoq GC-C b33-1", + "Blua Eoq TA-B a68-0", + "Blua Eoq TF-B a68-0", + "Blo Thae QH-U c16-7", + "Blo Thae MV-M b34-2", + "Blo Thae LA-N b34-1", + "NGC 3572 Sector DB-X c1-0", + "NGC 3572 Sector FR-V b2-2", + "NGC 3572 Sector AV-Y c1", + "NGC 3572 Sector EB-X c1-5", + "NGC 3572 Sector IR-V b2-0", + "NGC 3572 Sector FB-X c1-4", + "NGC 3572 Sector YE-A g2", + "NGC 3572 Sector IR-W d1-9", + "NGC 3572 Sector QN-S b4-0", + "Blo Thae BI-I b37-1", + "Blo Thae AP-I d9-17", + "Blo Thae BE-R c18-1", + "Blo Thae AS-I b37-0", + "Blo Thae BS-I b37-0", + "Blo Thae YL-K b36-0", + "Blo Thae BJ-R c18-4", + "Tyriedgoea MO-I d9-2", + "Tyriedgoea MO-I d9-20", + "Tyriedgoea PJ-K b36-1", + "Tyriedgoea II-K d8-12", + "Tyriedgoea IX-N b34-0", + "Tyriedgoea DW-P b33-0", + "Tyriedgoea BB-Q b33-0", + "Tyriedgoea AQ-R b32-0", + "Tyriedgoea DH-M d7-10", + "Tyriedgoea ZU-R b32-0", + "Tyriedgoea VO-T b31-0", + "Tyriedgoea UD-V b30-0", + "Tyriedgoea DH-M d7-2", + "Tyriedgoea LW-Y b28-0", + "Tyriedgoea LX-U e2-0", + "Tyriedgoea JQ-A b28-0", + "Tyriedgoea KQ-A b28-0", + "Tyriedgoea CW-N d6-9", + "Tyriedgoea OL-A b28-0", + "Tyriedgoea PL-A b28-0", + "Tyriedgoea DW-N d6-19", + "Tyriedgoea VR-Y b28-0", + "Tyriedgoea WR-Y b28-0", + "Col 228 Sector CW-V d2-19", + "Col 228 Sector CW-V d2-18", + "Col 228 Sector GC-U d3-3", + "Col 228 Sector PB-G b13-0", + "Col 228 Sector JY-P c6-2", + "Col 228 Sector SB-G b13-0", + "Col 228 Sector UW-F b13-1", + "Col 228 Sector ZC-E b14-1", + "Col 228 Sector KY-P c6-1", + "Col 228 Sector BD-E b14-0", + "Col 228 Sector IE-C b15-1", + "Col 228 Sector KX-T d3-13", + "Col 228 Sector TZ-N c7-4", + "Col 228 Sector NP-A b16-0", + "Col 228 Sector UZ-N c7-5", + "Col 228 Sector VQ-Y b16-0", + "Col 228 Sector ZF-M c8-0", + "Col 228 Sector ZL-Y b16-1", + "Col 228 Sector FN-W b17-1", + "NGC 3324 Sector VI-V b17-1", + "NGC 3324 Sector BP-T b18-1", + "NGC 3324 Sector CP-T b18-0", + "NGC 3324 Sector DS-J c9-8", + "NGC 3324 Sector ME-O a36-0", + "NGC 3324 Sector IY-H c10-1", + "NGC 3324 Sector CX-I a39-0", + "NGC 3324 Sector HD-H a40-2", + "NGC 3324 Sector QT-R d4-3", + "NGC 3324 Sector PJ-F a41-0", + "NGC 3324 Sector VP-D a42-4", + "NGC 3324 Sector RT-R d4-15", + "NGC 3324 Sector DR-B a43-0", + "NGC 3324 Sector FR-B a43-2", + "NGC 3324 Sector IZ-L b22-2", + "NGC 3324 Sector UU-F c11-3", + "NGC 3324 Sector UU-F c11-6", + "Eta Carinae", + "NGC 3324 Sector OU-L b22-0", + "NGC 3324 Sector LO-N b21-0", + "NGC 3324 Sector WU-F c11-4", + "NGC 3324 Sector JI-P b20-1", + "NGC 3324 Sector KI-P b20-1", + "Bleia Eork MW-U b36-1", + "Bleia Eork NW-U b36-0", + "Bleia Eork LQ-W b35-1", + "Bleia Eork VZ-M d8-7", + "Bleia Eork NQ-W b35-1", + "Bleia Eork TK-Y c17-1", + "Bleia Eork JP-Y b34-0", + "Blae Eork KD-A c17-2", + "Blae Eork ZM-Y b34-1", + "Blae Eork WG-A b34-1", + "Blae Eork XG-A b34-1", + "Blae Eork YG-A b34-1", + "Blae Eork BC-A b34-1", + "Blae Eork CH-U e3-4", + "Blae Eork ID-Y b34-0", + "Blae Eork MJ-W b35-1", + "Blae Eork QP-U b36-0", + "Blae Eork XK-W c18-1", + "Blae Eork WK-W c18-0", + "Blae Eork CI-P b39-0", + "Blae Eork GO-N b40-0", + "Blae Eork LU-L b41-1", + "Blae Eork OA-K b42-1", + "Blae Eork JD-R c21-5", + "CPD-58 2648", + "CPD-59 2627", + "2MASS J10443666-5946218", + "Blae Eork OJ-P c22-3", + "Trumpler 16 HG 1462", + "CPD-59 2591", + "Blae Eork QA-B b47-0", + "PCYC 666", + "Blae Eork SA-B b47-0", + "Blae Eork TA-B b47-0", + "2MASS J10442445-5951430", + "Blae Eork YM-H d11-18", + "Blae Eork ZK-N c23-2", + "Blae Eork HI-X b48-0", + "Blae Eork KT-V b49-0", + "Blae Eork NO-V b49-0", + "Blae Eork FR-L c24-2", + "Tr 16 Sector RA-M b8-0", + "2MASS J10432911-6003200", + "Tr 16 Sector DB-X d1-12", + "Tr 16 Sector XG-K b9-0", + "Tr 16 Sector ZG-K b9-0", + "Tr 16 Sector ND-S c4-0", + "Tr 16 Sector EB-X d1-17", + "Tr 16 Sector II-I b10-0", + "Tr 16 Sector LD-I b10-0", + "Tr 16 Sector OO-G b11-0", + "Tr 16 Sector PO-G b11-0", + "Tr 16 Sector QO-G b11-0", + "Tr 16 Sector RO-G b11-0", + "Tr 16 Sector VJ-Q c5-4", + "Tr 16 Sector TO-G b11-0", + "Tr 16 Sector VJ-G b11-0", + "Tr 16 Sector XJ-G b11-0", + "Tr 16 Sector VY-R c4-2", + "Tr 16 Sector NC-V d2-2", + "Tr 14 Sector JM-W d1-10", + "Tr 16 Sector CA-Q c5-7", + "Tr 16 Sector NC-V d2-6", + "Tr 16 Sector GG-O c6-6", + "Tr 14 Sector TY-S c3-12", + "Tr 14 Sector LC-M b7-0", + "Eta Carina Sector HR-W c1-3", + "Eta Carina Sector RT-R b4-0", + "Eta Carina Sector HR-W d1-22", + "Eta Carina Sector KC-V c2-1", + "Eta Carina Sector SJ-Q b5-0", + "Eta Carina Sector RO-Q b5-0", + "2MASS J10442897-5942343", + "Eta Carina Sector NY-Q b5-0", + "Eta Carina Sector KD-R b5-1", + "Tr 14 Sector GD-W a17-1", + "Tr 14 Sector IH-V d2-19", + "Blu Theia ND-Z c27-1", + "Blu Theia LI-Z c27-3", + "Blu Theia LI-Z c27-6", + "Blu Theia QF-Z b55-0", + "Blu Theia RT-Z d13-23", + "Blu Theia HS-Z c27-0", + "Blu Theia KE-B b55-0", + "Blu Theia FY-C b54-0", + "Blu Theia CM-B c27-3", + "Blu Theia XW-E b53-0", + "Blu Theia VB-F b53-0", + "Blu Theia QV-G b52-0", + "Blu Theia LP-I b51-0", + "Blu Theia HJ-K b50-0", + "Blu Theia EO-K b50-0", + "Blu Theia YM-M b49-0", + "Blu Theia UG-O b48-0", + "Blu Theia FM-D d12-9", + "Blu Theia NF-Q b47-0", + "Blu Theia AQ-P e5-1", + "Blu Theia HZ-R b46-0", + "Blu Theia BG-F d11-6", + "Blu Theia BG-F d11-11", + "Blu Theia AG-F d11-4", + "Blu Theia ZH-V b44-0", + "Blu Theia VW-W b43-0", + "Blu Theia TB-X b43-0", + "Blu Theia UK-M c21-1", + "Blu Theia QE-O c20-2", + "Blu Theia WZ-G d10-9", + "Blu Theia PE-O c20-0", + "Blu Theia EJ-C b41-0", + "Blu Theia FE-C b41-0", + "Blu Theia KY-P c19-1", + "Blu Theia QT-I d9-8", + "Blu Theia TW-F b39-0", + "Blu Theia QB-G b39-0", + "Blu Theia PB-G b39-0", + "Blu Theia LQ-H b38-0", + "Blu Theia JV-H b38-0", + "Blu Theia IV-H b38-0", + "Blu Theia HV-H b38-0", + "Blu Theia GV-H b38-0", + "Blu Theia FV-H b38-0", + "Blu Theia CA-I b38-0", + "Blu Theia BA-I b38-0", + "Blu Theia CV-H b38-0", + "Blu Theia DG-G b39-0", + "Blu Theia BD-Q c19-0", + "Blu Theia BG-G b39-0", + "Blu Theia LY-I d9-6", + "Blu Theia SJ-I b38-0", + "Blu Theia ND-K b37-0", + "Blu Theia GS-K d8-5", + "Blu Theia GC-M b36-0", + "Blu Theia DH-M b36-0", + "Blu Theia VU-P b34-0", + "Blu Theia SZ-P b34-0", + "Blu Theia NT-R b33-0", + "Blu Theia KY-R b33-0", + "Blu Theia FS-T b32-0", + "Blu Theia DX-T b32-0", + "Blu Theia CX-T b32-0", + "Blu Theia YX-X c15-0", + "Blu Theia VV-V b31-0", + "Blu Theia XX-X c15-0", + "Blu Theia SR-Z c14-1", + "Blu Theia WV-M d7-1", + "Blu Theia WV-M d7-2", + "Blu Theia QW-Z c14-0", + "Blu Theia CN-B b29-0", + "Blu Theia YG-D b28-0", + "Blu Theia SF-F b27-0", + "Blu Theia QU-O d6-2", + "Blu Theia GP-D c13-0", + "Tyriedgoea BP-Q d5-2", + "Tyriedgoea BP-Q d5-3", + "Tyriedgoea BP-Q d5-0", + "Tyriedgoea BP-Q d5-4", + "Tyriedgoea DK-Q d5-1", + "Blu Theia OZ-G b26-0", + "Blu Theia QU-G b26-0", + "Tyriedgoea HQ-O d6-4", + "Tyriedgoea PG-D c13-1", + "Tyriedgoea JL-O d6-7", + "Tyriedgoea RB-D c13-1", + "Tyriedgoea KY-F b26-0", + "Tyriedgoea JL-O d6-1", + "Tyriedgoea OQ-E c12-0", + "Tyriedgoea CX-H b25-0", + "Tyriedgoea LV-E c12-0", + "Tyriedgoea EF-Q d5-8", + "Tyriedgoea UV-J b24-0", + "Tyriedgoea QP-L b23-0", + "Tyriedgoea MJ-N b22-0", + "Tyriedgoea LJ-N b22-0", + "Tyriedgoea KJ-N b22-0", + "Tyriedgoea FD-P b21-0", + "Tyriedgoea ED-P b21-0", + "Tyriedgoea ZW-Q b20-0", + "Tyriedgoea VQ-S b19-0", + "Tyriedgoea TV-S b19-0", + "Tyriedgoea XD-S d4-0", + "Tyriedgoea QK-U b18-0", + "Tyriedgoea PK-U b18-0", + "Tyriedgoea OK-U b18-0", + "Tyriedgoea LP-U b18-0", + "Tyriedgoea JU-U b18-0", + "Tyriedgoea NB-M c8-1", + "Tyriedgoea BT-W b17-0", + "Tyriedgoea ZS-W b17-0", + "Tyriedgoea RX-T d3-7", + "Tyriedgoea MB-M c8-1", + "Tyriedgoea TM-Y b16-0", + "Tyriedgoea SM-Y b16-0", + "Tyriedgoea QX-T d3-3", + "Tyriedgoea QX-T d3-2", + "Tyriedgoea LV-B b15-0", + "Tyriedgoea KV-B b15-0", + "Tyriedgoea EA-O c7-0", + "Tyriedgoea ZT-P c6-0", + "Tyriedgoea CU-D b14-0", + "Tyriedgoea EQ-Y e1", + "Tyriedgoea YN-F b13-0", + "Tyriedgoea LR-V d2-7", + "Tyriedgoea UN-R c5-0", + "Tyriedgoea QH-T c4-0", + "Tyriedgoea QH-T c4-1", + "Tyriedgoea HL-X d1-4", + "Tyriedgoea FP-M b9-0", + "Tyriedgoea EP-M b9-0", + "Tyriedgoea AJ-O b8-0", + "Tyriedgoea VC-Q b7-0", + "Tyriedgoea UC-Q b7-0", + "Tyriedgoea PW-R b6-0", + "Tyriedgoea OW-R b6-0", + "Tyriedgoea BF-Z d6", + "Tyriedgoea KB-S b6-0", + "Tyriedgoea FV-T b5-0", + "Tyriedgoea AF-Z d5", + "Tyriedgoea AP-V b4-0", + "Tyriedgoea AF-Z d6", + "Tyriedgoea BK-V b4-0", + "Tyriedgoea WD-X b3-0", + "Tyriedgoea VD-A c1-2", + "Tyriedgoea RX-Y b2-0", + "Tyriedgoea VY-A d8", + "Tyriedgoea SI-A c1-2", + "Tyriedgoea JW-A b2-0", + "Tyriedgoea GL-C b1-0", + "Tyriedgoea FL-C b1-0", + "Tyriedgoea ZJ-E b0", + "Pru Eurl QH-X b58-0", + "Pru Eurl CN-A d14-2", + "Pru Eurl JG-Z b57-0", + "Pru Eurl EQ-Z c28-0", + "Pru Eurl DA-B b57-0", + "Pru Eurl CA-B b57-0", + "Pru Eurl BA-B b57-0", + "Pru Eurl WT-C b56-0", + "Pru Eurl SN-E b55-0", + "Pru Eurl PS-E b55-0", + "Pru Eurl KM-G b54-0", + "Pru Eurl JM-G b54-0", + "Pru Eurl FG-I b53-0", + "Pru Eurl XF-O e6-0", + "Pru Eurl AA-K b52-0", + "Pru Eurl VT-L b51-0", + "Pru Eurl PF-E d12-9", + "Pru Eurl QX-O b49-0", + "Pru Eurl RA-E d12-9", + "Pru Eurl GG-I c24-3", + "Pru Eurl QA-E d12-5", + "Pru Eurl DL-I c24-2", + "Pru Eurl CQ-S b47-0", + "Pru Eurl BQ-S b47-0", + "Pru Eurl XJ-U b46-0", + "Pru Eurl YE-K c23-0", + "Sifaea BV-F d11-15", + "Pru Eurl OX-X b44-0", + "Pru Eurl SZ-P e5-1", + "Pru Eurl KZ-F d11-0", + "Sifaea ZZ-X b44-0", + "Sifaea VT-H d10-9", + "Sifaea UT-N c21-0", + "Sifaea QY-Z b43-0", + "Sifaea SY-N c21-0", + "Sifaea IX-B b43-0", + "Sifaea NS-P c20-1", + "Sifaea DR-D b42-0", + "Sifaea YK-F b41-0", + "Sifaea XK-F b41-0", + "Sifaea SE-H b40-0", + "Sifaea PN-J d9-10", + "Sifaea PN-J d9-2", + "Sifaea JS-K b38-0", + "Sifaea IS-K b38-0", + "Sifaea HS-K b38-0", + "Sifaea HN-K b38-0", + "Sifaea UT-R e4-1", + "Sifaea ES-K b38-0", + "Sifaea HY-I b39-0", + "Sifaea IT-I b39-0", + "Sifaea NN-J d9-8", + "Sifaea EY-I b39-0", + "Sifaea CM-R c19-0", + "Sifaea MN-J d9-1", + "Sifaea BM-R c19-1", + "Sifaea GE-H b40-0", + "Sifaea FE-H b40-0", + "Sifaea EE-H b40-0", + "Sifaea FZ-G b40-0", + "Sifaea EZ-G b40-0", + "Sifaea DZ-G b40-0", + "Sifaea ST-R e4-0", + "Sifaea BZ-G b40-0", + "Sifaea YD-H b40-0", + "Sifaea KN-J d9-3", + "Sifaea XD-H b40-0", + "Sifaea KN-J d9-13", + "Sifaea JN-J d9-1", + "Sifaea VD-H b40-0", + "Sifaea JN-J d9-2", + "Sifaea UL-R c19-1", + "Sifaea JW-K b38-0", + "Sifaea EQ-M b37-0", + "Sifaea EH-L d8-4", + "Sifaea BF-O b36-0", + "Sifaea AF-O b36-0", + "Sifaea VY-P b35-0", + "Sifaea YE-O b36-0", + "Sifaea XE-O b36-0", + "Sifaea DH-L d8-12", + "Sifaea DH-L d8-13", + "Sifaea RY-P b35-0", + "Sifaea IZ-U c17-0", + "Sifaea LS-R b34-0", + "Sifaea CH-L d8-6", + "Sifaea CH-L d8-1", + "Sifaea GW-U b32-1", + "Sifaea AW-M d7-2", + "Sifaea DD-Y c15-0", + "Sifaea DL-W b31-0", + "Sifaea YE-Y b30-1", + "Sifaea ZV-M d7-3", + "Sifaea AA-Y b30-0", + "Sifaea WT-Z b29-0", + "Sifaea KC-V e2-2", + "Sifaea WP-O d6-16", + "Sifaea KC-V e2-3", + "Sifaea QS-B b29-0", + "Sifaea RN-B b29-1", + "Sifaea QN-B b29-0", + "Sifaea VP-O d6-1", + "Sifaea ST-Z b29-0", + "Sifaea YV-M d7-12", + "Sifaea QT-Z b29-0", + "Sifaea LN-B b29-1", + "Sifaea UP-O d6-8", + "Sifaea DM-D b28-2", + "Sifaea TP-O d6-26", + "Sifaea CH-D b28-0", + "Sifaea BH-D b28-1", + "Sifaea WA-F b27-2", + "Sifaea SP-O d6-26", + "Sifaea PZ-G b26-0", + "Sifaea OZ-G b26-1", + "Pro Eur VV-I b25-0", + "Pro Eur UV-I b25-0", + "Pro Eur PP-K b24-2", + "Pro Eur SV-I b25-0", + "Pro Eur PK-K b24-0", + "Pro Eur CK-Q d5-6", + "Pro Eur ED-O b22-0", + "Pro Eur ZW-P b21-2", + "Pro Eur YW-P b21-0", + "Pro Eur XW-P b21-0", + "Pro Eur WW-P b21-0", + "Pro Eur WS-I c10-7", + "Pro Eur QQ-R b20-0", + "Pro Eur RM-K c9-3", + "Pro Eur WD-S d4-28", + "Pro Eur MG-M c8-4", + "Pro Eur CT-W b17-2", + "Pro Eur LG-M c8-5", + "Pro Eur WM-Y b16-1", + "Pro Eur TR-Y b16-0", + "Pro Eur NL-A b16-2", + "Pro Eur FA-O c7-0", + "Pro Eur IF-C b15-0", + "Pro Eur DZ-D b14-2", + "Pro Eur CZ-D b14-1", + "Pro Eur ZN-F b13-1", + "Pro Eur YT-P c6-3", + "Pro Eur LR-V d2-36", + "Pro Eur WN-F b13-1", + "Pro Eur ZT-D b14-1", + "Pro Eur AP-D b14-1", + "Pro Eur DV-B b15-2", + "Pro Eur CV-B b15-2", + "Pro Eur NX-T d3-41", + "Pro Eur NX-T d3-32", + "Pro Eur FB-M c8-1", + "Pro Eur LN-W b17-2", + "Pro Eur NX-T d3-15", + "Pro Eur GM-K c9-0", + "Pro Eur PE-T b19-0", + "Pro Eur FM-K c9-6", + "Pro Eur RK-R b20-0", + "Pro Eur IS-I c10-0", + "Pro Eur PD-S d4-9", + "Pro Eur GW-W e1-0", + "Pro Eur EH-K c9-9", + "Pro Eur EY-U b18-1", + "Pro Eur BM-K c9-3", + "Pro Eur ET-U b18-0", + "Pro Eur AM-K c9-5", + "Pro Eur OD-S d4-23", + "Pro Eur ZL-K c9-4", + "Pro Eur ND-S d4-26", + "Pro Eur VC-V b18-0", + "Pro Eur UC-V b18-0", + "Pro Eur IX-T d3-26", + "Pro Eur SC-V b18-0", + "Pro Eur TX-U b18-1", + "Pro Eur MD-S d4-24", + "Pro Eur MD-S d4-23", + "Pro Eur OR-W b17-1", + "Pro Eur HX-T d3-18", + "Pro Eur RF-M c8-2", + "Pro Eur HL-Y b16-0", + "Pro Eur IG-Y b16-0", + "Pro Eur DA-A b16-2", + "Pro Eur GG-Y b16-0", + "Pro Eur DL-Y b16-0", + "Pro Eur GX-T d3-1", + "Sifeae IH-A b16-1", + "Sifeae GM-A b16-0", + "Sifeae FM-A b16-0", + "Sifeae VX-T d3-11", + "Sifeae UX-T d3-1", + "Sifeae LF-O c7-0", + "Sifeae SC-U d3-1", + "Sifeae NW-V d2-6", + "Sifeae NW-V d2-16", + "Sifeae OE-E b14-1", + "Sifeae NE-E b14-0", + "Sifeae QK-C b15-0", + "Sifeae QC-U d3-22", + "Sifeae OK-C b15-0", + "Sifeae MK-C b15-1", + "Sifeae DU-P c6-4", + "Sifeae JZ-D b14-0", + "Sifeae GE-E b14-0", + "Sifeae FE-E b14-0", + "Sifeae CT-F b13-0", + "Sifeae BT-F b13-0", + "Sifeae ZY-P c6-1", + "Sifeae KW-V d2-9", + "Sifeae RR-H b12-0", + "Sifeae XY-P c6-6", + "Sifeae XY-P c6-0", + "Sifeae JW-V d2-12", + "Sifeae WD-E b14-0", + "Sifeae XT-P c6-5", + "Sifeae WY-D b14-0", + "Sifeae VY-D b14-1", + "Sifeae AA-C b15-1", + "Sifeae ZZ-N c7-0", + "Sifeae AL-A b16-1", + "Sifeae VE-C b15-1", + "Sifeae YK-A b16-1", + "Sifeae MX-T d3-28", + "Sifeae ZV-Y b16-0", + "Sifeae KC-U d3-4", + "Synuefe YG-Z b47-0", + "Synuefe XK-N c23-3", + "Col 285 Sector MR-M c7-13", + "Col 285 Sector SH-B b14-7", + "Col 285 Sector RH-B b14-2", + "HIP 28150", + "Col 285 Sector NM-B b14-6", + "Hyades Sector LC-V d2-99", + "Trianguli Sector QI-T b3-6", + "Trianguli Sector PI-T b3-7", + "Trianguli Sector TU-O a6-1", + "Tascheter Sector TY-R a4-2", + "LP 415-26", + "Delta Trianguli", + "LHS 4003", + "WISE 2056+1459", + "LP 634-1", + "Volungu", + "Liaedin", + "Wolf 1062", + "IL Aquarii", + "LAWD 96", + "Core Sys Sector CQ-P a5-2", + "Alectrona", + "Hyldekagati", + "Ceti Sector CQ-Y d89", + "Ceti Sector PD-S b4-1", + "Quivira", + "Kadrusa", + "ICZ CL-X b1-5", + "ICZ EW-V b2-4", + "Sanna", + "Euryale", + "LPM 26", + "Putamasin", + "LFT 78", + "Col 285 Sector NE-R a34-0", + "LHS 160", + "LHS 1351", + "LP 91-140", + "Ennead", + "Mitra", + "CD-58 538" + ], + "starport": [ + "Bosch Terminal", + "Julian Gateway", + "Jemison Dock", + "Galvani Port", + "Wundt Gateway", + "Conrad Port", + "Knapp Vision", + "Herzfeld Landing", + "Kotov Terminal", + "Weston Orbital", + "Ricardo Landing", + "Brand City", + "Huygens Mines", + "Zudov City", + "Chomsky Ring", + "Wescott Terminal", + "Dirac Hub", + "Planck Dock", + "Hertz Colony", + "Bosch Mines", + "Blaschke Vision", + "Nicollet City", + "Ejeta Colony", + "Pierres Ring", + "Grant Terminal", + "Narvaez Orbital", + "Legendre Ring", + "Popper Dock", + "Brooks City", + "Wells Hub", + "Barcelos City", + "Perez Market", + "Lopez de Villalobos Prospect", + "Oramus Legacy", + "Henry Hub", + "Schade Platform", + "Selberg's Inheritance", + "Solovyov Orbital", + "Pierce Hanger", + "Giles Colony", + "Marshall Hub", + "Ising Hub", + "Arrhenius Hub", + "Vaucanson Hub", + "Frimout Horizons", + "Parry Terminal", + "Saberhagen Port", + "Stafford Terminal", + "Willis City", + "Romanenko Gateway", + "Jakes Enterprise", + "Budarin Terminal", + "Horowitz Gateway", + "Burke Hub", + "Perrin Ring", + "Balandin Enterprise", + "So-yeon Port", + "Potter Gateway", + "Tudela Installation", + "Quimper Ring", + "Julian City", + "Whitelaw Enterprise", + "Saunders's Dive", + "Harvestport", + "Brunton Hub", + "Nasmyth Station", + "Currie Enterprise", + "McArthur Plant", + "Lundwall City", + "Tshang Enterprise", + "Mach Dock", + "Wellman Gateway", + "Moisuc Refinery", + "Boe Enterprise", + "Gelfand Survey", + "Artyukhin Ring", + "Aitken Vision", + "Laphrian Shipyard", + "Crook Orbital", + "Rand City", + "Morgan Terminal", + "Oswald Platform", + "Aksyonov Platform", + "Coney Arena", + "Roberts Hub", + "Ayerdhal City", + "Derleth Orbital", + "Maire Gateway", + "Dedman Gateway", + "Bailey Ring", + "Humphreys Enterprise", + "Kandel Ring", + "Polya Enterprise", + "Rozhdestvensky Station", + "Cameron Survey", + "Shuttleworth Terminal", + "Yu Port", + "Bolger Vision", + "Alpers Refinery", + "Goeschke Station", + "Stebler Mines", + "Duke Hub", + "Shepard Ring", + "Cormack Orbital", + "Harris Platform", + "Fung Outpost", + "Ore Terminal", + "McDaniel Station", + "Ellison Station", + "Hennepin Enterprise", + "Luiken Port", + "Cochrane Terminal", + "McDonald Port", + "Bykovsky Ring", + "Vaucanson Settlement", + "Nicollier Ring", + "Carrier Dock", + "DG-1 Refinery", + "Blackman Terminal", + "Proteus Orbital", + "Katzenstein Settlement", + "Porta", + "Spedding Orbital", + "Anders Orbital", + "Mohmand Dock", + "Maler Hub", + "Scott Settlement", + "Sarich Port", + "Tyurin Port", + "Reisman Station", + "Fulton Landing", + "DENIS FILIPPOV", + "Rattus High", + "Port Sippar", + "Amar Station", + "Hennen City", + "Cabrera Dock", + "Haller Port", + "Pennington City", + "Foda Station", + "Stebler City", + "Gibson Settlement", + "Strekalov Dock", + "Behnken Terminal", + "Euler Port", + "Archimedes Hub", + "Ross Dock", + "Blalock Orbital", + "Pavlov Settlement", + "Galileo", + "Stein Platform", + "Beatty Landing", + "Galiano Plant", + "Rangarajan's Base", + "Jemison Refinery", + "Solo Orbiter", + "Brunel Station", + "Brendan Gateway", + "Godel Dock", + "Slipher Vision", + "EG Main HQ", + "Crown Orbital", + "Crown City", + "Watt Ring", + "Coye Orbital", + "Tokubei Holdings", + "Haberlandt Orbital" + ] + }, + "greatestDistanceFromStart": 9017.2195143253, + "creditsEarned": 542823, + "bodiesCount": 0, + "scanSoldLevels": { + "lev_0": 647, + "lev_1": 489, + "lev_2": 132, + "lev_3": 0 + }, + "latestPayouts": [ + { + "market": "Port Sippar", + "value": 3218 + }, + { + "market": "Quimper Ring", + "value": 63035 + }, + { + "market": "Rangarajan's Base", + "value": 141702 + }, + { + "market": "Galiano Plant", + "value": 59372 + }, + { + "market": "Beatty Landing", + "value": 3424 + } + ], + "highestPayout": 34942, + "lastVisitedStarSystems": [ + "CD-58 538", + "Mitra", + "Ennead", + "LP 91-140", + "LHS 1351" + ], + "bodiesSoldCount": 1268, + "bodiesFirstDiscovered": 26 + }, + "ship": { + "spend": { + "ships": 8227344, + "fuel": 160669, + "modules": 15615586, + "ammo": 232942, + "repair": 909596 + }, + "fuel_units": { + "purchased": 0, + "scooped": 2232 + }, + "insurance": { + "claims": 24, + "value": 2714138 + } + }, + "wealth": { + "maxCredits": 23883052 + }, + "trade": { + "marketIds": [ + "3228160256", + "3228321792", + "3228393472", + "3228129280", + "3228062976", + "3227948288", + "3227868160", + "3228192000", + "3228189952", + "3228190208", + "3228191232", + "3228190464", + "3228190720", + "3228244480", + "3228249088", + "3228264192", + "3228252160", + "3228251904", + "3228190976", + "3228191488", + "3228249344", + "3227868416", + "3228248064", + "3228470784", + "3228244736", + "3228471040", + "3228339968", + "3228340224", + "3228244224", + "3228247808", + "3228329472", + "3228390400", + "3223529472", + "128129272", + "3223288832", + "3228081408", + "3228081152", + "3227955968", + "3227957248", + "3228063232", + "3228028672", + "3227998208", + "3227998464", + "3228066560", + "128134648", + "128154360", + "3228040192", + "128153848", + "3228064768", + "3228065024", + "3228064256", + "3227919360", + "128169976", + "3228064000", + "128073720", + "3228077824", + "128073464", + "3228120576" + ], + "furthest": { + "distance": 99.480201783445, + "origin": 128129272, + "destination": "3228390400" + }, + "largestProfit": { + "value": 171720, + "commodity": "Beryllium", + "qty": 120, + "marketId": "3228081152" + }, + "largestProfitPerItem": { + "value": 1433, + "commodity": "Beryllium", + "marketId": "3228081152" + }, + "count": 429, + "qty": 22410, + "profit": 14759658, + "totalDistance": 198621.73693075 + }, + "mining": { + "largestProfit": { + "value": 0, + "commodity": 0, + "qty": 0, + "marketId": 0 + }, + "largestProfitPerItem": { + "value": 0, + "commodity": 0, + "marketId": 0 + }, + "count": 0, + "qty": 0, + "profit": 0, + "converted": { + "qty": 0 + } + }, + "blackMarket": { + "marketIds": [ + "3227868160", + "3228338688", + "3228189952", + "3228247808", + "3228390144", + "128130296" + ], + "furthest": { + "distance": 69224.099624264, + "origin": 0, + "destination": "3228338688" + }, + "largestProfit": { + "value": 132005, + "commodity": "OnionHead", + "qty": 17, + "marketId": "3228390144" + }, + "largestProfitPerItem": { + "value": 13130, + "commodity": "MotronaExperienceJelly", + "marketId": "128130296" + }, + "count": 13, + "qty": 67, + "profit": 292429, + "totalDistance": 556021.41706887 + }, + "stolenGoods": { + "largestProfit": { + "value": 65650, + "commodity": "MotronaExperienceJelly", + "qty": 5, + "marketId": "128130296" + }, + "largestProfitPerItem": { + "value": 13130, + "commodity": "MotronaExperienceJelly", + "marketId": "128130296" + }, + "count": 10, + "qty": 38, + "profit": 157238 + }, + "combat": { + "bounty": { + "highestClaimed": 134706, + "qty": 239, + "value": 1215158 + }, + "bond": { + "qty": 223, + "value": 1559000 + } + }, + "crime": { + "fine": { + "qty": 11, + "value": 135334, + "factions": [] + }, + "bounty": { + "highest": { + "value": 0, + "faction": 0, + "systemId": 0 + }, + "qty": 0, + "value": 0, + "factions": [] + }, + "stolenCargo": { + "qty": 75, + "value": 442840 + } + }, + "PVP": { + "kills": { + "ranks": { + "r0": 2, + "r1": 1, + "r2": 2, + "r3": 0, + "r4": 1, + "r5": 0, + "r6": 0, + "r7": 0, + "r8": 0 + } + } + }, + "NCP": { + "kills": { + "ranks": { + "r0": 2, + "r1": 4, + "r2": 2, + "r3": 3, + "r4": 1, + "r5": 0, + "r6": 0, + "r7": 0, + "r8": 0 + } + } + }, + "prealloc": true, + "ranks": { + "combat": { + "1": { + "ts": 1417719389, + "gt": 144380 + }, + "2": { + "ts": 1419164701, + "gt": 328001 + }, + "3": { + "ts": 1419789595, + "gt": 381168 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "crime": { + "1": { + "ts": 0, + "gt": 0 + }, + "2": { + "ts": 0, + "gt": 0 + }, + "3": { + "ts": 0, + "gt": 0 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "explore": { + "1": { + "ts": 1416679505, + "gt": 7340 + }, + "2": { + "ts": 1416773896, + "gt": 32330 + }, + "3": { + "ts": 1425813076, + "gt": 645416 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "trade": { + "1": { + "ts": 1417041602, + "gt": 57777 + }, + "2": { + "ts": 1417208591, + "gt": 78181 + }, + "3": { + "ts": 1417804896, + "gt": 154613 + }, + "4": { + "ts": 1421439724, + "gt": 490202 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "federation": { + "1": { + "ts": 1418494995, + "gt": 227112 + }, + "2": { + "ts": 1418496671, + "gt": 227112 + }, + "3": { + "ts": 1419692207, + "gt": 369093 + }, + "4": { + "ts": 1420382992, + "gt": 418109 + }, + "5": { + "ts": 1437243056, + "gt": 847776 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "empire": { + "1": { + "ts": 1437243056, + "gt": 847776 + }, + "2": { + "ts": 0, + "gt": 0 + }, + "3": { + "ts": 0, + "gt": 0 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + } + }, + "lastModulesBought": [ + { + "market": "EG Main HQ", + "module": "Hpt_ChaffLauncher_Tiny", + "value": 8500 + }, + { + "market": "Godel Dock", + "module": "Int_DockingComputer_Standard", + "value": 4500 + }, + { + "market": "Quimper Ring", + "module": "Hpt_ElectronicCountermeasure_Tiny", + "value": 12500 + }, + { + "market": "Quimper Ring", + "module": "Decal_Combat_Competent", + "value": 0 + }, + { + "market": "Quimper Ring", + "module": "Int_HullReinforcement_Size4_Class2", + "value": 195000 + } + ], + "illegalGoods": { + "largestProfit": { + "value": 132005, + "commodity": "OnionHead", + "qty": 17, + "marketId": "3228390144" + }, + "largestProfitPerItem": { + "value": 13130, + "commodity": "MotronaExperienceJelly", + "marketId": "128130296" + }, + "count": 10, + "qty": 45, + "profit": 239863 + }, + "NPC": { + "kills": { + "ranks": { + "r1": 14, + "r3": 17, + "r2": 14, + "r0": 3, + "r4": 12, + "r5": 13, + "rArray": 2, + "r8": 3, + "r7": 2, + "r6": 5 + } + } + }, + "vanishCounters": { + "amongPeers": 5, + "notInDanger": 5, + "isNotDying": 2 + } + }, + "ship": { + "name": "CobraMkIII", + "modules": { + "MediumHardpoint1": { + "module": { + "id": 128049460, + "name": "Hpt_MultiCannon_Gimbal_Medium", + "value": 57000, + "unloaned": 57000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 90, + "hopper": 2100 + } + } + }, + "MediumHardpoint2": { + "module": { + "id": 128049386, + "name": "Hpt_PulseLaser_Gimbal_Medium", + "value": 35400, + "unloaned": 35400, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "SmallHardpoint1": { + "module": { + "id": 128049385, + "name": "Hpt_PulseLaser_Gimbal_Small", + "value": 6600, + "unloaned": 6600, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "SmallHardpoint2": { + "module": { + "id": 128049459, + "name": "Hpt_MultiCannon_Gimbal_Small", + "value": 14250, + "unloaned": 14250, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 90, + "hopper": 2100 + } + } + }, + "TinyHardpoint1": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 8500, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "TinyHardpoint2": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 8500, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "Decal1": { + "module": { + "id": 128667738, + "name": "Decal_Combat_Competent", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Decal2": { + "module": { + "id": 128667655, + "name": "Decal_Skull3", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Decal3": { + "module": { + "id": 128667655, + "name": "Decal_Skull3", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PaintJob": { + "module": { + "id": 128666731, + "name": "PaintJob_CobraMkIII_Stripe2_03", + "value": 0, + "health": 1000000, + "on": true, + "priority": 1, + "free": true, + "unloaned": 0 + } + }, + "Armour": { + "module": { + "id": 128049282, + "name": "CobraMkIII_Armour_Grade3", + "value": 341746, + "unloaned": 341746, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PowerPlant": { + "module": { + "id": 128064045, + "name": "Int_Powerplant_Size4_Class3", + "value": 178898, + "unloaned": 178898, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "MainEngines": { + "module": { + "id": 128064082, + "name": "Int_Engine_Size4_Class5", + "value": 1610080, + "unloaned": 1610080, + "free": false, + "health": 1000000, + "on": true, + "priority": 0 + } + }, + "FrameShiftDrive": { + "module": { + "id": 128064117, + "name": "Int_Hyperdrive_Size4_Class5", + "value": 1610080, + "unloaned": 1610080, + "free": false, + "health": 1000000, + "on": true, + "priority": 3 + } + }, + "LifeSupport": { + "module": { + "id": 128064149, + "name": "Int_LifeSupport_Size3_Class2", + "value": 10133, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "unloaned": 10133 + } + }, + "PowerDistributor": { + "module": { + "id": 128064192, + "name": "Int_PowerDistributor_Size3_Class5", + "value": 158331, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "unloaned": 158331 + } + }, + "Radar": { + "module": { + "id": 128064229, + "name": "Int_Sensors_Size3_Class2", + "value": 10133, + "unloaned": 10133, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "FuelTank": { + "module": { + "id": 128064349, + "name": "Int_FuelTank_Size4_Class3", + "value": 24734, + "health": 1000000, + "on": true, + "priority": 1, + "free": false, + "unloaned": 24734 + } + }, + "Slot01_Size4": { + "module": { + "id": 128668544, + "name": "Int_HullReinforcement_Size4_Class2", + "value": 195000, + "unloaned": 195000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot02_Size4": { + "module": { + "id": 128064314, + "name": "Int_ShieldCellBank_Size4_Class2", + "value": 28373, + "unloaned": 28373, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 2 + } + } + }, + "Slot03_Size4": { + "module": { + "id": 128064274, + "name": "Int_ShieldGenerator_Size4_Class2", + "value": 59633, + "unloaned": 59633, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot04_Size2": { + "module": { + "id": 128668540, + "name": "Int_HullReinforcement_Size2_Class2", + "value": 36000, + "unloaned": 36000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot05_Size2": { + "module": { + "id": 128666709, + "name": "Int_FSDInterdictor_Size2_Class2", + "value": 100800, + "unloaned": 100800, + "free": false, + "health": 1000000, + "on": true, + "priority": 3 + } + }, + "Slot06_Size2": { + "module": { + "id": 128049549, + "name": "Int_DockingComputer_Standard", + "value": 4500, + "unloaned": 4500, + "free": false, + "health": 1000000, + "on": false, + "priority": 0 + } + } + }, + "value": { + "hull": 235787, + "modules": 4498691, + "cargo": 0, + "total": 4734478, + "unloaned": 4498691 + }, + "free": false, + "health": { + "hull": 1000000, + "shield": 1000000, + "shieldup": true + }, + "wear": { + "dirt": 12389, + "fade": 380, + "tear": 35966, + "game": 5784 + }, + "cockpitBreached": false, + "oxygenRemaining": 450000, + "fuel": { + "capacity": 16, + "lvl": 14.381468 + }, + "reserve": { + "lvl": 0.292644 + }, + "cargo": { + "capacity": 0, + "qty": 0, + "items": [] + }, + "passengers": [], + "refinery": null + }, + "ships": { + "0": { + "name": "SideWinder", + "station": { + "id": "3228338688", + "name": "Nicollet City" + }, + "starsystem": { + "id": "8055378940618", + "name": "Chang Yeh", + "systemaddress": "8055378940618" + } + }, + "2": { + "name": "CobraMkIII", + "station": { + "id": "3223873536", + "name": "Haberlandt Orbital" + }, + "starsystem": { + "id": "63318", + "name": "CD-58 538", + "systemaddress": "5031721931474" + } + } + } +} \ No newline at end of file diff --git a/utils/src/test/resources/edce/edce4.json b/utils/src/test/resources/edce/edce4.json new file mode 100644 index 0000000..df8feb8 --- /dev/null +++ b/utils/src/test/resources/edce/edce4.json @@ -0,0 +1,4280 @@ +{ + "commander": { + "id": 126367, + "name": "MoHax", + "credits": 23882390, + "debt": 0, + "currentShipId": 2, + "alive": true, + "docked": true, + "rank": { + "combat": 3, + "trade": 4, + "explore": 3, + "crime": 0, + "service": 0, + "empire": 0, + "federation": 2, + "power": 3 + } + }, + "lastSystem": { + "id": "7034", + "name": "Iota Horologii", + "faction": "Federation" + }, + "lastStarport": { + "id": "3223721728", + "name": "Bernard Colony", + "faction": "Federation", + "commodities": [ + { + "id": "128049204", + "name": "Explosives", + "cost_min": 300, + "cost_max": 456, + "cost_mean": "378.00", + "homebuy": "60", + "homesell": "56", + "consumebuy": "4", + "baseCreationQty": 19.61, + "baseConsumptionQty": 432.4, + "capacity": 24328, + "buyPrice": 0, + "sellPrice": 385, + "meanPrice": 378, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 675, + "consumptionQty": 29735, + "targetStock": 8108, + "stock": 0, + "demand": 11910.75, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Chemicals", + "volumescale": "1.1400" + }, + { + "id": "128049202", + "name": "Hydrogen Fuel", + "cost_min": 125, + "cost_max": 168, + "cost_mean": "147.00", + "homebuy": "74", + "homesell": "71", + "consumebuy": "3", + "baseCreationQty": 200, + "baseConsumptionQty": 200, + "capacity": 13756, + "buyPrice": 109, + "sellPrice": 105, + "meanPrice": 147, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 13755, + "consumptionQty": 3440, + "targetStock": 14614, + "stock": 7307, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Chemicals", + "volumescale": "1.3000" + }, + { + "id": "128049203", + "name": "Mineral Oil", + "cost_min": 192, + "cost_max": 325, + "cost_mean": "259.00", + "homebuy": "47", + "homesell": "42", + "consumebuy": "5", + "baseCreationQty": 0, + "baseConsumptionQty": 1714.55, + "capacity": 94324, + "buyPrice": 0, + "sellPrice": 328, + "meanPrice": 259, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 117905, + "targetStock": 29476, + "stock": 0, + "demand": 72090.5, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Chemicals", + "volumescale": "1.0300" + }, + { + "id": "128049241", + "name": "Clothing", + "cost_min": 315, + "cost_max": 474, + "cost_mean": "395.00", + "homebuy": "61", + "homesell": "57", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 350, + "capacity": 4815.2, + "buyPrice": 0, + "sellPrice": 403, + "meanPrice": 395, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 6019, + "targetStock": 1504, + "stock": 0, + "demand": 2370.075, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Consumer Items", + "volumescale": "1.1500" + }, + { + "id": "128049240", + "name": "Consumer Technology", + "cost_min": 6561, + "cost_max": 7500, + "cost_mean": "7031.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 27, + "capacity": 662.4, + "buyPrice": 0, + "sellPrice": 7109, + "meanPrice": 7031, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 828, + "targetStock": 206, + "stock": 0, + "demand": 326.15, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Consumer Items", + "volumescale": "1.1000" + }, + { + "id": "128049238", + "name": "Domestic Appliances", + "cost_min": 527, + "cost_max": 734, + "cost_mean": "631.00", + "homebuy": "70", + "homesell": "67", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 209, + "capacity": 1521.6, + "buyPrice": 0, + "sellPrice": 642, + "meanPrice": 631, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 1902, + "targetStock": 475, + "stock": 0, + "demand": 748.975, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Consumer Items", + "volumescale": "1.2500" + }, + { + "id": "128049182", + "name": "Animal Meat", + "cost_min": 1286, + "cost_max": 1633, + "cost_mean": "1460.00", + "homebuy": "81", + "homesell": "79", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 97, + "capacity": 1610, + "buyPrice": 0, + "sellPrice": 1546, + "meanPrice": 1460, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 1610, + "targetStock": 402, + "stock": 0, + "demand": 956, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.4000" + }, + { + "id": "128049189", + "name": "Coffee", + "cost_min": 1372, + "cost_max": 1547, + "cost_mean": "1460.00", + "homebuy": "81", + "homesell": "79", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 97, + "capacity": 442, + "buyPrice": 0, + "sellPrice": 1508, + "meanPrice": 1460, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 442, + "targetStock": 110, + "stock": 0, + "demand": 262.5, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.4000" + }, + { + "id": "128049183", + "name": "Fish", + "cost_min": 403, + "cost_max": 583, + "cost_mean": "493.00", + "homebuy": "66", + "homesell": "63", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 271, + "capacity": 4579, + "buyPrice": 0, + "sellPrice": 536, + "meanPrice": 493, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 4579, + "targetStock": 1144, + "stock": 0, + "demand": 2718.875, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.2000" + }, + { + "id": "128049184", + "name": "Food Cartridges", + "cost_min": 173, + "cost_max": 238, + "cost_mean": "206.00", + "homebuy": "31", + "homesell": "24", + "consumebuy": "7", + "baseCreationQty": 0, + "baseConsumptionQty": 452, + "capacity": 385, + "buyPrice": 0, + "sellPrice": 222, + "meanPrice": 206, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 385, + "targetStock": 96, + "stock": 0, + "demand": 228.625, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.0000" + }, + { + "id": "128049178", + "name": "Fruit And Vegetables", + "cost_min": 315, + "cost_max": 474, + "cost_mean": "395.00", + "homebuy": "61", + "homesell": "57", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 350, + "capacity": 1593, + "buyPrice": 0, + "sellPrice": 432, + "meanPrice": 395, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 1593, + "targetStock": 398, + "stock": 0, + "demand": 945.875, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.1500" + }, + { + "id": "128049180", + "name": "Grain", + "cost_min": 207, + "cost_max": 342, + "cost_mean": "275.00", + "homebuy": "50", + "homesell": "45", + "consumebuy": "5", + "baseCreationQty": 0, + "baseConsumptionQty": 584, + "capacity": 10041, + "buyPrice": 0, + "sellPrice": 306, + "meanPrice": 275, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 10041, + "targetStock": 2509, + "stock": 0, + "demand": 5962, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.0500" + }, + { + "id": "128049185", + "name": "Synthetic Meat", + "cost_min": 252, + "cost_max": 396, + "cost_mean": "324.00", + "homebuy": "56", + "homesell": "52", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 226, + "capacity": 1029, + "buyPrice": 0, + "sellPrice": 358, + "meanPrice": 324, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 1029, + "targetStock": 257, + "stock": 0, + "demand": 611, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.1000" + }, + { + "id": "128049188", + "name": "Tea", + "cost_min": 1459, + "cost_max": 1833, + "cost_mean": "1646.00", + "homebuy": "82", + "homesell": "80", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 88, + "capacity": 1470, + "buyPrice": 0, + "sellPrice": 1739, + "meanPrice": 1646, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 1470, + "targetStock": 366, + "stock": 0, + "demand": 873, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.4200" + }, + { + "id": "128049197", + "name": "Polymers", + "cost_min": 152, + "cost_max": 279, + "cost_mean": "216.00", + "homebuy": "36", + "homesell": "30", + "consumebuy": "6", + "baseCreationQty": 51.94, + "baseConsumptionQty": 0, + "capacity": 2143.2, + "buyPrice": 93, + "sellPrice": 78, + "meanPrice": 216, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 2679, + "consumptionQty": 0, + "targetStock": 2679, + "stock": 750.5, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Industrial Materials", + "volumescale": "1.0000" + }, + { + "id": "128049199", + "name": "Semiconductors", + "cost_min": 889, + "cost_max": 1168, + "cost_mean": "1029.00", + "homebuy": "77", + "homesell": "75", + "consumebuy": "2", + "baseCreationQty": 69.96, + "baseConsumptionQty": 0, + "capacity": 2887.2, + "buyPrice": 867, + "sellPrice": 844, + "meanPrice": 1029, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 3609, + "consumptionQty": 0, + "targetStock": 3609, + "stock": 1011, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Industrial Materials", + "volumescale": "1.3400" + }, + { + "id": "128049200", + "name": "Superconductors", + "cost_min": 6561, + "cost_max": 7500, + "cost_mean": "7031.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 71.55, + "baseConsumptionQty": 0, + "capacity": 2952.8, + "buyPrice": 6865, + "sellPrice": 6790, + "meanPrice": 7031, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 3691, + "consumptionQty": 0, + "targetStock": 3691, + "stock": 1032.5, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Industrial Materials", + "volumescale": "1.1000" + }, + { + "id": "128049220", + "name": "Heliostatic Furnaces", + "cost_min": 199, + "cost_max": 333, + "cost_mean": "266.00", + "homebuy": "48", + "homesell": "43", + "consumebuy": "5", + "baseCreationQty": 0, + "baseConsumptionQty": 1629.22, + "capacity": 89629.6, + "buyPrice": 0, + "sellPrice": 273, + "meanPrice": 266, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 112037, + "targetStock": 28009, + "stock": 0, + "demand": 44114.6, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.0400" + }, + { + "id": "128049221", + "name": "Mineral Extractors", + "cost_min": 589, + "cost_max": 810, + "cost_mean": "700.00", + "homebuy": "72", + "homesell": "69", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 444.15, + "capacity": 24434.4, + "buyPrice": 0, + "sellPrice": 712, + "meanPrice": 700, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 30543, + "targetStock": 7635, + "stock": 0, + "demand": 12026.4, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.2700" + }, + { + "id": "128049217", + "name": "Power Generators", + "cost_min": 527, + "cost_max": 734, + "cost_mean": "631.00", + "homebuy": "70", + "homesell": "67", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 120.64, + "capacity": 6637.6, + "buyPrice": 0, + "sellPrice": 642, + "meanPrice": 631, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 8297, + "targetStock": 2073, + "stock": 0, + "demand": 3267.1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.2500" + }, + { + "id": "128049218", + "name": "Water Purifiers", + "cost_min": 300, + "cost_max": 456, + "cost_mean": "378.00", + "homebuy": "60", + "homesell": "56", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 37, + "capacity": 2036, + "buyPrice": 0, + "sellPrice": 386, + "meanPrice": 378, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 2545, + "targetStock": 636, + "stock": 0, + "demand": 1002.125, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.1400" + }, + { + "id": "128049210", + "name": "Basic Medicines", + "cost_min": 354, + "cost_max": 435, + "cost_mean": "395.00", + "homebuy": "61", + "homesell": "57", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 350, + "capacity": 297.6, + "buyPrice": 0, + "sellPrice": 400, + "meanPrice": 395, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 372, + "targetStock": 92, + "stock": 0, + "demand": 146.6, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.1500" + }, + { + "id": "128049209", + "name": "Performance Enhancers", + "cost_min": 6561, + "cost_max": 7500, + "cost_mean": "7031.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 135, + "capacity": 902.4, + "buyPrice": 0, + "sellPrice": 7109, + "meanPrice": 7031, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 1128, + "targetStock": 281, + "stock": 0, + "demand": 444.275, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.1000" + }, + { + "id": "128049669", + "name": "Progenitor Cells", + "cost_min": 6795, + "cost_max": 7266, + "cost_mean": "7031.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 27, + "capacity": 354.4, + "buyPrice": 0, + "sellPrice": 6842, + "meanPrice": 7031, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 443, + "targetStock": 110, + "stock": 0, + "demand": 67.9, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.1000" + }, + { + "id": "128049176", + "name": "Aluminium", + "cost_min": 330, + "cost_max": 493, + "cost_mean": "412.00", + "homebuy": "62", + "homesell": "58", + "consumebuy": "4", + "baseCreationQty": 175.96, + "baseConsumptionQty": 0, + "capacity": 7260.8, + "buyPrice": 290, + "sellPrice": 271, + "meanPrice": 412, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 9076, + "consumptionQty": 0, + "targetStock": 9076, + "stock": 2541.5, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.1600" + }, + { + "id": "128049168", + "name": "Beryllium", + "cost_min": 8017, + "cost_max": 9080, + "cost_mean": "8549.00", + "homebuy": "94", + "homesell": "93", + "consumebuy": "1", + "baseCreationQty": 12.19, + "baseConsumptionQty": 0, + "capacity": 503.2, + "buyPrice": 8413, + "sellPrice": 8323, + "meanPrice": 8549, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 629, + "consumptionQty": 0, + "targetStock": 629, + "stock": 176, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.0400" + }, + { + "id": "128049162", + "name": "Cobalt", + "cost_min": 701, + "cost_max": 944, + "cost_mean": "823.00", + "homebuy": "74", + "homesell": "71", + "consumebuy": "3", + "baseCreationQty": 162, + "baseConsumptionQty": 0, + "capacity": 6684.8, + "buyPrice": 671, + "sellPrice": 644, + "meanPrice": 823, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 8356, + "consumptionQty": 0, + "targetStock": 8356, + "stock": 2339.5, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.3000" + }, + { + "id": "128049175", + "name": "Copper", + "cost_min": 472, + "cost_max": 668, + "cost_mean": "570.00", + "homebuy": "69", + "homesell": "66", + "consumebuy": "3", + "baseCreationQty": 122.96, + "baseConsumptionQty": 0, + "capacity": 5073.6, + "buyPrice": 440, + "sellPrice": 421, + "meanPrice": 570, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 6342, + "consumptionQty": 0, + "targetStock": 6342, + "stock": 1776, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.2300" + }, + { + "id": "128049170", + "name": "Gallium", + "cost_min": 5028, + "cost_max": 5824, + "cost_mean": "5426.00", + "homebuy": "92", + "homesell": "91", + "consumebuy": "1", + "baseCreationQty": 17.49, + "baseConsumptionQty": 0, + "capacity": 722.4, + "buyPrice": 5263, + "sellPrice": 5206, + "meanPrice": 5426, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 903, + "consumptionQty": 0, + "targetStock": 903, + "stock": 252, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.1800" + }, + { + "id": "128049154", + "name": "Gold", + "cost_min": 9164, + "cost_max": 10320, + "cost_mean": "9742.00", + "homebuy": "95", + "homesell": "95", + "consumebuy": "0", + "baseCreationQty": 21, + "baseConsumptionQty": 0, + "capacity": 1156, + "buyPrice": 9673, + "sellPrice": 9672, + "meanPrice": 9742, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 1445, + "consumptionQty": 0, + "targetStock": 1445, + "stock": 404, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.0000" + }, + { + "id": "128049169", + "name": "Indium", + "cost_min": 5743, + "cost_max": 6607, + "cost_mean": "6175.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 157.94, + "baseConsumptionQty": 0, + "capacity": 6516.8, + "buyPrice": 6041, + "sellPrice": 5976, + "meanPrice": 6175, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 8146, + "consumptionQty": 0, + "targetStock": 8146, + "stock": 2279.5, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.1400" + }, + { + "id": "128049173", + "name": "Lithium", + "cost_min": 1555, + "cost_max": 1943, + "cost_mean": "1749.00", + "homebuy": "83", + "homesell": "81", + "consumebuy": "2", + "baseCreationQty": 43.99, + "baseConsumptionQty": 0, + "capacity": 1815.2, + "buyPrice": 1566, + "sellPrice": 1528, + "meanPrice": 1749, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 2269, + "consumptionQty": 0, + "targetStock": 2269, + "stock": 634.5, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.4300" + }, + { + "id": "128049153", + "name": "Palladium", + "cost_min": 13171, + "cost_max": 13883, + "cost_mean": "13527.00", + "homebuy": "97", + "homesell": "97", + "consumebuy": "0", + "baseCreationQty": 7.52, + "baseConsumptionQty": 0, + "capacity": 414.4, + "buyPrice": 13436, + "sellPrice": 13435, + "meanPrice": 13527, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 518, + "consumptionQty": 0, + "targetStock": 518, + "stock": 144.5, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.0000" + }, + { + "id": "128049155", + "name": "Silver", + "cost_min": 4705, + "cost_max": 5470, + "cost_mean": "5088.00", + "homebuy": "91", + "homesell": "90", + "consumebuy": "1", + "baseCreationQty": 35, + "baseConsumptionQty": 0, + "capacity": 1444.8, + "buyPrice": 4886, + "sellPrice": 4832, + "meanPrice": 5088, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 1806, + "consumptionQty": 0, + "targetStock": 1806, + "stock": 505, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.2000" + }, + { + "id": "128049171", + "name": "Tantalum", + "cost_min": 3858, + "cost_max": 4534, + "cost_mean": "4196.00", + "homebuy": "90", + "homesell": "89", + "consumebuy": "1", + "baseCreationQty": 215.18, + "baseConsumptionQty": 0, + "capacity": 8878.4, + "buyPrice": 3998, + "sellPrice": 3954, + "meanPrice": 4196, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 11098, + "consumptionQty": 0, + "targetStock": 11098, + "stock": 3106.5, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.2600" + }, + { + "id": "128049174", + "name": "Titanium", + "cost_min": 1004, + "cost_max": 1303, + "cost_mean": "1154.00", + "homebuy": "79", + "homesell": "77", + "consumebuy": "2", + "baseCreationQty": 631.23, + "baseConsumptionQty": 0, + "capacity": 26044.8, + "buyPrice": 994, + "sellPrice": 969, + "meanPrice": 1154, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 32556, + "consumptionQty": 0, + "targetStock": 32556, + "stock": 9116, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.3600" + }, + { + "id": "128049172", + "name": "Uranium", + "cost_min": 2603, + "cost_max": 3134, + "cost_mean": "2869.00", + "homebuy": "87", + "homesell": "86", + "consumebuy": "1", + "baseCreationQty": 29.15, + "baseConsumptionQty": 0, + "capacity": 1203.2, + "buyPrice": 2662, + "sellPrice": 2631, + "meanPrice": 2869, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 1504, + "consumptionQty": 0, + "targetStock": 1504, + "stock": 420.5, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.3800" + }, + { + "id": "128049165", + "name": "Bauxite", + "cost_min": 152, + "cost_max": 279, + "cost_mean": "216.00", + "homebuy": "36", + "homesell": "30", + "consumebuy": "6", + "baseCreationQty": 46.06, + "baseConsumptionQty": 775.39, + "capacity": 44558.4, + "buyPrice": 0, + "sellPrice": 269, + "meanPrice": 216, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 2376, + "consumptionQty": 53322, + "targetStock": 15706, + "stock": 0, + "demand": 31013.9, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.0000" + }, + { + "id": "128049156", + "name": "Bertrandite", + "cost_min": 2439, + "cost_max": 2949, + "cost_mean": "2694.00", + "homebuy": "87", + "homesell": "86", + "consumebuy": "1", + "baseCreationQty": 109.04, + "baseConsumptionQty": 153.7, + "capacity": 12955.2, + "buyPrice": 0, + "sellPrice": 2905, + "meanPrice": 2694, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 5624, + "consumptionQty": 10570, + "targetStock": 8266, + "stock": 0, + "demand": 8822.2, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.4000" + }, + { + "id": "128049159", + "name": "Coltan", + "cost_min": 1370, + "cost_max": 1730, + "cost_mean": "1550.00", + "homebuy": "82", + "homesell": "80", + "consumebuy": "2", + "baseCreationQty": 43.24, + "baseConsumptionQty": 488.13, + "capacity": 28639.2, + "buyPrice": 0, + "sellPrice": 1742, + "meanPrice": 1550, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 2231, + "consumptionQty": 33568, + "targetStock": 10623, + "stock": 0, + "demand": 23327.7, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.4100" + }, + { + "id": "128049158", + "name": "Gallite", + "cost_min": 1883, + "cost_max": 2319, + "cost_mean": "2101.00", + "homebuy": "85", + "homesell": "84", + "consumebuy": "2", + "baseCreationQty": 267.9, + "baseConsumptionQty": 377.89, + "capacity": 31844, + "buyPrice": 0, + "sellPrice": 2280, + "meanPrice": 2101, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 13818, + "consumptionQty": 25987, + "targetStock": 20314, + "stock": 0, + "demand": 21687, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.4600" + }, + { + "id": "128049157", + "name": "Indite", + "cost_min": 2142, + "cost_max": 2613, + "cost_mean": "2378.00", + "homebuy": "86", + "homesell": "85", + "consumebuy": "1", + "baseCreationQty": 30.08, + "baseConsumptionQty": 340.79, + "capacity": 19990.4, + "buyPrice": 0, + "sellPrice": 2632, + "meanPrice": 2378, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 1552, + "consumptionQty": 23436, + "targetStock": 7411, + "stock": 0, + "demand": 16284.9, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.4400" + }, + { + "id": "128049161", + "name": "Lepidolite", + "cost_min": 589, + "cost_max": 810, + "cost_mean": "700.00", + "homebuy": "72", + "homesell": "69", + "consumebuy": "3", + "baseCreationQty": 177.66, + "baseConsumptionQty": 149.99, + "capacity": 15582.4, + "buyPrice": 0, + "sellPrice": 736, + "meanPrice": 700, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 9163, + "consumptionQty": 10315, + "targetStock": 11741, + "stock": 0, + "demand": 8608.9, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.2700" + }, + { + "id": "128668550", + "name": "Painite", + "cost_min": 31500, + "cost_max": 34500, + "cost_mean": "33000.00", + "homebuy": "100", + "homesell": "100", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 5, + "capacity": 69.6, + "buyPrice": 0, + "sellPrice": 33626, + "meanPrice": 33000, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 87, + "targetStock": 21, + "stock": 0, + "demand": 38.1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.0000" + }, + { + "id": "128049163", + "name": "Rutile", + "cost_min": 330, + "cost_max": 493, + "cost_mean": "412.00", + "homebuy": "62", + "homesell": "58", + "consumebuy": "4", + "baseCreationQty": 156.04, + "baseConsumptionQty": 1760.66, + "capacity": 103299.2, + "buyPrice": 0, + "sellPrice": 497, + "meanPrice": 412, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 8048, + "consumptionQty": 121076, + "targetStock": 38317, + "stock": 0, + "demand": 84140.7, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.1600" + }, + { + "id": "128049160", + "name": "Uraninite", + "cost_min": 889, + "cost_max": 1168, + "cost_mean": "1029.00", + "homebuy": "77", + "homesell": "75", + "consumebuy": "2", + "baseCreationQty": 62.04, + "baseConsumptionQty": 699.07, + "capacity": 41018.4, + "buyPrice": 0, + "sellPrice": 1177, + "meanPrice": 1029, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 3200, + "consumptionQty": 48073, + "targetStock": 15218, + "stock": 0, + "demand": 33409.4, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.3400" + }, + { + "id": "128049214", + "name": "Beer", + "cost_min": 175, + "cost_max": 304, + "cost_mean": "240.00", + "homebuy": "43", + "homesell": "37", + "consumebuy": "6", + "baseCreationQty": 0, + "baseConsumptionQty": 755, + "capacity": 5192.8, + "buyPrice": 0, + "sellPrice": 289, + "meanPrice": 240, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 6491, + "targetStock": 1622, + "stock": 0, + "demand": 3512.8, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Narcotics", + "volumescale": "1.0000" + }, + { + "id": "128049216", + "name": "Liquor", + "cost_min": 681, + "cost_max": 795, + "cost_mean": "738.00", + "homebuy": "73", + "homesell": "70", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 179, + "capacity": 326.4, + "buyPrice": 0, + "sellPrice": 747, + "meanPrice": 738, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 408, + "targetStock": 102, + "stock": 0, + "demand": 160.65, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Narcotics", + "volumescale": "1.2800" + }, + { + "id": "128049215", + "name": "Wine", + "cost_min": 252, + "cost_max": 396, + "cost_mean": "324.00", + "homebuy": "56", + "homesell": "52", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 452, + "capacity": 6036, + "buyPrice": 0, + "sellPrice": 399, + "meanPrice": 324, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 7545, + "targetStock": 1885, + "stock": 0, + "demand": 4572.5, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Narcotics", + "volumescale": "1.1000" + }, + { + "id": "128066403", + "name": "Drones", + "cost_min": 100, + "cost_max": 100, + "cost_mean": "100.00", + "homebuy": "100", + "homesell": "100", + "consumebuy": "1", + "baseCreationQty": 200, + "baseConsumptionQty": 0, + "capacity": 2752, + "buyPrice": 101, + "sellPrice": 101, + "meanPrice": 100, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 3440, + "consumptionQty": 0, + "targetStock": 3440, + "stock": 5160, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "NonMarketable", + "volumescale": "1.0000" + }, + { + "id": "128671443", + "name": "S A P8 Core Container", + "cost_min": 50000, + "cost_max": 60000, + "cost_mean": "55000.00", + "homebuy": "100", + "homesell": "100", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 200, + "capacity": 3440, + "buyPrice": 0, + "sellPrice": 60414, + "meanPrice": 55000, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 3440, + "targetStock": 859, + "stock": 0, + "demand": 2581, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Salvage", + "volumescale": "1.0000" + }, + { + "id": "128049231", + "name": "Advanced Catalysers", + "cost_min": 2778, + "cost_max": 3331, + "cost_mean": "3055.00", + "homebuy": "88", + "homesell": "87", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 41.87, + "capacity": 2304, + "buyPrice": 0, + "sellPrice": 3093, + "meanPrice": 3055, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 2880, + "targetStock": 720, + "stock": 0, + "demand": 1134, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.3600" + }, + { + "id": "128049672", + "name": "Bio Reducing Lichen", + "cost_min": 944, + "cost_max": 1233, + "cost_mean": "1089.00", + "homebuy": "78", + "homesell": "76", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 88.36, + "capacity": 4861.6, + "buyPrice": 0, + "sellPrice": 1106, + "meanPrice": 1089, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 6077, + "targetStock": 1519, + "stock": 0, + "demand": 2392.85, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.3500" + }, + { + "id": "128049226", + "name": "Hazardous Environment Suits", + "cost_min": 274, + "cost_max": 424, + "cost_mean": "349.00", + "homebuy": "58", + "homesell": "54", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 408, + "capacity": 22446.4, + "buyPrice": 0, + "sellPrice": 427, + "meanPrice": 349, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 28058, + "targetStock": 7013, + "stock": 0, + "demand": 18939.9, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.1200" + }, + { + "id": "128049671", + "name": "Resonating Separators", + "cost_min": 5743, + "cost_max": 6607, + "cost_mean": "6175.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 157.94, + "capacity": 8689.6, + "buyPrice": 0, + "sellPrice": 6245, + "meanPrice": 6175, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 10862, + "targetStock": 2715, + "stock": 0, + "demand": 4276.975, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.1400" + }, + { + "id": "128049193", + "name": "Synthetic Fabrics", + "cost_min": 186, + "cost_max": 317, + "cost_mean": "252.00", + "homebuy": "46", + "homesell": "41", + "consumebuy": "5", + "baseCreationQty": 360.93, + "baseConsumptionQty": 0, + "capacity": 14892.8, + "buyPrice": 136, + "sellPrice": 122, + "meanPrice": 252, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 18616, + "consumptionQty": 0, + "targetStock": 18616, + "stock": 5212.5, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Textiles", + "volumescale": "1.0200" + }, + { + "id": "128049244", + "name": "Biowaste", + "cost_min": 50, + "cost_max": 98, + "cost_mean": "74.00", + "homebuy": "27", + "homesell": "20", + "consumebuy": "7", + "baseCreationQty": 162, + "baseConsumptionQty": 0, + "capacity": 590.4, + "buyPrice": 14, + "sellPrice": 11, + "meanPrice": 74, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 738, + "consumptionQty": 0, + "targetStock": 738, + "stock": 496.8, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Waste ", + "volumescale": "1.0000" + }, + { + "id": "128049246", + "name": "Chemical Waste", + "cost_min": 50, + "cost_max": 107, + "cost_mean": "79.00", + "homebuy": "18", + "homesell": "10", + "consumebuy": "8", + "baseCreationQty": 0, + "baseConsumptionQty": 191.33, + "capacity": 2632, + "buyPrice": 0, + "sellPrice": 102, + "meanPrice": 79, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 3290, + "targetStock": 822, + "stock": 0, + "demand": 1810, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Waste ", + "volumescale": "1.0000" + }, + { + "id": "128049248", + "name": "Scrap", + "cost_min": 70, + "cost_max": 122, + "cost_mean": "96.00", + "homebuy": "43", + "homesell": "37", + "consumebuy": "6", + "baseCreationQty": 0, + "baseConsumptionQty": 80.03, + "capacity": 4403.2, + "buyPrice": 0, + "sellPrice": 71, + "meanPrice": 96, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 5504, + "targetStock": 1376, + "stock": 0, + "demand": 0, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Waste ", + "volumescale": "1.0000" + }, + { + "id": "128049236", + "name": "Non Lethal Weapons", + "cost_min": 1870, + "cost_max": 2081, + "cost_mean": "1976.00", + "homebuy": "84", + "homesell": "82", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 75, + "capacity": 54, + "buyPrice": 0, + "sellPrice": 2037, + "meanPrice": 1976, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 36, + "targetStock": 8, + "stock": 0, + "demand": 32.25, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Weapons", + "volumescale": "1.4500" + }, + { + "id": "128049235", + "name": "Reactive Armour", + "cost_min": 2121, + "cost_max": 2348, + "cost_mean": "2235.00", + "homebuy": "85", + "homesell": "84", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 68, + "capacity": 148, + "buyPrice": 0, + "sellPrice": 2340, + "meanPrice": 2235, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 74, + "targetStock": 17, + "stock": 0, + "demand": 102.25, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Weapons", + "volumescale": "1.4600" + } + ] + }, + "stats": { + "game_time": 850655, + "missions": { + "courier": { + "missionsAccepted": 64, + "furthest": { + "distance": 9.8418152860638, + "origin": 3228189952, + "destination": "3227868416" + }, + "highestEarnings": { + "value": 0, + "distance": 0, + "origin": 0, + "destination": 0, + "faction": 0 + }, + "missionsCompleted": 36, + "creditsEarned": -9119, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 1109, + "faction": "Defence Force of LHS 1541", + "type": "CourierLegal" + }, + { + "value": 1018, + "faction": "Defence Force of LHS 1541", + "type": "CourierLegal" + }, + { + "value": 487, + "faction": "Defence Force of LHS 1541", + "type": "CourierLegal" + } + ] + }, + "deliver": { + "missionsAccepted": 105, + "furthest": { + "distance": 9.8944626243672, + "origin": 3228393472, + "destination": "3228115456" + }, + "highestEarnings": { + "value": 0, + "commodity": 0, + "qty": 0, + "distance": 0, + "origin": 0, + "destination": 0, + "faction": 0 + }, + "missionsCompleted": 98, + "creditsEarned": 1164220, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 1988, + "faction": "Crimson Energy Systems", + "type": "DeliveryLegal" + }, + { + "value": 107316, + "faction": "Gold Netcoms Commodities", + "type": "DeliveryLegal" + }, + { + "value": 65546, + "faction": "Allied LHS 1507 Dominion", + "type": "DeliveryLegal" + } + ] + }, + "collect": { + "missionsAccepted": 175, + "furthest": { + "distance": 0, + "origin": 0, + "destination": 0 + }, + "highestEarnings": { + "value": 0, + "commodity": 0, + "qty": 0, + "distance": 0, + "origin": 0, + "destination": 0, + "faction": 0 + }, + "missionsCompleted": 0, + "creditsEarned": 0, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 22145, + "faction": "Defence Force of LHS 1541", + "type": "Collect" + }, + { + "value": 3420, + "faction": "Defence Force of LHS 1541", + "type": "Collect" + }, + { + "value": 34772, + "faction": "Wolf 1323 Life Corp.", + "type": "Collect" + } + ] + }, + "assassin": { + "highestEarnings": { + "value": 199640, + "origin": "3228064512", + "faction": 0 + }, + "missionsCompleted": 25, + "creditsEarned": 1147873, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 36176, + "faction": "United Euryale First", + "type": "Massacre" + }, + { + "value": 99646, + "faction": "United Euryale First", + "type": "Assassinate" + }, + { + "value": 42589, + "faction": "United Euryale First", + "type": "Assassinate" + } + ], + "missionsAccepted": 52 + }, + "bountyHunter": { + "highestEarnings": { + "value": 0, + "origin": 0, + "faction": 0 + }, + "missionsCompleted": 0, + "creditsEarned": 0, + "missionsFailed": 0, + "latestCompleted": [], + "missionsAccepted": 0 + } + }, + "explore": { + "hyperspaceJumps": 1565, + "totalHyperspaceDistance": 26860.134031492, + "visited": { + "starsystem": [ + "GCRV 4654", + "FK5 2550", + "LHS 1914", + "Siren", + "Geawenki", + "Thiin", + "LP 307-8", + "StKM 1-626", + "BD+30 1423", + "LHS 6103", + "LHS 1814", + "LHS 1794", + "Nandjabinja", + "Susanoo", + "Wong Sher", + "74 k Orionis", + "BD+08 1303", + "Iansan", + "LHS 1857", + "Yin Sector HW-W b1-3", + "Nihursaga", + "Hahgwe", + "Alzirr", + "Toog", + "Yin Sector ZE-A d120", + "Chang Yeh", + "G 108-26", + "HR 2251", + "LHS 1838", + "Breksta", + "Amait", + "Cosi", + "Yggdrajang", + "LTT 17868", + "Yin Sector EQ-Y b2", + "Yin Sector EQ-Y b1", + "Zandu", + "Flech", + "Julanggarri", + "Ross 878", + "Kamchata", + "Tamalhikas", + "Katocudatta", + "Lumbla", + "Tascheter Sector FG-X b1-6", + "Jita Ten", + "71 Orionis", + "Tao Ti", + "LHS 1743", + "LFT 392", + "Ndozins", + "LHS 21", + "Geras", + "G 85-36", + "LP 417-213", + "V1402 Orionis", + "MCC 467", + "Suyarang", + "Chonost", + "Fular", + "LTT 11519", + "Tote", + "Psi Tauri", + "Wolf 1301", + "Tascheter Sector MS-T a3-2", + "Achlys", + "BD+14 831", + "Kungurutii", + "Ross 49", + "Dewikum", + "Yin Sector DQ-Y b1", + "Tascheter Sector FG-X b1-1", + "Tascheter Sector EG-X b1-1", + "Cahuile", + "Tascheter Sector WE-Q a5-1", + "Tascheter Sector DG-O a6-0", + "LP 771-72", + "Kappa Fornacis", + "LP 831-72", + "Zeus", + "Tascheter Sector HM-M a7-2", + "Tascheter Sector BL-O a6-1", + "Tascheter Sector YE-Q a5-0", + "Pachanwen", + "Ranginui", + "LHS 1928", + "LP 605-37", + "Sekhemet", + "Hlocidirus", + "Fionn", + "LHS 1920", + "Tascheter Sector GW-W c1-18", + "LFT 377", + "Kunlun", + "Tascheter Sector HM-M a7-1", + "LTT 1349", + "LFT 179", + "Jibitoq", + "BD-18 394", + "Autahenetsi", + "Ceti Sector AV-Y c17", + "Tetekhe", + "Ceti Sector FW-V b2-5", + "LTT 1141", + "Bandizel", + "Artemis", + "LHS 1409", + "Tascheter Sector EG-Y d106", + "Tascheter Sector BG-O a6-1", + "Tascheter Sector WZ-P a5-1", + "LHS 1573", + "G 100-4", + "V491 Persei", + "Sui Xing", + "Bonde", + "Bhadaba", + "Uchaluroja", + "Manamaya", + "LHS 197", + "Ashandras", + "LTT 11455", + "Al-Qaum", + "Herishep", + "LTT 11503", + "Ross 592", + "Itza", + "Capukanga", + "LHS 1483", + "LP 356-106", + "BD+24 543", + "39 Tauri", + "KP Tauri", + "Wolf 1278", + "Lowne 1", + "Meri", + "Apollo", + "LHS 1516", + "Wolf 1323", + "Marduk", + "LHS 1541", + "Wolf 1325", + "G 95-22", + "LHS 1507", + "Bao Yan Luo", + "Tascheter Sector HH-V b2-5", + "G 173-39", + "G 173-53", + "Theta Persei", + "LHS 1446", + "Lorana", + "Anlave", + "Wolf 46", + "V388 Cassiopeiae", + "Zeessze", + "Eta Cassiopeiae", + "Groombridge 34", + "Ross 248", + "Ross 730", + "Altair", + "Sol", + "Alpha Centauri", + "LHS 18", + "Bonitou", + "LTT 10482", + "Cephei Sector BA-A d103", + "Cephei Sector DQ-Y b4", + "Iota Cassiopeiae", + "Funji", + "T'ienimi", + "HIP 12512", + "Col 285 Sector QT-Q c5-14", + "HIP 10466", + "Col 285 Sector QT-Q c5-9", + "Col 285 Sector BH-J b10-4", + "Col 285 Sector BH-J b10-2", + "Col 285 Sector PT-Q c5-13", + "Col 285 Sector WA-L b9-0", + "HR 567", + "Col 285 Sector MY-Q c5-3", + "Col 285 Sector MY-Q c5-15", + "Undalibaluf", + "Col 285 Sector GY-F b12-4", + "BD+65 1984", + "Col 285 Sector HY-F b12-0", + "HIP 3509", + "Nootkena", + "Inovandar", + "Tegidana", + "BD+44 1040", + "LHS 1765", + "Selniang", + "Skuta", + "Gani", + "Enuma", + "Gkutat", + "Djinbin", + "Col 285 Sector NG-H a26-5", + "Col 285 Sector MA-J a25-4", + "Col 285 Sector SG-H a26-2", + "Col 285 Sector JB-N c7-7", + "Col 285 Sector JB-N c7-4", + "Synuefe XT-D a94-2", + "h2 Puppis", + "Synuefe BP-D a94-1", + "O Puppis", + "Synuefe KB-A a96-2", + "HIP 40430", + "Synuefe WR-H d11-48", + "Synuefe WQ-Z b47-5", + "Gliese 3434", + "Synuefe YK-N c23-14", + "Canopus", + "Synuefe ZK-N c23-22", + "Synuefe BH-Z b47-1", + "HIP 34755", + "HIP 35652", + "HIP 36489", + "47 G. Carinae", + "Synuefe BM-Z b47-8", + "Q Carinae", + "Synuefe DW-L c24-30", + "Synuefe IS-X b48-3", + "Chi Carinae", + "Synuefe HX-X b48-2", + "HIP 40929", + "HIP 42504", + "HIP 42459", + "E Velorum", + "Synuefe JI-W b49-12", + "HIP 42374", + "HR 3503", + "HIP 42823", + "HR 3448", + "HIP 42726", + "Omicron Velorum", + "HIP 42715", + "IC 2391 Sector LI-S b4-10", + "IC 2391 Sector SJ-Q b5-10", + "HIP 43433", + "IC 2391 Sector UJ-Q b5-8", + "IC 2391 Sector VJ-Q b5-1", + "HIP 43015", + "IC 2391 Sector MC-V c2-14", + "Synuefe GL-S b51-9", + "Synuefe LR-Q b52-2", + "V473 Carinae", + "Synuefe JE-E d13-115", + "Synuefe RX-O b53-7", + "Synuefe JE-E d13-94", + "Synuefe WD-N b54-1", + "Tureis", + "Synuefe BK-L b55-4", + "Synuefe CV-E c28-23", + "Synuefe OK-C d14-6", + "HIP 47751", + "HIP 48127", + "Synuefe KM-G b58-4", + "Synuefe XO-L a117-1", + "Synuefe AA-K a118-6", + "Wregoe KZ-S b58-7", + "HR 4091", + "Praea Euq SG-A b1", + "Praea Euq XM-Y b2", + "Praea Euq ZM-Y b1", + "Praea Euq MA-A d153", + "Praea Euq ZR-Y b0", + "Praea Euq CM-Y c9", + "HD 92405", + "Praea Euq FO-V b2-1", + "Praea Euq KU-T b3-5", + "Praea Euq PL-Y d85", + "Praea Euq TG-Q b5-3", + "HD 95633", + "Praea Euq ZM-O b6-0", + "Praea Euq LD-V c2-20", + "Praea Euq UR-W d1-63", + "Praea Euq EY-M b7-4", + "Praea Euq GJ-L b8-1", + "Praea Euq HJ-L b8-4", + "Praea Euq VR-W d1-80", + "Praea Euq RZ-R c4-2", + "Praea Euq JZ-J b9-0", + "Pro Eurl AI-I b10-3", + "Pro Eurl EW-W d1-55", + "Pro Eurl KD-S c4-7", + "Pro Eurl EW-W d1-39", + "HD 98557", + "Pro Eurl XR-I b10-0", + "Pro Eurl AN-I b10-3", + "Pro Eurl PJ-Q c5-12", + "Pro Eurl IC-V d2-40", + "Pro Eurl JC-V d2-35", + "Pro Eurl KZ-E b12-2", + "NGC 3532 Sector ZK-X d1-59", + "Pro Eurl NK-D b13-0", + "Pro Eurl HH-V d2-32", + "Pro Eurl JU-D b13-0", + "HD 100476", + "Pro Eurl LU-D b13-0", + "HD 99573", + "HD 99081", + "Pro Eurl IO-F b12-1", + "NGC 3532 Sector YP-X d1-24", + "NGC 3532 Sector EJ-M b9-1", + "NGC 3532 Sector DC-T c4-9", + "NGC 3532 Sector AL-X d1-30", + "NGC 3532 Sector PF-K b10-0", + "NGC 3532 Sector RA-K b10-1", + "NGC 3532 Sector BL-X d1-48", + "NGC 3532 Sector FR-V d2-53", + "NGC 3532 Sector EI-G b12-2", + "NGC 3532 Sector FI-G b12-0", + "NGC 3532 Sector FI-G b12-4", + "HD 98767", + "NGC 3532 Sector PU-C b14-0", + "NGC 3532 Sector RP-C b14-5", + "HD 98896", + "NGC 3532 Sector WV-A b15-4", + "NGC 3532 Sector YK-N c7-10", + "NGC 3532 Sector ID-X b16-2", + "NGC 3532 Sector LO-V b17-2", + "Pro Eurl BW-K b22-1", + "Pro Eurl AB-L b22-2", + "Pro Eurl OS-U e2-4", + "Pro Eurl CQ-P d5-68", + "Pro Eurl GR-D c12-2", + "Pro Eurl CQ-P d5-27", + "Pro Eurl OI-H b24-3", + "Pro Eurl CQ-P d5-21", + "Pro Eurl MC-J b23-2", + "Pro Eurl DQ-P d5-63", + "Pro Eurl ZJ-R d4-4", + "Pro Eurl NC-J b23-2", + "HD 99218", + "Pro Eurl JR-D c12-12", + "Pro Eurl DQ-P d5-39", + "Pro Eurl ZU-D b26-2", + "Pro Eurl HW-N d6-37", + "Pro Eurl HH-A b28-3", + "Pro Eurl QD-A c14-12", + "Pro Eurl UJ-Y c14-2", + "Pro Eurl LC-M d7-2", + "HD 104214", + "Pro Eurl WK-T b31-2", + "Pro Eurl ZP-W c15-1", + "Pro Eurl KN-P b33-2", + "Pro Eurl GR-U c16-9", + "Pro Eurl MN-P b33-1", + "Pro Eurl TO-N b34-0", + "Pro Eurl WJ-N b34-3", + "Pro Eurl XJ-N b34-6", + "Pro Eurl UD-P b33-0", + "Pro Eurl BF-N b34-4", + "Pro Eurl CF-N b34-1", + "Pro Eurl DF-N b34-2", + "Pro Eurl UD-K d8-47", + "Pro Eurl UD-K d8-85", + "Pro Eurl KG-L b35-3", + "Pro Eurl UD-K d8-73", + "Pro Eurl MG-L b35-5", + "Pro Eurl PB-L b35-1", + "Prua Dryoae UQ-Q a73-3", + "Prua Dryoae CS-O a74-1", + "Prua Dryoae FH-T b37-5", + "HD 101131", + "Prua Dryoae WF-L d9-50", + "Prua Dryoae LN-R b38-3", + "Prua Dryoae PT-P b39-7", + "Prua Dryoae MN-S e4-12", + "Prua Dryoae IJ-C a81-1", + "Prua Dryoae CD-E a80-3", + "Prua Dryoae YH-E a80-0", + "Pro Eurl ZJ-I d9-63", + "Pro Eurl HA-E b39-0", + "Pro Eurl ZJ-I d9-0", + "Pro Eurl HA-E b39-4", + "Pro Eurl ZJ-I d9-3", + "Pro Eurl ZD-G b38-0", + "Pro Eurl XI-G b38-0", + "HD 102728", + "Pro Eurl XI-G b38-1", + "Pro Eurl EK-E b39-4", + "Pro Eurl AK-I d9-55", + "Pro Eurl EA-P c19-3", + "Prua Dryoae LU-A a82-0", + "Prua Dryoae AM-J d10-40", + "Prua Dryoae AM-J d10-53", + "Prua Dryoae AM-J d10-5", + "Prua Dryoae AG-M b41-0", + "Prua Dryoae GM-K b42-1", + "Prua Dryoae HM-K b42-0", + "Prua Dryoae UU-R a86-3", + "Prua Dryoae CM-J d10-3", + "Prua Dryoae HJ-R c21-6", + "Prua Dryoae BV-R a86-5", + "Prua Dryoae DV-R a86-1", + "Prua Dryoae IJ-R c21-9", + "HD 101035", + "Prua Dryoae JJ-R c21-7", + "Swoiphs PB-Q a87-1", + "Swoiphs WH-O a88-5", + "Sifeae JD-V b43-0", + "Swoiphs BI-O a88-2", + "Sifeae LD-V b43-2", + "Sifeae VR-J c22-14", + "Sifeae RJ-T b44-5", + "Sifeae ZK-P e5-0", + "Sifeae UJ-T b44-2", + "Sifeae XU-R b45-3", + "Sifeae YU-R b45-6", + "Sifeae DB-Q b46-2", + "Sifeae EB-Q b46-2", + "Sifeae JH-O b47-5", + "HD 100137", + "Sifeae LH-O b47-3", + "NGC 4463 Sector TT-Z d42", + "NGC 4463 Sector QT-C b2-6", + "NGC 4463 Sector VZ-A b3-3", + "NGC 4463 Sector TT-Z d46", + "NGC 4463 Sector MS-Z c1-16", + "NGC 4463 Sector MS-Z c1-18", + "NGC 4463 Sector YZ-X d1-24", + "NGC 4463 Sector JX-V b5-2", + "NGC 4463 Sector ZZ-X d1-86", + "NGC 4463 Sector ZZ-X d1-82", + "NGC 4463 Sector VE-S b7-1", + "NGC 4463 Sector XZ-R b7-3", + "NGC 4463 Sector ZZ-X d1-89", + "NGC 4463 Sector ZZ-X d1-17", + "NGC 4463 Sector MH-H a16-1", + "NGC 4463 Sector GB-U c4-1", + "NGC 4463 Sector PX-N b9-2", + "NGC 4463 Sector GB-W d2-41", + "NGC 4463 Sector YJ-K b11-0", + "NGC 4463 Sector GB-W d2-37", + "NGC 4463 Sector AF-T a23-3", + "HD 101794", + "NGC 4463 Sector HL-R a24-1", + "NGC 4463 Sector KW-G b13-6", + "NGC 4463 Sector XD-M a27-1", + "NGC 4463 Sector ZD-M a27-2", + "NGC 4463 Sector JQ-I a29-1", + "NGC 4463 Sector MH-U d3-27", + "NGC 4463 Sector XN-D a32-2", + "NGC 4463 Sector DU-B a33-2", + "NGC 4463 Sector NG-Y a34-1", + "NGC 4463 Sector RN-S d4-3", + "NGC 4463 Sector ZS-U a36-3", + "NGC 4463 Sector GZ-S a37-0", + "NGC 4463 Sector OA-R a38-0", + "NGC 4463 Sector SL-P a39-1", + "NGC 4609 Sector JU-Y a5-1", + "NGC 4609 Sector SG-V a7-0", + "NGC 4609 Sector AZ-V b4-0", + "NGC 4609 Sector AK-Z d29", + "NGC 4609 Sector DA-X c2-7", + "NGC 4609 Sector AK-Z d63", + "NGC 4609 Sector AK-Z d17", + "NGC 4609 Sector AK-Z d36", + "NGC 4609 Sector LB-V c3-5", + "NGC 4609 Sector UR-R b6-4", + "NGC 4609 Sector MB-V c3-11", + "NGC 4609 Sector FQ-X d1-64", + "NGC 4609 Sector NB-V c3-9", + "NGC 4609 Sector CY-P b7-4", + "NGC 4609 Sector GQ-X d1-33", + "NGC 4609 Sector FY-P b7-4", + "NGC 4609 Sector GY-P b7-2", + "NGC 4609 Sector QB-V c3-16", + "Aucops TS-O b12-3", + "Blaa Eoq IQ-O b12-2", + "Blaa Eoq OW-M b13-3", + "Blaa Eoq TN-T c6-5", + "Blaa Eoq RH-L b14-4", + "Blaa Eoq UN-T c6-4", + "Blaa Eoq SL-T a30-1", + "Blaa Eoq UL-T a30-1", + "Blaa Eoq XL-T a30-2", + "Blaa Eoq DS-R a31-0", + "Blaa Eoq OU-V d3-3", + "Blaa Eoq MY-P a32-0", + "Blaa Eoq SE-O a33-1", + "Blaa Eoq YK-M a34-2", + "Blaa Eoq AL-M a34-3", + "Blaa Eoq CL-M a34-5", + "Blaa Eoq IR-K a35-0", + "Blaa Eoq QU-V d3-34", + "Blaa Eoq PX-I a36-2", + "Blaa Eoq QU-V d3-38", + "Blaa Eoq RU-V d3-17", + "Blaa Eoq BP-F a38-2", + "Blaa Eoq EP-F a38-3", + "Phylurn AU-Q b18-5", + "Blaa Eoq IP-F a38-4", + "Blaa Eoq LP-F a38-0", + "Blaa Eoq WA-U d4-8", + "Blaa Eoq PP-F a38-2", + "Blaa Eoq RP-F a38-0", + "Blaa Eoq XA-U d4-22", + "HD 99619", + "Blaa Eoq XP-F a38-2", + "Col 240 Sector MX-E a42-1", + "Col 240 Sector HJ-G c11-3", + "Col 240 Sector OX-M b22-1", + "Col 240 Sector PX-M b22-0", + "Col 240 Sector ZD-D a43-3", + "Col 240 Sector YX-E a42-1", + "Col 240 Sector KJ-G c11-4", + "Col 240 Sector DY-E a42-3", + "Col 240 Sector JE-D a43-0", + "Col 240 Sector HY-E a42-1", + "Col 240 Sector JY-E a42-1", + "Col 240 Sector LO-G c11-5", + "Col 240 Sector RJ-Q d5-27", + "Col 240 Sector MO-G c11-10", + "Col 240 Sector SJ-Q d5-51", + "Col 240 Sector SJ-Q d5-46", + "Col 240 Sector ZR-O b21-5", + "Col 240 Sector AS-O b21-3", + "Col 240 Sector OO-G c11-8", + "Col 240 Sector TJ-Q d5-54", + "Col 240 Sector ES-O b21-0", + "Col 240 Sector JY-M b22-0", + "2MASS J11132054-6053363", + "2MASS J11130497-6049452", + "TYC 8959-364-2", + "2MASS J11130472-6047135", + "NGC 3590 MV 4", + "NGC 3590 CLA 15", + "HD 306185", + "2MASS J11123987-6047011", + "NGC 3590 MV 12", + "NGC 3590 Sector UT-R a4-1", + "NGC 3590 Sector BA-A d12", + "Col 240 Sector AB-J b24-0", + "Col 240 Sector GH-H b25-0", + "Col 240 Sector HH-H b25-4", + "Col 240 Sector FW-C c13-7", + "IC 2944 Sector PP-Q b8-0", + "IC 2944 Sector UV-O b9-0", + "IC 2944 Sector VV-O b9-2", + "IC 2944 Sector WV-O b9-0", + "IC 2944 Sector WE-Y d1-26", + "IC 2944 Sector EX-M b10-2", + "IC 2944 Sector FX-M b10-0", + "IC 2944 Sector ER-S c5-0", + "IC 2944 Sector LD-L b11-2", + "IC 2944 Sector SE-J b12-1", + "IC 2944 Sector VP-H b13-0", + "IC 2944 Sector WP-H b13-1", + "IC 2944 Sector KX-Q c6-5", + "IC 2944 Sector CW-F b14-2", + "IC 2944 Sector HR-U d3-13", + "IC 2944 Sector FG-X e1-3", + "IC 2944 Sector QD-P c7-5", + "IC 2944 Sector RO-A b17-0", + "IC 2944 Sector SO-A b17-0", + "IC 2944 Sector TO-A b17-0", + "Statue of Liberty Sector FW-W c1-2", + "Statue of Liberty Sector OY-R b4-1", + "Statue of Liberty Sector LS-T b3-0", + "Statue of Liberty Sector OD-S b4-0", + "Statue of Liberty Sector LX-T b3-2", + "Statue of Liberty Sector DL-Y d25", + "Statue of Liberty Sector FG-Y e5", + "Statue of Liberty Sector PI-S b4-0", + "Statue of Liberty Sector QI-S b4-0", + "Statue of Liberty Sector FW-K a9-1", + "Statue of Liberty Sector IW-K a9-0", + "IC 2944 Sector XH-C a34-0", + "IC 2944 Sector ZH-C a34-0", + "IC 2944 Sector GO-A a35-0", + "IC 2944 Sector GT-A a35-1", + "IC 2944 Sector KO-A a35-1", + "IC 2944 Sector KT-A a35-2", + "IC 2944 Sector MR-U d3-20", + "IC 2944 Sector LI-C a34-0", + "Blua Eoq CI-G a65-0", + "Blua Eoq DL-Y g0", + "Blua Eoq GC-C b33-1", + "Blua Eoq TA-B a68-0", + "Blua Eoq TF-B a68-0", + "Blo Thae QH-U c16-7", + "Blo Thae MV-M b34-2", + "Blo Thae LA-N b34-1", + "NGC 3572 Sector DB-X c1-0", + "NGC 3572 Sector FR-V b2-2", + "NGC 3572 Sector AV-Y c1", + "NGC 3572 Sector EB-X c1-5", + "NGC 3572 Sector IR-V b2-0", + "NGC 3572 Sector FB-X c1-4", + "NGC 3572 Sector YE-A g2", + "NGC 3572 Sector IR-W d1-9", + "NGC 3572 Sector QN-S b4-0", + "Blo Thae BI-I b37-1", + "Blo Thae AP-I d9-17", + "Blo Thae BE-R c18-1", + "Blo Thae AS-I b37-0", + "Blo Thae BS-I b37-0", + "Blo Thae YL-K b36-0", + "Blo Thae BJ-R c18-4", + "Tyriedgoea MO-I d9-2", + "Tyriedgoea MO-I d9-20", + "Tyriedgoea PJ-K b36-1", + "Tyriedgoea II-K d8-12", + "Tyriedgoea IX-N b34-0", + "Tyriedgoea DW-P b33-0", + "Tyriedgoea BB-Q b33-0", + "Tyriedgoea AQ-R b32-0", + "Tyriedgoea DH-M d7-10", + "Tyriedgoea ZU-R b32-0", + "Tyriedgoea VO-T b31-0", + "Tyriedgoea UD-V b30-0", + "Tyriedgoea DH-M d7-2", + "Tyriedgoea LW-Y b28-0", + "Tyriedgoea LX-U e2-0", + "Tyriedgoea JQ-A b28-0", + "Tyriedgoea KQ-A b28-0", + "Tyriedgoea CW-N d6-9", + "Tyriedgoea OL-A b28-0", + "Tyriedgoea PL-A b28-0", + "Tyriedgoea DW-N d6-19", + "Tyriedgoea VR-Y b28-0", + "Tyriedgoea WR-Y b28-0", + "Col 228 Sector CW-V d2-19", + "Col 228 Sector CW-V d2-18", + "Col 228 Sector GC-U d3-3", + "Col 228 Sector PB-G b13-0", + "Col 228 Sector JY-P c6-2", + "Col 228 Sector SB-G b13-0", + "Col 228 Sector UW-F b13-1", + "Col 228 Sector ZC-E b14-1", + "Col 228 Sector KY-P c6-1", + "Col 228 Sector BD-E b14-0", + "Col 228 Sector IE-C b15-1", + "Col 228 Sector KX-T d3-13", + "Col 228 Sector TZ-N c7-4", + "Col 228 Sector NP-A b16-0", + "Col 228 Sector UZ-N c7-5", + "Col 228 Sector VQ-Y b16-0", + "Col 228 Sector ZF-M c8-0", + "Col 228 Sector ZL-Y b16-1", + "Col 228 Sector FN-W b17-1", + "NGC 3324 Sector VI-V b17-1", + "NGC 3324 Sector BP-T b18-1", + "NGC 3324 Sector CP-T b18-0", + "NGC 3324 Sector DS-J c9-8", + "NGC 3324 Sector ME-O a36-0", + "NGC 3324 Sector IY-H c10-1", + "NGC 3324 Sector CX-I a39-0", + "NGC 3324 Sector HD-H a40-2", + "NGC 3324 Sector QT-R d4-3", + "NGC 3324 Sector PJ-F a41-0", + "NGC 3324 Sector VP-D a42-4", + "NGC 3324 Sector RT-R d4-15", + "NGC 3324 Sector DR-B a43-0", + "NGC 3324 Sector FR-B a43-2", + "NGC 3324 Sector IZ-L b22-2", + "NGC 3324 Sector UU-F c11-3", + "NGC 3324 Sector UU-F c11-6", + "Eta Carinae", + "NGC 3324 Sector OU-L b22-0", + "NGC 3324 Sector LO-N b21-0", + "NGC 3324 Sector WU-F c11-4", + "NGC 3324 Sector JI-P b20-1", + "NGC 3324 Sector KI-P b20-1", + "Bleia Eork MW-U b36-1", + "Bleia Eork NW-U b36-0", + "Bleia Eork LQ-W b35-1", + "Bleia Eork VZ-M d8-7", + "Bleia Eork NQ-W b35-1", + "Bleia Eork TK-Y c17-1", + "Bleia Eork JP-Y b34-0", + "Blae Eork KD-A c17-2", + "Blae Eork ZM-Y b34-1", + "Blae Eork WG-A b34-1", + "Blae Eork XG-A b34-1", + "Blae Eork YG-A b34-1", + "Blae Eork BC-A b34-1", + "Blae Eork CH-U e3-4", + "Blae Eork ID-Y b34-0", + "Blae Eork MJ-W b35-1", + "Blae Eork QP-U b36-0", + "Blae Eork XK-W c18-1", + "Blae Eork WK-W c18-0", + "Blae Eork CI-P b39-0", + "Blae Eork GO-N b40-0", + "Blae Eork LU-L b41-1", + "Blae Eork OA-K b42-1", + "Blae Eork JD-R c21-5", + "CPD-58 2648", + "CPD-59 2627", + "2MASS J10443666-5946218", + "Blae Eork OJ-P c22-3", + "Trumpler 16 HG 1462", + "CPD-59 2591", + "Blae Eork QA-B b47-0", + "PCYC 666", + "Blae Eork SA-B b47-0", + "Blae Eork TA-B b47-0", + "2MASS J10442445-5951430", + "Blae Eork YM-H d11-18", + "Blae Eork ZK-N c23-2", + "Blae Eork HI-X b48-0", + "Blae Eork KT-V b49-0", + "Blae Eork NO-V b49-0", + "Blae Eork FR-L c24-2", + "Tr 16 Sector RA-M b8-0", + "2MASS J10432911-6003200", + "Tr 16 Sector DB-X d1-12", + "Tr 16 Sector XG-K b9-0", + "Tr 16 Sector ZG-K b9-0", + "Tr 16 Sector ND-S c4-0", + "Tr 16 Sector EB-X d1-17", + "Tr 16 Sector II-I b10-0", + "Tr 16 Sector LD-I b10-0", + "Tr 16 Sector OO-G b11-0", + "Tr 16 Sector PO-G b11-0", + "Tr 16 Sector QO-G b11-0", + "Tr 16 Sector RO-G b11-0", + "Tr 16 Sector VJ-Q c5-4", + "Tr 16 Sector TO-G b11-0", + "Tr 16 Sector VJ-G b11-0", + "Tr 16 Sector XJ-G b11-0", + "Tr 16 Sector VY-R c4-2", + "Tr 16 Sector NC-V d2-2", + "Tr 14 Sector JM-W d1-10", + "Tr 16 Sector CA-Q c5-7", + "Tr 16 Sector NC-V d2-6", + "Tr 16 Sector GG-O c6-6", + "Tr 14 Sector TY-S c3-12", + "Tr 14 Sector LC-M b7-0", + "Eta Carina Sector HR-W c1-3", + "Eta Carina Sector RT-R b4-0", + "Eta Carina Sector HR-W d1-22", + "Eta Carina Sector KC-V c2-1", + "Eta Carina Sector SJ-Q b5-0", + "Eta Carina Sector RO-Q b5-0", + "2MASS J10442897-5942343", + "Eta Carina Sector NY-Q b5-0", + "Eta Carina Sector KD-R b5-1", + "Tr 14 Sector GD-W a17-1", + "Tr 14 Sector IH-V d2-19", + "Blu Theia ND-Z c27-1", + "Blu Theia LI-Z c27-3", + "Blu Theia LI-Z c27-6", + "Blu Theia QF-Z b55-0", + "Blu Theia RT-Z d13-23", + "Blu Theia HS-Z c27-0", + "Blu Theia KE-B b55-0", + "Blu Theia FY-C b54-0", + "Blu Theia CM-B c27-3", + "Blu Theia XW-E b53-0", + "Blu Theia VB-F b53-0", + "Blu Theia QV-G b52-0", + "Blu Theia LP-I b51-0", + "Blu Theia HJ-K b50-0", + "Blu Theia EO-K b50-0", + "Blu Theia YM-M b49-0", + "Blu Theia UG-O b48-0", + "Blu Theia FM-D d12-9", + "Blu Theia NF-Q b47-0", + "Blu Theia AQ-P e5-1", + "Blu Theia HZ-R b46-0", + "Blu Theia BG-F d11-6", + "Blu Theia BG-F d11-11", + "Blu Theia AG-F d11-4", + "Blu Theia ZH-V b44-0", + "Blu Theia VW-W b43-0", + "Blu Theia TB-X b43-0", + "Blu Theia UK-M c21-1", + "Blu Theia QE-O c20-2", + "Blu Theia WZ-G d10-9", + "Blu Theia PE-O c20-0", + "Blu Theia EJ-C b41-0", + "Blu Theia FE-C b41-0", + "Blu Theia KY-P c19-1", + "Blu Theia QT-I d9-8", + "Blu Theia TW-F b39-0", + "Blu Theia QB-G b39-0", + "Blu Theia PB-G b39-0", + "Blu Theia LQ-H b38-0", + "Blu Theia JV-H b38-0", + "Blu Theia IV-H b38-0", + "Blu Theia HV-H b38-0", + "Blu Theia GV-H b38-0", + "Blu Theia FV-H b38-0", + "Blu Theia CA-I b38-0", + "Blu Theia BA-I b38-0", + "Blu Theia CV-H b38-0", + "Blu Theia DG-G b39-0", + "Blu Theia BD-Q c19-0", + "Blu Theia BG-G b39-0", + "Blu Theia LY-I d9-6", + "Blu Theia SJ-I b38-0", + "Blu Theia ND-K b37-0", + "Blu Theia GS-K d8-5", + "Blu Theia GC-M b36-0", + "Blu Theia DH-M b36-0", + "Blu Theia VU-P b34-0", + "Blu Theia SZ-P b34-0", + "Blu Theia NT-R b33-0", + "Blu Theia KY-R b33-0", + "Blu Theia FS-T b32-0", + "Blu Theia DX-T b32-0", + "Blu Theia CX-T b32-0", + "Blu Theia YX-X c15-0", + "Blu Theia VV-V b31-0", + "Blu Theia XX-X c15-0", + "Blu Theia SR-Z c14-1", + "Blu Theia WV-M d7-1", + "Blu Theia WV-M d7-2", + "Blu Theia QW-Z c14-0", + "Blu Theia CN-B b29-0", + "Blu Theia YG-D b28-0", + "Blu Theia SF-F b27-0", + "Blu Theia QU-O d6-2", + "Blu Theia GP-D c13-0", + "Tyriedgoea BP-Q d5-2", + "Tyriedgoea BP-Q d5-3", + "Tyriedgoea BP-Q d5-0", + "Tyriedgoea BP-Q d5-4", + "Tyriedgoea DK-Q d5-1", + "Blu Theia OZ-G b26-0", + "Blu Theia QU-G b26-0", + "Tyriedgoea HQ-O d6-4", + "Tyriedgoea PG-D c13-1", + "Tyriedgoea JL-O d6-7", + "Tyriedgoea RB-D c13-1", + "Tyriedgoea KY-F b26-0", + "Tyriedgoea JL-O d6-1", + "Tyriedgoea OQ-E c12-0", + "Tyriedgoea CX-H b25-0", + "Tyriedgoea LV-E c12-0", + "Tyriedgoea EF-Q d5-8", + "Tyriedgoea UV-J b24-0", + "Tyriedgoea QP-L b23-0", + "Tyriedgoea MJ-N b22-0", + "Tyriedgoea LJ-N b22-0", + "Tyriedgoea KJ-N b22-0", + "Tyriedgoea FD-P b21-0", + "Tyriedgoea ED-P b21-0", + "Tyriedgoea ZW-Q b20-0", + "Tyriedgoea VQ-S b19-0", + "Tyriedgoea TV-S b19-0", + "Tyriedgoea XD-S d4-0", + "Tyriedgoea QK-U b18-0", + "Tyriedgoea PK-U b18-0", + "Tyriedgoea OK-U b18-0", + "Tyriedgoea LP-U b18-0", + "Tyriedgoea JU-U b18-0", + "Tyriedgoea NB-M c8-1", + "Tyriedgoea BT-W b17-0", + "Tyriedgoea ZS-W b17-0", + "Tyriedgoea RX-T d3-7", + "Tyriedgoea MB-M c8-1", + "Tyriedgoea TM-Y b16-0", + "Tyriedgoea SM-Y b16-0", + "Tyriedgoea QX-T d3-3", + "Tyriedgoea QX-T d3-2", + "Tyriedgoea LV-B b15-0", + "Tyriedgoea KV-B b15-0", + "Tyriedgoea EA-O c7-0", + "Tyriedgoea ZT-P c6-0", + "Tyriedgoea CU-D b14-0", + "Tyriedgoea EQ-Y e1", + "Tyriedgoea YN-F b13-0", + "Tyriedgoea LR-V d2-7", + "Tyriedgoea UN-R c5-0", + "Tyriedgoea QH-T c4-0", + "Tyriedgoea QH-T c4-1", + "Tyriedgoea HL-X d1-4", + "Tyriedgoea FP-M b9-0", + "Tyriedgoea EP-M b9-0", + "Tyriedgoea AJ-O b8-0", + "Tyriedgoea VC-Q b7-0", + "Tyriedgoea UC-Q b7-0", + "Tyriedgoea PW-R b6-0", + "Tyriedgoea OW-R b6-0", + "Tyriedgoea BF-Z d6", + "Tyriedgoea KB-S b6-0", + "Tyriedgoea FV-T b5-0", + "Tyriedgoea AF-Z d5", + "Tyriedgoea AP-V b4-0", + "Tyriedgoea AF-Z d6", + "Tyriedgoea BK-V b4-0", + "Tyriedgoea WD-X b3-0", + "Tyriedgoea VD-A c1-2", + "Tyriedgoea RX-Y b2-0", + "Tyriedgoea VY-A d8", + "Tyriedgoea SI-A c1-2", + "Tyriedgoea JW-A b2-0", + "Tyriedgoea GL-C b1-0", + "Tyriedgoea FL-C b1-0", + "Tyriedgoea ZJ-E b0", + "Pru Eurl QH-X b58-0", + "Pru Eurl CN-A d14-2", + "Pru Eurl JG-Z b57-0", + "Pru Eurl EQ-Z c28-0", + "Pru Eurl DA-B b57-0", + "Pru Eurl CA-B b57-0", + "Pru Eurl BA-B b57-0", + "Pru Eurl WT-C b56-0", + "Pru Eurl SN-E b55-0", + "Pru Eurl PS-E b55-0", + "Pru Eurl KM-G b54-0", + "Pru Eurl JM-G b54-0", + "Pru Eurl FG-I b53-0", + "Pru Eurl XF-O e6-0", + "Pru Eurl AA-K b52-0", + "Pru Eurl VT-L b51-0", + "Pru Eurl PF-E d12-9", + "Pru Eurl QX-O b49-0", + "Pru Eurl RA-E d12-9", + "Pru Eurl GG-I c24-3", + "Pru Eurl QA-E d12-5", + "Pru Eurl DL-I c24-2", + "Pru Eurl CQ-S b47-0", + "Pru Eurl BQ-S b47-0", + "Pru Eurl XJ-U b46-0", + "Pru Eurl YE-K c23-0", + "Sifaea BV-F d11-15", + "Pru Eurl OX-X b44-0", + "Pru Eurl SZ-P e5-1", + "Pru Eurl KZ-F d11-0", + "Sifaea ZZ-X b44-0", + "Sifaea VT-H d10-9", + "Sifaea UT-N c21-0", + "Sifaea QY-Z b43-0", + "Sifaea SY-N c21-0", + "Sifaea IX-B b43-0", + "Sifaea NS-P c20-1", + "Sifaea DR-D b42-0", + "Sifaea YK-F b41-0", + "Sifaea XK-F b41-0", + "Sifaea SE-H b40-0", + "Sifaea PN-J d9-10", + "Sifaea PN-J d9-2", + "Sifaea JS-K b38-0", + "Sifaea IS-K b38-0", + "Sifaea HS-K b38-0", + "Sifaea HN-K b38-0", + "Sifaea UT-R e4-1", + "Sifaea ES-K b38-0", + "Sifaea HY-I b39-0", + "Sifaea IT-I b39-0", + "Sifaea NN-J d9-8", + "Sifaea EY-I b39-0", + "Sifaea CM-R c19-0", + "Sifaea MN-J d9-1", + "Sifaea BM-R c19-1", + "Sifaea GE-H b40-0", + "Sifaea FE-H b40-0", + "Sifaea EE-H b40-0", + "Sifaea FZ-G b40-0", + "Sifaea EZ-G b40-0", + "Sifaea DZ-G b40-0", + "Sifaea ST-R e4-0", + "Sifaea BZ-G b40-0", + "Sifaea YD-H b40-0", + "Sifaea KN-J d9-3", + "Sifaea XD-H b40-0", + "Sifaea KN-J d9-13", + "Sifaea JN-J d9-1", + "Sifaea VD-H b40-0", + "Sifaea JN-J d9-2", + "Sifaea UL-R c19-1", + "Sifaea JW-K b38-0", + "Sifaea EQ-M b37-0", + "Sifaea EH-L d8-4", + "Sifaea BF-O b36-0", + "Sifaea AF-O b36-0", + "Sifaea VY-P b35-0", + "Sifaea YE-O b36-0", + "Sifaea XE-O b36-0", + "Sifaea DH-L d8-12", + "Sifaea DH-L d8-13", + "Sifaea RY-P b35-0", + "Sifaea IZ-U c17-0", + "Sifaea LS-R b34-0", + "Sifaea CH-L d8-6", + "Sifaea CH-L d8-1", + "Sifaea GW-U b32-1", + "Sifaea AW-M d7-2", + "Sifaea DD-Y c15-0", + "Sifaea DL-W b31-0", + "Sifaea YE-Y b30-1", + "Sifaea ZV-M d7-3", + "Sifaea AA-Y b30-0", + "Sifaea WT-Z b29-0", + "Sifaea KC-V e2-2", + "Sifaea WP-O d6-16", + "Sifaea KC-V e2-3", + "Sifaea QS-B b29-0", + "Sifaea RN-B b29-1", + "Sifaea QN-B b29-0", + "Sifaea VP-O d6-1", + "Sifaea ST-Z b29-0", + "Sifaea YV-M d7-12", + "Sifaea QT-Z b29-0", + "Sifaea LN-B b29-1", + "Sifaea UP-O d6-8", + "Sifaea DM-D b28-2", + "Sifaea TP-O d6-26", + "Sifaea CH-D b28-0", + "Sifaea BH-D b28-1", + "Sifaea WA-F b27-2", + "Sifaea SP-O d6-26", + "Sifaea PZ-G b26-0", + "Sifaea OZ-G b26-1", + "Pro Eur VV-I b25-0", + "Pro Eur UV-I b25-0", + "Pro Eur PP-K b24-2", + "Pro Eur SV-I b25-0", + "Pro Eur PK-K b24-0", + "Pro Eur CK-Q d5-6", + "Pro Eur ED-O b22-0", + "Pro Eur ZW-P b21-2", + "Pro Eur YW-P b21-0", + "Pro Eur XW-P b21-0", + "Pro Eur WW-P b21-0", + "Pro Eur WS-I c10-7", + "Pro Eur QQ-R b20-0", + "Pro Eur RM-K c9-3", + "Pro Eur WD-S d4-28", + "Pro Eur MG-M c8-4", + "Pro Eur CT-W b17-2", + "Pro Eur LG-M c8-5", + "Pro Eur WM-Y b16-1", + "Pro Eur TR-Y b16-0", + "Pro Eur NL-A b16-2", + "Pro Eur FA-O c7-0", + "Pro Eur IF-C b15-0", + "Pro Eur DZ-D b14-2", + "Pro Eur CZ-D b14-1", + "Pro Eur ZN-F b13-1", + "Pro Eur YT-P c6-3", + "Pro Eur LR-V d2-36", + "Pro Eur WN-F b13-1", + "Pro Eur ZT-D b14-1", + "Pro Eur AP-D b14-1", + "Pro Eur DV-B b15-2", + "Pro Eur CV-B b15-2", + "Pro Eur NX-T d3-41", + "Pro Eur NX-T d3-32", + "Pro Eur FB-M c8-1", + "Pro Eur LN-W b17-2", + "Pro Eur NX-T d3-15", + "Pro Eur GM-K c9-0", + "Pro Eur PE-T b19-0", + "Pro Eur FM-K c9-6", + "Pro Eur RK-R b20-0", + "Pro Eur IS-I c10-0", + "Pro Eur PD-S d4-9", + "Pro Eur GW-W e1-0", + "Pro Eur EH-K c9-9", + "Pro Eur EY-U b18-1", + "Pro Eur BM-K c9-3", + "Pro Eur ET-U b18-0", + "Pro Eur AM-K c9-5", + "Pro Eur OD-S d4-23", + "Pro Eur ZL-K c9-4", + "Pro Eur ND-S d4-26", + "Pro Eur VC-V b18-0", + "Pro Eur UC-V b18-0", + "Pro Eur IX-T d3-26", + "Pro Eur SC-V b18-0", + "Pro Eur TX-U b18-1", + "Pro Eur MD-S d4-24", + "Pro Eur MD-S d4-23", + "Pro Eur OR-W b17-1", + "Pro Eur HX-T d3-18", + "Pro Eur RF-M c8-2", + "Pro Eur HL-Y b16-0", + "Pro Eur IG-Y b16-0", + "Pro Eur DA-A b16-2", + "Pro Eur GG-Y b16-0", + "Pro Eur DL-Y b16-0", + "Pro Eur GX-T d3-1", + "Sifeae IH-A b16-1", + "Sifeae GM-A b16-0", + "Sifeae FM-A b16-0", + "Sifeae VX-T d3-11", + "Sifeae UX-T d3-1", + "Sifeae LF-O c7-0", + "Sifeae SC-U d3-1", + "Sifeae NW-V d2-6", + "Sifeae NW-V d2-16", + "Sifeae OE-E b14-1", + "Sifeae NE-E b14-0", + "Sifeae QK-C b15-0", + "Sifeae QC-U d3-22", + "Sifeae OK-C b15-0", + "Sifeae MK-C b15-1", + "Sifeae DU-P c6-4", + "Sifeae JZ-D b14-0", + "Sifeae GE-E b14-0", + "Sifeae FE-E b14-0", + "Sifeae CT-F b13-0", + "Sifeae BT-F b13-0", + "Sifeae ZY-P c6-1", + "Sifeae KW-V d2-9", + "Sifeae RR-H b12-0", + "Sifeae XY-P c6-6", + "Sifeae XY-P c6-0", + "Sifeae JW-V d2-12", + "Sifeae WD-E b14-0", + "Sifeae XT-P c6-5", + "Sifeae WY-D b14-0", + "Sifeae VY-D b14-1", + "Sifeae AA-C b15-1", + "Sifeae ZZ-N c7-0", + "Sifeae AL-A b16-1", + "Sifeae VE-C b15-1", + "Sifeae YK-A b16-1", + "Sifeae MX-T d3-28", + "Sifeae ZV-Y b16-0", + "Sifeae KC-U d3-4", + "Synuefe YG-Z b47-0", + "Synuefe XK-N c23-3", + "Col 285 Sector MR-M c7-13", + "Col 285 Sector SH-B b14-7", + "Col 285 Sector RH-B b14-2", + "HIP 28150", + "Col 285 Sector NM-B b14-6", + "Hyades Sector LC-V d2-99", + "Trianguli Sector QI-T b3-6", + "Trianguli Sector PI-T b3-7", + "Trianguli Sector TU-O a6-1", + "Tascheter Sector TY-R a4-2", + "LP 415-26", + "Delta Trianguli", + "LHS 4003", + "WISE 2056+1459", + "LP 634-1", + "Volungu", + "Liaedin", + "Wolf 1062", + "IL Aquarii", + "LAWD 96", + "Core Sys Sector CQ-P a5-2", + "Alectrona", + "Hyldekagati", + "Ceti Sector CQ-Y d89", + "Ceti Sector PD-S b4-1", + "Quivira", + "Kadrusa", + "ICZ CL-X b1-5", + "ICZ EW-V b2-4", + "Sanna", + "Euryale", + "LPM 26", + "Putamasin", + "LFT 78", + "Col 285 Sector NE-R a34-0", + "LHS 160", + "LHS 1351", + "LP 91-140", + "Ennead", + "Mitra", + "CD-58 538", + "Iota Horologii" + ], + "starport": [ + "Bosch Terminal", + "Julian Gateway", + "Jemison Dock", + "Galvani Port", + "Wundt Gateway", + "Conrad Port", + "Knapp Vision", + "Herzfeld Landing", + "Kotov Terminal", + "Weston Orbital", + "Ricardo Landing", + "Brand City", + "Huygens Mines", + "Zudov City", + "Chomsky Ring", + "Wescott Terminal", + "Dirac Hub", + "Planck Dock", + "Hertz Colony", + "Bosch Mines", + "Blaschke Vision", + "Nicollet City", + "Ejeta Colony", + "Pierres Ring", + "Grant Terminal", + "Narvaez Orbital", + "Legendre Ring", + "Popper Dock", + "Brooks City", + "Wells Hub", + "Barcelos City", + "Perez Market", + "Lopez de Villalobos Prospect", + "Oramus Legacy", + "Henry Hub", + "Schade Platform", + "Selberg's Inheritance", + "Solovyov Orbital", + "Pierce Hanger", + "Giles Colony", + "Marshall Hub", + "Ising Hub", + "Arrhenius Hub", + "Vaucanson Hub", + "Frimout Horizons", + "Parry Terminal", + "Saberhagen Port", + "Stafford Terminal", + "Willis City", + "Romanenko Gateway", + "Jakes Enterprise", + "Budarin Terminal", + "Horowitz Gateway", + "Burke Hub", + "Perrin Ring", + "Balandin Enterprise", + "So-yeon Port", + "Potter Gateway", + "Tudela Installation", + "Quimper Ring", + "Julian City", + "Whitelaw Enterprise", + "Saunders's Dive", + "Harvestport", + "Brunton Hub", + "Nasmyth Station", + "Currie Enterprise", + "McArthur Plant", + "Lundwall City", + "Tshang Enterprise", + "Mach Dock", + "Wellman Gateway", + "Moisuc Refinery", + "Boe Enterprise", + "Gelfand Survey", + "Artyukhin Ring", + "Aitken Vision", + "Laphrian Shipyard", + "Crook Orbital", + "Rand City", + "Morgan Terminal", + "Oswald Platform", + "Aksyonov Platform", + "Coney Arena", + "Roberts Hub", + "Ayerdhal City", + "Derleth Orbital", + "Maire Gateway", + "Dedman Gateway", + "Bailey Ring", + "Humphreys Enterprise", + "Kandel Ring", + "Polya Enterprise", + "Rozhdestvensky Station", + "Cameron Survey", + "Shuttleworth Terminal", + "Yu Port", + "Bolger Vision", + "Alpers Refinery", + "Goeschke Station", + "Stebler Mines", + "Duke Hub", + "Shepard Ring", + "Cormack Orbital", + "Harris Platform", + "Fung Outpost", + "Ore Terminal", + "McDaniel Station", + "Ellison Station", + "Hennepin Enterprise", + "Luiken Port", + "Cochrane Terminal", + "McDonald Port", + "Bykovsky Ring", + "Vaucanson Settlement", + "Nicollier Ring", + "Carrier Dock", + "DG-1 Refinery", + "Blackman Terminal", + "Proteus Orbital", + "Katzenstein Settlement", + "Porta", + "Spedding Orbital", + "Anders Orbital", + "Mohmand Dock", + "Maler Hub", + "Scott Settlement", + "Sarich Port", + "Tyurin Port", + "Reisman Station", + "Fulton Landing", + "DENIS FILIPPOV", + "Rattus High", + "Port Sippar", + "Amar Station", + "Hennen City", + "Cabrera Dock", + "Haller Port", + "Pennington City", + "Foda Station", + "Stebler City", + "Gibson Settlement", + "Strekalov Dock", + "Behnken Terminal", + "Euler Port", + "Archimedes Hub", + "Ross Dock", + "Blalock Orbital", + "Pavlov Settlement", + "Galileo", + "Stein Platform", + "Beatty Landing", + "Galiano Plant", + "Rangarajan's Base", + "Jemison Refinery", + "Solo Orbiter", + "Brunel Station", + "Brendan Gateway", + "Godel Dock", + "Slipher Vision", + "EG Main HQ", + "Crown Orbital", + "Crown City", + "Watt Ring", + "Coye Orbital", + "Tokubei Holdings", + "Haberlandt Orbital", + "Bernard Colony" + ] + }, + "greatestDistanceFromStart": 9017.2195143253, + "creditsEarned": 542823, + "bodiesCount": 0, + "scanSoldLevels": { + "lev_0": 647, + "lev_1": 489, + "lev_2": 132, + "lev_3": 0 + }, + "latestPayouts": [ + { + "market": "Port Sippar", + "value": 3218 + }, + { + "market": "Quimper Ring", + "value": 63035 + }, + { + "market": "Rangarajan's Base", + "value": 141702 + }, + { + "market": "Galiano Plant", + "value": 59372 + }, + { + "market": "Beatty Landing", + "value": 3424 + } + ], + "highestPayout": 34942, + "lastVisitedStarSystems": [ + "Iota Horologii", + "CD-58 538", + "Mitra", + "Ennead", + "LP 91-140" + ], + "bodiesSoldCount": 1268, + "bodiesFirstDiscovered": 26 + }, + "ship": { + "spend": { + "ships": 8227344, + "fuel": 160669, + "modules": 15615586, + "ammo": 232942, + "repair": 909596 + }, + "fuel_units": { + "purchased": 0, + "scooped": 2232 + }, + "insurance": { + "claims": 24, + "value": 2714138 + } + }, + "wealth": { + "maxCredits": 23883052 + }, + "trade": { + "marketIds": [ + "3228160256", + "3228321792", + "3228393472", + "3228129280", + "3228062976", + "3227948288", + "3227868160", + "3228192000", + "3228189952", + "3228190208", + "3228191232", + "3228190464", + "3228190720", + "3228244480", + "3228249088", + "3228264192", + "3228252160", + "3228251904", + "3228190976", + "3228191488", + "3228249344", + "3227868416", + "3228248064", + "3228470784", + "3228244736", + "3228471040", + "3228339968", + "3228340224", + "3228244224", + "3228247808", + "3228329472", + "3228390400", + "3223529472", + "128129272", + "3223288832", + "3228081408", + "3228081152", + "3227955968", + "3227957248", + "3228063232", + "3228028672", + "3227998208", + "3227998464", + "3228066560", + "128134648", + "128154360", + "3228040192", + "128153848", + "3228064768", + "3228065024", + "3228064256", + "3227919360", + "128169976", + "3228064000", + "128073720", + "3228077824", + "128073464", + "3228120576" + ], + "furthest": { + "distance": 99.480201783445, + "origin": 128129272, + "destination": "3228390400" + }, + "largestProfit": { + "value": 171720, + "commodity": "Beryllium", + "qty": 120, + "marketId": "3228081152" + }, + "largestProfitPerItem": { + "value": 1433, + "commodity": "Beryllium", + "marketId": "3228081152" + }, + "count": 429, + "qty": 22410, + "profit": 14759658, + "totalDistance": 198621.73693075 + }, + "mining": { + "largestProfit": { + "value": 0, + "commodity": 0, + "qty": 0, + "marketId": 0 + }, + "largestProfitPerItem": { + "value": 0, + "commodity": 0, + "marketId": 0 + }, + "count": 0, + "qty": 0, + "profit": 0, + "converted": { + "qty": 0 + } + }, + "blackMarket": { + "marketIds": [ + "3227868160", + "3228338688", + "3228189952", + "3228247808", + "3228390144", + "128130296" + ], + "furthest": { + "distance": 69224.099624264, + "origin": 0, + "destination": "3228338688" + }, + "largestProfit": { + "value": 132005, + "commodity": "OnionHead", + "qty": 17, + "marketId": "3228390144" + }, + "largestProfitPerItem": { + "value": 13130, + "commodity": "MotronaExperienceJelly", + "marketId": "128130296" + }, + "count": 13, + "qty": 67, + "profit": 292429, + "totalDistance": 556021.41706887 + }, + "stolenGoods": { + "largestProfit": { + "value": 65650, + "commodity": "MotronaExperienceJelly", + "qty": 5, + "marketId": "128130296" + }, + "largestProfitPerItem": { + "value": 13130, + "commodity": "MotronaExperienceJelly", + "marketId": "128130296" + }, + "count": 10, + "qty": 38, + "profit": 157238 + }, + "combat": { + "bounty": { + "highestClaimed": 134706, + "qty": 239, + "value": 1215158 + }, + "bond": { + "qty": 223, + "value": 1559000 + } + }, + "crime": { + "fine": { + "qty": 11, + "value": 135334, + "factions": [] + }, + "bounty": { + "highest": { + "value": 0, + "faction": 0, + "systemId": 0 + }, + "qty": 0, + "value": 0, + "factions": [] + }, + "stolenCargo": { + "qty": 75, + "value": 442840 + } + }, + "PVP": { + "kills": { + "ranks": { + "r0": 2, + "r1": 1, + "r2": 2, + "r3": 0, + "r4": 1, + "r5": 0, + "r6": 0, + "r7": 0, + "r8": 0 + } + } + }, + "NCP": { + "kills": { + "ranks": { + "r0": 2, + "r1": 4, + "r2": 2, + "r3": 3, + "r4": 1, + "r5": 0, + "r6": 0, + "r7": 0, + "r8": 0 + } + } + }, + "prealloc": true, + "ranks": { + "combat": { + "1": { + "ts": 1417719389, + "gt": 144380 + }, + "2": { + "ts": 1419164701, + "gt": 328001 + }, + "3": { + "ts": 1419789595, + "gt": 381168 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "crime": { + "1": { + "ts": 0, + "gt": 0 + }, + "2": { + "ts": 0, + "gt": 0 + }, + "3": { + "ts": 0, + "gt": 0 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "explore": { + "1": { + "ts": 1416679505, + "gt": 7340 + }, + "2": { + "ts": 1416773896, + "gt": 32330 + }, + "3": { + "ts": 1425813076, + "gt": 645416 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "trade": { + "1": { + "ts": 1417041602, + "gt": 57777 + }, + "2": { + "ts": 1417208591, + "gt": 78181 + }, + "3": { + "ts": 1417804896, + "gt": 154613 + }, + "4": { + "ts": 1421439724, + "gt": 490202 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "federation": { + "1": { + "ts": 1418494995, + "gt": 227112 + }, + "2": { + "ts": 1418496671, + "gt": 227112 + }, + "3": { + "ts": 1419692207, + "gt": 369093 + }, + "4": { + "ts": 1420382992, + "gt": 418109 + }, + "5": { + "ts": 1437243056, + "gt": 847776 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "empire": { + "1": { + "ts": 1437243056, + "gt": 847776 + }, + "2": { + "ts": 0, + "gt": 0 + }, + "3": { + "ts": 0, + "gt": 0 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + } + }, + "lastModulesBought": [ + { + "market": "EG Main HQ", + "module": "Hpt_ChaffLauncher_Tiny", + "value": 8500 + }, + { + "market": "Godel Dock", + "module": "Int_DockingComputer_Standard", + "value": 4500 + }, + { + "market": "Quimper Ring", + "module": "Hpt_ElectronicCountermeasure_Tiny", + "value": 12500 + }, + { + "market": "Quimper Ring", + "module": "Decal_Combat_Competent", + "value": 0 + }, + { + "market": "Quimper Ring", + "module": "Int_HullReinforcement_Size4_Class2", + "value": 195000 + } + ], + "illegalGoods": { + "largestProfit": { + "value": 132005, + "commodity": "OnionHead", + "qty": 17, + "marketId": "3228390144" + }, + "largestProfitPerItem": { + "value": 13130, + "commodity": "MotronaExperienceJelly", + "marketId": "128130296" + }, + "count": 10, + "qty": 45, + "profit": 239863 + }, + "NPC": { + "kills": { + "ranks": { + "r1": 14, + "r3": 17, + "r2": 14, + "r0": 3, + "r4": 12, + "r5": 13, + "rArray": 2, + "r8": 3, + "r7": 2, + "r6": 5 + } + } + }, + "vanishCounters": { + "amongPeers": 5, + "notInDanger": 5, + "isNotDying": 2 + } + }, + "ship": { + "name": "CobraMkIII", + "modules": { + "MediumHardpoint1": { + "module": { + "id": 128049460, + "name": "Hpt_MultiCannon_Gimbal_Medium", + "value": 57000, + "unloaned": 57000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 90, + "hopper": 2100 + } + } + }, + "MediumHardpoint2": { + "module": { + "id": 128049386, + "name": "Hpt_PulseLaser_Gimbal_Medium", + "value": 35400, + "unloaned": 35400, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "SmallHardpoint1": { + "module": { + "id": 128049385, + "name": "Hpt_PulseLaser_Gimbal_Small", + "value": 6600, + "unloaned": 6600, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "SmallHardpoint2": { + "module": { + "id": 128049459, + "name": "Hpt_MultiCannon_Gimbal_Small", + "value": 14250, + "unloaned": 14250, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 90, + "hopper": 2100 + } + } + }, + "TinyHardpoint1": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 8500, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "TinyHardpoint2": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 8500, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "Decal1": { + "module": { + "id": 128667738, + "name": "Decal_Combat_Competent", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Decal2": { + "module": { + "id": 128667655, + "name": "Decal_Skull3", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Decal3": { + "module": { + "id": 128667655, + "name": "Decal_Skull3", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PaintJob": { + "module": { + "id": 128666731, + "name": "PaintJob_CobraMkIII_Stripe2_03", + "value": 0, + "health": 1000000, + "on": true, + "priority": 1, + "free": true, + "unloaned": 0 + } + }, + "Armour": { + "module": { + "id": 128049282, + "name": "CobraMkIII_Armour_Grade3", + "value": 341746, + "unloaned": 341746, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PowerPlant": { + "module": { + "id": 128064045, + "name": "Int_Powerplant_Size4_Class3", + "value": 178898, + "unloaned": 178898, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "MainEngines": { + "module": { + "id": 128064082, + "name": "Int_Engine_Size4_Class5", + "value": 1610080, + "unloaned": 1610080, + "free": false, + "health": 1000000, + "on": true, + "priority": 0 + } + }, + "FrameShiftDrive": { + "module": { + "id": 128064117, + "name": "Int_Hyperdrive_Size4_Class5", + "value": 1610080, + "unloaned": 1610080, + "free": false, + "health": 1000000, + "on": true, + "priority": 3 + } + }, + "LifeSupport": { + "module": { + "id": 128064149, + "name": "Int_LifeSupport_Size3_Class2", + "value": 10133, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "unloaned": 10133 + } + }, + "PowerDistributor": { + "module": { + "id": 128064192, + "name": "Int_PowerDistributor_Size3_Class5", + "value": 158331, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "unloaned": 158331 + } + }, + "Radar": { + "module": { + "id": 128064229, + "name": "Int_Sensors_Size3_Class2", + "value": 10133, + "unloaned": 10133, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "FuelTank": { + "module": { + "id": 128064349, + "name": "Int_FuelTank_Size4_Class3", + "value": 24734, + "health": 1000000, + "on": true, + "priority": 1, + "free": false, + "unloaned": 24734 + } + }, + "Slot01_Size4": { + "module": { + "id": 128668544, + "name": "Int_HullReinforcement_Size4_Class2", + "value": 195000, + "unloaned": 195000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot02_Size4": { + "module": { + "id": 128064314, + "name": "Int_ShieldCellBank_Size4_Class2", + "value": 28373, + "unloaned": 28373, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 2 + } + } + }, + "Slot03_Size4": { + "module": { + "id": 128064274, + "name": "Int_ShieldGenerator_Size4_Class2", + "value": 59633, + "unloaned": 59633, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot04_Size2": { + "module": { + "id": 128668540, + "name": "Int_HullReinforcement_Size2_Class2", + "value": 36000, + "unloaned": 36000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot05_Size2": { + "module": { + "id": 128666709, + "name": "Int_FSDInterdictor_Size2_Class2", + "value": 100800, + "unloaned": 100800, + "free": false, + "health": 1000000, + "on": true, + "priority": 3 + } + }, + "Slot06_Size2": { + "module": { + "id": 128049549, + "name": "Int_DockingComputer_Standard", + "value": 4500, + "unloaned": 4500, + "free": false, + "health": 1000000, + "on": false, + "priority": 0 + } + } + }, + "value": { + "hull": 235787, + "modules": 4498691, + "cargo": 0, + "total": 4734478, + "unloaned": 4498691 + }, + "free": false, + "health": { + "hull": 1000000, + "shield": 1000000, + "shieldup": true + }, + "wear": { + "dirt": 12594, + "fade": 390, + "tear": 35971, + "game": 6003 + }, + "cockpitBreached": false, + "oxygenRemaining": 450000, + "fuel": { + "capacity": 16, + "lvl": 14.069938 + }, + "reserve": { + "lvl": 0.083622 + }, + "cargo": { + "capacity": 0, + "qty": 0, + "items": [] + }, + "passengers": [], + "refinery": null + }, + "ships": { + "0": { + "name": "SideWinder", + "station": { + "id": "3228338688", + "name": "Nicollet City" + }, + "starsystem": { + "id": "8055378940618", + "name": "Chang Yeh", + "systemaddress": "8055378940618" + } + }, + "2": { + "name": "CobraMkIII", + "station": { + "id": "3223721728", + "name": "Bernard Colony" + }, + "starsystem": { + "id": "7034", + "name": "Iota Horologii", + "systemaddress": "422810995051" + } + } + } +} \ No newline at end of file diff --git a/utils/src/test/resources/edce/edce5.json b/utils/src/test/resources/edce/edce5.json new file mode 100644 index 0000000..c7e240b --- /dev/null +++ b/utils/src/test/resources/edce/edce5.json @@ -0,0 +1,9041 @@ +{ + "commander": { + "id": 126367, + "name": "MoHax", + "credits": 23882390, + "debt": 0, + "currentShipId": 2, + "alive": true, + "docked": true, + "rank": { + "combat": 3, + "trade": 4, + "explore": 3, + "crime": 0, + "service": 0, + "empire": 0, + "federation": 2, + "power": 3 + } + }, + "lastSystem": { + "id": "63318", + "name": "CD-58 538", + "faction": "Federation" + }, + "lastStarport": { + "id": "3223873280", + "name": "Meade Ring", + "faction": "Federation", + "commodities": [ + { + "id": "128049204", + "name": "Explosives", + "cost_min": 300, + "cost_max": 456, + "cost_mean": "378.00", + "homebuy": "60", + "homesell": "56", + "consumebuy": "4", + "baseCreationQty": 191.2, + "baseConsumptionQty": 0, + "capacity": 142802, + "buyPrice": 182, + "sellPrice": 169, + "meanPrice": 378, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 142802, + "consumptionQty": 0, + "targetStock": 142802, + "stock": 119279.6626, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Chemicals", + "volumescale": "1.1400" + }, + { + "id": "128049202", + "name": "Hydrogen Fuel", + "cost_min": 125, + "cost_max": 168, + "cost_mean": "147.00", + "homebuy": "74", + "homesell": "71", + "consumebuy": "3", + "baseCreationQty": 200, + "baseConsumptionQty": 200, + "capacity": 373758, + "buyPrice": 94, + "sellPrice": 89, + "meanPrice": 147, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 298745, + "consumptionQty": 75013, + "targetStock": 317497, + "stock": 317497, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Chemicals", + "volumescale": "1.3000" + }, + { + "id": "128049203", + "name": "Mineral Oil", + "cost_min": 192, + "cost_max": 325, + "cost_mean": "259.00", + "homebuy": "47", + "homesell": "42", + "consumebuy": "5", + "baseCreationQty": 0, + "baseConsumptionQty": 194.2, + "capacity": 290091, + "buyPrice": 0, + "sellPrice": 313, + "meanPrice": 259, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 290091, + "targetStock": 72522, + "stock": 0, + "demand": 202578, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Chemicals", + "volumescale": "1.0300" + }, + { + "id": "128049205", + "name": "Pesticides", + "cost_min": 223, + "cost_max": 361, + "cost_mean": "292.00", + "homebuy": "52", + "homesell": "47", + "consumebuy": "5", + "baseCreationQty": 42.4, + "baseConsumptionQty": 0, + "capacity": 15834, + "buyPrice": 149, + "sellPrice": 134, + "meanPrice": 292, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 15834, + "consumptionQty": 0, + "targetStock": 15834, + "stock": 8868, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Chemicals", + "volumescale": "1.0700" + }, + { + "id": "128049241", + "name": "Clothing", + "cost_min": 315, + "cost_max": 474, + "cost_mean": "395.00", + "homebuy": "61", + "homesell": "57", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 350, + "capacity": 131273, + "buyPrice": 0, + "sellPrice": 474, + "meanPrice": 395, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 131273, + "targetStock": 32817, + "stock": 0, + "demand": 98456, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Consumer Items", + "volumescale": "1.1500" + }, + { + "id": "128049240", + "name": "Consumer Technology", + "cost_min": 6561, + "cost_max": 7500, + "cost_mean": "7031.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 4, + "baseConsumptionQty": 5.4, + "capacity": 5140, + "buyPrice": 0, + "sellPrice": 6561, + "meanPrice": 7031, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 1494, + "consumptionQty": 3646, + "targetStock": 2405, + "stock": 0, + "demand": 683.75, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Consumer Items", + "volumescale": "1.1000" + }, + { + "id": "128049238", + "name": "Domestic Appliances", + "cost_min": 527, + "cost_max": 734, + "cost_mean": "631.00", + "homebuy": "70", + "homesell": "67", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 209, + "capacity": 39195, + "buyPrice": 0, + "sellPrice": 734, + "meanPrice": 631, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 39195, + "targetStock": 9798, + "stock": 0, + "demand": 29397, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Consumer Items", + "volumescale": "1.2500" + }, + { + "id": "128049182", + "name": "Animal Meat", + "cost_min": 1286, + "cost_max": 1633, + "cost_mean": "1460.00", + "homebuy": "81", + "homesell": "79", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 97, + "capacity": 36382, + "buyPrice": 0, + "sellPrice": 1478, + "meanPrice": 1460, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 36382, + "targetStock": 9095, + "stock": 0, + "demand": 18297, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.4000" + }, + { + "id": "128049189", + "name": "Coffee", + "cost_min": 1286, + "cost_max": 1633, + "cost_mean": "1460.00", + "homebuy": "81", + "homesell": "79", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 97, + "capacity": 9097, + "buyPrice": 0, + "sellPrice": 1286, + "meanPrice": 1460, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 9097, + "targetStock": 2274, + "stock": 0, + "demand": 1705.75, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.4000" + }, + { + "id": "128049183", + "name": "Fish", + "cost_min": 403, + "cost_max": 583, + "cost_mean": "493.00", + "homebuy": "66", + "homesell": "63", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 271, + "capacity": 101643, + "buyPrice": 0, + "sellPrice": 503, + "meanPrice": 493, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 101643, + "targetStock": 25410, + "stock": 0, + "demand": 51117, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.2000" + }, + { + "id": "128049184", + "name": "Food Cartridges", + "cost_min": 141, + "cost_max": 270, + "cost_mean": "206.00", + "homebuy": "31", + "homesell": "24", + "consumebuy": "7", + "baseCreationQty": 0, + "baseConsumptionQty": 452, + "capacity": 6782, + "buyPrice": 0, + "sellPrice": 141, + "meanPrice": 206, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 6782, + "targetStock": 1695, + "stock": 0, + "demand": 1271.75, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.0000" + }, + { + "id": "128049178", + "name": "Fruit And Vegetables", + "cost_min": 315, + "cost_max": 474, + "cost_mean": "395.00", + "homebuy": "61", + "homesell": "57", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 350, + "capacity": 32819, + "buyPrice": 0, + "sellPrice": 446, + "meanPrice": 395, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 32819, + "targetStock": 8204, + "stock": 0, + "demand": 21371, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.1500" + }, + { + "id": "128049180", + "name": "Grain", + "cost_min": 207, + "cost_max": 342, + "cost_mean": "275.00", + "homebuy": "50", + "homesell": "45", + "consumebuy": "5", + "baseCreationQty": 0, + "baseConsumptionQty": 584, + "capacity": 219037, + "buyPrice": 0, + "sellPrice": 207, + "meanPrice": 275, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 219037, + "targetStock": 54759, + "stock": 0, + "demand": 41069.5, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.0500" + }, + { + "id": "128049185", + "name": "Synthetic Meat", + "cost_min": 252, + "cost_max": 396, + "cost_mean": "324.00", + "homebuy": "56", + "homesell": "52", + "consumebuy": "4", + "baseCreationQty": 36, + "baseConsumptionQty": 45.2, + "capacity": 58013, + "buyPrice": 147, + "sellPrice": 136, + "meanPrice": 324, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 53774, + "consumptionQty": 4239, + "targetStock": 54833, + "stock": 44592.08641, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.1000" + }, + { + "id": "128049188", + "name": "Tea", + "cost_min": 1459, + "cost_max": 1833, + "cost_mean": "1646.00", + "homebuy": "82", + "homesell": "80", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 88, + "capacity": 33007, + "buyPrice": 0, + "sellPrice": 1459, + "meanPrice": 1646, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 33007, + "targetStock": 8251, + "stock": 0, + "demand": 6189, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.4200" + }, + { + "id": "128049197", + "name": "Polymers", + "cost_min": 152, + "cost_max": 279, + "cost_mean": "216.00", + "homebuy": "36", + "homesell": "30", + "consumebuy": "6", + "baseCreationQty": 19.6, + "baseConsumptionQty": 0, + "capacity": 21958, + "buyPrice": 76, + "sellPrice": 63, + "meanPrice": 216, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 21958, + "consumptionQty": 0, + "targetStock": 21958, + "stock": 12297, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Industrial Materials", + "volumescale": "1.0000" + }, + { + "id": "128049199", + "name": "Semiconductors", + "cost_min": 889, + "cost_max": 1168, + "cost_mean": "1029.00", + "homebuy": "77", + "homesell": "75", + "consumebuy": "2", + "baseCreationQty": 2.6, + "baseConsumptionQty": 0, + "capacity": 2913, + "buyPrice": 785, + "sellPrice": 758, + "meanPrice": 1029, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 2913, + "consumptionQty": 0, + "targetStock": 2913, + "stock": 1632, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Industrial Materials", + "volumescale": "1.3400" + }, + { + "id": "128049200", + "name": "Superconductors", + "cost_min": 6561, + "cost_max": 7500, + "cost_mean": "7031.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 2.2, + "baseConsumptionQty": 108, + "capacity": 163793, + "buyPrice": 0, + "sellPrice": 7169, + "meanPrice": 7031, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 2465, + "consumptionQty": 161328, + "targetStock": 42797, + "stock": 0, + "demand": 91014, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Industrial Materials", + "volumescale": "1.1000" + }, + { + "id": "128049220", + "name": "Heliostatic Furnaces", + "cost_min": 199, + "cost_max": 333, + "cost_mean": "266.00", + "homebuy": "48", + "homesell": "43", + "consumebuy": "5", + "baseCreationQty": 2459.2, + "baseConsumptionQty": 614.8, + "capacity": 3673398, + "buyPrice": 134, + "sellPrice": 119, + "meanPrice": 266, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 2755028, + "consumptionQty": 918370, + "targetStock": 2984620, + "stock": 1772406, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.0400" + }, + { + "id": "128049217", + "name": "Power Generators", + "cost_min": 527, + "cost_max": 734, + "cost_mean": "631.00", + "homebuy": "70", + "homesell": "67", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 58.6, + "capacity": 87536, + "buyPrice": 0, + "sellPrice": 734, + "meanPrice": 631, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 87536, + "targetStock": 21884, + "stock": 0, + "demand": 65652, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.2500" + }, + { + "id": "128049218", + "name": "Water Purifiers", + "cost_min": 300, + "cost_max": 456, + "cost_mean": "378.00", + "homebuy": "60", + "homesell": "56", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 37, + "capacity": 55270, + "buyPrice": 0, + "sellPrice": 300, + "meanPrice": 378, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 55270, + "targetStock": 13817, + "stock": 0, + "demand": 10363.25, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.1400" + }, + { + "id": "128049208", + "name": "Agricultural Medicines", + "cost_min": 1004, + "cost_max": 1303, + "cost_mean": "1154.00", + "homebuy": "79", + "homesell": "77", + "consumebuy": "2", + "baseCreationQty": 9.6, + "baseConsumptionQty": 0, + "capacity": 14340, + "buyPrice": 905, + "sellPrice": 874, + "meanPrice": 1154, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 14340, + "consumptionQty": 0, + "targetStock": 14340, + "stock": 8031, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.3600" + }, + { + "id": "128049210", + "name": "Basic Medicines", + "cost_min": 315, + "cost_max": 474, + "cost_mean": "395.00", + "homebuy": "61", + "homesell": "57", + "consumebuy": "4", + "baseCreationQty": 28, + "baseConsumptionQty": 70, + "capacity": 11770, + "buyPrice": 195, + "sellPrice": 180, + "meanPrice": 395, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 10457, + "consumptionQty": 1313, + "targetStock": 10785, + "stock": 9386.47892, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.1500" + }, + { + "id": "128049670", + "name": "Combat Stabilisers", + "cost_min": 2778, + "cost_max": 3331, + "cost_mean": "3055.00", + "homebuy": "88", + "homesell": "87", + "consumebuy": "1", + "baseCreationQty": 16.8, + "baseConsumptionQty": 2, + "capacity": 6350, + "buyPrice": 2466, + "sellPrice": 2417, + "meanPrice": 3055, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 6274, + "consumptionQty": 76, + "targetStock": 6293, + "stock": 6202.243756, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.3600" + }, + { + "id": "128049209", + "name": "Performance Enhancers", + "cost_min": 6561, + "cost_max": 7500, + "cost_mean": "7031.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 8.8, + "baseConsumptionQty": 27, + "capacity": 8351, + "buyPrice": 0, + "sellPrice": 6561, + "meanPrice": 7031, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 3287, + "consumptionQty": 5064, + "targetStock": 4553, + "stock": 0, + "demand": 949.5, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.1000" + }, + { + "id": "128049669", + "name": "Progenitor Cells", + "cost_min": 6561, + "cost_max": 7500, + "cost_mean": "7031.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 8.8, + "baseConsumptionQty": 5.4, + "capacity": 5313, + "buyPrice": 6730, + "sellPrice": 6600, + "meanPrice": 7031, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 3287, + "consumptionQty": 2026, + "targetStock": 3793, + "stock": 2344, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.1000" + }, + { + "id": "128049176", + "name": "Aluminium", + "cost_min": 330, + "cost_max": 493, + "cost_mean": "412.00", + "homebuy": "62", + "homesell": "58", + "consumebuy": "4", + "baseCreationQty": 664.4, + "baseConsumptionQty": 0, + "capacity": 744324, + "buyPrice": 207, + "sellPrice": 192, + "meanPrice": 412, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 744324, + "consumptionQty": 0, + "targetStock": 744324, + "stock": 744324, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.1600" + }, + { + "id": "128049168", + "name": "Beryllium", + "cost_min": 8017, + "cost_max": 9080, + "cost_mean": "8549.00", + "homebuy": "94", + "homesell": "93", + "consumebuy": "1", + "baseCreationQty": 46.2, + "baseConsumptionQty": 36.8, + "capacity": 106728, + "buyPrice": 0, + "sellPrice": 8206, + "meanPrice": 8549, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 51758, + "consumptionQty": 54970, + "targetStock": 65500, + "stock": 0, + "demand": 31764, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.0400" + }, + { + "id": "128049162", + "name": "Cobalt", + "cost_min": 701, + "cost_max": 944, + "cost_mean": "823.00", + "homebuy": "74", + "homesell": "71", + "consumebuy": "3", + "baseCreationQty": 32.4, + "baseConsumptionQty": 1296, + "capacity": 1972181, + "buyPrice": 0, + "sellPrice": 926, + "meanPrice": 823, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 36298, + "consumptionQty": 1935883, + "targetStock": 520268, + "stock": 0, + "demand": 1396579, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.3000" + }, + { + "id": "128049175", + "name": "Copper", + "cost_min": 472, + "cost_max": 668, + "cost_mean": "570.00", + "homebuy": "69", + "homesell": "66", + "consumebuy": "3", + "baseCreationQty": 464, + "baseConsumptionQty": 0, + "capacity": 519817, + "buyPrice": 329, + "sellPrice": 312, + "meanPrice": 570, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 519817, + "consumptionQty": 0, + "targetStock": 519817, + "stock": 519817, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.2300" + }, + { + "id": "128049170", + "name": "Gallium", + "cost_min": 5028, + "cost_max": 5824, + "cost_mean": "5426.00", + "homebuy": "92", + "homesell": "91", + "consumebuy": "1", + "baseCreationQty": 66, + "baseConsumptionQty": 264, + "capacity": 468287, + "buyPrice": 0, + "sellPrice": 5630, + "meanPrice": 5426, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 73940, + "consumptionQty": 394347, + "targetStock": 172526, + "stock": 0, + "demand": 288432, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.1800" + }, + { + "id": "128049154", + "name": "Gold", + "cost_min": 9164, + "cost_max": 10320, + "cost_mean": "9742.00", + "homebuy": "95", + "homesell": "95", + "consumebuy": "0", + "baseCreationQty": 4.2, + "baseConsumptionQty": 166.4, + "capacity": 254832, + "buyPrice": 0, + "sellPrice": 10271, + "meanPrice": 9742, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 6274, + "consumptionQty": 248558, + "targetStock": 68413, + "stock": 0, + "demand": 185179, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.0000" + }, + { + "id": "128049169", + "name": "Indium", + "cost_min": 5743, + "cost_max": 6607, + "cost_mean": "6175.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 59.6, + "baseConsumptionQty": 119.2, + "capacity": 244824, + "buyPrice": 0, + "sellPrice": 5862, + "meanPrice": 6175, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 66770, + "consumptionQty": 178054, + "targetStock": 111283, + "stock": 0, + "demand": 67358, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.1400" + }, + { + "id": "128049173", + "name": "Lithium", + "cost_min": 1555, + "cost_max": 1943, + "cost_mean": "1749.00", + "homebuy": "83", + "homesell": "81", + "consumebuy": "2", + "baseCreationQty": 166.4, + "baseConsumptionQty": 665.6, + "capacity": 1180649, + "buyPrice": 0, + "sellPrice": 1849, + "meanPrice": 1749, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 186417, + "consumptionQty": 994232, + "targetStock": 434975, + "stock": 0, + "demand": 727240, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.4300" + }, + { + "id": "128671118", + "name": "Osmium", + "cost_min": 6561, + "cost_max": 7500, + "cost_mean": "7031.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 215.2, + "capacity": 321453, + "buyPrice": 0, + "sellPrice": 7500, + "meanPrice": 7031, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 321453, + "targetStock": 80363, + "stock": 0, + "demand": 241090, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.1000" + }, + { + "id": "128049153", + "name": "Palladium", + "cost_min": 12815, + "cost_max": 14239, + "cost_mean": "13527.00", + "homebuy": "97", + "homesell": "97", + "consumebuy": "0", + "baseCreationQty": 0, + "baseConsumptionQty": 128.8, + "capacity": 192394, + "buyPrice": 0, + "sellPrice": 14205, + "meanPrice": 13527, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 192394, + "targetStock": 48098, + "stock": 0, + "demand": 141732, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.0000" + }, + { + "id": "128049152", + "name": "Platinum", + "cost_min": 17936, + "cost_max": 19691, + "cost_mean": "18814.00", + "homebuy": "98", + "homesell": "98", + "consumebuy": "0", + "baseCreationQty": 0, + "baseConsumptionQty": 9.6, + "capacity": 14340, + "buyPrice": 0, + "sellPrice": 19691, + "meanPrice": 18814, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 14340, + "targetStock": 3585, + "stock": 0, + "demand": 10755, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.0000" + }, + { + "id": "128049155", + "name": "Silver", + "cost_min": 4705, + "cost_max": 5470, + "cost_mean": "5088.00", + "homebuy": "91", + "homesell": "90", + "consumebuy": "1", + "baseCreationQty": 7, + "baseConsumptionQty": 278.4, + "capacity": 423700, + "buyPrice": 0, + "sellPrice": 5440, + "meanPrice": 5088, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 7843, + "consumptionQty": 415857, + "targetStock": 111807, + "stock": 0, + "demand": 308365, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.2000" + }, + { + "id": "128049171", + "name": "Tantalum", + "cost_min": 3858, + "cost_max": 4534, + "cost_mean": "4196.00", + "homebuy": "90", + "homesell": "89", + "consumebuy": "1", + "baseCreationQty": 8.2, + "baseConsumptionQty": 648.8, + "capacity": 978324, + "buyPrice": 0, + "sellPrice": 4413, + "meanPrice": 4196, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 9187, + "consumptionQty": 969137, + "targetStock": 251471, + "stock": 0, + "demand": 636683, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.2600" + }, + { + "id": "128049174", + "name": "Titanium", + "cost_min": 1004, + "cost_max": 1303, + "cost_mean": "1154.00", + "homebuy": "79", + "homesell": "77", + "consumebuy": "2", + "baseCreationQty": 238.2, + "baseConsumptionQty": 0, + "capacity": 266855, + "buyPrice": 801, + "sellPrice": 774, + "meanPrice": 1154, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 266855, + "consumptionQty": 0, + "targetStock": 266855, + "stock": 266855, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.3600" + }, + { + "id": "128049172", + "name": "Uranium", + "cost_min": 2603, + "cost_max": 3134, + "cost_mean": "2869.00", + "homebuy": "87", + "homesell": "86", + "consumebuy": "1", + "baseCreationQty": 110.4, + "baseConsumptionQty": 441.6, + "capacity": 783316, + "buyPrice": 0, + "sellPrice": 3005, + "meanPrice": 2869, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 123681, + "consumptionQty": 659635, + "targetStock": 288589, + "stock": 0, + "demand": 482513, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.3800" + }, + { + "id": "128049165", + "name": "Bauxite", + "cost_min": 152, + "cost_max": 279, + "cost_mean": "216.00", + "homebuy": "36", + "homesell": "30", + "consumebuy": "6", + "baseCreationQty": 0, + "baseConsumptionQty": 975.4, + "capacity": 1456991, + "buyPrice": 0, + "sellPrice": 262, + "meanPrice": 216, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 1456991, + "targetStock": 364247, + "stock": 0, + "demand": 981893, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.0000" + }, + { + "id": "128049156", + "name": "Bertrandite", + "cost_min": 2439, + "cost_max": 2949, + "cost_mean": "2694.00", + "homebuy": "87", + "homesell": "86", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 17.4, + "capacity": 25992, + "buyPrice": 0, + "sellPrice": 2949, + "meanPrice": 2694, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 25992, + "targetStock": 6498, + "stock": 0, + "demand": 19494, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.4000" + }, + { + "id": "128049159", + "name": "Coltan", + "cost_min": 1370, + "cost_max": 1730, + "cost_mean": "1550.00", + "homebuy": "82", + "homesell": "80", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 184.2, + "capacity": 275147, + "buyPrice": 0, + "sellPrice": 1730, + "meanPrice": 1550, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 275147, + "targetStock": 68786, + "stock": 0, + "demand": 206361, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.4100" + }, + { + "id": "128049158", + "name": "Gallite", + "cost_min": 1883, + "cost_max": 2319, + "cost_mean": "2101.00", + "homebuy": "85", + "homesell": "84", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 591.8, + "capacity": 883994, + "buyPrice": 0, + "sellPrice": 2319, + "meanPrice": 2101, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 883994, + "targetStock": 220998, + "stock": 0, + "demand": 662996, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.4600" + }, + { + "id": "128049157", + "name": "Indite", + "cost_min": 2142, + "cost_max": 2613, + "cost_mean": "2378.00", + "homebuy": "86", + "homesell": "85", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 128.6, + "capacity": 192095, + "buyPrice": 0, + "sellPrice": 2613, + "meanPrice": 2378, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 192095, + "targetStock": 48023, + "stock": 0, + "demand": 144072, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.4400" + }, + { + "id": "128049161", + "name": "Lepidolite", + "cost_min": 589, + "cost_max": 810, + "cost_mean": "700.00", + "homebuy": "72", + "homesell": "69", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 377.8, + "capacity": 564334, + "buyPrice": 0, + "sellPrice": 810, + "meanPrice": 700, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 564334, + "targetStock": 141083, + "stock": 0, + "demand": 423251, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.2700" + }, + { + "id": "128668550", + "name": "Painite", + "cost_min": 30000, + "cost_max": 36000, + "cost_mean": "33000.00", + "homebuy": "100", + "homesell": "100", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 13, + "capacity": 4877, + "buyPrice": 0, + "sellPrice": 36000, + "meanPrice": 33000, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 4877, + "targetStock": 1219, + "stock": 0, + "demand": 3658, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.0000" + }, + { + "id": "128049163", + "name": "Rutile", + "cost_min": 330, + "cost_max": 493, + "cost_mean": "412.00", + "homebuy": "62", + "homesell": "58", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 2757.2, + "capacity": 4118532, + "buyPrice": 0, + "sellPrice": 488, + "meanPrice": 412, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 4118532, + "targetStock": 1029632, + "stock": 0, + "demand": 3013396, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.1600" + }, + { + "id": "128049160", + "name": "Uraninite", + "cost_min": 889, + "cost_max": 1168, + "cost_mean": "1029.00", + "homebuy": "77", + "homesell": "75", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 39.6, + "capacity": 59152, + "buyPrice": 0, + "sellPrice": 1040, + "meanPrice": 1029, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 59152, + "targetStock": 14788, + "stock": 0, + "demand": 29373, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.3400" + }, + { + "id": "128049212", + "name": "Basic Narcotics", + "cost_min": 9164, + "cost_max": 10320, + "cost_mean": "9742.00", + "homebuy": "95", + "homesell": "95", + "consumebuy": "0", + "baseCreationQty": 20, + "baseConsumptionQty": 20.8, + "capacity": 2260, + "buyPrice": 8782, + "sellPrice": 8706, + "meanPrice": 9742, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 2241, + "consumptionQty": 19, + "targetStock": 2245, + "stock": 2215.323216, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Narcotics", + "volumescale": "1.0000" + }, + { + "id": "128049214", + "name": "Beer", + "cost_min": 175, + "cost_max": 304, + "cost_mean": "240.00", + "homebuy": "43", + "homesell": "37", + "consumebuy": "6", + "baseCreationQty": 0, + "baseConsumptionQty": 755, + "capacity": 141587, + "buyPrice": 0, + "sellPrice": 302, + "meanPrice": 240, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 141587, + "targetStock": 35396, + "stock": 0, + "demand": 104453, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Narcotics", + "volumescale": "1.0000" + }, + { + "id": "128049216", + "name": "Liquor", + "cost_min": 624, + "cost_max": 852, + "cost_mean": "738.00", + "homebuy": "73", + "homesell": "70", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 179, + "capacity": 8393, + "buyPrice": 0, + "sellPrice": 851, + "meanPrice": 738, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 8393, + "targetStock": 2097, + "stock": 0, + "demand": 6271, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Narcotics", + "volumescale": "1.2800" + }, + { + "id": "128049213", + "name": "Tobacco", + "cost_min": 4705, + "cost_max": 5470, + "cost_mean": "5088.00", + "homebuy": "91", + "homesell": "90", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 174, + "capacity": 12210, + "buyPrice": 0, + "sellPrice": 5378, + "meanPrice": 5088, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 12210, + "targetStock": 3052, + "stock": 0, + "demand": 8347, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Narcotics", + "volumescale": "1.2000" + }, + { + "id": "128049215", + "name": "Wine", + "cost_min": 252, + "cost_max": 396, + "cost_mean": "324.00", + "homebuy": "56", + "homesell": "52", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 452, + "capacity": 169529, + "buyPrice": 0, + "sellPrice": 395, + "meanPrice": 324, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 169529, + "targetStock": 42381, + "stock": 0, + "demand": 126106, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Narcotics", + "volumescale": "1.1000" + }, + { + "id": "128066403", + "name": "Drones", + "cost_min": 100, + "cost_max": 100, + "cost_mean": "100.00", + "homebuy": "100", + "homesell": "100", + "consumebuy": "1", + "baseCreationQty": 200, + "baseConsumptionQty": 0, + "capacity": 75013, + "buyPrice": 101, + "sellPrice": 100, + "meanPrice": 100, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 75013, + "consumptionQty": 0, + "targetStock": 75013, + "stock": 75013, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "NonMarketable", + "volumescale": "1.0000" + }, + { + "id": "128671443", + "name": "S A P8 Core Container", + "cost_min": 50000, + "cost_max": 60000, + "cost_mean": "55000.00", + "homebuy": "100", + "homesell": "100", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 200, + "capacity": 75013, + "buyPrice": 0, + "sellPrice": 60000, + "meanPrice": 55000, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 75013, + "targetStock": 18752, + "stock": 0, + "demand": 56261, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Salvage", + "volumescale": "1.0000" + }, + { + "id": "128667728", + "name": "Imperial Slaves", + "cost_min": 15678, + "cost_max": 17292, + "cost_mean": "16485.00", + "homebuy": "98", + "homesell": "98", + "consumebuy": "0", + "baseCreationQty": 3, + "baseConsumptionQty": 11.2, + "capacity": 21212, + "buyPrice": 0, + "sellPrice": 16184, + "meanPrice": 16485, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 4482, + "consumptionQty": 16730, + "targetStock": 8664, + "stock": 0, + "demand": 7895.904288, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Slaves", + "volumescale": "1.0000" + }, + { + "id": "128049231", + "name": "Advanced Catalysers", + "cost_min": 2778, + "cost_max": 3331, + "cost_mean": "3055.00", + "homebuy": "88", + "homesell": "87", + "consumebuy": "1", + "baseCreationQty": 16.8, + "baseConsumptionQty": 104.8, + "capacity": 175369, + "buyPrice": 0, + "sellPrice": 2778, + "meanPrice": 3055, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 18821, + "consumptionQty": 156548, + "targetStock": 57958, + "stock": 0, + "demand": 29352.75, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.3600" + }, + { + "id": "128049229", + "name": "Animal Monitors", + "cost_min": 300, + "cost_max": 456, + "cost_mean": "378.00", + "homebuy": "60", + "homesell": "56", + "consumebuy": "4", + "baseCreationQty": 29.6, + "baseConsumptionQty": 0, + "capacity": 33161, + "buyPrice": 223, + "sellPrice": 207, + "meanPrice": 378, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 33161, + "consumptionQty": 0, + "targetStock": 33161, + "stock": 18571, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.1400" + }, + { + "id": "128049230", + "name": "Aquaponic Systems", + "cost_min": 274, + "cost_max": 424, + "cost_mean": "349.00", + "homebuy": "58", + "homesell": "54", + "consumebuy": "4", + "baseCreationQty": 32.8, + "baseConsumptionQty": 0, + "capacity": 36746, + "buyPrice": 199, + "sellPrice": 184, + "meanPrice": 349, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 36746, + "consumptionQty": 0, + "targetStock": 36746, + "stock": 20578, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.1200" + }, + { + "id": "128049228", + "name": "Auto Fabricators", + "cost_min": 3612, + "cost_max": 4261, + "cost_mean": "3937.00", + "homebuy": "90", + "homesell": "89", + "consumebuy": "1", + "baseCreationQty": 341.6, + "baseConsumptionQty": 0, + "capacity": 382693, + "buyPrice": 3280, + "sellPrice": 3215, + "meanPrice": 3937, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 382693, + "consumptionQty": 0, + "targetStock": 382693, + "stock": 380093, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.2800" + }, + { + "id": "128049672", + "name": "Bio Reducing Lichen", + "cost_min": 944, + "cost_max": 1233, + "cost_mean": "1089.00", + "homebuy": "78", + "homesell": "76", + "consumebuy": "2", + "baseCreationQty": 10.4, + "baseConsumptionQty": 0, + "capacity": 11652, + "buyPrice": 842, + "sellPrice": 814, + "meanPrice": 1089, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 11652, + "consumptionQty": 0, + "targetStock": 11652, + "stock": 6525, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.3500" + }, + { + "id": "128049225", + "name": "Computer Components", + "cost_min": 527, + "cost_max": 734, + "cost_mean": "631.00", + "homebuy": "70", + "homesell": "67", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 837.6, + "capacity": 314152, + "buyPrice": 0, + "sellPrice": 734, + "meanPrice": 631, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 314152, + "targetStock": 78538, + "stock": 0, + "demand": 235428, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.2500" + }, + { + "id": "128049226", + "name": "Hazardous Environment Suits", + "cost_min": 274, + "cost_max": 424, + "cost_mean": "349.00", + "homebuy": "58", + "homesell": "54", + "consumebuy": "4", + "baseCreationQty": 32.8, + "baseConsumptionQty": 81.6, + "capacity": 158638, + "buyPrice": 0, + "sellPrice": 364, + "meanPrice": 349, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 36746, + "consumptionQty": 121892, + "targetStock": 67219, + "stock": 0, + "demand": 83600, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.1200" + }, + { + "id": "128049671", + "name": "Resonating Separators", + "cost_min": 5743, + "cost_max": 6607, + "cost_mean": "6175.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 238.4, + "baseConsumptionQty": 9, + "capacity": 280523, + "buyPrice": 5764, + "sellPrice": 5652, + "meanPrice": 6175, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 267079, + "consumptionQty": 13444, + "targetStock": 270440, + "stock": 152924, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.1400" + }, + { + "id": "128049227", + "name": "Robotics", + "cost_min": 1766, + "cost_max": 2185, + "cost_mean": "1976.00", + "homebuy": "84", + "homesell": "82", + "consumebuy": "2", + "baseCreationQty": 12, + "baseConsumptionQty": 0, + "capacity": 13444, + "buyPrice": 1652, + "sellPrice": 1599, + "meanPrice": 1976, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 13444, + "consumptionQty": 0, + "targetStock": 13444, + "stock": 7529, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.4500" + }, + { + "id": "128049232", + "name": "Terrain Enrichment Systems", + "cost_min": 4705, + "cost_max": 5470, + "cost_mean": "5088.00", + "homebuy": "91", + "homesell": "90", + "consumebuy": "1", + "baseCreationQty": 11.2, + "baseConsumptionQty": 0, + "capacity": 12548, + "buyPrice": 4585, + "sellPrice": 4496, + "meanPrice": 5088, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 12548, + "consumptionQty": 0, + "targetStock": 12548, + "stock": 7422.4642, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.2000" + }, + { + "id": "128049193", + "name": "Synthetic Fabrics", + "cost_min": 186, + "cost_max": 317, + "cost_mean": "252.00", + "homebuy": "46", + "homesell": "41", + "consumebuy": "5", + "baseCreationQty": 13.6, + "baseConsumptionQty": 0, + "capacity": 15237, + "buyPrice": 87, + "sellPrice": 77, + "meanPrice": 252, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 15237, + "consumptionQty": 0, + "targetStock": 15237, + "stock": 15237, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Textiles", + "volumescale": "1.0200" + }, + { + "id": "128049244", + "name": "Biowaste", + "cost_min": 50, + "cost_max": 98, + "cost_mean": "74.00", + "homebuy": "27", + "homesell": "20", + "consumebuy": "7", + "baseCreationQty": 162, + "baseConsumptionQty": 0, + "capacity": 15125, + "buyPrice": 20, + "sellPrice": 15, + "meanPrice": 74, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 15125, + "consumptionQty": 0, + "targetStock": 15125, + "stock": 8470, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Waste ", + "volumescale": "1.0000" + }, + { + "id": "128049246", + "name": "Chemical Waste", + "cost_min": 50, + "cost_max": 107, + "cost_mean": "79.00", + "homebuy": "18", + "homesell": "10", + "consumebuy": "8", + "baseCreationQty": 0, + "baseConsumptionQty": 72.2, + "capacity": 27080, + "buyPrice": 0, + "sellPrice": 107, + "meanPrice": 79, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 27080, + "targetStock": 6770, + "stock": 0, + "demand": 20310, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Waste ", + "volumescale": "1.0000" + }, + { + "id": "128049248", + "name": "Scrap", + "cost_min": 70, + "cost_max": 122, + "cost_mean": "96.00", + "homebuy": "43", + "homesell": "37", + "consumebuy": "6", + "baseCreationQty": 120.8, + "baseConsumptionQty": 30.2, + "capacity": 90223, + "buyPrice": 0, + "sellPrice": 70, + "meanPrice": 96, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 45111, + "consumptionQty": 45112, + "targetStock": 56389, + "stock": 0, + "demand": 8458.5, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Waste ", + "volumescale": "1.0000" + }, + { + "id": "128049234", + "name": "Battle Weapons", + "cost_min": 6561, + "cost_max": 7500, + "cost_mean": "7031.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 8.8, + "baseConsumptionQty": 0, + "capacity": 3287, + "buyPrice": 6541, + "sellPrice": 6415, + "meanPrice": 7031, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 3287, + "consumptionQty": 0, + "targetStock": 3287, + "stock": 1838, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Weapons", + "volumescale": "1.1000" + }, + { + "id": "128049236", + "name": "Non Lethal Weapons", + "cost_min": 1766, + "cost_max": 2185, + "cost_mean": "1976.00", + "homebuy": "84", + "homesell": "82", + "consumebuy": "2", + "baseCreationQty": 6.4, + "baseConsumptionQty": 15, + "capacity": 2504, + "buyPrice": 1548, + "sellPrice": 1498, + "meanPrice": 1976, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 2391, + "consumptionQty": 113, + "targetStock": 2419, + "stock": 1806.52525, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Weapons", + "volumescale": "1.4500" + }, + { + "id": "128049233", + "name": "Personal Weapons", + "cost_min": 4122, + "cost_max": 4826, + "cost_mean": "4474.00", + "homebuy": "90", + "homesell": "89", + "consumebuy": "1", + "baseCreationQty": 12, + "baseConsumptionQty": 7.8, + "capacity": 1181, + "buyPrice": 0, + "sellPrice": 4122, + "meanPrice": 4474, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 449, + "consumptionQty": 732, + "targetStock": 632, + "stock": 0, + "demand": 137.25, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Weapons", + "volumescale": "1.2400" + }, + { + "id": "128049235", + "name": "Reactive Armour", + "cost_min": 2008, + "cost_max": 2461, + "cost_mean": "2235.00", + "homebuy": "85", + "homesell": "84", + "consumebuy": "1", + "baseCreationQty": 5.6, + "baseConsumptionQty": 13.6, + "capacity": 2399, + "buyPrice": 1903, + "sellPrice": 1865, + "meanPrice": 2235, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 2092, + "consumptionQty": 307, + "targetStock": 2168, + "stock": 1303.61211, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Weapons", + "volumescale": "1.4600" + } + ], + "ships": { + "shipyard_list": { + "SideWinder": { + "id": 128049249, + "name": "SideWinder", + "basevalue": 32000 + }, + "Python": { + "id": 128049339, + "name": "Python", + "basevalue": 56978179 + }, + "Viper": { + "id": 128049273, + "name": "Viper", + "basevalue": 142931 + }, + "Anaconda": { + "id": 128049363, + "name": "Anaconda", + "basevalue": 146969451 + }, + "Asp": { + "id": 128049303, + "name": "Asp", + "basevalue": 6661154 + }, + "Vulture": { + "id": 128049309, + "name": "Vulture", + "basevalue": 4925615 + }, + "DiamondBack": { + "id": 128671217, + "name": "DiamondBack", + "basevalue": 564329 + }, + "Hauler": { + "id": 128049261, + "name": "Hauler", + "basevalue": 52720 + }, + "Eagle": { + "id": 128049255, + "name": "Eagle", + "basevalue": 44800 + } + }, + "unavailable_list": [ + { + "id": 128049321, + "name": "Federation_Dropship", + "basevalue": 19814205, + "unavailableReason": "Insufficient Rank", + "factionId": "3", + "requiredRank": 7 + } + ] + }, + "modules": { + "128049467": { + "id": 128049467, + "category": "weapon", + "name": "Hpt_PlasmaAccelerator_Fixed_Huge", + "cost": 13793600, + "sku": null + }, + "128049466": { + "id": 128049466, + "category": "weapon", + "name": "Hpt_PlasmaAccelerator_Fixed_Large", + "cost": 3051200, + "sku": null + }, + "128049465": { + "id": 128049465, + "category": "weapon", + "name": "Hpt_PlasmaAccelerator_Fixed_Medium", + "cost": 834200, + "sku": null + }, + "128049493": { + "id": 128049493, + "category": "weapon", + "name": "Hpt_BasicMissileRack_Fixed_Medium", + "cost": 512400, + "sku": null + }, + "128049492": { + "id": 128049492, + "category": "weapon", + "name": "Hpt_BasicMissileRack_Fixed_Small", + "cost": 72600, + "sku": null + }, + "128049501": { + "id": 128049501, + "category": "weapon", + "name": "Hpt_MineLauncher_Fixed_Medium", + "cost": 294080, + "sku": null + }, + "128049500": { + "id": 128049500, + "category": "weapon", + "name": "Hpt_MineLauncher_Fixed_Small", + "cost": 24260, + "sku": null + }, + "128049509": { + "id": 128049509, + "category": "weapon", + "name": "Hpt_AdvancedTorpPylon_Fixed_Small", + "cost": 11200, + "sku": null + }, + "128666725": { + "id": 128666725, + "category": "weapon", + "name": "Hpt_DumbfireMissileRack_Fixed_Medium", + "cost": 240400, + "sku": null + }, + "128666724": { + "id": 128666724, + "category": "weapon", + "name": "Hpt_DumbfireMissileRack_Fixed_Small", + "cost": 32175, + "sku": null + }, + "128049409": { + "id": 128049409, + "category": "weapon", + "name": "Hpt_PulseLaserBurst_Turret_Large", + "cost": 800400, + "sku": null + }, + "128049404": { + "id": 128049404, + "category": "weapon", + "name": "Hpt_PulseLaserBurst_Gimbal_Small", + "cost": 8600, + "sku": null + }, + "128049402": { + "id": 128049402, + "category": "weapon", + "name": "Hpt_PulseLaserBurst_Fixed_Large", + "cost": 140400, + "sku": null + }, + "128049401": { + "id": 128049401, + "category": "weapon", + "name": "Hpt_PulseLaserBurst_Fixed_Medium", + "cost": 23000, + "sku": null + }, + "128049400": { + "id": 128049400, + "category": "weapon", + "name": "Hpt_PulseLaserBurst_Fixed_Small", + "cost": 4400, + "sku": null + }, + "128049390": { + "id": 128049390, + "category": "weapon", + "name": "Hpt_PulseLaser_Turret_Large", + "cost": 400400, + "sku": null + }, + "128049387": { + "id": 128049387, + "category": "weapon", + "name": "Hpt_PulseLaser_Gimbal_Large", + "cost": 140600, + "sku": null + }, + "128049386": { + "id": 128049386, + "category": "weapon", + "name": "Hpt_PulseLaser_Gimbal_Medium", + "cost": 35400, + "sku": null + }, + "128049385": { + "id": 128049385, + "category": "weapon", + "name": "Hpt_PulseLaser_Gimbal_Small", + "cost": 6600, + "sku": null + }, + "128049383": { + "id": 128049383, + "category": "weapon", + "name": "Hpt_PulseLaser_Fixed_Large", + "cost": 70400, + "sku": null + }, + "128049382": { + "id": 128049382, + "category": "weapon", + "name": "Hpt_PulseLaser_Fixed_Medium", + "cost": 17600, + "sku": null + }, + "128049434": { + "id": 128049434, + "category": "weapon", + "name": "Hpt_BeamLaser_Gimbal_Large", + "cost": 2396160, + "sku": null + }, + "128049437": { + "id": 128049437, + "category": "weapon", + "name": "Hpt_BeamLaser_Turret_Large", + "cost": 19399600, + "sku": null + }, + "128049430": { + "id": 128049430, + "category": "weapon", + "name": "Hpt_BeamLaser_Fixed_Large", + "cost": 1177600, + "sku": null + }, + "128049436": { + "id": 128049436, + "category": "weapon", + "name": "Hpt_BeamLaser_Turret_Medium", + "cost": 2099900, + "sku": null + }, + "128049432": { + "id": 128049432, + "category": "weapon", + "name": "Hpt_BeamLaser_Gimbal_Small", + "cost": 74650, + "sku": null + }, + "128049435": { + "id": 128049435, + "category": "weapon", + "name": "Hpt_BeamLaser_Turret_Small", + "cost": 500000, + "sku": null + }, + "128049441": { + "id": 128049441, + "category": "weapon", + "name": "Hpt_Cannon_Fixed_Huge", + "cost": 2700800, + "sku": null + }, + "128049444": { + "id": 128049444, + "category": "weapon", + "name": "Hpt_Cannon_Gimbal_Huge", + "cost": 5401600, + "sku": null + }, + "128671120": { + "id": 128671120, + "category": "weapon", + "name": "Hpt_Cannon_Gimbal_Large", + "cost": 1350400, + "sku": null + }, + "128049445": { + "id": 128049445, + "category": "weapon", + "name": "Hpt_Cannon_Turret_Small", + "cost": 506400, + "sku": null + }, + "128049446": { + "id": 128049446, + "category": "weapon", + "name": "Hpt_Cannon_Turret_Medium", + "cost": 4051200, + "sku": null + }, + "128671321": { + "id": 128671321, + "category": "weapon", + "name": "Hpt_Slugshot_Gimbal_Large", + "cost": 1751040, + "sku": null + }, + "128049454": { + "id": 128049454, + "category": "weapon", + "name": "Hpt_Slugshot_Turret_Medium", + "cost": 1459200, + "sku": null + }, + "128049450": { + "id": 128049450, + "category": "weapon", + "name": "Hpt_Slugshot_Fixed_Large", + "cost": 1167360, + "sku": null + }, + "128049453": { + "id": 128049453, + "category": "weapon", + "name": "Hpt_Slugshot_Turret_Small", + "cost": 182400, + "sku": null + }, + "128049451": { + "id": 128049451, + "category": "weapon", + "name": "Hpt_Slugshot_Gimbal_Small", + "cost": 54720, + "sku": null + }, + "128049459": { + "id": 128049459, + "category": "weapon", + "name": "Hpt_MultiCannon_Gimbal_Small", + "cost": 14250, + "sku": null + }, + "128049460": { + "id": 128049460, + "category": "weapon", + "name": "Hpt_MultiCannon_Gimbal_Medium", + "cost": 57000, + "sku": null + }, + "128049456": { + "id": 128049456, + "category": "weapon", + "name": "Hpt_MultiCannon_Fixed_Medium", + "cost": 38000, + "sku": null + }, + "128049455": { + "id": 128049455, + "category": "weapon", + "name": "Hpt_MultiCannon_Fixed_Small", + "cost": 9500, + "sku": null + }, + "128049489": { + "id": 128049489, + "category": "weapon", + "name": "Hpt_Railgun_Fixed_Medium", + "cost": 412800, + "sku": null + }, + "128049488": { + "id": 128049488, + "category": "weapon", + "name": "Hpt_Railgun_Fixed_Small", + "cost": 51600, + "sku": null + }, + "128049447": { + "id": 128049447, + "category": "weapon", + "name": "Hpt_Cannon_Turret_Large", + "cost": 16204800, + "sku": null + }, + "128049440": { + "id": 128049440, + "category": "weapon", + "name": "Hpt_Cannon_Fixed_Large", + "cost": 675200, + "sku": null + }, + "128049442": { + "id": 128049442, + "category": "weapon", + "name": "Hpt_Cannon_Gimbal_Small", + "cost": 42200, + "sku": null + }, + "128049443": { + "id": 128049443, + "category": "weapon", + "name": "Hpt_Cannon_Gimbal_Medium", + "cost": 337600, + "sku": null + }, + "128049433": { + "id": 128049433, + "category": "weapon", + "name": "Hpt_BeamLaser_Gimbal_Medium", + "cost": 500600, + "sku": null + }, + "128049428": { + "id": 128049428, + "category": "weapon", + "name": "Hpt_BeamLaser_Fixed_Small", + "cost": 37430, + "sku": null + }, + "128049429": { + "id": 128049429, + "category": "weapon", + "name": "Hpt_BeamLaser_Fixed_Medium", + "cost": 299520, + "sku": null + }, + "128049452": { + "id": 128049452, + "category": "weapon", + "name": "Hpt_Slugshot_Gimbal_Medium", + "cost": 437760, + "sku": null + }, + "128049448": { + "id": 128049448, + "category": "weapon", + "name": "Hpt_Slugshot_Fixed_Small", + "cost": 36000, + "sku": null + }, + "128049449": { + "id": 128049449, + "category": "weapon", + "name": "Hpt_Slugshot_Fixed_Medium", + "cost": 291840, + "sku": null + }, + "128049462": { + "id": 128049462, + "category": "weapon", + "name": "Hpt_MultiCannon_Turret_Small", + "cost": 81600, + "sku": null + }, + "128049463": { + "id": 128049463, + "category": "weapon", + "name": "Hpt_MultiCannon_Turret_Medium", + "cost": 1292800, + "sku": null + }, + "128049510": { + "id": 128049510, + "category": "weapon", + "name": "Hpt_AdvancedTorpPylon_Fixed_Medium", + "cost": 44800, + "sku": null + }, + "128662533": { + "id": 128662533, + "category": "utility", + "name": "Hpt_CrimeScanner_Size0_Class4", + "cost": 365698, + "sku": null + }, + "128662532": { + "id": 128662532, + "category": "utility", + "name": "Hpt_CrimeScanner_Size0_Class3", + "cost": 121899, + "sku": null + }, + "128662531": { + "id": 128662531, + "category": "utility", + "name": "Hpt_CrimeScanner_Size0_Class2", + "cost": 40633, + "sku": null + }, + "128662530": { + "id": 128662530, + "category": "utility", + "name": "Hpt_CrimeScanner_Size0_Class1", + "cost": 13544, + "sku": null + }, + "128662523": { + "id": 128662523, + "category": "utility", + "name": "Hpt_CargoScanner_Size0_Class4", + "cost": 365698, + "sku": null + }, + "128662522": { + "id": 128662522, + "category": "utility", + "name": "Hpt_CargoScanner_Size0_Class3", + "cost": 121899, + "sku": null + }, + "128662527": { + "id": 128662527, + "category": "utility", + "name": "Hpt_CloudScanner_Size0_Class3", + "cost": 121899, + "sku": null + }, + "128662526": { + "id": 128662526, + "category": "utility", + "name": "Hpt_CloudScanner_Size0_Class2", + "cost": 40633, + "sku": null + }, + "128662525": { + "id": 128662525, + "category": "utility", + "name": "Hpt_CloudScanner_Size0_Class1", + "cost": 13544, + "sku": null + }, + "128662529": { + "id": 128662529, + "category": "utility", + "name": "Hpt_CloudScanner_Size0_Class5", + "cost": 1097095, + "sku": null + }, + "128662528": { + "id": 128662528, + "category": "utility", + "name": "Hpt_CloudScanner_Size0_Class4", + "cost": 365698, + "sku": null + }, + "128049522": { + "id": 128049522, + "category": "utility", + "name": "Hpt_PlasmaPointDefence_Turret_Tiny", + "cost": 18546, + "sku": null + }, + "128049519": { + "id": 128049519, + "category": "utility", + "name": "Hpt_HeatSinkLauncher_Turret_Tiny", + "cost": 3500, + "sku": null + }, + "128049516": { + "id": 128049516, + "category": "utility", + "name": "Hpt_ElectronicCountermeasure_Tiny", + "cost": 12500, + "sku": null + }, + "128049513": { + "id": 128049513, + "category": "utility", + "name": "Hpt_ChaffLauncher_Tiny", + "cost": 8500, + "sku": null + }, + "128049526": { + "id": 128049526, + "category": "utility", + "name": "Hpt_MiningLaser_Fixed_Medium", + "cost": 22576, + "sku": null + }, + "128049525": { + "id": 128049525, + "category": "utility", + "name": "Hpt_MiningLaser_Fixed_Small", + "cost": 6800, + "sku": null + }, + "128662534": { + "id": 128662534, + "category": "utility", + "name": "Hpt_CrimeScanner_Size0_Class5", + "cost": 1097095, + "sku": null + }, + "128662520": { + "id": 128662520, + "category": "utility", + "name": "Hpt_CargoScanner_Size0_Class1", + "cost": 13544, + "sku": null + }, + "128662521": { + "id": 128662521, + "category": "utility", + "name": "Hpt_CargoScanner_Size0_Class2", + "cost": 40633, + "sku": null + }, + "128049252": { + "id": 128049252, + "category": "module", + "name": "SideWinder_Armour_Grade3", + "cost": 80320, + "sku": null + }, + "128049251": { + "id": 128049251, + "category": "module", + "name": "SideWinder_Armour_Grade2", + "cost": 25600, + "sku": null + }, + "128049250": { + "id": 128049250, + "category": "module", + "name": "SideWinder_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049253": { + "id": 128049253, + "category": "module", + "name": "SideWinder_Armour_Mirrored", + "cost": 132064, + "sku": null + }, + "128049254": { + "id": 128049254, + "category": "module", + "name": "SideWinder_Armour_Reactive", + "cost": 139424, + "sku": null + }, + "128049342": { + "id": 128049342, + "category": "module", + "name": "Python_Armour_Grade3", + "cost": 51280361, + "sku": null + }, + "128049341": { + "id": 128049341, + "category": "module", + "name": "Python_Armour_Grade2", + "cost": 22791271, + "sku": null + }, + "128049340": { + "id": 128049340, + "category": "module", + "name": "Python_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049343": { + "id": 128049343, + "category": "module", + "name": "Python_Armour_Mirrored", + "cost": 121192586, + "sku": null + }, + "128049344": { + "id": 128049344, + "category": "module", + "name": "Python_Armour_Reactive", + "cost": 134297567, + "sku": null + }, + "128049276": { + "id": 128049276, + "category": "module", + "name": "Viper_Armour_Grade3", + "cost": 128637, + "sku": null + }, + "128049275": { + "id": 128049275, + "category": "module", + "name": "Viper_Armour_Grade2", + "cost": 57172, + "sku": null + }, + "128049274": { + "id": 128049274, + "category": "module", + "name": "Viper_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049277": { + "id": 128049277, + "category": "module", + "name": "Viper_Armour_Mirrored", + "cost": 304014, + "sku": null + }, + "128049278": { + "id": 128049278, + "category": "module", + "name": "Viper_Armour_Reactive", + "cost": 336888, + "sku": null + }, + "128049366": { + "id": 128049366, + "category": "module", + "name": "Anaconda_Armour_Grade3", + "cost": 132272505, + "sku": null + }, + "128049365": { + "id": 128049365, + "category": "module", + "name": "Anaconda_Armour_Grade2", + "cost": 58787780, + "sku": null + }, + "128049364": { + "id": 128049364, + "category": "module", + "name": "Anaconda_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049368": { + "id": 128049368, + "category": "module", + "name": "Anaconda_Armour_Reactive", + "cost": 346406995, + "sku": null + }, + "128049367": { + "id": 128049367, + "category": "module", + "name": "Anaconda_Armour_Mirrored", + "cost": 312604021, + "sku": null + }, + "128049306": { + "id": 128049306, + "category": "module", + "name": "Asp_Armour_Grade3", + "cost": 5995038, + "sku": null + }, + "128049305": { + "id": 128049305, + "category": "module", + "name": "Asp_Armour_Grade2", + "cost": 2664461, + "sku": null + }, + "128049304": { + "id": 128049304, + "category": "module", + "name": "Asp_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049307": { + "id": 128049307, + "category": "module", + "name": "Asp_Armour_Mirrored", + "cost": 14168274, + "sku": null + }, + "128049308": { + "id": 128049308, + "category": "module", + "name": "Asp_Armour_Reactive", + "cost": 15700339, + "sku": null + }, + "128049312": { + "id": 128049312, + "category": "module", + "name": "Vulture_Armour_Grade3", + "cost": 4433053, + "sku": null + }, + "128049311": { + "id": 128049311, + "category": "module", + "name": "Vulture_Armour_Grade2", + "cost": 1970246, + "sku": null + }, + "128049310": { + "id": 128049310, + "category": "module", + "name": "Vulture_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049313": { + "id": 128049313, + "category": "module", + "name": "Vulture_Armour_Mirrored", + "cost": 10476783, + "sku": null + }, + "128049314": { + "id": 128049314, + "category": "module", + "name": "Vulture_Armour_Reactive", + "cost": 11609674, + "sku": null + }, + "128671219": { + "id": 128671219, + "category": "module", + "name": "DiamondBack_Armour_Grade2", + "cost": 225731, + "sku": null + }, + "128671220": { + "id": 128671220, + "category": "module", + "name": "DiamondBack_Armour_Grade3", + "cost": 507896, + "sku": null + }, + "128671218": { + "id": 128671218, + "category": "module", + "name": "DiamondBack_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128671221": { + "id": 128671221, + "category": "module", + "name": "DiamondBack_Armour_Mirrored", + "cost": 1185090, + "sku": null + }, + "128671222": { + "id": 128671222, + "category": "module", + "name": "DiamondBack_Armour_Reactive", + "cost": 1330123, + "sku": null + }, + "128049324": { + "id": 128049324, + "category": "module", + "name": "Federation_Dropship_Armour_Grade3", + "cost": 17832784, + "sku": null + }, + "128049323": { + "id": 128049323, + "category": "module", + "name": "Federation_Dropship_Armour_Grade2", + "cost": 7925682, + "sku": null + }, + "128049322": { + "id": 128049322, + "category": "module", + "name": "Federation_Dropship_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049325": { + "id": 128049325, + "category": "module", + "name": "Federation_Dropship_Armour_Mirrored", + "cost": 42144814, + "sku": null + }, + "128049326": { + "id": 128049326, + "category": "module", + "name": "Federation_Dropship_Armour_Reactive", + "cost": 46702081, + "sku": null + }, + "128662535": { + "id": 128662535, + "category": "module", + "name": "Int_StellarBodyDiscoveryScanner_Standard", + "cost": 1000, + "sku": null + }, + "128064338": { + "id": 128064338, + "category": "module", + "name": "Int_CargoRack_Size1_Class1", + "cost": 1000, + "sku": null + }, + "128666684": { + "id": 128666684, + "category": "module", + "name": "Int_Refinery_Size1_Class1", + "cost": 6000, + "sku": null + }, + "128666644": { + "id": 128666644, + "category": "module", + "name": "Int_FuelScoop_Size1_Class1", + "cost": 309, + "sku": null + }, + "128666704": { + "id": 128666704, + "category": "module", + "name": "Int_FSDInterdictor_Size1_Class1", + "cost": 12000, + "sku": null + }, + "128066532": { + "id": 128066532, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size1_Class1", + "cost": 600, + "sku": null + }, + "128064263": { + "id": 128064263, + "category": "module", + "name": "Int_ShieldGenerator_Size2_Class1", + "cost": 1978, + "sku": null + }, + "128064152": { + "id": 128064152, + "category": "module", + "name": "Int_LifeSupport_Size3_Class5", + "cost": 158331, + "sku": null + }, + "128064147": { + "id": 128064147, + "category": "module", + "name": "Int_LifeSupport_Size2_Class5", + "cost": 56547, + "sku": null + }, + "128064142": { + "id": 128064142, + "category": "module", + "name": "Int_LifeSupport_Size1_Class5", + "cost": 20195, + "sku": null + }, + "128064141": { + "id": 128064141, + "category": "module", + "name": "Int_LifeSupport_Size1_Class4", + "cost": 8078, + "sku": null + }, + "128064150": { + "id": 128064150, + "category": "module", + "name": "Int_LifeSupport_Size3_Class3", + "cost": 25333, + "sku": null + }, + "128064145": { + "id": 128064145, + "category": "module", + "name": "Int_LifeSupport_Size2_Class3", + "cost": 9048, + "sku": null + }, + "128064140": { + "id": 128064140, + "category": "module", + "name": "Int_LifeSupport_Size1_Class3", + "cost": 3231, + "sku": null + }, + "128064149": { + "id": 128064149, + "category": "module", + "name": "Int_LifeSupport_Size3_Class2", + "cost": 10133, + "sku": null + }, + "128064139": { + "id": 128064139, + "category": "module", + "name": "Int_LifeSupport_Size1_Class2", + "cost": 1293, + "sku": null + }, + "128064144": { + "id": 128064144, + "category": "module", + "name": "Int_LifeSupport_Size2_Class2", + "cost": 3619, + "sku": null + }, + "128064148": { + "id": 128064148, + "category": "module", + "name": "Int_LifeSupport_Size3_Class1", + "cost": 4053, + "sku": null + }, + "128064143": { + "id": 128064143, + "category": "module", + "name": "Int_LifeSupport_Size2_Class1", + "cost": 1448, + "sku": null + }, + "128064138": { + "id": 128064138, + "category": "module", + "name": "Int_LifeSupport_Size1_Class1", + "cost": 517, + "sku": null + }, + "128064112": { + "id": 128064112, + "category": "module", + "name": "Int_Hyperdrive_Size3_Class5", + "cost": 507912, + "sku": null + }, + "128064107": { + "id": 128064107, + "category": "module", + "name": "Int_Hyperdrive_Size2_Class5", + "cost": 160224, + "sku": null + }, + "128064111": { + "id": 128064111, + "category": "module", + "name": "Int_Hyperdrive_Size3_Class4", + "cost": 169304, + "sku": null + }, + "128064106": { + "id": 128064106, + "category": "module", + "name": "Int_Hyperdrive_Size2_Class4", + "cost": 53408, + "sku": null + }, + "128064110": { + "id": 128064110, + "category": "module", + "name": "Int_Hyperdrive_Size3_Class3", + "cost": 56435, + "sku": null + }, + "128064105": { + "id": 128064105, + "category": "module", + "name": "Int_Hyperdrive_Size2_Class3", + "cost": 17803, + "sku": null + }, + "128064109": { + "id": 128064109, + "category": "module", + "name": "Int_Hyperdrive_Size3_Class2", + "cost": 18812, + "sku": null + }, + "128064104": { + "id": 128064104, + "category": "module", + "name": "Int_Hyperdrive_Size2_Class2", + "cost": 5934, + "sku": null + }, + "128064108": { + "id": 128064108, + "category": "module", + "name": "Int_Hyperdrive_Size3_Class1", + "cost": 6271, + "sku": null + }, + "128064103": { + "id": 128064103, + "category": "module", + "name": "Int_Hyperdrive_Size2_Class1", + "cost": 1978, + "sku": null + }, + "128666697": { + "id": 128666697, + "category": "module", + "name": "Int_Refinery_Size2_Class4", + "cost": 340200, + "sku": null + }, + "128666700": { + "id": 128666700, + "category": "module", + "name": "Int_Refinery_Size1_Class5", + "cost": 486000, + "sku": null + }, + "128666693": { + "id": 128666693, + "category": "module", + "name": "Int_Refinery_Size2_Class3", + "cost": 113400, + "sku": null + }, + "128666696": { + "id": 128666696, + "category": "module", + "name": "Int_Refinery_Size1_Class4", + "cost": 162000, + "sku": null + }, + "128666689": { + "id": 128666689, + "category": "module", + "name": "Int_Refinery_Size2_Class2", + "cost": 37800, + "sku": null + }, + "128666692": { + "id": 128666692, + "category": "module", + "name": "Int_Refinery_Size1_Class3", + "cost": 54000, + "sku": null + }, + "128666688": { + "id": 128666688, + "category": "module", + "name": "Int_Refinery_Size1_Class2", + "cost": 18000, + "sku": null + }, + "128666685": { + "id": 128666685, + "category": "module", + "name": "Int_Refinery_Size2_Class1", + "cost": 12600, + "sku": null + }, + "128671244": { + "id": 128671244, + "category": "module", + "name": "Int_DroneControl_Collection_Size7_Class1", + "cost": 437400, + "sku": null + }, + "128671240": { + "id": 128671240, + "category": "module", + "name": "Int_DroneControl_Collection_Size5_Class2", + "cost": 97200, + "sku": null + }, + "128671236": { + "id": 128671236, + "category": "module", + "name": "Int_DroneControl_Collection_Size3_Class3", + "cost": 21600, + "sku": null + }, + "128671231": { + "id": 128671231, + "category": "module", + "name": "Int_DroneControl_Collection_Size1_Class3", + "cost": 2400, + "sku": null + }, + "128671239": { + "id": 128671239, + "category": "module", + "name": "Int_DroneControl_Collection_Size5_Class1", + "cost": 48600, + "sku": null + }, + "128671235": { + "id": 128671235, + "category": "module", + "name": "Int_DroneControl_Collection_Size3_Class2", + "cost": 10800, + "sku": null + }, + "128671230": { + "id": 128671230, + "category": "module", + "name": "Int_DroneControl_Collection_Size1_Class2", + "cost": 1200, + "sku": null + }, + "128671234": { + "id": 128671234, + "category": "module", + "name": "Int_DroneControl_Collection_Size3_Class1", + "cost": 5400, + "sku": null + }, + "128671229": { + "id": 128671229, + "category": "module", + "name": "Int_DroneControl_Collection_Size1_Class1", + "cost": 600, + "sku": null + }, + "128663561": { + "id": 128663561, + "category": "module", + "name": "Int_StellarBodyDiscoveryScanner_Advanced", + "cost": 1545000, + "sku": null + }, + "128663560": { + "id": 128663560, + "category": "module", + "name": "Int_StellarBodyDiscoveryScanner_Intermediate", + "cost": 505000, + "sku": null + }, + "128666634": { + "id": 128666634, + "category": "module", + "name": "Int_DetailedSurfaceScanner_Tiny", + "cost": 250000, + "sku": null + }, + "128064042": { + "id": 128064042, + "category": "module", + "name": "Int_Powerplant_Size3_Class5", + "cost": 507912, + "sku": null + }, + "128064037": { + "id": 128064037, + "category": "module", + "name": "Int_Powerplant_Size2_Class5", + "cost": 160224, + "sku": null + }, + "128064041": { + "id": 128064041, + "category": "module", + "name": "Int_Powerplant_Size3_Class4", + "cost": 169304, + "sku": null + }, + "128064036": { + "id": 128064036, + "category": "module", + "name": "Int_Powerplant_Size2_Class4", + "cost": 53408, + "sku": null + }, + "128064040": { + "id": 128064040, + "category": "module", + "name": "Int_Powerplant_Size3_Class3", + "cost": 56435, + "sku": null + }, + "128064035": { + "id": 128064035, + "category": "module", + "name": "Int_Powerplant_Size2_Class3", + "cost": 17803, + "sku": null + }, + "128064039": { + "id": 128064039, + "category": "module", + "name": "Int_Powerplant_Size3_Class2", + "cost": 18812, + "sku": null + }, + "128064034": { + "id": 128064034, + "category": "module", + "name": "Int_Powerplant_Size2_Class2", + "cost": 5934, + "sku": null + }, + "128064038": { + "id": 128064038, + "category": "module", + "name": "Int_Powerplant_Size3_Class1", + "cost": 6271, + "sku": null + }, + "128064033": { + "id": 128064033, + "category": "module", + "name": "Int_Powerplant_Size2_Class1", + "cost": 1978, + "sku": null + }, + "128064077": { + "id": 128064077, + "category": "module", + "name": "Int_Engine_Size3_Class5", + "cost": 507912, + "sku": null + }, + "128064072": { + "id": 128064072, + "category": "module", + "name": "Int_Engine_Size2_Class5", + "cost": 160224, + "sku": null + }, + "128064076": { + "id": 128064076, + "category": "module", + "name": "Int_Engine_Size3_Class4", + "cost": 169304, + "sku": null + }, + "128064071": { + "id": 128064071, + "category": "module", + "name": "Int_Engine_Size2_Class4", + "cost": 53408, + "sku": null + }, + "128064075": { + "id": 128064075, + "category": "module", + "name": "Int_Engine_Size3_Class3", + "cost": 56435, + "sku": null + }, + "128064070": { + "id": 128064070, + "category": "module", + "name": "Int_Engine_Size2_Class3", + "cost": 17803, + "sku": null + }, + "128064074": { + "id": 128064074, + "category": "module", + "name": "Int_Engine_Size3_Class2", + "cost": 18812, + "sku": null + }, + "128064069": { + "id": 128064069, + "category": "module", + "name": "Int_Engine_Size2_Class2", + "cost": 5934, + "sku": null + }, + "128064073": { + "id": 128064073, + "category": "module", + "name": "Int_Engine_Size3_Class1", + "cost": 6271, + "sku": null + }, + "128064068": { + "id": 128064068, + "category": "module", + "name": "Int_Engine_Size2_Class1", + "cost": 1978, + "sku": null + }, + "128666721": { + "id": 128666721, + "category": "module", + "name": "Int_FSDInterdictor_Size2_Class5", + "cost": 2721600, + "sku": null + }, + "128666717": { + "id": 128666717, + "category": "module", + "name": "Int_FSDInterdictor_Size2_Class4", + "cost": 907200, + "sku": null + }, + "128666713": { + "id": 128666713, + "category": "module", + "name": "Int_FSDInterdictor_Size2_Class3", + "cost": 302400, + "sku": null + }, + "128666716": { + "id": 128666716, + "category": "module", + "name": "Int_FSDInterdictor_Size1_Class4", + "cost": 324000, + "sku": null + }, + "128666712": { + "id": 128666712, + "category": "module", + "name": "Int_FSDInterdictor_Size1_Class3", + "cost": 108000, + "sku": null + }, + "128666709": { + "id": 128666709, + "category": "module", + "name": "Int_FSDInterdictor_Size2_Class2", + "cost": 100800, + "sku": null + }, + "128666708": { + "id": 128666708, + "category": "module", + "name": "Int_FSDInterdictor_Size1_Class2", + "cost": 36000, + "sku": null + }, + "128666705": { + "id": 128666705, + "category": "module", + "name": "Int_FSDInterdictor_Size2_Class1", + "cost": 33600, + "sku": null + }, + "128064097": { + "id": 128064097, + "category": "module", + "name": "Int_Engine_Size7_Class5", + "cost": 51289112, + "sku": null + }, + "128064101": { + "id": 128064101, + "category": "module", + "name": "Int_Engine_Size8_Class4", + "cost": 54195495, + "sku": null + }, + "128064095": { + "id": 128064095, + "category": "module", + "name": "Int_Engine_Size7_Class3", + "cost": 5698790, + "sku": null + }, + "128064099": { + "id": 128064099, + "category": "module", + "name": "Int_Engine_Size8_Class2", + "cost": 6021722, + "sku": null + }, + "128064094": { + "id": 128064094, + "category": "module", + "name": "Int_Engine_Size7_Class2", + "cost": 1899597, + "sku": null + }, + "128064098": { + "id": 128064098, + "category": "module", + "name": "Int_Engine_Size8_Class1", + "cost": 2007241, + "sku": null + }, + "128064093": { + "id": 128064093, + "category": "module", + "name": "Int_Engine_Size7_Class1", + "cost": 633199, + "sku": null + }, + "128671238": { + "id": 128671238, + "category": "module", + "name": "Int_DroneControl_Collection_Size3_Class5", + "cost": 86400, + "sku": null + }, + "128671233": { + "id": 128671233, + "category": "module", + "name": "Int_DroneControl_Collection_Size1_Class5", + "cost": 9600, + "sku": null + }, + "128671247": { + "id": 128671247, + "category": "module", + "name": "Int_DroneControl_Collection_Size7_Class4", + "cost": 3499200, + "sku": null + }, + "128671242": { + "id": 128671242, + "category": "module", + "name": "Int_DroneControl_Collection_Size5_Class4", + "cost": 388800, + "sku": null + }, + "128671246": { + "id": 128671246, + "category": "module", + "name": "Int_DroneControl_Collection_Size7_Class3", + "cost": 1749600, + "sku": null + }, + "128671237": { + "id": 128671237, + "category": "module", + "name": "Int_DroneControl_Collection_Size3_Class4", + "cost": 43200, + "sku": null + }, + "128671245": { + "id": 128671245, + "category": "module", + "name": "Int_DroneControl_Collection_Size7_Class2", + "cost": 874800, + "sku": null + }, + "128671241": { + "id": 128671241, + "category": "module", + "name": "Int_DroneControl_Collection_Size5_Class3", + "cost": 194400, + "sku": null + }, + "128064192": { + "id": 128064192, + "category": "module", + "name": "Int_PowerDistributor_Size3_Class5", + "cost": 158331, + "sku": null + }, + "128064187": { + "id": 128064187, + "category": "module", + "name": "Int_PowerDistributor_Size2_Class5", + "cost": 56547, + "sku": null + }, + "128064182": { + "id": 128064182, + "category": "module", + "name": "Int_PowerDistributor_Size1_Class5", + "cost": 20195, + "sku": null + }, + "128064191": { + "id": 128064191, + "category": "module", + "name": "Int_PowerDistributor_Size3_Class4", + "cost": 63333, + "sku": null + }, + "128064181": { + "id": 128064181, + "category": "module", + "name": "Int_PowerDistributor_Size1_Class4", + "cost": 8078, + "sku": null + }, + "128064186": { + "id": 128064186, + "category": "module", + "name": "Int_PowerDistributor_Size2_Class4", + "cost": 22619, + "sku": null + }, + "128064190": { + "id": 128064190, + "category": "module", + "name": "Int_PowerDistributor_Size3_Class3", + "cost": 25333, + "sku": null + }, + "128064185": { + "id": 128064185, + "category": "module", + "name": "Int_PowerDistributor_Size2_Class3", + "cost": 9048, + "sku": null + }, + "128064180": { + "id": 128064180, + "category": "module", + "name": "Int_PowerDistributor_Size1_Class3", + "cost": 3231, + "sku": null + }, + "128064189": { + "id": 128064189, + "category": "module", + "name": "Int_PowerDistributor_Size3_Class2", + "cost": 10133, + "sku": null + }, + "128064179": { + "id": 128064179, + "category": "module", + "name": "Int_PowerDistributor_Size1_Class2", + "cost": 1293, + "sku": null + }, + "128064184": { + "id": 128064184, + "category": "module", + "name": "Int_PowerDistributor_Size2_Class2", + "cost": 3619, + "sku": null + }, + "128064188": { + "id": 128064188, + "category": "module", + "name": "Int_PowerDistributor_Size3_Class1", + "cost": 4053, + "sku": null + }, + "128064183": { + "id": 128064183, + "category": "module", + "name": "Int_PowerDistributor_Size2_Class1", + "cost": 1448, + "sku": null + }, + "128064178": { + "id": 128064178, + "category": "module", + "name": "Int_PowerDistributor_Size1_Class1", + "cost": 517, + "sku": null + }, + "128064132": { + "id": 128064132, + "category": "module", + "name": "Int_Hyperdrive_Size7_Class5", + "cost": 51289112, + "sku": null + }, + "128064136": { + "id": 128064136, + "category": "module", + "name": "Int_Hyperdrive_Size8_Class4", + "cost": 54195495, + "sku": null + }, + "128064131": { + "id": 128064131, + "category": "module", + "name": "Int_Hyperdrive_Size7_Class4", + "cost": 17096371, + "sku": null + }, + "128064135": { + "id": 128064135, + "category": "module", + "name": "Int_Hyperdrive_Size8_Class3", + "cost": 18065165, + "sku": null + }, + "128064130": { + "id": 128064130, + "category": "module", + "name": "Int_Hyperdrive_Size7_Class3", + "cost": 5698790, + "sku": null + }, + "128064129": { + "id": 128064129, + "category": "module", + "name": "Int_Hyperdrive_Size7_Class2", + "cost": 1899597, + "sku": null + }, + "128064133": { + "id": 128064133, + "category": "module", + "name": "Int_Hyperdrive_Size8_Class1", + "cost": 2007241, + "sku": null + }, + "128064128": { + "id": 128064128, + "category": "module", + "name": "Int_Hyperdrive_Size7_Class1", + "cost": 633199, + "sku": null + }, + "128064272": { + "id": 128064272, + "category": "module", + "name": "Int_ShieldGenerator_Size3_Class5", + "cost": 507912, + "sku": null + }, + "128064267": { + "id": 128064267, + "category": "module", + "name": "Int_ShieldGenerator_Size2_Class5", + "cost": 160224, + "sku": null + }, + "128064271": { + "id": 128064271, + "category": "module", + "name": "Int_ShieldGenerator_Size3_Class4", + "cost": 169304, + "sku": null + }, + "128064266": { + "id": 128064266, + "category": "module", + "name": "Int_ShieldGenerator_Size2_Class4", + "cost": 53408, + "sku": null + }, + "128064270": { + "id": 128064270, + "category": "module", + "name": "Int_ShieldGenerator_Size3_Class3", + "cost": 56435, + "sku": null + }, + "128064265": { + "id": 128064265, + "category": "module", + "name": "Int_ShieldGenerator_Size2_Class3", + "cost": 17803, + "sku": null + }, + "128064269": { + "id": 128064269, + "category": "module", + "name": "Int_ShieldGenerator_Size3_Class2", + "cost": 18812, + "sku": null + }, + "128064264": { + "id": 128064264, + "category": "module", + "name": "Int_ShieldGenerator_Size2_Class2", + "cost": 5934, + "sku": null + }, + "128064268": { + "id": 128064268, + "category": "module", + "name": "Int_ShieldGenerator_Size3_Class1", + "cost": 6271, + "sku": null + }, + "128064292": { + "id": 128064292, + "category": "module", + "name": "Int_ShieldGenerator_Size7_Class5", + "cost": 51289112, + "sku": null + }, + "128064291": { + "id": 128064291, + "category": "module", + "name": "Int_ShieldGenerator_Size7_Class4", + "cost": 17096371, + "sku": null + }, + "128064295": { + "id": 128064295, + "category": "module", + "name": "Int_ShieldGenerator_Size8_Class3", + "cost": 18065165, + "sku": null + }, + "128064290": { + "id": 128064290, + "category": "module", + "name": "Int_ShieldGenerator_Size7_Class3", + "cost": 5698790, + "sku": null + }, + "128064294": { + "id": 128064294, + "category": "module", + "name": "Int_ShieldGenerator_Size8_Class2", + "cost": 6021722, + "sku": null + }, + "128064289": { + "id": 128064289, + "category": "module", + "name": "Int_ShieldGenerator_Size7_Class2", + "cost": 1899597, + "sku": null + }, + "128064293": { + "id": 128064293, + "category": "module", + "name": "Int_ShieldGenerator_Size8_Class1", + "cost": 2007241, + "sku": null + }, + "128064288": { + "id": 128064288, + "category": "module", + "name": "Int_ShieldGenerator_Size7_Class1", + "cost": 633199, + "sku": null + }, + "128064232": { + "id": 128064232, + "category": "module", + "name": "Int_Sensors_Size3_Class5", + "cost": 158331, + "sku": null + }, + "128064227": { + "id": 128064227, + "category": "module", + "name": "Int_Sensors_Size2_Class5", + "cost": 56547, + "sku": null + }, + "128064222": { + "id": 128064222, + "category": "module", + "name": "Int_Sensors_Size1_Class5", + "cost": 20195, + "sku": null + }, + "128064221": { + "id": 128064221, + "category": "module", + "name": "Int_Sensors_Size1_Class4", + "cost": 8078, + "sku": null + }, + "128064230": { + "id": 128064230, + "category": "module", + "name": "Int_Sensors_Size3_Class3", + "cost": 25333, + "sku": null + }, + "128064225": { + "id": 128064225, + "category": "module", + "name": "Int_Sensors_Size2_Class3", + "cost": 9048, + "sku": null + }, + "128064220": { + "id": 128064220, + "category": "module", + "name": "Int_Sensors_Size1_Class3", + "cost": 3231, + "sku": null + }, + "128064229": { + "id": 128064229, + "category": "module", + "name": "Int_Sensors_Size3_Class2", + "cost": 10133, + "sku": null + }, + "128064219": { + "id": 128064219, + "category": "module", + "name": "Int_Sensors_Size1_Class2", + "cost": 1293, + "sku": null + }, + "128064224": { + "id": 128064224, + "category": "module", + "name": "Int_Sensors_Size2_Class2", + "cost": 3619, + "sku": null + }, + "128064228": { + "id": 128064228, + "category": "module", + "name": "Int_Sensors_Size3_Class1", + "cost": 4053, + "sku": null + }, + "128064223": { + "id": 128064223, + "category": "module", + "name": "Int_Sensors_Size2_Class1", + "cost": 1448, + "sku": null + }, + "128064218": { + "id": 128064218, + "category": "module", + "name": "Int_Sensors_Size1_Class1", + "cost": 517, + "sku": null + }, + "128671284": { + "id": 128671284, + "category": "module", + "name": "Int_DroneControl_Prospector_Size7_Class1", + "cost": 437400, + "sku": null + }, + "128671280": { + "id": 128671280, + "category": "module", + "name": "Int_DroneControl_Prospector_Size5_Class2", + "cost": 97200, + "sku": null + }, + "128671276": { + "id": 128671276, + "category": "module", + "name": "Int_DroneControl_Prospector_Size3_Class3", + "cost": 21600, + "sku": null + }, + "128671271": { + "id": 128671271, + "category": "module", + "name": "Int_DroneControl_Prospector_Size1_Class3", + "cost": 2400, + "sku": null + }, + "128671279": { + "id": 128671279, + "category": "module", + "name": "Int_DroneControl_Prospector_Size5_Class1", + "cost": 48600, + "sku": null + }, + "128671275": { + "id": 128671275, + "category": "module", + "name": "Int_DroneControl_Prospector_Size3_Class2", + "cost": 10800, + "sku": null + }, + "128671270": { + "id": 128671270, + "category": "module", + "name": "Int_DroneControl_Prospector_Size1_Class2", + "cost": 1200, + "sku": null + }, + "128671274": { + "id": 128671274, + "category": "module", + "name": "Int_DroneControl_Prospector_Size3_Class1", + "cost": 5400, + "sku": null + }, + "128671269": { + "id": 128671269, + "category": "module", + "name": "Int_DroneControl_Prospector_Size1_Class1", + "cost": 600, + "sku": null + }, + "128064345": { + "id": 128064345, + "category": "module", + "name": "Int_CargoRack_Size8_Class1", + "cost": 3829866, + "sku": null + }, + "128064344": { + "id": 128064344, + "category": "module", + "name": "Int_CargoRack_Size7_Class1", + "cost": 1178420, + "sku": null + }, + "128064343": { + "id": 128064343, + "category": "module", + "name": "Int_CargoRack_Size6_Class1", + "cost": 362591, + "sku": null + }, + "128064342": { + "id": 128064342, + "category": "module", + "name": "Int_CargoRack_Size5_Class1", + "cost": 111566, + "sku": null + }, + "128064341": { + "id": 128064341, + "category": "module", + "name": "Int_CargoRack_Size4_Class1", + "cost": 34328, + "sku": null + }, + "128064340": { + "id": 128064340, + "category": "module", + "name": "Int_CargoRack_Size3_Class1", + "cost": 10563, + "sku": null + }, + "128064339": { + "id": 128064339, + "category": "module", + "name": "Int_CargoRack_Size2_Class1", + "cost": 3250, + "sku": null + }, + "128064247": { + "id": 128064247, + "category": "module", + "name": "Int_Sensors_Size6_Class5", + "cost": 3475688, + "sku": null + }, + "128064237": { + "id": 128064237, + "category": "module", + "name": "Int_Sensors_Size4_Class5", + "cost": 443328, + "sku": null + }, + "128064246": { + "id": 128064246, + "category": "module", + "name": "Int_Sensors_Size6_Class4", + "cost": 1390275, + "sku": null + }, + "128064241": { + "id": 128064241, + "category": "module", + "name": "Int_Sensors_Size5_Class4", + "cost": 496527, + "sku": null + }, + "128064244": { + "id": 128064244, + "category": "module", + "name": "Int_Sensors_Size6_Class2", + "cost": 222444, + "sku": null + }, + "128064240": { + "id": 128064240, + "category": "module", + "name": "Int_Sensors_Size5_Class3", + "cost": 198611, + "sku": null + }, + "128064235": { + "id": 128064235, + "category": "module", + "name": "Int_Sensors_Size4_Class3", + "cost": 70932, + "sku": null + }, + "128064239": { + "id": 128064239, + "category": "module", + "name": "Int_Sensors_Size5_Class2", + "cost": 79444, + "sku": null + }, + "128064243": { + "id": 128064243, + "category": "module", + "name": "Int_Sensors_Size6_Class1", + "cost": 88978, + "sku": null + }, + "128064234": { + "id": 128064234, + "category": "module", + "name": "Int_Sensors_Size4_Class2", + "cost": 28373, + "sku": null + }, + "128064238": { + "id": 128064238, + "category": "module", + "name": "Int_Sensors_Size5_Class1", + "cost": 31778, + "sku": null + }, + "128064233": { + "id": 128064233, + "category": "module", + "name": "Int_Sensors_Size4_Class1", + "cost": 11349, + "sku": null + }, + "128064197": { + "id": 128064197, + "category": "module", + "name": "Int_PowerDistributor_Size4_Class5", + "cost": 443328, + "sku": null + }, + "128064206": { + "id": 128064206, + "category": "module", + "name": "Int_PowerDistributor_Size6_Class4", + "cost": 1390275, + "sku": null + }, + "128064201": { + "id": 128064201, + "category": "module", + "name": "Int_PowerDistributor_Size5_Class4", + "cost": 496527, + "sku": null + }, + "128064196": { + "id": 128064196, + "category": "module", + "name": "Int_PowerDistributor_Size4_Class4", + "cost": 177331, + "sku": null + }, + "128064205": { + "id": 128064205, + "category": "module", + "name": "Int_PowerDistributor_Size6_Class3", + "cost": 556110, + "sku": null + }, + "128064204": { + "id": 128064204, + "category": "module", + "name": "Int_PowerDistributor_Size6_Class2", + "cost": 222444, + "sku": null + }, + "128064200": { + "id": 128064200, + "category": "module", + "name": "Int_PowerDistributor_Size5_Class3", + "cost": 198611, + "sku": null + }, + "128064195": { + "id": 128064195, + "category": "module", + "name": "Int_PowerDistributor_Size4_Class3", + "cost": 70932, + "sku": null + }, + "128064199": { + "id": 128064199, + "category": "module", + "name": "Int_PowerDistributor_Size5_Class2", + "cost": 79444, + "sku": null + }, + "128064203": { + "id": 128064203, + "category": "module", + "name": "Int_PowerDistributor_Size6_Class1", + "cost": 88978, + "sku": null + }, + "128064194": { + "id": 128064194, + "category": "module", + "name": "Int_PowerDistributor_Size4_Class2", + "cost": 28373, + "sku": null + }, + "128064198": { + "id": 128064198, + "category": "module", + "name": "Int_PowerDistributor_Size5_Class1", + "cost": 31778, + "sku": null + }, + "128667605": { + "id": 128667605, + "category": "module", + "name": "Int_Repairer_Size8_Class1", + "cost": 612220, + "sku": null + }, + "128667611": { + "id": 128667611, + "category": "module", + "name": "Int_Repairer_Size6_Class2", + "cost": 566870, + "sku": null + }, + "128667604": { + "id": 128667604, + "category": "module", + "name": "Int_Repairer_Size7_Class1", + "cost": 340122, + "sku": null + }, + "128667610": { + "id": 128667610, + "category": "module", + "name": "Int_Repairer_Size5_Class2", + "cost": 314928, + "sku": null + }, + "128667616": { + "id": 128667616, + "category": "module", + "name": "Int_Repairer_Size3_Class3", + "cost": 291600, + "sku": null + }, + "128667615": { + "id": 128667615, + "category": "module", + "name": "Int_Repairer_Size2_Class3", + "cost": 162000, + "sku": null + }, + "128667622": { + "id": 128667622, + "category": "module", + "name": "Int_Repairer_Size1_Class4", + "cost": 270000, + "sku": null + }, + "128667609": { + "id": 128667609, + "category": "module", + "name": "Int_Repairer_Size4_Class2", + "cost": 174960, + "sku": null + }, + "128667603": { + "id": 128667603, + "category": "module", + "name": "Int_Repairer_Size6_Class1", + "cost": 188957, + "sku": null + }, + "128667602": { + "id": 128667602, + "category": "module", + "name": "Int_Repairer_Size5_Class1", + "cost": 104976, + "sku": null + }, + "128667608": { + "id": 128667608, + "category": "module", + "name": "Int_Repairer_Size3_Class2", + "cost": 97200, + "sku": null + }, + "128668546": { + "id": 128668546, + "category": "module", + "name": "Int_HullReinforcement_Size5_Class2", + "cost": 450000, + "sku": null + }, + "128668542": { + "id": 128668542, + "category": "module", + "name": "Int_HullReinforcement_Size3_Class2", + "cost": 84000, + "sku": null + }, + "128668540": { + "id": 128668540, + "category": "module", + "name": "Int_HullReinforcement_Size2_Class2", + "cost": 36000, + "sku": null + }, + "128666680": { + "id": 128666680, + "category": "module", + "name": "Int_FuelScoop_Size5_Class5", + "cost": 9073694, + "sku": null + }, + "128666665": { + "id": 128666665, + "category": "module", + "name": "Int_FuelScoop_Size6_Class3", + "cost": 1797726, + "sku": null + }, + "128666672": { + "id": 128666672, + "category": "module", + "name": "Int_FuelScoop_Size5_Class4", + "cost": 2268424, + "sku": null + }, + "128666679": { + "id": 128666679, + "category": "module", + "name": "Int_FuelScoop_Size4_Class5", + "cost": 2862364, + "sku": null + }, + "128666671": { + "id": 128666671, + "category": "module", + "name": "Int_FuelScoop_Size4_Class4", + "cost": 715591, + "sku": null + }, + "128666664": { + "id": 128666664, + "category": "module", + "name": "Int_FuelScoop_Size5_Class3", + "cost": 567106, + "sku": null + }, + "128666663": { + "id": 128666663, + "category": "module", + "name": "Int_FuelScoop_Size4_Class3", + "cost": 178898, + "sku": null + }, + "128666657": { + "id": 128666657, + "category": "module", + "name": "Int_FuelScoop_Size6_Class2", + "cost": 449431, + "sku": null + }, + "128666656": { + "id": 128666656, + "category": "module", + "name": "Int_FuelScoop_Size5_Class2", + "cost": 141776, + "sku": null + }, + "128666649": { + "id": 128666649, + "category": "module", + "name": "Int_FuelScoop_Size6_Class1", + "cost": 107864, + "sku": null + }, + "128666655": { + "id": 128666655, + "category": "module", + "name": "Int_FuelScoop_Size4_Class2", + "cost": 44724, + "sku": null + }, + "128668545": { + "id": 128668545, + "category": "module", + "name": "Int_HullReinforcement_Size5_Class1", + "cost": 150000, + "sku": null + }, + "128668543": { + "id": 128668543, + "category": "module", + "name": "Int_HullReinforcement_Size4_Class1", + "cost": 65000, + "sku": null + }, + "128668541": { + "id": 128668541, + "category": "module", + "name": "Int_HullReinforcement_Size3_Class1", + "cost": 28000, + "sku": null + }, + "128668539": { + "id": 128668539, + "category": "module", + "name": "Int_HullReinforcement_Size2_Class1", + "cost": 12000, + "sku": null + }, + "128668537": { + "id": 128668537, + "category": "module", + "name": "Int_HullReinforcement_Size1_Class1", + "cost": 5000, + "sku": null + }, + "128064327": { + "id": 128064327, + "category": "module", + "name": "Int_ShieldCellBank_Size6_Class5", + "cost": 3475688, + "sku": null + }, + "128064317": { + "id": 128064317, + "category": "module", + "name": "Int_ShieldCellBank_Size4_Class5", + "cost": 443328, + "sku": null + }, + "128064326": { + "id": 128064326, + "category": "module", + "name": "Int_ShieldCellBank_Size6_Class4", + "cost": 1390275, + "sku": null + }, + "128064321": { + "id": 128064321, + "category": "module", + "name": "Int_ShieldCellBank_Size5_Class4", + "cost": 496527, + "sku": null + }, + "128064316": { + "id": 128064316, + "category": "module", + "name": "Int_ShieldCellBank_Size4_Class4", + "cost": 177331, + "sku": null + }, + "128064324": { + "id": 128064324, + "category": "module", + "name": "Int_ShieldCellBank_Size6_Class2", + "cost": 222444, + "sku": null + }, + "128064320": { + "id": 128064320, + "category": "module", + "name": "Int_ShieldCellBank_Size5_Class3", + "cost": 198611, + "sku": null + }, + "128064315": { + "id": 128064315, + "category": "module", + "name": "Int_ShieldCellBank_Size4_Class3", + "cost": 70932, + "sku": null + }, + "128064319": { + "id": 128064319, + "category": "module", + "name": "Int_ShieldCellBank_Size5_Class2", + "cost": 79444, + "sku": null + }, + "128064323": { + "id": 128064323, + "category": "module", + "name": "Int_ShieldCellBank_Size6_Class1", + "cost": 88978, + "sku": null + }, + "128668536": { + "id": 128668536, + "category": "module", + "name": "Hpt_ShieldBooster_Size0_Class5", + "cost": 281000, + "sku": null + }, + "128668535": { + "id": 128668535, + "category": "module", + "name": "Hpt_ShieldBooster_Size0_Class4", + "cost": 122000, + "sku": null + }, + "128668534": { + "id": 128668534, + "category": "module", + "name": "Hpt_ShieldBooster_Size0_Class3", + "cost": 53000, + "sku": null + }, + "128668533": { + "id": 128668533, + "category": "module", + "name": "Hpt_ShieldBooster_Size0_Class2", + "cost": 23000, + "sku": null + }, + "128668532": { + "id": 128668532, + "category": "module", + "name": "Hpt_ShieldBooster_Size0_Class1", + "cost": 10000, + "sku": null + }, + "128064177": { + "id": 128064177, + "category": "module", + "name": "Int_LifeSupport_Size8_Class5", + "cost": 27249391, + "sku": null + }, + "128064175": { + "id": 128064175, + "category": "module", + "name": "Int_LifeSupport_Size8_Class3", + "cost": 4359903, + "sku": null + }, + "128064170": { + "id": 128064170, + "category": "module", + "name": "Int_LifeSupport_Size7_Class3", + "cost": 1557108, + "sku": null + }, + "128064174": { + "id": 128064174, + "category": "module", + "name": "Int_LifeSupport_Size8_Class2", + "cost": 1743961, + "sku": null + }, + "128064169": { + "id": 128064169, + "category": "module", + "name": "Int_LifeSupport_Size7_Class2", + "cost": 622843, + "sku": null + }, + "128064173": { + "id": 128064173, + "category": "module", + "name": "Int_LifeSupport_Size8_Class1", + "cost": 697584, + "sku": null + }, + "128064168": { + "id": 128064168, + "category": "module", + "name": "Int_LifeSupport_Size7_Class1", + "cost": 249137, + "sku": null + }, + "128064067": { + "id": 128064067, + "category": "module", + "name": "Int_Powerplant_Size8_Class5", + "cost": 162586486, + "sku": null + }, + "128064062": { + "id": 128064062, + "category": "module", + "name": "Int_Powerplant_Size7_Class5", + "cost": 51289112, + "sku": null + }, + "128064066": { + "id": 128064066, + "category": "module", + "name": "Int_Powerplant_Size8_Class4", + "cost": 54195495, + "sku": null + }, + "128064065": { + "id": 128064065, + "category": "module", + "name": "Int_Powerplant_Size8_Class3", + "cost": 18065165, + "sku": null + }, + "128064060": { + "id": 128064060, + "category": "module", + "name": "Int_Powerplant_Size7_Class3", + "cost": 5698790, + "sku": null + }, + "128064064": { + "id": 128064064, + "category": "module", + "name": "Int_Powerplant_Size8_Class2", + "cost": 6021722, + "sku": null + }, + "128064059": { + "id": 128064059, + "category": "module", + "name": "Int_Powerplant_Size7_Class2", + "cost": 1899597, + "sku": null + }, + "128064063": { + "id": 128064063, + "category": "module", + "name": "Int_Powerplant_Size8_Class1", + "cost": 2007241, + "sku": null + }, + "128064058": { + "id": 128064058, + "category": "module", + "name": "Int_Powerplant_Size7_Class1", + "cost": 633199, + "sku": null + }, + "128064167": { + "id": 128064167, + "category": "module", + "name": "Int_LifeSupport_Size6_Class5", + "cost": 3475688, + "sku": null + }, + "128064162": { + "id": 128064162, + "category": "module", + "name": "Int_LifeSupport_Size5_Class5", + "cost": 1241317, + "sku": null + }, + "128064157": { + "id": 128064157, + "category": "module", + "name": "Int_LifeSupport_Size4_Class5", + "cost": 443328, + "sku": null + }, + "128064156": { + "id": 128064156, + "category": "module", + "name": "Int_LifeSupport_Size4_Class4", + "cost": 177331, + "sku": null + }, + "128064165": { + "id": 128064165, + "category": "module", + "name": "Int_LifeSupport_Size6_Class3", + "cost": 556110, + "sku": null + }, + "128064164": { + "id": 128064164, + "category": "module", + "name": "Int_LifeSupport_Size6_Class2", + "cost": 222444, + "sku": null + }, + "128064160": { + "id": 128064160, + "category": "module", + "name": "Int_LifeSupport_Size5_Class3", + "cost": 198611, + "sku": null + }, + "128064155": { + "id": 128064155, + "category": "module", + "name": "Int_LifeSupport_Size4_Class3", + "cost": 70932, + "sku": null + }, + "128064057": { + "id": 128064057, + "category": "module", + "name": "Int_Powerplant_Size6_Class5", + "cost": 16179531, + "sku": null + }, + "128064052": { + "id": 128064052, + "category": "module", + "name": "Int_Powerplant_Size5_Class5", + "cost": 5103953, + "sku": null + }, + "128064047": { + "id": 128064047, + "category": "module", + "name": "Int_Powerplant_Size4_Class5", + "cost": 1610080, + "sku": null + }, + "128064056": { + "id": 128064056, + "category": "module", + "name": "Int_Powerplant_Size6_Class4", + "cost": 5393177, + "sku": null + }, + "128064051": { + "id": 128064051, + "category": "module", + "name": "Int_Powerplant_Size5_Class4", + "cost": 1701318, + "sku": null + }, + "128064046": { + "id": 128064046, + "category": "module", + "name": "Int_Powerplant_Size4_Class4", + "cost": 536693, + "sku": null + }, + "128064055": { + "id": 128064055, + "category": "module", + "name": "Int_Powerplant_Size6_Class3", + "cost": 1797726, + "sku": null + }, + "128064087": { + "id": 128064087, + "category": "module", + "name": "Int_Engine_Size5_Class5", + "cost": 5103953, + "sku": null + }, + "128064082": { + "id": 128064082, + "category": "module", + "name": "Int_Engine_Size4_Class5", + "cost": 1610080, + "sku": null + }, + "128064091": { + "id": 128064091, + "category": "module", + "name": "Int_Engine_Size6_Class4", + "cost": 5393177, + "sku": null + }, + "128064086": { + "id": 128064086, + "category": "module", + "name": "Int_Engine_Size5_Class4", + "cost": 1701318, + "sku": null + }, + "128064090": { + "id": 128064090, + "category": "module", + "name": "Int_Engine_Size6_Class3", + "cost": 1797726, + "sku": null + }, + "128064085": { + "id": 128064085, + "category": "module", + "name": "Int_Engine_Size5_Class3", + "cost": 567106, + "sku": null + }, + "128064080": { + "id": 128064080, + "category": "module", + "name": "Int_Engine_Size4_Class3", + "cost": 178898, + "sku": null + }, + "128064127": { + "id": 128064127, + "category": "module", + "name": "Int_Hyperdrive_Size6_Class5", + "cost": 16179531, + "sku": null + }, + "128064117": { + "id": 128064117, + "category": "module", + "name": "Int_Hyperdrive_Size4_Class5", + "cost": 1610080, + "sku": null + }, + "128064126": { + "id": 128064126, + "category": "module", + "name": "Int_Hyperdrive_Size6_Class4", + "cost": 5393177, + "sku": null + }, + "128064121": { + "id": 128064121, + "category": "module", + "name": "Int_Hyperdrive_Size5_Class4", + "cost": 1701318, + "sku": null + }, + "128064116": { + "id": 128064116, + "category": "module", + "name": "Int_Hyperdrive_Size4_Class4", + "cost": 536693, + "sku": null + }, + "128064125": { + "id": 128064125, + "category": "module", + "name": "Int_Hyperdrive_Size6_Class3", + "cost": 1797726, + "sku": null + }, + "128064287": { + "id": 128064287, + "category": "module", + "name": "Int_ShieldGenerator_Size6_Class5", + "cost": 16179531, + "sku": null + }, + "128064277": { + "id": 128064277, + "category": "module", + "name": "Int_ShieldGenerator_Size4_Class5", + "cost": 1610080, + "sku": null + }, + "128064281": { + "id": 128064281, + "category": "module", + "name": "Int_ShieldGenerator_Size5_Class4", + "cost": 1701318, + "sku": null + }, + "128064285": { + "id": 128064285, + "category": "module", + "name": "Int_ShieldGenerator_Size6_Class3", + "cost": 1797726, + "sku": null + }, + "128064284": { + "id": 128064284, + "category": "module", + "name": "Int_ShieldGenerator_Size6_Class2", + "cost": 599242, + "sku": null + }, + "128064280": { + "id": 128064280, + "category": "module", + "name": "Int_ShieldGenerator_Size5_Class3", + "cost": 567106, + "sku": null + }, + "128064257": { + "id": 128064257, + "category": "module", + "name": "Int_Sensors_Size8_Class5", + "cost": 27249391, + "sku": null + }, + "128064256": { + "id": 128064256, + "category": "module", + "name": "Int_Sensors_Size8_Class4", + "cost": 10899756, + "sku": null + }, + "128064251": { + "id": 128064251, + "category": "module", + "name": "Int_Sensors_Size7_Class4", + "cost": 3892770, + "sku": null + }, + "128064255": { + "id": 128064255, + "category": "module", + "name": "Int_Sensors_Size8_Class3", + "cost": 4359903, + "sku": null + }, + "128064254": { + "id": 128064254, + "category": "module", + "name": "Int_Sensors_Size8_Class2", + "cost": 1743961, + "sku": null + }, + "128671268": { + "id": 128671268, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size7_Class5", + "cost": 6998400, + "sku": null + }, + "128671263": { + "id": 128671263, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size5_Class5", + "cost": 777600, + "sku": null + }, + "128671258": { + "id": 128671258, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size3_Class5", + "cost": 86400, + "sku": null + }, + "128671267": { + "id": 128671267, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size7_Class4", + "cost": 3499200, + "sku": null + }, + "128671262": { + "id": 128671262, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size5_Class4", + "cost": 388800, + "sku": null + }, + "128064353": { + "id": 128064353, + "category": "module", + "name": "Int_FuelTank_Size8_Class3", + "cost": 5428429, + "sku": null + }, + "128064352": { + "id": 128064352, + "category": "module", + "name": "Int_FuelTank_Size7_Class3", + "cost": 1780914, + "sku": null + }, + "128064351": { + "id": 128064351, + "category": "module", + "name": "Int_FuelTank_Size6_Class3", + "cost": 341577, + "sku": null + }, + "128064350": { + "id": 128064350, + "category": "module", + "name": "Int_FuelTank_Size5_Class3", + "cost": 97754, + "sku": null + }, + "128671283": { + "id": 128671283, + "category": "module", + "name": "Int_DroneControl_Prospector_Size5_Class5", + "cost": 777600, + "sku": null + }, + "128671273": { + "id": 128671273, + "category": "module", + "name": "Int_DroneControl_Prospector_Size1_Class5", + "cost": 9600, + "sku": null + }, + "128671287": { + "id": 128671287, + "category": "module", + "name": "Int_DroneControl_Prospector_Size7_Class4", + "cost": 3499200, + "sku": null + }, + "128666678": { + "id": 128666678, + "category": "module", + "name": "Int_FuelScoop_Size3_Class5", + "cost": 902954, + "sku": null + }, + "128666677": { + "id": 128666677, + "category": "module", + "name": "Int_FuelScoop_Size2_Class5", + "cost": 284844, + "sku": null + }, + "128666670": { + "id": 128666670, + "category": "module", + "name": "Int_FuelScoop_Size3_Class4", + "cost": 225738, + "sku": null + }, + "128671252": { + "id": 128671252, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size1_Class4", + "cost": 4800, + "sku": null + }, + "128671264": { + "id": 128671264, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size7_Class1", + "cost": 437400, + "sku": null + }, + "128049264": { + "id": 128049264, + "category": "module", + "name": "Hauler_Armour_Grade3", + "cost": 185047, + "sku": null + }, + "128049263": { + "id": 128049263, + "category": "module", + "name": "Hauler_Armour_Grade2", + "cost": 42176, + "sku": null + }, + "128049262": { + "id": 128049262, + "category": "module", + "name": "Hauler_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049265": { + "id": 128049265, + "category": "module", + "name": "Hauler_Armour_Mirrored", + "cost": 270295, + "sku": null + }, + "128049266": { + "id": 128049266, + "category": "module", + "name": "Hauler_Armour_Reactive", + "cost": 282421, + "sku": null + }, + "128049258": { + "id": 128049258, + "category": "module", + "name": "Eagle_Armour_Grade3", + "cost": 90048, + "sku": null + }, + "128049257": { + "id": 128049257, + "category": "module", + "name": "Eagle_Armour_Grade2", + "cost": 26880, + "sku": null + }, + "128049256": { + "id": 128049256, + "category": "module", + "name": "Eagle_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049259": { + "id": 128049259, + "category": "module", + "name": "Eagle_Armour_Mirrored", + "cost": 140089, + "sku": null + }, + "128049260": { + "id": 128049260, + "category": "module", + "name": "Eagle_Armour_Reactive", + "cost": 150393, + "sku": null + }, + "128666701": { + "id": 128666701, + "category": "module", + "name": "Int_Refinery_Size2_Class5", + "cost": 1020600, + "sku": null + }, + "128666676": { + "id": 128666676, + "category": "module", + "name": "Int_FuelScoop_Size1_Class5", + "cost": 82270, + "sku": null + }, + "128666662": { + "id": 128666662, + "category": "module", + "name": "Int_FuelScoop_Size3_Class3", + "cost": 56435, + "sku": null + }, + "128666669": { + "id": 128666669, + "category": "module", + "name": "Int_FuelScoop_Size2_Class4", + "cost": 71211, + "sku": null + }, + "128666661": { + "id": 128666661, + "category": "module", + "name": "Int_FuelScoop_Size2_Class3", + "cost": 17803, + "sku": null + }, + "128666654": { + "id": 128666654, + "category": "module", + "name": "Int_FuelScoop_Size3_Class2", + "cost": 14109, + "sku": null + }, + "128666660": { + "id": 128666660, + "category": "module", + "name": "Int_FuelScoop_Size1_Class3", + "cost": 5142, + "sku": null + }, + "128666653": { + "id": 128666653, + "category": "module", + "name": "Int_FuelScoop_Size2_Class2", + "cost": 4451, + "sku": null + }, + "128666646": { + "id": 128666646, + "category": "module", + "name": "Int_FuelScoop_Size3_Class1", + "cost": 3386, + "sku": null + }, + "128666652": { + "id": 128666652, + "category": "module", + "name": "Int_FuelScoop_Size1_Class2", + "cost": 1285, + "sku": null + }, + "128064216": { + "id": 128064216, + "category": "module", + "name": "Int_PowerDistributor_Size8_Class4", + "cost": 10899756, + "sku": null + }, + "128064211": { + "id": 128064211, + "category": "module", + "name": "Int_PowerDistributor_Size7_Class4", + "cost": 3892770, + "sku": null + }, + "128064215": { + "id": 128064215, + "category": "module", + "name": "Int_PowerDistributor_Size8_Class3", + "cost": 4359903, + "sku": null + }, + "128064210": { + "id": 128064210, + "category": "module", + "name": "Int_PowerDistributor_Size7_Class3", + "cost": 1557108, + "sku": null + }, + "128064209": { + "id": 128064209, + "category": "module", + "name": "Int_PowerDistributor_Size7_Class2", + "cost": 622843, + "sku": null + }, + "128064213": { + "id": 128064213, + "category": "module", + "name": "Int_PowerDistributor_Size8_Class1", + "cost": 697584, + "sku": null + }, + "128064208": { + "id": 128064208, + "category": "module", + "name": "Int_PowerDistributor_Size7_Class1", + "cost": 249137, + "sku": null + }, + "128671260": { + "id": 128671260, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size5_Class2", + "cost": 97200, + "sku": null + }, + "128671256": { + "id": 128671256, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size3_Class3", + "cost": 21600, + "sku": null + }, + "128671251": { + "id": 128671251, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size1_Class3", + "cost": 2400, + "sku": null + }, + "128671259": { + "id": 128671259, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size5_Class1", + "cost": 48600, + "sku": null + }, + "128671255": { + "id": 128671255, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size3_Class2", + "cost": 10800, + "sku": null + }, + "128671250": { + "id": 128671250, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size1_Class2", + "cost": 1200, + "sku": null + }, + "128671254": { + "id": 128671254, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size3_Class1", + "cost": 5400, + "sku": null + }, + "128671249": { + "id": 128671249, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size1_Class1", + "cost": 600, + "sku": null + }, + "128066541": { + "id": 128066541, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size3_Class5", + "cost": 86400, + "sku": null + }, + "128066540": { + "id": 128066540, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size3_Class4", + "cost": 43200, + "sku": null + }, + "128066535": { + "id": 128066535, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size1_Class4", + "cost": 4800, + "sku": null + }, + "128066539": { + "id": 128066539, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size3_Class3", + "cost": 21600, + "sku": null + }, + "128066534": { + "id": 128066534, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size1_Class3", + "cost": 2400, + "sku": null + }, + "128066538": { + "id": 128066538, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size3_Class2", + "cost": 10800, + "sku": null + }, + "128066533": { + "id": 128066533, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size1_Class2", + "cost": 1200, + "sku": null + }, + "128066537": { + "id": 128066537, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size3_Class1", + "cost": 5400, + "sku": null + }, + "128666718": { + "id": 128666718, + "category": "module", + "name": "Int_FSDInterdictor_Size3_Class4", + "cost": 2540160, + "sku": null + }, + "128666714": { + "id": 128666714, + "category": "module", + "name": "Int_FSDInterdictor_Size3_Class3", + "cost": 846720, + "sku": null + }, + "128666711": { + "id": 128666711, + "category": "module", + "name": "Int_FSDInterdictor_Size4_Class2", + "cost": 790272, + "sku": null + }, + "128666707": { + "id": 128666707, + "category": "module", + "name": "Int_FSDInterdictor_Size4_Class1", + "cost": 263424, + "sku": null + }, + "128666710": { + "id": 128666710, + "category": "module", + "name": "Int_FSDInterdictor_Size3_Class2", + "cost": 282240, + "sku": null + }, + "128666706": { + "id": 128666706, + "category": "module", + "name": "Int_FSDInterdictor_Size3_Class1", + "cost": 94080, + "sku": null + }, + "128671253": { + "id": 128671253, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size1_Class5", + "cost": 9600, + "sku": null + }, + "128671266": { + "id": 128671266, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size7_Class3", + "cost": 1749600, + "sku": null + }, + "128671265": { + "id": 128671265, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size7_Class2", + "cost": 874800, + "sku": null + }, + "128671261": { + "id": 128671261, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size5_Class3", + "cost": 194400, + "sku": null + }, + "128064331": { + "id": 128064331, + "category": "module", + "name": "Int_ShieldCellBank_Size7_Class4", + "cost": 3892770, + "sku": null + }, + "128064335": { + "id": 128064335, + "category": "module", + "name": "Int_ShieldCellBank_Size8_Class3", + "cost": 4359903, + "sku": null + }, + "128064330": { + "id": 128064330, + "category": "module", + "name": "Int_ShieldCellBank_Size7_Class3", + "cost": 1557108, + "sku": null + }, + "128064334": { + "id": 128064334, + "category": "module", + "name": "Int_ShieldCellBank_Size8_Class2", + "cost": 1743961, + "sku": null + }, + "128064333": { + "id": 128064333, + "category": "module", + "name": "Int_ShieldCellBank_Size8_Class1", + "cost": 697584, + "sku": null + }, + "128064328": { + "id": 128064328, + "category": "module", + "name": "Int_ShieldCellBank_Size7_Class1", + "cost": 249137, + "sku": null + }, + "128064151": { + "id": 128064151, + "category": "module", + "name": "Int_LifeSupport_Size3_Class4", + "cost": 63333, + "sku": null + }, + "128064146": { + "id": 128064146, + "category": "module", + "name": "Int_LifeSupport_Size2_Class4", + "cost": 22619, + "sku": null + }, + "128064297": { + "id": 128064297, + "category": "module", + "name": "Int_ShieldGenerator_Size8_Class5", + "cost": 162586486, + "sku": null + }, + "128064296": { + "id": 128064296, + "category": "module", + "name": "Int_ShieldGenerator_Size8_Class4", + "cost": 54195495, + "sku": null + }, + "128064242": { + "id": 128064242, + "category": "module", + "name": "Int_Sensors_Size5_Class5", + "cost": 1241317, + "sku": null + }, + "128064236": { + "id": 128064236, + "category": "module", + "name": "Int_Sensors_Size4_Class4", + "cost": 177331, + "sku": null + }, + "128064245": { + "id": 128064245, + "category": "module", + "name": "Int_Sensors_Size6_Class3", + "cost": 556110, + "sku": null + }, + "128666681": { + "id": 128666681, + "category": "module", + "name": "Int_FuelScoop_Size6_Class5", + "cost": 28763610, + "sku": null + }, + "128666673": { + "id": 128666673, + "category": "module", + "name": "Int_FuelScoop_Size6_Class4", + "cost": 7190903, + "sku": null + }, + "128666648": { + "id": 128666648, + "category": "module", + "name": "Int_FuelScoop_Size5_Class1", + "cost": 34026, + "sku": null + }, + "128666647": { + "id": 128666647, + "category": "module", + "name": "Int_FuelScoop_Size4_Class1", + "cost": 10734, + "sku": null + }, + "128064166": { + "id": 128064166, + "category": "module", + "name": "Int_LifeSupport_Size6_Class4", + "cost": 1390275, + "sku": null + }, + "128064161": { + "id": 128064161, + "category": "module", + "name": "Int_LifeSupport_Size5_Class4", + "cost": 496527, + "sku": null + }, + "128064163": { + "id": 128064163, + "category": "module", + "name": "Int_LifeSupport_Size6_Class1", + "cost": 88978, + "sku": null + }, + "128064159": { + "id": 128064159, + "category": "module", + "name": "Int_LifeSupport_Size5_Class2", + "cost": 79444, + "sku": null + }, + "128064092": { + "id": 128064092, + "category": "module", + "name": "Int_Engine_Size6_Class5", + "cost": 16179531, + "sku": null + }, + "128064081": { + "id": 128064081, + "category": "module", + "name": "Int_Engine_Size4_Class4", + "cost": 536693, + "sku": null + }, + "128064089": { + "id": 128064089, + "category": "module", + "name": "Int_Engine_Size6_Class2", + "cost": 599242, + "sku": null + }, + "128064088": { + "id": 128064088, + "category": "module", + "name": "Int_Engine_Size6_Class1", + "cost": 199747, + "sku": null + }, + "128064286": { + "id": 128064286, + "category": "module", + "name": "Int_ShieldGenerator_Size6_Class4", + "cost": 5393177, + "sku": null + }, + "128064276": { + "id": 128064276, + "category": "module", + "name": "Int_ShieldGenerator_Size4_Class4", + "cost": 536693, + "sku": null + }, + "128064275": { + "id": 128064275, + "category": "module", + "name": "Int_ShieldGenerator_Size4_Class3", + "cost": 178898, + "sku": null + }, + "128064252": { + "id": 128064252, + "category": "module", + "name": "Int_Sensors_Size7_Class5", + "cost": 9731925, + "sku": null + }, + "128064250": { + "id": 128064250, + "category": "module", + "name": "Int_Sensors_Size7_Class3", + "cost": 1557108, + "sku": null + }, + "128064253": { + "id": 128064253, + "category": "module", + "name": "Int_Sensors_Size8_Class1", + "cost": 697584, + "sku": null + }, + "128671272": { + "id": 128671272, + "category": "module", + "name": "Int_DroneControl_Prospector_Size1_Class4", + "cost": 4800, + "sku": null + }, + "128064120": { + "id": 128064120, + "category": "module", + "name": "Int_Hyperdrive_Size5_Class3", + "cost": 567106, + "sku": null + }, + "128667727": { + "id": 128667727, + "category": "paintjob", + "name": "paintjob_CobraMkiii_Default_52", + "cost": 0, + "sku": null + }, + "128667729": { + "id": 128667729, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Faction1_01", + "cost": 0, + "sku": null + }, + "128667730": { + "id": 128667730, + "category": "paintjob", + "name": "PaintJob_Eagle_Faction1_01", + "cost": 0, + "sku": null + }, + "128667731": { + "id": 128667731, + "category": "paintjob", + "name": "PaintJob_FedDropship_Faction1_01", + "cost": 0, + "sku": null + }, + "128667732": { + "id": 128667732, + "category": "paintjob", + "name": "PaintJob_SideWinder_Faction1_01", + "cost": 0, + "sku": null + }, + "128667733": { + "id": 128667733, + "category": "paintjob", + "name": "PaintJob_Viper_Faction1_01", + "cost": 0, + "sku": null + }, + "128667734": { + "id": 128667734, + "category": "paintjob", + "name": "PaintJob_Python_Faction1_01", + "cost": 0, + "sku": null + }, + "128066428": { + "id": 128066428, + "category": "paintjob", + "name": "paintjob_cobramkiii_wireframe_01", + "cost": 0, + "sku": null + }, + "128667638": { + "id": 128667638, + "category": "paintjob", + "name": "PaintJob_Sidewinder_Merc", + "cost": 0, + "sku": null + }, + "128667639": { + "id": 128667639, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Merc", + "cost": 0, + "sku": null + }, + "128066405": { + "id": 128066405, + "category": "paintjob", + "name": "paintjob_eagle_stripe1_02", + "cost": 0, + "sku": null + }, + "128066406": { + "id": 128066406, + "category": "paintjob", + "name": "paintjob_eagle_doublestripe_01", + "cost": 0, + "sku": null + }, + "128066416": { + "id": 128066416, + "category": "paintjob", + "name": "paintjob_eagle_thirds_01", + "cost": 0, + "sku": null + }, + "128066419": { + "id": 128066419, + "category": "paintjob", + "name": "paintjob_eagle_stripe1_03", + "cost": 0, + "sku": null + }, + "128668019": { + "id": 128668019, + "category": "paintjob", + "name": "PaintJob_Eagle_Crimson", + "cost": 0, + "sku": null + }, + "128066420": { + "id": 128066420, + "category": "paintjob", + "name": "paintjob_eagle_thirds_02", + "cost": 0, + "sku": null + }, + "128066430": { + "id": 128066430, + "category": "paintjob", + "name": "paintjob_eagle_stripe1_01", + "cost": 0, + "sku": null + }, + "128066436": { + "id": 128066436, + "category": "paintjob", + "name": "paintjob_eagle_camo_03", + "cost": 0, + "sku": null + }, + "128066437": { + "id": 128066437, + "category": "paintjob", + "name": "paintjob_eagle_thirds_03", + "cost": 0, + "sku": null + }, + "128066441": { + "id": 128066441, + "category": "paintjob", + "name": "paintjob_eagle_camo_02", + "cost": 0, + "sku": null + }, + "128066449": { + "id": 128066449, + "category": "paintjob", + "name": "paintjob_eagle_doublestripe_02", + "cost": 0, + "sku": null + }, + "128066453": { + "id": 128066453, + "category": "paintjob", + "name": "paintjob_eagle_doublestripe_03", + "cost": 0, + "sku": null + }, + "128066456": { + "id": 128066456, + "category": "paintjob", + "name": "paintjob_eagle_camo_01", + "cost": 0, + "sku": null + }, + "128066404": { + "id": 128066404, + "category": "paintjob", + "name": "paintjob_sidewinder_default_02", + "cost": 0, + "sku": null + }, + "128066408": { + "id": 128066408, + "category": "paintjob", + "name": "paintjob_sidewinder_default_03", + "cost": 0, + "sku": null + }, + "128066414": { + "id": 128066414, + "category": "paintjob", + "name": "paintjob_sidewinder_doublestripe_08", + "cost": 0, + "sku": null + }, + "128066423": { + "id": 128066423, + "category": "paintjob", + "name": "paintjob_sidewinder_doublestripe_05", + "cost": 0, + "sku": null + }, + "128066431": { + "id": 128066431, + "category": "paintjob", + "name": "paintjob_sidewinder_thirds_07", + "cost": 0, + "sku": null + }, + "128066432": { + "id": 128066432, + "category": "paintjob", + "name": "paintjob_sidewinder_thirds_01", + "cost": 0, + "sku": null + }, + "128066433": { + "id": 128066433, + "category": "paintjob", + "name": "paintjob_sidewinder_doublestripe_07", + "cost": 0, + "sku": null + }, + "128066440": { + "id": 128066440, + "category": "paintjob", + "name": "paintjob_sidewinder_camo_01", + "cost": 0, + "sku": null + }, + "128066444": { + "id": 128066444, + "category": "paintjob", + "name": "paintjob_sidewinder_thirds_06", + "cost": 0, + "sku": null + }, + "128066447": { + "id": 128066447, + "category": "paintjob", + "name": "paintjob_sidewinder_camo_03", + "cost": 0, + "sku": null + }, + "128066448": { + "id": 128066448, + "category": "paintjob", + "name": "paintjob_sidewinder_default_04", + "cost": 0, + "sku": null + }, + "128066454": { + "id": 128066454, + "category": "paintjob", + "name": "paintjob_sidewinder_camo_02", + "cost": 0, + "sku": null + }, + "128667667": { + "id": 128667667, + "category": "paintjob", + "name": "PaintJob_Viper_Merc", + "cost": 0, + "sku": null + }, + "128666726": { + "id": 128666726, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Camo1_02", + "cost": 0, + "sku": null + }, + "128066407": { + "id": 128066407, + "category": "paintjob", + "name": "paintjob_viper_flag_switzerland_01", + "cost": 0, + "sku": null + }, + "128666727": { + "id": 128666727, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Camo2_03", + "cost": 0, + "sku": null + }, + "128666728": { + "id": 128666728, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Stripe1_02", + "cost": 0, + "sku": null + }, + "128066409": { + "id": 128066409, + "category": "paintjob", + "name": "paintjob_viper_flag_belgium_01", + "cost": 0, + "sku": null + }, + "128666729": { + "id": 128666729, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Stripe1_03", + "cost": 0, + "sku": null + }, + "128066410": { + "id": 128066410, + "category": "paintjob", + "name": "paintjob_viper_flag_australia_01", + "cost": 0, + "sku": null + }, + "128666730": { + "id": 128666730, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Stripe2_02", + "cost": 0, + "sku": null + }, + "128066411": { + "id": 128066411, + "category": "paintjob", + "name": "paintjob_viper_default_01", + "cost": 0, + "sku": null + }, + "128666731": { + "id": 128666731, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Stripe2_03", + "cost": 0, + "sku": null + }, + "128066412": { + "id": 128066412, + "category": "paintjob", + "name": "paintjob_viper_stripe2_02", + "cost": 0, + "sku": null + }, + "128666732": { + "id": 128666732, + "category": "paintjob", + "name": "PaintJob_Hauler_Doublestripe_01", + "cost": 0, + "sku": null + }, + "128066413": { + "id": 128066413, + "category": "paintjob", + "name": "paintjob_viper_flag_austria_01", + "cost": 0, + "sku": null + }, + "128666733": { + "id": 128666733, + "category": "paintjob", + "name": "PaintJob_Hauler_Doublestripe_02", + "cost": 0, + "sku": null + }, + "128666734": { + "id": 128666734, + "category": "paintjob", + "name": "PaintJob_Hauler_Doublestripe_03", + "cost": 0, + "sku": null + }, + "128066415": { + "id": 128066415, + "category": "paintjob", + "name": "paintjob_viper_stripe1_01", + "cost": 0, + "sku": null + }, + "128666735": { + "id": 128666735, + "category": "paintjob", + "name": "PaintJob_Hauler_Stripe1_01", + "cost": 0, + "sku": null + }, + "128666736": { + "id": 128666736, + "category": "paintjob", + "name": "PaintJob_Hauler_Stripe1_02", + "cost": 0, + "sku": null + }, + "128066417": { + "id": 128066417, + "category": "paintjob", + "name": "paintjob_viper_flag_spain_01", + "cost": 0, + "sku": null + }, + "128666737": { + "id": 128666737, + "category": "paintjob", + "name": "PaintJob_Hauler_Stripe1_03", + "cost": 0, + "sku": null + }, + "128066418": { + "id": 128066418, + "category": "paintjob", + "name": "paintjob_viper_stripe1_02", + "cost": 0, + "sku": null + }, + "128666738": { + "id": 128666738, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Hotrod_01", + "cost": 0, + "sku": null + }, + "128666739": { + "id": 128666739, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Hotrod_03", + "cost": 0, + "sku": null + }, + "128666740": { + "id": 128666740, + "category": "paintjob", + "name": "PaintJob_Eagle_Hotrod_01", + "cost": 0, + "sku": null + }, + "128066421": { + "id": 128066421, + "category": "paintjob", + "name": "paintjob_viper_flag_denmark_01", + "cost": 0, + "sku": null + }, + "128666741": { + "id": 128666741, + "category": "paintjob", + "name": "PaintJob_Eagle_Hotrod_03", + "cost": 0, + "sku": null + }, + "128066422": { + "id": 128066422, + "category": "paintjob", + "name": "paintjob_viper_police_federation_01", + "cost": 0, + "sku": null + }, + "128666742": { + "id": 128666742, + "category": "paintjob", + "name": "PaintJob_Sidewinder_Hotrod_01", + "cost": 0, + "sku": null + }, + "128666743": { + "id": 128666743, + "category": "paintjob", + "name": "PaintJob_Sidewinder_Hotrod_03", + "cost": 0, + "sku": null + }, + "128066424": { + "id": 128066424, + "category": "paintjob", + "name": "paintjob_viper_flag_newzealand_01", + "cost": 0, + "sku": null + }, + "128666744": { + "id": 128666744, + "category": "paintjob", + "name": "PaintJob_Viper_Stripe2_51", + "cost": 0, + "sku": null + }, + "128066425": { + "id": 128066425, + "category": "paintjob", + "name": "paintjob_viper_flag_italy_01", + "cost": 0, + "sku": null + }, + "128666745": { + "id": 128666745, + "category": "paintjob", + "name": "PaintJob_Viper_Stripe2_52", + "cost": 0, + "sku": null + }, + "128066426": { + "id": 128066426, + "category": "paintjob", + "name": "paintjob_viper_stripe2_04", + "cost": 0, + "sku": null + }, + "128066427": { + "id": 128066427, + "category": "paintjob", + "name": "paintjob_viper_police_independent_01", + "cost": 0, + "sku": null + }, + "128066429": { + "id": 128066429, + "category": "paintjob", + "name": "paintjob_viper_default_03", + "cost": 0, + "sku": null + }, + "128066434": { + "id": 128066434, + "category": "paintjob", + "name": "paintjob_viper_flag_uk_01", + "cost": 0, + "sku": null + }, + "128066435": { + "id": 128066435, + "category": "paintjob", + "name": "paintjob_viper_flag_germany_01", + "cost": 0, + "sku": null + }, + "128066438": { + "id": 128066438, + "category": "paintjob", + "name": "paintjob_viper_flag_netherlands_01", + "cost": 0, + "sku": null + }, + "128066439": { + "id": 128066439, + "category": "paintjob", + "name": "paintjob_viper_flag_usa_01", + "cost": 0, + "sku": null + }, + "128066442": { + "id": 128066442, + "category": "paintjob", + "name": "paintjob_viper_flag_russia_01", + "cost": 0, + "sku": null + }, + "128066443": { + "id": 128066443, + "category": "paintjob", + "name": "paintjob_viper_flag_canada_01", + "cost": 0, + "sku": null + }, + "128066445": { + "id": 128066445, + "category": "paintjob", + "name": "paintjob_viper_flag_sweden_01", + "cost": 0, + "sku": null + }, + "128066446": { + "id": 128066446, + "category": "paintjob", + "name": "paintjob_viper_flag_poland_01", + "cost": 0, + "sku": null + }, + "128066450": { + "id": 128066450, + "category": "paintjob", + "name": "paintjob_viper_flag_finland_01", + "cost": 0, + "sku": null + }, + "128066451": { + "id": 128066451, + "category": "paintjob", + "name": "paintjob_viper_flag_france_01", + "cost": 0, + "sku": null + }, + "128066452": { + "id": 128066452, + "category": "paintjob", + "name": "paintjob_viper_police_empire_01", + "cost": 0, + "sku": null + }, + "128066455": { + "id": 128066455, + "category": "paintjob", + "name": "paintjob_viper_flag_norway_01", + "cost": 0, + "sku": null + }, + "128667720": { + "id": 128667720, + "category": "paintjob", + "name": "PaintJob_Asp_Default_02", + "cost": 0, + "sku": null + }, + "128667721": { + "id": 128667721, + "category": "paintjob", + "name": "PaintJob_Asp_Default_03", + "cost": 0, + "sku": null + }, + "128667722": { + "id": 128667722, + "category": "paintjob", + "name": "PaintJob_Asp_Default_04", + "cost": 0, + "sku": null + }, + "128667723": { + "id": 128667723, + "category": "paintjob", + "name": "PaintJob_Asp_Faction1_01", + "cost": 0, + "sku": null + }, + "128667724": { + "id": 128667724, + "category": "paintjob", + "name": "PaintJob_Asp_Stripe1_02", + "cost": 0, + "sku": null + }, + "128667725": { + "id": 128667725, + "category": "paintjob", + "name": "PaintJob_Asp_Stripe1_03", + "cost": 0, + "sku": null + }, + "128667726": { + "id": 128667726, + "category": "paintjob", + "name": "PaintJob_Asp_Stripe1_04", + "cost": 0, + "sku": null + }, + "128667655": { + "id": 128667655, + "category": "decal", + "name": "Decal_Skull3", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_MERCENARY_DECAL_1000" + }, + "128667736": { + "id": 128667736, + "category": "decal", + "name": "Decal_Combat_Mostly_Harmless", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_COMBAT_DECAL_1001" + }, + "128667737": { + "id": 128667737, + "category": "decal", + "name": "Decal_Combat_Novice", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_COMBAT_DECAL_1002" + }, + "128667738": { + "id": 128667738, + "category": "decal", + "name": "Decal_Combat_Competent", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_COMBAT_DECAL_1003" + }, + "128667744": { + "id": 128667744, + "category": "decal", + "name": "Decal_Trade_Mostly_Penniless", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_TRADE_DECAL_1001" + }, + "128667745": { + "id": 128667745, + "category": "decal", + "name": "Decal_Trade_Peddler", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_TRADE_DECAL_1002" + }, + "128667746": { + "id": 128667746, + "category": "decal", + "name": "Decal_Trade_Dealer", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_TRADE_DECAL_1003" + }, + "128667747": { + "id": 128667747, + "category": "decal", + "name": "Decal_Trade_Merchant", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_TRADE_DECAL_1004" + }, + "128667752": { + "id": 128667752, + "category": "decal", + "name": "Decal_Explorer_Mostly_Aimless", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_EXPLORE_DECAL_1001" + }, + "128667753": { + "id": 128667753, + "category": "decal", + "name": "Decal_Explorer_Scout", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_EXPLORE_DECAL_1002" + }, + "128667754": { + "id": 128667754, + "category": "decal", + "name": "Decal_Explorer_Surveyor", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_EXPLORE_DECAL_1003" + } + } + }, + "stats": { + "game_time": 850655, + "missions": { + "courier": { + "missionsAccepted": 64, + "furthest": { + "distance": 9.8418152860638, + "origin": 3228189952, + "destination": "3227868416" + }, + "highestEarnings": { + "value": 0, + "distance": 0, + "origin": 0, + "destination": 0, + "faction": 0 + }, + "missionsCompleted": 36, + "creditsEarned": -9119, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 1109, + "faction": "Defence Force of LHS 1541", + "type": "CourierLegal" + }, + { + "value": 1018, + "faction": "Defence Force of LHS 1541", + "type": "CourierLegal" + }, + { + "value": 487, + "faction": "Defence Force of LHS 1541", + "type": "CourierLegal" + } + ] + }, + "deliver": { + "missionsAccepted": 105, + "furthest": { + "distance": 9.8944626243672, + "origin": 3228393472, + "destination": "3228115456" + }, + "highestEarnings": { + "value": 0, + "commodity": 0, + "qty": 0, + "distance": 0, + "origin": 0, + "destination": 0, + "faction": 0 + }, + "missionsCompleted": 98, + "creditsEarned": 1164220, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 1988, + "faction": "Crimson Energy Systems", + "type": "DeliveryLegal" + }, + { + "value": 107316, + "faction": "Gold Netcoms Commodities", + "type": "DeliveryLegal" + }, + { + "value": 65546, + "faction": "Allied LHS 1507 Dominion", + "type": "DeliveryLegal" + } + ] + }, + "collect": { + "missionsAccepted": 175, + "furthest": { + "distance": 0, + "origin": 0, + "destination": 0 + }, + "highestEarnings": { + "value": 0, + "commodity": 0, + "qty": 0, + "distance": 0, + "origin": 0, + "destination": 0, + "faction": 0 + }, + "missionsCompleted": 0, + "creditsEarned": 0, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 22145, + "faction": "Defence Force of LHS 1541", + "type": "Collect" + }, + { + "value": 3420, + "faction": "Defence Force of LHS 1541", + "type": "Collect" + }, + { + "value": 34772, + "faction": "Wolf 1323 Life Corp.", + "type": "Collect" + } + ] + }, + "assassin": { + "highestEarnings": { + "value": 199640, + "origin": "3228064512", + "faction": 0 + }, + "missionsCompleted": 25, + "creditsEarned": 1147873, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 36176, + "faction": "United Euryale First", + "type": "Massacre" + }, + { + "value": 99646, + "faction": "United Euryale First", + "type": "Assassinate" + }, + { + "value": 42589, + "faction": "United Euryale First", + "type": "Assassinate" + } + ], + "missionsAccepted": 52 + }, + "bountyHunter": { + "highestEarnings": { + "value": 0, + "origin": 0, + "faction": 0 + }, + "missionsCompleted": 0, + "creditsEarned": 0, + "missionsFailed": 0, + "latestCompleted": [], + "missionsAccepted": 0 + } + }, + "explore": { + "hyperspaceJumps": 1566, + "totalHyperspaceDistance": 26867.368997046, + "visited": { + "starsystem": [ + "GCRV 4654", + "FK5 2550", + "LHS 1914", + "Siren", + "Geawenki", + "Thiin", + "LP 307-8", + "StKM 1-626", + "BD+30 1423", + "LHS 6103", + "LHS 1814", + "LHS 1794", + "Nandjabinja", + "Susanoo", + "Wong Sher", + "74 k Orionis", + "BD+08 1303", + "Iansan", + "LHS 1857", + "Yin Sector HW-W b1-3", + "Nihursaga", + "Hahgwe", + "Alzirr", + "Toog", + "Yin Sector ZE-A d120", + "Chang Yeh", + "G 108-26", + "HR 2251", + "LHS 1838", + "Breksta", + "Amait", + "Cosi", + "Yggdrajang", + "LTT 17868", + "Yin Sector EQ-Y b2", + "Yin Sector EQ-Y b1", + "Zandu", + "Flech", + "Julanggarri", + "Ross 878", + "Kamchata", + "Tamalhikas", + "Katocudatta", + "Lumbla", + "Tascheter Sector FG-X b1-6", + "Jita Ten", + "71 Orionis", + "Tao Ti", + "LHS 1743", + "LFT 392", + "Ndozins", + "LHS 21", + "Geras", + "G 85-36", + "LP 417-213", + "V1402 Orionis", + "MCC 467", + "Suyarang", + "Chonost", + "Fular", + "LTT 11519", + "Tote", + "Psi Tauri", + "Wolf 1301", + "Tascheter Sector MS-T a3-2", + "Achlys", + "BD+14 831", + "Kungurutii", + "Ross 49", + "Dewikum", + "Yin Sector DQ-Y b1", + "Tascheter Sector FG-X b1-1", + "Tascheter Sector EG-X b1-1", + "Cahuile", + "Tascheter Sector WE-Q a5-1", + "Tascheter Sector DG-O a6-0", + "LP 771-72", + "Kappa Fornacis", + "LP 831-72", + "Zeus", + "Tascheter Sector HM-M a7-2", + "Tascheter Sector BL-O a6-1", + "Tascheter Sector YE-Q a5-0", + "Pachanwen", + "Ranginui", + "LHS 1928", + "LP 605-37", + "Sekhemet", + "Hlocidirus", + "Fionn", + "LHS 1920", + "Tascheter Sector GW-W c1-18", + "LFT 377", + "Kunlun", + "Tascheter Sector HM-M a7-1", + "LTT 1349", + "LFT 179", + "Jibitoq", + "BD-18 394", + "Autahenetsi", + "Ceti Sector AV-Y c17", + "Tetekhe", + "Ceti Sector FW-V b2-5", + "LTT 1141", + "Bandizel", + "Artemis", + "LHS 1409", + "Tascheter Sector EG-Y d106", + "Tascheter Sector BG-O a6-1", + "Tascheter Sector WZ-P a5-1", + "LHS 1573", + "G 100-4", + "V491 Persei", + "Sui Xing", + "Bonde", + "Bhadaba", + "Uchaluroja", + "Manamaya", + "LHS 197", + "Ashandras", + "LTT 11455", + "Al-Qaum", + "Herishep", + "LTT 11503", + "Ross 592", + "Itza", + "Capukanga", + "LHS 1483", + "LP 356-106", + "BD+24 543", + "39 Tauri", + "KP Tauri", + "Wolf 1278", + "Lowne 1", + "Meri", + "Apollo", + "LHS 1516", + "Wolf 1323", + "Marduk", + "LHS 1541", + "Wolf 1325", + "G 95-22", + "LHS 1507", + "Bao Yan Luo", + "Tascheter Sector HH-V b2-5", + "G 173-39", + "G 173-53", + "Theta Persei", + "LHS 1446", + "Lorana", + "Anlave", + "Wolf 46", + "V388 Cassiopeiae", + "Zeessze", + "Eta Cassiopeiae", + "Groombridge 34", + "Ross 248", + "Ross 730", + "Altair", + "Sol", + "Alpha Centauri", + "LHS 18", + "Bonitou", + "LTT 10482", + "Cephei Sector BA-A d103", + "Cephei Sector DQ-Y b4", + "Iota Cassiopeiae", + "Funji", + "T'ienimi", + "HIP 12512", + "Col 285 Sector QT-Q c5-14", + "HIP 10466", + "Col 285 Sector QT-Q c5-9", + "Col 285 Sector BH-J b10-4", + "Col 285 Sector BH-J b10-2", + "Col 285 Sector PT-Q c5-13", + "Col 285 Sector WA-L b9-0", + "HR 567", + "Col 285 Sector MY-Q c5-3", + "Col 285 Sector MY-Q c5-15", + "Undalibaluf", + "Col 285 Sector GY-F b12-4", + "BD+65 1984", + "Col 285 Sector HY-F b12-0", + "HIP 3509", + "Nootkena", + "Inovandar", + "Tegidana", + "BD+44 1040", + "LHS 1765", + "Selniang", + "Skuta", + "Gani", + "Enuma", + "Gkutat", + "Djinbin", + "Col 285 Sector NG-H a26-5", + "Col 285 Sector MA-J a25-4", + "Col 285 Sector SG-H a26-2", + "Col 285 Sector JB-N c7-7", + "Col 285 Sector JB-N c7-4", + "Synuefe XT-D a94-2", + "h2 Puppis", + "Synuefe BP-D a94-1", + "O Puppis", + "Synuefe KB-A a96-2", + "HIP 40430", + "Synuefe WR-H d11-48", + "Synuefe WQ-Z b47-5", + "Gliese 3434", + "Synuefe YK-N c23-14", + "Canopus", + "Synuefe ZK-N c23-22", + "Synuefe BH-Z b47-1", + "HIP 34755", + "HIP 35652", + "HIP 36489", + "47 G. Carinae", + "Synuefe BM-Z b47-8", + "Q Carinae", + "Synuefe DW-L c24-30", + "Synuefe IS-X b48-3", + "Chi Carinae", + "Synuefe HX-X b48-2", + "HIP 40929", + "HIP 42504", + "HIP 42459", + "E Velorum", + "Synuefe JI-W b49-12", + "HIP 42374", + "HR 3503", + "HIP 42823", + "HR 3448", + "HIP 42726", + "Omicron Velorum", + "HIP 42715", + "IC 2391 Sector LI-S b4-10", + "IC 2391 Sector SJ-Q b5-10", + "HIP 43433", + "IC 2391 Sector UJ-Q b5-8", + "IC 2391 Sector VJ-Q b5-1", + "HIP 43015", + "IC 2391 Sector MC-V c2-14", + "Synuefe GL-S b51-9", + "Synuefe LR-Q b52-2", + "V473 Carinae", + "Synuefe JE-E d13-115", + "Synuefe RX-O b53-7", + "Synuefe JE-E d13-94", + "Synuefe WD-N b54-1", + "Tureis", + "Synuefe BK-L b55-4", + "Synuefe CV-E c28-23", + "Synuefe OK-C d14-6", + "HIP 47751", + "HIP 48127", + "Synuefe KM-G b58-4", + "Synuefe XO-L a117-1", + "Synuefe AA-K a118-6", + "Wregoe KZ-S b58-7", + "HR 4091", + "Praea Euq SG-A b1", + "Praea Euq XM-Y b2", + "Praea Euq ZM-Y b1", + "Praea Euq MA-A d153", + "Praea Euq ZR-Y b0", + "Praea Euq CM-Y c9", + "HD 92405", + "Praea Euq FO-V b2-1", + "Praea Euq KU-T b3-5", + "Praea Euq PL-Y d85", + "Praea Euq TG-Q b5-3", + "HD 95633", + "Praea Euq ZM-O b6-0", + "Praea Euq LD-V c2-20", + "Praea Euq UR-W d1-63", + "Praea Euq EY-M b7-4", + "Praea Euq GJ-L b8-1", + "Praea Euq HJ-L b8-4", + "Praea Euq VR-W d1-80", + "Praea Euq RZ-R c4-2", + "Praea Euq JZ-J b9-0", + "Pro Eurl AI-I b10-3", + "Pro Eurl EW-W d1-55", + "Pro Eurl KD-S c4-7", + "Pro Eurl EW-W d1-39", + "HD 98557", + "Pro Eurl XR-I b10-0", + "Pro Eurl AN-I b10-3", + "Pro Eurl PJ-Q c5-12", + "Pro Eurl IC-V d2-40", + "Pro Eurl JC-V d2-35", + "Pro Eurl KZ-E b12-2", + "NGC 3532 Sector ZK-X d1-59", + "Pro Eurl NK-D b13-0", + "Pro Eurl HH-V d2-32", + "Pro Eurl JU-D b13-0", + "HD 100476", + "Pro Eurl LU-D b13-0", + "HD 99573", + "HD 99081", + "Pro Eurl IO-F b12-1", + "NGC 3532 Sector YP-X d1-24", + "NGC 3532 Sector EJ-M b9-1", + "NGC 3532 Sector DC-T c4-9", + "NGC 3532 Sector AL-X d1-30", + "NGC 3532 Sector PF-K b10-0", + "NGC 3532 Sector RA-K b10-1", + "NGC 3532 Sector BL-X d1-48", + "NGC 3532 Sector FR-V d2-53", + "NGC 3532 Sector EI-G b12-2", + "NGC 3532 Sector FI-G b12-0", + "NGC 3532 Sector FI-G b12-4", + "HD 98767", + "NGC 3532 Sector PU-C b14-0", + "NGC 3532 Sector RP-C b14-5", + "HD 98896", + "NGC 3532 Sector WV-A b15-4", + "NGC 3532 Sector YK-N c7-10", + "NGC 3532 Sector ID-X b16-2", + "NGC 3532 Sector LO-V b17-2", + "Pro Eurl BW-K b22-1", + "Pro Eurl AB-L b22-2", + "Pro Eurl OS-U e2-4", + "Pro Eurl CQ-P d5-68", + "Pro Eurl GR-D c12-2", + "Pro Eurl CQ-P d5-27", + "Pro Eurl OI-H b24-3", + "Pro Eurl CQ-P d5-21", + "Pro Eurl MC-J b23-2", + "Pro Eurl DQ-P d5-63", + "Pro Eurl ZJ-R d4-4", + "Pro Eurl NC-J b23-2", + "HD 99218", + "Pro Eurl JR-D c12-12", + "Pro Eurl DQ-P d5-39", + "Pro Eurl ZU-D b26-2", + "Pro Eurl HW-N d6-37", + "Pro Eurl HH-A b28-3", + "Pro Eurl QD-A c14-12", + "Pro Eurl UJ-Y c14-2", + "Pro Eurl LC-M d7-2", + "HD 104214", + "Pro Eurl WK-T b31-2", + "Pro Eurl ZP-W c15-1", + "Pro Eurl KN-P b33-2", + "Pro Eurl GR-U c16-9", + "Pro Eurl MN-P b33-1", + "Pro Eurl TO-N b34-0", + "Pro Eurl WJ-N b34-3", + "Pro Eurl XJ-N b34-6", + "Pro Eurl UD-P b33-0", + "Pro Eurl BF-N b34-4", + "Pro Eurl CF-N b34-1", + "Pro Eurl DF-N b34-2", + "Pro Eurl UD-K d8-47", + "Pro Eurl UD-K d8-85", + "Pro Eurl KG-L b35-3", + "Pro Eurl UD-K d8-73", + "Pro Eurl MG-L b35-5", + "Pro Eurl PB-L b35-1", + "Prua Dryoae UQ-Q a73-3", + "Prua Dryoae CS-O a74-1", + "Prua Dryoae FH-T b37-5", + "HD 101131", + "Prua Dryoae WF-L d9-50", + "Prua Dryoae LN-R b38-3", + "Prua Dryoae PT-P b39-7", + "Prua Dryoae MN-S e4-12", + "Prua Dryoae IJ-C a81-1", + "Prua Dryoae CD-E a80-3", + "Prua Dryoae YH-E a80-0", + "Pro Eurl ZJ-I d9-63", + "Pro Eurl HA-E b39-0", + "Pro Eurl ZJ-I d9-0", + "Pro Eurl HA-E b39-4", + "Pro Eurl ZJ-I d9-3", + "Pro Eurl ZD-G b38-0", + "Pro Eurl XI-G b38-0", + "HD 102728", + "Pro Eurl XI-G b38-1", + "Pro Eurl EK-E b39-4", + "Pro Eurl AK-I d9-55", + "Pro Eurl EA-P c19-3", + "Prua Dryoae LU-A a82-0", + "Prua Dryoae AM-J d10-40", + "Prua Dryoae AM-J d10-53", + "Prua Dryoae AM-J d10-5", + "Prua Dryoae AG-M b41-0", + "Prua Dryoae GM-K b42-1", + "Prua Dryoae HM-K b42-0", + "Prua Dryoae UU-R a86-3", + "Prua Dryoae CM-J d10-3", + "Prua Dryoae HJ-R c21-6", + "Prua Dryoae BV-R a86-5", + "Prua Dryoae DV-R a86-1", + "Prua Dryoae IJ-R c21-9", + "HD 101035", + "Prua Dryoae JJ-R c21-7", + "Swoiphs PB-Q a87-1", + "Swoiphs WH-O a88-5", + "Sifeae JD-V b43-0", + "Swoiphs BI-O a88-2", + "Sifeae LD-V b43-2", + "Sifeae VR-J c22-14", + "Sifeae RJ-T b44-5", + "Sifeae ZK-P e5-0", + "Sifeae UJ-T b44-2", + "Sifeae XU-R b45-3", + "Sifeae YU-R b45-6", + "Sifeae DB-Q b46-2", + "Sifeae EB-Q b46-2", + "Sifeae JH-O b47-5", + "HD 100137", + "Sifeae LH-O b47-3", + "NGC 4463 Sector TT-Z d42", + "NGC 4463 Sector QT-C b2-6", + "NGC 4463 Sector VZ-A b3-3", + "NGC 4463 Sector TT-Z d46", + "NGC 4463 Sector MS-Z c1-16", + "NGC 4463 Sector MS-Z c1-18", + "NGC 4463 Sector YZ-X d1-24", + "NGC 4463 Sector JX-V b5-2", + "NGC 4463 Sector ZZ-X d1-86", + "NGC 4463 Sector ZZ-X d1-82", + "NGC 4463 Sector VE-S b7-1", + "NGC 4463 Sector XZ-R b7-3", + "NGC 4463 Sector ZZ-X d1-89", + "NGC 4463 Sector ZZ-X d1-17", + "NGC 4463 Sector MH-H a16-1", + "NGC 4463 Sector GB-U c4-1", + "NGC 4463 Sector PX-N b9-2", + "NGC 4463 Sector GB-W d2-41", + "NGC 4463 Sector YJ-K b11-0", + "NGC 4463 Sector GB-W d2-37", + "NGC 4463 Sector AF-T a23-3", + "HD 101794", + "NGC 4463 Sector HL-R a24-1", + "NGC 4463 Sector KW-G b13-6", + "NGC 4463 Sector XD-M a27-1", + "NGC 4463 Sector ZD-M a27-2", + "NGC 4463 Sector JQ-I a29-1", + "NGC 4463 Sector MH-U d3-27", + "NGC 4463 Sector XN-D a32-2", + "NGC 4463 Sector DU-B a33-2", + "NGC 4463 Sector NG-Y a34-1", + "NGC 4463 Sector RN-S d4-3", + "NGC 4463 Sector ZS-U a36-3", + "NGC 4463 Sector GZ-S a37-0", + "NGC 4463 Sector OA-R a38-0", + "NGC 4463 Sector SL-P a39-1", + "NGC 4609 Sector JU-Y a5-1", + "NGC 4609 Sector SG-V a7-0", + "NGC 4609 Sector AZ-V b4-0", + "NGC 4609 Sector AK-Z d29", + "NGC 4609 Sector DA-X c2-7", + "NGC 4609 Sector AK-Z d63", + "NGC 4609 Sector AK-Z d17", + "NGC 4609 Sector AK-Z d36", + "NGC 4609 Sector LB-V c3-5", + "NGC 4609 Sector UR-R b6-4", + "NGC 4609 Sector MB-V c3-11", + "NGC 4609 Sector FQ-X d1-64", + "NGC 4609 Sector NB-V c3-9", + "NGC 4609 Sector CY-P b7-4", + "NGC 4609 Sector GQ-X d1-33", + "NGC 4609 Sector FY-P b7-4", + "NGC 4609 Sector GY-P b7-2", + "NGC 4609 Sector QB-V c3-16", + "Aucops TS-O b12-3", + "Blaa Eoq IQ-O b12-2", + "Blaa Eoq OW-M b13-3", + "Blaa Eoq TN-T c6-5", + "Blaa Eoq RH-L b14-4", + "Blaa Eoq UN-T c6-4", + "Blaa Eoq SL-T a30-1", + "Blaa Eoq UL-T a30-1", + "Blaa Eoq XL-T a30-2", + "Blaa Eoq DS-R a31-0", + "Blaa Eoq OU-V d3-3", + "Blaa Eoq MY-P a32-0", + "Blaa Eoq SE-O a33-1", + "Blaa Eoq YK-M a34-2", + "Blaa Eoq AL-M a34-3", + "Blaa Eoq CL-M a34-5", + "Blaa Eoq IR-K a35-0", + "Blaa Eoq QU-V d3-34", + "Blaa Eoq PX-I a36-2", + "Blaa Eoq QU-V d3-38", + "Blaa Eoq RU-V d3-17", + "Blaa Eoq BP-F a38-2", + "Blaa Eoq EP-F a38-3", + "Phylurn AU-Q b18-5", + "Blaa Eoq IP-F a38-4", + "Blaa Eoq LP-F a38-0", + "Blaa Eoq WA-U d4-8", + "Blaa Eoq PP-F a38-2", + "Blaa Eoq RP-F a38-0", + "Blaa Eoq XA-U d4-22", + "HD 99619", + "Blaa Eoq XP-F a38-2", + "Col 240 Sector MX-E a42-1", + "Col 240 Sector HJ-G c11-3", + "Col 240 Sector OX-M b22-1", + "Col 240 Sector PX-M b22-0", + "Col 240 Sector ZD-D a43-3", + "Col 240 Sector YX-E a42-1", + "Col 240 Sector KJ-G c11-4", + "Col 240 Sector DY-E a42-3", + "Col 240 Sector JE-D a43-0", + "Col 240 Sector HY-E a42-1", + "Col 240 Sector JY-E a42-1", + "Col 240 Sector LO-G c11-5", + "Col 240 Sector RJ-Q d5-27", + "Col 240 Sector MO-G c11-10", + "Col 240 Sector SJ-Q d5-51", + "Col 240 Sector SJ-Q d5-46", + "Col 240 Sector ZR-O b21-5", + "Col 240 Sector AS-O b21-3", + "Col 240 Sector OO-G c11-8", + "Col 240 Sector TJ-Q d5-54", + "Col 240 Sector ES-O b21-0", + "Col 240 Sector JY-M b22-0", + "2MASS J11132054-6053363", + "2MASS J11130497-6049452", + "TYC 8959-364-2", + "2MASS J11130472-6047135", + "NGC 3590 MV 4", + "NGC 3590 CLA 15", + "HD 306185", + "2MASS J11123987-6047011", + "NGC 3590 MV 12", + "NGC 3590 Sector UT-R a4-1", + "NGC 3590 Sector BA-A d12", + "Col 240 Sector AB-J b24-0", + "Col 240 Sector GH-H b25-0", + "Col 240 Sector HH-H b25-4", + "Col 240 Sector FW-C c13-7", + "IC 2944 Sector PP-Q b8-0", + "IC 2944 Sector UV-O b9-0", + "IC 2944 Sector VV-O b9-2", + "IC 2944 Sector WV-O b9-0", + "IC 2944 Sector WE-Y d1-26", + "IC 2944 Sector EX-M b10-2", + "IC 2944 Sector FX-M b10-0", + "IC 2944 Sector ER-S c5-0", + "IC 2944 Sector LD-L b11-2", + "IC 2944 Sector SE-J b12-1", + "IC 2944 Sector VP-H b13-0", + "IC 2944 Sector WP-H b13-1", + "IC 2944 Sector KX-Q c6-5", + "IC 2944 Sector CW-F b14-2", + "IC 2944 Sector HR-U d3-13", + "IC 2944 Sector FG-X e1-3", + "IC 2944 Sector QD-P c7-5", + "IC 2944 Sector RO-A b17-0", + "IC 2944 Sector SO-A b17-0", + "IC 2944 Sector TO-A b17-0", + "Statue of Liberty Sector FW-W c1-2", + "Statue of Liberty Sector OY-R b4-1", + "Statue of Liberty Sector LS-T b3-0", + "Statue of Liberty Sector OD-S b4-0", + "Statue of Liberty Sector LX-T b3-2", + "Statue of Liberty Sector DL-Y d25", + "Statue of Liberty Sector FG-Y e5", + "Statue of Liberty Sector PI-S b4-0", + "Statue of Liberty Sector QI-S b4-0", + "Statue of Liberty Sector FW-K a9-1", + "Statue of Liberty Sector IW-K a9-0", + "IC 2944 Sector XH-C a34-0", + "IC 2944 Sector ZH-C a34-0", + "IC 2944 Sector GO-A a35-0", + "IC 2944 Sector GT-A a35-1", + "IC 2944 Sector KO-A a35-1", + "IC 2944 Sector KT-A a35-2", + "IC 2944 Sector MR-U d3-20", + "IC 2944 Sector LI-C a34-0", + "Blua Eoq CI-G a65-0", + "Blua Eoq DL-Y g0", + "Blua Eoq GC-C b33-1", + "Blua Eoq TA-B a68-0", + "Blua Eoq TF-B a68-0", + "Blo Thae QH-U c16-7", + "Blo Thae MV-M b34-2", + "Blo Thae LA-N b34-1", + "NGC 3572 Sector DB-X c1-0", + "NGC 3572 Sector FR-V b2-2", + "NGC 3572 Sector AV-Y c1", + "NGC 3572 Sector EB-X c1-5", + "NGC 3572 Sector IR-V b2-0", + "NGC 3572 Sector FB-X c1-4", + "NGC 3572 Sector YE-A g2", + "NGC 3572 Sector IR-W d1-9", + "NGC 3572 Sector QN-S b4-0", + "Blo Thae BI-I b37-1", + "Blo Thae AP-I d9-17", + "Blo Thae BE-R c18-1", + "Blo Thae AS-I b37-0", + "Blo Thae BS-I b37-0", + "Blo Thae YL-K b36-0", + "Blo Thae BJ-R c18-4", + "Tyriedgoea MO-I d9-2", + "Tyriedgoea MO-I d9-20", + "Tyriedgoea PJ-K b36-1", + "Tyriedgoea II-K d8-12", + "Tyriedgoea IX-N b34-0", + "Tyriedgoea DW-P b33-0", + "Tyriedgoea BB-Q b33-0", + "Tyriedgoea AQ-R b32-0", + "Tyriedgoea DH-M d7-10", + "Tyriedgoea ZU-R b32-0", + "Tyriedgoea VO-T b31-0", + "Tyriedgoea UD-V b30-0", + "Tyriedgoea DH-M d7-2", + "Tyriedgoea LW-Y b28-0", + "Tyriedgoea LX-U e2-0", + "Tyriedgoea JQ-A b28-0", + "Tyriedgoea KQ-A b28-0", + "Tyriedgoea CW-N d6-9", + "Tyriedgoea OL-A b28-0", + "Tyriedgoea PL-A b28-0", + "Tyriedgoea DW-N d6-19", + "Tyriedgoea VR-Y b28-0", + "Tyriedgoea WR-Y b28-0", + "Col 228 Sector CW-V d2-19", + "Col 228 Sector CW-V d2-18", + "Col 228 Sector GC-U d3-3", + "Col 228 Sector PB-G b13-0", + "Col 228 Sector JY-P c6-2", + "Col 228 Sector SB-G b13-0", + "Col 228 Sector UW-F b13-1", + "Col 228 Sector ZC-E b14-1", + "Col 228 Sector KY-P c6-1", + "Col 228 Sector BD-E b14-0", + "Col 228 Sector IE-C b15-1", + "Col 228 Sector KX-T d3-13", + "Col 228 Sector TZ-N c7-4", + "Col 228 Sector NP-A b16-0", + "Col 228 Sector UZ-N c7-5", + "Col 228 Sector VQ-Y b16-0", + "Col 228 Sector ZF-M c8-0", + "Col 228 Sector ZL-Y b16-1", + "Col 228 Sector FN-W b17-1", + "NGC 3324 Sector VI-V b17-1", + "NGC 3324 Sector BP-T b18-1", + "NGC 3324 Sector CP-T b18-0", + "NGC 3324 Sector DS-J c9-8", + "NGC 3324 Sector ME-O a36-0", + "NGC 3324 Sector IY-H c10-1", + "NGC 3324 Sector CX-I a39-0", + "NGC 3324 Sector HD-H a40-2", + "NGC 3324 Sector QT-R d4-3", + "NGC 3324 Sector PJ-F a41-0", + "NGC 3324 Sector VP-D a42-4", + "NGC 3324 Sector RT-R d4-15", + "NGC 3324 Sector DR-B a43-0", + "NGC 3324 Sector FR-B a43-2", + "NGC 3324 Sector IZ-L b22-2", + "NGC 3324 Sector UU-F c11-3", + "NGC 3324 Sector UU-F c11-6", + "Eta Carinae", + "NGC 3324 Sector OU-L b22-0", + "NGC 3324 Sector LO-N b21-0", + "NGC 3324 Sector WU-F c11-4", + "NGC 3324 Sector JI-P b20-1", + "NGC 3324 Sector KI-P b20-1", + "Bleia Eork MW-U b36-1", + "Bleia Eork NW-U b36-0", + "Bleia Eork LQ-W b35-1", + "Bleia Eork VZ-M d8-7", + "Bleia Eork NQ-W b35-1", + "Bleia Eork TK-Y c17-1", + "Bleia Eork JP-Y b34-0", + "Blae Eork KD-A c17-2", + "Blae Eork ZM-Y b34-1", + "Blae Eork WG-A b34-1", + "Blae Eork XG-A b34-1", + "Blae Eork YG-A b34-1", + "Blae Eork BC-A b34-1", + "Blae Eork CH-U e3-4", + "Blae Eork ID-Y b34-0", + "Blae Eork MJ-W b35-1", + "Blae Eork QP-U b36-0", + "Blae Eork XK-W c18-1", + "Blae Eork WK-W c18-0", + "Blae Eork CI-P b39-0", + "Blae Eork GO-N b40-0", + "Blae Eork LU-L b41-1", + "Blae Eork OA-K b42-1", + "Blae Eork JD-R c21-5", + "CPD-58 2648", + "CPD-59 2627", + "2MASS J10443666-5946218", + "Blae Eork OJ-P c22-3", + "Trumpler 16 HG 1462", + "CPD-59 2591", + "Blae Eork QA-B b47-0", + "PCYC 666", + "Blae Eork SA-B b47-0", + "Blae Eork TA-B b47-0", + "2MASS J10442445-5951430", + "Blae Eork YM-H d11-18", + "Blae Eork ZK-N c23-2", + "Blae Eork HI-X b48-0", + "Blae Eork KT-V b49-0", + "Blae Eork NO-V b49-0", + "Blae Eork FR-L c24-2", + "Tr 16 Sector RA-M b8-0", + "2MASS J10432911-6003200", + "Tr 16 Sector DB-X d1-12", + "Tr 16 Sector XG-K b9-0", + "Tr 16 Sector ZG-K b9-0", + "Tr 16 Sector ND-S c4-0", + "Tr 16 Sector EB-X d1-17", + "Tr 16 Sector II-I b10-0", + "Tr 16 Sector LD-I b10-0", + "Tr 16 Sector OO-G b11-0", + "Tr 16 Sector PO-G b11-0", + "Tr 16 Sector QO-G b11-0", + "Tr 16 Sector RO-G b11-0", + "Tr 16 Sector VJ-Q c5-4", + "Tr 16 Sector TO-G b11-0", + "Tr 16 Sector VJ-G b11-0", + "Tr 16 Sector XJ-G b11-0", + "Tr 16 Sector VY-R c4-2", + "Tr 16 Sector NC-V d2-2", + "Tr 14 Sector JM-W d1-10", + "Tr 16 Sector CA-Q c5-7", + "Tr 16 Sector NC-V d2-6", + "Tr 16 Sector GG-O c6-6", + "Tr 14 Sector TY-S c3-12", + "Tr 14 Sector LC-M b7-0", + "Eta Carina Sector HR-W c1-3", + "Eta Carina Sector RT-R b4-0", + "Eta Carina Sector HR-W d1-22", + "Eta Carina Sector KC-V c2-1", + "Eta Carina Sector SJ-Q b5-0", + "Eta Carina Sector RO-Q b5-0", + "2MASS J10442897-5942343", + "Eta Carina Sector NY-Q b5-0", + "Eta Carina Sector KD-R b5-1", + "Tr 14 Sector GD-W a17-1", + "Tr 14 Sector IH-V d2-19", + "Blu Theia ND-Z c27-1", + "Blu Theia LI-Z c27-3", + "Blu Theia LI-Z c27-6", + "Blu Theia QF-Z b55-0", + "Blu Theia RT-Z d13-23", + "Blu Theia HS-Z c27-0", + "Blu Theia KE-B b55-0", + "Blu Theia FY-C b54-0", + "Blu Theia CM-B c27-3", + "Blu Theia XW-E b53-0", + "Blu Theia VB-F b53-0", + "Blu Theia QV-G b52-0", + "Blu Theia LP-I b51-0", + "Blu Theia HJ-K b50-0", + "Blu Theia EO-K b50-0", + "Blu Theia YM-M b49-0", + "Blu Theia UG-O b48-0", + "Blu Theia FM-D d12-9", + "Blu Theia NF-Q b47-0", + "Blu Theia AQ-P e5-1", + "Blu Theia HZ-R b46-0", + "Blu Theia BG-F d11-6", + "Blu Theia BG-F d11-11", + "Blu Theia AG-F d11-4", + "Blu Theia ZH-V b44-0", + "Blu Theia VW-W b43-0", + "Blu Theia TB-X b43-0", + "Blu Theia UK-M c21-1", + "Blu Theia QE-O c20-2", + "Blu Theia WZ-G d10-9", + "Blu Theia PE-O c20-0", + "Blu Theia EJ-C b41-0", + "Blu Theia FE-C b41-0", + "Blu Theia KY-P c19-1", + "Blu Theia QT-I d9-8", + "Blu Theia TW-F b39-0", + "Blu Theia QB-G b39-0", + "Blu Theia PB-G b39-0", + "Blu Theia LQ-H b38-0", + "Blu Theia JV-H b38-0", + "Blu Theia IV-H b38-0", + "Blu Theia HV-H b38-0", + "Blu Theia GV-H b38-0", + "Blu Theia FV-H b38-0", + "Blu Theia CA-I b38-0", + "Blu Theia BA-I b38-0", + "Blu Theia CV-H b38-0", + "Blu Theia DG-G b39-0", + "Blu Theia BD-Q c19-0", + "Blu Theia BG-G b39-0", + "Blu Theia LY-I d9-6", + "Blu Theia SJ-I b38-0", + "Blu Theia ND-K b37-0", + "Blu Theia GS-K d8-5", + "Blu Theia GC-M b36-0", + "Blu Theia DH-M b36-0", + "Blu Theia VU-P b34-0", + "Blu Theia SZ-P b34-0", + "Blu Theia NT-R b33-0", + "Blu Theia KY-R b33-0", + "Blu Theia FS-T b32-0", + "Blu Theia DX-T b32-0", + "Blu Theia CX-T b32-0", + "Blu Theia YX-X c15-0", + "Blu Theia VV-V b31-0", + "Blu Theia XX-X c15-0", + "Blu Theia SR-Z c14-1", + "Blu Theia WV-M d7-1", + "Blu Theia WV-M d7-2", + "Blu Theia QW-Z c14-0", + "Blu Theia CN-B b29-0", + "Blu Theia YG-D b28-0", + "Blu Theia SF-F b27-0", + "Blu Theia QU-O d6-2", + "Blu Theia GP-D c13-0", + "Tyriedgoea BP-Q d5-2", + "Tyriedgoea BP-Q d5-3", + "Tyriedgoea BP-Q d5-0", + "Tyriedgoea BP-Q d5-4", + "Tyriedgoea DK-Q d5-1", + "Blu Theia OZ-G b26-0", + "Blu Theia QU-G b26-0", + "Tyriedgoea HQ-O d6-4", + "Tyriedgoea PG-D c13-1", + "Tyriedgoea JL-O d6-7", + "Tyriedgoea RB-D c13-1", + "Tyriedgoea KY-F b26-0", + "Tyriedgoea JL-O d6-1", + "Tyriedgoea OQ-E c12-0", + "Tyriedgoea CX-H b25-0", + "Tyriedgoea LV-E c12-0", + "Tyriedgoea EF-Q d5-8", + "Tyriedgoea UV-J b24-0", + "Tyriedgoea QP-L b23-0", + "Tyriedgoea MJ-N b22-0", + "Tyriedgoea LJ-N b22-0", + "Tyriedgoea KJ-N b22-0", + "Tyriedgoea FD-P b21-0", + "Tyriedgoea ED-P b21-0", + "Tyriedgoea ZW-Q b20-0", + "Tyriedgoea VQ-S b19-0", + "Tyriedgoea TV-S b19-0", + "Tyriedgoea XD-S d4-0", + "Tyriedgoea QK-U b18-0", + "Tyriedgoea PK-U b18-0", + "Tyriedgoea OK-U b18-0", + "Tyriedgoea LP-U b18-0", + "Tyriedgoea JU-U b18-0", + "Tyriedgoea NB-M c8-1", + "Tyriedgoea BT-W b17-0", + "Tyriedgoea ZS-W b17-0", + "Tyriedgoea RX-T d3-7", + "Tyriedgoea MB-M c8-1", + "Tyriedgoea TM-Y b16-0", + "Tyriedgoea SM-Y b16-0", + "Tyriedgoea QX-T d3-3", + "Tyriedgoea QX-T d3-2", + "Tyriedgoea LV-B b15-0", + "Tyriedgoea KV-B b15-0", + "Tyriedgoea EA-O c7-0", + "Tyriedgoea ZT-P c6-0", + "Tyriedgoea CU-D b14-0", + "Tyriedgoea EQ-Y e1", + "Tyriedgoea YN-F b13-0", + "Tyriedgoea LR-V d2-7", + "Tyriedgoea UN-R c5-0", + "Tyriedgoea QH-T c4-0", + "Tyriedgoea QH-T c4-1", + "Tyriedgoea HL-X d1-4", + "Tyriedgoea FP-M b9-0", + "Tyriedgoea EP-M b9-0", + "Tyriedgoea AJ-O b8-0", + "Tyriedgoea VC-Q b7-0", + "Tyriedgoea UC-Q b7-0", + "Tyriedgoea PW-R b6-0", + "Tyriedgoea OW-R b6-0", + "Tyriedgoea BF-Z d6", + "Tyriedgoea KB-S b6-0", + "Tyriedgoea FV-T b5-0", + "Tyriedgoea AF-Z d5", + "Tyriedgoea AP-V b4-0", + "Tyriedgoea AF-Z d6", + "Tyriedgoea BK-V b4-0", + "Tyriedgoea WD-X b3-0", + "Tyriedgoea VD-A c1-2", + "Tyriedgoea RX-Y b2-0", + "Tyriedgoea VY-A d8", + "Tyriedgoea SI-A c1-2", + "Tyriedgoea JW-A b2-0", + "Tyriedgoea GL-C b1-0", + "Tyriedgoea FL-C b1-0", + "Tyriedgoea ZJ-E b0", + "Pru Eurl QH-X b58-0", + "Pru Eurl CN-A d14-2", + "Pru Eurl JG-Z b57-0", + "Pru Eurl EQ-Z c28-0", + "Pru Eurl DA-B b57-0", + "Pru Eurl CA-B b57-0", + "Pru Eurl BA-B b57-0", + "Pru Eurl WT-C b56-0", + "Pru Eurl SN-E b55-0", + "Pru Eurl PS-E b55-0", + "Pru Eurl KM-G b54-0", + "Pru Eurl JM-G b54-0", + "Pru Eurl FG-I b53-0", + "Pru Eurl XF-O e6-0", + "Pru Eurl AA-K b52-0", + "Pru Eurl VT-L b51-0", + "Pru Eurl PF-E d12-9", + "Pru Eurl QX-O b49-0", + "Pru Eurl RA-E d12-9", + "Pru Eurl GG-I c24-3", + "Pru Eurl QA-E d12-5", + "Pru Eurl DL-I c24-2", + "Pru Eurl CQ-S b47-0", + "Pru Eurl BQ-S b47-0", + "Pru Eurl XJ-U b46-0", + "Pru Eurl YE-K c23-0", + "Sifaea BV-F d11-15", + "Pru Eurl OX-X b44-0", + "Pru Eurl SZ-P e5-1", + "Pru Eurl KZ-F d11-0", + "Sifaea ZZ-X b44-0", + "Sifaea VT-H d10-9", + "Sifaea UT-N c21-0", + "Sifaea QY-Z b43-0", + "Sifaea SY-N c21-0", + "Sifaea IX-B b43-0", + "Sifaea NS-P c20-1", + "Sifaea DR-D b42-0", + "Sifaea YK-F b41-0", + "Sifaea XK-F b41-0", + "Sifaea SE-H b40-0", + "Sifaea PN-J d9-10", + "Sifaea PN-J d9-2", + "Sifaea JS-K b38-0", + "Sifaea IS-K b38-0", + "Sifaea HS-K b38-0", + "Sifaea HN-K b38-0", + "Sifaea UT-R e4-1", + "Sifaea ES-K b38-0", + "Sifaea HY-I b39-0", + "Sifaea IT-I b39-0", + "Sifaea NN-J d9-8", + "Sifaea EY-I b39-0", + "Sifaea CM-R c19-0", + "Sifaea MN-J d9-1", + "Sifaea BM-R c19-1", + "Sifaea GE-H b40-0", + "Sifaea FE-H b40-0", + "Sifaea EE-H b40-0", + "Sifaea FZ-G b40-0", + "Sifaea EZ-G b40-0", + "Sifaea DZ-G b40-0", + "Sifaea ST-R e4-0", + "Sifaea BZ-G b40-0", + "Sifaea YD-H b40-0", + "Sifaea KN-J d9-3", + "Sifaea XD-H b40-0", + "Sifaea KN-J d9-13", + "Sifaea JN-J d9-1", + "Sifaea VD-H b40-0", + "Sifaea JN-J d9-2", + "Sifaea UL-R c19-1", + "Sifaea JW-K b38-0", + "Sifaea EQ-M b37-0", + "Sifaea EH-L d8-4", + "Sifaea BF-O b36-0", + "Sifaea AF-O b36-0", + "Sifaea VY-P b35-0", + "Sifaea YE-O b36-0", + "Sifaea XE-O b36-0", + "Sifaea DH-L d8-12", + "Sifaea DH-L d8-13", + "Sifaea RY-P b35-0", + "Sifaea IZ-U c17-0", + "Sifaea LS-R b34-0", + "Sifaea CH-L d8-6", + "Sifaea CH-L d8-1", + "Sifaea GW-U b32-1", + "Sifaea AW-M d7-2", + "Sifaea DD-Y c15-0", + "Sifaea DL-W b31-0", + "Sifaea YE-Y b30-1", + "Sifaea ZV-M d7-3", + "Sifaea AA-Y b30-0", + "Sifaea WT-Z b29-0", + "Sifaea KC-V e2-2", + "Sifaea WP-O d6-16", + "Sifaea KC-V e2-3", + "Sifaea QS-B b29-0", + "Sifaea RN-B b29-1", + "Sifaea QN-B b29-0", + "Sifaea VP-O d6-1", + "Sifaea ST-Z b29-0", + "Sifaea YV-M d7-12", + "Sifaea QT-Z b29-0", + "Sifaea LN-B b29-1", + "Sifaea UP-O d6-8", + "Sifaea DM-D b28-2", + "Sifaea TP-O d6-26", + "Sifaea CH-D b28-0", + "Sifaea BH-D b28-1", + "Sifaea WA-F b27-2", + "Sifaea SP-O d6-26", + "Sifaea PZ-G b26-0", + "Sifaea OZ-G b26-1", + "Pro Eur VV-I b25-0", + "Pro Eur UV-I b25-0", + "Pro Eur PP-K b24-2", + "Pro Eur SV-I b25-0", + "Pro Eur PK-K b24-0", + "Pro Eur CK-Q d5-6", + "Pro Eur ED-O b22-0", + "Pro Eur ZW-P b21-2", + "Pro Eur YW-P b21-0", + "Pro Eur XW-P b21-0", + "Pro Eur WW-P b21-0", + "Pro Eur WS-I c10-7", + "Pro Eur QQ-R b20-0", + "Pro Eur RM-K c9-3", + "Pro Eur WD-S d4-28", + "Pro Eur MG-M c8-4", + "Pro Eur CT-W b17-2", + "Pro Eur LG-M c8-5", + "Pro Eur WM-Y b16-1", + "Pro Eur TR-Y b16-0", + "Pro Eur NL-A b16-2", + "Pro Eur FA-O c7-0", + "Pro Eur IF-C b15-0", + "Pro Eur DZ-D b14-2", + "Pro Eur CZ-D b14-1", + "Pro Eur ZN-F b13-1", + "Pro Eur YT-P c6-3", + "Pro Eur LR-V d2-36", + "Pro Eur WN-F b13-1", + "Pro Eur ZT-D b14-1", + "Pro Eur AP-D b14-1", + "Pro Eur DV-B b15-2", + "Pro Eur CV-B b15-2", + "Pro Eur NX-T d3-41", + "Pro Eur NX-T d3-32", + "Pro Eur FB-M c8-1", + "Pro Eur LN-W b17-2", + "Pro Eur NX-T d3-15", + "Pro Eur GM-K c9-0", + "Pro Eur PE-T b19-0", + "Pro Eur FM-K c9-6", + "Pro Eur RK-R b20-0", + "Pro Eur IS-I c10-0", + "Pro Eur PD-S d4-9", + "Pro Eur GW-W e1-0", + "Pro Eur EH-K c9-9", + "Pro Eur EY-U b18-1", + "Pro Eur BM-K c9-3", + "Pro Eur ET-U b18-0", + "Pro Eur AM-K c9-5", + "Pro Eur OD-S d4-23", + "Pro Eur ZL-K c9-4", + "Pro Eur ND-S d4-26", + "Pro Eur VC-V b18-0", + "Pro Eur UC-V b18-0", + "Pro Eur IX-T d3-26", + "Pro Eur SC-V b18-0", + "Pro Eur TX-U b18-1", + "Pro Eur MD-S d4-24", + "Pro Eur MD-S d4-23", + "Pro Eur OR-W b17-1", + "Pro Eur HX-T d3-18", + "Pro Eur RF-M c8-2", + "Pro Eur HL-Y b16-0", + "Pro Eur IG-Y b16-0", + "Pro Eur DA-A b16-2", + "Pro Eur GG-Y b16-0", + "Pro Eur DL-Y b16-0", + "Pro Eur GX-T d3-1", + "Sifeae IH-A b16-1", + "Sifeae GM-A b16-0", + "Sifeae FM-A b16-0", + "Sifeae VX-T d3-11", + "Sifeae UX-T d3-1", + "Sifeae LF-O c7-0", + "Sifeae SC-U d3-1", + "Sifeae NW-V d2-6", + "Sifeae NW-V d2-16", + "Sifeae OE-E b14-1", + "Sifeae NE-E b14-0", + "Sifeae QK-C b15-0", + "Sifeae QC-U d3-22", + "Sifeae OK-C b15-0", + "Sifeae MK-C b15-1", + "Sifeae DU-P c6-4", + "Sifeae JZ-D b14-0", + "Sifeae GE-E b14-0", + "Sifeae FE-E b14-0", + "Sifeae CT-F b13-0", + "Sifeae BT-F b13-0", + "Sifeae ZY-P c6-1", + "Sifeae KW-V d2-9", + "Sifeae RR-H b12-0", + "Sifeae XY-P c6-6", + "Sifeae XY-P c6-0", + "Sifeae JW-V d2-12", + "Sifeae WD-E b14-0", + "Sifeae XT-P c6-5", + "Sifeae WY-D b14-0", + "Sifeae VY-D b14-1", + "Sifeae AA-C b15-1", + "Sifeae ZZ-N c7-0", + "Sifeae AL-A b16-1", + "Sifeae VE-C b15-1", + "Sifeae YK-A b16-1", + "Sifeae MX-T d3-28", + "Sifeae ZV-Y b16-0", + "Sifeae KC-U d3-4", + "Synuefe YG-Z b47-0", + "Synuefe XK-N c23-3", + "Col 285 Sector MR-M c7-13", + "Col 285 Sector SH-B b14-7", + "Col 285 Sector RH-B b14-2", + "HIP 28150", + "Col 285 Sector NM-B b14-6", + "Hyades Sector LC-V d2-99", + "Trianguli Sector QI-T b3-6", + "Trianguli Sector PI-T b3-7", + "Trianguli Sector TU-O a6-1", + "Tascheter Sector TY-R a4-2", + "LP 415-26", + "Delta Trianguli", + "LHS 4003", + "WISE 2056+1459", + "LP 634-1", + "Volungu", + "Liaedin", + "Wolf 1062", + "IL Aquarii", + "LAWD 96", + "Core Sys Sector CQ-P a5-2", + "Alectrona", + "Hyldekagati", + "Ceti Sector CQ-Y d89", + "Ceti Sector PD-S b4-1", + "Quivira", + "Kadrusa", + "ICZ CL-X b1-5", + "ICZ EW-V b2-4", + "Sanna", + "Euryale", + "LPM 26", + "Putamasin", + "LFT 78", + "Col 285 Sector NE-R a34-0", + "LHS 160", + "LHS 1351", + "LP 91-140", + "Ennead", + "Mitra", + "CD-58 538", + "Iota Horologii" + ], + "starport": [ + "Bosch Terminal", + "Julian Gateway", + "Jemison Dock", + "Galvani Port", + "Wundt Gateway", + "Conrad Port", + "Knapp Vision", + "Herzfeld Landing", + "Kotov Terminal", + "Weston Orbital", + "Ricardo Landing", + "Brand City", + "Huygens Mines", + "Zudov City", + "Chomsky Ring", + "Wescott Terminal", + "Dirac Hub", + "Planck Dock", + "Hertz Colony", + "Bosch Mines", + "Blaschke Vision", + "Nicollet City", + "Ejeta Colony", + "Pierres Ring", + "Grant Terminal", + "Narvaez Orbital", + "Legendre Ring", + "Popper Dock", + "Brooks City", + "Wells Hub", + "Barcelos City", + "Perez Market", + "Lopez de Villalobos Prospect", + "Oramus Legacy", + "Henry Hub", + "Schade Platform", + "Selberg's Inheritance", + "Solovyov Orbital", + "Pierce Hanger", + "Giles Colony", + "Marshall Hub", + "Ising Hub", + "Arrhenius Hub", + "Vaucanson Hub", + "Frimout Horizons", + "Parry Terminal", + "Saberhagen Port", + "Stafford Terminal", + "Willis City", + "Romanenko Gateway", + "Jakes Enterprise", + "Budarin Terminal", + "Horowitz Gateway", + "Burke Hub", + "Perrin Ring", + "Balandin Enterprise", + "So-yeon Port", + "Potter Gateway", + "Tudela Installation", + "Quimper Ring", + "Julian City", + "Whitelaw Enterprise", + "Saunders's Dive", + "Harvestport", + "Brunton Hub", + "Nasmyth Station", + "Currie Enterprise", + "McArthur Plant", + "Lundwall City", + "Tshang Enterprise", + "Mach Dock", + "Wellman Gateway", + "Moisuc Refinery", + "Boe Enterprise", + "Gelfand Survey", + "Artyukhin Ring", + "Aitken Vision", + "Laphrian Shipyard", + "Crook Orbital", + "Rand City", + "Morgan Terminal", + "Oswald Platform", + "Aksyonov Platform", + "Coney Arena", + "Roberts Hub", + "Ayerdhal City", + "Derleth Orbital", + "Maire Gateway", + "Dedman Gateway", + "Bailey Ring", + "Humphreys Enterprise", + "Kandel Ring", + "Polya Enterprise", + "Rozhdestvensky Station", + "Cameron Survey", + "Shuttleworth Terminal", + "Yu Port", + "Bolger Vision", + "Alpers Refinery", + "Goeschke Station", + "Stebler Mines", + "Duke Hub", + "Shepard Ring", + "Cormack Orbital", + "Harris Platform", + "Fung Outpost", + "Ore Terminal", + "McDaniel Station", + "Ellison Station", + "Hennepin Enterprise", + "Luiken Port", + "Cochrane Terminal", + "McDonald Port", + "Bykovsky Ring", + "Vaucanson Settlement", + "Nicollier Ring", + "Carrier Dock", + "DG-1 Refinery", + "Blackman Terminal", + "Proteus Orbital", + "Katzenstein Settlement", + "Porta", + "Spedding Orbital", + "Anders Orbital", + "Mohmand Dock", + "Maler Hub", + "Scott Settlement", + "Sarich Port", + "Tyurin Port", + "Reisman Station", + "Fulton Landing", + "DENIS FILIPPOV", + "Rattus High", + "Port Sippar", + "Amar Station", + "Hennen City", + "Cabrera Dock", + "Haller Port", + "Pennington City", + "Foda Station", + "Stebler City", + "Gibson Settlement", + "Strekalov Dock", + "Behnken Terminal", + "Euler Port", + "Archimedes Hub", + "Ross Dock", + "Blalock Orbital", + "Pavlov Settlement", + "Galileo", + "Stein Platform", + "Beatty Landing", + "Galiano Plant", + "Rangarajan's Base", + "Jemison Refinery", + "Solo Orbiter", + "Brunel Station", + "Brendan Gateway", + "Godel Dock", + "Slipher Vision", + "EG Main HQ", + "Crown Orbital", + "Crown City", + "Watt Ring", + "Coye Orbital", + "Tokubei Holdings", + "Haberlandt Orbital", + "Bernard Colony", + "Meade Ring" + ] + }, + "greatestDistanceFromStart": 9017.2195143253, + "creditsEarned": 542823, + "bodiesCount": 0, + "scanSoldLevels": { + "lev_0": 647, + "lev_1": 489, + "lev_2": 132, + "lev_3": 0 + }, + "latestPayouts": [ + { + "market": "Port Sippar", + "value": 3218 + }, + { + "market": "Quimper Ring", + "value": 63035 + }, + { + "market": "Rangarajan's Base", + "value": 141702 + }, + { + "market": "Galiano Plant", + "value": 59372 + }, + { + "market": "Beatty Landing", + "value": 3424 + } + ], + "highestPayout": 34942, + "lastVisitedStarSystems": [ + "CD-58 538", + "Iota Horologii", + "CD-58 538", + "Mitra", + "Ennead" + ], + "bodiesSoldCount": 1268, + "bodiesFirstDiscovered": 26 + }, + "ship": { + "spend": { + "ships": 8227344, + "fuel": 160669, + "modules": 15615586, + "ammo": 232942, + "repair": 909596 + }, + "fuel_units": { + "purchased": 0, + "scooped": 2232 + }, + "insurance": { + "claims": 24, + "value": 2714138 + } + }, + "wealth": { + "maxCredits": 23883052 + }, + "trade": { + "marketIds": [ + "3228160256", + "3228321792", + "3228393472", + "3228129280", + "3228062976", + "3227948288", + "3227868160", + "3228192000", + "3228189952", + "3228190208", + "3228191232", + "3228190464", + "3228190720", + "3228244480", + "3228249088", + "3228264192", + "3228252160", + "3228251904", + "3228190976", + "3228191488", + "3228249344", + "3227868416", + "3228248064", + "3228470784", + "3228244736", + "3228471040", + "3228339968", + "3228340224", + "3228244224", + "3228247808", + "3228329472", + "3228390400", + "3223529472", + "128129272", + "3223288832", + "3228081408", + "3228081152", + "3227955968", + "3227957248", + "3228063232", + "3228028672", + "3227998208", + "3227998464", + "3228066560", + "128134648", + "128154360", + "3228040192", + "128153848", + "3228064768", + "3228065024", + "3228064256", + "3227919360", + "128169976", + "3228064000", + "128073720", + "3228077824", + "128073464", + "3228120576" + ], + "furthest": { + "distance": 99.480201783445, + "origin": 128129272, + "destination": "3228390400" + }, + "largestProfit": { + "value": 171720, + "commodity": "Beryllium", + "qty": 120, + "marketId": "3228081152" + }, + "largestProfitPerItem": { + "value": 1433, + "commodity": "Beryllium", + "marketId": "3228081152" + }, + "count": 429, + "qty": 22410, + "profit": 14759658, + "totalDistance": 198621.73693075 + }, + "mining": { + "largestProfit": { + "value": 0, + "commodity": 0, + "qty": 0, + "marketId": 0 + }, + "largestProfitPerItem": { + "value": 0, + "commodity": 0, + "marketId": 0 + }, + "count": 0, + "qty": 0, + "profit": 0, + "converted": { + "qty": 0 + } + }, + "blackMarket": { + "marketIds": [ + "3227868160", + "3228338688", + "3228189952", + "3228247808", + "3228390144", + "128130296" + ], + "furthest": { + "distance": 69224.099624264, + "origin": 0, + "destination": "3228338688" + }, + "largestProfit": { + "value": 132005, + "commodity": "OnionHead", + "qty": 17, + "marketId": "3228390144" + }, + "largestProfitPerItem": { + "value": 13130, + "commodity": "MotronaExperienceJelly", + "marketId": "128130296" + }, + "count": 13, + "qty": 67, + "profit": 292429, + "totalDistance": 556021.41706887 + }, + "stolenGoods": { + "largestProfit": { + "value": 65650, + "commodity": "MotronaExperienceJelly", + "qty": 5, + "marketId": "128130296" + }, + "largestProfitPerItem": { + "value": 13130, + "commodity": "MotronaExperienceJelly", + "marketId": "128130296" + }, + "count": 10, + "qty": 38, + "profit": 157238 + }, + "combat": { + "bounty": { + "highestClaimed": 134706, + "qty": 239, + "value": 1215158 + }, + "bond": { + "qty": 223, + "value": 1559000 + } + }, + "crime": { + "fine": { + "qty": 11, + "value": 135334, + "factions": [] + }, + "bounty": { + "highest": { + "value": 0, + "faction": 0, + "systemId": 0 + }, + "qty": 0, + "value": 0, + "factions": [] + }, + "stolenCargo": { + "qty": 75, + "value": 442840 + } + }, + "PVP": { + "kills": { + "ranks": { + "r0": 2, + "r1": 1, + "r2": 2, + "r3": 0, + "r4": 1, + "r5": 0, + "r6": 0, + "r7": 0, + "r8": 0 + } + } + }, + "NCP": { + "kills": { + "ranks": { + "r0": 2, + "r1": 4, + "r2": 2, + "r3": 3, + "r4": 1, + "r5": 0, + "r6": 0, + "r7": 0, + "r8": 0 + } + } + }, + "prealloc": true, + "ranks": { + "combat": { + "1": { + "ts": 1417719389, + "gt": 144380 + }, + "2": { + "ts": 1419164701, + "gt": 328001 + }, + "3": { + "ts": 1419789595, + "gt": 381168 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "crime": { + "1": { + "ts": 0, + "gt": 0 + }, + "2": { + "ts": 0, + "gt": 0 + }, + "3": { + "ts": 0, + "gt": 0 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "explore": { + "1": { + "ts": 1416679505, + "gt": 7340 + }, + "2": { + "ts": 1416773896, + "gt": 32330 + }, + "3": { + "ts": 1425813076, + "gt": 645416 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "trade": { + "1": { + "ts": 1417041602, + "gt": 57777 + }, + "2": { + "ts": 1417208591, + "gt": 78181 + }, + "3": { + "ts": 1417804896, + "gt": 154613 + }, + "4": { + "ts": 1421439724, + "gt": 490202 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "federation": { + "1": { + "ts": 1418494995, + "gt": 227112 + }, + "2": { + "ts": 1418496671, + "gt": 227112 + }, + "3": { + "ts": 1419692207, + "gt": 369093 + }, + "4": { + "ts": 1420382992, + "gt": 418109 + }, + "5": { + "ts": 1437243056, + "gt": 847776 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "empire": { + "1": { + "ts": 1437243056, + "gt": 847776 + }, + "2": { + "ts": 0, + "gt": 0 + }, + "3": { + "ts": 0, + "gt": 0 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + } + }, + "lastModulesBought": [ + { + "market": "EG Main HQ", + "module": "Hpt_ChaffLauncher_Tiny", + "value": 8500 + }, + { + "market": "Godel Dock", + "module": "Int_DockingComputer_Standard", + "value": 4500 + }, + { + "market": "Quimper Ring", + "module": "Hpt_ElectronicCountermeasure_Tiny", + "value": 12500 + }, + { + "market": "Quimper Ring", + "module": "Decal_Combat_Competent", + "value": 0 + }, + { + "market": "Quimper Ring", + "module": "Int_HullReinforcement_Size4_Class2", + "value": 195000 + } + ], + "illegalGoods": { + "largestProfit": { + "value": 132005, + "commodity": "OnionHead", + "qty": 17, + "marketId": "3228390144" + }, + "largestProfitPerItem": { + "value": 13130, + "commodity": "MotronaExperienceJelly", + "marketId": "128130296" + }, + "count": 10, + "qty": 45, + "profit": 239863 + }, + "NPC": { + "kills": { + "ranks": { + "r1": 14, + "r3": 17, + "r2": 14, + "r0": 3, + "r4": 12, + "r5": 13, + "rArray": 2, + "r8": 3, + "r7": 2, + "r6": 5 + } + } + }, + "vanishCounters": { + "amongPeers": 5, + "notInDanger": 5, + "isNotDying": 2 + } + }, + "ship": { + "name": "CobraMkIII", + "modules": { + "MediumHardpoint1": { + "module": { + "id": 128049460, + "name": "Hpt_MultiCannon_Gimbal_Medium", + "value": 57000, + "unloaned": 57000, + "free": false, + "health": 991630, + "on": true, + "priority": 1, + "ammo": { + "clip": 90, + "hopper": 2100 + } + } + }, + "MediumHardpoint2": { + "module": { + "id": 128049386, + "name": "Hpt_PulseLaser_Gimbal_Medium", + "value": 35400, + "unloaned": 35400, + "free": false, + "health": 998456, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "SmallHardpoint1": { + "module": { + "id": 128049385, + "name": "Hpt_PulseLaser_Gimbal_Small", + "value": 6600, + "unloaned": 6600, + "free": false, + "health": 982270, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "SmallHardpoint2": { + "module": { + "id": 128049459, + "name": "Hpt_MultiCannon_Gimbal_Small", + "value": 14250, + "unloaned": 14250, + "free": false, + "health": 980979, + "on": true, + "priority": 0, + "ammo": { + "clip": 90, + "hopper": 2100 + } + } + }, + "TinyHardpoint1": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 8500, + "free": false, + "health": 987029, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "TinyHardpoint2": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 8500, + "free": false, + "health": 997627, + "on": true, + "priority": 2, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "Decal1": { + "module": { + "id": 128667738, + "name": "Decal_Combat_Competent", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Decal2": { + "module": { + "id": 128667655, + "name": "Decal_Skull3", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Decal3": { + "module": { + "id": 128667655, + "name": "Decal_Skull3", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PaintJob": { + "module": { + "id": 128666731, + "name": "PaintJob_CobraMkIII_Stripe2_03", + "value": 0, + "health": 1000000, + "on": true, + "priority": 1, + "free": true, + "unloaned": 0 + } + }, + "Armour": { + "module": { + "id": 128049282, + "name": "CobraMkIII_Armour_Grade3", + "value": 341746, + "unloaned": 341746, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PowerPlant": { + "module": { + "id": 128064045, + "name": "Int_Powerplant_Size4_Class3", + "value": 178898, + "unloaned": 178898, + "free": false, + "health": 985627, + "on": true, + "priority": 1 + } + }, + "MainEngines": { + "module": { + "id": 128064082, + "name": "Int_Engine_Size4_Class5", + "value": 1610080, + "unloaned": 1610080, + "free": false, + "health": 985096, + "on": true, + "priority": 0 + } + }, + "FrameShiftDrive": { + "module": { + "id": 128064117, + "name": "Int_Hyperdrive_Size4_Class5", + "value": 1610080, + "unloaned": 1610080, + "free": false, + "health": 986544, + "on": true, + "priority": 3 + } + }, + "LifeSupport": { + "module": { + "id": 128064149, + "name": "Int_LifeSupport_Size3_Class2", + "value": 10133, + "free": false, + "health": 982372, + "on": true, + "priority": 0, + "unloaned": 10133 + } + }, + "PowerDistributor": { + "module": { + "id": 128064192, + "name": "Int_PowerDistributor_Size3_Class5", + "value": 158331, + "free": false, + "health": 988557, + "on": true, + "priority": 1, + "unloaned": 158331 + } + }, + "Radar": { + "module": { + "id": 128064229, + "name": "Int_Sensors_Size3_Class2", + "value": 10133, + "unloaned": 10133, + "free": false, + "health": 986366, + "on": true, + "priority": 1 + } + }, + "FuelTank": { + "module": { + "id": 128064349, + "name": "Int_FuelTank_Size4_Class3", + "value": 24734, + "health": 1000000, + "on": true, + "priority": 1, + "free": false, + "unloaned": 24734 + } + }, + "Slot01_Size4": { + "module": { + "id": 128668544, + "name": "Int_HullReinforcement_Size4_Class2", + "value": 195000, + "unloaned": 195000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot02_Size4": { + "module": { + "id": 128064314, + "name": "Int_ShieldCellBank_Size4_Class2", + "value": 28373, + "unloaned": 28373, + "free": false, + "health": 989647, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 2 + } + } + }, + "Slot03_Size4": { + "module": { + "id": 128064274, + "name": "Int_ShieldGenerator_Size4_Class2", + "value": 59633, + "unloaned": 59633, + "free": false, + "health": 984110, + "on": true, + "priority": 1 + } + }, + "Slot04_Size2": { + "module": { + "id": 128668540, + "name": "Int_HullReinforcement_Size2_Class2", + "value": 36000, + "unloaned": 36000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot05_Size2": { + "module": { + "id": 128666709, + "name": "Int_FSDInterdictor_Size2_Class2", + "value": 100800, + "unloaned": 100800, + "free": false, + "health": 981776, + "on": true, + "priority": 3 + } + }, + "Slot06_Size2": { + "module": { + "id": 128049549, + "name": "Int_DockingComputer_Standard", + "value": 4500, + "unloaned": 4500, + "free": false, + "health": 998583, + "on": true, + "priority": 0 + } + } + }, + "value": { + "hull": 235787, + "modules": 4498691, + "cargo": 0, + "total": 4734478, + "unloaned": 4498691 + }, + "free": false, + "health": { + "hull": 992097, + "shield": 1000000, + "shieldup": true + }, + "wear": { + "dirt": 12809, + "fade": 398, + "tear": 40977, + "game": 11233 + }, + "cockpitBreached": false, + "oxygenRemaining": 450000, + "fuel": { + "capacity": 16, + "lvl": 13.269154 + }, + "reserve": { + "lvl": 0.817266 + }, + "cargo": { + "capacity": 0, + "qty": 0, + "items": [] + }, + "passengers": [], + "refinery": null + }, + "ships": { + "0": { + "name": "SideWinder", + "station": { + "id": "3228338688", + "name": "Nicollet City" + }, + "starsystem": { + "id": "8055378940618", + "name": "Chang Yeh", + "systemaddress": "8055378940618" + } + }, + "2": { + "name": "CobraMkIII", + "station": { + "id": "3223873280", + "name": "Meade Ring" + }, + "starsystem": { + "id": "63318", + "name": "CD-58 538", + "systemaddress": "5031721931474" + } + } + } +} \ No newline at end of file diff --git a/utils/src/test/resources/edce/edce6.json b/utils/src/test/resources/edce/edce6.json new file mode 100644 index 0000000..174b86d --- /dev/null +++ b/utils/src/test/resources/edce/edce6.json @@ -0,0 +1,2503 @@ +{ + "commander": { + "id": 126367, + "name": "MoHax", + "credits": 23317276, + "debt": 0, + "currentShipId": 2, + "alive": true, + "docked": true, + "rank": { + "combat": 3, + "trade": 4, + "explore": 3, + "crime": 0, + "service": 0, + "empire": 0, + "federation": 2, + "power": 3 + } + }, + "lastSystem": { + "id": "7034", + "name": "Iota Horologii", + "faction": "Federation" + }, + "lastStarport": { + "id": "3223721472", + "name": "Bessemer Station", + "faction": "Federation", + "ships": { + "shipyard_list": { + "CobraMkIII": { + "id": 128049279, + "name": "CobraMkIII", + "basevalue": 379718 + }, + "Adder": { + "id": 128049267, + "name": "Adder", + "basevalue": 87808 + }, + "Type6": { + "id": 128049285, + "name": "Type6", + "basevalue": 1045945 + }, + "SideWinder": { + "id": 128049249, + "name": "SideWinder", + "basevalue": 32000 + }, + "Eagle": { + "id": 128049255, + "name": "Eagle", + "basevalue": 44800 + }, + "Hauler": { + "id": 128049261, + "name": "Hauler", + "basevalue": 52720 + }, + "Viper": { + "id": 128049273, + "name": "Viper", + "basevalue": 142931 + } + }, + "unavailable_list": [] + } + }, + "stats": { + "game_time": 850655, + "missions": { + "courier": { + "missionsAccepted": 64, + "furthest": { + "distance": 9.8418152860638, + "origin": 3228189952, + "destination": "3227868416" + }, + "highestEarnings": { + "value": 0, + "distance": 0, + "origin": 0, + "destination": 0, + "faction": 0 + }, + "missionsCompleted": 36, + "creditsEarned": -9119, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 1109, + "faction": "Defence Force of LHS 1541", + "type": "CourierLegal" + }, + { + "value": 1018, + "faction": "Defence Force of LHS 1541", + "type": "CourierLegal" + }, + { + "value": 487, + "faction": "Defence Force of LHS 1541", + "type": "CourierLegal" + } + ] + }, + "deliver": { + "missionsAccepted": 105, + "furthest": { + "distance": 9.8944626243672, + "origin": 3228393472, + "destination": "3228115456" + }, + "highestEarnings": { + "value": 0, + "commodity": 0, + "qty": 0, + "distance": 0, + "origin": 0, + "destination": 0, + "faction": 0 + }, + "missionsCompleted": 98, + "creditsEarned": 1164220, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 1988, + "faction": "Crimson Energy Systems", + "type": "DeliveryLegal" + }, + { + "value": 107316, + "faction": "Gold Netcoms Commodities", + "type": "DeliveryLegal" + }, + { + "value": 65546, + "faction": "Allied LHS 1507 Dominion", + "type": "DeliveryLegal" + } + ] + }, + "collect": { + "missionsAccepted": 175, + "furthest": { + "distance": 0, + "origin": 0, + "destination": 0 + }, + "highestEarnings": { + "value": 0, + "commodity": 0, + "qty": 0, + "distance": 0, + "origin": 0, + "destination": 0, + "faction": 0 + }, + "missionsCompleted": 0, + "creditsEarned": 0, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 22145, + "faction": "Defence Force of LHS 1541", + "type": "Collect" + }, + { + "value": 3420, + "faction": "Defence Force of LHS 1541", + "type": "Collect" + }, + { + "value": 34772, + "faction": "Wolf 1323 Life Corp.", + "type": "Collect" + } + ] + }, + "assassin": { + "highestEarnings": { + "value": 199640, + "origin": "3228064512", + "faction": 0 + }, + "missionsCompleted": 25, + "creditsEarned": 1147873, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 36176, + "faction": "United Euryale First", + "type": "Massacre" + }, + { + "value": 99646, + "faction": "United Euryale First", + "type": "Assassinate" + }, + { + "value": 42589, + "faction": "United Euryale First", + "type": "Assassinate" + } + ], + "missionsAccepted": 52 + }, + "bountyHunter": { + "highestEarnings": { + "value": 0, + "origin": 0, + "faction": 0 + }, + "missionsCompleted": 0, + "creditsEarned": 0, + "missionsFailed": 0, + "latestCompleted": [], + "missionsAccepted": 0 + } + }, + "explore": { + "hyperspaceJumps": 1569, + "totalHyperspaceDistance": 26887.632297331, + "visited": { + "starsystem": [ + "GCRV 4654", + "FK5 2550", + "LHS 1914", + "Siren", + "Geawenki", + "Thiin", + "LP 307-8", + "StKM 1-626", + "BD+30 1423", + "LHS 6103", + "LHS 1814", + "LHS 1794", + "Nandjabinja", + "Susanoo", + "Wong Sher", + "74 k Orionis", + "BD+08 1303", + "Iansan", + "LHS 1857", + "Yin Sector HW-W b1-3", + "Nihursaga", + "Hahgwe", + "Alzirr", + "Toog", + "Yin Sector ZE-A d120", + "Chang Yeh", + "G 108-26", + "HR 2251", + "LHS 1838", + "Breksta", + "Amait", + "Cosi", + "Yggdrajang", + "LTT 17868", + "Yin Sector EQ-Y b2", + "Yin Sector EQ-Y b1", + "Zandu", + "Flech", + "Julanggarri", + "Ross 878", + "Kamchata", + "Tamalhikas", + "Katocudatta", + "Lumbla", + "Tascheter Sector FG-X b1-6", + "Jita Ten", + "71 Orionis", + "Tao Ti", + "LHS 1743", + "LFT 392", + "Ndozins", + "LHS 21", + "Geras", + "G 85-36", + "LP 417-213", + "V1402 Orionis", + "MCC 467", + "Suyarang", + "Chonost", + "Fular", + "LTT 11519", + "Tote", + "Psi Tauri", + "Wolf 1301", + "Tascheter Sector MS-T a3-2", + "Achlys", + "BD+14 831", + "Kungurutii", + "Ross 49", + "Dewikum", + "Yin Sector DQ-Y b1", + "Tascheter Sector FG-X b1-1", + "Tascheter Sector EG-X b1-1", + "Cahuile", + "Tascheter Sector WE-Q a5-1", + "Tascheter Sector DG-O a6-0", + "LP 771-72", + "Kappa Fornacis", + "LP 831-72", + "Zeus", + "Tascheter Sector HM-M a7-2", + "Tascheter Sector BL-O a6-1", + "Tascheter Sector YE-Q a5-0", + "Pachanwen", + "Ranginui", + "LHS 1928", + "LP 605-37", + "Sekhemet", + "Hlocidirus", + "Fionn", + "LHS 1920", + "Tascheter Sector GW-W c1-18", + "LFT 377", + "Kunlun", + "Tascheter Sector HM-M a7-1", + "LTT 1349", + "LFT 179", + "Jibitoq", + "BD-18 394", + "Autahenetsi", + "Ceti Sector AV-Y c17", + "Tetekhe", + "Ceti Sector FW-V b2-5", + "LTT 1141", + "Bandizel", + "Artemis", + "LHS 1409", + "Tascheter Sector EG-Y d106", + "Tascheter Sector BG-O a6-1", + "Tascheter Sector WZ-P a5-1", + "LHS 1573", + "G 100-4", + "V491 Persei", + "Sui Xing", + "Bonde", + "Bhadaba", + "Uchaluroja", + "Manamaya", + "LHS 197", + "Ashandras", + "LTT 11455", + "Al-Qaum", + "Herishep", + "LTT 11503", + "Ross 592", + "Itza", + "Capukanga", + "LHS 1483", + "LP 356-106", + "BD+24 543", + "39 Tauri", + "KP Tauri", + "Wolf 1278", + "Lowne 1", + "Meri", + "Apollo", + "LHS 1516", + "Wolf 1323", + "Marduk", + "LHS 1541", + "Wolf 1325", + "G 95-22", + "LHS 1507", + "Bao Yan Luo", + "Tascheter Sector HH-V b2-5", + "G 173-39", + "G 173-53", + "Theta Persei", + "LHS 1446", + "Lorana", + "Anlave", + "Wolf 46", + "V388 Cassiopeiae", + "Zeessze", + "Eta Cassiopeiae", + "Groombridge 34", + "Ross 248", + "Ross 730", + "Altair", + "Sol", + "Alpha Centauri", + "LHS 18", + "Bonitou", + "LTT 10482", + "Cephei Sector BA-A d103", + "Cephei Sector DQ-Y b4", + "Iota Cassiopeiae", + "Funji", + "T'ienimi", + "HIP 12512", + "Col 285 Sector QT-Q c5-14", + "HIP 10466", + "Col 285 Sector QT-Q c5-9", + "Col 285 Sector BH-J b10-4", + "Col 285 Sector BH-J b10-2", + "Col 285 Sector PT-Q c5-13", + "Col 285 Sector WA-L b9-0", + "HR 567", + "Col 285 Sector MY-Q c5-3", + "Col 285 Sector MY-Q c5-15", + "Undalibaluf", + "Col 285 Sector GY-F b12-4", + "BD+65 1984", + "Col 285 Sector HY-F b12-0", + "HIP 3509", + "Nootkena", + "Inovandar", + "Tegidana", + "BD+44 1040", + "LHS 1765", + "Selniang", + "Skuta", + "Gani", + "Enuma", + "Gkutat", + "Djinbin", + "Col 285 Sector NG-H a26-5", + "Col 285 Sector MA-J a25-4", + "Col 285 Sector SG-H a26-2", + "Col 285 Sector JB-N c7-7", + "Col 285 Sector JB-N c7-4", + "Synuefe XT-D a94-2", + "h2 Puppis", + "Synuefe BP-D a94-1", + "O Puppis", + "Synuefe KB-A a96-2", + "HIP 40430", + "Synuefe WR-H d11-48", + "Synuefe WQ-Z b47-5", + "Gliese 3434", + "Synuefe YK-N c23-14", + "Canopus", + "Synuefe ZK-N c23-22", + "Synuefe BH-Z b47-1", + "HIP 34755", + "HIP 35652", + "HIP 36489", + "47 G. Carinae", + "Synuefe BM-Z b47-8", + "Q Carinae", + "Synuefe DW-L c24-30", + "Synuefe IS-X b48-3", + "Chi Carinae", + "Synuefe HX-X b48-2", + "HIP 40929", + "HIP 42504", + "HIP 42459", + "E Velorum", + "Synuefe JI-W b49-12", + "HIP 42374", + "HR 3503", + "HIP 42823", + "HR 3448", + "HIP 42726", + "Omicron Velorum", + "HIP 42715", + "IC 2391 Sector LI-S b4-10", + "IC 2391 Sector SJ-Q b5-10", + "HIP 43433", + "IC 2391 Sector UJ-Q b5-8", + "IC 2391 Sector VJ-Q b5-1", + "HIP 43015", + "IC 2391 Sector MC-V c2-14", + "Synuefe GL-S b51-9", + "Synuefe LR-Q b52-2", + "V473 Carinae", + "Synuefe JE-E d13-115", + "Synuefe RX-O b53-7", + "Synuefe JE-E d13-94", + "Synuefe WD-N b54-1", + "Tureis", + "Synuefe BK-L b55-4", + "Synuefe CV-E c28-23", + "Synuefe OK-C d14-6", + "HIP 47751", + "HIP 48127", + "Synuefe KM-G b58-4", + "Synuefe XO-L a117-1", + "Synuefe AA-K a118-6", + "Wregoe KZ-S b58-7", + "HR 4091", + "Praea Euq SG-A b1", + "Praea Euq XM-Y b2", + "Praea Euq ZM-Y b1", + "Praea Euq MA-A d153", + "Praea Euq ZR-Y b0", + "Praea Euq CM-Y c9", + "HD 92405", + "Praea Euq FO-V b2-1", + "Praea Euq KU-T b3-5", + "Praea Euq PL-Y d85", + "Praea Euq TG-Q b5-3", + "HD 95633", + "Praea Euq ZM-O b6-0", + "Praea Euq LD-V c2-20", + "Praea Euq UR-W d1-63", + "Praea Euq EY-M b7-4", + "Praea Euq GJ-L b8-1", + "Praea Euq HJ-L b8-4", + "Praea Euq VR-W d1-80", + "Praea Euq RZ-R c4-2", + "Praea Euq JZ-J b9-0", + "Pro Eurl AI-I b10-3", + "Pro Eurl EW-W d1-55", + "Pro Eurl KD-S c4-7", + "Pro Eurl EW-W d1-39", + "HD 98557", + "Pro Eurl XR-I b10-0", + "Pro Eurl AN-I b10-3", + "Pro Eurl PJ-Q c5-12", + "Pro Eurl IC-V d2-40", + "Pro Eurl JC-V d2-35", + "Pro Eurl KZ-E b12-2", + "NGC 3532 Sector ZK-X d1-59", + "Pro Eurl NK-D b13-0", + "Pro Eurl HH-V d2-32", + "Pro Eurl JU-D b13-0", + "HD 100476", + "Pro Eurl LU-D b13-0", + "HD 99573", + "HD 99081", + "Pro Eurl IO-F b12-1", + "NGC 3532 Sector YP-X d1-24", + "NGC 3532 Sector EJ-M b9-1", + "NGC 3532 Sector DC-T c4-9", + "NGC 3532 Sector AL-X d1-30", + "NGC 3532 Sector PF-K b10-0", + "NGC 3532 Sector RA-K b10-1", + "NGC 3532 Sector BL-X d1-48", + "NGC 3532 Sector FR-V d2-53", + "NGC 3532 Sector EI-G b12-2", + "NGC 3532 Sector FI-G b12-0", + "NGC 3532 Sector FI-G b12-4", + "HD 98767", + "NGC 3532 Sector PU-C b14-0", + "NGC 3532 Sector RP-C b14-5", + "HD 98896", + "NGC 3532 Sector WV-A b15-4", + "NGC 3532 Sector YK-N c7-10", + "NGC 3532 Sector ID-X b16-2", + "NGC 3532 Sector LO-V b17-2", + "Pro Eurl BW-K b22-1", + "Pro Eurl AB-L b22-2", + "Pro Eurl OS-U e2-4", + "Pro Eurl CQ-P d5-68", + "Pro Eurl GR-D c12-2", + "Pro Eurl CQ-P d5-27", + "Pro Eurl OI-H b24-3", + "Pro Eurl CQ-P d5-21", + "Pro Eurl MC-J b23-2", + "Pro Eurl DQ-P d5-63", + "Pro Eurl ZJ-R d4-4", + "Pro Eurl NC-J b23-2", + "HD 99218", + "Pro Eurl JR-D c12-12", + "Pro Eurl DQ-P d5-39", + "Pro Eurl ZU-D b26-2", + "Pro Eurl HW-N d6-37", + "Pro Eurl HH-A b28-3", + "Pro Eurl QD-A c14-12", + "Pro Eurl UJ-Y c14-2", + "Pro Eurl LC-M d7-2", + "HD 104214", + "Pro Eurl WK-T b31-2", + "Pro Eurl ZP-W c15-1", + "Pro Eurl KN-P b33-2", + "Pro Eurl GR-U c16-9", + "Pro Eurl MN-P b33-1", + "Pro Eurl TO-N b34-0", + "Pro Eurl WJ-N b34-3", + "Pro Eurl XJ-N b34-6", + "Pro Eurl UD-P b33-0", + "Pro Eurl BF-N b34-4", + "Pro Eurl CF-N b34-1", + "Pro Eurl DF-N b34-2", + "Pro Eurl UD-K d8-47", + "Pro Eurl UD-K d8-85", + "Pro Eurl KG-L b35-3", + "Pro Eurl UD-K d8-73", + "Pro Eurl MG-L b35-5", + "Pro Eurl PB-L b35-1", + "Prua Dryoae UQ-Q a73-3", + "Prua Dryoae CS-O a74-1", + "Prua Dryoae FH-T b37-5", + "HD 101131", + "Prua Dryoae WF-L d9-50", + "Prua Dryoae LN-R b38-3", + "Prua Dryoae PT-P b39-7", + "Prua Dryoae MN-S e4-12", + "Prua Dryoae IJ-C a81-1", + "Prua Dryoae CD-E a80-3", + "Prua Dryoae YH-E a80-0", + "Pro Eurl ZJ-I d9-63", + "Pro Eurl HA-E b39-0", + "Pro Eurl ZJ-I d9-0", + "Pro Eurl HA-E b39-4", + "Pro Eurl ZJ-I d9-3", + "Pro Eurl ZD-G b38-0", + "Pro Eurl XI-G b38-0", + "HD 102728", + "Pro Eurl XI-G b38-1", + "Pro Eurl EK-E b39-4", + "Pro Eurl AK-I d9-55", + "Pro Eurl EA-P c19-3", + "Prua Dryoae LU-A a82-0", + "Prua Dryoae AM-J d10-40", + "Prua Dryoae AM-J d10-53", + "Prua Dryoae AM-J d10-5", + "Prua Dryoae AG-M b41-0", + "Prua Dryoae GM-K b42-1", + "Prua Dryoae HM-K b42-0", + "Prua Dryoae UU-R a86-3", + "Prua Dryoae CM-J d10-3", + "Prua Dryoae HJ-R c21-6", + "Prua Dryoae BV-R a86-5", + "Prua Dryoae DV-R a86-1", + "Prua Dryoae IJ-R c21-9", + "HD 101035", + "Prua Dryoae JJ-R c21-7", + "Swoiphs PB-Q a87-1", + "Swoiphs WH-O a88-5", + "Sifeae JD-V b43-0", + "Swoiphs BI-O a88-2", + "Sifeae LD-V b43-2", + "Sifeae VR-J c22-14", + "Sifeae RJ-T b44-5", + "Sifeae ZK-P e5-0", + "Sifeae UJ-T b44-2", + "Sifeae XU-R b45-3", + "Sifeae YU-R b45-6", + "Sifeae DB-Q b46-2", + "Sifeae EB-Q b46-2", + "Sifeae JH-O b47-5", + "HD 100137", + "Sifeae LH-O b47-3", + "NGC 4463 Sector TT-Z d42", + "NGC 4463 Sector QT-C b2-6", + "NGC 4463 Sector VZ-A b3-3", + "NGC 4463 Sector TT-Z d46", + "NGC 4463 Sector MS-Z c1-16", + "NGC 4463 Sector MS-Z c1-18", + "NGC 4463 Sector YZ-X d1-24", + "NGC 4463 Sector JX-V b5-2", + "NGC 4463 Sector ZZ-X d1-86", + "NGC 4463 Sector ZZ-X d1-82", + "NGC 4463 Sector VE-S b7-1", + "NGC 4463 Sector XZ-R b7-3", + "NGC 4463 Sector ZZ-X d1-89", + "NGC 4463 Sector ZZ-X d1-17", + "NGC 4463 Sector MH-H a16-1", + "NGC 4463 Sector GB-U c4-1", + "NGC 4463 Sector PX-N b9-2", + "NGC 4463 Sector GB-W d2-41", + "NGC 4463 Sector YJ-K b11-0", + "NGC 4463 Sector GB-W d2-37", + "NGC 4463 Sector AF-T a23-3", + "HD 101794", + "NGC 4463 Sector HL-R a24-1", + "NGC 4463 Sector KW-G b13-6", + "NGC 4463 Sector XD-M a27-1", + "NGC 4463 Sector ZD-M a27-2", + "NGC 4463 Sector JQ-I a29-1", + "NGC 4463 Sector MH-U d3-27", + "NGC 4463 Sector XN-D a32-2", + "NGC 4463 Sector DU-B a33-2", + "NGC 4463 Sector NG-Y a34-1", + "NGC 4463 Sector RN-S d4-3", + "NGC 4463 Sector ZS-U a36-3", + "NGC 4463 Sector GZ-S a37-0", + "NGC 4463 Sector OA-R a38-0", + "NGC 4463 Sector SL-P a39-1", + "NGC 4609 Sector JU-Y a5-1", + "NGC 4609 Sector SG-V a7-0", + "NGC 4609 Sector AZ-V b4-0", + "NGC 4609 Sector AK-Z d29", + "NGC 4609 Sector DA-X c2-7", + "NGC 4609 Sector AK-Z d63", + "NGC 4609 Sector AK-Z d17", + "NGC 4609 Sector AK-Z d36", + "NGC 4609 Sector LB-V c3-5", + "NGC 4609 Sector UR-R b6-4", + "NGC 4609 Sector MB-V c3-11", + "NGC 4609 Sector FQ-X d1-64", + "NGC 4609 Sector NB-V c3-9", + "NGC 4609 Sector CY-P b7-4", + "NGC 4609 Sector GQ-X d1-33", + "NGC 4609 Sector FY-P b7-4", + "NGC 4609 Sector GY-P b7-2", + "NGC 4609 Sector QB-V c3-16", + "Aucops TS-O b12-3", + "Blaa Eoq IQ-O b12-2", + "Blaa Eoq OW-M b13-3", + "Blaa Eoq TN-T c6-5", + "Blaa Eoq RH-L b14-4", + "Blaa Eoq UN-T c6-4", + "Blaa Eoq SL-T a30-1", + "Blaa Eoq UL-T a30-1", + "Blaa Eoq XL-T a30-2", + "Blaa Eoq DS-R a31-0", + "Blaa Eoq OU-V d3-3", + "Blaa Eoq MY-P a32-0", + "Blaa Eoq SE-O a33-1", + "Blaa Eoq YK-M a34-2", + "Blaa Eoq AL-M a34-3", + "Blaa Eoq CL-M a34-5", + "Blaa Eoq IR-K a35-0", + "Blaa Eoq QU-V d3-34", + "Blaa Eoq PX-I a36-2", + "Blaa Eoq QU-V d3-38", + "Blaa Eoq RU-V d3-17", + "Blaa Eoq BP-F a38-2", + "Blaa Eoq EP-F a38-3", + "Phylurn AU-Q b18-5", + "Blaa Eoq IP-F a38-4", + "Blaa Eoq LP-F a38-0", + "Blaa Eoq WA-U d4-8", + "Blaa Eoq PP-F a38-2", + "Blaa Eoq RP-F a38-0", + "Blaa Eoq XA-U d4-22", + "HD 99619", + "Blaa Eoq XP-F a38-2", + "Col 240 Sector MX-E a42-1", + "Col 240 Sector HJ-G c11-3", + "Col 240 Sector OX-M b22-1", + "Col 240 Sector PX-M b22-0", + "Col 240 Sector ZD-D a43-3", + "Col 240 Sector YX-E a42-1", + "Col 240 Sector KJ-G c11-4", + "Col 240 Sector DY-E a42-3", + "Col 240 Sector JE-D a43-0", + "Col 240 Sector HY-E a42-1", + "Col 240 Sector JY-E a42-1", + "Col 240 Sector LO-G c11-5", + "Col 240 Sector RJ-Q d5-27", + "Col 240 Sector MO-G c11-10", + "Col 240 Sector SJ-Q d5-51", + "Col 240 Sector SJ-Q d5-46", + "Col 240 Sector ZR-O b21-5", + "Col 240 Sector AS-O b21-3", + "Col 240 Sector OO-G c11-8", + "Col 240 Sector TJ-Q d5-54", + "Col 240 Sector ES-O b21-0", + "Col 240 Sector JY-M b22-0", + "2MASS J11132054-6053363", + "2MASS J11130497-6049452", + "TYC 8959-364-2", + "2MASS J11130472-6047135", + "NGC 3590 MV 4", + "NGC 3590 CLA 15", + "HD 306185", + "2MASS J11123987-6047011", + "NGC 3590 MV 12", + "NGC 3590 Sector UT-R a4-1", + "NGC 3590 Sector BA-A d12", + "Col 240 Sector AB-J b24-0", + "Col 240 Sector GH-H b25-0", + "Col 240 Sector HH-H b25-4", + "Col 240 Sector FW-C c13-7", + "IC 2944 Sector PP-Q b8-0", + "IC 2944 Sector UV-O b9-0", + "IC 2944 Sector VV-O b9-2", + "IC 2944 Sector WV-O b9-0", + "IC 2944 Sector WE-Y d1-26", + "IC 2944 Sector EX-M b10-2", + "IC 2944 Sector FX-M b10-0", + "IC 2944 Sector ER-S c5-0", + "IC 2944 Sector LD-L b11-2", + "IC 2944 Sector SE-J b12-1", + "IC 2944 Sector VP-H b13-0", + "IC 2944 Sector WP-H b13-1", + "IC 2944 Sector KX-Q c6-5", + "IC 2944 Sector CW-F b14-2", + "IC 2944 Sector HR-U d3-13", + "IC 2944 Sector FG-X e1-3", + "IC 2944 Sector QD-P c7-5", + "IC 2944 Sector RO-A b17-0", + "IC 2944 Sector SO-A b17-0", + "IC 2944 Sector TO-A b17-0", + "Statue of Liberty Sector FW-W c1-2", + "Statue of Liberty Sector OY-R b4-1", + "Statue of Liberty Sector LS-T b3-0", + "Statue of Liberty Sector OD-S b4-0", + "Statue of Liberty Sector LX-T b3-2", + "Statue of Liberty Sector DL-Y d25", + "Statue of Liberty Sector FG-Y e5", + "Statue of Liberty Sector PI-S b4-0", + "Statue of Liberty Sector QI-S b4-0", + "Statue of Liberty Sector FW-K a9-1", + "Statue of Liberty Sector IW-K a9-0", + "IC 2944 Sector XH-C a34-0", + "IC 2944 Sector ZH-C a34-0", + "IC 2944 Sector GO-A a35-0", + "IC 2944 Sector GT-A a35-1", + "IC 2944 Sector KO-A a35-1", + "IC 2944 Sector KT-A a35-2", + "IC 2944 Sector MR-U d3-20", + "IC 2944 Sector LI-C a34-0", + "Blua Eoq CI-G a65-0", + "Blua Eoq DL-Y g0", + "Blua Eoq GC-C b33-1", + "Blua Eoq TA-B a68-0", + "Blua Eoq TF-B a68-0", + "Blo Thae QH-U c16-7", + "Blo Thae MV-M b34-2", + "Blo Thae LA-N b34-1", + "NGC 3572 Sector DB-X c1-0", + "NGC 3572 Sector FR-V b2-2", + "NGC 3572 Sector AV-Y c1", + "NGC 3572 Sector EB-X c1-5", + "NGC 3572 Sector IR-V b2-0", + "NGC 3572 Sector FB-X c1-4", + "NGC 3572 Sector YE-A g2", + "NGC 3572 Sector IR-W d1-9", + "NGC 3572 Sector QN-S b4-0", + "Blo Thae BI-I b37-1", + "Blo Thae AP-I d9-17", + "Blo Thae BE-R c18-1", + "Blo Thae AS-I b37-0", + "Blo Thae BS-I b37-0", + "Blo Thae YL-K b36-0", + "Blo Thae BJ-R c18-4", + "Tyriedgoea MO-I d9-2", + "Tyriedgoea MO-I d9-20", + "Tyriedgoea PJ-K b36-1", + "Tyriedgoea II-K d8-12", + "Tyriedgoea IX-N b34-0", + "Tyriedgoea DW-P b33-0", + "Tyriedgoea BB-Q b33-0", + "Tyriedgoea AQ-R b32-0", + "Tyriedgoea DH-M d7-10", + "Tyriedgoea ZU-R b32-0", + "Tyriedgoea VO-T b31-0", + "Tyriedgoea UD-V b30-0", + "Tyriedgoea DH-M d7-2", + "Tyriedgoea LW-Y b28-0", + "Tyriedgoea LX-U e2-0", + "Tyriedgoea JQ-A b28-0", + "Tyriedgoea KQ-A b28-0", + "Tyriedgoea CW-N d6-9", + "Tyriedgoea OL-A b28-0", + "Tyriedgoea PL-A b28-0", + "Tyriedgoea DW-N d6-19", + "Tyriedgoea VR-Y b28-0", + "Tyriedgoea WR-Y b28-0", + "Col 228 Sector CW-V d2-19", + "Col 228 Sector CW-V d2-18", + "Col 228 Sector GC-U d3-3", + "Col 228 Sector PB-G b13-0", + "Col 228 Sector JY-P c6-2", + "Col 228 Sector SB-G b13-0", + "Col 228 Sector UW-F b13-1", + "Col 228 Sector ZC-E b14-1", + "Col 228 Sector KY-P c6-1", + "Col 228 Sector BD-E b14-0", + "Col 228 Sector IE-C b15-1", + "Col 228 Sector KX-T d3-13", + "Col 228 Sector TZ-N c7-4", + "Col 228 Sector NP-A b16-0", + "Col 228 Sector UZ-N c7-5", + "Col 228 Sector VQ-Y b16-0", + "Col 228 Sector ZF-M c8-0", + "Col 228 Sector ZL-Y b16-1", + "Col 228 Sector FN-W b17-1", + "NGC 3324 Sector VI-V b17-1", + "NGC 3324 Sector BP-T b18-1", + "NGC 3324 Sector CP-T b18-0", + "NGC 3324 Sector DS-J c9-8", + "NGC 3324 Sector ME-O a36-0", + "NGC 3324 Sector IY-H c10-1", + "NGC 3324 Sector CX-I a39-0", + "NGC 3324 Sector HD-H a40-2", + "NGC 3324 Sector QT-R d4-3", + "NGC 3324 Sector PJ-F a41-0", + "NGC 3324 Sector VP-D a42-4", + "NGC 3324 Sector RT-R d4-15", + "NGC 3324 Sector DR-B a43-0", + "NGC 3324 Sector FR-B a43-2", + "NGC 3324 Sector IZ-L b22-2", + "NGC 3324 Sector UU-F c11-3", + "NGC 3324 Sector UU-F c11-6", + "Eta Carinae", + "NGC 3324 Sector OU-L b22-0", + "NGC 3324 Sector LO-N b21-0", + "NGC 3324 Sector WU-F c11-4", + "NGC 3324 Sector JI-P b20-1", + "NGC 3324 Sector KI-P b20-1", + "Bleia Eork MW-U b36-1", + "Bleia Eork NW-U b36-0", + "Bleia Eork LQ-W b35-1", + "Bleia Eork VZ-M d8-7", + "Bleia Eork NQ-W b35-1", + "Bleia Eork TK-Y c17-1", + "Bleia Eork JP-Y b34-0", + "Blae Eork KD-A c17-2", + "Blae Eork ZM-Y b34-1", + "Blae Eork WG-A b34-1", + "Blae Eork XG-A b34-1", + "Blae Eork YG-A b34-1", + "Blae Eork BC-A b34-1", + "Blae Eork CH-U e3-4", + "Blae Eork ID-Y b34-0", + "Blae Eork MJ-W b35-1", + "Blae Eork QP-U b36-0", + "Blae Eork XK-W c18-1", + "Blae Eork WK-W c18-0", + "Blae Eork CI-P b39-0", + "Blae Eork GO-N b40-0", + "Blae Eork LU-L b41-1", + "Blae Eork OA-K b42-1", + "Blae Eork JD-R c21-5", + "CPD-58 2648", + "CPD-59 2627", + "2MASS J10443666-5946218", + "Blae Eork OJ-P c22-3", + "Trumpler 16 HG 1462", + "CPD-59 2591", + "Blae Eork QA-B b47-0", + "PCYC 666", + "Blae Eork SA-B b47-0", + "Blae Eork TA-B b47-0", + "2MASS J10442445-5951430", + "Blae Eork YM-H d11-18", + "Blae Eork ZK-N c23-2", + "Blae Eork HI-X b48-0", + "Blae Eork KT-V b49-0", + "Blae Eork NO-V b49-0", + "Blae Eork FR-L c24-2", + "Tr 16 Sector RA-M b8-0", + "2MASS J10432911-6003200", + "Tr 16 Sector DB-X d1-12", + "Tr 16 Sector XG-K b9-0", + "Tr 16 Sector ZG-K b9-0", + "Tr 16 Sector ND-S c4-0", + "Tr 16 Sector EB-X d1-17", + "Tr 16 Sector II-I b10-0", + "Tr 16 Sector LD-I b10-0", + "Tr 16 Sector OO-G b11-0", + "Tr 16 Sector PO-G b11-0", + "Tr 16 Sector QO-G b11-0", + "Tr 16 Sector RO-G b11-0", + "Tr 16 Sector VJ-Q c5-4", + "Tr 16 Sector TO-G b11-0", + "Tr 16 Sector VJ-G b11-0", + "Tr 16 Sector XJ-G b11-0", + "Tr 16 Sector VY-R c4-2", + "Tr 16 Sector NC-V d2-2", + "Tr 14 Sector JM-W d1-10", + "Tr 16 Sector CA-Q c5-7", + "Tr 16 Sector NC-V d2-6", + "Tr 16 Sector GG-O c6-6", + "Tr 14 Sector TY-S c3-12", + "Tr 14 Sector LC-M b7-0", + "Eta Carina Sector HR-W c1-3", + "Eta Carina Sector RT-R b4-0", + "Eta Carina Sector HR-W d1-22", + "Eta Carina Sector KC-V c2-1", + "Eta Carina Sector SJ-Q b5-0", + "Eta Carina Sector RO-Q b5-0", + "2MASS J10442897-5942343", + "Eta Carina Sector NY-Q b5-0", + "Eta Carina Sector KD-R b5-1", + "Tr 14 Sector GD-W a17-1", + "Tr 14 Sector IH-V d2-19", + "Blu Theia ND-Z c27-1", + "Blu Theia LI-Z c27-3", + "Blu Theia LI-Z c27-6", + "Blu Theia QF-Z b55-0", + "Blu Theia RT-Z d13-23", + "Blu Theia HS-Z c27-0", + "Blu Theia KE-B b55-0", + "Blu Theia FY-C b54-0", + "Blu Theia CM-B c27-3", + "Blu Theia XW-E b53-0", + "Blu Theia VB-F b53-0", + "Blu Theia QV-G b52-0", + "Blu Theia LP-I b51-0", + "Blu Theia HJ-K b50-0", + "Blu Theia EO-K b50-0", + "Blu Theia YM-M b49-0", + "Blu Theia UG-O b48-0", + "Blu Theia FM-D d12-9", + "Blu Theia NF-Q b47-0", + "Blu Theia AQ-P e5-1", + "Blu Theia HZ-R b46-0", + "Blu Theia BG-F d11-6", + "Blu Theia BG-F d11-11", + "Blu Theia AG-F d11-4", + "Blu Theia ZH-V b44-0", + "Blu Theia VW-W b43-0", + "Blu Theia TB-X b43-0", + "Blu Theia UK-M c21-1", + "Blu Theia QE-O c20-2", + "Blu Theia WZ-G d10-9", + "Blu Theia PE-O c20-0", + "Blu Theia EJ-C b41-0", + "Blu Theia FE-C b41-0", + "Blu Theia KY-P c19-1", + "Blu Theia QT-I d9-8", + "Blu Theia TW-F b39-0", + "Blu Theia QB-G b39-0", + "Blu Theia PB-G b39-0", + "Blu Theia LQ-H b38-0", + "Blu Theia JV-H b38-0", + "Blu Theia IV-H b38-0", + "Blu Theia HV-H b38-0", + "Blu Theia GV-H b38-0", + "Blu Theia FV-H b38-0", + "Blu Theia CA-I b38-0", + "Blu Theia BA-I b38-0", + "Blu Theia CV-H b38-0", + "Blu Theia DG-G b39-0", + "Blu Theia BD-Q c19-0", + "Blu Theia BG-G b39-0", + "Blu Theia LY-I d9-6", + "Blu Theia SJ-I b38-0", + "Blu Theia ND-K b37-0", + "Blu Theia GS-K d8-5", + "Blu Theia GC-M b36-0", + "Blu Theia DH-M b36-0", + "Blu Theia VU-P b34-0", + "Blu Theia SZ-P b34-0", + "Blu Theia NT-R b33-0", + "Blu Theia KY-R b33-0", + "Blu Theia FS-T b32-0", + "Blu Theia DX-T b32-0", + "Blu Theia CX-T b32-0", + "Blu Theia YX-X c15-0", + "Blu Theia VV-V b31-0", + "Blu Theia XX-X c15-0", + "Blu Theia SR-Z c14-1", + "Blu Theia WV-M d7-1", + "Blu Theia WV-M d7-2", + "Blu Theia QW-Z c14-0", + "Blu Theia CN-B b29-0", + "Blu Theia YG-D b28-0", + "Blu Theia SF-F b27-0", + "Blu Theia QU-O d6-2", + "Blu Theia GP-D c13-0", + "Tyriedgoea BP-Q d5-2", + "Tyriedgoea BP-Q d5-3", + "Tyriedgoea BP-Q d5-0", + "Tyriedgoea BP-Q d5-4", + "Tyriedgoea DK-Q d5-1", + "Blu Theia OZ-G b26-0", + "Blu Theia QU-G b26-0", + "Tyriedgoea HQ-O d6-4", + "Tyriedgoea PG-D c13-1", + "Tyriedgoea JL-O d6-7", + "Tyriedgoea RB-D c13-1", + "Tyriedgoea KY-F b26-0", + "Tyriedgoea JL-O d6-1", + "Tyriedgoea OQ-E c12-0", + "Tyriedgoea CX-H b25-0", + "Tyriedgoea LV-E c12-0", + "Tyriedgoea EF-Q d5-8", + "Tyriedgoea UV-J b24-0", + "Tyriedgoea QP-L b23-0", + "Tyriedgoea MJ-N b22-0", + "Tyriedgoea LJ-N b22-0", + "Tyriedgoea KJ-N b22-0", + "Tyriedgoea FD-P b21-0", + "Tyriedgoea ED-P b21-0", + "Tyriedgoea ZW-Q b20-0", + "Tyriedgoea VQ-S b19-0", + "Tyriedgoea TV-S b19-0", + "Tyriedgoea XD-S d4-0", + "Tyriedgoea QK-U b18-0", + "Tyriedgoea PK-U b18-0", + "Tyriedgoea OK-U b18-0", + "Tyriedgoea LP-U b18-0", + "Tyriedgoea JU-U b18-0", + "Tyriedgoea NB-M c8-1", + "Tyriedgoea BT-W b17-0", + "Tyriedgoea ZS-W b17-0", + "Tyriedgoea RX-T d3-7", + "Tyriedgoea MB-M c8-1", + "Tyriedgoea TM-Y b16-0", + "Tyriedgoea SM-Y b16-0", + "Tyriedgoea QX-T d3-3", + "Tyriedgoea QX-T d3-2", + "Tyriedgoea LV-B b15-0", + "Tyriedgoea KV-B b15-0", + "Tyriedgoea EA-O c7-0", + "Tyriedgoea ZT-P c6-0", + "Tyriedgoea CU-D b14-0", + "Tyriedgoea EQ-Y e1", + "Tyriedgoea YN-F b13-0", + "Tyriedgoea LR-V d2-7", + "Tyriedgoea UN-R c5-0", + "Tyriedgoea QH-T c4-0", + "Tyriedgoea QH-T c4-1", + "Tyriedgoea HL-X d1-4", + "Tyriedgoea FP-M b9-0", + "Tyriedgoea EP-M b9-0", + "Tyriedgoea AJ-O b8-0", + "Tyriedgoea VC-Q b7-0", + "Tyriedgoea UC-Q b7-0", + "Tyriedgoea PW-R b6-0", + "Tyriedgoea OW-R b6-0", + "Tyriedgoea BF-Z d6", + "Tyriedgoea KB-S b6-0", + "Tyriedgoea FV-T b5-0", + "Tyriedgoea AF-Z d5", + "Tyriedgoea AP-V b4-0", + "Tyriedgoea AF-Z d6", + "Tyriedgoea BK-V b4-0", + "Tyriedgoea WD-X b3-0", + "Tyriedgoea VD-A c1-2", + "Tyriedgoea RX-Y b2-0", + "Tyriedgoea VY-A d8", + "Tyriedgoea SI-A c1-2", + "Tyriedgoea JW-A b2-0", + "Tyriedgoea GL-C b1-0", + "Tyriedgoea FL-C b1-0", + "Tyriedgoea ZJ-E b0", + "Pru Eurl QH-X b58-0", + "Pru Eurl CN-A d14-2", + "Pru Eurl JG-Z b57-0", + "Pru Eurl EQ-Z c28-0", + "Pru Eurl DA-B b57-0", + "Pru Eurl CA-B b57-0", + "Pru Eurl BA-B b57-0", + "Pru Eurl WT-C b56-0", + "Pru Eurl SN-E b55-0", + "Pru Eurl PS-E b55-0", + "Pru Eurl KM-G b54-0", + "Pru Eurl JM-G b54-0", + "Pru Eurl FG-I b53-0", + "Pru Eurl XF-O e6-0", + "Pru Eurl AA-K b52-0", + "Pru Eurl VT-L b51-0", + "Pru Eurl PF-E d12-9", + "Pru Eurl QX-O b49-0", + "Pru Eurl RA-E d12-9", + "Pru Eurl GG-I c24-3", + "Pru Eurl QA-E d12-5", + "Pru Eurl DL-I c24-2", + "Pru Eurl CQ-S b47-0", + "Pru Eurl BQ-S b47-0", + "Pru Eurl XJ-U b46-0", + "Pru Eurl YE-K c23-0", + "Sifaea BV-F d11-15", + "Pru Eurl OX-X b44-0", + "Pru Eurl SZ-P e5-1", + "Pru Eurl KZ-F d11-0", + "Sifaea ZZ-X b44-0", + "Sifaea VT-H d10-9", + "Sifaea UT-N c21-0", + "Sifaea QY-Z b43-0", + "Sifaea SY-N c21-0", + "Sifaea IX-B b43-0", + "Sifaea NS-P c20-1", + "Sifaea DR-D b42-0", + "Sifaea YK-F b41-0", + "Sifaea XK-F b41-0", + "Sifaea SE-H b40-0", + "Sifaea PN-J d9-10", + "Sifaea PN-J d9-2", + "Sifaea JS-K b38-0", + "Sifaea IS-K b38-0", + "Sifaea HS-K b38-0", + "Sifaea HN-K b38-0", + "Sifaea UT-R e4-1", + "Sifaea ES-K b38-0", + "Sifaea HY-I b39-0", + "Sifaea IT-I b39-0", + "Sifaea NN-J d9-8", + "Sifaea EY-I b39-0", + "Sifaea CM-R c19-0", + "Sifaea MN-J d9-1", + "Sifaea BM-R c19-1", + "Sifaea GE-H b40-0", + "Sifaea FE-H b40-0", + "Sifaea EE-H b40-0", + "Sifaea FZ-G b40-0", + "Sifaea EZ-G b40-0", + "Sifaea DZ-G b40-0", + "Sifaea ST-R e4-0", + "Sifaea BZ-G b40-0", + "Sifaea YD-H b40-0", + "Sifaea KN-J d9-3", + "Sifaea XD-H b40-0", + "Sifaea KN-J d9-13", + "Sifaea JN-J d9-1", + "Sifaea VD-H b40-0", + "Sifaea JN-J d9-2", + "Sifaea UL-R c19-1", + "Sifaea JW-K b38-0", + "Sifaea EQ-M b37-0", + "Sifaea EH-L d8-4", + "Sifaea BF-O b36-0", + "Sifaea AF-O b36-0", + "Sifaea VY-P b35-0", + "Sifaea YE-O b36-0", + "Sifaea XE-O b36-0", + "Sifaea DH-L d8-12", + "Sifaea DH-L d8-13", + "Sifaea RY-P b35-0", + "Sifaea IZ-U c17-0", + "Sifaea LS-R b34-0", + "Sifaea CH-L d8-6", + "Sifaea CH-L d8-1", + "Sifaea GW-U b32-1", + "Sifaea AW-M d7-2", + "Sifaea DD-Y c15-0", + "Sifaea DL-W b31-0", + "Sifaea YE-Y b30-1", + "Sifaea ZV-M d7-3", + "Sifaea AA-Y b30-0", + "Sifaea WT-Z b29-0", + "Sifaea KC-V e2-2", + "Sifaea WP-O d6-16", + "Sifaea KC-V e2-3", + "Sifaea QS-B b29-0", + "Sifaea RN-B b29-1", + "Sifaea QN-B b29-0", + "Sifaea VP-O d6-1", + "Sifaea ST-Z b29-0", + "Sifaea YV-M d7-12", + "Sifaea QT-Z b29-0", + "Sifaea LN-B b29-1", + "Sifaea UP-O d6-8", + "Sifaea DM-D b28-2", + "Sifaea TP-O d6-26", + "Sifaea CH-D b28-0", + "Sifaea BH-D b28-1", + "Sifaea WA-F b27-2", + "Sifaea SP-O d6-26", + "Sifaea PZ-G b26-0", + "Sifaea OZ-G b26-1", + "Pro Eur VV-I b25-0", + "Pro Eur UV-I b25-0", + "Pro Eur PP-K b24-2", + "Pro Eur SV-I b25-0", + "Pro Eur PK-K b24-0", + "Pro Eur CK-Q d5-6", + "Pro Eur ED-O b22-0", + "Pro Eur ZW-P b21-2", + "Pro Eur YW-P b21-0", + "Pro Eur XW-P b21-0", + "Pro Eur WW-P b21-0", + "Pro Eur WS-I c10-7", + "Pro Eur QQ-R b20-0", + "Pro Eur RM-K c9-3", + "Pro Eur WD-S d4-28", + "Pro Eur MG-M c8-4", + "Pro Eur CT-W b17-2", + "Pro Eur LG-M c8-5", + "Pro Eur WM-Y b16-1", + "Pro Eur TR-Y b16-0", + "Pro Eur NL-A b16-2", + "Pro Eur FA-O c7-0", + "Pro Eur IF-C b15-0", + "Pro Eur DZ-D b14-2", + "Pro Eur CZ-D b14-1", + "Pro Eur ZN-F b13-1", + "Pro Eur YT-P c6-3", + "Pro Eur LR-V d2-36", + "Pro Eur WN-F b13-1", + "Pro Eur ZT-D b14-1", + "Pro Eur AP-D b14-1", + "Pro Eur DV-B b15-2", + "Pro Eur CV-B b15-2", + "Pro Eur NX-T d3-41", + "Pro Eur NX-T d3-32", + "Pro Eur FB-M c8-1", + "Pro Eur LN-W b17-2", + "Pro Eur NX-T d3-15", + "Pro Eur GM-K c9-0", + "Pro Eur PE-T b19-0", + "Pro Eur FM-K c9-6", + "Pro Eur RK-R b20-0", + "Pro Eur IS-I c10-0", + "Pro Eur PD-S d4-9", + "Pro Eur GW-W e1-0", + "Pro Eur EH-K c9-9", + "Pro Eur EY-U b18-1", + "Pro Eur BM-K c9-3", + "Pro Eur ET-U b18-0", + "Pro Eur AM-K c9-5", + "Pro Eur OD-S d4-23", + "Pro Eur ZL-K c9-4", + "Pro Eur ND-S d4-26", + "Pro Eur VC-V b18-0", + "Pro Eur UC-V b18-0", + "Pro Eur IX-T d3-26", + "Pro Eur SC-V b18-0", + "Pro Eur TX-U b18-1", + "Pro Eur MD-S d4-24", + "Pro Eur MD-S d4-23", + "Pro Eur OR-W b17-1", + "Pro Eur HX-T d3-18", + "Pro Eur RF-M c8-2", + "Pro Eur HL-Y b16-0", + "Pro Eur IG-Y b16-0", + "Pro Eur DA-A b16-2", + "Pro Eur GG-Y b16-0", + "Pro Eur DL-Y b16-0", + "Pro Eur GX-T d3-1", + "Sifeae IH-A b16-1", + "Sifeae GM-A b16-0", + "Sifeae FM-A b16-0", + "Sifeae VX-T d3-11", + "Sifeae UX-T d3-1", + "Sifeae LF-O c7-0", + "Sifeae SC-U d3-1", + "Sifeae NW-V d2-6", + "Sifeae NW-V d2-16", + "Sifeae OE-E b14-1", + "Sifeae NE-E b14-0", + "Sifeae QK-C b15-0", + "Sifeae QC-U d3-22", + "Sifeae OK-C b15-0", + "Sifeae MK-C b15-1", + "Sifeae DU-P c6-4", + "Sifeae JZ-D b14-0", + "Sifeae GE-E b14-0", + "Sifeae FE-E b14-0", + "Sifeae CT-F b13-0", + "Sifeae BT-F b13-0", + "Sifeae ZY-P c6-1", + "Sifeae KW-V d2-9", + "Sifeae RR-H b12-0", + "Sifeae XY-P c6-6", + "Sifeae XY-P c6-0", + "Sifeae JW-V d2-12", + "Sifeae WD-E b14-0", + "Sifeae XT-P c6-5", + "Sifeae WY-D b14-0", + "Sifeae VY-D b14-1", + "Sifeae AA-C b15-1", + "Sifeae ZZ-N c7-0", + "Sifeae AL-A b16-1", + "Sifeae VE-C b15-1", + "Sifeae YK-A b16-1", + "Sifeae MX-T d3-28", + "Sifeae ZV-Y b16-0", + "Sifeae KC-U d3-4", + "Synuefe YG-Z b47-0", + "Synuefe XK-N c23-3", + "Col 285 Sector MR-M c7-13", + "Col 285 Sector SH-B b14-7", + "Col 285 Sector RH-B b14-2", + "HIP 28150", + "Col 285 Sector NM-B b14-6", + "Hyades Sector LC-V d2-99", + "Trianguli Sector QI-T b3-6", + "Trianguli Sector PI-T b3-7", + "Trianguli Sector TU-O a6-1", + "Tascheter Sector TY-R a4-2", + "LP 415-26", + "Delta Trianguli", + "LHS 4003", + "WISE 2056+1459", + "LP 634-1", + "Volungu", + "Liaedin", + "Wolf 1062", + "IL Aquarii", + "LAWD 96", + "Core Sys Sector CQ-P a5-2", + "Alectrona", + "Hyldekagati", + "Ceti Sector CQ-Y d89", + "Ceti Sector PD-S b4-1", + "Quivira", + "Kadrusa", + "ICZ CL-X b1-5", + "ICZ EW-V b2-4", + "Sanna", + "Euryale", + "LPM 26", + "Putamasin", + "LFT 78", + "Col 285 Sector NE-R a34-0", + "LHS 160", + "LHS 1351", + "LP 91-140", + "Ennead", + "Mitra", + "CD-58 538", + "Iota Horologii", + "L 297-46" + ], + "starport": [ + "Bosch Terminal", + "Julian Gateway", + "Jemison Dock", + "Galvani Port", + "Wundt Gateway", + "Conrad Port", + "Knapp Vision", + "Herzfeld Landing", + "Kotov Terminal", + "Weston Orbital", + "Ricardo Landing", + "Brand City", + "Huygens Mines", + "Zudov City", + "Chomsky Ring", + "Wescott Terminal", + "Dirac Hub", + "Planck Dock", + "Hertz Colony", + "Bosch Mines", + "Blaschke Vision", + "Nicollet City", + "Ejeta Colony", + "Pierres Ring", + "Grant Terminal", + "Narvaez Orbital", + "Legendre Ring", + "Popper Dock", + "Brooks City", + "Wells Hub", + "Barcelos City", + "Perez Market", + "Lopez de Villalobos Prospect", + "Oramus Legacy", + "Henry Hub", + "Schade Platform", + "Selberg's Inheritance", + "Solovyov Orbital", + "Pierce Hanger", + "Giles Colony", + "Marshall Hub", + "Ising Hub", + "Arrhenius Hub", + "Vaucanson Hub", + "Frimout Horizons", + "Parry Terminal", + "Saberhagen Port", + "Stafford Terminal", + "Willis City", + "Romanenko Gateway", + "Jakes Enterprise", + "Budarin Terminal", + "Horowitz Gateway", + "Burke Hub", + "Perrin Ring", + "Balandin Enterprise", + "So-yeon Port", + "Potter Gateway", + "Tudela Installation", + "Quimper Ring", + "Julian City", + "Whitelaw Enterprise", + "Saunders's Dive", + "Harvestport", + "Brunton Hub", + "Nasmyth Station", + "Currie Enterprise", + "McArthur Plant", + "Lundwall City", + "Tshang Enterprise", + "Mach Dock", + "Wellman Gateway", + "Moisuc Refinery", + "Boe Enterprise", + "Gelfand Survey", + "Artyukhin Ring", + "Aitken Vision", + "Laphrian Shipyard", + "Crook Orbital", + "Rand City", + "Morgan Terminal", + "Oswald Platform", + "Aksyonov Platform", + "Coney Arena", + "Roberts Hub", + "Ayerdhal City", + "Derleth Orbital", + "Maire Gateway", + "Dedman Gateway", + "Bailey Ring", + "Humphreys Enterprise", + "Kandel Ring", + "Polya Enterprise", + "Rozhdestvensky Station", + "Cameron Survey", + "Shuttleworth Terminal", + "Yu Port", + "Bolger Vision", + "Alpers Refinery", + "Goeschke Station", + "Stebler Mines", + "Duke Hub", + "Shepard Ring", + "Cormack Orbital", + "Harris Platform", + "Fung Outpost", + "Ore Terminal", + "McDaniel Station", + "Ellison Station", + "Hennepin Enterprise", + "Luiken Port", + "Cochrane Terminal", + "McDonald Port", + "Bykovsky Ring", + "Vaucanson Settlement", + "Nicollier Ring", + "Carrier Dock", + "DG-1 Refinery", + "Blackman Terminal", + "Proteus Orbital", + "Katzenstein Settlement", + "Porta", + "Spedding Orbital", + "Anders Orbital", + "Mohmand Dock", + "Maler Hub", + "Scott Settlement", + "Sarich Port", + "Tyurin Port", + "Reisman Station", + "Fulton Landing", + "DENIS FILIPPOV", + "Rattus High", + "Port Sippar", + "Amar Station", + "Hennen City", + "Cabrera Dock", + "Haller Port", + "Pennington City", + "Foda Station", + "Stebler City", + "Gibson Settlement", + "Strekalov Dock", + "Behnken Terminal", + "Euler Port", + "Archimedes Hub", + "Ross Dock", + "Blalock Orbital", + "Pavlov Settlement", + "Galileo", + "Stein Platform", + "Beatty Landing", + "Galiano Plant", + "Rangarajan's Base", + "Jemison Refinery", + "Solo Orbiter", + "Brunel Station", + "Brendan Gateway", + "Godel Dock", + "Slipher Vision", + "EG Main HQ", + "Crown Orbital", + "Crown City", + "Watt Ring", + "Coye Orbital", + "Tokubei Holdings", + "Haberlandt Orbital", + "Bernard Colony", + "Meade Ring", + "Bessemer Station" + ] + }, + "greatestDistanceFromStart": 9017.2195143253, + "creditsEarned": 542823, + "bodiesCount": 0, + "scanSoldLevels": { + "lev_0": 647, + "lev_1": 489, + "lev_2": 132, + "lev_3": 0 + }, + "latestPayouts": [ + { + "market": "Port Sippar", + "value": 3218 + }, + { + "market": "Quimper Ring", + "value": 63035 + }, + { + "market": "Rangarajan's Base", + "value": 141702 + }, + { + "market": "Galiano Plant", + "value": 59372 + }, + { + "market": "Beatty Landing", + "value": 3424 + } + ], + "highestPayout": 34942, + "lastVisitedStarSystems": [ + "Iota Horologii", + "L 297-46", + "Iota Horologii", + "CD-58 538", + "Iota Horologii" + ], + "bodiesSoldCount": 1268, + "bodiesFirstDiscovered": 26 + }, + "ship": { + "spend": { + "ships": 8791673, + "fuel": 160669, + "modules": 15615586, + "ammo": 232942, + "repair": 910381 + }, + "fuel_units": { + "purchased": 0, + "scooped": 2232 + }, + "insurance": { + "claims": 24, + "value": 2714138 + } + }, + "wealth": { + "maxCredits": 23883052 + }, + "trade": { + "marketIds": [ + "3228160256", + "3228321792", + "3228393472", + "3228129280", + "3228062976", + "3227948288", + "3227868160", + "3228192000", + "3228189952", + "3228190208", + "3228191232", + "3228190464", + "3228190720", + "3228244480", + "3228249088", + "3228264192", + "3228252160", + "3228251904", + "3228190976", + "3228191488", + "3228249344", + "3227868416", + "3228248064", + "3228470784", + "3228244736", + "3228471040", + "3228339968", + "3228340224", + "3228244224", + "3228247808", + "3228329472", + "3228390400", + "3223529472", + "128129272", + "3223288832", + "3228081408", + "3228081152", + "3227955968", + "3227957248", + "3228063232", + "3228028672", + "3227998208", + "3227998464", + "3228066560", + "128134648", + "128154360", + "3228040192", + "128153848", + "3228064768", + "3228065024", + "3228064256", + "3227919360", + "128169976", + "3228064000", + "128073720", + "3228077824", + "128073464", + "3228120576" + ], + "furthest": { + "distance": 99.480201783445, + "origin": 128129272, + "destination": "3228390400" + }, + "largestProfit": { + "value": 171720, + "commodity": "Beryllium", + "qty": 120, + "marketId": "3228081152" + }, + "largestProfitPerItem": { + "value": 1433, + "commodity": "Beryllium", + "marketId": "3228081152" + }, + "count": 429, + "qty": 22410, + "profit": 14759658, + "totalDistance": 198621.73693075 + }, + "mining": { + "largestProfit": { + "value": 0, + "commodity": 0, + "qty": 0, + "marketId": 0 + }, + "largestProfitPerItem": { + "value": 0, + "commodity": 0, + "marketId": 0 + }, + "count": 0, + "qty": 0, + "profit": 0, + "converted": { + "qty": 0 + } + }, + "blackMarket": { + "marketIds": [ + "3227868160", + "3228338688", + "3228189952", + "3228247808", + "3228390144", + "128130296" + ], + "furthest": { + "distance": 69224.099624264, + "origin": 0, + "destination": "3228338688" + }, + "largestProfit": { + "value": 132005, + "commodity": "OnionHead", + "qty": 17, + "marketId": "3228390144" + }, + "largestProfitPerItem": { + "value": 13130, + "commodity": "MotronaExperienceJelly", + "marketId": "128130296" + }, + "count": 13, + "qty": 67, + "profit": 292429, + "totalDistance": 556021.41706887 + }, + "stolenGoods": { + "largestProfit": { + "value": 65650, + "commodity": "MotronaExperienceJelly", + "qty": 5, + "marketId": "128130296" + }, + "largestProfitPerItem": { + "value": 13130, + "commodity": "MotronaExperienceJelly", + "marketId": "128130296" + }, + "count": 10, + "qty": 38, + "profit": 157238 + }, + "combat": { + "bounty": { + "highestClaimed": 134706, + "qty": 239, + "value": 1215158 + }, + "bond": { + "qty": 223, + "value": 1559000 + } + }, + "crime": { + "fine": { + "qty": 11, + "value": 135334, + "factions": [] + }, + "bounty": { + "highest": { + "value": 0, + "faction": 0, + "systemId": 0 + }, + "qty": 0, + "value": 0, + "factions": [] + }, + "stolenCargo": { + "qty": 75, + "value": 442840 + } + }, + "PVP": { + "kills": { + "ranks": { + "r0": 2, + "r1": 1, + "r2": 2, + "r3": 0, + "r4": 1, + "r5": 0, + "r6": 0, + "r7": 0, + "r8": 0 + } + } + }, + "NCP": { + "kills": { + "ranks": { + "r0": 2, + "r1": 4, + "r2": 2, + "r3": 3, + "r4": 1, + "r5": 0, + "r6": 0, + "r7": 0, + "r8": 0 + } + } + }, + "prealloc": true, + "ranks": { + "combat": { + "1": { + "ts": 1417719389, + "gt": 144380 + }, + "2": { + "ts": 1419164701, + "gt": 328001 + }, + "3": { + "ts": 1419789595, + "gt": 381168 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "crime": { + "1": { + "ts": 0, + "gt": 0 + }, + "2": { + "ts": 0, + "gt": 0 + }, + "3": { + "ts": 0, + "gt": 0 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "explore": { + "1": { + "ts": 1416679505, + "gt": 7340 + }, + "2": { + "ts": 1416773896, + "gt": 32330 + }, + "3": { + "ts": 1425813076, + "gt": 645416 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "trade": { + "1": { + "ts": 1417041602, + "gt": 57777 + }, + "2": { + "ts": 1417208591, + "gt": 78181 + }, + "3": { + "ts": 1417804896, + "gt": 154613 + }, + "4": { + "ts": 1421439724, + "gt": 490202 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "federation": { + "1": { + "ts": 1418494995, + "gt": 227112 + }, + "2": { + "ts": 1418496671, + "gt": 227112 + }, + "3": { + "ts": 1419692207, + "gt": 369093 + }, + "4": { + "ts": 1420382992, + "gt": 418109 + }, + "5": { + "ts": 1437243056, + "gt": 847776 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "empire": { + "1": { + "ts": 1437243056, + "gt": 847776 + }, + "2": { + "ts": 0, + "gt": 0 + }, + "3": { + "ts": 0, + "gt": 0 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + } + }, + "lastModulesBought": [ + { + "market": "EG Main HQ", + "module": "Hpt_ChaffLauncher_Tiny", + "value": 8500 + }, + { + "market": "Godel Dock", + "module": "Int_DockingComputer_Standard", + "value": 4500 + }, + { + "market": "Quimper Ring", + "module": "Hpt_ElectronicCountermeasure_Tiny", + "value": 12500 + }, + { + "market": "Quimper Ring", + "module": "Decal_Combat_Competent", + "value": 0 + }, + { + "market": "Quimper Ring", + "module": "Int_HullReinforcement_Size4_Class2", + "value": 195000 + } + ], + "illegalGoods": { + "largestProfit": { + "value": 132005, + "commodity": "OnionHead", + "qty": 17, + "marketId": "3228390144" + }, + "largestProfitPerItem": { + "value": 13130, + "commodity": "MotronaExperienceJelly", + "marketId": "128130296" + }, + "count": 10, + "qty": 45, + "profit": 239863 + }, + "NPC": { + "kills": { + "ranks": { + "r1": 14, + "r3": 17, + "r2": 14, + "r0": 3, + "r4": 12, + "r5": 13, + "rArray": 2, + "r8": 3, + "r7": 2, + "r6": 5 + } + } + }, + "vanishCounters": { + "amongPeers": 5, + "notInDanger": 5, + "isNotDying": 2 + } + }, + "ship": { + "name": "CobraMkIII", + "modules": { + "MediumHardpoint1": { + "module": { + "id": 128049460, + "name": "Hpt_MultiCannon_Gimbal_Medium", + "value": 57000, + "unloaned": 57000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 90, + "hopper": 2100 + } + } + }, + "MediumHardpoint2": { + "module": { + "id": 128049386, + "name": "Hpt_PulseLaser_Gimbal_Medium", + "value": 35400, + "unloaned": 35400, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "SmallHardpoint1": { + "module": { + "id": 128049385, + "name": "Hpt_PulseLaser_Gimbal_Small", + "value": 6600, + "unloaned": 6600, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "SmallHardpoint2": { + "module": { + "id": 128049459, + "name": "Hpt_MultiCannon_Gimbal_Small", + "value": 14250, + "unloaned": 14250, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 90, + "hopper": 2100 + } + } + }, + "TinyHardpoint1": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 8500, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "TinyHardpoint2": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 8500, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "Decal1": { + "module": { + "id": 128667738, + "name": "Decal_Combat_Competent", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Decal2": { + "module": { + "id": 128667655, + "name": "Decal_Skull3", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Decal3": { + "module": { + "id": 128667655, + "name": "Decal_Skull3", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PaintJob": { + "module": { + "id": 128666731, + "name": "PaintJob_CobraMkIII_Stripe2_03", + "value": 0, + "health": 1000000, + "on": true, + "priority": 1, + "free": true, + "unloaned": 0 + } + }, + "Armour": { + "module": { + "id": 128049282, + "name": "CobraMkIII_Armour_Grade3", + "value": 341746, + "unloaned": 341746, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PowerPlant": { + "module": { + "id": 128064045, + "name": "Int_Powerplant_Size4_Class3", + "value": 178898, + "unloaned": 178898, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "MainEngines": { + "module": { + "id": 128064082, + "name": "Int_Engine_Size4_Class5", + "value": 1610080, + "unloaned": 1610080, + "free": false, + "health": 1000000, + "on": true, + "priority": 0 + } + }, + "FrameShiftDrive": { + "module": { + "id": 128064117, + "name": "Int_Hyperdrive_Size4_Class5", + "value": 1610080, + "unloaned": 1610080, + "free": false, + "health": 1000000, + "on": true, + "priority": 3 + } + }, + "LifeSupport": { + "module": { + "id": 128064149, + "name": "Int_LifeSupport_Size3_Class2", + "value": 10133, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "unloaned": 10133 + } + }, + "PowerDistributor": { + "module": { + "id": 128064192, + "name": "Int_PowerDistributor_Size3_Class5", + "value": 158331, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "unloaned": 158331 + } + }, + "Radar": { + "module": { + "id": 128064229, + "name": "Int_Sensors_Size3_Class2", + "value": 10133, + "unloaned": 10133, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "FuelTank": { + "module": { + "id": 128064349, + "name": "Int_FuelTank_Size4_Class3", + "value": 24734, + "health": 1000000, + "on": true, + "priority": 1, + "free": false, + "unloaned": 24734 + } + }, + "Slot01_Size4": { + "module": { + "id": 128668544, + "name": "Int_HullReinforcement_Size4_Class2", + "value": 195000, + "unloaned": 195000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot02_Size4": { + "module": { + "id": 128064314, + "name": "Int_ShieldCellBank_Size4_Class2", + "value": 28373, + "unloaned": 28373, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 2 + } + } + }, + "Slot03_Size4": { + "module": { + "id": 128064274, + "name": "Int_ShieldGenerator_Size4_Class2", + "value": 59633, + "unloaned": 59633, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot04_Size2": { + "module": { + "id": 128668540, + "name": "Int_HullReinforcement_Size2_Class2", + "value": 36000, + "unloaned": 36000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot05_Size2": { + "module": { + "id": 128666709, + "name": "Int_FSDInterdictor_Size2_Class2", + "value": 100800, + "unloaned": 100800, + "free": false, + "health": 1000000, + "on": true, + "priority": 3 + } + }, + "Slot06_Size2": { + "module": { + "id": 128049549, + "name": "Int_DockingComputer_Standard", + "value": 4500, + "unloaned": 4500, + "free": false, + "health": 1000000, + "on": true, + "priority": 0 + } + } + }, + "value": { + "hull": 235787, + "modules": 4498691, + "cargo": 0, + "total": 4734478, + "unloaned": 4498691 + }, + "free": false, + "health": { + "hull": 1000000, + "shield": 1000000, + "shieldup": true + }, + "wear": { + "dirt": 13132, + "fade": 435, + "tear": 40979, + "game": 11595 + }, + "cockpitBreached": false, + "oxygenRemaining": 450000, + "fuel": { + "capacity": 16, + "lvl": 12.47372 + }, + "reserve": { + "lvl": 0.587228 + }, + "cargo": { + "capacity": 0, + "qty": 0, + "items": [] + }, + "passengers": [], + "refinery": null + }, + "ships": { + "0": { + "name": "SideWinder", + "station": { + "id": "3228338688", + "name": "Nicollet City" + }, + "starsystem": { + "id": "8055378940618", + "name": "Chang Yeh", + "systemaddress": "8055378940618" + } + }, + "2": { + "name": "CobraMkIII", + "station": { + "id": "3223721472", + "name": "Bessemer Station" + }, + "starsystem": { + "id": "7034", + "name": "Iota Horologii", + "systemaddress": "422810995051" + } + }, + "3": { + "name": "DiamondBack", + "station": { + "id": "3223873280", + "name": "Meade Ring" + }, + "starsystem": { + "id": "63318", + "name": "CD-58 538", + "systemaddress": "5031721931474" + } + } + } +} \ No newline at end of file diff --git a/utils/src/test/resources/edce/edce7.json b/utils/src/test/resources/edce/edce7.json new file mode 100644 index 0000000..9c9a634 --- /dev/null +++ b/utils/src/test/resources/edce/edce7.json @@ -0,0 +1,9797 @@ +{ + "commander": { + "id": 126367, + "name": "MoHax", + "credits": 23317070, + "debt": 0, + "currentShipId": 2, + "alive": true, + "docked": true, + "rank": { + "combat": 3, + "trade": 4, + "explore": 3, + "crime": 0, + "service": 0, + "empire": 0, + "federation": 2, + "power": 3 + } + }, + "lastSystem": { + "id": "63318", + "name": "CD-58 538", + "faction": "Federation" + }, + "lastStarport": { + "id": "3223873024", + "name": "Hornby Station", + "faction": "Federation", + "commodities": [ + { + "id": "128049204", + "name": "Explosives", + "cost_min": 300, + "cost_max": 456, + "cost_mean": "378.00", + "homebuy": "60", + "homesell": "56", + "consumebuy": "4", + "baseCreationQty": 171.31, + "baseConsumptionQty": 0, + "capacity": 283021, + "buyPrice": 182, + "sellPrice": 169, + "meanPrice": 378, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 283021, + "consumptionQty": 0, + "targetStock": 283021, + "stock": 259498.6626, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Chemicals", + "volumescale": "1.1400" + }, + { + "id": "128049202", + "name": "Hydrogen Fuel", + "cost_min": 125, + "cost_max": 168, + "cost_mean": "147.00", + "homebuy": "74", + "homesell": "71", + "consumebuy": "3", + "baseCreationQty": 200, + "baseConsumptionQty": 200, + "capacity": 829727, + "buyPrice": 94, + "sellPrice": 89, + "meanPrice": 147, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 660800, + "consumptionQty": 168927, + "targetStock": 703031, + "stock": 703031, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Chemicals", + "volumescale": "1.3000" + }, + { + "id": "128049203", + "name": "Mineral Oil", + "cost_min": 192, + "cost_max": 325, + "cost_mean": "259.00", + "homebuy": "47", + "homesell": "42", + "consumebuy": "5", + "baseCreationQty": 0, + "baseConsumptionQty": 106.81, + "capacity": 352960, + "buyPrice": 0, + "sellPrice": 315, + "meanPrice": 259, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 352960, + "targetStock": 88240, + "stock": 0, + "demand": 249728, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Chemicals", + "volumescale": "1.0300" + }, + { + "id": "128049205", + "name": "Pesticides", + "cost_min": 223, + "cost_max": 361, + "cost_mean": "292.00", + "homebuy": "52", + "homesell": "47", + "consumebuy": "5", + "baseCreationQty": 47.17, + "baseConsumptionQty": 0, + "capacity": 38970, + "buyPrice": 149, + "sellPrice": 134, + "meanPrice": 292, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 38970, + "consumptionQty": 0, + "targetStock": 38970, + "stock": 21824, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Chemicals", + "volumescale": "1.0700" + }, + { + "id": "128049241", + "name": "Clothing", + "cost_min": 315, + "cost_max": 474, + "cost_mean": "395.00", + "homebuy": "61", + "homesell": "57", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 350, + "capacity": 295622, + "buyPrice": 0, + "sellPrice": 474, + "meanPrice": 395, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 295622, + "targetStock": 73904, + "stock": 0, + "demand": 221718, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Consumer Items", + "volumescale": "1.1500" + }, + { + "id": "128049240", + "name": "Consumer Technology", + "cost_min": 6561, + "cost_max": 7500, + "cost_mean": "7031.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 4.45, + "baseConsumptionQty": 2.97, + "capacity": 8193, + "buyPrice": 0, + "sellPrice": 6561, + "meanPrice": 7031, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 3677, + "consumptionQty": 4516, + "targetStock": 4806, + "stock": 0, + "demand": 846.75, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Consumer Items", + "volumescale": "1.1000" + }, + { + "id": "128049238", + "name": "Domestic Appliances", + "cost_min": 527, + "cost_max": 734, + "cost_mean": "631.00", + "homebuy": "70", + "homesell": "67", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 209, + "capacity": 88266, + "buyPrice": 0, + "sellPrice": 734, + "meanPrice": 631, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 88266, + "targetStock": 22066, + "stock": 0, + "demand": 66200, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Consumer Items", + "volumescale": "1.2500" + }, + { + "id": "128049182", + "name": "Animal Meat", + "cost_min": 1286, + "cost_max": 1633, + "cost_mean": "1460.00", + "homebuy": "81", + "homesell": "79", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 97, + "capacity": 81931, + "buyPrice": 0, + "sellPrice": 1564, + "meanPrice": 1460, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 81931, + "targetStock": 20482, + "stock": 0, + "demand": 52459, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.4000" + }, + { + "id": "128049189", + "name": "Coffee", + "cost_min": 1286, + "cost_max": 1633, + "cost_mean": "1460.00", + "homebuy": "81", + "homesell": "79", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 97, + "capacity": 20484, + "buyPrice": 0, + "sellPrice": 1286, + "meanPrice": 1460, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 20484, + "targetStock": 5120, + "stock": 0, + "demand": 3841, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.4000" + }, + { + "id": "128049183", + "name": "Fish", + "cost_min": 403, + "cost_max": 583, + "cost_mean": "493.00", + "homebuy": "66", + "homesell": "63", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 271, + "capacity": 228896, + "buyPrice": 0, + "sellPrice": 548, + "meanPrice": 493, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 228896, + "targetStock": 57223, + "stock": 0, + "demand": 146557, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.2000" + }, + { + "id": "128049184", + "name": "Food Cartridges", + "cost_min": 141, + "cost_max": 270, + "cost_mean": "206.00", + "homebuy": "31", + "homesell": "24", + "consumebuy": "7", + "baseCreationQty": 0, + "baseConsumptionQty": 452, + "capacity": 15272, + "buyPrice": 0, + "sellPrice": 141, + "meanPrice": 206, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 15272, + "targetStock": 3818, + "stock": 0, + "demand": 2863.5, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.0000" + }, + { + "id": "128049178", + "name": "Fruit And Vegetables", + "cost_min": 315, + "cost_max": 474, + "cost_mean": "395.00", + "homebuy": "61", + "homesell": "57", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 350, + "capacity": 73906, + "buyPrice": 0, + "sellPrice": 462, + "meanPrice": 395, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 73906, + "targetStock": 18476, + "stock": 0, + "demand": 52186, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.1500" + }, + { + "id": "128049180", + "name": "Grain", + "cost_min": 207, + "cost_max": 342, + "cost_mean": "275.00", + "homebuy": "50", + "homesell": "45", + "consumebuy": "5", + "baseCreationQty": 0, + "baseConsumptionQty": 584, + "capacity": 493267, + "buyPrice": 0, + "sellPrice": 208, + "meanPrice": 275, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 493267, + "targetStock": 123316, + "stock": 0, + "demand": 99324, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.0500" + }, + { + "id": "128049185", + "name": "Synthetic Meat", + "cost_min": 252, + "cost_max": 396, + "cost_mean": "324.00", + "homebuy": "56", + "homesell": "52", + "consumebuy": "4", + "baseCreationQty": 40.05, + "baseConsumptionQty": 24.86, + "capacity": 137576, + "buyPrice": 143, + "sellPrice": 132, + "meanPrice": 324, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 132326, + "consumptionQty": 5250, + "targetStock": 133638, + "stock": 123397.08641, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.1000" + }, + { + "id": "128049188", + "name": "Tea", + "cost_min": 1459, + "cost_max": 1833, + "cost_mean": "1646.00", + "homebuy": "82", + "homesell": "80", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 88, + "capacity": 74329, + "buyPrice": 0, + "sellPrice": 1462, + "meanPrice": 1646, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 74329, + "targetStock": 18582, + "stock": 0, + "demand": 15153, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.4200" + }, + { + "id": "128049197", + "name": "Polymers", + "cost_min": 152, + "cost_max": 279, + "cost_mean": "216.00", + "homebuy": "36", + "homesell": "30", + "consumebuy": "6", + "baseCreationQty": 107.25, + "baseConsumptionQty": 0, + "capacity": 265771, + "buyPrice": 76, + "sellPrice": 63, + "meanPrice": 216, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 265771, + "consumptionQty": 0, + "targetStock": 265771, + "stock": 148832, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Industrial Materials", + "volumescale": "1.0000" + }, + { + "id": "128049199", + "name": "Semiconductors", + "cost_min": 889, + "cost_max": 1168, + "cost_mean": "1029.00", + "homebuy": "77", + "homesell": "75", + "consumebuy": "2", + "baseCreationQty": 14.52, + "baseConsumptionQty": 0, + "capacity": 35982, + "buyPrice": 787, + "sellPrice": 759, + "meanPrice": 1029, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 35982, + "consumptionQty": 0, + "targetStock": 35982, + "stock": 20150, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Industrial Materials", + "volumescale": "1.3400" + }, + { + "id": "128049200", + "name": "Superconductors", + "cost_min": 6561, + "cost_max": 7500, + "cost_mean": "7031.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 29.59, + "baseConsumptionQty": 120.15, + "capacity": 470369, + "buyPrice": 0, + "sellPrice": 7192, + "meanPrice": 7031, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 73326, + "consumptionQty": 397043, + "targetStock": 172586, + "stock": 0, + "demand": 267801, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Industrial Materials", + "volumescale": "1.1000" + }, + { + "id": "128049220", + "name": "Heliostatic Furnaces", + "cost_min": 199, + "cost_max": 333, + "cost_mean": "266.00", + "homebuy": "48", + "homesell": "43", + "consumebuy": "5", + "baseCreationQty": 2735.86, + "baseConsumptionQty": 338.14, + "capacity": 7896990, + "buyPrice": 128, + "sellPrice": 113, + "meanPrice": 266, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 6779586, + "consumptionQty": 1117404, + "targetStock": 7058937, + "stock": 4255271.65988, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.0400" + }, + { + "id": "128049217", + "name": "Power Generators", + "cost_min": 527, + "cost_max": 734, + "cost_mean": "631.00", + "homebuy": "70", + "homesell": "67", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 41.68, + "capacity": 137735, + "buyPrice": 0, + "sellPrice": 734, + "meanPrice": 631, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 137735, + "targetStock": 34433, + "stock": 0, + "demand": 103302, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.2500" + }, + { + "id": "128049218", + "name": "Water Purifiers", + "cost_min": 300, + "cost_max": 456, + "cost_mean": "378.00", + "homebuy": "60", + "homesell": "56", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 37, + "capacity": 122270, + "buyPrice": 0, + "sellPrice": 343, + "meanPrice": 378, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 122270, + "targetStock": 30567, + "stock": 0, + "demand": 42773, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.1400" + }, + { + "id": "128049208", + "name": "Agricultural Medicines", + "cost_min": 1004, + "cost_max": 1303, + "cost_mean": "1154.00", + "homebuy": "79", + "homesell": "77", + "consumebuy": "2", + "baseCreationQty": 10.68, + "baseConsumptionQty": 0, + "capacity": 35287, + "buyPrice": 906, + "sellPrice": 874, + "meanPrice": 1154, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 35287, + "consumptionQty": 0, + "targetStock": 35287, + "stock": 19761, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.3600" + }, + { + "id": "128049210", + "name": "Basic Medicines", + "cost_min": 315, + "cost_max": 474, + "cost_mean": "395.00", + "homebuy": "61", + "homesell": "57", + "consumebuy": "4", + "baseCreationQty": 31.15, + "baseConsumptionQty": 38.5, + "capacity": 27361, + "buyPrice": 195, + "sellPrice": 180, + "meanPrice": 395, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 25735, + "consumptionQty": 1626, + "targetStock": 26141, + "stock": 24742.47892, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.1500" + }, + { + "id": "128049209", + "name": "Performance Enhancers", + "cost_min": 6561, + "cost_max": 7500, + "cost_mean": "7031.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 9.79, + "baseConsumptionQty": 14.85, + "capacity": 14360, + "buyPrice": 6765, + "sellPrice": 6626, + "meanPrice": 7031, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 8088, + "consumptionQty": 6272, + "targetStock": 9656, + "stock": 6096, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.1000" + }, + { + "id": "128049669", + "name": "Progenitor Cells", + "cost_min": 6561, + "cost_max": 7500, + "cost_mean": "7031.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 9.79, + "baseConsumptionQty": 2.97, + "capacity": 10597, + "buyPrice": 6666, + "sellPrice": 6529, + "meanPrice": 7031, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 8088, + "consumptionQty": 2509, + "targetStock": 8715, + "stock": 5155, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.1000" + }, + { + "id": "128049176", + "name": "Aluminium", + "cost_min": 330, + "cost_max": 493, + "cost_mean": "412.00", + "homebuy": "62", + "homesell": "58", + "consumebuy": "4", + "baseCreationQty": 36.52, + "baseConsumptionQty": 0, + "capacity": 90499, + "buyPrice": 207, + "sellPrice": 192, + "meanPrice": 412, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 90499, + "consumptionQty": 0, + "targetStock": 90499, + "stock": 90499, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.1600" + }, + { + "id": "128049168", + "name": "Beryllium", + "cost_min": 8017, + "cost_max": 9080, + "cost_mean": "8549.00", + "homebuy": "94", + "homesell": "93", + "consumebuy": "1", + "baseCreationQty": 2.53, + "baseConsumptionQty": 40.94, + "capacity": 141544, + "buyPrice": 0, + "sellPrice": 8887, + "meanPrice": 8549, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 6270, + "consumptionQty": 135274, + "targetStock": 40088, + "stock": 0, + "demand": 91992, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.0400" + }, + { + "id": "128049162", + "name": "Cobalt", + "cost_min": 701, + "cost_max": 944, + "cost_mean": "823.00", + "homebuy": "74", + "homesell": "71", + "consumebuy": "3", + "baseCreationQty": 17.82, + "baseConsumptionQty": 1441.8, + "capacity": 4808134, + "buyPrice": 0, + "sellPrice": 936, + "meanPrice": 823, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 44159, + "consumptionQty": 4763975, + "targetStock": 1235152, + "stock": 0, + "demand": 3517648, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.3000" + }, + { + "id": "128049175", + "name": "Copper", + "cost_min": 472, + "cost_max": 668, + "cost_mean": "570.00", + "homebuy": "69", + "homesell": "66", + "consumebuy": "3", + "baseCreationQty": 255.2, + "baseConsumptionQty": 0, + "capacity": 632398, + "buyPrice": 329, + "sellPrice": 312, + "meanPrice": 570, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 632398, + "consumptionQty": 0, + "targetStock": 632398, + "stock": 632398, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.2300" + }, + { + "id": "128049170", + "name": "Gallium", + "cost_min": 5028, + "cost_max": 5824, + "cost_mean": "5426.00", + "homebuy": "92", + "homesell": "91", + "consumebuy": "1", + "baseCreationQty": 3.63, + "baseConsumptionQty": 293.7, + "capacity": 979436, + "buyPrice": 0, + "sellPrice": 5804, + "meanPrice": 5426, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 8996, + "consumptionQty": 970440, + "targetStock": 251606, + "stock": 0, + "demand": 720501, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.1800" + }, + { + "id": "128049154", + "name": "Gold", + "cost_min": 9164, + "cost_max": 10320, + "cost_mean": "9742.00", + "homebuy": "95", + "homesell": "95", + "consumebuy": "0", + "baseCreationQty": 2.31, + "baseConsumptionQty": 185.12, + "capacity": 619304, + "buyPrice": 0, + "sellPrice": 10297, + "meanPrice": 9742, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 7633, + "consumptionQty": 611671, + "targetStock": 160550, + "stock": 0, + "demand": 457514, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.0000" + }, + { + "id": "128049169", + "name": "Indium", + "cost_min": 5743, + "cost_max": 6607, + "cost_mean": "6175.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 32.78, + "baseConsumptionQty": 132.61, + "capacity": 519399, + "buyPrice": 0, + "sellPrice": 6223, + "meanPrice": 6175, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 81231, + "consumptionQty": 438168, + "targetStock": 190773, + "stock": 0, + "demand": 262443, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.1400" + }, + { + "id": "128049173", + "name": "Lithium", + "cost_min": 1555, + "cost_max": 1943, + "cost_mean": "1749.00", + "homebuy": "83", + "homesell": "81", + "consumebuy": "2", + "baseCreationQty": 91.52, + "baseConsumptionQty": 740.48, + "capacity": 2673474, + "buyPrice": 0, + "sellPrice": 1894, + "meanPrice": 1749, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 226791, + "consumptionQty": 2446683, + "targetStock": 838461, + "stock": 0, + "demand": 1816579, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.4300" + }, + { + "id": "128671118", + "name": "Osmium", + "cost_min": 6561, + "cost_max": 7500, + "cost_mean": "7031.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 239.41, + "capacity": 791055, + "buyPrice": 0, + "sellPrice": 7500, + "meanPrice": 7031, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 791055, + "targetStock": 197763, + "stock": 0, + "demand": 593292, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.1000" + }, + { + "id": "128049153", + "name": "Palladium", + "cost_min": 12815, + "cost_max": 14239, + "cost_mean": "13527.00", + "homebuy": "97", + "homesell": "97", + "consumebuy": "0", + "baseCreationQty": 0, + "baseConsumptionQty": 143.29, + "capacity": 473457, + "buyPrice": 0, + "sellPrice": 14225, + "meanPrice": 13527, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 473457, + "targetStock": 118364, + "stock": 0, + "demand": 352529, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.0000" + }, + { + "id": "128049152", + "name": "Platinum", + "cost_min": 17936, + "cost_max": 19691, + "cost_mean": "18814.00", + "homebuy": "98", + "homesell": "98", + "consumebuy": "0", + "baseCreationQty": 0, + "baseConsumptionQty": 10.68, + "capacity": 35289, + "buyPrice": 0, + "sellPrice": 19691, + "meanPrice": 18814, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 35289, + "targetStock": 8822, + "stock": 0, + "demand": 26467, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.0000" + }, + { + "id": "128049155", + "name": "Silver", + "cost_min": 4705, + "cost_max": 5470, + "cost_mean": "5088.00", + "homebuy": "91", + "homesell": "90", + "consumebuy": "1", + "baseCreationQty": 3.85, + "baseConsumptionQty": 309.72, + "capacity": 1032914, + "buyPrice": 0, + "sellPrice": 5456, + "meanPrice": 5088, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 9541, + "consumptionQty": 1023373, + "targetStock": 265384, + "stock": 0, + "demand": 764003, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.2000" + }, + { + "id": "128049171", + "name": "Tantalum", + "cost_min": 3858, + "cost_max": 4534, + "cost_mean": "4196.00", + "homebuy": "90", + "homesell": "89", + "consumebuy": "1", + "baseCreationQty": 44.66, + "baseConsumptionQty": 721.79, + "capacity": 2495598, + "buyPrice": 0, + "sellPrice": 4449, + "meanPrice": 4196, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 110670, + "consumptionQty": 2384928, + "targetStock": 706902, + "stock": 0, + "demand": 1698525, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.2600" + }, + { + "id": "128049174", + "name": "Titanium", + "cost_min": 1004, + "cost_max": 1303, + "cost_mean": "1154.00", + "homebuy": "79", + "homesell": "77", + "consumebuy": "2", + "baseCreationQty": 131.01, + "baseConsumptionQty": 0, + "capacity": 324649, + "buyPrice": 802, + "sellPrice": 774, + "meanPrice": 1154, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 324649, + "consumptionQty": 0, + "targetStock": 324649, + "stock": 324649, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.3600" + }, + { + "id": "128049172", + "name": "Uranium", + "cost_min": 2603, + "cost_max": 3134, + "cost_mean": "2869.00", + "homebuy": "87", + "homesell": "86", + "consumebuy": "1", + "baseCreationQty": 6.05, + "baseConsumptionQty": 491.28, + "capacity": 1638274, + "buyPrice": 0, + "sellPrice": 3121, + "meanPrice": 2869, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 14993, + "consumptionQty": 1623281, + "targetStock": 420813, + "stock": 0, + "demand": 1205247, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.3800" + }, + { + "id": "128049165", + "name": "Bauxite", + "cost_min": 152, + "cost_max": 279, + "cost_mean": "216.00", + "homebuy": "36", + "homesell": "30", + "consumebuy": "6", + "baseCreationQty": 0, + "baseConsumptionQty": 536.47, + "capacity": 1772597, + "buyPrice": 0, + "sellPrice": 265, + "meanPrice": 216, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 1772597, + "targetStock": 443149, + "stock": 0, + "demand": 1218597, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.0000" + }, + { + "id": "128049156", + "name": "Bertrandite", + "cost_min": 2439, + "cost_max": 2949, + "cost_mean": "2694.00", + "homebuy": "87", + "homesell": "86", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 63.91, + "capacity": 211171, + "buyPrice": 0, + "sellPrice": 2949, + "meanPrice": 2694, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 211171, + "targetStock": 52792, + "stock": 0, + "demand": 158379, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.4000" + }, + { + "id": "128049159", + "name": "Coltan", + "cost_min": 1370, + "cost_max": 1730, + "cost_mean": "1550.00", + "homebuy": "82", + "homesell": "80", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 101.31, + "capacity": 334747, + "buyPrice": 0, + "sellPrice": 1730, + "meanPrice": 1550, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 334747, + "targetStock": 83686, + "stock": 0, + "demand": 251061, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.4100" + }, + { + "id": "128049158", + "name": "Gallite", + "cost_min": 1883, + "cost_max": 2319, + "cost_mean": "2101.00", + "homebuy": "85", + "homesell": "84", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 713, + "capacity": 2355885, + "buyPrice": 0, + "sellPrice": 2319, + "meanPrice": 2101, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 2355885, + "targetStock": 588971, + "stock": 0, + "demand": 1766914, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.4600" + }, + { + "id": "128049157", + "name": "Indite", + "cost_min": 2142, + "cost_max": 2613, + "cost_mean": "2378.00", + "homebuy": "86", + "homesell": "85", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 70.73, + "capacity": 233706, + "buyPrice": 0, + "sellPrice": 2613, + "meanPrice": 2378, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 233706, + "targetStock": 58426, + "stock": 0, + "demand": 175280, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.4400" + }, + { + "id": "128049161", + "name": "Lepidolite", + "cost_min": 589, + "cost_max": 810, + "cost_mean": "700.00", + "homebuy": "72", + "homesell": "69", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 207.79, + "capacity": 686577, + "buyPrice": 0, + "sellPrice": 810, + "meanPrice": 700, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 686577, + "targetStock": 171644, + "stock": 0, + "demand": 514933, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.2700" + }, + { + "id": "128668550", + "name": "Painite", + "cost_min": 30000, + "cost_max": 36000, + "cost_mean": "33000.00", + "homebuy": "100", + "homesell": "100", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 13.9, + "capacity": 11741, + "buyPrice": 0, + "sellPrice": 36000, + "meanPrice": 33000, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 11741, + "targetStock": 2935, + "stock": 0, + "demand": 8806, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.0000" + }, + { + "id": "128049163", + "name": "Rutile", + "cost_min": 330, + "cost_max": 493, + "cost_mean": "412.00", + "homebuy": "62", + "homesell": "58", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 3322, + "capacity": 10976504, + "buyPrice": 0, + "sellPrice": 491, + "meanPrice": 412, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 10976504, + "targetStock": 2744126, + "stock": 0, + "demand": 8156874, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.1600" + }, + { + "id": "128049160", + "name": "Uraninite", + "cost_min": 889, + "cost_max": 1168, + "cost_mean": "1029.00", + "homebuy": "77", + "homesell": "75", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 21.78, + "capacity": 71966, + "buyPrice": 0, + "sellPrice": 1063, + "meanPrice": 1029, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 71966, + "targetStock": 17991, + "stock": 0, + "demand": 38984, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.3400" + }, + { + "id": "128049214", + "name": "Beer", + "cost_min": 175, + "cost_max": 304, + "cost_mean": "240.00", + "homebuy": "43", + "homesell": "37", + "consumebuy": "6", + "baseCreationQty": 0, + "baseConsumptionQty": 755, + "capacity": 318850, + "buyPrice": 0, + "sellPrice": 303, + "meanPrice": 240, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 318850, + "targetStock": 79712, + "stock": 0, + "demand": 237400, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Narcotics", + "volumescale": "1.0000" + }, + { + "id": "128049216", + "name": "Liquor", + "cost_min": 624, + "cost_max": 852, + "cost_mean": "738.00", + "homebuy": "73", + "homesell": "70", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 179, + "capacity": 18899, + "buyPrice": 0, + "sellPrice": 852, + "meanPrice": 738, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 18899, + "targetStock": 4724, + "stock": 0, + "demand": 14150, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Narcotics", + "volumescale": "1.2800" + }, + { + "id": "128049215", + "name": "Wine", + "cost_min": 252, + "cost_max": 396, + "cost_mean": "324.00", + "homebuy": "56", + "homesell": "52", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 452, + "capacity": 381775, + "buyPrice": 0, + "sellPrice": 396, + "meanPrice": 324, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 381775, + "targetStock": 95443, + "stock": 0, + "demand": 285290, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Narcotics", + "volumescale": "1.1000" + }, + { + "id": "128066403", + "name": "Drones", + "cost_min": 100, + "cost_max": 100, + "cost_mean": "100.00", + "homebuy": "100", + "homesell": "100", + "consumebuy": "1", + "baseCreationQty": 200, + "baseConsumptionQty": 0, + "capacity": 168927, + "buyPrice": 101, + "sellPrice": 100, + "meanPrice": 100, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 168927, + "consumptionQty": 0, + "targetStock": 168927, + "stock": 168927, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "NonMarketable", + "volumescale": "1.0000" + }, + { + "id": "128671443", + "name": "S A P8 Core Container", + "cost_min": 50000, + "cost_max": 60000, + "cost_mean": "55000.00", + "homebuy": "100", + "homesell": "100", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 200, + "capacity": 168927, + "buyPrice": 0, + "sellPrice": 60000, + "meanPrice": 55000, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 168927, + "targetStock": 42231, + "stock": 0, + "demand": 126696, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Salvage", + "volumescale": "1.0000" + }, + { + "id": "128049231", + "name": "Advanced Catalysers", + "cost_min": 2778, + "cost_max": 3331, + "cost_mean": "3055.00", + "homebuy": "88", + "homesell": "87", + "consumebuy": "1", + "baseCreationQty": 18.69, + "baseConsumptionQty": 57.64, + "capacity": 236790, + "buyPrice": 0, + "sellPrice": 2778, + "meanPrice": 3055, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 46315, + "consumptionQty": 190475, + "targetStock": 93933, + "stock": 0, + "demand": 35714.25, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.3600" + }, + { + "id": "128049229", + "name": "Animal Monitors", + "cost_min": 300, + "cost_max": 456, + "cost_mean": "378.00", + "homebuy": "60", + "homesell": "56", + "consumebuy": "4", + "baseCreationQty": 32.93, + "baseConsumptionQty": 0, + "capacity": 81603, + "buyPrice": 224, + "sellPrice": 207, + "meanPrice": 378, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 81603, + "consumptionQty": 0, + "targetStock": 81603, + "stock": 45698, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.1400" + }, + { + "id": "128049230", + "name": "Aquaponic Systems", + "cost_min": 274, + "cost_max": 424, + "cost_mean": "349.00", + "homebuy": "58", + "homesell": "54", + "consumebuy": "4", + "baseCreationQty": 36.49, + "baseConsumptionQty": 0, + "capacity": 90424, + "buyPrice": 199, + "sellPrice": 184, + "meanPrice": 349, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 90424, + "consumptionQty": 0, + "targetStock": 90424, + "stock": 50638, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.1200" + }, + { + "id": "128049228", + "name": "Auto Fabricators", + "cost_min": 3612, + "cost_max": 4261, + "cost_mean": "3937.00", + "homebuy": "90", + "homesell": "89", + "consumebuy": "1", + "baseCreationQty": 380.03, + "baseConsumptionQty": 0, + "capacity": 941732, + "buyPrice": 3284, + "sellPrice": 3215, + "meanPrice": 3937, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 941732, + "consumptionQty": 0, + "targetStock": 941732, + "stock": 939132, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.2800" + }, + { + "id": "128049672", + "name": "Bio Reducing Lichen", + "cost_min": 944, + "cost_max": 1233, + "cost_mean": "1089.00", + "homebuy": "78", + "homesell": "76", + "consumebuy": "2", + "baseCreationQty": 11.57, + "baseConsumptionQty": 0, + "capacity": 28671, + "buyPrice": 844, + "sellPrice": 814, + "meanPrice": 1089, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 28671, + "consumptionQty": 0, + "targetStock": 28671, + "stock": 16055, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.3500" + }, + { + "id": "128049225", + "name": "Computer Components", + "cost_min": 527, + "cost_max": 734, + "cost_mean": "631.00", + "homebuy": "70", + "homesell": "67", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 931.83, + "capacity": 787054, + "buyPrice": 0, + "sellPrice": 734, + "meanPrice": 631, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 787054, + "targetStock": 196763, + "stock": 0, + "demand": 590105, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.2500" + }, + { + "id": "128049226", + "name": "Hazardous Environment Suits", + "cost_min": 274, + "cost_max": 424, + "cost_mean": "349.00", + "homebuy": "58", + "homesell": "54", + "consumebuy": "4", + "baseCreationQty": 36.49, + "baseConsumptionQty": 44.88, + "capacity": 238733, + "buyPrice": 0, + "sellPrice": 338, + "meanPrice": 349, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 90424, + "consumptionQty": 148309, + "targetStock": 127501, + "stock": 0, + "demand": 103413, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.1200" + }, + { + "id": "128049671", + "name": "Resonating Separators", + "cost_min": 5743, + "cost_max": 6607, + "cost_mean": "6175.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 265.22, + "baseConsumptionQty": 32.78, + "capacity": 765552, + "buyPrice": 5780, + "sellPrice": 5661, + "meanPrice": 6175, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 657228, + "consumptionQty": 108324, + "targetStock": 684309, + "stock": 412513.089725, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.1400" + }, + { + "id": "128049227", + "name": "Robotics", + "cost_min": 1766, + "cost_max": 2185, + "cost_mean": "1976.00", + "homebuy": "84", + "homesell": "82", + "consumebuy": "2", + "baseCreationQty": 13.35, + "baseConsumptionQty": 0, + "capacity": 33082, + "buyPrice": 1499, + "sellPrice": 1449, + "meanPrice": 1976, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 33082, + "consumptionQty": 0, + "targetStock": 33082, + "stock": 27132, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.4500" + }, + { + "id": "128049232", + "name": "Terrain Enrichment Systems", + "cost_min": 4705, + "cost_max": 5470, + "cost_mean": "5088.00", + "homebuy": "91", + "homesell": "90", + "consumebuy": "1", + "baseCreationQty": 12.46, + "baseConsumptionQty": 0, + "capacity": 30877, + "buyPrice": 4325, + "sellPrice": 4235, + "meanPrice": 5088, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 30877, + "consumptionQty": 0, + "targetStock": 30877, + "stock": 25751.4642, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.2000" + }, + { + "id": "128049193", + "name": "Synthetic Fabrics", + "cost_min": 186, + "cost_max": 317, + "cost_mean": "252.00", + "homebuy": "46", + "homesell": "41", + "consumebuy": "5", + "baseCreationQty": 74.91, + "baseConsumptionQty": 0, + "capacity": 185631, + "buyPrice": 87, + "sellPrice": 77, + "meanPrice": 252, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 185631, + "consumptionQty": 0, + "targetStock": 185631, + "stock": 185631, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Textiles", + "volumescale": "1.0200" + }, + { + "id": "128049244", + "name": "Biowaste", + "cost_min": 50, + "cost_max": 98, + "cost_mean": "74.00", + "homebuy": "27", + "homesell": "20", + "consumebuy": "7", + "baseCreationQty": 162, + "baseConsumptionQty": 0, + "capacity": 33460, + "buyPrice": 20, + "sellPrice": 15, + "meanPrice": 74, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 33460, + "consumptionQty": 0, + "targetStock": 33460, + "stock": 18738, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Waste ", + "volumescale": "1.0000" + }, + { + "id": "128049246", + "name": "Chemical Waste", + "cost_min": 50, + "cost_max": 107, + "cost_mean": "79.00", + "homebuy": "18", + "homesell": "10", + "consumebuy": "8", + "baseCreationQty": 0, + "baseConsumptionQty": 39.71, + "capacity": 33541, + "buyPrice": 0, + "sellPrice": 107, + "meanPrice": 79, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 33541, + "targetStock": 8385, + "stock": 0, + "demand": 25156, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Waste ", + "volumescale": "1.0000" + }, + { + "id": "128049248", + "name": "Scrap", + "cost_min": 70, + "cost_max": 122, + "cost_mean": "96.00", + "homebuy": "43", + "homesell": "37", + "consumebuy": "6", + "baseCreationQty": 134.39, + "baseConsumptionQty": 16.61, + "capacity": 165896, + "buyPrice": 45, + "sellPrice": 38, + "meanPrice": 96, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 111007, + "consumptionQty": 54889, + "targetStock": 124729, + "stock": 75885, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Waste ", + "volumescale": "1.0000" + }, + { + "id": "128049236", + "name": "Non Lethal Weapons", + "cost_min": 1766, + "cost_max": 2185, + "cost_mean": "1976.00", + "homebuy": "84", + "homesell": "82", + "consumebuy": "2", + "baseCreationQty": 7.12, + "baseConsumptionQty": 8.25, + "capacity": 6023, + "buyPrice": 1499, + "sellPrice": 1449, + "meanPrice": 1976, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 5883, + "consumptionQty": 140, + "targetStock": 5918, + "stock": 5305.52525, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Weapons", + "volumescale": "1.4500" + }, + { + "id": "128049235", + "name": "Reactive Armour", + "cost_min": 2008, + "cost_max": 2461, + "cost_mean": "2235.00", + "homebuy": "85", + "homesell": "84", + "consumebuy": "1", + "baseCreationQty": 6.23, + "baseConsumptionQty": 7.48, + "capacity": 5527, + "buyPrice": 1730, + "sellPrice": 1693, + "meanPrice": 2235, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 5147, + "consumptionQty": 380, + "targetStock": 5242, + "stock": 4377.61211, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Weapons", + "volumescale": "1.4600" + } + ], + "modules": { + "128049467": { + "id": 128049467, + "category": "weapon", + "name": "Hpt_PlasmaAccelerator_Fixed_Huge", + "cost": 13793600, + "sku": null + }, + "128049466": { + "id": 128049466, + "category": "weapon", + "name": "Hpt_PlasmaAccelerator_Fixed_Large", + "cost": 3051200, + "sku": null + }, + "128049465": { + "id": 128049465, + "category": "weapon", + "name": "Hpt_PlasmaAccelerator_Fixed_Medium", + "cost": 834200, + "sku": null + }, + "128049493": { + "id": 128049493, + "category": "weapon", + "name": "Hpt_BasicMissileRack_Fixed_Medium", + "cost": 512400, + "sku": null + }, + "128049492": { + "id": 128049492, + "category": "weapon", + "name": "Hpt_BasicMissileRack_Fixed_Small", + "cost": 72600, + "sku": null + }, + "128049500": { + "id": 128049500, + "category": "weapon", + "name": "Hpt_MineLauncher_Fixed_Small", + "cost": 24260, + "sku": null + }, + "128049510": { + "id": 128049510, + "category": "weapon", + "name": "Hpt_AdvancedTorpPylon_Fixed_Medium", + "cost": 44800, + "sku": null + }, + "128049509": { + "id": 128049509, + "category": "weapon", + "name": "Hpt_AdvancedTorpPylon_Fixed_Small", + "cost": 11200, + "sku": null + }, + "128666725": { + "id": 128666725, + "category": "weapon", + "name": "Hpt_DumbfireMissileRack_Fixed_Medium", + "cost": 240400, + "sku": null + }, + "128666724": { + "id": 128666724, + "category": "weapon", + "name": "Hpt_DumbfireMissileRack_Fixed_Small", + "cost": 32175, + "sku": null + }, + "128049407": { + "id": 128049407, + "category": "weapon", + "name": "Hpt_PulseLaserBurst_Turret_Small", + "cost": 52800, + "sku": null + }, + "128049406": { + "id": 128049406, + "category": "weapon", + "name": "Hpt_PulseLaserBurst_Gimbal_Large", + "cost": 281600, + "sku": null + }, + "128049404": { + "id": 128049404, + "category": "weapon", + "name": "Hpt_PulseLaserBurst_Gimbal_Small", + "cost": 8600, + "sku": null + }, + "128049402": { + "id": 128049402, + "category": "weapon", + "name": "Hpt_PulseLaserBurst_Fixed_Large", + "cost": 140400, + "sku": null + }, + "128049400": { + "id": 128049400, + "category": "weapon", + "name": "Hpt_PulseLaserBurst_Fixed_Small", + "cost": 4400, + "sku": null + }, + "128049390": { + "id": 128049390, + "category": "weapon", + "name": "Hpt_PulseLaser_Turret_Large", + "cost": 400400, + "sku": null + }, + "128049387": { + "id": 128049387, + "category": "weapon", + "name": "Hpt_PulseLaser_Gimbal_Large", + "cost": 140600, + "sku": null + }, + "128049388": { + "id": 128049388, + "category": "weapon", + "name": "Hpt_PulseLaser_Turret_Small", + "cost": 26000, + "sku": null + }, + "128049386": { + "id": 128049386, + "category": "weapon", + "name": "Hpt_PulseLaser_Gimbal_Medium", + "cost": 35400, + "sku": null + }, + "128049385": { + "id": 128049385, + "category": "weapon", + "name": "Hpt_PulseLaser_Gimbal_Small", + "cost": 6600, + "sku": null + }, + "128049383": { + "id": 128049383, + "category": "weapon", + "name": "Hpt_PulseLaser_Fixed_Large", + "cost": 70400, + "sku": null + }, + "128049382": { + "id": 128049382, + "category": "weapon", + "name": "Hpt_PulseLaser_Fixed_Medium", + "cost": 17600, + "sku": null + }, + "128049381": { + "id": 128049381, + "category": "weapon", + "name": "Hpt_PulseLaser_Fixed_Small", + "cost": 2200, + "sku": null + }, + "128049437": { + "id": 128049437, + "category": "weapon", + "name": "Hpt_BeamLaser_Turret_Large", + "cost": 19399600, + "sku": null + }, + "128049430": { + "id": 128049430, + "category": "weapon", + "name": "Hpt_BeamLaser_Fixed_Large", + "cost": 1177600, + "sku": null + }, + "128049433": { + "id": 128049433, + "category": "weapon", + "name": "Hpt_BeamLaser_Gimbal_Medium", + "cost": 500600, + "sku": null + }, + "128049436": { + "id": 128049436, + "category": "weapon", + "name": "Hpt_BeamLaser_Turret_Medium", + "cost": 2099900, + "sku": null + }, + "128049432": { + "id": 128049432, + "category": "weapon", + "name": "Hpt_BeamLaser_Gimbal_Small", + "cost": 74650, + "sku": null + }, + "128049435": { + "id": 128049435, + "category": "weapon", + "name": "Hpt_BeamLaser_Turret_Small", + "cost": 500000, + "sku": null + }, + "128049428": { + "id": 128049428, + "category": "weapon", + "name": "Hpt_BeamLaser_Fixed_Small", + "cost": 37430, + "sku": null + }, + "128049429": { + "id": 128049429, + "category": "weapon", + "name": "Hpt_BeamLaser_Fixed_Medium", + "cost": 299520, + "sku": null + }, + "128049441": { + "id": 128049441, + "category": "weapon", + "name": "Hpt_Cannon_Fixed_Huge", + "cost": 2700800, + "sku": null + }, + "128049444": { + "id": 128049444, + "category": "weapon", + "name": "Hpt_Cannon_Gimbal_Huge", + "cost": 5401600, + "sku": null + }, + "128049447": { + "id": 128049447, + "category": "weapon", + "name": "Hpt_Cannon_Turret_Large", + "cost": 16204800, + "sku": null + }, + "128671120": { + "id": 128671120, + "category": "weapon", + "name": "Hpt_Cannon_Gimbal_Large", + "cost": 1350400, + "sku": null + }, + "128049445": { + "id": 128049445, + "category": "weapon", + "name": "Hpt_Cannon_Turret_Small", + "cost": 506400, + "sku": null + }, + "128049440": { + "id": 128049440, + "category": "weapon", + "name": "Hpt_Cannon_Fixed_Large", + "cost": 675200, + "sku": null + }, + "128049442": { + "id": 128049442, + "category": "weapon", + "name": "Hpt_Cannon_Gimbal_Small", + "cost": 42200, + "sku": null + }, + "128049443": { + "id": 128049443, + "category": "weapon", + "name": "Hpt_Cannon_Gimbal_Medium", + "cost": 337600, + "sku": null + }, + "128671321": { + "id": 128671321, + "category": "weapon", + "name": "Hpt_Slugshot_Gimbal_Large", + "cost": 1751040, + "sku": null + }, + "128049450": { + "id": 128049450, + "category": "weapon", + "name": "Hpt_Slugshot_Fixed_Large", + "cost": 1167360, + "sku": null + }, + "128049453": { + "id": 128049453, + "category": "weapon", + "name": "Hpt_Slugshot_Turret_Small", + "cost": 182400, + "sku": null + }, + "128049451": { + "id": 128049451, + "category": "weapon", + "name": "Hpt_Slugshot_Gimbal_Small", + "cost": 54720, + "sku": null + }, + "128049452": { + "id": 128049452, + "category": "weapon", + "name": "Hpt_Slugshot_Gimbal_Medium", + "cost": 437760, + "sku": null + }, + "128049448": { + "id": 128049448, + "category": "weapon", + "name": "Hpt_Slugshot_Fixed_Small", + "cost": 36000, + "sku": null + }, + "128049449": { + "id": 128049449, + "category": "weapon", + "name": "Hpt_Slugshot_Fixed_Medium", + "cost": 291840, + "sku": null + }, + "128049463": { + "id": 128049463, + "category": "weapon", + "name": "Hpt_MultiCannon_Turret_Medium", + "cost": 1292800, + "sku": null + }, + "128049459": { + "id": 128049459, + "category": "weapon", + "name": "Hpt_MultiCannon_Gimbal_Small", + "cost": 14250, + "sku": null + }, + "128049460": { + "id": 128049460, + "category": "weapon", + "name": "Hpt_MultiCannon_Gimbal_Medium", + "cost": 57000, + "sku": null + }, + "128049456": { + "id": 128049456, + "category": "weapon", + "name": "Hpt_MultiCannon_Fixed_Medium", + "cost": 38000, + "sku": null + }, + "128049455": { + "id": 128049455, + "category": "weapon", + "name": "Hpt_MultiCannon_Fixed_Small", + "cost": 9500, + "sku": null + }, + "128049489": { + "id": 128049489, + "category": "weapon", + "name": "Hpt_Railgun_Fixed_Medium", + "cost": 412800, + "sku": null + }, + "128049488": { + "id": 128049488, + "category": "weapon", + "name": "Hpt_Railgun_Fixed_Small", + "cost": 51600, + "sku": null + }, + "128049446": { + "id": 128049446, + "category": "weapon", + "name": "Hpt_Cannon_Turret_Medium", + "cost": 4051200, + "sku": null + }, + "128049439": { + "id": 128049439, + "category": "weapon", + "name": "Hpt_Cannon_Fixed_Medium", + "cost": 168430, + "sku": null + }, + "128049438": { + "id": 128049438, + "category": "weapon", + "name": "Hpt_Cannon_Fixed_Small", + "cost": 21100, + "sku": null + }, + "128671322": { + "id": 128671322, + "category": "weapon", + "name": "Hpt_Slugshot_Turret_Large", + "cost": 5836800, + "sku": null + }, + "128049454": { + "id": 128049454, + "category": "weapon", + "name": "Hpt_Slugshot_Turret_Medium", + "cost": 1459200, + "sku": null + }, + "128049501": { + "id": 128049501, + "category": "weapon", + "name": "Hpt_MineLauncher_Fixed_Medium", + "cost": 294080, + "sku": null + }, + "128049409": { + "id": 128049409, + "category": "weapon", + "name": "Hpt_PulseLaserBurst_Turret_Large", + "cost": 800400, + "sku": null + }, + "128049405": { + "id": 128049405, + "category": "weapon", + "name": "Hpt_PulseLaserBurst_Gimbal_Medium", + "cost": 48500, + "sku": null + }, + "128662534": { + "id": 128662534, + "category": "utility", + "name": "Hpt_CrimeScanner_Size0_Class5", + "cost": 1097095, + "sku": null + }, + "128662532": { + "id": 128662532, + "category": "utility", + "name": "Hpt_CrimeScanner_Size0_Class3", + "cost": 121899, + "sku": null + }, + "128662531": { + "id": 128662531, + "category": "utility", + "name": "Hpt_CrimeScanner_Size0_Class2", + "cost": 40633, + "sku": null + }, + "128662530": { + "id": 128662530, + "category": "utility", + "name": "Hpt_CrimeScanner_Size0_Class1", + "cost": 13544, + "sku": null + }, + "128662522": { + "id": 128662522, + "category": "utility", + "name": "Hpt_CargoScanner_Size0_Class3", + "cost": 121899, + "sku": null + }, + "128662521": { + "id": 128662521, + "category": "utility", + "name": "Hpt_CargoScanner_Size0_Class2", + "cost": 40633, + "sku": null + }, + "128662527": { + "id": 128662527, + "category": "utility", + "name": "Hpt_CloudScanner_Size0_Class3", + "cost": 121899, + "sku": null + }, + "128049519": { + "id": 128049519, + "category": "utility", + "name": "Hpt_HeatSinkLauncher_Turret_Tiny", + "cost": 3500, + "sku": null + }, + "128049513": { + "id": 128049513, + "category": "utility", + "name": "Hpt_ChaffLauncher_Tiny", + "cost": 8500, + "sku": null + }, + "128049525": { + "id": 128049525, + "category": "utility", + "name": "Hpt_MiningLaser_Fixed_Small", + "cost": 6800, + "sku": null + }, + "128049516": { + "id": 128049516, + "category": "utility", + "name": "Hpt_ElectronicCountermeasure_Tiny", + "cost": 12500, + "sku": null + }, + "128662533": { + "id": 128662533, + "category": "utility", + "name": "Hpt_CrimeScanner_Size0_Class4", + "cost": 365698, + "sku": null + }, + "128049526": { + "id": 128049526, + "category": "utility", + "name": "Hpt_MiningLaser_Fixed_Medium", + "cost": 22576, + "sku": null + }, + "128662520": { + "id": 128662520, + "category": "utility", + "name": "Hpt_CargoScanner_Size0_Class1", + "cost": 13544, + "sku": null + }, + "128662523": { + "id": 128662523, + "category": "utility", + "name": "Hpt_CargoScanner_Size0_Class4", + "cost": 365698, + "sku": null + }, + "128662528": { + "id": 128662528, + "category": "utility", + "name": "Hpt_CloudScanner_Size0_Class4", + "cost": 365698, + "sku": null + }, + "128049252": { + "id": 128049252, + "category": "module", + "name": "SideWinder_Armour_Grade3", + "cost": 80320, + "sku": null + }, + "128049251": { + "id": 128049251, + "category": "module", + "name": "SideWinder_Armour_Grade2", + "cost": 25600, + "sku": null + }, + "128049250": { + "id": 128049250, + "category": "module", + "name": "SideWinder_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049253": { + "id": 128049253, + "category": "module", + "name": "SideWinder_Armour_Mirrored", + "cost": 132064, + "sku": null + }, + "128049254": { + "id": 128049254, + "category": "module", + "name": "SideWinder_Armour_Reactive", + "cost": 139424, + "sku": null + }, + "128049342": { + "id": 128049342, + "category": "module", + "name": "Python_Armour_Grade3", + "cost": 51280361, + "sku": null + }, + "128049341": { + "id": 128049341, + "category": "module", + "name": "Python_Armour_Grade2", + "cost": 22791271, + "sku": null + }, + "128049340": { + "id": 128049340, + "category": "module", + "name": "Python_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049343": { + "id": 128049343, + "category": "module", + "name": "Python_Armour_Mirrored", + "cost": 121192586, + "sku": null + }, + "128049344": { + "id": 128049344, + "category": "module", + "name": "Python_Armour_Reactive", + "cost": 134297567, + "sku": null + }, + "128049276": { + "id": 128049276, + "category": "module", + "name": "Viper_Armour_Grade3", + "cost": 128637, + "sku": null + }, + "128049275": { + "id": 128049275, + "category": "module", + "name": "Viper_Armour_Grade2", + "cost": 57172, + "sku": null + }, + "128049274": { + "id": 128049274, + "category": "module", + "name": "Viper_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049277": { + "id": 128049277, + "category": "module", + "name": "Viper_Armour_Mirrored", + "cost": 304014, + "sku": null + }, + "128049278": { + "id": 128049278, + "category": "module", + "name": "Viper_Armour_Reactive", + "cost": 336888, + "sku": null + }, + "128049366": { + "id": 128049366, + "category": "module", + "name": "Anaconda_Armour_Grade3", + "cost": 132272505, + "sku": null + }, + "128049365": { + "id": 128049365, + "category": "module", + "name": "Anaconda_Armour_Grade2", + "cost": 58787780, + "sku": null + }, + "128049364": { + "id": 128049364, + "category": "module", + "name": "Anaconda_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049368": { + "id": 128049368, + "category": "module", + "name": "Anaconda_Armour_Reactive", + "cost": 346406995, + "sku": null + }, + "128049367": { + "id": 128049367, + "category": "module", + "name": "Anaconda_Armour_Mirrored", + "cost": 312604021, + "sku": null + }, + "128049306": { + "id": 128049306, + "category": "module", + "name": "Asp_Armour_Grade3", + "cost": 5995038, + "sku": null + }, + "128049305": { + "id": 128049305, + "category": "module", + "name": "Asp_Armour_Grade2", + "cost": 2664461, + "sku": null + }, + "128049304": { + "id": 128049304, + "category": "module", + "name": "Asp_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049307": { + "id": 128049307, + "category": "module", + "name": "Asp_Armour_Mirrored", + "cost": 14168274, + "sku": null + }, + "128049308": { + "id": 128049308, + "category": "module", + "name": "Asp_Armour_Reactive", + "cost": 15700339, + "sku": null + }, + "128049312": { + "id": 128049312, + "category": "module", + "name": "Vulture_Armour_Grade3", + "cost": 4433053, + "sku": null + }, + "128049311": { + "id": 128049311, + "category": "module", + "name": "Vulture_Armour_Grade2", + "cost": 1970246, + "sku": null + }, + "128049310": { + "id": 128049310, + "category": "module", + "name": "Vulture_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049313": { + "id": 128049313, + "category": "module", + "name": "Vulture_Armour_Mirrored", + "cost": 10476783, + "sku": null + }, + "128049314": { + "id": 128049314, + "category": "module", + "name": "Vulture_Armour_Reactive", + "cost": 11609674, + "sku": null + }, + "128671219": { + "id": 128671219, + "category": "module", + "name": "DiamondBack_Armour_Grade2", + "cost": 225731, + "sku": null + }, + "128671220": { + "id": 128671220, + "category": "module", + "name": "DiamondBack_Armour_Grade3", + "cost": 507896, + "sku": null + }, + "128671218": { + "id": 128671218, + "category": "module", + "name": "DiamondBack_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128671221": { + "id": 128671221, + "category": "module", + "name": "DiamondBack_Armour_Mirrored", + "cost": 1185090, + "sku": null + }, + "128671222": { + "id": 128671222, + "category": "module", + "name": "DiamondBack_Armour_Reactive", + "cost": 1330123, + "sku": null + }, + "128049324": { + "id": 128049324, + "category": "module", + "name": "Federation_Dropship_Armour_Grade3", + "cost": 17832784, + "sku": null + }, + "128049323": { + "id": 128049323, + "category": "module", + "name": "Federation_Dropship_Armour_Grade2", + "cost": 7925682, + "sku": null + }, + "128049322": { + "id": 128049322, + "category": "module", + "name": "Federation_Dropship_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049325": { + "id": 128049325, + "category": "module", + "name": "Federation_Dropship_Armour_Mirrored", + "cost": 42144814, + "sku": null + }, + "128049326": { + "id": 128049326, + "category": "module", + "name": "Federation_Dropship_Armour_Reactive", + "cost": 46702081, + "sku": null + }, + "128671834": { + "id": 128671834, + "category": "module", + "name": "DiamondBackXL_Armour_Grade3", + "cost": 1705284, + "sku": null + }, + "128671833": { + "id": 128671833, + "category": "module", + "name": "DiamondBackXL_Armour_Grade2", + "cost": 757904, + "sku": null + }, + "128671832": { + "id": 128671832, + "category": "module", + "name": "DiamondBackXL_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128671836": { + "id": 128671836, + "category": "module", + "name": "DiamondBackXL_Armour_Reactive", + "cost": 4465949, + "sku": null + }, + "128671835": { + "id": 128671835, + "category": "module", + "name": "DiamondBackXL_Armour_Mirrored", + "cost": 3978996, + "sku": null + }, + "128049330": { + "id": 128049330, + "category": "module", + "name": "Orca_Armour_Grade3", + "cost": 43685898, + "sku": null + }, + "128049329": { + "id": 128049329, + "category": "module", + "name": "Orca_Armour_Grade2", + "cost": 19415954, + "sku": null + }, + "128049328": { + "id": 128049328, + "category": "module", + "name": "Orca_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049331": { + "id": 128049331, + "category": "module", + "name": "Orca_Armour_Mirrored", + "cost": 103244339, + "sku": null + }, + "128049332": { + "id": 128049332, + "category": "module", + "name": "Orca_Armour_Reactive", + "cost": 114408513, + "sku": null + }, + "128049282": { + "id": 128049282, + "category": "module", + "name": "CobraMkIII_Armour_Grade3", + "cost": 341746, + "sku": null + }, + "128049281": { + "id": 128049281, + "category": "module", + "name": "CobraMkIII_Armour_Grade2", + "cost": 151887, + "sku": null + }, + "128049280": { + "id": 128049280, + "category": "module", + "name": "CobraMkIII_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049283": { + "id": 128049283, + "category": "module", + "name": "CobraMkIII_Armour_Mirrored", + "cost": 797407, + "sku": null + }, + "128049284": { + "id": 128049284, + "category": "module", + "name": "CobraMkIII_Armour_Reactive", + "cost": 894995, + "sku": null + }, + "128662535": { + "id": 128662535, + "category": "module", + "name": "Int_StellarBodyDiscoveryScanner_Standard", + "cost": 1000, + "sku": null + }, + "128064338": { + "id": 128064338, + "category": "module", + "name": "Int_CargoRack_Size1_Class1", + "cost": 1000, + "sku": null + }, + "128666684": { + "id": 128666684, + "category": "module", + "name": "Int_Refinery_Size1_Class1", + "cost": 6000, + "sku": null + }, + "128666644": { + "id": 128666644, + "category": "module", + "name": "Int_FuelScoop_Size1_Class1", + "cost": 309, + "sku": null + }, + "128666704": { + "id": 128666704, + "category": "module", + "name": "Int_FSDInterdictor_Size1_Class1", + "cost": 12000, + "sku": null + }, + "128066532": { + "id": 128066532, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size1_Class1", + "cost": 600, + "sku": null + }, + "128064263": { + "id": 128064263, + "category": "module", + "name": "Int_ShieldGenerator_Size2_Class1", + "cost": 1978, + "sku": null + }, + "128064147": { + "id": 128064147, + "category": "module", + "name": "Int_LifeSupport_Size2_Class5", + "cost": 56547, + "sku": null + }, + "128064142": { + "id": 128064142, + "category": "module", + "name": "Int_LifeSupport_Size1_Class5", + "cost": 20195, + "sku": null + }, + "128064151": { + "id": 128064151, + "category": "module", + "name": "Int_LifeSupport_Size3_Class4", + "cost": 63333, + "sku": null + }, + "128064141": { + "id": 128064141, + "category": "module", + "name": "Int_LifeSupport_Size1_Class4", + "cost": 8078, + "sku": null + }, + "128064146": { + "id": 128064146, + "category": "module", + "name": "Int_LifeSupport_Size2_Class4", + "cost": 22619, + "sku": null + }, + "128064150": { + "id": 128064150, + "category": "module", + "name": "Int_LifeSupport_Size3_Class3", + "cost": 25333, + "sku": null + }, + "128064145": { + "id": 128064145, + "category": "module", + "name": "Int_LifeSupport_Size2_Class3", + "cost": 9048, + "sku": null + }, + "128064140": { + "id": 128064140, + "category": "module", + "name": "Int_LifeSupport_Size1_Class3", + "cost": 3231, + "sku": null + }, + "128064149": { + "id": 128064149, + "category": "module", + "name": "Int_LifeSupport_Size3_Class2", + "cost": 10133, + "sku": null + }, + "128064139": { + "id": 128064139, + "category": "module", + "name": "Int_LifeSupport_Size1_Class2", + "cost": 1293, + "sku": null + }, + "128064144": { + "id": 128064144, + "category": "module", + "name": "Int_LifeSupport_Size2_Class2", + "cost": 3619, + "sku": null + }, + "128064148": { + "id": 128064148, + "category": "module", + "name": "Int_LifeSupport_Size3_Class1", + "cost": 4053, + "sku": null + }, + "128064143": { + "id": 128064143, + "category": "module", + "name": "Int_LifeSupport_Size2_Class1", + "cost": 1448, + "sku": null + }, + "128064138": { + "id": 128064138, + "category": "module", + "name": "Int_LifeSupport_Size1_Class1", + "cost": 517, + "sku": null + }, + "128064112": { + "id": 128064112, + "category": "module", + "name": "Int_Hyperdrive_Size3_Class5", + "cost": 507912, + "sku": null + }, + "128064107": { + "id": 128064107, + "category": "module", + "name": "Int_Hyperdrive_Size2_Class5", + "cost": 160224, + "sku": null + }, + "128064111": { + "id": 128064111, + "category": "module", + "name": "Int_Hyperdrive_Size3_Class4", + "cost": 169304, + "sku": null + }, + "128064106": { + "id": 128064106, + "category": "module", + "name": "Int_Hyperdrive_Size2_Class4", + "cost": 53408, + "sku": null + }, + "128064110": { + "id": 128064110, + "category": "module", + "name": "Int_Hyperdrive_Size3_Class3", + "cost": 56435, + "sku": null + }, + "128064105": { + "id": 128064105, + "category": "module", + "name": "Int_Hyperdrive_Size2_Class3", + "cost": 17803, + "sku": null + }, + "128064109": { + "id": 128064109, + "category": "module", + "name": "Int_Hyperdrive_Size3_Class2", + "cost": 18812, + "sku": null + }, + "128064104": { + "id": 128064104, + "category": "module", + "name": "Int_Hyperdrive_Size2_Class2", + "cost": 5934, + "sku": null + }, + "128064108": { + "id": 128064108, + "category": "module", + "name": "Int_Hyperdrive_Size3_Class1", + "cost": 6271, + "sku": null + }, + "128064103": { + "id": 128064103, + "category": "module", + "name": "Int_Hyperdrive_Size2_Class1", + "cost": 1978, + "sku": null + }, + "128666693": { + "id": 128666693, + "category": "module", + "name": "Int_Refinery_Size2_Class3", + "cost": 113400, + "sku": null + }, + "128666696": { + "id": 128666696, + "category": "module", + "name": "Int_Refinery_Size1_Class4", + "cost": 162000, + "sku": null + }, + "128666689": { + "id": 128666689, + "category": "module", + "name": "Int_Refinery_Size2_Class2", + "cost": 37800, + "sku": null + }, + "128666692": { + "id": 128666692, + "category": "module", + "name": "Int_Refinery_Size1_Class3", + "cost": 54000, + "sku": null + }, + "128666688": { + "id": 128666688, + "category": "module", + "name": "Int_Refinery_Size1_Class2", + "cost": 18000, + "sku": null + }, + "128666685": { + "id": 128666685, + "category": "module", + "name": "Int_Refinery_Size2_Class1", + "cost": 12600, + "sku": null + }, + "128671232": { + "id": 128671232, + "category": "module", + "name": "Int_DroneControl_Collection_Size1_Class4", + "cost": 4800, + "sku": null + }, + "128671244": { + "id": 128671244, + "category": "module", + "name": "Int_DroneControl_Collection_Size7_Class1", + "cost": 437400, + "sku": null + }, + "128671240": { + "id": 128671240, + "category": "module", + "name": "Int_DroneControl_Collection_Size5_Class2", + "cost": 97200, + "sku": null + }, + "128671236": { + "id": 128671236, + "category": "module", + "name": "Int_DroneControl_Collection_Size3_Class3", + "cost": 21600, + "sku": null + }, + "128671231": { + "id": 128671231, + "category": "module", + "name": "Int_DroneControl_Collection_Size1_Class3", + "cost": 2400, + "sku": null + }, + "128671239": { + "id": 128671239, + "category": "module", + "name": "Int_DroneControl_Collection_Size5_Class1", + "cost": 48600, + "sku": null + }, + "128671235": { + "id": 128671235, + "category": "module", + "name": "Int_DroneControl_Collection_Size3_Class2", + "cost": 10800, + "sku": null + }, + "128671230": { + "id": 128671230, + "category": "module", + "name": "Int_DroneControl_Collection_Size1_Class2", + "cost": 1200, + "sku": null + }, + "128671234": { + "id": 128671234, + "category": "module", + "name": "Int_DroneControl_Collection_Size3_Class1", + "cost": 5400, + "sku": null + }, + "128671229": { + "id": 128671229, + "category": "module", + "name": "Int_DroneControl_Collection_Size1_Class1", + "cost": 600, + "sku": null + }, + "128663561": { + "id": 128663561, + "category": "module", + "name": "Int_StellarBodyDiscoveryScanner_Advanced", + "cost": 1545000, + "sku": null + }, + "128663560": { + "id": 128663560, + "category": "module", + "name": "Int_StellarBodyDiscoveryScanner_Intermediate", + "cost": 505000, + "sku": null + }, + "128666634": { + "id": 128666634, + "category": "module", + "name": "Int_DetailedSurfaceScanner_Tiny", + "cost": 250000, + "sku": null + }, + "128064037": { + "id": 128064037, + "category": "module", + "name": "Int_Powerplant_Size2_Class5", + "cost": 160224, + "sku": null + }, + "128064041": { + "id": 128064041, + "category": "module", + "name": "Int_Powerplant_Size3_Class4", + "cost": 169304, + "sku": null + }, + "128064036": { + "id": 128064036, + "category": "module", + "name": "Int_Powerplant_Size2_Class4", + "cost": 53408, + "sku": null + }, + "128064040": { + "id": 128064040, + "category": "module", + "name": "Int_Powerplant_Size3_Class3", + "cost": 56435, + "sku": null + }, + "128064035": { + "id": 128064035, + "category": "module", + "name": "Int_Powerplant_Size2_Class3", + "cost": 17803, + "sku": null + }, + "128064039": { + "id": 128064039, + "category": "module", + "name": "Int_Powerplant_Size3_Class2", + "cost": 18812, + "sku": null + }, + "128064034": { + "id": 128064034, + "category": "module", + "name": "Int_Powerplant_Size2_Class2", + "cost": 5934, + "sku": null + }, + "128064038": { + "id": 128064038, + "category": "module", + "name": "Int_Powerplant_Size3_Class1", + "cost": 6271, + "sku": null + }, + "128064033": { + "id": 128064033, + "category": "module", + "name": "Int_Powerplant_Size2_Class1", + "cost": 1978, + "sku": null + }, + "128064072": { + "id": 128064072, + "category": "module", + "name": "Int_Engine_Size2_Class5", + "cost": 160224, + "sku": null + }, + "128064076": { + "id": 128064076, + "category": "module", + "name": "Int_Engine_Size3_Class4", + "cost": 169304, + "sku": null + }, + "128064070": { + "id": 128064070, + "category": "module", + "name": "Int_Engine_Size2_Class3", + "cost": 17803, + "sku": null + }, + "128064074": { + "id": 128064074, + "category": "module", + "name": "Int_Engine_Size3_Class2", + "cost": 18812, + "sku": null + }, + "128064069": { + "id": 128064069, + "category": "module", + "name": "Int_Engine_Size2_Class2", + "cost": 5934, + "sku": null + }, + "128064073": { + "id": 128064073, + "category": "module", + "name": "Int_Engine_Size3_Class1", + "cost": 6271, + "sku": null + }, + "128064068": { + "id": 128064068, + "category": "module", + "name": "Int_Engine_Size2_Class1", + "cost": 1978, + "sku": null + }, + "128666717": { + "id": 128666717, + "category": "module", + "name": "Int_FSDInterdictor_Size2_Class4", + "cost": 907200, + "sku": null + }, + "128666713": { + "id": 128666713, + "category": "module", + "name": "Int_FSDInterdictor_Size2_Class3", + "cost": 302400, + "sku": null + }, + "128666716": { + "id": 128666716, + "category": "module", + "name": "Int_FSDInterdictor_Size1_Class4", + "cost": 324000, + "sku": null + }, + "128666712": { + "id": 128666712, + "category": "module", + "name": "Int_FSDInterdictor_Size1_Class3", + "cost": 108000, + "sku": null + }, + "128666709": { + "id": 128666709, + "category": "module", + "name": "Int_FSDInterdictor_Size2_Class2", + "cost": 100800, + "sku": null + }, + "128666708": { + "id": 128666708, + "category": "module", + "name": "Int_FSDInterdictor_Size1_Class2", + "cost": 36000, + "sku": null + }, + "128666705": { + "id": 128666705, + "category": "module", + "name": "Int_FSDInterdictor_Size2_Class1", + "cost": 33600, + "sku": null + }, + "128064097": { + "id": 128064097, + "category": "module", + "name": "Int_Engine_Size7_Class5", + "cost": 51289112, + "sku": null + }, + "128064101": { + "id": 128064101, + "category": "module", + "name": "Int_Engine_Size8_Class4", + "cost": 54195495, + "sku": null + }, + "128064100": { + "id": 128064100, + "category": "module", + "name": "Int_Engine_Size8_Class3", + "cost": 18065165, + "sku": null + }, + "128064099": { + "id": 128064099, + "category": "module", + "name": "Int_Engine_Size8_Class2", + "cost": 6021722, + "sku": null + }, + "128064094": { + "id": 128064094, + "category": "module", + "name": "Int_Engine_Size7_Class2", + "cost": 1899597, + "sku": null + }, + "128064098": { + "id": 128064098, + "category": "module", + "name": "Int_Engine_Size8_Class1", + "cost": 2007241, + "sku": null + }, + "128064093": { + "id": 128064093, + "category": "module", + "name": "Int_Engine_Size7_Class1", + "cost": 633199, + "sku": null + }, + "128671248": { + "id": 128671248, + "category": "module", + "name": "Int_DroneControl_Collection_Size7_Class5", + "cost": 6998400, + "sku": null + }, + "128671243": { + "id": 128671243, + "category": "module", + "name": "Int_DroneControl_Collection_Size5_Class5", + "cost": 777600, + "sku": null + }, + "128671238": { + "id": 128671238, + "category": "module", + "name": "Int_DroneControl_Collection_Size3_Class5", + "cost": 86400, + "sku": null + }, + "128671233": { + "id": 128671233, + "category": "module", + "name": "Int_DroneControl_Collection_Size1_Class5", + "cost": 9600, + "sku": null + }, + "128671247": { + "id": 128671247, + "category": "module", + "name": "Int_DroneControl_Collection_Size7_Class4", + "cost": 3499200, + "sku": null + }, + "128671242": { + "id": 128671242, + "category": "module", + "name": "Int_DroneControl_Collection_Size5_Class4", + "cost": 388800, + "sku": null + }, + "128671246": { + "id": 128671246, + "category": "module", + "name": "Int_DroneControl_Collection_Size7_Class3", + "cost": 1749600, + "sku": null + }, + "128671237": { + "id": 128671237, + "category": "module", + "name": "Int_DroneControl_Collection_Size3_Class4", + "cost": 43200, + "sku": null + }, + "128671245": { + "id": 128671245, + "category": "module", + "name": "Int_DroneControl_Collection_Size7_Class2", + "cost": 874800, + "sku": null + }, + "128671241": { + "id": 128671241, + "category": "module", + "name": "Int_DroneControl_Collection_Size5_Class3", + "cost": 194400, + "sku": null + }, + "128064192": { + "id": 128064192, + "category": "module", + "name": "Int_PowerDistributor_Size3_Class5", + "cost": 158331, + "sku": null + }, + "128064187": { + "id": 128064187, + "category": "module", + "name": "Int_PowerDistributor_Size2_Class5", + "cost": 56547, + "sku": null + }, + "128064182": { + "id": 128064182, + "category": "module", + "name": "Int_PowerDistributor_Size1_Class5", + "cost": 20195, + "sku": null + }, + "128064181": { + "id": 128064181, + "category": "module", + "name": "Int_PowerDistributor_Size1_Class4", + "cost": 8078, + "sku": null + }, + "128064186": { + "id": 128064186, + "category": "module", + "name": "Int_PowerDistributor_Size2_Class4", + "cost": 22619, + "sku": null + }, + "128064190": { + "id": 128064190, + "category": "module", + "name": "Int_PowerDistributor_Size3_Class3", + "cost": 25333, + "sku": null + }, + "128064185": { + "id": 128064185, + "category": "module", + "name": "Int_PowerDistributor_Size2_Class3", + "cost": 9048, + "sku": null + }, + "128064180": { + "id": 128064180, + "category": "module", + "name": "Int_PowerDistributor_Size1_Class3", + "cost": 3231, + "sku": null + }, + "128064189": { + "id": 128064189, + "category": "module", + "name": "Int_PowerDistributor_Size3_Class2", + "cost": 10133, + "sku": null + }, + "128064179": { + "id": 128064179, + "category": "module", + "name": "Int_PowerDistributor_Size1_Class2", + "cost": 1293, + "sku": null + }, + "128064184": { + "id": 128064184, + "category": "module", + "name": "Int_PowerDistributor_Size2_Class2", + "cost": 3619, + "sku": null + }, + "128064188": { + "id": 128064188, + "category": "module", + "name": "Int_PowerDistributor_Size3_Class1", + "cost": 4053, + "sku": null + }, + "128064183": { + "id": 128064183, + "category": "module", + "name": "Int_PowerDistributor_Size2_Class1", + "cost": 1448, + "sku": null + }, + "128064178": { + "id": 128064178, + "category": "module", + "name": "Int_PowerDistributor_Size1_Class1", + "cost": 517, + "sku": null + }, + "128064135": { + "id": 128064135, + "category": "module", + "name": "Int_Hyperdrive_Size8_Class3", + "cost": 18065165, + "sku": null + }, + "128064130": { + "id": 128064130, + "category": "module", + "name": "Int_Hyperdrive_Size7_Class3", + "cost": 5698790, + "sku": null + }, + "128064134": { + "id": 128064134, + "category": "module", + "name": "Int_Hyperdrive_Size8_Class2", + "cost": 6021722, + "sku": null + }, + "128064129": { + "id": 128064129, + "category": "module", + "name": "Int_Hyperdrive_Size7_Class2", + "cost": 1899597, + "sku": null + }, + "128064133": { + "id": 128064133, + "category": "module", + "name": "Int_Hyperdrive_Size8_Class1", + "cost": 2007241, + "sku": null + }, + "128064128": { + "id": 128064128, + "category": "module", + "name": "Int_Hyperdrive_Size7_Class1", + "cost": 633199, + "sku": null + }, + "128064272": { + "id": 128064272, + "category": "module", + "name": "Int_ShieldGenerator_Size3_Class5", + "cost": 507912, + "sku": null + }, + "128064271": { + "id": 128064271, + "category": "module", + "name": "Int_ShieldGenerator_Size3_Class4", + "cost": 169304, + "sku": null + }, + "128064270": { + "id": 128064270, + "category": "module", + "name": "Int_ShieldGenerator_Size3_Class3", + "cost": 56435, + "sku": null + }, + "128064265": { + "id": 128064265, + "category": "module", + "name": "Int_ShieldGenerator_Size2_Class3", + "cost": 17803, + "sku": null + }, + "128064269": { + "id": 128064269, + "category": "module", + "name": "Int_ShieldGenerator_Size3_Class2", + "cost": 18812, + "sku": null + }, + "128064264": { + "id": 128064264, + "category": "module", + "name": "Int_ShieldGenerator_Size2_Class2", + "cost": 5934, + "sku": null + }, + "128064268": { + "id": 128064268, + "category": "module", + "name": "Int_ShieldGenerator_Size3_Class1", + "cost": 6271, + "sku": null + }, + "128064292": { + "id": 128064292, + "category": "module", + "name": "Int_ShieldGenerator_Size7_Class5", + "cost": 51289112, + "sku": null + }, + "128064296": { + "id": 128064296, + "category": "module", + "name": "Int_ShieldGenerator_Size8_Class4", + "cost": 54195495, + "sku": null + }, + "128064291": { + "id": 128064291, + "category": "module", + "name": "Int_ShieldGenerator_Size7_Class4", + "cost": 17096371, + "sku": null + }, + "128064295": { + "id": 128064295, + "category": "module", + "name": "Int_ShieldGenerator_Size8_Class3", + "cost": 18065165, + "sku": null + }, + "128064290": { + "id": 128064290, + "category": "module", + "name": "Int_ShieldGenerator_Size7_Class3", + "cost": 5698790, + "sku": null + }, + "128064294": { + "id": 128064294, + "category": "module", + "name": "Int_ShieldGenerator_Size8_Class2", + "cost": 6021722, + "sku": null + }, + "128064289": { + "id": 128064289, + "category": "module", + "name": "Int_ShieldGenerator_Size7_Class2", + "cost": 1899597, + "sku": null + }, + "128064293": { + "id": 128064293, + "category": "module", + "name": "Int_ShieldGenerator_Size8_Class1", + "cost": 2007241, + "sku": null + }, + "128064288": { + "id": 128064288, + "category": "module", + "name": "Int_ShieldGenerator_Size7_Class1", + "cost": 633199, + "sku": null + }, + "128064227": { + "id": 128064227, + "category": "module", + "name": "Int_Sensors_Size2_Class5", + "cost": 56547, + "sku": null + }, + "128064222": { + "id": 128064222, + "category": "module", + "name": "Int_Sensors_Size1_Class5", + "cost": 20195, + "sku": null + }, + "128064231": { + "id": 128064231, + "category": "module", + "name": "Int_Sensors_Size3_Class4", + "cost": 63333, + "sku": null + }, + "128064221": { + "id": 128064221, + "category": "module", + "name": "Int_Sensors_Size1_Class4", + "cost": 8078, + "sku": null + }, + "128064226": { + "id": 128064226, + "category": "module", + "name": "Int_Sensors_Size2_Class4", + "cost": 22619, + "sku": null + }, + "128064230": { + "id": 128064230, + "category": "module", + "name": "Int_Sensors_Size3_Class3", + "cost": 25333, + "sku": null + }, + "128064225": { + "id": 128064225, + "category": "module", + "name": "Int_Sensors_Size2_Class3", + "cost": 9048, + "sku": null + }, + "128064220": { + "id": 128064220, + "category": "module", + "name": "Int_Sensors_Size1_Class3", + "cost": 3231, + "sku": null + }, + "128064229": { + "id": 128064229, + "category": "module", + "name": "Int_Sensors_Size3_Class2", + "cost": 10133, + "sku": null + }, + "128064219": { + "id": 128064219, + "category": "module", + "name": "Int_Sensors_Size1_Class2", + "cost": 1293, + "sku": null + }, + "128064224": { + "id": 128064224, + "category": "module", + "name": "Int_Sensors_Size2_Class2", + "cost": 3619, + "sku": null + }, + "128064228": { + "id": 128064228, + "category": "module", + "name": "Int_Sensors_Size3_Class1", + "cost": 4053, + "sku": null + }, + "128064223": { + "id": 128064223, + "category": "module", + "name": "Int_Sensors_Size2_Class1", + "cost": 1448, + "sku": null + }, + "128064218": { + "id": 128064218, + "category": "module", + "name": "Int_Sensors_Size1_Class1", + "cost": 517, + "sku": null + }, + "128671272": { + "id": 128671272, + "category": "module", + "name": "Int_DroneControl_Prospector_Size1_Class4", + "cost": 4800, + "sku": null + }, + "128671284": { + "id": 128671284, + "category": "module", + "name": "Int_DroneControl_Prospector_Size7_Class1", + "cost": 437400, + "sku": null + }, + "128671280": { + "id": 128671280, + "category": "module", + "name": "Int_DroneControl_Prospector_Size5_Class2", + "cost": 97200, + "sku": null + }, + "128671276": { + "id": 128671276, + "category": "module", + "name": "Int_DroneControl_Prospector_Size3_Class3", + "cost": 21600, + "sku": null + }, + "128671271": { + "id": 128671271, + "category": "module", + "name": "Int_DroneControl_Prospector_Size1_Class3", + "cost": 2400, + "sku": null + }, + "128671279": { + "id": 128671279, + "category": "module", + "name": "Int_DroneControl_Prospector_Size5_Class1", + "cost": 48600, + "sku": null + }, + "128671275": { + "id": 128671275, + "category": "module", + "name": "Int_DroneControl_Prospector_Size3_Class2", + "cost": 10800, + "sku": null + }, + "128671270": { + "id": 128671270, + "category": "module", + "name": "Int_DroneControl_Prospector_Size1_Class2", + "cost": 1200, + "sku": null + }, + "128671274": { + "id": 128671274, + "category": "module", + "name": "Int_DroneControl_Prospector_Size3_Class1", + "cost": 5400, + "sku": null + }, + "128671269": { + "id": 128671269, + "category": "module", + "name": "Int_DroneControl_Prospector_Size1_Class1", + "cost": 600, + "sku": null + }, + "128064345": { + "id": 128064345, + "category": "module", + "name": "Int_CargoRack_Size8_Class1", + "cost": 3829866, + "sku": null + }, + "128064344": { + "id": 128064344, + "category": "module", + "name": "Int_CargoRack_Size7_Class1", + "cost": 1178420, + "sku": null + }, + "128064343": { + "id": 128064343, + "category": "module", + "name": "Int_CargoRack_Size6_Class1", + "cost": 362591, + "sku": null + }, + "128064342": { + "id": 128064342, + "category": "module", + "name": "Int_CargoRack_Size5_Class1", + "cost": 111566, + "sku": null + }, + "128064341": { + "id": 128064341, + "category": "module", + "name": "Int_CargoRack_Size4_Class1", + "cost": 34328, + "sku": null + }, + "128064340": { + "id": 128064340, + "category": "module", + "name": "Int_CargoRack_Size3_Class1", + "cost": 10563, + "sku": null + }, + "128064339": { + "id": 128064339, + "category": "module", + "name": "Int_CargoRack_Size2_Class1", + "cost": 3250, + "sku": null + }, + "128064237": { + "id": 128064237, + "category": "module", + "name": "Int_Sensors_Size4_Class5", + "cost": 443328, + "sku": null + }, + "128064246": { + "id": 128064246, + "category": "module", + "name": "Int_Sensors_Size6_Class4", + "cost": 1390275, + "sku": null + }, + "128064241": { + "id": 128064241, + "category": "module", + "name": "Int_Sensors_Size5_Class4", + "cost": 496527, + "sku": null + }, + "128064245": { + "id": 128064245, + "category": "module", + "name": "Int_Sensors_Size6_Class3", + "cost": 556110, + "sku": null + }, + "128064244": { + "id": 128064244, + "category": "module", + "name": "Int_Sensors_Size6_Class2", + "cost": 222444, + "sku": null + }, + "128064240": { + "id": 128064240, + "category": "module", + "name": "Int_Sensors_Size5_Class3", + "cost": 198611, + "sku": null + }, + "128064235": { + "id": 128064235, + "category": "module", + "name": "Int_Sensors_Size4_Class3", + "cost": 70932, + "sku": null + }, + "128064239": { + "id": 128064239, + "category": "module", + "name": "Int_Sensors_Size5_Class2", + "cost": 79444, + "sku": null + }, + "128064243": { + "id": 128064243, + "category": "module", + "name": "Int_Sensors_Size6_Class1", + "cost": 88978, + "sku": null + }, + "128064234": { + "id": 128064234, + "category": "module", + "name": "Int_Sensors_Size4_Class2", + "cost": 28373, + "sku": null + }, + "128064238": { + "id": 128064238, + "category": "module", + "name": "Int_Sensors_Size5_Class1", + "cost": 31778, + "sku": null + }, + "128064233": { + "id": 128064233, + "category": "module", + "name": "Int_Sensors_Size4_Class1", + "cost": 11349, + "sku": null + }, + "128064197": { + "id": 128064197, + "category": "module", + "name": "Int_PowerDistributor_Size4_Class5", + "cost": 443328, + "sku": null + }, + "128064206": { + "id": 128064206, + "category": "module", + "name": "Int_PowerDistributor_Size6_Class4", + "cost": 1390275, + "sku": null + }, + "128064196": { + "id": 128064196, + "category": "module", + "name": "Int_PowerDistributor_Size4_Class4", + "cost": 177331, + "sku": null + }, + "128064205": { + "id": 128064205, + "category": "module", + "name": "Int_PowerDistributor_Size6_Class3", + "cost": 556110, + "sku": null + }, + "128064204": { + "id": 128064204, + "category": "module", + "name": "Int_PowerDistributor_Size6_Class2", + "cost": 222444, + "sku": null + }, + "128064200": { + "id": 128064200, + "category": "module", + "name": "Int_PowerDistributor_Size5_Class3", + "cost": 198611, + "sku": null + }, + "128064195": { + "id": 128064195, + "category": "module", + "name": "Int_PowerDistributor_Size4_Class3", + "cost": 70932, + "sku": null + }, + "128064199": { + "id": 128064199, + "category": "module", + "name": "Int_PowerDistributor_Size5_Class2", + "cost": 79444, + "sku": null + }, + "128064203": { + "id": 128064203, + "category": "module", + "name": "Int_PowerDistributor_Size6_Class1", + "cost": 88978, + "sku": null + }, + "128064194": { + "id": 128064194, + "category": "module", + "name": "Int_PowerDistributor_Size4_Class2", + "cost": 28373, + "sku": null + }, + "128064198": { + "id": 128064198, + "category": "module", + "name": "Int_PowerDistributor_Size5_Class1", + "cost": 31778, + "sku": null + }, + "128064193": { + "id": 128064193, + "category": "module", + "name": "Int_PowerDistributor_Size4_Class1", + "cost": 11349, + "sku": null + }, + "128667605": { + "id": 128667605, + "category": "module", + "name": "Int_Repairer_Size8_Class1", + "cost": 612220, + "sku": null + }, + "128667611": { + "id": 128667611, + "category": "module", + "name": "Int_Repairer_Size6_Class2", + "cost": 566870, + "sku": null + }, + "128667604": { + "id": 128667604, + "category": "module", + "name": "Int_Repairer_Size7_Class1", + "cost": 340122, + "sku": null + }, + "128667610": { + "id": 128667610, + "category": "module", + "name": "Int_Repairer_Size5_Class2", + "cost": 314928, + "sku": null + }, + "128667616": { + "id": 128667616, + "category": "module", + "name": "Int_Repairer_Size3_Class3", + "cost": 291600, + "sku": null + }, + "128667615": { + "id": 128667615, + "category": "module", + "name": "Int_Repairer_Size2_Class3", + "cost": 162000, + "sku": null + }, + "128667622": { + "id": 128667622, + "category": "module", + "name": "Int_Repairer_Size1_Class4", + "cost": 270000, + "sku": null + }, + "128667609": { + "id": 128667609, + "category": "module", + "name": "Int_Repairer_Size4_Class2", + "cost": 174960, + "sku": null + }, + "128667603": { + "id": 128667603, + "category": "module", + "name": "Int_Repairer_Size6_Class1", + "cost": 188957, + "sku": null + }, + "128667602": { + "id": 128667602, + "category": "module", + "name": "Int_Repairer_Size5_Class1", + "cost": 104976, + "sku": null + }, + "128667608": { + "id": 128667608, + "category": "module", + "name": "Int_Repairer_Size3_Class2", + "cost": 97200, + "sku": null + }, + "128667614": { + "id": 128667614, + "category": "module", + "name": "Int_Repairer_Size1_Class3", + "cost": 90000, + "sku": null + }, + "128667601": { + "id": 128667601, + "category": "module", + "name": "Int_Repairer_Size4_Class1", + "cost": 58320, + "sku": null + }, + "128667607": { + "id": 128667607, + "category": "module", + "name": "Int_Repairer_Size2_Class2", + "cost": 54000, + "sku": null + }, + "128667600": { + "id": 128667600, + "category": "module", + "name": "Int_Repairer_Size3_Class1", + "cost": 32400, + "sku": null + }, + "128667606": { + "id": 128667606, + "category": "module", + "name": "Int_Repairer_Size1_Class2", + "cost": 30000, + "sku": null + }, + "128667599": { + "id": 128667599, + "category": "module", + "name": "Int_Repairer_Size2_Class1", + "cost": 18000, + "sku": null + }, + "128667598": { + "id": 128667598, + "category": "module", + "name": "Int_Repairer_Size1_Class1", + "cost": 10000, + "sku": null + }, + "128668546": { + "id": 128668546, + "category": "module", + "name": "Int_HullReinforcement_Size5_Class2", + "cost": 450000, + "sku": null + }, + "128668544": { + "id": 128668544, + "category": "module", + "name": "Int_HullReinforcement_Size4_Class2", + "cost": 195000, + "sku": null + }, + "128668542": { + "id": 128668542, + "category": "module", + "name": "Int_HullReinforcement_Size3_Class2", + "cost": 84000, + "sku": null + }, + "128668538": { + "id": 128668538, + "category": "module", + "name": "Int_HullReinforcement_Size1_Class2", + "cost": 15000, + "sku": null + }, + "128666680": { + "id": 128666680, + "category": "module", + "name": "Int_FuelScoop_Size5_Class5", + "cost": 9073694, + "sku": null + }, + "128666673": { + "id": 128666673, + "category": "module", + "name": "Int_FuelScoop_Size6_Class4", + "cost": 7190903, + "sku": null + }, + "128666665": { + "id": 128666665, + "category": "module", + "name": "Int_FuelScoop_Size6_Class3", + "cost": 1797726, + "sku": null + }, + "128666672": { + "id": 128666672, + "category": "module", + "name": "Int_FuelScoop_Size5_Class4", + "cost": 2268424, + "sku": null + }, + "128666679": { + "id": 128666679, + "category": "module", + "name": "Int_FuelScoop_Size4_Class5", + "cost": 2862364, + "sku": null + }, + "128666664": { + "id": 128666664, + "category": "module", + "name": "Int_FuelScoop_Size5_Class3", + "cost": 567106, + "sku": null + }, + "128666663": { + "id": 128666663, + "category": "module", + "name": "Int_FuelScoop_Size4_Class3", + "cost": 178898, + "sku": null + }, + "128666657": { + "id": 128666657, + "category": "module", + "name": "Int_FuelScoop_Size6_Class2", + "cost": 449431, + "sku": null + }, + "128666656": { + "id": 128666656, + "category": "module", + "name": "Int_FuelScoop_Size5_Class2", + "cost": 141776, + "sku": null + }, + "128666649": { + "id": 128666649, + "category": "module", + "name": "Int_FuelScoop_Size6_Class1", + "cost": 107864, + "sku": null + }, + "128666655": { + "id": 128666655, + "category": "module", + "name": "Int_FuelScoop_Size4_Class2", + "cost": 44724, + "sku": null + }, + "128666648": { + "id": 128666648, + "category": "module", + "name": "Int_FuelScoop_Size5_Class1", + "cost": 34026, + "sku": null + }, + "128666647": { + "id": 128666647, + "category": "module", + "name": "Int_FuelScoop_Size4_Class1", + "cost": 10734, + "sku": null + }, + "128668545": { + "id": 128668545, + "category": "module", + "name": "Int_HullReinforcement_Size5_Class1", + "cost": 150000, + "sku": null + }, + "128668543": { + "id": 128668543, + "category": "module", + "name": "Int_HullReinforcement_Size4_Class1", + "cost": 65000, + "sku": null + }, + "128668541": { + "id": 128668541, + "category": "module", + "name": "Int_HullReinforcement_Size3_Class1", + "cost": 28000, + "sku": null + }, + "128668539": { + "id": 128668539, + "category": "module", + "name": "Int_HullReinforcement_Size2_Class1", + "cost": 12000, + "sku": null + }, + "128668537": { + "id": 128668537, + "category": "module", + "name": "Int_HullReinforcement_Size1_Class1", + "cost": 5000, + "sku": null + }, + "128064327": { + "id": 128064327, + "category": "module", + "name": "Int_ShieldCellBank_Size6_Class5", + "cost": 3475688, + "sku": null + }, + "128064322": { + "id": 128064322, + "category": "module", + "name": "Int_ShieldCellBank_Size5_Class5", + "cost": 1241317, + "sku": null + }, + "128064317": { + "id": 128064317, + "category": "module", + "name": "Int_ShieldCellBank_Size4_Class5", + "cost": 443328, + "sku": null + }, + "128064326": { + "id": 128064326, + "category": "module", + "name": "Int_ShieldCellBank_Size6_Class4", + "cost": 1390275, + "sku": null + }, + "128064316": { + "id": 128064316, + "category": "module", + "name": "Int_ShieldCellBank_Size4_Class4", + "cost": 177331, + "sku": null + }, + "128064325": { + "id": 128064325, + "category": "module", + "name": "Int_ShieldCellBank_Size6_Class3", + "cost": 556110, + "sku": null + }, + "128064324": { + "id": 128064324, + "category": "module", + "name": "Int_ShieldCellBank_Size6_Class2", + "cost": 222444, + "sku": null + }, + "128064320": { + "id": 128064320, + "category": "module", + "name": "Int_ShieldCellBank_Size5_Class3", + "cost": 198611, + "sku": null + }, + "128064315": { + "id": 128064315, + "category": "module", + "name": "Int_ShieldCellBank_Size4_Class3", + "cost": 70932, + "sku": null + }, + "128064319": { + "id": 128064319, + "category": "module", + "name": "Int_ShieldCellBank_Size5_Class2", + "cost": 79444, + "sku": null + }, + "128064323": { + "id": 128064323, + "category": "module", + "name": "Int_ShieldCellBank_Size6_Class1", + "cost": 88978, + "sku": null + }, + "128064314": { + "id": 128064314, + "category": "module", + "name": "Int_ShieldCellBank_Size4_Class2", + "cost": 28373, + "sku": null + }, + "128064318": { + "id": 128064318, + "category": "module", + "name": "Int_ShieldCellBank_Size5_Class1", + "cost": 31778, + "sku": null + }, + "128064313": { + "id": 128064313, + "category": "module", + "name": "Int_ShieldCellBank_Size4_Class1", + "cost": 11349, + "sku": null + }, + "128668536": { + "id": 128668536, + "category": "module", + "name": "Hpt_ShieldBooster_Size0_Class5", + "cost": 281000, + "sku": null + }, + "128668535": { + "id": 128668535, + "category": "module", + "name": "Hpt_ShieldBooster_Size0_Class4", + "cost": 122000, + "sku": null + }, + "128668534": { + "id": 128668534, + "category": "module", + "name": "Hpt_ShieldBooster_Size0_Class3", + "cost": 53000, + "sku": null + }, + "128668533": { + "id": 128668533, + "category": "module", + "name": "Hpt_ShieldBooster_Size0_Class2", + "cost": 23000, + "sku": null + }, + "128668532": { + "id": 128668532, + "category": "module", + "name": "Hpt_ShieldBooster_Size0_Class1", + "cost": 10000, + "sku": null + }, + "128064171": { + "id": 128064171, + "category": "module", + "name": "Int_LifeSupport_Size7_Class4", + "cost": 3892770, + "sku": null + }, + "128064175": { + "id": 128064175, + "category": "module", + "name": "Int_LifeSupport_Size8_Class3", + "cost": 4359903, + "sku": null + }, + "128064170": { + "id": 128064170, + "category": "module", + "name": "Int_LifeSupport_Size7_Class3", + "cost": 1557108, + "sku": null + }, + "128064169": { + "id": 128064169, + "category": "module", + "name": "Int_LifeSupport_Size7_Class2", + "cost": 622843, + "sku": null + }, + "128064173": { + "id": 128064173, + "category": "module", + "name": "Int_LifeSupport_Size8_Class1", + "cost": 697584, + "sku": null + }, + "128064168": { + "id": 128064168, + "category": "module", + "name": "Int_LifeSupport_Size7_Class1", + "cost": 249137, + "sku": null + }, + "128064065": { + "id": 128064065, + "category": "module", + "name": "Int_Powerplant_Size8_Class3", + "cost": 18065165, + "sku": null + }, + "128064060": { + "id": 128064060, + "category": "module", + "name": "Int_Powerplant_Size7_Class3", + "cost": 5698790, + "sku": null + }, + "128064064": { + "id": 128064064, + "category": "module", + "name": "Int_Powerplant_Size8_Class2", + "cost": 6021722, + "sku": null + }, + "128064059": { + "id": 128064059, + "category": "module", + "name": "Int_Powerplant_Size7_Class2", + "cost": 1899597, + "sku": null + }, + "128064063": { + "id": 128064063, + "category": "module", + "name": "Int_Powerplant_Size8_Class1", + "cost": 2007241, + "sku": null + }, + "128064058": { + "id": 128064058, + "category": "module", + "name": "Int_Powerplant_Size7_Class1", + "cost": 633199, + "sku": null + }, + "128064166": { + "id": 128064166, + "category": "module", + "name": "Int_LifeSupport_Size6_Class4", + "cost": 1390275, + "sku": null + }, + "128064161": { + "id": 128064161, + "category": "module", + "name": "Int_LifeSupport_Size5_Class4", + "cost": 496527, + "sku": null + }, + "128064156": { + "id": 128064156, + "category": "module", + "name": "Int_LifeSupport_Size4_Class4", + "cost": 177331, + "sku": null + }, + "128064165": { + "id": 128064165, + "category": "module", + "name": "Int_LifeSupport_Size6_Class3", + "cost": 556110, + "sku": null + }, + "128064164": { + "id": 128064164, + "category": "module", + "name": "Int_LifeSupport_Size6_Class2", + "cost": 222444, + "sku": null + }, + "128064155": { + "id": 128064155, + "category": "module", + "name": "Int_LifeSupport_Size4_Class3", + "cost": 70932, + "sku": null + }, + "128064159": { + "id": 128064159, + "category": "module", + "name": "Int_LifeSupport_Size5_Class2", + "cost": 79444, + "sku": null + }, + "128064163": { + "id": 128064163, + "category": "module", + "name": "Int_LifeSupport_Size6_Class1", + "cost": 88978, + "sku": null + }, + "128064154": { + "id": 128064154, + "category": "module", + "name": "Int_LifeSupport_Size4_Class2", + "cost": 28373, + "sku": null + }, + "128064158": { + "id": 128064158, + "category": "module", + "name": "Int_LifeSupport_Size5_Class1", + "cost": 31778, + "sku": null + }, + "128064153": { + "id": 128064153, + "category": "module", + "name": "Int_LifeSupport_Size4_Class1", + "cost": 11349, + "sku": null + }, + "128064056": { + "id": 128064056, + "category": "module", + "name": "Int_Powerplant_Size6_Class4", + "cost": 5393177, + "sku": null + }, + "128064051": { + "id": 128064051, + "category": "module", + "name": "Int_Powerplant_Size5_Class4", + "cost": 1701318, + "sku": null + }, + "128064046": { + "id": 128064046, + "category": "module", + "name": "Int_Powerplant_Size4_Class4", + "cost": 536693, + "sku": null + }, + "128064055": { + "id": 128064055, + "category": "module", + "name": "Int_Powerplant_Size6_Class3", + "cost": 1797726, + "sku": null + }, + "128064054": { + "id": 128064054, + "category": "module", + "name": "Int_Powerplant_Size6_Class2", + "cost": 599242, + "sku": null + }, + "128064050": { + "id": 128064050, + "category": "module", + "name": "Int_Powerplant_Size5_Class3", + "cost": 567106, + "sku": null + }, + "128064045": { + "id": 128064045, + "category": "module", + "name": "Int_Powerplant_Size4_Class3", + "cost": 178898, + "sku": null + }, + "128064049": { + "id": 128064049, + "category": "module", + "name": "Int_Powerplant_Size5_Class2", + "cost": 189035, + "sku": null + }, + "128064053": { + "id": 128064053, + "category": "module", + "name": "Int_Powerplant_Size6_Class1", + "cost": 199747, + "sku": null + }, + "128064044": { + "id": 128064044, + "category": "module", + "name": "Int_Powerplant_Size4_Class2", + "cost": 59633, + "sku": null + }, + "128064048": { + "id": 128064048, + "category": "module", + "name": "Int_Powerplant_Size5_Class1", + "cost": 63012, + "sku": null + }, + "128064043": { + "id": 128064043, + "category": "module", + "name": "Int_Powerplant_Size4_Class1", + "cost": 19878, + "sku": null + }, + "128064092": { + "id": 128064092, + "category": "module", + "name": "Int_Engine_Size6_Class5", + "cost": 16179531, + "sku": null + }, + "128064087": { + "id": 128064087, + "category": "module", + "name": "Int_Engine_Size5_Class5", + "cost": 5103953, + "sku": null + }, + "128064082": { + "id": 128064082, + "category": "module", + "name": "Int_Engine_Size4_Class5", + "cost": 1610080, + "sku": null + }, + "128064091": { + "id": 128064091, + "category": "module", + "name": "Int_Engine_Size6_Class4", + "cost": 5393177, + "sku": null + }, + "128064086": { + "id": 128064086, + "category": "module", + "name": "Int_Engine_Size5_Class4", + "cost": 1701318, + "sku": null + }, + "128064081": { + "id": 128064081, + "category": "module", + "name": "Int_Engine_Size4_Class4", + "cost": 536693, + "sku": null + }, + "128064089": { + "id": 128064089, + "category": "module", + "name": "Int_Engine_Size6_Class2", + "cost": 599242, + "sku": null + }, + "128064085": { + "id": 128064085, + "category": "module", + "name": "Int_Engine_Size5_Class3", + "cost": 567106, + "sku": null + }, + "128064080": { + "id": 128064080, + "category": "module", + "name": "Int_Engine_Size4_Class3", + "cost": 178898, + "sku": null + }, + "128064084": { + "id": 128064084, + "category": "module", + "name": "Int_Engine_Size5_Class2", + "cost": 189035, + "sku": null + }, + "128064088": { + "id": 128064088, + "category": "module", + "name": "Int_Engine_Size6_Class1", + "cost": 199747, + "sku": null + }, + "128064079": { + "id": 128064079, + "category": "module", + "name": "Int_Engine_Size4_Class2", + "cost": 59633, + "sku": null + }, + "128064083": { + "id": 128064083, + "category": "module", + "name": "Int_Engine_Size5_Class1", + "cost": 63012, + "sku": null + }, + "128064078": { + "id": 128064078, + "category": "module", + "name": "Int_Engine_Size4_Class1", + "cost": 19878, + "sku": null + }, + "128064127": { + "id": 128064127, + "category": "module", + "name": "Int_Hyperdrive_Size6_Class5", + "cost": 16179531, + "sku": null + }, + "128064121": { + "id": 128064121, + "category": "module", + "name": "Int_Hyperdrive_Size5_Class4", + "cost": 1701318, + "sku": null + }, + "128064116": { + "id": 128064116, + "category": "module", + "name": "Int_Hyperdrive_Size4_Class4", + "cost": 536693, + "sku": null + }, + "128064125": { + "id": 128064125, + "category": "module", + "name": "Int_Hyperdrive_Size6_Class3", + "cost": 1797726, + "sku": null + }, + "128064124": { + "id": 128064124, + "category": "module", + "name": "Int_Hyperdrive_Size6_Class2", + "cost": 599242, + "sku": null + }, + "128064120": { + "id": 128064120, + "category": "module", + "name": "Int_Hyperdrive_Size5_Class3", + "cost": 567106, + "sku": null + }, + "128064115": { + "id": 128064115, + "category": "module", + "name": "Int_Hyperdrive_Size4_Class3", + "cost": 178898, + "sku": null + }, + "128064119": { + "id": 128064119, + "category": "module", + "name": "Int_Hyperdrive_Size5_Class2", + "cost": 189035, + "sku": null + }, + "128064123": { + "id": 128064123, + "category": "module", + "name": "Int_Hyperdrive_Size6_Class1", + "cost": 199747, + "sku": null + }, + "128064114": { + "id": 128064114, + "category": "module", + "name": "Int_Hyperdrive_Size4_Class2", + "cost": 59633, + "sku": null + }, + "128064118": { + "id": 128064118, + "category": "module", + "name": "Int_Hyperdrive_Size5_Class1", + "cost": 63012, + "sku": null + }, + "128064113": { + "id": 128064113, + "category": "module", + "name": "Int_Hyperdrive_Size4_Class1", + "cost": 19878, + "sku": null + }, + "128064282": { + "id": 128064282, + "category": "module", + "name": "Int_ShieldGenerator_Size5_Class5", + "cost": 5103953, + "sku": null + }, + "128064277": { + "id": 128064277, + "category": "module", + "name": "Int_ShieldGenerator_Size4_Class5", + "cost": 1610080, + "sku": null + }, + "128064286": { + "id": 128064286, + "category": "module", + "name": "Int_ShieldGenerator_Size6_Class4", + "cost": 5393177, + "sku": null + }, + "128064281": { + "id": 128064281, + "category": "module", + "name": "Int_ShieldGenerator_Size5_Class4", + "cost": 1701318, + "sku": null + }, + "128064284": { + "id": 128064284, + "category": "module", + "name": "Int_ShieldGenerator_Size6_Class2", + "cost": 599242, + "sku": null + }, + "128064275": { + "id": 128064275, + "category": "module", + "name": "Int_ShieldGenerator_Size4_Class3", + "cost": 178898, + "sku": null + }, + "128064279": { + "id": 128064279, + "category": "module", + "name": "Int_ShieldGenerator_Size5_Class2", + "cost": 189035, + "sku": null + }, + "128064283": { + "id": 128064283, + "category": "module", + "name": "Int_ShieldGenerator_Size6_Class1", + "cost": 199747, + "sku": null + }, + "128064274": { + "id": 128064274, + "category": "module", + "name": "Int_ShieldGenerator_Size4_Class2", + "cost": 59633, + "sku": null + }, + "128064278": { + "id": 128064278, + "category": "module", + "name": "Int_ShieldGenerator_Size5_Class1", + "cost": 63012, + "sku": null + }, + "128064273": { + "id": 128064273, + "category": "module", + "name": "Int_ShieldGenerator_Size4_Class1", + "cost": 19878, + "sku": null + }, + "128064257": { + "id": 128064257, + "category": "module", + "name": "Int_Sensors_Size8_Class5", + "cost": 27249391, + "sku": null + }, + "128064251": { + "id": 128064251, + "category": "module", + "name": "Int_Sensors_Size7_Class4", + "cost": 3892770, + "sku": null + }, + "128064249": { + "id": 128064249, + "category": "module", + "name": "Int_Sensors_Size7_Class2", + "cost": 622843, + "sku": null + }, + "128064253": { + "id": 128064253, + "category": "module", + "name": "Int_Sensors_Size8_Class1", + "cost": 697584, + "sku": null + }, + "128064248": { + "id": 128064248, + "category": "module", + "name": "Int_Sensors_Size7_Class1", + "cost": 249137, + "sku": null + }, + "128671263": { + "id": 128671263, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size5_Class5", + "cost": 777600, + "sku": null + }, + "128671258": { + "id": 128671258, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size3_Class5", + "cost": 86400, + "sku": null + }, + "128671253": { + "id": 128671253, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size1_Class5", + "cost": 9600, + "sku": null + }, + "128671267": { + "id": 128671267, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size7_Class4", + "cost": 3499200, + "sku": null + }, + "128671257": { + "id": 128671257, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size3_Class4", + "cost": 43200, + "sku": null + }, + "128671265": { + "id": 128671265, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size7_Class2", + "cost": 874800, + "sku": null + }, + "128671261": { + "id": 128671261, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size5_Class3", + "cost": 194400, + "sku": null + }, + "128064353": { + "id": 128064353, + "category": "module", + "name": "Int_FuelTank_Size8_Class3", + "cost": 5428429, + "sku": null + }, + "128064352": { + "id": 128064352, + "category": "module", + "name": "Int_FuelTank_Size7_Class3", + "cost": 1780914, + "sku": null + }, + "128064351": { + "id": 128064351, + "category": "module", + "name": "Int_FuelTank_Size6_Class3", + "cost": 341577, + "sku": null + }, + "128064350": { + "id": 128064350, + "category": "module", + "name": "Int_FuelTank_Size5_Class3", + "cost": 97754, + "sku": null + }, + "128064349": { + "id": 128064349, + "category": "module", + "name": "Int_FuelTank_Size4_Class3", + "cost": 24734, + "sku": null + }, + "128064348": { + "id": 128064348, + "category": "module", + "name": "Int_FuelTank_Size3_Class3", + "cost": 7063, + "sku": null + }, + "128064347": { + "id": 128064347, + "category": "module", + "name": "Int_FuelTank_Size2_Class3", + "cost": 3750, + "sku": null + }, + "128064346": { + "id": 128064346, + "category": "module", + "name": "Int_FuelTank_Size1_Class3", + "cost": 1000, + "sku": null + }, + "128671288": { + "id": 128671288, + "category": "module", + "name": "Int_DroneControl_Prospector_Size7_Class5", + "cost": 6998400, + "sku": null + }, + "128671278": { + "id": 128671278, + "category": "module", + "name": "Int_DroneControl_Prospector_Size3_Class5", + "cost": 86400, + "sku": null + }, + "128671273": { + "id": 128671273, + "category": "module", + "name": "Int_DroneControl_Prospector_Size1_Class5", + "cost": 9600, + "sku": null + }, + "128671287": { + "id": 128671287, + "category": "module", + "name": "Int_DroneControl_Prospector_Size7_Class4", + "cost": 3499200, + "sku": null + }, + "128671282": { + "id": 128671282, + "category": "module", + "name": "Int_DroneControl_Prospector_Size5_Class4", + "cost": 388800, + "sku": null + }, + "128671286": { + "id": 128671286, + "category": "module", + "name": "Int_DroneControl_Prospector_Size7_Class3", + "cost": 1749600, + "sku": null + }, + "128671277": { + "id": 128671277, + "category": "module", + "name": "Int_DroneControl_Prospector_Size3_Class4", + "cost": 43200, + "sku": null + }, + "128671285": { + "id": 128671285, + "category": "module", + "name": "Int_DroneControl_Prospector_Size7_Class2", + "cost": 874800, + "sku": null + }, + "128666677": { + "id": 128666677, + "category": "module", + "name": "Int_FuelScoop_Size2_Class5", + "cost": 284844, + "sku": null + }, + "128666670": { + "id": 128666670, + "category": "module", + "name": "Int_FuelScoop_Size3_Class4", + "cost": 225738, + "sku": null + }, + "128666662": { + "id": 128666662, + "category": "module", + "name": "Int_FuelScoop_Size3_Class3", + "cost": 56435, + "sku": null + }, + "128666669": { + "id": 128666669, + "category": "module", + "name": "Int_FuelScoop_Size2_Class4", + "cost": 71211, + "sku": null + }, + "128666676": { + "id": 128666676, + "category": "module", + "name": "Int_FuelScoop_Size1_Class5", + "cost": 82270, + "sku": null + }, + "128666668": { + "id": 128666668, + "category": "module", + "name": "Int_FuelScoop_Size1_Class4", + "cost": 20568, + "sku": null + }, + "128666661": { + "id": 128666661, + "category": "module", + "name": "Int_FuelScoop_Size2_Class3", + "cost": 17803, + "sku": null + }, + "128666660": { + "id": 128666660, + "category": "module", + "name": "Int_FuelScoop_Size1_Class3", + "cost": 5142, + "sku": null + }, + "128666654": { + "id": 128666654, + "category": "module", + "name": "Int_FuelScoop_Size3_Class2", + "cost": 14109, + "sku": null + }, + "128666653": { + "id": 128666653, + "category": "module", + "name": "Int_FuelScoop_Size2_Class2", + "cost": 4451, + "sku": null + }, + "128666646": { + "id": 128666646, + "category": "module", + "name": "Int_FuelScoop_Size3_Class1", + "cost": 3386, + "sku": null + }, + "128666652": { + "id": 128666652, + "category": "module", + "name": "Int_FuelScoop_Size1_Class2", + "cost": 1285, + "sku": null + }, + "128666645": { + "id": 128666645, + "category": "module", + "name": "Int_FuelScoop_Size2_Class1", + "cost": 1068, + "sku": null + }, + "128671252": { + "id": 128671252, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size1_Class4", + "cost": 4800, + "sku": null + }, + "128671264": { + "id": 128671264, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size7_Class1", + "cost": 437400, + "sku": null + }, + "128671260": { + "id": 128671260, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size5_Class2", + "cost": 97200, + "sku": null + }, + "128671256": { + "id": 128671256, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size3_Class3", + "cost": 21600, + "sku": null + }, + "128671251": { + "id": 128671251, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size1_Class3", + "cost": 2400, + "sku": null + }, + "128671259": { + "id": 128671259, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size5_Class1", + "cost": 48600, + "sku": null + }, + "128671255": { + "id": 128671255, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size3_Class2", + "cost": 10800, + "sku": null + }, + "128671250": { + "id": 128671250, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size1_Class2", + "cost": 1200, + "sku": null + }, + "128671254": { + "id": 128671254, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size3_Class1", + "cost": 5400, + "sku": null + }, + "128671249": { + "id": 128671249, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size1_Class1", + "cost": 600, + "sku": null + }, + "128064217": { + "id": 128064217, + "category": "module", + "name": "Int_PowerDistributor_Size8_Class5", + "cost": 27249391, + "sku": null + }, + "128064212": { + "id": 128064212, + "category": "module", + "name": "Int_PowerDistributor_Size7_Class5", + "cost": 9731925, + "sku": null + }, + "128064216": { + "id": 128064216, + "category": "module", + "name": "Int_PowerDistributor_Size8_Class4", + "cost": 10899756, + "sku": null + }, + "128064211": { + "id": 128064211, + "category": "module", + "name": "Int_PowerDistributor_Size7_Class4", + "cost": 3892770, + "sku": null + }, + "128064215": { + "id": 128064215, + "category": "module", + "name": "Int_PowerDistributor_Size8_Class3", + "cost": 4359903, + "sku": null + }, + "128064214": { + "id": 128064214, + "category": "module", + "name": "Int_PowerDistributor_Size8_Class2", + "cost": 1743961, + "sku": null + }, + "128064209": { + "id": 128064209, + "category": "module", + "name": "Int_PowerDistributor_Size7_Class2", + "cost": 622843, + "sku": null + }, + "128064213": { + "id": 128064213, + "category": "module", + "name": "Int_PowerDistributor_Size8_Class1", + "cost": 697584, + "sku": null + }, + "128064208": { + "id": 128064208, + "category": "module", + "name": "Int_PowerDistributor_Size7_Class1", + "cost": 249137, + "sku": null + }, + "128064311": { + "id": 128064311, + "category": "module", + "name": "Int_ShieldCellBank_Size3_Class4", + "cost": 63333, + "sku": null + }, + "128064301": { + "id": 128064301, + "category": "module", + "name": "Int_ShieldCellBank_Size1_Class4", + "cost": 8078, + "sku": null + }, + "128064306": { + "id": 128064306, + "category": "module", + "name": "Int_ShieldCellBank_Size2_Class4", + "cost": 22619, + "sku": null + }, + "128064310": { + "id": 128064310, + "category": "module", + "name": "Int_ShieldCellBank_Size3_Class3", + "cost": 25333, + "sku": null + }, + "128064305": { + "id": 128064305, + "category": "module", + "name": "Int_ShieldCellBank_Size2_Class3", + "cost": 9048, + "sku": null + }, + "128064300": { + "id": 128064300, + "category": "module", + "name": "Int_ShieldCellBank_Size1_Class3", + "cost": 3231, + "sku": null + }, + "128064309": { + "id": 128064309, + "category": "module", + "name": "Int_ShieldCellBank_Size3_Class2", + "cost": 10133, + "sku": null + }, + "128064299": { + "id": 128064299, + "category": "module", + "name": "Int_ShieldCellBank_Size1_Class2", + "cost": 1293, + "sku": null + }, + "128064304": { + "id": 128064304, + "category": "module", + "name": "Int_ShieldCellBank_Size2_Class2", + "cost": 3619, + "sku": null + }, + "128064308": { + "id": 128064308, + "category": "module", + "name": "Int_ShieldCellBank_Size3_Class1", + "cost": 4053, + "sku": null + }, + "128064303": { + "id": 128064303, + "category": "module", + "name": "Int_ShieldCellBank_Size2_Class1", + "cost": 1448, + "sku": null + }, + "128064298": { + "id": 128064298, + "category": "module", + "name": "Int_ShieldCellBank_Size1_Class1", + "cost": 517, + "sku": null + }, + "128666703": { + "id": 128666703, + "category": "module", + "name": "Int_Refinery_Size4_Class5", + "cost": 4500846, + "sku": null + }, + "128666699": { + "id": 128666699, + "category": "module", + "name": "Int_Refinery_Size4_Class4", + "cost": 1500282, + "sku": null + }, + "128666695": { + "id": 128666695, + "category": "module", + "name": "Int_Refinery_Size4_Class3", + "cost": 500094, + "sku": null + }, + "128666702": { + "id": 128666702, + "category": "module", + "name": "Int_Refinery_Size3_Class5", + "cost": 2143260, + "sku": null + }, + "128666694": { + "id": 128666694, + "category": "module", + "name": "Int_Refinery_Size3_Class3", + "cost": 238140, + "sku": null + }, + "128666691": { + "id": 128666691, + "category": "module", + "name": "Int_Refinery_Size4_Class2", + "cost": 166698, + "sku": null + }, + "128666687": { + "id": 128666687, + "category": "module", + "name": "Int_Refinery_Size4_Class1", + "cost": 55566, + "sku": null + }, + "128666690": { + "id": 128666690, + "category": "module", + "name": "Int_Refinery_Size3_Class2", + "cost": 79380, + "sku": null + }, + "128666686": { + "id": 128666686, + "category": "module", + "name": "Int_Refinery_Size3_Class1", + "cost": 26460, + "sku": null + }, + "128667629": { + "id": 128667629, + "category": "module", + "name": "Int_Repairer_Size8_Class4", + "cost": 16529941, + "sku": null + }, + "128667636": { + "id": 128667636, + "category": "module", + "name": "Int_Repairer_Size7_Class5", + "cost": 27549901, + "sku": null + }, + "128667621": { + "id": 128667621, + "category": "module", + "name": "Int_Repairer_Size8_Class3", + "cost": 5509980, + "sku": null + }, + "128667628": { + "id": 128667628, + "category": "module", + "name": "Int_Repairer_Size7_Class4", + "cost": 9183300, + "sku": null + }, + "128667620": { + "id": 128667620, + "category": "module", + "name": "Int_Repairer_Size7_Class3", + "cost": 3061100, + "sku": null + }, + "128667627": { + "id": 128667627, + "category": "module", + "name": "Int_Repairer_Size6_Class4", + "cost": 5101834, + "sku": null + }, + "128667633": { + "id": 128667633, + "category": "module", + "name": "Int_Repairer_Size4_Class5", + "cost": 4723920, + "sku": null + }, + "128667626": { + "id": 128667626, + "category": "module", + "name": "Int_Repairer_Size5_Class4", + "cost": 2834352, + "sku": null + }, + "128667613": { + "id": 128667613, + "category": "module", + "name": "Int_Repairer_Size8_Class2", + "cost": 1836660, + "sku": null + }, + "128667619": { + "id": 128667619, + "category": "module", + "name": "Int_Repairer_Size6_Class3", + "cost": 1700611, + "sku": null + }, + "128667612": { + "id": 128667612, + "category": "module", + "name": "Int_Repairer_Size7_Class2", + "cost": 1020367, + "sku": null + }, + "128666719": { + "id": 128666719, + "category": "module", + "name": "Int_FSDInterdictor_Size4_Class4", + "cost": 7112448, + "sku": null + }, + "128666715": { + "id": 128666715, + "category": "module", + "name": "Int_FSDInterdictor_Size4_Class3", + "cost": 2370816, + "sku": null + }, + "128666718": { + "id": 128666718, + "category": "module", + "name": "Int_FSDInterdictor_Size3_Class4", + "cost": 2540160, + "sku": null + }, + "128666714": { + "id": 128666714, + "category": "module", + "name": "Int_FSDInterdictor_Size3_Class3", + "cost": 846720, + "sku": null + }, + "128666707": { + "id": 128666707, + "category": "module", + "name": "Int_FSDInterdictor_Size4_Class1", + "cost": 263424, + "sku": null + }, + "128666710": { + "id": 128666710, + "category": "module", + "name": "Int_FSDInterdictor_Size3_Class2", + "cost": 282240, + "sku": null + }, + "128666706": { + "id": 128666706, + "category": "module", + "name": "Int_FSDInterdictor_Size3_Class1", + "cost": 94080, + "sku": null + }, + "128066541": { + "id": 128066541, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size3_Class5", + "cost": 86400, + "sku": null + }, + "128066536": { + "id": 128066536, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size1_Class5", + "cost": 9600, + "sku": null + }, + "128066540": { + "id": 128066540, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size3_Class4", + "cost": 43200, + "sku": null + }, + "128066535": { + "id": 128066535, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size1_Class4", + "cost": 4800, + "sku": null + }, + "128066539": { + "id": 128066539, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size3_Class3", + "cost": 21600, + "sku": null + }, + "128066534": { + "id": 128066534, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size1_Class3", + "cost": 2400, + "sku": null + }, + "128066538": { + "id": 128066538, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size3_Class2", + "cost": 10800, + "sku": null + }, + "128066533": { + "id": 128066533, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size1_Class2", + "cost": 1200, + "sku": null + }, + "128066537": { + "id": 128066537, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size3_Class1", + "cost": 5400, + "sku": null + }, + "128666683": { + "id": 128666683, + "category": "module", + "name": "Int_FuelScoop_Size8_Class5", + "cost": 289042641, + "sku": null + }, + "128666682": { + "id": 128666682, + "category": "module", + "name": "Int_FuelScoop_Size7_Class5", + "cost": 91180644, + "sku": null + }, + "128666674": { + "id": 128666674, + "category": "module", + "name": "Int_FuelScoop_Size7_Class4", + "cost": 22795161, + "sku": null + }, + "128666667": { + "id": 128666667, + "category": "module", + "name": "Int_FuelScoop_Size8_Class3", + "cost": 18065165, + "sku": null + }, + "128666666": { + "id": 128666666, + "category": "module", + "name": "Int_FuelScoop_Size7_Class3", + "cost": 5698790, + "sku": null + }, + "128666659": { + "id": 128666659, + "category": "module", + "name": "Int_FuelScoop_Size8_Class2", + "cost": 4516291, + "sku": null + }, + "128666658": { + "id": 128666658, + "category": "module", + "name": "Int_FuelScoop_Size7_Class2", + "cost": 1424698, + "sku": null + }, + "128666651": { + "id": 128666651, + "category": "module", + "name": "Int_FuelScoop_Size8_Class1", + "cost": 1083910, + "sku": null + }, + "128666650": { + "id": 128666650, + "category": "module", + "name": "Int_FuelScoop_Size7_Class1", + "cost": 341927, + "sku": null + }, + "128066551": { + "id": 128066551, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size7_Class5", + "cost": 6998400, + "sku": null + }, + "128066545": { + "id": 128066545, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size5_Class4", + "cost": 388800, + "sku": null + }, + "128066549": { + "id": 128066549, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size7_Class3", + "cost": 1749600, + "sku": null + }, + "128066548": { + "id": 128066548, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size7_Class2", + "cost": 874800, + "sku": null + }, + "128066544": { + "id": 128066544, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size5_Class3", + "cost": 194400, + "sku": null + }, + "128066547": { + "id": 128066547, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size7_Class1", + "cost": 437400, + "sku": null + }, + "128066543": { + "id": 128066543, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size5_Class2", + "cost": 97200, + "sku": null + }, + "128066542": { + "id": 128066542, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size5_Class1", + "cost": 48600, + "sku": null + }, + "128064336": { + "id": 128064336, + "category": "module", + "name": "Int_ShieldCellBank_Size8_Class4", + "cost": 10899756, + "sku": null + }, + "128064331": { + "id": 128064331, + "category": "module", + "name": "Int_ShieldCellBank_Size7_Class4", + "cost": 3892770, + "sku": null + }, + "128064335": { + "id": 128064335, + "category": "module", + "name": "Int_ShieldCellBank_Size8_Class3", + "cost": 4359903, + "sku": null + }, + "128064330": { + "id": 128064330, + "category": "module", + "name": "Int_ShieldCellBank_Size7_Class3", + "cost": 1557108, + "sku": null + }, + "128064329": { + "id": 128064329, + "category": "module", + "name": "Int_ShieldCellBank_Size7_Class2", + "cost": 622843, + "sku": null + }, + "128064333": { + "id": 128064333, + "category": "module", + "name": "Int_ShieldCellBank_Size8_Class1", + "cost": 697584, + "sku": null + }, + "128064328": { + "id": 128064328, + "category": "module", + "name": "Int_ShieldCellBank_Size7_Class1", + "cost": 249137, + "sku": null + }, + "128049264": { + "id": 128049264, + "category": "module", + "name": "Hauler_Armour_Grade3", + "cost": 185047, + "sku": null + }, + "128049263": { + "id": 128049263, + "category": "module", + "name": "Hauler_Armour_Grade2", + "cost": 42176, + "sku": null + }, + "128049262": { + "id": 128049262, + "category": "module", + "name": "Hauler_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049265": { + "id": 128049265, + "category": "module", + "name": "Hauler_Armour_Mirrored", + "cost": 270295, + "sku": null + }, + "128049266": { + "id": 128049266, + "category": "module", + "name": "Hauler_Armour_Reactive", + "cost": 282421, + "sku": null + }, + "128049258": { + "id": 128049258, + "category": "module", + "name": "Eagle_Armour_Grade3", + "cost": 90048, + "sku": null + }, + "128049257": { + "id": 128049257, + "category": "module", + "name": "Eagle_Armour_Grade2", + "cost": 26880, + "sku": null + }, + "128049256": { + "id": 128049256, + "category": "module", + "name": "Eagle_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049259": { + "id": 128049259, + "category": "module", + "name": "Eagle_Armour_Mirrored", + "cost": 140089, + "sku": null + }, + "128049260": { + "id": 128049260, + "category": "module", + "name": "Eagle_Armour_Reactive", + "cost": 150393, + "sku": null + }, + "128666720": { + "id": 128666720, + "category": "module", + "name": "Int_FSDInterdictor_Size1_Class5", + "cost": 972000, + "sku": null + }, + "128666701": { + "id": 128666701, + "category": "module", + "name": "Int_Refinery_Size2_Class5", + "cost": 1020600, + "sku": null + }, + "128666697": { + "id": 128666697, + "category": "module", + "name": "Int_Refinery_Size2_Class4", + "cost": 340200, + "sku": null + }, + "128666700": { + "id": 128666700, + "category": "module", + "name": "Int_Refinery_Size1_Class5", + "cost": 486000, + "sku": null + }, + "128064042": { + "id": 128064042, + "category": "module", + "name": "Int_Powerplant_Size3_Class5", + "cost": 507912, + "sku": null + }, + "128064287": { + "id": 128064287, + "category": "module", + "name": "Int_ShieldGenerator_Size6_Class5", + "cost": 16179531, + "sku": null + }, + "128064276": { + "id": 128064276, + "category": "module", + "name": "Int_ShieldGenerator_Size4_Class4", + "cost": 536693, + "sku": null + }, + "128064280": { + "id": 128064280, + "category": "module", + "name": "Int_ShieldGenerator_Size5_Class3", + "cost": 567106, + "sku": null + }, + "128671268": { + "id": 128671268, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size7_Class5", + "cost": 6998400, + "sku": null + }, + "128671266": { + "id": 128671266, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size7_Class3", + "cost": 1749600, + "sku": null + }, + "128064162": { + "id": 128064162, + "category": "module", + "name": "Int_LifeSupport_Size5_Class5", + "cost": 1241317, + "sku": null + }, + "128064157": { + "id": 128064157, + "category": "module", + "name": "Int_LifeSupport_Size4_Class5", + "cost": 443328, + "sku": null + }, + "128064160": { + "id": 128064160, + "category": "module", + "name": "Int_LifeSupport_Size5_Class3", + "cost": 198611, + "sku": null + }, + "128666681": { + "id": 128666681, + "category": "module", + "name": "Int_FuelScoop_Size6_Class5", + "cost": 28763610, + "sku": null + }, + "128064267": { + "id": 128064267, + "category": "module", + "name": "Int_ShieldGenerator_Size2_Class5", + "cost": 160224, + "sku": null + }, + "128064266": { + "id": 128064266, + "category": "module", + "name": "Int_ShieldGenerator_Size2_Class4", + "cost": 53408, + "sku": null + }, + "128064077": { + "id": 128064077, + "category": "module", + "name": "Int_Engine_Size3_Class5", + "cost": 507912, + "sku": null + }, + "128064071": { + "id": 128064071, + "category": "module", + "name": "Int_Engine_Size2_Class4", + "cost": 53408, + "sku": null + }, + "128064075": { + "id": 128064075, + "category": "module", + "name": "Int_Engine_Size3_Class3", + "cost": 56435, + "sku": null + }, + "128064102": { + "id": 128064102, + "category": "module", + "name": "Int_Engine_Size8_Class5", + "cost": 162586486, + "sku": null + }, + "128064096": { + "id": 128064096, + "category": "module", + "name": "Int_Engine_Size7_Class4", + "cost": 17096371, + "sku": null + }, + "128064177": { + "id": 128064177, + "category": "module", + "name": "Int_LifeSupport_Size8_Class5", + "cost": 27249391, + "sku": null + }, + "128064172": { + "id": 128064172, + "category": "module", + "name": "Int_LifeSupport_Size7_Class5", + "cost": 9731925, + "sku": null + }, + "128064174": { + "id": 128064174, + "category": "module", + "name": "Int_LifeSupport_Size8_Class2", + "cost": 1743961, + "sku": null + }, + "128064337": { + "id": 128064337, + "category": "module", + "name": "Int_ShieldCellBank_Size8_Class5", + "cost": 27249391, + "sku": null + }, + "128064334": { + "id": 128064334, + "category": "module", + "name": "Int_ShieldCellBank_Size8_Class2", + "cost": 1743961, + "sku": null + }, + "128666723": { + "id": 128666723, + "category": "module", + "name": "Int_FSDInterdictor_Size4_Class5", + "cost": 21337344, + "sku": null + }, + "128064210": { + "id": 128064210, + "category": "module", + "name": "Int_PowerDistributor_Size7_Class3", + "cost": 1557108, + "sku": null + }, + "128064255": { + "id": 128064255, + "category": "module", + "name": "Int_Sensors_Size8_Class3", + "cost": 4359903, + "sku": null + }, + "128064250": { + "id": 128064250, + "category": "module", + "name": "Int_Sensors_Size7_Class3", + "cost": 1557108, + "sku": null + }, + "128064254": { + "id": 128064254, + "category": "module", + "name": "Int_Sensors_Size8_Class2", + "cost": 1743961, + "sku": null + }, + "128064122": { + "id": 128064122, + "category": "module", + "name": "Int_Hyperdrive_Size5_Class5", + "cost": 5103953, + "sku": null + }, + "128064117": { + "id": 128064117, + "category": "module", + "name": "Int_Hyperdrive_Size4_Class5", + "cost": 1610080, + "sku": null + }, + "128064126": { + "id": 128064126, + "category": "module", + "name": "Int_Hyperdrive_Size6_Class4", + "cost": 5393177, + "sku": null + }, + "128668540": { + "id": 128668540, + "category": "module", + "name": "Int_HullReinforcement_Size2_Class2", + "cost": 36000, + "sku": null + }, + "128064057": { + "id": 128064057, + "category": "module", + "name": "Int_Powerplant_Size6_Class5", + "cost": 16179531, + "sku": null + }, + "128064052": { + "id": 128064052, + "category": "module", + "name": "Int_Powerplant_Size5_Class5", + "cost": 5103953, + "sku": null + }, + "128064321": { + "id": 128064321, + "category": "module", + "name": "Int_ShieldCellBank_Size5_Class4", + "cost": 496527, + "sku": null + }, + "128064232": { + "id": 128064232, + "category": "module", + "name": "Int_Sensors_Size3_Class5", + "cost": 158331, + "sku": null + }, + "128671283": { + "id": 128671283, + "category": "module", + "name": "Int_DroneControl_Prospector_Size5_Class5", + "cost": 777600, + "sku": null + }, + "128671281": { + "id": 128671281, + "category": "module", + "name": "Int_DroneControl_Prospector_Size5_Class3", + "cost": 194400, + "sku": null + }, + "128064207": { + "id": 128064207, + "category": "module", + "name": "Int_PowerDistributor_Size6_Class5", + "cost": 3475688, + "sku": null + }, + "128064202": { + "id": 128064202, + "category": "module", + "name": "Int_PowerDistributor_Size5_Class5", + "cost": 1241317, + "sku": null + }, + "128064201": { + "id": 128064201, + "category": "module", + "name": "Int_PowerDistributor_Size5_Class4", + "cost": 496527, + "sku": null + }, + "128064137": { + "id": 128064137, + "category": "module", + "name": "Int_Hyperdrive_Size8_Class5", + "cost": 162586486, + "sku": null + }, + "128064132": { + "id": 128064132, + "category": "module", + "name": "Int_Hyperdrive_Size7_Class5", + "cost": 51289112, + "sku": null + }, + "128064136": { + "id": 128064136, + "category": "module", + "name": "Int_Hyperdrive_Size8_Class4", + "cost": 54195495, + "sku": null + }, + "128064067": { + "id": 128064067, + "category": "module", + "name": "Int_Powerplant_Size8_Class5", + "cost": 162586486, + "sku": null + }, + "128064062": { + "id": 128064062, + "category": "module", + "name": "Int_Powerplant_Size7_Class5", + "cost": 51289112, + "sku": null + }, + "128667623": { + "id": 128667623, + "category": "module", + "name": "Int_Repairer_Size2_Class4", + "cost": 486000, + "sku": null + }, + "128064302": { + "id": 128064302, + "category": "module", + "name": "Int_ShieldCellBank_Size1_Class5", + "cost": 20195, + "sku": null + }, + "128064307": { + "id": 128064307, + "category": "module", + "name": "Int_ShieldCellBank_Size2_Class5", + "cost": 56547, + "sku": null + }, + "128066550": { + "id": 128066550, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size7_Class4", + "cost": 3499200, + "sku": null + }, + "128666678": { + "id": 128666678, + "category": "module", + "name": "Int_FuelScoop_Size3_Class5", + "cost": 902954, + "sku": null + }, + "128666675": { + "id": 128666675, + "category": "module", + "name": "Int_FuelScoop_Size8_Class4", + "cost": 72260660, + "sku": null + }, + "128666698": { + "id": 128666698, + "category": "module", + "name": "Int_Refinery_Size3_Class4", + "cost": 714420, + "sku": null + }, + "128667634": { + "id": 128667634, + "category": "module", + "name": "Int_Repairer_Size5_Class5", + "cost": 8503056, + "sku": null + }, + "128667632": { + "id": 128667632, + "category": "module", + "name": "Int_Repairer_Size3_Class5", + "cost": 2624400, + "sku": null + }, + "128667618": { + "id": 128667618, + "category": "module", + "name": "Int_Repairer_Size5_Class3", + "cost": 944784, + "sku": null + }, + "128667727": { + "id": 128667727, + "category": "paintjob", + "name": "paintjob_CobraMkiii_Default_52", + "cost": 0, + "sku": null + }, + "128667729": { + "id": 128667729, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Faction1_01", + "cost": 0, + "sku": null + }, + "128667730": { + "id": 128667730, + "category": "paintjob", + "name": "PaintJob_Eagle_Faction1_01", + "cost": 0, + "sku": null + }, + "128667731": { + "id": 128667731, + "category": "paintjob", + "name": "PaintJob_FedDropship_Faction1_01", + "cost": 0, + "sku": null + }, + "128667732": { + "id": 128667732, + "category": "paintjob", + "name": "PaintJob_SideWinder_Faction1_01", + "cost": 0, + "sku": null + }, + "128667733": { + "id": 128667733, + "category": "paintjob", + "name": "PaintJob_Viper_Faction1_01", + "cost": 0, + "sku": null + }, + "128667734": { + "id": 128667734, + "category": "paintjob", + "name": "PaintJob_Python_Faction1_01", + "cost": 0, + "sku": null + }, + "128066428": { + "id": 128066428, + "category": "paintjob", + "name": "paintjob_cobramkiii_wireframe_01", + "cost": 0, + "sku": null + }, + "128667638": { + "id": 128667638, + "category": "paintjob", + "name": "PaintJob_Sidewinder_Merc", + "cost": 0, + "sku": null + }, + "128667639": { + "id": 128667639, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Merc", + "cost": 0, + "sku": null + }, + "128066405": { + "id": 128066405, + "category": "paintjob", + "name": "paintjob_eagle_stripe1_02", + "cost": 0, + "sku": null + }, + "128066406": { + "id": 128066406, + "category": "paintjob", + "name": "paintjob_eagle_doublestripe_01", + "cost": 0, + "sku": null + }, + "128066416": { + "id": 128066416, + "category": "paintjob", + "name": "paintjob_eagle_thirds_01", + "cost": 0, + "sku": null + }, + "128066419": { + "id": 128066419, + "category": "paintjob", + "name": "paintjob_eagle_stripe1_03", + "cost": 0, + "sku": null + }, + "128668019": { + "id": 128668019, + "category": "paintjob", + "name": "PaintJob_Eagle_Crimson", + "cost": 0, + "sku": null + }, + "128066420": { + "id": 128066420, + "category": "paintjob", + "name": "paintjob_eagle_thirds_02", + "cost": 0, + "sku": null + }, + "128066430": { + "id": 128066430, + "category": "paintjob", + "name": "paintjob_eagle_stripe1_01", + "cost": 0, + "sku": null + }, + "128066436": { + "id": 128066436, + "category": "paintjob", + "name": "paintjob_eagle_camo_03", + "cost": 0, + "sku": null + }, + "128066437": { + "id": 128066437, + "category": "paintjob", + "name": "paintjob_eagle_thirds_03", + "cost": 0, + "sku": null + }, + "128066441": { + "id": 128066441, + "category": "paintjob", + "name": "paintjob_eagle_camo_02", + "cost": 0, + "sku": null + }, + "128066449": { + "id": 128066449, + "category": "paintjob", + "name": "paintjob_eagle_doublestripe_02", + "cost": 0, + "sku": null + }, + "128066453": { + "id": 128066453, + "category": "paintjob", + "name": "paintjob_eagle_doublestripe_03", + "cost": 0, + "sku": null + }, + "128066456": { + "id": 128066456, + "category": "paintjob", + "name": "paintjob_eagle_camo_01", + "cost": 0, + "sku": null + }, + "128066404": { + "id": 128066404, + "category": "paintjob", + "name": "paintjob_sidewinder_default_02", + "cost": 0, + "sku": null + }, + "128066408": { + "id": 128066408, + "category": "paintjob", + "name": "paintjob_sidewinder_default_03", + "cost": 0, + "sku": null + }, + "128066414": { + "id": 128066414, + "category": "paintjob", + "name": "paintjob_sidewinder_doublestripe_08", + "cost": 0, + "sku": null + }, + "128066423": { + "id": 128066423, + "category": "paintjob", + "name": "paintjob_sidewinder_doublestripe_05", + "cost": 0, + "sku": null + }, + "128066431": { + "id": 128066431, + "category": "paintjob", + "name": "paintjob_sidewinder_thirds_07", + "cost": 0, + "sku": null + }, + "128066432": { + "id": 128066432, + "category": "paintjob", + "name": "paintjob_sidewinder_thirds_01", + "cost": 0, + "sku": null + }, + "128066433": { + "id": 128066433, + "category": "paintjob", + "name": "paintjob_sidewinder_doublestripe_07", + "cost": 0, + "sku": null + }, + "128066440": { + "id": 128066440, + "category": "paintjob", + "name": "paintjob_sidewinder_camo_01", + "cost": 0, + "sku": null + }, + "128066444": { + "id": 128066444, + "category": "paintjob", + "name": "paintjob_sidewinder_thirds_06", + "cost": 0, + "sku": null + }, + "128066447": { + "id": 128066447, + "category": "paintjob", + "name": "paintjob_sidewinder_camo_03", + "cost": 0, + "sku": null + }, + "128066448": { + "id": 128066448, + "category": "paintjob", + "name": "paintjob_sidewinder_default_04", + "cost": 0, + "sku": null + }, + "128066454": { + "id": 128066454, + "category": "paintjob", + "name": "paintjob_sidewinder_camo_02", + "cost": 0, + "sku": null + }, + "128667667": { + "id": 128667667, + "category": "paintjob", + "name": "PaintJob_Viper_Merc", + "cost": 0, + "sku": null + }, + "128666726": { + "id": 128666726, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Camo1_02", + "cost": 0, + "sku": null + }, + "128066407": { + "id": 128066407, + "category": "paintjob", + "name": "paintjob_viper_flag_switzerland_01", + "cost": 0, + "sku": null + }, + "128666727": { + "id": 128666727, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Camo2_03", + "cost": 0, + "sku": null + }, + "128666728": { + "id": 128666728, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Stripe1_02", + "cost": 0, + "sku": null + }, + "128066409": { + "id": 128066409, + "category": "paintjob", + "name": "paintjob_viper_flag_belgium_01", + "cost": 0, + "sku": null + }, + "128666729": { + "id": 128666729, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Stripe1_03", + "cost": 0, + "sku": null + }, + "128066410": { + "id": 128066410, + "category": "paintjob", + "name": "paintjob_viper_flag_australia_01", + "cost": 0, + "sku": null + }, + "128666730": { + "id": 128666730, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Stripe2_02", + "cost": 0, + "sku": null + }, + "128066411": { + "id": 128066411, + "category": "paintjob", + "name": "paintjob_viper_default_01", + "cost": 0, + "sku": null + }, + "128666731": { + "id": 128666731, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Stripe2_03", + "cost": 0, + "sku": null + }, + "128066412": { + "id": 128066412, + "category": "paintjob", + "name": "paintjob_viper_stripe2_02", + "cost": 0, + "sku": null + }, + "128666732": { + "id": 128666732, + "category": "paintjob", + "name": "PaintJob_Hauler_Doublestripe_01", + "cost": 0, + "sku": null + }, + "128066413": { + "id": 128066413, + "category": "paintjob", + "name": "paintjob_viper_flag_austria_01", + "cost": 0, + "sku": null + }, + "128666733": { + "id": 128666733, + "category": "paintjob", + "name": "PaintJob_Hauler_Doublestripe_02", + "cost": 0, + "sku": null + }, + "128666734": { + "id": 128666734, + "category": "paintjob", + "name": "PaintJob_Hauler_Doublestripe_03", + "cost": 0, + "sku": null + }, + "128066415": { + "id": 128066415, + "category": "paintjob", + "name": "paintjob_viper_stripe1_01", + "cost": 0, + "sku": null + }, + "128666735": { + "id": 128666735, + "category": "paintjob", + "name": "PaintJob_Hauler_Stripe1_01", + "cost": 0, + "sku": null + }, + "128666736": { + "id": 128666736, + "category": "paintjob", + "name": "PaintJob_Hauler_Stripe1_02", + "cost": 0, + "sku": null + }, + "128066417": { + "id": 128066417, + "category": "paintjob", + "name": "paintjob_viper_flag_spain_01", + "cost": 0, + "sku": null + }, + "128666737": { + "id": 128666737, + "category": "paintjob", + "name": "PaintJob_Hauler_Stripe1_03", + "cost": 0, + "sku": null + }, + "128066418": { + "id": 128066418, + "category": "paintjob", + "name": "paintjob_viper_stripe1_02", + "cost": 0, + "sku": null + }, + "128666738": { + "id": 128666738, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Hotrod_01", + "cost": 0, + "sku": null + }, + "128666739": { + "id": 128666739, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Hotrod_03", + "cost": 0, + "sku": null + }, + "128666740": { + "id": 128666740, + "category": "paintjob", + "name": "PaintJob_Eagle_Hotrod_01", + "cost": 0, + "sku": null + }, + "128066421": { + "id": 128066421, + "category": "paintjob", + "name": "paintjob_viper_flag_denmark_01", + "cost": 0, + "sku": null + }, + "128666741": { + "id": 128666741, + "category": "paintjob", + "name": "PaintJob_Eagle_Hotrod_03", + "cost": 0, + "sku": null + }, + "128066422": { + "id": 128066422, + "category": "paintjob", + "name": "paintjob_viper_police_federation_01", + "cost": 0, + "sku": null + }, + "128666742": { + "id": 128666742, + "category": "paintjob", + "name": "PaintJob_Sidewinder_Hotrod_01", + "cost": 0, + "sku": null + }, + "128666743": { + "id": 128666743, + "category": "paintjob", + "name": "PaintJob_Sidewinder_Hotrod_03", + "cost": 0, + "sku": null + }, + "128066424": { + "id": 128066424, + "category": "paintjob", + "name": "paintjob_viper_flag_newzealand_01", + "cost": 0, + "sku": null + }, + "128666744": { + "id": 128666744, + "category": "paintjob", + "name": "PaintJob_Viper_Stripe2_51", + "cost": 0, + "sku": null + }, + "128066425": { + "id": 128066425, + "category": "paintjob", + "name": "paintjob_viper_flag_italy_01", + "cost": 0, + "sku": null + }, + "128666745": { + "id": 128666745, + "category": "paintjob", + "name": "PaintJob_Viper_Stripe2_52", + "cost": 0, + "sku": null + }, + "128066426": { + "id": 128066426, + "category": "paintjob", + "name": "paintjob_viper_stripe2_04", + "cost": 0, + "sku": null + }, + "128066427": { + "id": 128066427, + "category": "paintjob", + "name": "paintjob_viper_police_independent_01", + "cost": 0, + "sku": null + }, + "128066429": { + "id": 128066429, + "category": "paintjob", + "name": "paintjob_viper_default_03", + "cost": 0, + "sku": null + }, + "128066434": { + "id": 128066434, + "category": "paintjob", + "name": "paintjob_viper_flag_uk_01", + "cost": 0, + "sku": null + }, + "128066435": { + "id": 128066435, + "category": "paintjob", + "name": "paintjob_viper_flag_germany_01", + "cost": 0, + "sku": null + }, + "128066438": { + "id": 128066438, + "category": "paintjob", + "name": "paintjob_viper_flag_netherlands_01", + "cost": 0, + "sku": null + }, + "128066439": { + "id": 128066439, + "category": "paintjob", + "name": "paintjob_viper_flag_usa_01", + "cost": 0, + "sku": null + }, + "128066442": { + "id": 128066442, + "category": "paintjob", + "name": "paintjob_viper_flag_russia_01", + "cost": 0, + "sku": null + }, + "128066443": { + "id": 128066443, + "category": "paintjob", + "name": "paintjob_viper_flag_canada_01", + "cost": 0, + "sku": null + }, + "128066445": { + "id": 128066445, + "category": "paintjob", + "name": "paintjob_viper_flag_sweden_01", + "cost": 0, + "sku": null + }, + "128066446": { + "id": 128066446, + "category": "paintjob", + "name": "paintjob_viper_flag_poland_01", + "cost": 0, + "sku": null + }, + "128066450": { + "id": 128066450, + "category": "paintjob", + "name": "paintjob_viper_flag_finland_01", + "cost": 0, + "sku": null + }, + "128066451": { + "id": 128066451, + "category": "paintjob", + "name": "paintjob_viper_flag_france_01", + "cost": 0, + "sku": null + }, + "128066452": { + "id": 128066452, + "category": "paintjob", + "name": "paintjob_viper_police_empire_01", + "cost": 0, + "sku": null + }, + "128066455": { + "id": 128066455, + "category": "paintjob", + "name": "paintjob_viper_flag_norway_01", + "cost": 0, + "sku": null + }, + "128667720": { + "id": 128667720, + "category": "paintjob", + "name": "PaintJob_Asp_Default_02", + "cost": 0, + "sku": null + }, + "128667721": { + "id": 128667721, + "category": "paintjob", + "name": "PaintJob_Asp_Default_03", + "cost": 0, + "sku": null + }, + "128667722": { + "id": 128667722, + "category": "paintjob", + "name": "PaintJob_Asp_Default_04", + "cost": 0, + "sku": null + }, + "128667723": { + "id": 128667723, + "category": "paintjob", + "name": "PaintJob_Asp_Faction1_01", + "cost": 0, + "sku": null + }, + "128667724": { + "id": 128667724, + "category": "paintjob", + "name": "PaintJob_Asp_Stripe1_02", + "cost": 0, + "sku": null + }, + "128667725": { + "id": 128667725, + "category": "paintjob", + "name": "PaintJob_Asp_Stripe1_03", + "cost": 0, + "sku": null + }, + "128667726": { + "id": 128667726, + "category": "paintjob", + "name": "PaintJob_Asp_Stripe1_04", + "cost": 0, + "sku": null + }, + "128667655": { + "id": 128667655, + "category": "decal", + "name": "Decal_Skull3", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_MERCENARY_DECAL_1000" + }, + "128667736": { + "id": 128667736, + "category": "decal", + "name": "Decal_Combat_Mostly_Harmless", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_COMBAT_DECAL_1001" + }, + "128667737": { + "id": 128667737, + "category": "decal", + "name": "Decal_Combat_Novice", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_COMBAT_DECAL_1002" + }, + "128667738": { + "id": 128667738, + "category": "decal", + "name": "Decal_Combat_Competent", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_COMBAT_DECAL_1003" + }, + "128667744": { + "id": 128667744, + "category": "decal", + "name": "Decal_Trade_Mostly_Penniless", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_TRADE_DECAL_1001" + }, + "128667745": { + "id": 128667745, + "category": "decal", + "name": "Decal_Trade_Peddler", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_TRADE_DECAL_1002" + }, + "128667746": { + "id": 128667746, + "category": "decal", + "name": "Decal_Trade_Dealer", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_TRADE_DECAL_1003" + }, + "128667747": { + "id": 128667747, + "category": "decal", + "name": "Decal_Trade_Merchant", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_TRADE_DECAL_1004" + }, + "128667752": { + "id": 128667752, + "category": "decal", + "name": "Decal_Explorer_Mostly_Aimless", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_EXPLORE_DECAL_1001" + }, + "128667753": { + "id": 128667753, + "category": "decal", + "name": "Decal_Explorer_Scout", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_EXPLORE_DECAL_1002" + }, + "128667754": { + "id": 128667754, + "category": "decal", + "name": "Decal_Explorer_Surveyor", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_EXPLORE_DECAL_1003" + } + } + }, + "stats": { + "game_time": 850655, + "missions": { + "courier": { + "missionsAccepted": 64, + "furthest": { + "distance": 9.8418152860638, + "origin": 3228189952, + "destination": "3227868416" + }, + "highestEarnings": { + "value": 0, + "distance": 0, + "origin": 0, + "destination": 0, + "faction": 0 + }, + "missionsCompleted": 36, + "creditsEarned": -9119, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 1109, + "faction": "Defence Force of LHS 1541", + "type": "CourierLegal" + }, + { + "value": 1018, + "faction": "Defence Force of LHS 1541", + "type": "CourierLegal" + }, + { + "value": 487, + "faction": "Defence Force of LHS 1541", + "type": "CourierLegal" + } + ] + }, + "deliver": { + "missionsAccepted": 105, + "furthest": { + "distance": 9.8944626243672, + "origin": 3228393472, + "destination": "3228115456" + }, + "highestEarnings": { + "value": 0, + "commodity": 0, + "qty": 0, + "distance": 0, + "origin": 0, + "destination": 0, + "faction": 0 + }, + "missionsCompleted": 98, + "creditsEarned": 1164220, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 1988, + "faction": "Crimson Energy Systems", + "type": "DeliveryLegal" + }, + { + "value": 107316, + "faction": "Gold Netcoms Commodities", + "type": "DeliveryLegal" + }, + { + "value": 65546, + "faction": "Allied LHS 1507 Dominion", + "type": "DeliveryLegal" + } + ] + }, + "collect": { + "missionsAccepted": 175, + "furthest": { + "distance": 0, + "origin": 0, + "destination": 0 + }, + "highestEarnings": { + "value": 0, + "commodity": 0, + "qty": 0, + "distance": 0, + "origin": 0, + "destination": 0, + "faction": 0 + }, + "missionsCompleted": 0, + "creditsEarned": 0, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 22145, + "faction": "Defence Force of LHS 1541", + "type": "Collect" + }, + { + "value": 3420, + "faction": "Defence Force of LHS 1541", + "type": "Collect" + }, + { + "value": 34772, + "faction": "Wolf 1323 Life Corp.", + "type": "Collect" + } + ] + }, + "assassin": { + "highestEarnings": { + "value": 199640, + "origin": "3228064512", + "faction": 0 + }, + "missionsCompleted": 25, + "creditsEarned": 1147873, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 36176, + "faction": "United Euryale First", + "type": "Massacre" + }, + { + "value": 99646, + "faction": "United Euryale First", + "type": "Assassinate" + }, + { + "value": 42589, + "faction": "United Euryale First", + "type": "Assassinate" + } + ], + "missionsAccepted": 52 + }, + "bountyHunter": { + "highestEarnings": { + "value": 0, + "origin": 0, + "faction": 0 + }, + "missionsCompleted": 0, + "creditsEarned": 0, + "missionsFailed": 0, + "latestCompleted": [], + "missionsAccepted": 0 + } + }, + "explore": { + "hyperspaceJumps": 1570, + "totalHyperspaceDistance": 26894.867262885, + "visited": { + "starsystem": [ + "GCRV 4654", + "FK5 2550", + "LHS 1914", + "Siren", + "Geawenki", + "Thiin", + "LP 307-8", + "StKM 1-626", + "BD+30 1423", + "LHS 6103", + "LHS 1814", + "LHS 1794", + "Nandjabinja", + "Susanoo", + "Wong Sher", + "74 k Orionis", + "BD+08 1303", + "Iansan", + "LHS 1857", + "Yin Sector HW-W b1-3", + "Nihursaga", + "Hahgwe", + "Alzirr", + "Toog", + "Yin Sector ZE-A d120", + "Chang Yeh", + "G 108-26", + "HR 2251", + "LHS 1838", + "Breksta", + "Amait", + "Cosi", + "Yggdrajang", + "LTT 17868", + "Yin Sector EQ-Y b2", + "Yin Sector EQ-Y b1", + "Zandu", + "Flech", + "Julanggarri", + "Ross 878", + "Kamchata", + "Tamalhikas", + "Katocudatta", + "Lumbla", + "Tascheter Sector FG-X b1-6", + "Jita Ten", + "71 Orionis", + "Tao Ti", + "LHS 1743", + "LFT 392", + "Ndozins", + "LHS 21", + "Geras", + "G 85-36", + "LP 417-213", + "V1402 Orionis", + "MCC 467", + "Suyarang", + "Chonost", + "Fular", + "LTT 11519", + "Tote", + "Psi Tauri", + "Wolf 1301", + "Tascheter Sector MS-T a3-2", + "Achlys", + "BD+14 831", + "Kungurutii", + "Ross 49", + "Dewikum", + "Yin Sector DQ-Y b1", + "Tascheter Sector FG-X b1-1", + "Tascheter Sector EG-X b1-1", + "Cahuile", + "Tascheter Sector WE-Q a5-1", + "Tascheter Sector DG-O a6-0", + "LP 771-72", + "Kappa Fornacis", + "LP 831-72", + "Zeus", + "Tascheter Sector HM-M a7-2", + "Tascheter Sector BL-O a6-1", + "Tascheter Sector YE-Q a5-0", + "Pachanwen", + "Ranginui", + "LHS 1928", + "LP 605-37", + "Sekhemet", + "Hlocidirus", + "Fionn", + "LHS 1920", + "Tascheter Sector GW-W c1-18", + "LFT 377", + "Kunlun", + "Tascheter Sector HM-M a7-1", + "LTT 1349", + "LFT 179", + "Jibitoq", + "BD-18 394", + "Autahenetsi", + "Ceti Sector AV-Y c17", + "Tetekhe", + "Ceti Sector FW-V b2-5", + "LTT 1141", + "Bandizel", + "Artemis", + "LHS 1409", + "Tascheter Sector EG-Y d106", + "Tascheter Sector BG-O a6-1", + "Tascheter Sector WZ-P a5-1", + "LHS 1573", + "G 100-4", + "V491 Persei", + "Sui Xing", + "Bonde", + "Bhadaba", + "Uchaluroja", + "Manamaya", + "LHS 197", + "Ashandras", + "LTT 11455", + "Al-Qaum", + "Herishep", + "LTT 11503", + "Ross 592", + "Itza", + "Capukanga", + "LHS 1483", + "LP 356-106", + "BD+24 543", + "39 Tauri", + "KP Tauri", + "Wolf 1278", + "Lowne 1", + "Meri", + "Apollo", + "LHS 1516", + "Wolf 1323", + "Marduk", + "LHS 1541", + "Wolf 1325", + "G 95-22", + "LHS 1507", + "Bao Yan Luo", + "Tascheter Sector HH-V b2-5", + "G 173-39", + "G 173-53", + "Theta Persei", + "LHS 1446", + "Lorana", + "Anlave", + "Wolf 46", + "V388 Cassiopeiae", + "Zeessze", + "Eta Cassiopeiae", + "Groombridge 34", + "Ross 248", + "Ross 730", + "Altair", + "Sol", + "Alpha Centauri", + "LHS 18", + "Bonitou", + "LTT 10482", + "Cephei Sector BA-A d103", + "Cephei Sector DQ-Y b4", + "Iota Cassiopeiae", + "Funji", + "T'ienimi", + "HIP 12512", + "Col 285 Sector QT-Q c5-14", + "HIP 10466", + "Col 285 Sector QT-Q c5-9", + "Col 285 Sector BH-J b10-4", + "Col 285 Sector BH-J b10-2", + "Col 285 Sector PT-Q c5-13", + "Col 285 Sector WA-L b9-0", + "HR 567", + "Col 285 Sector MY-Q c5-3", + "Col 285 Sector MY-Q c5-15", + "Undalibaluf", + "Col 285 Sector GY-F b12-4", + "BD+65 1984", + "Col 285 Sector HY-F b12-0", + "HIP 3509", + "Nootkena", + "Inovandar", + "Tegidana", + "BD+44 1040", + "LHS 1765", + "Selniang", + "Skuta", + "Gani", + "Enuma", + "Gkutat", + "Djinbin", + "Col 285 Sector NG-H a26-5", + "Col 285 Sector MA-J a25-4", + "Col 285 Sector SG-H a26-2", + "Col 285 Sector JB-N c7-7", + "Col 285 Sector JB-N c7-4", + "Synuefe XT-D a94-2", + "h2 Puppis", + "Synuefe BP-D a94-1", + "O Puppis", + "Synuefe KB-A a96-2", + "HIP 40430", + "Synuefe WR-H d11-48", + "Synuefe WQ-Z b47-5", + "Gliese 3434", + "Synuefe YK-N c23-14", + "Canopus", + "Synuefe ZK-N c23-22", + "Synuefe BH-Z b47-1", + "HIP 34755", + "HIP 35652", + "HIP 36489", + "47 G. Carinae", + "Synuefe BM-Z b47-8", + "Q Carinae", + "Synuefe DW-L c24-30", + "Synuefe IS-X b48-3", + "Chi Carinae", + "Synuefe HX-X b48-2", + "HIP 40929", + "HIP 42504", + "HIP 42459", + "E Velorum", + "Synuefe JI-W b49-12", + "HIP 42374", + "HR 3503", + "HIP 42823", + "HR 3448", + "HIP 42726", + "Omicron Velorum", + "HIP 42715", + "IC 2391 Sector LI-S b4-10", + "IC 2391 Sector SJ-Q b5-10", + "HIP 43433", + "IC 2391 Sector UJ-Q b5-8", + "IC 2391 Sector VJ-Q b5-1", + "HIP 43015", + "IC 2391 Sector MC-V c2-14", + "Synuefe GL-S b51-9", + "Synuefe LR-Q b52-2", + "V473 Carinae", + "Synuefe JE-E d13-115", + "Synuefe RX-O b53-7", + "Synuefe JE-E d13-94", + "Synuefe WD-N b54-1", + "Tureis", + "Synuefe BK-L b55-4", + "Synuefe CV-E c28-23", + "Synuefe OK-C d14-6", + "HIP 47751", + "HIP 48127", + "Synuefe KM-G b58-4", + "Synuefe XO-L a117-1", + "Synuefe AA-K a118-6", + "Wregoe KZ-S b58-7", + "HR 4091", + "Praea Euq SG-A b1", + "Praea Euq XM-Y b2", + "Praea Euq ZM-Y b1", + "Praea Euq MA-A d153", + "Praea Euq ZR-Y b0", + "Praea Euq CM-Y c9", + "HD 92405", + "Praea Euq FO-V b2-1", + "Praea Euq KU-T b3-5", + "Praea Euq PL-Y d85", + "Praea Euq TG-Q b5-3", + "HD 95633", + "Praea Euq ZM-O b6-0", + "Praea Euq LD-V c2-20", + "Praea Euq UR-W d1-63", + "Praea Euq EY-M b7-4", + "Praea Euq GJ-L b8-1", + "Praea Euq HJ-L b8-4", + "Praea Euq VR-W d1-80", + "Praea Euq RZ-R c4-2", + "Praea Euq JZ-J b9-0", + "Pro Eurl AI-I b10-3", + "Pro Eurl EW-W d1-55", + "Pro Eurl KD-S c4-7", + "Pro Eurl EW-W d1-39", + "HD 98557", + "Pro Eurl XR-I b10-0", + "Pro Eurl AN-I b10-3", + "Pro Eurl PJ-Q c5-12", + "Pro Eurl IC-V d2-40", + "Pro Eurl JC-V d2-35", + "Pro Eurl KZ-E b12-2", + "NGC 3532 Sector ZK-X d1-59", + "Pro Eurl NK-D b13-0", + "Pro Eurl HH-V d2-32", + "Pro Eurl JU-D b13-0", + "HD 100476", + "Pro Eurl LU-D b13-0", + "HD 99573", + "HD 99081", + "Pro Eurl IO-F b12-1", + "NGC 3532 Sector YP-X d1-24", + "NGC 3532 Sector EJ-M b9-1", + "NGC 3532 Sector DC-T c4-9", + "NGC 3532 Sector AL-X d1-30", + "NGC 3532 Sector PF-K b10-0", + "NGC 3532 Sector RA-K b10-1", + "NGC 3532 Sector BL-X d1-48", + "NGC 3532 Sector FR-V d2-53", + "NGC 3532 Sector EI-G b12-2", + "NGC 3532 Sector FI-G b12-0", + "NGC 3532 Sector FI-G b12-4", + "HD 98767", + "NGC 3532 Sector PU-C b14-0", + "NGC 3532 Sector RP-C b14-5", + "HD 98896", + "NGC 3532 Sector WV-A b15-4", + "NGC 3532 Sector YK-N c7-10", + "NGC 3532 Sector ID-X b16-2", + "NGC 3532 Sector LO-V b17-2", + "Pro Eurl BW-K b22-1", + "Pro Eurl AB-L b22-2", + "Pro Eurl OS-U e2-4", + "Pro Eurl CQ-P d5-68", + "Pro Eurl GR-D c12-2", + "Pro Eurl CQ-P d5-27", + "Pro Eurl OI-H b24-3", + "Pro Eurl CQ-P d5-21", + "Pro Eurl MC-J b23-2", + "Pro Eurl DQ-P d5-63", + "Pro Eurl ZJ-R d4-4", + "Pro Eurl NC-J b23-2", + "HD 99218", + "Pro Eurl JR-D c12-12", + "Pro Eurl DQ-P d5-39", + "Pro Eurl ZU-D b26-2", + "Pro Eurl HW-N d6-37", + "Pro Eurl HH-A b28-3", + "Pro Eurl QD-A c14-12", + "Pro Eurl UJ-Y c14-2", + "Pro Eurl LC-M d7-2", + "HD 104214", + "Pro Eurl WK-T b31-2", + "Pro Eurl ZP-W c15-1", + "Pro Eurl KN-P b33-2", + "Pro Eurl GR-U c16-9", + "Pro Eurl MN-P b33-1", + "Pro Eurl TO-N b34-0", + "Pro Eurl WJ-N b34-3", + "Pro Eurl XJ-N b34-6", + "Pro Eurl UD-P b33-0", + "Pro Eurl BF-N b34-4", + "Pro Eurl CF-N b34-1", + "Pro Eurl DF-N b34-2", + "Pro Eurl UD-K d8-47", + "Pro Eurl UD-K d8-85", + "Pro Eurl KG-L b35-3", + "Pro Eurl UD-K d8-73", + "Pro Eurl MG-L b35-5", + "Pro Eurl PB-L b35-1", + "Prua Dryoae UQ-Q a73-3", + "Prua Dryoae CS-O a74-1", + "Prua Dryoae FH-T b37-5", + "HD 101131", + "Prua Dryoae WF-L d9-50", + "Prua Dryoae LN-R b38-3", + "Prua Dryoae PT-P b39-7", + "Prua Dryoae MN-S e4-12", + "Prua Dryoae IJ-C a81-1", + "Prua Dryoae CD-E a80-3", + "Prua Dryoae YH-E a80-0", + "Pro Eurl ZJ-I d9-63", + "Pro Eurl HA-E b39-0", + "Pro Eurl ZJ-I d9-0", + "Pro Eurl HA-E b39-4", + "Pro Eurl ZJ-I d9-3", + "Pro Eurl ZD-G b38-0", + "Pro Eurl XI-G b38-0", + "HD 102728", + "Pro Eurl XI-G b38-1", + "Pro Eurl EK-E b39-4", + "Pro Eurl AK-I d9-55", + "Pro Eurl EA-P c19-3", + "Prua Dryoae LU-A a82-0", + "Prua Dryoae AM-J d10-40", + "Prua Dryoae AM-J d10-53", + "Prua Dryoae AM-J d10-5", + "Prua Dryoae AG-M b41-0", + "Prua Dryoae GM-K b42-1", + "Prua Dryoae HM-K b42-0", + "Prua Dryoae UU-R a86-3", + "Prua Dryoae CM-J d10-3", + "Prua Dryoae HJ-R c21-6", + "Prua Dryoae BV-R a86-5", + "Prua Dryoae DV-R a86-1", + "Prua Dryoae IJ-R c21-9", + "HD 101035", + "Prua Dryoae JJ-R c21-7", + "Swoiphs PB-Q a87-1", + "Swoiphs WH-O a88-5", + "Sifeae JD-V b43-0", + "Swoiphs BI-O a88-2", + "Sifeae LD-V b43-2", + "Sifeae VR-J c22-14", + "Sifeae RJ-T b44-5", + "Sifeae ZK-P e5-0", + "Sifeae UJ-T b44-2", + "Sifeae XU-R b45-3", + "Sifeae YU-R b45-6", + "Sifeae DB-Q b46-2", + "Sifeae EB-Q b46-2", + "Sifeae JH-O b47-5", + "HD 100137", + "Sifeae LH-O b47-3", + "NGC 4463 Sector TT-Z d42", + "NGC 4463 Sector QT-C b2-6", + "NGC 4463 Sector VZ-A b3-3", + "NGC 4463 Sector TT-Z d46", + "NGC 4463 Sector MS-Z c1-16", + "NGC 4463 Sector MS-Z c1-18", + "NGC 4463 Sector YZ-X d1-24", + "NGC 4463 Sector JX-V b5-2", + "NGC 4463 Sector ZZ-X d1-86", + "NGC 4463 Sector ZZ-X d1-82", + "NGC 4463 Sector VE-S b7-1", + "NGC 4463 Sector XZ-R b7-3", + "NGC 4463 Sector ZZ-X d1-89", + "NGC 4463 Sector ZZ-X d1-17", + "NGC 4463 Sector MH-H a16-1", + "NGC 4463 Sector GB-U c4-1", + "NGC 4463 Sector PX-N b9-2", + "NGC 4463 Sector GB-W d2-41", + "NGC 4463 Sector YJ-K b11-0", + "NGC 4463 Sector GB-W d2-37", + "NGC 4463 Sector AF-T a23-3", + "HD 101794", + "NGC 4463 Sector HL-R a24-1", + "NGC 4463 Sector KW-G b13-6", + "NGC 4463 Sector XD-M a27-1", + "NGC 4463 Sector ZD-M a27-2", + "NGC 4463 Sector JQ-I a29-1", + "NGC 4463 Sector MH-U d3-27", + "NGC 4463 Sector XN-D a32-2", + "NGC 4463 Sector DU-B a33-2", + "NGC 4463 Sector NG-Y a34-1", + "NGC 4463 Sector RN-S d4-3", + "NGC 4463 Sector ZS-U a36-3", + "NGC 4463 Sector GZ-S a37-0", + "NGC 4463 Sector OA-R a38-0", + "NGC 4463 Sector SL-P a39-1", + "NGC 4609 Sector JU-Y a5-1", + "NGC 4609 Sector SG-V a7-0", + "NGC 4609 Sector AZ-V b4-0", + "NGC 4609 Sector AK-Z d29", + "NGC 4609 Sector DA-X c2-7", + "NGC 4609 Sector AK-Z d63", + "NGC 4609 Sector AK-Z d17", + "NGC 4609 Sector AK-Z d36", + "NGC 4609 Sector LB-V c3-5", + "NGC 4609 Sector UR-R b6-4", + "NGC 4609 Sector MB-V c3-11", + "NGC 4609 Sector FQ-X d1-64", + "NGC 4609 Sector NB-V c3-9", + "NGC 4609 Sector CY-P b7-4", + "NGC 4609 Sector GQ-X d1-33", + "NGC 4609 Sector FY-P b7-4", + "NGC 4609 Sector GY-P b7-2", + "NGC 4609 Sector QB-V c3-16", + "Aucops TS-O b12-3", + "Blaa Eoq IQ-O b12-2", + "Blaa Eoq OW-M b13-3", + "Blaa Eoq TN-T c6-5", + "Blaa Eoq RH-L b14-4", + "Blaa Eoq UN-T c6-4", + "Blaa Eoq SL-T a30-1", + "Blaa Eoq UL-T a30-1", + "Blaa Eoq XL-T a30-2", + "Blaa Eoq DS-R a31-0", + "Blaa Eoq OU-V d3-3", + "Blaa Eoq MY-P a32-0", + "Blaa Eoq SE-O a33-1", + "Blaa Eoq YK-M a34-2", + "Blaa Eoq AL-M a34-3", + "Blaa Eoq CL-M a34-5", + "Blaa Eoq IR-K a35-0", + "Blaa Eoq QU-V d3-34", + "Blaa Eoq PX-I a36-2", + "Blaa Eoq QU-V d3-38", + "Blaa Eoq RU-V d3-17", + "Blaa Eoq BP-F a38-2", + "Blaa Eoq EP-F a38-3", + "Phylurn AU-Q b18-5", + "Blaa Eoq IP-F a38-4", + "Blaa Eoq LP-F a38-0", + "Blaa Eoq WA-U d4-8", + "Blaa Eoq PP-F a38-2", + "Blaa Eoq RP-F a38-0", + "Blaa Eoq XA-U d4-22", + "HD 99619", + "Blaa Eoq XP-F a38-2", + "Col 240 Sector MX-E a42-1", + "Col 240 Sector HJ-G c11-3", + "Col 240 Sector OX-M b22-1", + "Col 240 Sector PX-M b22-0", + "Col 240 Sector ZD-D a43-3", + "Col 240 Sector YX-E a42-1", + "Col 240 Sector KJ-G c11-4", + "Col 240 Sector DY-E a42-3", + "Col 240 Sector JE-D a43-0", + "Col 240 Sector HY-E a42-1", + "Col 240 Sector JY-E a42-1", + "Col 240 Sector LO-G c11-5", + "Col 240 Sector RJ-Q d5-27", + "Col 240 Sector MO-G c11-10", + "Col 240 Sector SJ-Q d5-51", + "Col 240 Sector SJ-Q d5-46", + "Col 240 Sector ZR-O b21-5", + "Col 240 Sector AS-O b21-3", + "Col 240 Sector OO-G c11-8", + "Col 240 Sector TJ-Q d5-54", + "Col 240 Sector ES-O b21-0", + "Col 240 Sector JY-M b22-0", + "2MASS J11132054-6053363", + "2MASS J11130497-6049452", + "TYC 8959-364-2", + "2MASS J11130472-6047135", + "NGC 3590 MV 4", + "NGC 3590 CLA 15", + "HD 306185", + "2MASS J11123987-6047011", + "NGC 3590 MV 12", + "NGC 3590 Sector UT-R a4-1", + "NGC 3590 Sector BA-A d12", + "Col 240 Sector AB-J b24-0", + "Col 240 Sector GH-H b25-0", + "Col 240 Sector HH-H b25-4", + "Col 240 Sector FW-C c13-7", + "IC 2944 Sector PP-Q b8-0", + "IC 2944 Sector UV-O b9-0", + "IC 2944 Sector VV-O b9-2", + "IC 2944 Sector WV-O b9-0", + "IC 2944 Sector WE-Y d1-26", + "IC 2944 Sector EX-M b10-2", + "IC 2944 Sector FX-M b10-0", + "IC 2944 Sector ER-S c5-0", + "IC 2944 Sector LD-L b11-2", + "IC 2944 Sector SE-J b12-1", + "IC 2944 Sector VP-H b13-0", + "IC 2944 Sector WP-H b13-1", + "IC 2944 Sector KX-Q c6-5", + "IC 2944 Sector CW-F b14-2", + "IC 2944 Sector HR-U d3-13", + "IC 2944 Sector FG-X e1-3", + "IC 2944 Sector QD-P c7-5", + "IC 2944 Sector RO-A b17-0", + "IC 2944 Sector SO-A b17-0", + "IC 2944 Sector TO-A b17-0", + "Statue of Liberty Sector FW-W c1-2", + "Statue of Liberty Sector OY-R b4-1", + "Statue of Liberty Sector LS-T b3-0", + "Statue of Liberty Sector OD-S b4-0", + "Statue of Liberty Sector LX-T b3-2", + "Statue of Liberty Sector DL-Y d25", + "Statue of Liberty Sector FG-Y e5", + "Statue of Liberty Sector PI-S b4-0", + "Statue of Liberty Sector QI-S b4-0", + "Statue of Liberty Sector FW-K a9-1", + "Statue of Liberty Sector IW-K a9-0", + "IC 2944 Sector XH-C a34-0", + "IC 2944 Sector ZH-C a34-0", + "IC 2944 Sector GO-A a35-0", + "IC 2944 Sector GT-A a35-1", + "IC 2944 Sector KO-A a35-1", + "IC 2944 Sector KT-A a35-2", + "IC 2944 Sector MR-U d3-20", + "IC 2944 Sector LI-C a34-0", + "Blua Eoq CI-G a65-0", + "Blua Eoq DL-Y g0", + "Blua Eoq GC-C b33-1", + "Blua Eoq TA-B a68-0", + "Blua Eoq TF-B a68-0", + "Blo Thae QH-U c16-7", + "Blo Thae MV-M b34-2", + "Blo Thae LA-N b34-1", + "NGC 3572 Sector DB-X c1-0", + "NGC 3572 Sector FR-V b2-2", + "NGC 3572 Sector AV-Y c1", + "NGC 3572 Sector EB-X c1-5", + "NGC 3572 Sector IR-V b2-0", + "NGC 3572 Sector FB-X c1-4", + "NGC 3572 Sector YE-A g2", + "NGC 3572 Sector IR-W d1-9", + "NGC 3572 Sector QN-S b4-0", + "Blo Thae BI-I b37-1", + "Blo Thae AP-I d9-17", + "Blo Thae BE-R c18-1", + "Blo Thae AS-I b37-0", + "Blo Thae BS-I b37-0", + "Blo Thae YL-K b36-0", + "Blo Thae BJ-R c18-4", + "Tyriedgoea MO-I d9-2", + "Tyriedgoea MO-I d9-20", + "Tyriedgoea PJ-K b36-1", + "Tyriedgoea II-K d8-12", + "Tyriedgoea IX-N b34-0", + "Tyriedgoea DW-P b33-0", + "Tyriedgoea BB-Q b33-0", + "Tyriedgoea AQ-R b32-0", + "Tyriedgoea DH-M d7-10", + "Tyriedgoea ZU-R b32-0", + "Tyriedgoea VO-T b31-0", + "Tyriedgoea UD-V b30-0", + "Tyriedgoea DH-M d7-2", + "Tyriedgoea LW-Y b28-0", + "Tyriedgoea LX-U e2-0", + "Tyriedgoea JQ-A b28-0", + "Tyriedgoea KQ-A b28-0", + "Tyriedgoea CW-N d6-9", + "Tyriedgoea OL-A b28-0", + "Tyriedgoea PL-A b28-0", + "Tyriedgoea DW-N d6-19", + "Tyriedgoea VR-Y b28-0", + "Tyriedgoea WR-Y b28-0", + "Col 228 Sector CW-V d2-19", + "Col 228 Sector CW-V d2-18", + "Col 228 Sector GC-U d3-3", + "Col 228 Sector PB-G b13-0", + "Col 228 Sector JY-P c6-2", + "Col 228 Sector SB-G b13-0", + "Col 228 Sector UW-F b13-1", + "Col 228 Sector ZC-E b14-1", + "Col 228 Sector KY-P c6-1", + "Col 228 Sector BD-E b14-0", + "Col 228 Sector IE-C b15-1", + "Col 228 Sector KX-T d3-13", + "Col 228 Sector TZ-N c7-4", + "Col 228 Sector NP-A b16-0", + "Col 228 Sector UZ-N c7-5", + "Col 228 Sector VQ-Y b16-0", + "Col 228 Sector ZF-M c8-0", + "Col 228 Sector ZL-Y b16-1", + "Col 228 Sector FN-W b17-1", + "NGC 3324 Sector VI-V b17-1", + "NGC 3324 Sector BP-T b18-1", + "NGC 3324 Sector CP-T b18-0", + "NGC 3324 Sector DS-J c9-8", + "NGC 3324 Sector ME-O a36-0", + "NGC 3324 Sector IY-H c10-1", + "NGC 3324 Sector CX-I a39-0", + "NGC 3324 Sector HD-H a40-2", + "NGC 3324 Sector QT-R d4-3", + "NGC 3324 Sector PJ-F a41-0", + "NGC 3324 Sector VP-D a42-4", + "NGC 3324 Sector RT-R d4-15", + "NGC 3324 Sector DR-B a43-0", + "NGC 3324 Sector FR-B a43-2", + "NGC 3324 Sector IZ-L b22-2", + "NGC 3324 Sector UU-F c11-3", + "NGC 3324 Sector UU-F c11-6", + "Eta Carinae", + "NGC 3324 Sector OU-L b22-0", + "NGC 3324 Sector LO-N b21-0", + "NGC 3324 Sector WU-F c11-4", + "NGC 3324 Sector JI-P b20-1", + "NGC 3324 Sector KI-P b20-1", + "Bleia Eork MW-U b36-1", + "Bleia Eork NW-U b36-0", + "Bleia Eork LQ-W b35-1", + "Bleia Eork VZ-M d8-7", + "Bleia Eork NQ-W b35-1", + "Bleia Eork TK-Y c17-1", + "Bleia Eork JP-Y b34-0", + "Blae Eork KD-A c17-2", + "Blae Eork ZM-Y b34-1", + "Blae Eork WG-A b34-1", + "Blae Eork XG-A b34-1", + "Blae Eork YG-A b34-1", + "Blae Eork BC-A b34-1", + "Blae Eork CH-U e3-4", + "Blae Eork ID-Y b34-0", + "Blae Eork MJ-W b35-1", + "Blae Eork QP-U b36-0", + "Blae Eork XK-W c18-1", + "Blae Eork WK-W c18-0", + "Blae Eork CI-P b39-0", + "Blae Eork GO-N b40-0", + "Blae Eork LU-L b41-1", + "Blae Eork OA-K b42-1", + "Blae Eork JD-R c21-5", + "CPD-58 2648", + "CPD-59 2627", + "2MASS J10443666-5946218", + "Blae Eork OJ-P c22-3", + "Trumpler 16 HG 1462", + "CPD-59 2591", + "Blae Eork QA-B b47-0", + "PCYC 666", + "Blae Eork SA-B b47-0", + "Blae Eork TA-B b47-0", + "2MASS J10442445-5951430", + "Blae Eork YM-H d11-18", + "Blae Eork ZK-N c23-2", + "Blae Eork HI-X b48-0", + "Blae Eork KT-V b49-0", + "Blae Eork NO-V b49-0", + "Blae Eork FR-L c24-2", + "Tr 16 Sector RA-M b8-0", + "2MASS J10432911-6003200", + "Tr 16 Sector DB-X d1-12", + "Tr 16 Sector XG-K b9-0", + "Tr 16 Sector ZG-K b9-0", + "Tr 16 Sector ND-S c4-0", + "Tr 16 Sector EB-X d1-17", + "Tr 16 Sector II-I b10-0", + "Tr 16 Sector LD-I b10-0", + "Tr 16 Sector OO-G b11-0", + "Tr 16 Sector PO-G b11-0", + "Tr 16 Sector QO-G b11-0", + "Tr 16 Sector RO-G b11-0", + "Tr 16 Sector VJ-Q c5-4", + "Tr 16 Sector TO-G b11-0", + "Tr 16 Sector VJ-G b11-0", + "Tr 16 Sector XJ-G b11-0", + "Tr 16 Sector VY-R c4-2", + "Tr 16 Sector NC-V d2-2", + "Tr 14 Sector JM-W d1-10", + "Tr 16 Sector CA-Q c5-7", + "Tr 16 Sector NC-V d2-6", + "Tr 16 Sector GG-O c6-6", + "Tr 14 Sector TY-S c3-12", + "Tr 14 Sector LC-M b7-0", + "Eta Carina Sector HR-W c1-3", + "Eta Carina Sector RT-R b4-0", + "Eta Carina Sector HR-W d1-22", + "Eta Carina Sector KC-V c2-1", + "Eta Carina Sector SJ-Q b5-0", + "Eta Carina Sector RO-Q b5-0", + "2MASS J10442897-5942343", + "Eta Carina Sector NY-Q b5-0", + "Eta Carina Sector KD-R b5-1", + "Tr 14 Sector GD-W a17-1", + "Tr 14 Sector IH-V d2-19", + "Blu Theia ND-Z c27-1", + "Blu Theia LI-Z c27-3", + "Blu Theia LI-Z c27-6", + "Blu Theia QF-Z b55-0", + "Blu Theia RT-Z d13-23", + "Blu Theia HS-Z c27-0", + "Blu Theia KE-B b55-0", + "Blu Theia FY-C b54-0", + "Blu Theia CM-B c27-3", + "Blu Theia XW-E b53-0", + "Blu Theia VB-F b53-0", + "Blu Theia QV-G b52-0", + "Blu Theia LP-I b51-0", + "Blu Theia HJ-K b50-0", + "Blu Theia EO-K b50-0", + "Blu Theia YM-M b49-0", + "Blu Theia UG-O b48-0", + "Blu Theia FM-D d12-9", + "Blu Theia NF-Q b47-0", + "Blu Theia AQ-P e5-1", + "Blu Theia HZ-R b46-0", + "Blu Theia BG-F d11-6", + "Blu Theia BG-F d11-11", + "Blu Theia AG-F d11-4", + "Blu Theia ZH-V b44-0", + "Blu Theia VW-W b43-0", + "Blu Theia TB-X b43-0", + "Blu Theia UK-M c21-1", + "Blu Theia QE-O c20-2", + "Blu Theia WZ-G d10-9", + "Blu Theia PE-O c20-0", + "Blu Theia EJ-C b41-0", + "Blu Theia FE-C b41-0", + "Blu Theia KY-P c19-1", + "Blu Theia QT-I d9-8", + "Blu Theia TW-F b39-0", + "Blu Theia QB-G b39-0", + "Blu Theia PB-G b39-0", + "Blu Theia LQ-H b38-0", + "Blu Theia JV-H b38-0", + "Blu Theia IV-H b38-0", + "Blu Theia HV-H b38-0", + "Blu Theia GV-H b38-0", + "Blu Theia FV-H b38-0", + "Blu Theia CA-I b38-0", + "Blu Theia BA-I b38-0", + "Blu Theia CV-H b38-0", + "Blu Theia DG-G b39-0", + "Blu Theia BD-Q c19-0", + "Blu Theia BG-G b39-0", + "Blu Theia LY-I d9-6", + "Blu Theia SJ-I b38-0", + "Blu Theia ND-K b37-0", + "Blu Theia GS-K d8-5", + "Blu Theia GC-M b36-0", + "Blu Theia DH-M b36-0", + "Blu Theia VU-P b34-0", + "Blu Theia SZ-P b34-0", + "Blu Theia NT-R b33-0", + "Blu Theia KY-R b33-0", + "Blu Theia FS-T b32-0", + "Blu Theia DX-T b32-0", + "Blu Theia CX-T b32-0", + "Blu Theia YX-X c15-0", + "Blu Theia VV-V b31-0", + "Blu Theia XX-X c15-0", + "Blu Theia SR-Z c14-1", + "Blu Theia WV-M d7-1", + "Blu Theia WV-M d7-2", + "Blu Theia QW-Z c14-0", + "Blu Theia CN-B b29-0", + "Blu Theia YG-D b28-0", + "Blu Theia SF-F b27-0", + "Blu Theia QU-O d6-2", + "Blu Theia GP-D c13-0", + "Tyriedgoea BP-Q d5-2", + "Tyriedgoea BP-Q d5-3", + "Tyriedgoea BP-Q d5-0", + "Tyriedgoea BP-Q d5-4", + "Tyriedgoea DK-Q d5-1", + "Blu Theia OZ-G b26-0", + "Blu Theia QU-G b26-0", + "Tyriedgoea HQ-O d6-4", + "Tyriedgoea PG-D c13-1", + "Tyriedgoea JL-O d6-7", + "Tyriedgoea RB-D c13-1", + "Tyriedgoea KY-F b26-0", + "Tyriedgoea JL-O d6-1", + "Tyriedgoea OQ-E c12-0", + "Tyriedgoea CX-H b25-0", + "Tyriedgoea LV-E c12-0", + "Tyriedgoea EF-Q d5-8", + "Tyriedgoea UV-J b24-0", + "Tyriedgoea QP-L b23-0", + "Tyriedgoea MJ-N b22-0", + "Tyriedgoea LJ-N b22-0", + "Tyriedgoea KJ-N b22-0", + "Tyriedgoea FD-P b21-0", + "Tyriedgoea ED-P b21-0", + "Tyriedgoea ZW-Q b20-0", + "Tyriedgoea VQ-S b19-0", + "Tyriedgoea TV-S b19-0", + "Tyriedgoea XD-S d4-0", + "Tyriedgoea QK-U b18-0", + "Tyriedgoea PK-U b18-0", + "Tyriedgoea OK-U b18-0", + "Tyriedgoea LP-U b18-0", + "Tyriedgoea JU-U b18-0", + "Tyriedgoea NB-M c8-1", + "Tyriedgoea BT-W b17-0", + "Tyriedgoea ZS-W b17-0", + "Tyriedgoea RX-T d3-7", + "Tyriedgoea MB-M c8-1", + "Tyriedgoea TM-Y b16-0", + "Tyriedgoea SM-Y b16-0", + "Tyriedgoea QX-T d3-3", + "Tyriedgoea QX-T d3-2", + "Tyriedgoea LV-B b15-0", + "Tyriedgoea KV-B b15-0", + "Tyriedgoea EA-O c7-0", + "Tyriedgoea ZT-P c6-0", + "Tyriedgoea CU-D b14-0", + "Tyriedgoea EQ-Y e1", + "Tyriedgoea YN-F b13-0", + "Tyriedgoea LR-V d2-7", + "Tyriedgoea UN-R c5-0", + "Tyriedgoea QH-T c4-0", + "Tyriedgoea QH-T c4-1", + "Tyriedgoea HL-X d1-4", + "Tyriedgoea FP-M b9-0", + "Tyriedgoea EP-M b9-0", + "Tyriedgoea AJ-O b8-0", + "Tyriedgoea VC-Q b7-0", + "Tyriedgoea UC-Q b7-0", + "Tyriedgoea PW-R b6-0", + "Tyriedgoea OW-R b6-0", + "Tyriedgoea BF-Z d6", + "Tyriedgoea KB-S b6-0", + "Tyriedgoea FV-T b5-0", + "Tyriedgoea AF-Z d5", + "Tyriedgoea AP-V b4-0", + "Tyriedgoea AF-Z d6", + "Tyriedgoea BK-V b4-0", + "Tyriedgoea WD-X b3-0", + "Tyriedgoea VD-A c1-2", + "Tyriedgoea RX-Y b2-0", + "Tyriedgoea VY-A d8", + "Tyriedgoea SI-A c1-2", + "Tyriedgoea JW-A b2-0", + "Tyriedgoea GL-C b1-0", + "Tyriedgoea FL-C b1-0", + "Tyriedgoea ZJ-E b0", + "Pru Eurl QH-X b58-0", + "Pru Eurl CN-A d14-2", + "Pru Eurl JG-Z b57-0", + "Pru Eurl EQ-Z c28-0", + "Pru Eurl DA-B b57-0", + "Pru Eurl CA-B b57-0", + "Pru Eurl BA-B b57-0", + "Pru Eurl WT-C b56-0", + "Pru Eurl SN-E b55-0", + "Pru Eurl PS-E b55-0", + "Pru Eurl KM-G b54-0", + "Pru Eurl JM-G b54-0", + "Pru Eurl FG-I b53-0", + "Pru Eurl XF-O e6-0", + "Pru Eurl AA-K b52-0", + "Pru Eurl VT-L b51-0", + "Pru Eurl PF-E d12-9", + "Pru Eurl QX-O b49-0", + "Pru Eurl RA-E d12-9", + "Pru Eurl GG-I c24-3", + "Pru Eurl QA-E d12-5", + "Pru Eurl DL-I c24-2", + "Pru Eurl CQ-S b47-0", + "Pru Eurl BQ-S b47-0", + "Pru Eurl XJ-U b46-0", + "Pru Eurl YE-K c23-0", + "Sifaea BV-F d11-15", + "Pru Eurl OX-X b44-0", + "Pru Eurl SZ-P e5-1", + "Pru Eurl KZ-F d11-0", + "Sifaea ZZ-X b44-0", + "Sifaea VT-H d10-9", + "Sifaea UT-N c21-0", + "Sifaea QY-Z b43-0", + "Sifaea SY-N c21-0", + "Sifaea IX-B b43-0", + "Sifaea NS-P c20-1", + "Sifaea DR-D b42-0", + "Sifaea YK-F b41-0", + "Sifaea XK-F b41-0", + "Sifaea SE-H b40-0", + "Sifaea PN-J d9-10", + "Sifaea PN-J d9-2", + "Sifaea JS-K b38-0", + "Sifaea IS-K b38-0", + "Sifaea HS-K b38-0", + "Sifaea HN-K b38-0", + "Sifaea UT-R e4-1", + "Sifaea ES-K b38-0", + "Sifaea HY-I b39-0", + "Sifaea IT-I b39-0", + "Sifaea NN-J d9-8", + "Sifaea EY-I b39-0", + "Sifaea CM-R c19-0", + "Sifaea MN-J d9-1", + "Sifaea BM-R c19-1", + "Sifaea GE-H b40-0", + "Sifaea FE-H b40-0", + "Sifaea EE-H b40-0", + "Sifaea FZ-G b40-0", + "Sifaea EZ-G b40-0", + "Sifaea DZ-G b40-0", + "Sifaea ST-R e4-0", + "Sifaea BZ-G b40-0", + "Sifaea YD-H b40-0", + "Sifaea KN-J d9-3", + "Sifaea XD-H b40-0", + "Sifaea KN-J d9-13", + "Sifaea JN-J d9-1", + "Sifaea VD-H b40-0", + "Sifaea JN-J d9-2", + "Sifaea UL-R c19-1", + "Sifaea JW-K b38-0", + "Sifaea EQ-M b37-0", + "Sifaea EH-L d8-4", + "Sifaea BF-O b36-0", + "Sifaea AF-O b36-0", + "Sifaea VY-P b35-0", + "Sifaea YE-O b36-0", + "Sifaea XE-O b36-0", + "Sifaea DH-L d8-12", + "Sifaea DH-L d8-13", + "Sifaea RY-P b35-0", + "Sifaea IZ-U c17-0", + "Sifaea LS-R b34-0", + "Sifaea CH-L d8-6", + "Sifaea CH-L d8-1", + "Sifaea GW-U b32-1", + "Sifaea AW-M d7-2", + "Sifaea DD-Y c15-0", + "Sifaea DL-W b31-0", + "Sifaea YE-Y b30-1", + "Sifaea ZV-M d7-3", + "Sifaea AA-Y b30-0", + "Sifaea WT-Z b29-0", + "Sifaea KC-V e2-2", + "Sifaea WP-O d6-16", + "Sifaea KC-V e2-3", + "Sifaea QS-B b29-0", + "Sifaea RN-B b29-1", + "Sifaea QN-B b29-0", + "Sifaea VP-O d6-1", + "Sifaea ST-Z b29-0", + "Sifaea YV-M d7-12", + "Sifaea QT-Z b29-0", + "Sifaea LN-B b29-1", + "Sifaea UP-O d6-8", + "Sifaea DM-D b28-2", + "Sifaea TP-O d6-26", + "Sifaea CH-D b28-0", + "Sifaea BH-D b28-1", + "Sifaea WA-F b27-2", + "Sifaea SP-O d6-26", + "Sifaea PZ-G b26-0", + "Sifaea OZ-G b26-1", + "Pro Eur VV-I b25-0", + "Pro Eur UV-I b25-0", + "Pro Eur PP-K b24-2", + "Pro Eur SV-I b25-0", + "Pro Eur PK-K b24-0", + "Pro Eur CK-Q d5-6", + "Pro Eur ED-O b22-0", + "Pro Eur ZW-P b21-2", + "Pro Eur YW-P b21-0", + "Pro Eur XW-P b21-0", + "Pro Eur WW-P b21-0", + "Pro Eur WS-I c10-7", + "Pro Eur QQ-R b20-0", + "Pro Eur RM-K c9-3", + "Pro Eur WD-S d4-28", + "Pro Eur MG-M c8-4", + "Pro Eur CT-W b17-2", + "Pro Eur LG-M c8-5", + "Pro Eur WM-Y b16-1", + "Pro Eur TR-Y b16-0", + "Pro Eur NL-A b16-2", + "Pro Eur FA-O c7-0", + "Pro Eur IF-C b15-0", + "Pro Eur DZ-D b14-2", + "Pro Eur CZ-D b14-1", + "Pro Eur ZN-F b13-1", + "Pro Eur YT-P c6-3", + "Pro Eur LR-V d2-36", + "Pro Eur WN-F b13-1", + "Pro Eur ZT-D b14-1", + "Pro Eur AP-D b14-1", + "Pro Eur DV-B b15-2", + "Pro Eur CV-B b15-2", + "Pro Eur NX-T d3-41", + "Pro Eur NX-T d3-32", + "Pro Eur FB-M c8-1", + "Pro Eur LN-W b17-2", + "Pro Eur NX-T d3-15", + "Pro Eur GM-K c9-0", + "Pro Eur PE-T b19-0", + "Pro Eur FM-K c9-6", + "Pro Eur RK-R b20-0", + "Pro Eur IS-I c10-0", + "Pro Eur PD-S d4-9", + "Pro Eur GW-W e1-0", + "Pro Eur EH-K c9-9", + "Pro Eur EY-U b18-1", + "Pro Eur BM-K c9-3", + "Pro Eur ET-U b18-0", + "Pro Eur AM-K c9-5", + "Pro Eur OD-S d4-23", + "Pro Eur ZL-K c9-4", + "Pro Eur ND-S d4-26", + "Pro Eur VC-V b18-0", + "Pro Eur UC-V b18-0", + "Pro Eur IX-T d3-26", + "Pro Eur SC-V b18-0", + "Pro Eur TX-U b18-1", + "Pro Eur MD-S d4-24", + "Pro Eur MD-S d4-23", + "Pro Eur OR-W b17-1", + "Pro Eur HX-T d3-18", + "Pro Eur RF-M c8-2", + "Pro Eur HL-Y b16-0", + "Pro Eur IG-Y b16-0", + "Pro Eur DA-A b16-2", + "Pro Eur GG-Y b16-0", + "Pro Eur DL-Y b16-0", + "Pro Eur GX-T d3-1", + "Sifeae IH-A b16-1", + "Sifeae GM-A b16-0", + "Sifeae FM-A b16-0", + "Sifeae VX-T d3-11", + "Sifeae UX-T d3-1", + "Sifeae LF-O c7-0", + "Sifeae SC-U d3-1", + "Sifeae NW-V d2-6", + "Sifeae NW-V d2-16", + "Sifeae OE-E b14-1", + "Sifeae NE-E b14-0", + "Sifeae QK-C b15-0", + "Sifeae QC-U d3-22", + "Sifeae OK-C b15-0", + "Sifeae MK-C b15-1", + "Sifeae DU-P c6-4", + "Sifeae JZ-D b14-0", + "Sifeae GE-E b14-0", + "Sifeae FE-E b14-0", + "Sifeae CT-F b13-0", + "Sifeae BT-F b13-0", + "Sifeae ZY-P c6-1", + "Sifeae KW-V d2-9", + "Sifeae RR-H b12-0", + "Sifeae XY-P c6-6", + "Sifeae XY-P c6-0", + "Sifeae JW-V d2-12", + "Sifeae WD-E b14-0", + "Sifeae XT-P c6-5", + "Sifeae WY-D b14-0", + "Sifeae VY-D b14-1", + "Sifeae AA-C b15-1", + "Sifeae ZZ-N c7-0", + "Sifeae AL-A b16-1", + "Sifeae VE-C b15-1", + "Sifeae YK-A b16-1", + "Sifeae MX-T d3-28", + "Sifeae ZV-Y b16-0", + "Sifeae KC-U d3-4", + "Synuefe YG-Z b47-0", + "Synuefe XK-N c23-3", + "Col 285 Sector MR-M c7-13", + "Col 285 Sector SH-B b14-7", + "Col 285 Sector RH-B b14-2", + "HIP 28150", + "Col 285 Sector NM-B b14-6", + "Hyades Sector LC-V d2-99", + "Trianguli Sector QI-T b3-6", + "Trianguli Sector PI-T b3-7", + "Trianguli Sector TU-O a6-1", + "Tascheter Sector TY-R a4-2", + "LP 415-26", + "Delta Trianguli", + "LHS 4003", + "WISE 2056+1459", + "LP 634-1", + "Volungu", + "Liaedin", + "Wolf 1062", + "IL Aquarii", + "LAWD 96", + "Core Sys Sector CQ-P a5-2", + "Alectrona", + "Hyldekagati", + "Ceti Sector CQ-Y d89", + "Ceti Sector PD-S b4-1", + "Quivira", + "Kadrusa", + "ICZ CL-X b1-5", + "ICZ EW-V b2-4", + "Sanna", + "Euryale", + "LPM 26", + "Putamasin", + "LFT 78", + "Col 285 Sector NE-R a34-0", + "LHS 160", + "LHS 1351", + "LP 91-140", + "Ennead", + "Mitra", + "CD-58 538", + "Iota Horologii", + "L 297-46" + ], + "starport": [ + "Bosch Terminal", + "Julian Gateway", + "Jemison Dock", + "Galvani Port", + "Wundt Gateway", + "Conrad Port", + "Knapp Vision", + "Herzfeld Landing", + "Kotov Terminal", + "Weston Orbital", + "Ricardo Landing", + "Brand City", + "Huygens Mines", + "Zudov City", + "Chomsky Ring", + "Wescott Terminal", + "Dirac Hub", + "Planck Dock", + "Hertz Colony", + "Bosch Mines", + "Blaschke Vision", + "Nicollet City", + "Ejeta Colony", + "Pierres Ring", + "Grant Terminal", + "Narvaez Orbital", + "Legendre Ring", + "Popper Dock", + "Brooks City", + "Wells Hub", + "Barcelos City", + "Perez Market", + "Lopez de Villalobos Prospect", + "Oramus Legacy", + "Henry Hub", + "Schade Platform", + "Selberg's Inheritance", + "Solovyov Orbital", + "Pierce Hanger", + "Giles Colony", + "Marshall Hub", + "Ising Hub", + "Arrhenius Hub", + "Vaucanson Hub", + "Frimout Horizons", + "Parry Terminal", + "Saberhagen Port", + "Stafford Terminal", + "Willis City", + "Romanenko Gateway", + "Jakes Enterprise", + "Budarin Terminal", + "Horowitz Gateway", + "Burke Hub", + "Perrin Ring", + "Balandin Enterprise", + "So-yeon Port", + "Potter Gateway", + "Tudela Installation", + "Quimper Ring", + "Julian City", + "Whitelaw Enterprise", + "Saunders's Dive", + "Harvestport", + "Brunton Hub", + "Nasmyth Station", + "Currie Enterprise", + "McArthur Plant", + "Lundwall City", + "Tshang Enterprise", + "Mach Dock", + "Wellman Gateway", + "Moisuc Refinery", + "Boe Enterprise", + "Gelfand Survey", + "Artyukhin Ring", + "Aitken Vision", + "Laphrian Shipyard", + "Crook Orbital", + "Rand City", + "Morgan Terminal", + "Oswald Platform", + "Aksyonov Platform", + "Coney Arena", + "Roberts Hub", + "Ayerdhal City", + "Derleth Orbital", + "Maire Gateway", + "Dedman Gateway", + "Bailey Ring", + "Humphreys Enterprise", + "Kandel Ring", + "Polya Enterprise", + "Rozhdestvensky Station", + "Cameron Survey", + "Shuttleworth Terminal", + "Yu Port", + "Bolger Vision", + "Alpers Refinery", + "Goeschke Station", + "Stebler Mines", + "Duke Hub", + "Shepard Ring", + "Cormack Orbital", + "Harris Platform", + "Fung Outpost", + "Ore Terminal", + "McDaniel Station", + "Ellison Station", + "Hennepin Enterprise", + "Luiken Port", + "Cochrane Terminal", + "McDonald Port", + "Bykovsky Ring", + "Vaucanson Settlement", + "Nicollier Ring", + "Carrier Dock", + "DG-1 Refinery", + "Blackman Terminal", + "Proteus Orbital", + "Katzenstein Settlement", + "Porta", + "Spedding Orbital", + "Anders Orbital", + "Mohmand Dock", + "Maler Hub", + "Scott Settlement", + "Sarich Port", + "Tyurin Port", + "Reisman Station", + "Fulton Landing", + "DENIS FILIPPOV", + "Rattus High", + "Port Sippar", + "Amar Station", + "Hennen City", + "Cabrera Dock", + "Haller Port", + "Pennington City", + "Foda Station", + "Stebler City", + "Gibson Settlement", + "Strekalov Dock", + "Behnken Terminal", + "Euler Port", + "Archimedes Hub", + "Ross Dock", + "Blalock Orbital", + "Pavlov Settlement", + "Galileo", + "Stein Platform", + "Beatty Landing", + "Galiano Plant", + "Rangarajan's Base", + "Jemison Refinery", + "Solo Orbiter", + "Brunel Station", + "Brendan Gateway", + "Godel Dock", + "Slipher Vision", + "EG Main HQ", + "Crown Orbital", + "Crown City", + "Watt Ring", + "Coye Orbital", + "Tokubei Holdings", + "Haberlandt Orbital", + "Bernard Colony", + "Meade Ring", + "Bessemer Station", + "Hornby Station" + ] + }, + "greatestDistanceFromStart": 9017.2195143253, + "creditsEarned": 542823, + "bodiesCount": 0, + "scanSoldLevels": { + "lev_0": 647, + "lev_1": 489, + "lev_2": 132, + "lev_3": 0 + }, + "latestPayouts": [ + { + "market": "Port Sippar", + "value": 3218 + }, + { + "market": "Quimper Ring", + "value": 63035 + }, + { + "market": "Rangarajan's Base", + "value": 141702 + }, + { + "market": "Galiano Plant", + "value": 59372 + }, + { + "market": "Beatty Landing", + "value": 3424 + } + ], + "highestPayout": 34942, + "lastVisitedStarSystems": [ + "CD-58 538", + "Iota Horologii", + "L 297-46", + "Iota Horologii", + "CD-58 538" + ], + "bodiesSoldCount": 1268, + "bodiesFirstDiscovered": 26 + }, + "ship": { + "spend": { + "ships": 8791673, + "fuel": 160875, + "modules": 15615586, + "ammo": 232942, + "repair": 910381 + }, + "fuel_units": { + "purchased": 0, + "scooped": 2232 + }, + "insurance": { + "claims": 24, + "value": 2714138 + } + }, + "wealth": { + "maxCredits": 23883052 + }, + "trade": { + "marketIds": [ + "3228160256", + "3228321792", + "3228393472", + "3228129280", + "3228062976", + "3227948288", + "3227868160", + "3228192000", + "3228189952", + "3228190208", + "3228191232", + "3228190464", + "3228190720", + "3228244480", + "3228249088", + "3228264192", + "3228252160", + "3228251904", + "3228190976", + "3228191488", + "3228249344", + "3227868416", + "3228248064", + "3228470784", + "3228244736", + "3228471040", + "3228339968", + "3228340224", + "3228244224", + "3228247808", + "3228329472", + "3228390400", + "3223529472", + "128129272", + "3223288832", + "3228081408", + "3228081152", + "3227955968", + "3227957248", + "3228063232", + "3228028672", + "3227998208", + "3227998464", + "3228066560", + "128134648", + "128154360", + "3228040192", + "128153848", + "3228064768", + "3228065024", + "3228064256", + "3227919360", + "128169976", + "3228064000", + "128073720", + "3228077824", + "128073464", + "3228120576" + ], + "furthest": { + "distance": 99.480201783445, + "origin": 128129272, + "destination": "3228390400" + }, + "largestProfit": { + "value": 171720, + "commodity": "Beryllium", + "qty": 120, + "marketId": "3228081152" + }, + "largestProfitPerItem": { + "value": 1433, + "commodity": "Beryllium", + "marketId": "3228081152" + }, + "count": 429, + "qty": 22410, + "profit": 14759658, + "totalDistance": 198621.73693075 + }, + "mining": { + "largestProfit": { + "value": 0, + "commodity": 0, + "qty": 0, + "marketId": 0 + }, + "largestProfitPerItem": { + "value": 0, + "commodity": 0, + "marketId": 0 + }, + "count": 0, + "qty": 0, + "profit": 0, + "converted": { + "qty": 0 + } + }, + "blackMarket": { + "marketIds": [ + "3227868160", + "3228338688", + "3228189952", + "3228247808", + "3228390144", + "128130296" + ], + "furthest": { + "distance": 69224.099624264, + "origin": 0, + "destination": "3228338688" + }, + "largestProfit": { + "value": 132005, + "commodity": "OnionHead", + "qty": 17, + "marketId": "3228390144" + }, + "largestProfitPerItem": { + "value": 13130, + "commodity": "MotronaExperienceJelly", + "marketId": "128130296" + }, + "count": 13, + "qty": 67, + "profit": 292429, + "totalDistance": 556021.41706887 + }, + "stolenGoods": { + "largestProfit": { + "value": 65650, + "commodity": "MotronaExperienceJelly", + "qty": 5, + "marketId": "128130296" + }, + "largestProfitPerItem": { + "value": 13130, + "commodity": "MotronaExperienceJelly", + "marketId": "128130296" + }, + "count": 10, + "qty": 38, + "profit": 157238 + }, + "combat": { + "bounty": { + "highestClaimed": 134706, + "qty": 239, + "value": 1215158 + }, + "bond": { + "qty": 223, + "value": 1559000 + } + }, + "crime": { + "fine": { + "qty": 11, + "value": 135334, + "factions": [] + }, + "bounty": { + "highest": { + "value": 0, + "faction": 0, + "systemId": 0 + }, + "qty": 0, + "value": 0, + "factions": [] + }, + "stolenCargo": { + "qty": 75, + "value": 442840 + } + }, + "PVP": { + "kills": { + "ranks": { + "r0": 2, + "r1": 1, + "r2": 2, + "r3": 0, + "r4": 1, + "r5": 0, + "r6": 0, + "r7": 0, + "r8": 0 + } + } + }, + "NCP": { + "kills": { + "ranks": { + "r0": 2, + "r1": 4, + "r2": 2, + "r3": 3, + "r4": 1, + "r5": 0, + "r6": 0, + "r7": 0, + "r8": 0 + } + } + }, + "prealloc": true, + "ranks": { + "combat": { + "1": { + "ts": 1417719389, + "gt": 144380 + }, + "2": { + "ts": 1419164701, + "gt": 328001 + }, + "3": { + "ts": 1419789595, + "gt": 381168 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "crime": { + "1": { + "ts": 0, + "gt": 0 + }, + "2": { + "ts": 0, + "gt": 0 + }, + "3": { + "ts": 0, + "gt": 0 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "explore": { + "1": { + "ts": 1416679505, + "gt": 7340 + }, + "2": { + "ts": 1416773896, + "gt": 32330 + }, + "3": { + "ts": 1425813076, + "gt": 645416 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "trade": { + "1": { + "ts": 1417041602, + "gt": 57777 + }, + "2": { + "ts": 1417208591, + "gt": 78181 + }, + "3": { + "ts": 1417804896, + "gt": 154613 + }, + "4": { + "ts": 1421439724, + "gt": 490202 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "federation": { + "1": { + "ts": 1418494995, + "gt": 227112 + }, + "2": { + "ts": 1418496671, + "gt": 227112 + }, + "3": { + "ts": 1419692207, + "gt": 369093 + }, + "4": { + "ts": 1420382992, + "gt": 418109 + }, + "5": { + "ts": 1437243056, + "gt": 847776 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "empire": { + "1": { + "ts": 1437243056, + "gt": 847776 + }, + "2": { + "ts": 0, + "gt": 0 + }, + "3": { + "ts": 0, + "gt": 0 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + } + }, + "lastModulesBought": [ + { + "market": "EG Main HQ", + "module": "Hpt_ChaffLauncher_Tiny", + "value": 8500 + }, + { + "market": "Godel Dock", + "module": "Int_DockingComputer_Standard", + "value": 4500 + }, + { + "market": "Quimper Ring", + "module": "Hpt_ElectronicCountermeasure_Tiny", + "value": 12500 + }, + { + "market": "Quimper Ring", + "module": "Decal_Combat_Competent", + "value": 0 + }, + { + "market": "Quimper Ring", + "module": "Int_HullReinforcement_Size4_Class2", + "value": 195000 + } + ], + "illegalGoods": { + "largestProfit": { + "value": 132005, + "commodity": "OnionHead", + "qty": 17, + "marketId": "3228390144" + }, + "largestProfitPerItem": { + "value": 13130, + "commodity": "MotronaExperienceJelly", + "marketId": "128130296" + }, + "count": 10, + "qty": 45, + "profit": 239863 + }, + "NPC": { + "kills": { + "ranks": { + "r1": 14, + "r3": 17, + "r2": 14, + "r0": 3, + "r4": 12, + "r5": 13, + "rArray": 2, + "r8": 3, + "r7": 2, + "r6": 5 + } + } + }, + "vanishCounters": { + "amongPeers": 5, + "notInDanger": 5, + "isNotDying": 2 + } + }, + "ship": { + "name": "CobraMkIII", + "modules": { + "MediumHardpoint1": { + "module": { + "id": 128049460, + "name": "Hpt_MultiCannon_Gimbal_Medium", + "value": 57000, + "unloaned": 57000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 90, + "hopper": 2100 + } + } + }, + "MediumHardpoint2": { + "module": { + "id": 128049386, + "name": "Hpt_PulseLaser_Gimbal_Medium", + "value": 35400, + "unloaned": 35400, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "SmallHardpoint1": { + "module": { + "id": 128049385, + "name": "Hpt_PulseLaser_Gimbal_Small", + "value": 6600, + "unloaned": 6600, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "SmallHardpoint2": { + "module": { + "id": 128049459, + "name": "Hpt_MultiCannon_Gimbal_Small", + "value": 14250, + "unloaned": 14250, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 90, + "hopper": 2100 + } + } + }, + "TinyHardpoint1": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 8500, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "TinyHardpoint2": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 8500, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "Decal1": { + "module": { + "id": 128667738, + "name": "Decal_Combat_Competent", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Decal2": { + "module": { + "id": 128667655, + "name": "Decal_Skull3", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Decal3": { + "module": { + "id": 128667655, + "name": "Decal_Skull3", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PaintJob": { + "module": { + "id": 128666731, + "name": "PaintJob_CobraMkIII_Stripe2_03", + "value": 0, + "health": 1000000, + "on": true, + "priority": 1, + "free": true, + "unloaned": 0 + } + }, + "Armour": { + "module": { + "id": 128049282, + "name": "CobraMkIII_Armour_Grade3", + "value": 341746, + "unloaned": 341746, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PowerPlant": { + "module": { + "id": 128064045, + "name": "Int_Powerplant_Size4_Class3", + "value": 178898, + "unloaned": 178898, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "MainEngines": { + "module": { + "id": 128064082, + "name": "Int_Engine_Size4_Class5", + "value": 1610080, + "unloaned": 1610080, + "free": false, + "health": 1000000, + "on": true, + "priority": 0 + } + }, + "FrameShiftDrive": { + "module": { + "id": 128064117, + "name": "Int_Hyperdrive_Size4_Class5", + "value": 1610080, + "unloaned": 1610080, + "free": false, + "health": 1000000, + "on": true, + "priority": 3 + } + }, + "LifeSupport": { + "module": { + "id": 128064149, + "name": "Int_LifeSupport_Size3_Class2", + "value": 10133, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "unloaned": 10133 + } + }, + "PowerDistributor": { + "module": { + "id": 128064192, + "name": "Int_PowerDistributor_Size3_Class5", + "value": 158331, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "unloaned": 158331 + } + }, + "Radar": { + "module": { + "id": 128064229, + "name": "Int_Sensors_Size3_Class2", + "value": 10133, + "unloaned": 10133, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "FuelTank": { + "module": { + "id": 128064349, + "name": "Int_FuelTank_Size4_Class3", + "value": 24734, + "health": 1000000, + "on": true, + "priority": 1, + "free": false, + "unloaned": 24734 + } + }, + "Slot01_Size4": { + "module": { + "id": 128668544, + "name": "Int_HullReinforcement_Size4_Class2", + "value": 195000, + "unloaned": 195000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot02_Size4": { + "module": { + "id": 128064314, + "name": "Int_ShieldCellBank_Size4_Class2", + "value": 28373, + "unloaned": 28373, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 2 + } + } + }, + "Slot03_Size4": { + "module": { + "id": 128064274, + "name": "Int_ShieldGenerator_Size4_Class2", + "value": 59633, + "unloaned": 59633, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot04_Size2": { + "module": { + "id": 128668540, + "name": "Int_HullReinforcement_Size2_Class2", + "value": 36000, + "unloaned": 36000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot05_Size2": { + "module": { + "id": 128666709, + "name": "Int_FSDInterdictor_Size2_Class2", + "value": 100800, + "unloaned": 100800, + "free": false, + "health": 1000000, + "on": true, + "priority": 3 + } + }, + "Slot06_Size2": { + "module": { + "id": 128049549, + "name": "Int_DockingComputer_Standard", + "value": 4500, + "unloaned": 4500, + "free": false, + "health": 1000000, + "on": true, + "priority": 0 + } + } + }, + "value": { + "hull": 235787, + "modules": 4498691, + "cargo": 0, + "total": 4734478, + "unloaned": 4498691 + }, + "free": false, + "health": { + "hull": 1000000, + "shield": 1000000, + "shieldup": true + }, + "wear": { + "dirt": 13235, + "fade": 443, + "tear": 40983, + "game": 11709 + }, + "cockpitBreached": false, + "oxygenRemaining": 450000, + "fuel": { + "capacity": 16, + "lvl": 12.166742 + }, + "reserve": { + "lvl": 0.432138 + }, + "cargo": { + "capacity": 0, + "qty": 0, + "items": [] + }, + "passengers": [], + "refinery": null + }, + "ships": { + "0": { + "name": "SideWinder", + "station": { + "id": "3228338688", + "name": "Nicollet City" + }, + "starsystem": { + "id": "8055378940618", + "name": "Chang Yeh", + "systemaddress": "8055378940618" + } + }, + "2": { + "name": "CobraMkIII", + "station": { + "id": "3223873024", + "name": "Hornby Station" + }, + "starsystem": { + "id": "63318", + "name": "CD-58 538", + "systemaddress": "5031721931474" + } + }, + "3": { + "name": "DiamondBack", + "station": { + "id": "3223873280", + "name": "Meade Ring" + }, + "starsystem": { + "id": "63318", + "name": "CD-58 538", + "systemaddress": "5031721931474" + } + } + } +} \ No newline at end of file diff --git a/utils/src/test/resources/edce/edce_cruise.json b/utils/src/test/resources/edce/edce_cruise.json new file mode 100644 index 0000000..7c4f6a9 --- /dev/null +++ b/utils/src/test/resources/edce/edce_cruise.json @@ -0,0 +1,6753 @@ +{ + "commander": { + "id": 126367, + "name": "MoHax", + "credits": 23883052, + "debt": 0, + "currentShipId": 2, + "alive": true, + "docked": false, + "rank": { + "combat": 3, + "trade": 4, + "explore": 3, + "crime": 0, + "service": 0, + "empire": 0, + "federation": 2, + "power": 3 + } + }, + "lastSystem": { + "id": "65179", + "name": "Ennead", + "faction": "Federation" + }, + "lastStarport": { + "id": "3223840768", + "name": "Watt Ring", + "faction": "Federation", + "commodities": [ + { + "id": "128049202", + "name": "Hydrogen Fuel", + "cost_min": 125, + "cost_max": 168, + "cost_mean": "147.00", + "homebuy": "74", + "homesell": "71", + "consumebuy": "3", + "baseCreationQty": 200, + "baseConsumptionQty": 200, + "capacity": 1239476, + "buyPrice": 0, + "sellPrice": 152, + "meanPrice": 147, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 12273, + "consumptionQty": 1227203, + "targetStock": 319073, + "stock": 0, + "demand": 659426, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Chemicals", + "volumescale": "1.3000" + }, + { + "id": "128049203", + "name": "Mineral Oil", + "cost_min": 192, + "cost_max": 325, + "cost_mean": "259.00", + "homebuy": "47", + "homesell": "42", + "consumebuy": "5", + "baseCreationQty": 647, + "baseConsumptionQty": 0, + "capacity": 39701, + "buyPrice": 120, + "sellPrice": 106, + "meanPrice": 259, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 39701, + "consumptionQty": 0, + "targetStock": 39701, + "stock": 22229, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Chemicals", + "volumescale": "1.0300" + }, + { + "id": "128049241", + "name": "Clothing", + "cost_min": 315, + "cost_max": 474, + "cost_mean": "395.00", + "homebuy": "61", + "homesell": "57", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 350, + "capacity": 2147606, + "buyPrice": 0, + "sellPrice": 465, + "meanPrice": 395, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 2147606, + "targetStock": 536901, + "stock": 0, + "demand": 1531178, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Consumer Items", + "volumescale": "1.1500" + }, + { + "id": "128049240", + "name": "Consumer Technology", + "cost_min": 6561, + "cost_max": 7500, + "cost_mean": "7031.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 27, + "capacity": 298211, + "buyPrice": 0, + "sellPrice": 7520, + "meanPrice": 7031, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 298211, + "targetStock": 74552, + "stock": 0, + "demand": 223659, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Consumer Items", + "volumescale": "1.1000" + }, + { + "id": "128049238", + "name": "Domestic Appliances", + "cost_min": 527, + "cost_max": 734, + "cost_mean": "631.00", + "homebuy": "70", + "homesell": "67", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 209, + "capacity": 641214, + "buyPrice": 0, + "sellPrice": 730, + "meanPrice": 631, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 641214, + "targetStock": 160303, + "stock": 0, + "demand": 470294, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Consumer Items", + "volumescale": "1.2500" + }, + { + "id": "128049177", + "name": "Algae", + "cost_min": 135, + "cost_max": 265, + "cost_mean": "200.00", + "homebuy": "27", + "homesell": "20", + "consumebuy": "7", + "baseCreationQty": 126, + "baseConsumptionQty": 0, + "capacity": 23196, + "buyPrice": 73, + "sellPrice": 54, + "meanPrice": 200, + "demandBracket": 0, + "stockBracket": 1, + "creationQty": 7732, + "consumptionQty": 0, + "targetStock": 7732, + "stock": 4329, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.0000" + }, + { + "id": "128049182", + "name": "Animal Meat", + "cost_min": 1286, + "cost_max": 1633, + "cost_mean": "1460.00", + "homebuy": "81", + "homesell": "79", + "consumebuy": "2", + "baseCreationQty": 19, + "baseConsumptionQty": 0, + "capacity": 1166, + "buyPrice": 1181, + "sellPrice": 1140, + "meanPrice": 1460, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 1166, + "consumptionQty": 0, + "targetStock": 1166, + "stock": 650, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.4000" + }, + { + "id": "128049189", + "name": "Coffee", + "cost_min": 1286, + "cost_max": 1633, + "cost_mean": "1460.00", + "homebuy": "81", + "homesell": "79", + "consumebuy": "2", + "baseCreationQty": 19, + "baseConsumptionQty": 0, + "capacity": 1166, + "buyPrice": 1181, + "sellPrice": 1141, + "meanPrice": 1460, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 1166, + "consumptionQty": 0, + "targetStock": 1166, + "stock": 649, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.4000" + }, + { + "id": "128049183", + "name": "Fish", + "cost_min": 403, + "cost_max": 583, + "cost_mean": "493.00", + "homebuy": "66", + "homesell": "63", + "consumebuy": "3", + "baseCreationQty": 27, + "baseConsumptionQty": 0, + "capacity": 4971, + "buyPrice": 390, + "sellPrice": 369, + "meanPrice": 493, + "demandBracket": 0, + "stockBracket": 1, + "creationQty": 1657, + "consumptionQty": 0, + "targetStock": 1657, + "stock": 925, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.2000" + }, + { + "id": "128049178", + "name": "Fruit And Vegetables", + "cost_min": 315, + "cost_max": 474, + "cost_mean": "395.00", + "homebuy": "61", + "homesell": "57", + "consumebuy": "4", + "baseCreationQty": 1748, + "baseConsumptionQty": 9, + "capacity": 363195, + "buyPrice": 293, + "sellPrice": 271, + "meanPrice": 395, + "demandBracket": 0, + "stockBracket": 1, + "creationQty": 107258, + "consumptionQty": 13807, + "targetStock": 110709, + "stock": 63511, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.1500" + }, + { + "id": "128049180", + "name": "Grain", + "cost_min": 207, + "cost_max": 342, + "cost_mean": "275.00", + "homebuy": "50", + "homesell": "45", + "consumebuy": "5", + "baseCreationQty": 5840, + "baseConsumptionQty": 29, + "capacity": 1608867, + "buyPrice": 174, + "sellPrice": 155, + "meanPrice": 275, + "demandBracket": 0, + "stockBracket": 1, + "creationQty": 358344, + "consumptionQty": 177945, + "targetStock": 402830, + "stock": 245155, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.0500" + }, + { + "id": "128049188", + "name": "Tea", + "cost_min": 1459, + "cost_max": 1833, + "cost_mean": "1646.00", + "homebuy": "82", + "homesell": "80", + "consumebuy": "2", + "baseCreationQty": 18, + "baseConsumptionQty": 0, + "capacity": 1105, + "buyPrice": 1425, + "sellPrice": 1376, + "meanPrice": 1646, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 1105, + "consumptionQty": 0, + "targetStock": 1105, + "stock": 468, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.4200" + }, + { + "id": "128064028", + "name": "Atmospheric Extractors", + "cost_min": 403, + "cost_max": 583, + "cost_mean": "493.00", + "homebuy": "66", + "homesell": "63", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 271, + "capacity": 1662860, + "buyPrice": 0, + "sellPrice": 557, + "meanPrice": 493, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 1662860, + "targetStock": 415715, + "stock": 0, + "demand": 1106579, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.2000" + }, + { + "id": "128049222", + "name": "Crop Harvesters", + "cost_min": 2142, + "cost_max": 2613, + "cost_mean": "2378.00", + "homebuy": "86", + "homesell": "85", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 322, + "capacity": 79032, + "buyPrice": 0, + "sellPrice": 2148, + "meanPrice": 2378, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 79032, + "targetStock": 19758, + "stock": 0, + "demand": 14818.5, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.4400" + }, + { + "id": "128049223", + "name": "Marine Supplies", + "cost_min": 4122, + "cost_max": 4826, + "cost_mean": "4474.00", + "homebuy": "90", + "homesell": "89", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 39, + "capacity": 9573, + "buyPrice": 0, + "sellPrice": 4133, + "meanPrice": 4474, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 9573, + "targetStock": 2393, + "stock": 0, + "demand": 1795, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.2400" + }, + { + "id": "128049217", + "name": "Power Generators", + "cost_min": 527, + "cost_max": 734, + "cost_mean": "631.00", + "homebuy": "70", + "homesell": "67", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 21, + "capacity": 5155, + "buyPrice": 0, + "sellPrice": 529, + "meanPrice": 631, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 5155, + "targetStock": 1288, + "stock": 0, + "demand": 966.75, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.2500" + }, + { + "id": "128049218", + "name": "Water Purifiers", + "cost_min": 300, + "cost_max": 456, + "cost_mean": "378.00", + "homebuy": "60", + "homesell": "56", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 37, + "capacity": 9082, + "buyPrice": 0, + "sellPrice": 301, + "meanPrice": 378, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 9082, + "targetStock": 2270, + "stock": 0, + "demand": 1703, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.1400" + }, + { + "id": "128049208", + "name": "Agricultural Medicines", + "cost_min": 1004, + "cost_max": 1303, + "cost_mean": "1154.00", + "homebuy": "79", + "homesell": "77", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 119, + "capacity": 29208, + "buyPrice": 0, + "sellPrice": 1307, + "meanPrice": 1154, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 29208, + "targetStock": 7302, + "stock": 0, + "demand": 21906, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.3600" + }, + { + "id": "128049210", + "name": "Basic Medicines", + "cost_min": 315, + "cost_max": 474, + "cost_mean": "395.00", + "homebuy": "61", + "homesell": "57", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 350, + "capacity": 322143, + "buyPrice": 0, + "sellPrice": 470, + "meanPrice": 395, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 107381, + "targetStock": 26845, + "stock": 0, + "demand": 234896, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.1500" + }, + { + "id": "128049209", + "name": "Performance Enhancers", + "cost_min": 6561, + "cost_max": 7500, + "cost_mean": "7031.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 67, + "capacity": 205557, + "buyPrice": 0, + "sellPrice": 7520, + "meanPrice": 7031, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 205557, + "targetStock": 51389, + "stock": 0, + "demand": 154168, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.1000" + }, + { + "id": "128049669", + "name": "Progenitor Cells", + "cost_min": 6561, + "cost_max": 7500, + "cost_mean": "7031.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 27, + "capacity": 165673, + "buyPrice": 0, + "sellPrice": 7520, + "meanPrice": 7031, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 165673, + "targetStock": 41418, + "stock": 0, + "demand": 124255, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.1000" + }, + { + "id": "128668550", + "name": "Painite", + "cost_min": 30000, + "cost_max": 36000, + "cost_mean": "33000.00", + "homebuy": "100", + "homesell": "100", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 15, + "capacity": 92041, + "buyPrice": 0, + "sellPrice": 36093, + "meanPrice": 33000, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 92041, + "targetStock": 23010, + "stock": 0, + "demand": 69031, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.0000" + }, + { + "id": "128049214", + "name": "Beer", + "cost_min": 175, + "cost_max": 304, + "cost_mean": "240.00", + "homebuy": "43", + "homesell": "37", + "consumebuy": "6", + "baseCreationQty": 755, + "baseConsumptionQty": 4, + "capacity": 58600, + "buyPrice": 108, + "sellPrice": 92, + "meanPrice": 240, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 46327, + "consumptionQty": 12273, + "targetStock": 49395, + "stock": 29009, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Narcotics", + "volumescale": "1.0000" + }, + { + "id": "128049216", + "name": "Liquor", + "cost_min": 624, + "cost_max": 852, + "cost_mean": "738.00", + "homebuy": "73", + "homesell": "70", + "consumebuy": "3", + "baseCreationQty": 179, + "baseConsumptionQty": 1, + "capacity": 812, + "buyPrice": 0, + "sellPrice": 816, + "meanPrice": 738, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 44, + "consumptionQty": 768, + "targetStock": 236, + "stock": 0, + "demand": 533, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Narcotics", + "volumescale": "1.2800" + }, + { + "id": "128049215", + "name": "Wine", + "cost_min": 252, + "cost_max": 396, + "cost_mean": "324.00", + "homebuy": "56", + "homesell": "52", + "consumebuy": "4", + "baseCreationQty": 452, + "baseConsumptionQty": 2, + "capacity": 40008, + "buyPrice": 193, + "sellPrice": 178, + "meanPrice": 324, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 27735, + "consumptionQty": 12273, + "targetStock": 30803, + "stock": 18596, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Narcotics", + "volumescale": "1.1000" + }, + { + "id": "128066403", + "name": "Drones", + "cost_min": 100, + "cost_max": 100, + "cost_mean": "100.00", + "homebuy": "100", + "homesell": "100", + "consumebuy": "1", + "baseCreationQty": 200, + "baseConsumptionQty": 0, + "capacity": 1227203, + "buyPrice": 102, + "sellPrice": 101, + "meanPrice": 100, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 1227203, + "consumptionQty": 0, + "targetStock": 1227203, + "stock": 1227203, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "NonMarketable", + "volumescale": "1.0000" + }, + { + "id": "128671443", + "name": "S A P8 Core Container", + "cost_min": 50000, + "cost_max": 60000, + "cost_mean": "55000.00", + "homebuy": "100", + "homesell": "100", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 200, + "capacity": 1227203, + "buyPrice": 0, + "sellPrice": 60155, + "meanPrice": 55000, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 1227203, + "targetStock": 306800, + "stock": 0, + "demand": 920403, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Salvage", + "volumescale": "1.0000" + }, + { + "id": "128049229", + "name": "Animal Monitors", + "cost_min": 300, + "cost_max": 456, + "cost_mean": "378.00", + "homebuy": "60", + "homesell": "56", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 368, + "capacity": 90323, + "buyPrice": 0, + "sellPrice": 458, + "meanPrice": 378, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 90323, + "targetStock": 22580, + "stock": 0, + "demand": 67743, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.1400" + }, + { + "id": "128049230", + "name": "Aquaponic Systems", + "cost_min": 274, + "cost_max": 424, + "cost_mean": "349.00", + "homebuy": "58", + "homesell": "54", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 408, + "capacity": 100140, + "buyPrice": 0, + "sellPrice": 426, + "meanPrice": 349, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 100140, + "targetStock": 25035, + "stock": 0, + "demand": 75105, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.1200" + }, + { + "id": "128049232", + "name": "Terrain Enrichment Systems", + "cost_min": 4705, + "cost_max": 5470, + "cost_mean": "5088.00", + "homebuy": "91", + "homesell": "90", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 35, + "capacity": 8591, + "buyPrice": 0, + "sellPrice": 5485, + "meanPrice": 5088, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 8591, + "targetStock": 2147, + "stock": 0, + "demand": 6444, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.2000" + }, + { + "id": "128049190", + "name": "Leather", + "cost_min": 175, + "cost_max": 304, + "cost_mean": "240.00", + "homebuy": "43", + "homesell": "37", + "consumebuy": "6", + "baseCreationQty": 75, + "baseConsumptionQty": 0, + "capacity": 4603, + "buyPrice": 101, + "sellPrice": 86, + "meanPrice": 240, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 4603, + "consumptionQty": 0, + "targetStock": 4603, + "stock": 2576, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Textiles", + "volumescale": "1.0000" + }, + { + "id": "128049191", + "name": "Natural Fabrics", + "cost_min": 403, + "cost_max": 583, + "cost_mean": "493.00", + "homebuy": "66", + "homesell": "63", + "consumebuy": "3", + "baseCreationQty": 271, + "baseConsumptionQty": 0, + "capacity": 16629, + "buyPrice": 322, + "sellPrice": 305, + "meanPrice": 493, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 16629, + "consumptionQty": 0, + "targetStock": 16629, + "stock": 9311, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Textiles", + "volumescale": "1.2000" + }, + { + "id": "128049244", + "name": "Biowaste", + "cost_min": 50, + "cost_max": 98, + "cost_mean": "74.00", + "homebuy": "27", + "homesell": "20", + "consumebuy": "7", + "baseCreationQty": 0, + "baseConsumptionQty": 1620, + "capacity": 9940344, + "buyPrice": 0, + "sellPrice": 99, + "meanPrice": 74, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 9940344, + "targetStock": 2485086, + "stock": 0, + "demand": 7439286, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Waste ", + "volumescale": "1.0000" + }, + { + "id": "128049236", + "name": "Non Lethal Weapons", + "cost_min": 1766, + "cost_max": 2185, + "cost_mean": "1976.00", + "homebuy": "84", + "homesell": "82", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 75, + "capacity": 9205, + "buyPrice": 0, + "sellPrice": 2191, + "meanPrice": 1976, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 9205, + "targetStock": 2301, + "stock": 0, + "demand": 6904, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Weapons", + "volumescale": "1.4500" + }, + { + "id": "128049233", + "name": "Personal Weapons", + "cost_min": 4122, + "cost_max": 4826, + "cost_mean": "4474.00", + "homebuy": "90", + "homesell": "89", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 39, + "capacity": 59827, + "buyPrice": 0, + "sellPrice": 4791, + "meanPrice": 4474, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 59827, + "targetStock": 14956, + "stock": 0, + "demand": 42639, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Weapons", + "volumescale": "1.2400" + }, + { + "id": "128049235", + "name": "Reactive Armour", + "cost_min": 2008, + "cost_max": 2461, + "cost_mean": "2235.00", + "homebuy": "85", + "homesell": "84", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 68, + "capacity": 25035, + "buyPrice": 0, + "sellPrice": 2468, + "meanPrice": 2235, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 25035, + "targetStock": 6258, + "stock": 0, + "demand": 18777, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Weapons", + "volumescale": "1.4600" + } + ], + "modules": { + "128049467": { + "id": 128049467, + "category": "weapon", + "name": "Hpt_PlasmaAccelerator_Fixed_Huge", + "cost": 13793600, + "sku": null + }, + "128049466": { + "id": 128049466, + "category": "weapon", + "name": "Hpt_PlasmaAccelerator_Fixed_Large", + "cost": 3051200, + "sku": null + }, + "128049465": { + "id": 128049465, + "category": "weapon", + "name": "Hpt_PlasmaAccelerator_Fixed_Medium", + "cost": 834200, + "sku": null + }, + "128049489": { + "id": 128049489, + "category": "weapon", + "name": "Hpt_Railgun_Fixed_Medium", + "cost": 412800, + "sku": null + }, + "128049488": { + "id": 128049488, + "category": "weapon", + "name": "Hpt_Railgun_Fixed_Small", + "cost": 51600, + "sku": null + }, + "128049493": { + "id": 128049493, + "category": "weapon", + "name": "Hpt_BasicMissileRack_Fixed_Medium", + "cost": 512400, + "sku": null + }, + "128049492": { + "id": 128049492, + "category": "weapon", + "name": "Hpt_BasicMissileRack_Fixed_Small", + "cost": 72600, + "sku": null + }, + "128049510": { + "id": 128049510, + "category": "weapon", + "name": "Hpt_AdvancedTorpPylon_Fixed_Medium", + "cost": 44800, + "sku": null + }, + "128049509": { + "id": 128049509, + "category": "weapon", + "name": "Hpt_AdvancedTorpPylon_Fixed_Small", + "cost": 11200, + "sku": null + }, + "128666725": { + "id": 128666725, + "category": "weapon", + "name": "Hpt_DumbfireMissileRack_Fixed_Medium", + "cost": 240400, + "sku": null + }, + "128666724": { + "id": 128666724, + "category": "weapon", + "name": "Hpt_DumbfireMissileRack_Fixed_Small", + "cost": 32175, + "sku": null + }, + "128049500": { + "id": 128049500, + "category": "weapon", + "name": "Hpt_MineLauncher_Fixed_Small", + "cost": 24260, + "sku": null + }, + "128049463": { + "id": 128049463, + "category": "weapon", + "name": "Hpt_MultiCannon_Turret_Medium", + "cost": 1292800, + "sku": null + }, + "128049459": { + "id": 128049459, + "category": "weapon", + "name": "Hpt_MultiCannon_Gimbal_Small", + "cost": 14250, + "sku": null + }, + "128049460": { + "id": 128049460, + "category": "weapon", + "name": "Hpt_MultiCannon_Gimbal_Medium", + "cost": 57000, + "sku": null + }, + "128049456": { + "id": 128049456, + "category": "weapon", + "name": "Hpt_MultiCannon_Fixed_Medium", + "cost": 38000, + "sku": null + }, + "128049455": { + "id": 128049455, + "category": "weapon", + "name": "Hpt_MultiCannon_Fixed_Small", + "cost": 9500, + "sku": null + }, + "128049441": { + "id": 128049441, + "category": "weapon", + "name": "Hpt_Cannon_Fixed_Huge", + "cost": 2700800, + "sku": null + }, + "128049445": { + "id": 128049445, + "category": "weapon", + "name": "Hpt_Cannon_Turret_Small", + "cost": 506400, + "sku": null + }, + "128671120": { + "id": 128671120, + "category": "weapon", + "name": "Hpt_Cannon_Gimbal_Large", + "cost": 1350400, + "sku": null + }, + "128049446": { + "id": 128049446, + "category": "weapon", + "name": "Hpt_Cannon_Turret_Medium", + "cost": 4051200, + "sku": null + }, + "128049442": { + "id": 128049442, + "category": "weapon", + "name": "Hpt_Cannon_Gimbal_Small", + "cost": 42200, + "sku": null + }, + "128049440": { + "id": 128049440, + "category": "weapon", + "name": "Hpt_Cannon_Fixed_Large", + "cost": 675200, + "sku": null + }, + "128671322": { + "id": 128671322, + "category": "weapon", + "name": "Hpt_Slugshot_Turret_Large", + "cost": 5836800, + "sku": null + }, + "128049454": { + "id": 128049454, + "category": "weapon", + "name": "Hpt_Slugshot_Turret_Medium", + "cost": 1459200, + "sku": null + }, + "128049451": { + "id": 128049451, + "category": "weapon", + "name": "Hpt_Slugshot_Gimbal_Small", + "cost": 54720, + "sku": null + }, + "128049452": { + "id": 128049452, + "category": "weapon", + "name": "Hpt_Slugshot_Gimbal_Medium", + "cost": 437760, + "sku": null + }, + "128049450": { + "id": 128049450, + "category": "weapon", + "name": "Hpt_Slugshot_Fixed_Large", + "cost": 1167360, + "sku": null + }, + "128049437": { + "id": 128049437, + "category": "weapon", + "name": "Hpt_BeamLaser_Turret_Large", + "cost": 19399600, + "sku": null + }, + "128049428": { + "id": 128049428, + "category": "weapon", + "name": "Hpt_BeamLaser_Fixed_Small", + "cost": 37430, + "sku": null + }, + "128049430": { + "id": 128049430, + "category": "weapon", + "name": "Hpt_BeamLaser_Fixed_Large", + "cost": 1177600, + "sku": null + }, + "128049432": { + "id": 128049432, + "category": "weapon", + "name": "Hpt_BeamLaser_Gimbal_Small", + "cost": 74650, + "sku": null + }, + "128049387": { + "id": 128049387, + "category": "weapon", + "name": "Hpt_PulseLaser_Gimbal_Large", + "cost": 140600, + "sku": null + }, + "128049385": { + "id": 128049385, + "category": "weapon", + "name": "Hpt_PulseLaser_Gimbal_Small", + "cost": 6600, + "sku": null + }, + "128049386": { + "id": 128049386, + "category": "weapon", + "name": "Hpt_PulseLaser_Gimbal_Medium", + "cost": 35400, + "sku": null + }, + "128049382": { + "id": 128049382, + "category": "weapon", + "name": "Hpt_PulseLaser_Fixed_Medium", + "cost": 17600, + "sku": null + }, + "128049404": { + "id": 128049404, + "category": "weapon", + "name": "Hpt_PulseLaserBurst_Gimbal_Small", + "cost": 8600, + "sku": null + }, + "128049405": { + "id": 128049405, + "category": "weapon", + "name": "Hpt_PulseLaserBurst_Gimbal_Medium", + "cost": 48500, + "sku": null + }, + "128049401": { + "id": 128049401, + "category": "weapon", + "name": "Hpt_PulseLaserBurst_Fixed_Medium", + "cost": 23000, + "sku": null + }, + "128662534": { + "id": 128662534, + "category": "utility", + "name": "Hpt_CrimeScanner_Size0_Class5", + "cost": 1097095, + "sku": null + }, + "128662533": { + "id": 128662533, + "category": "utility", + "name": "Hpt_CrimeScanner_Size0_Class4", + "cost": 365698, + "sku": null + }, + "128662532": { + "id": 128662532, + "category": "utility", + "name": "Hpt_CrimeScanner_Size0_Class3", + "cost": 121899, + "sku": null + }, + "128662531": { + "id": 128662531, + "category": "utility", + "name": "Hpt_CrimeScanner_Size0_Class2", + "cost": 40633, + "sku": null + }, + "128662524": { + "id": 128662524, + "category": "utility", + "name": "Hpt_CargoScanner_Size0_Class5", + "cost": 1097095, + "sku": null + }, + "128662523": { + "id": 128662523, + "category": "utility", + "name": "Hpt_CargoScanner_Size0_Class4", + "cost": 365698, + "sku": null + }, + "128662521": { + "id": 128662521, + "category": "utility", + "name": "Hpt_CargoScanner_Size0_Class2", + "cost": 40633, + "sku": null + }, + "128662520": { + "id": 128662520, + "category": "utility", + "name": "Hpt_CargoScanner_Size0_Class1", + "cost": 13544, + "sku": null + }, + "128049519": { + "id": 128049519, + "category": "utility", + "name": "Hpt_HeatSinkLauncher_Turret_Tiny", + "cost": 3500, + "sku": null + }, + "128049522": { + "id": 128049522, + "category": "utility", + "name": "Hpt_PlasmaPointDefence_Turret_Tiny", + "cost": 18546, + "sku": null + }, + "128662527": { + "id": 128662527, + "category": "utility", + "name": "Hpt_CloudScanner_Size0_Class3", + "cost": 121899, + "sku": null + }, + "128662526": { + "id": 128662526, + "category": "utility", + "name": "Hpt_CloudScanner_Size0_Class2", + "cost": 40633, + "sku": null + }, + "128662529": { + "id": 128662529, + "category": "utility", + "name": "Hpt_CloudScanner_Size0_Class5", + "cost": 1097095, + "sku": null + }, + "128662528": { + "id": 128662528, + "category": "utility", + "name": "Hpt_CloudScanner_Size0_Class4", + "cost": 365698, + "sku": null + }, + "128049526": { + "id": 128049526, + "category": "utility", + "name": "Hpt_MiningLaser_Fixed_Medium", + "cost": 22576, + "sku": null + }, + "128049525": { + "id": 128049525, + "category": "utility", + "name": "Hpt_MiningLaser_Fixed_Small", + "cost": 6800, + "sku": null + }, + "128049300": { + "id": 128049300, + "category": "module", + "name": "Type7_Armour_Grade3", + "cost": 15725026, + "sku": null + }, + "128049299": { + "id": 128049299, + "category": "module", + "name": "Type7_Armour_Grade2", + "cost": 6988900, + "sku": null + }, + "128049298": { + "id": 128049298, + "category": "module", + "name": "Type7_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049301": { + "id": 128049301, + "category": "module", + "name": "Type7_Armour_Mirrored", + "cost": 37163480, + "sku": null + }, + "128049302": { + "id": 128049302, + "category": "module", + "name": "Type7_Armour_Reactive", + "cost": 41182097, + "sku": null + }, + "128049282": { + "id": 128049282, + "category": "module", + "name": "CobraMkIII_Armour_Grade3", + "cost": 341746, + "sku": null + }, + "128049281": { + "id": 128049281, + "category": "module", + "name": "CobraMkIII_Armour_Grade2", + "cost": 151887, + "sku": null + }, + "128049280": { + "id": 128049280, + "category": "module", + "name": "CobraMkIII_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049283": { + "id": 128049283, + "category": "module", + "name": "CobraMkIII_Armour_Mirrored", + "cost": 797407, + "sku": null + }, + "128049284": { + "id": 128049284, + "category": "module", + "name": "CobraMkIII_Armour_Reactive", + "cost": 894995, + "sku": null + }, + "128049288": { + "id": 128049288, + "category": "module", + "name": "Type6_Armour_Grade3", + "cost": 941350, + "sku": null + }, + "128049287": { + "id": 128049287, + "category": "module", + "name": "Type6_Armour_Grade2", + "cost": 418378, + "sku": null + }, + "128049286": { + "id": 128049286, + "category": "module", + "name": "Type6_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049289": { + "id": 128049289, + "category": "module", + "name": "Type6_Armour_Mirrored", + "cost": 2224725, + "sku": null + }, + "128049290": { + "id": 128049290, + "category": "module", + "name": "Type6_Armour_Reactive", + "cost": 2465292, + "sku": null + }, + "128049252": { + "id": 128049252, + "category": "module", + "name": "SideWinder_Armour_Grade3", + "cost": 80320, + "sku": null + }, + "128049251": { + "id": 128049251, + "category": "module", + "name": "SideWinder_Armour_Grade2", + "cost": 25600, + "sku": null + }, + "128049250": { + "id": 128049250, + "category": "module", + "name": "SideWinder_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049253": { + "id": 128049253, + "category": "module", + "name": "SideWinder_Armour_Mirrored", + "cost": 132064, + "sku": null + }, + "128049254": { + "id": 128049254, + "category": "module", + "name": "SideWinder_Armour_Reactive", + "cost": 139424, + "sku": null + }, + "128049258": { + "id": 128049258, + "category": "module", + "name": "Eagle_Armour_Grade3", + "cost": 90048, + "sku": null + }, + "128049257": { + "id": 128049257, + "category": "module", + "name": "Eagle_Armour_Grade2", + "cost": 26880, + "sku": null + }, + "128049256": { + "id": 128049256, + "category": "module", + "name": "Eagle_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049259": { + "id": 128049259, + "category": "module", + "name": "Eagle_Armour_Mirrored", + "cost": 140089, + "sku": null + }, + "128049260": { + "id": 128049260, + "category": "module", + "name": "Eagle_Armour_Reactive", + "cost": 150393, + "sku": null + }, + "128049264": { + "id": 128049264, + "category": "module", + "name": "Hauler_Armour_Grade3", + "cost": 185047, + "sku": null + }, + "128049263": { + "id": 128049263, + "category": "module", + "name": "Hauler_Armour_Grade2", + "cost": 42176, + "sku": null + }, + "128049262": { + "id": 128049262, + "category": "module", + "name": "Hauler_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049265": { + "id": 128049265, + "category": "module", + "name": "Hauler_Armour_Mirrored", + "cost": 270295, + "sku": null + }, + "128049266": { + "id": 128049266, + "category": "module", + "name": "Hauler_Armour_Reactive", + "cost": 282421, + "sku": null + }, + "128049270": { + "id": 128049270, + "category": "module", + "name": "Adder_Armour_Grade3", + "cost": 79027, + "sku": null + }, + "128049269": { + "id": 128049269, + "category": "module", + "name": "Adder_Armour_Grade2", + "cost": 35123, + "sku": null + }, + "128049268": { + "id": 128049268, + "category": "module", + "name": "Adder_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049271": { + "id": 128049271, + "category": "module", + "name": "Adder_Armour_Mirrored", + "cost": 186767, + "sku": null + }, + "128049272": { + "id": 128049272, + "category": "module", + "name": "Adder_Armour_Reactive", + "cost": 206963, + "sku": null + }, + "128049336": { + "id": 128049336, + "category": "module", + "name": "Type9_Armour_Grade3", + "cost": 68900257, + "sku": null + }, + "128049335": { + "id": 128049335, + "category": "module", + "name": "Type9_Armour_Grade2", + "cost": 30622336, + "sku": null + }, + "128049334": { + "id": 128049334, + "category": "module", + "name": "Type9_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049337": { + "id": 128049337, + "category": "module", + "name": "Type9_Armour_Mirrored", + "cost": 162834275, + "sku": null + }, + "128049338": { + "id": 128049338, + "category": "module", + "name": "Type9_Armour_Reactive", + "cost": 180442119, + "sku": null + }, + "128662535": { + "id": 128662535, + "category": "module", + "name": "Int_StellarBodyDiscoveryScanner_Standard", + "cost": 1000, + "sku": null + }, + "128064338": { + "id": 128064338, + "category": "module", + "name": "Int_CargoRack_Size1_Class1", + "cost": 1000, + "sku": null + }, + "128666684": { + "id": 128666684, + "category": "module", + "name": "Int_Refinery_Size1_Class1", + "cost": 6000, + "sku": null + }, + "128666644": { + "id": 128666644, + "category": "module", + "name": "Int_FuelScoop_Size1_Class1", + "cost": 309, + "sku": null + }, + "128666704": { + "id": 128666704, + "category": "module", + "name": "Int_FSDInterdictor_Size1_Class1", + "cost": 12000, + "sku": null + }, + "128066532": { + "id": 128066532, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size1_Class1", + "cost": 600, + "sku": null + }, + "128064263": { + "id": 128064263, + "category": "module", + "name": "Int_ShieldGenerator_Size2_Class1", + "cost": 1978, + "sku": null + }, + "128064111": { + "id": 128064111, + "category": "module", + "name": "Int_Hyperdrive_Size3_Class4", + "cost": 169304, + "sku": null + }, + "128064106": { + "id": 128064106, + "category": "module", + "name": "Int_Hyperdrive_Size2_Class4", + "cost": 53408, + "sku": null + }, + "128064110": { + "id": 128064110, + "category": "module", + "name": "Int_Hyperdrive_Size3_Class3", + "cost": 56435, + "sku": null + }, + "128064105": { + "id": 128064105, + "category": "module", + "name": "Int_Hyperdrive_Size2_Class3", + "cost": 17803, + "sku": null + }, + "128064109": { + "id": 128064109, + "category": "module", + "name": "Int_Hyperdrive_Size3_Class2", + "cost": 18812, + "sku": null + }, + "128064104": { + "id": 128064104, + "category": "module", + "name": "Int_Hyperdrive_Size2_Class2", + "cost": 5934, + "sku": null + }, + "128064108": { + "id": 128064108, + "category": "module", + "name": "Int_Hyperdrive_Size3_Class1", + "cost": 6271, + "sku": null + }, + "128064103": { + "id": 128064103, + "category": "module", + "name": "Int_Hyperdrive_Size2_Class1", + "cost": 1978, + "sku": null + }, + "128064192": { + "id": 128064192, + "category": "module", + "name": "Int_PowerDistributor_Size3_Class5", + "cost": 158331, + "sku": null + }, + "128064182": { + "id": 128064182, + "category": "module", + "name": "Int_PowerDistributor_Size1_Class5", + "cost": 20195, + "sku": null + }, + "128064191": { + "id": 128064191, + "category": "module", + "name": "Int_PowerDistributor_Size3_Class4", + "cost": 63333, + "sku": null + }, + "128064181": { + "id": 128064181, + "category": "module", + "name": "Int_PowerDistributor_Size1_Class4", + "cost": 8078, + "sku": null + }, + "128064186": { + "id": 128064186, + "category": "module", + "name": "Int_PowerDistributor_Size2_Class4", + "cost": 22619, + "sku": null + }, + "128064190": { + "id": 128064190, + "category": "module", + "name": "Int_PowerDistributor_Size3_Class3", + "cost": 25333, + "sku": null + }, + "128064185": { + "id": 128064185, + "category": "module", + "name": "Int_PowerDistributor_Size2_Class3", + "cost": 9048, + "sku": null + }, + "128064180": { + "id": 128064180, + "category": "module", + "name": "Int_PowerDistributor_Size1_Class3", + "cost": 3231, + "sku": null + }, + "128064189": { + "id": 128064189, + "category": "module", + "name": "Int_PowerDistributor_Size3_Class2", + "cost": 10133, + "sku": null + }, + "128064179": { + "id": 128064179, + "category": "module", + "name": "Int_PowerDistributor_Size1_Class2", + "cost": 1293, + "sku": null + }, + "128064184": { + "id": 128064184, + "category": "module", + "name": "Int_PowerDistributor_Size2_Class2", + "cost": 3619, + "sku": null + }, + "128064188": { + "id": 128064188, + "category": "module", + "name": "Int_PowerDistributor_Size3_Class1", + "cost": 4053, + "sku": null + }, + "128064183": { + "id": 128064183, + "category": "module", + "name": "Int_PowerDistributor_Size2_Class1", + "cost": 1448, + "sku": null + }, + "128064178": { + "id": 128064178, + "category": "module", + "name": "Int_PowerDistributor_Size1_Class1", + "cost": 517, + "sku": null + }, + "128064345": { + "id": 128064345, + "category": "module", + "name": "Int_CargoRack_Size8_Class1", + "cost": 3829866, + "sku": null + }, + "128064344": { + "id": 128064344, + "category": "module", + "name": "Int_CargoRack_Size7_Class1", + "cost": 1178420, + "sku": null + }, + "128064343": { + "id": 128064343, + "category": "module", + "name": "Int_CargoRack_Size6_Class1", + "cost": 362591, + "sku": null + }, + "128064342": { + "id": 128064342, + "category": "module", + "name": "Int_CargoRack_Size5_Class1", + "cost": 111566, + "sku": null + }, + "128064341": { + "id": 128064341, + "category": "module", + "name": "Int_CargoRack_Size4_Class1", + "cost": 34328, + "sku": null + }, + "128064340": { + "id": 128064340, + "category": "module", + "name": "Int_CargoRack_Size3_Class1", + "cost": 10563, + "sku": null + }, + "128064339": { + "id": 128064339, + "category": "module", + "name": "Int_CargoRack_Size2_Class1", + "cost": 3250, + "sku": null + }, + "128064041": { + "id": 128064041, + "category": "module", + "name": "Int_Powerplant_Size3_Class4", + "cost": 169304, + "sku": null + }, + "128064036": { + "id": 128064036, + "category": "module", + "name": "Int_Powerplant_Size2_Class4", + "cost": 53408, + "sku": null + }, + "128064040": { + "id": 128064040, + "category": "module", + "name": "Int_Powerplant_Size3_Class3", + "cost": 56435, + "sku": null + }, + "128064035": { + "id": 128064035, + "category": "module", + "name": "Int_Powerplant_Size2_Class3", + "cost": 17803, + "sku": null + }, + "128064039": { + "id": 128064039, + "category": "module", + "name": "Int_Powerplant_Size3_Class2", + "cost": 18812, + "sku": null + }, + "128064034": { + "id": 128064034, + "category": "module", + "name": "Int_Powerplant_Size2_Class2", + "cost": 5934, + "sku": null + }, + "128064038": { + "id": 128064038, + "category": "module", + "name": "Int_Powerplant_Size3_Class1", + "cost": 6271, + "sku": null + }, + "128064033": { + "id": 128064033, + "category": "module", + "name": "Int_Powerplant_Size2_Class1", + "cost": 1978, + "sku": null + }, + "128663561": { + "id": 128663561, + "category": "module", + "name": "Int_StellarBodyDiscoveryScanner_Advanced", + "cost": 1545000, + "sku": null + }, + "128663560": { + "id": 128663560, + "category": "module", + "name": "Int_StellarBodyDiscoveryScanner_Intermediate", + "cost": 505000, + "sku": null + }, + "128666634": { + "id": 128666634, + "category": "module", + "name": "Int_DetailedSurfaceScanner_Tiny", + "cost": 250000, + "sku": null + }, + "128064197": { + "id": 128064197, + "category": "module", + "name": "Int_PowerDistributor_Size4_Class5", + "cost": 443328, + "sku": null + }, + "128064206": { + "id": 128064206, + "category": "module", + "name": "Int_PowerDistributor_Size6_Class4", + "cost": 1390275, + "sku": null + }, + "128064201": { + "id": 128064201, + "category": "module", + "name": "Int_PowerDistributor_Size5_Class4", + "cost": 496527, + "sku": null + }, + "128064196": { + "id": 128064196, + "category": "module", + "name": "Int_PowerDistributor_Size4_Class4", + "cost": 177331, + "sku": null + }, + "128064205": { + "id": 128064205, + "category": "module", + "name": "Int_PowerDistributor_Size6_Class3", + "cost": 556110, + "sku": null + }, + "128064204": { + "id": 128064204, + "category": "module", + "name": "Int_PowerDistributor_Size6_Class2", + "cost": 222444, + "sku": null + }, + "128064195": { + "id": 128064195, + "category": "module", + "name": "Int_PowerDistributor_Size4_Class3", + "cost": 70932, + "sku": null + }, + "128064199": { + "id": 128064199, + "category": "module", + "name": "Int_PowerDistributor_Size5_Class2", + "cost": 79444, + "sku": null + }, + "128064203": { + "id": 128064203, + "category": "module", + "name": "Int_PowerDistributor_Size6_Class1", + "cost": 88978, + "sku": null + }, + "128064194": { + "id": 128064194, + "category": "module", + "name": "Int_PowerDistributor_Size4_Class2", + "cost": 28373, + "sku": null + }, + "128064198": { + "id": 128064198, + "category": "module", + "name": "Int_PowerDistributor_Size5_Class1", + "cost": 31778, + "sku": null + }, + "128064193": { + "id": 128064193, + "category": "module", + "name": "Int_PowerDistributor_Size4_Class1", + "cost": 11349, + "sku": null + }, + "128064311": { + "id": 128064311, + "category": "module", + "name": "Int_ShieldCellBank_Size3_Class4", + "cost": 63333, + "sku": null + }, + "128064301": { + "id": 128064301, + "category": "module", + "name": "Int_ShieldCellBank_Size1_Class4", + "cost": 8078, + "sku": null + }, + "128064306": { + "id": 128064306, + "category": "module", + "name": "Int_ShieldCellBank_Size2_Class4", + "cost": 22619, + "sku": null + }, + "128064310": { + "id": 128064310, + "category": "module", + "name": "Int_ShieldCellBank_Size3_Class3", + "cost": 25333, + "sku": null + }, + "128064305": { + "id": 128064305, + "category": "module", + "name": "Int_ShieldCellBank_Size2_Class3", + "cost": 9048, + "sku": null + }, + "128064300": { + "id": 128064300, + "category": "module", + "name": "Int_ShieldCellBank_Size1_Class3", + "cost": 3231, + "sku": null + }, + "128064309": { + "id": 128064309, + "category": "module", + "name": "Int_ShieldCellBank_Size3_Class2", + "cost": 10133, + "sku": null + }, + "128064299": { + "id": 128064299, + "category": "module", + "name": "Int_ShieldCellBank_Size1_Class2", + "cost": 1293, + "sku": null + }, + "128064304": { + "id": 128064304, + "category": "module", + "name": "Int_ShieldCellBank_Size2_Class2", + "cost": 3619, + "sku": null + }, + "128064308": { + "id": 128064308, + "category": "module", + "name": "Int_ShieldCellBank_Size3_Class1", + "cost": 4053, + "sku": null + }, + "128064303": { + "id": 128064303, + "category": "module", + "name": "Int_ShieldCellBank_Size2_Class1", + "cost": 1448, + "sku": null + }, + "128064298": { + "id": 128064298, + "category": "module", + "name": "Int_ShieldCellBank_Size1_Class1", + "cost": 517, + "sku": null + }, + "128064353": { + "id": 128064353, + "category": "module", + "name": "Int_FuelTank_Size8_Class3", + "cost": 5428429, + "sku": null + }, + "128064352": { + "id": 128064352, + "category": "module", + "name": "Int_FuelTank_Size7_Class3", + "cost": 1780914, + "sku": null + }, + "128064351": { + "id": 128064351, + "category": "module", + "name": "Int_FuelTank_Size6_Class3", + "cost": 341577, + "sku": null + }, + "128064350": { + "id": 128064350, + "category": "module", + "name": "Int_FuelTank_Size5_Class3", + "cost": 97754, + "sku": null + }, + "128064349": { + "id": 128064349, + "category": "module", + "name": "Int_FuelTank_Size4_Class3", + "cost": 24734, + "sku": null + }, + "128064348": { + "id": 128064348, + "category": "module", + "name": "Int_FuelTank_Size3_Class3", + "cost": 7063, + "sku": null + }, + "128064347": { + "id": 128064347, + "category": "module", + "name": "Int_FuelTank_Size2_Class3", + "cost": 3750, + "sku": null + }, + "128064346": { + "id": 128064346, + "category": "module", + "name": "Int_FuelTank_Size1_Class3", + "cost": 1000, + "sku": null + }, + "128666723": { + "id": 128666723, + "category": "module", + "name": "Int_FSDInterdictor_Size4_Class5", + "cost": 21337344, + "sku": null + }, + "128666719": { + "id": 128666719, + "category": "module", + "name": "Int_FSDInterdictor_Size4_Class4", + "cost": 7112448, + "sku": null + }, + "128666715": { + "id": 128666715, + "category": "module", + "name": "Int_FSDInterdictor_Size4_Class3", + "cost": 2370816, + "sku": null + }, + "128666722": { + "id": 128666722, + "category": "module", + "name": "Int_FSDInterdictor_Size3_Class5", + "cost": 7620480, + "sku": null + }, + "128666718": { + "id": 128666718, + "category": "module", + "name": "Int_FSDInterdictor_Size3_Class4", + "cost": 2540160, + "sku": null + }, + "128666714": { + "id": 128666714, + "category": "module", + "name": "Int_FSDInterdictor_Size3_Class3", + "cost": 846720, + "sku": null + }, + "128666711": { + "id": 128666711, + "category": "module", + "name": "Int_FSDInterdictor_Size4_Class2", + "cost": 790272, + "sku": null + }, + "128666707": { + "id": 128666707, + "category": "module", + "name": "Int_FSDInterdictor_Size4_Class1", + "cost": 263424, + "sku": null + }, + "128666710": { + "id": 128666710, + "category": "module", + "name": "Int_FSDInterdictor_Size3_Class2", + "cost": 282240, + "sku": null + }, + "128666706": { + "id": 128666706, + "category": "module", + "name": "Int_FSDInterdictor_Size3_Class1", + "cost": 94080, + "sku": null + }, + "128066540": { + "id": 128066540, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size3_Class4", + "cost": 43200, + "sku": null + }, + "128066535": { + "id": 128066535, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size1_Class4", + "cost": 4800, + "sku": null + }, + "128066539": { + "id": 128066539, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size3_Class3", + "cost": 21600, + "sku": null + }, + "128066534": { + "id": 128066534, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size1_Class3", + "cost": 2400, + "sku": null + }, + "128066538": { + "id": 128066538, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size3_Class2", + "cost": 10800, + "sku": null + }, + "128066533": { + "id": 128066533, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size1_Class2", + "cost": 1200, + "sku": null + }, + "128066537": { + "id": 128066537, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size3_Class1", + "cost": 5400, + "sku": null + }, + "128666683": { + "id": 128666683, + "category": "module", + "name": "Int_FuelScoop_Size8_Class5", + "cost": 289042641, + "sku": null + }, + "128666675": { + "id": 128666675, + "category": "module", + "name": "Int_FuelScoop_Size8_Class4", + "cost": 72260660, + "sku": null + }, + "128666682": { + "id": 128666682, + "category": "module", + "name": "Int_FuelScoop_Size7_Class5", + "cost": 91180644, + "sku": null + }, + "128666674": { + "id": 128666674, + "category": "module", + "name": "Int_FuelScoop_Size7_Class4", + "cost": 22795161, + "sku": null + }, + "128666667": { + "id": 128666667, + "category": "module", + "name": "Int_FuelScoop_Size8_Class3", + "cost": 18065165, + "sku": null + }, + "128666666": { + "id": 128666666, + "category": "module", + "name": "Int_FuelScoop_Size7_Class3", + "cost": 5698790, + "sku": null + }, + "128666659": { + "id": 128666659, + "category": "module", + "name": "Int_FuelScoop_Size8_Class2", + "cost": 4516291, + "sku": null + }, + "128666658": { + "id": 128666658, + "category": "module", + "name": "Int_FuelScoop_Size7_Class2", + "cost": 1424698, + "sku": null + }, + "128666651": { + "id": 128666651, + "category": "module", + "name": "Int_FuelScoop_Size8_Class1", + "cost": 1083910, + "sku": null + }, + "128666650": { + "id": 128666650, + "category": "module", + "name": "Int_FuelScoop_Size7_Class1", + "cost": 341927, + "sku": null + }, + "128064151": { + "id": 128064151, + "category": "module", + "name": "Int_LifeSupport_Size3_Class4", + "cost": 63333, + "sku": null + }, + "128064141": { + "id": 128064141, + "category": "module", + "name": "Int_LifeSupport_Size1_Class4", + "cost": 8078, + "sku": null + }, + "128064146": { + "id": 128064146, + "category": "module", + "name": "Int_LifeSupport_Size2_Class4", + "cost": 22619, + "sku": null + }, + "128064150": { + "id": 128064150, + "category": "module", + "name": "Int_LifeSupport_Size3_Class3", + "cost": 25333, + "sku": null + }, + "128064145": { + "id": 128064145, + "category": "module", + "name": "Int_LifeSupport_Size2_Class3", + "cost": 9048, + "sku": null + }, + "128064140": { + "id": 128064140, + "category": "module", + "name": "Int_LifeSupport_Size1_Class3", + "cost": 3231, + "sku": null + }, + "128064149": { + "id": 128064149, + "category": "module", + "name": "Int_LifeSupport_Size3_Class2", + "cost": 10133, + "sku": null + }, + "128064139": { + "id": 128064139, + "category": "module", + "name": "Int_LifeSupport_Size1_Class2", + "cost": 1293, + "sku": null + }, + "128064144": { + "id": 128064144, + "category": "module", + "name": "Int_LifeSupport_Size2_Class2", + "cost": 3619, + "sku": null + }, + "128064148": { + "id": 128064148, + "category": "module", + "name": "Int_LifeSupport_Size3_Class1", + "cost": 4053, + "sku": null + }, + "128064143": { + "id": 128064143, + "category": "module", + "name": "Int_LifeSupport_Size2_Class1", + "cost": 1448, + "sku": null + }, + "128064138": { + "id": 128064138, + "category": "module", + "name": "Int_LifeSupport_Size1_Class1", + "cost": 517, + "sku": null + }, + "128667605": { + "id": 128667605, + "category": "module", + "name": "Int_Repairer_Size8_Class1", + "cost": 612220, + "sku": null + }, + "128667611": { + "id": 128667611, + "category": "module", + "name": "Int_Repairer_Size6_Class2", + "cost": 566870, + "sku": null + }, + "128667604": { + "id": 128667604, + "category": "module", + "name": "Int_Repairer_Size7_Class1", + "cost": 340122, + "sku": null + }, + "128667610": { + "id": 128667610, + "category": "module", + "name": "Int_Repairer_Size5_Class2", + "cost": 314928, + "sku": null + }, + "128667616": { + "id": 128667616, + "category": "module", + "name": "Int_Repairer_Size3_Class3", + "cost": 291600, + "sku": null + }, + "128667623": { + "id": 128667623, + "category": "module", + "name": "Int_Repairer_Size2_Class4", + "cost": 486000, + "sku": null + }, + "128667615": { + "id": 128667615, + "category": "module", + "name": "Int_Repairer_Size2_Class3", + "cost": 162000, + "sku": null + }, + "128667609": { + "id": 128667609, + "category": "module", + "name": "Int_Repairer_Size4_Class2", + "cost": 174960, + "sku": null + }, + "128667603": { + "id": 128667603, + "category": "module", + "name": "Int_Repairer_Size6_Class1", + "cost": 188957, + "sku": null + }, + "128667602": { + "id": 128667602, + "category": "module", + "name": "Int_Repairer_Size5_Class1", + "cost": 104976, + "sku": null + }, + "128667608": { + "id": 128667608, + "category": "module", + "name": "Int_Repairer_Size3_Class2", + "cost": 97200, + "sku": null + }, + "128667614": { + "id": 128667614, + "category": "module", + "name": "Int_Repairer_Size1_Class3", + "cost": 90000, + "sku": null + }, + "128667601": { + "id": 128667601, + "category": "module", + "name": "Int_Repairer_Size4_Class1", + "cost": 58320, + "sku": null + }, + "128064076": { + "id": 128064076, + "category": "module", + "name": "Int_Engine_Size3_Class4", + "cost": 169304, + "sku": null + }, + "128064071": { + "id": 128064071, + "category": "module", + "name": "Int_Engine_Size2_Class4", + "cost": 53408, + "sku": null + }, + "128064070": { + "id": 128064070, + "category": "module", + "name": "Int_Engine_Size2_Class3", + "cost": 17803, + "sku": null + }, + "128064074": { + "id": 128064074, + "category": "module", + "name": "Int_Engine_Size3_Class2", + "cost": 18812, + "sku": null + }, + "128064069": { + "id": 128064069, + "category": "module", + "name": "Int_Engine_Size2_Class2", + "cost": 5934, + "sku": null + }, + "128064073": { + "id": 128064073, + "category": "module", + "name": "Int_Engine_Size3_Class1", + "cost": 6271, + "sku": null + }, + "128064068": { + "id": 128064068, + "category": "module", + "name": "Int_Engine_Size2_Class1", + "cost": 1978, + "sku": null + }, + "128064337": { + "id": 128064337, + "category": "module", + "name": "Int_ShieldCellBank_Size8_Class5", + "cost": 27249391, + "sku": null + }, + "128064331": { + "id": 128064331, + "category": "module", + "name": "Int_ShieldCellBank_Size7_Class4", + "cost": 3892770, + "sku": null + }, + "128064335": { + "id": 128064335, + "category": "module", + "name": "Int_ShieldCellBank_Size8_Class3", + "cost": 4359903, + "sku": null + }, + "128064330": { + "id": 128064330, + "category": "module", + "name": "Int_ShieldCellBank_Size7_Class3", + "cost": 1557108, + "sku": null + }, + "128064334": { + "id": 128064334, + "category": "module", + "name": "Int_ShieldCellBank_Size8_Class2", + "cost": 1743961, + "sku": null + }, + "128064329": { + "id": 128064329, + "category": "module", + "name": "Int_ShieldCellBank_Size7_Class2", + "cost": 622843, + "sku": null + }, + "128064333": { + "id": 128064333, + "category": "module", + "name": "Int_ShieldCellBank_Size8_Class1", + "cost": 697584, + "sku": null + }, + "128064328": { + "id": 128064328, + "category": "module", + "name": "Int_ShieldCellBank_Size7_Class1", + "cost": 249137, + "sku": null + }, + "128064177": { + "id": 128064177, + "category": "module", + "name": "Int_LifeSupport_Size8_Class5", + "cost": 27249391, + "sku": null + }, + "128064172": { + "id": 128064172, + "category": "module", + "name": "Int_LifeSupport_Size7_Class5", + "cost": 9731925, + "sku": null + }, + "128064171": { + "id": 128064171, + "category": "module", + "name": "Int_LifeSupport_Size7_Class4", + "cost": 3892770, + "sku": null + }, + "128064175": { + "id": 128064175, + "category": "module", + "name": "Int_LifeSupport_Size8_Class3", + "cost": 4359903, + "sku": null + }, + "128064170": { + "id": 128064170, + "category": "module", + "name": "Int_LifeSupport_Size7_Class3", + "cost": 1557108, + "sku": null + }, + "128064174": { + "id": 128064174, + "category": "module", + "name": "Int_LifeSupport_Size8_Class2", + "cost": 1743961, + "sku": null + }, + "128064169": { + "id": 128064169, + "category": "module", + "name": "Int_LifeSupport_Size7_Class2", + "cost": 622843, + "sku": null + }, + "128064173": { + "id": 128064173, + "category": "module", + "name": "Int_LifeSupport_Size8_Class1", + "cost": 697584, + "sku": null + }, + "128064168": { + "id": 128064168, + "category": "module", + "name": "Int_LifeSupport_Size7_Class1", + "cost": 249137, + "sku": null + }, + "128066551": { + "id": 128066551, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size7_Class5", + "cost": 6998400, + "sku": null + }, + "128066545": { + "id": 128066545, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size5_Class4", + "cost": 388800, + "sku": null + }, + "128066549": { + "id": 128066549, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size7_Class3", + "cost": 1749600, + "sku": null + }, + "128066548": { + "id": 128066548, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size7_Class2", + "cost": 874800, + "sku": null + }, + "128066547": { + "id": 128066547, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size7_Class1", + "cost": 437400, + "sku": null + }, + "128066543": { + "id": 128066543, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size5_Class2", + "cost": 97200, + "sku": null + }, + "128066542": { + "id": 128066542, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size5_Class1", + "cost": 48600, + "sku": null + }, + "128064271": { + "id": 128064271, + "category": "module", + "name": "Int_ShieldGenerator_Size3_Class4", + "cost": 169304, + "sku": null + }, + "128064266": { + "id": 128064266, + "category": "module", + "name": "Int_ShieldGenerator_Size2_Class4", + "cost": 53408, + "sku": null + }, + "128064270": { + "id": 128064270, + "category": "module", + "name": "Int_ShieldGenerator_Size3_Class3", + "cost": 56435, + "sku": null + }, + "128064265": { + "id": 128064265, + "category": "module", + "name": "Int_ShieldGenerator_Size2_Class3", + "cost": 17803, + "sku": null + }, + "128064269": { + "id": 128064269, + "category": "module", + "name": "Int_ShieldGenerator_Size3_Class2", + "cost": 18812, + "sku": null + }, + "128064264": { + "id": 128064264, + "category": "module", + "name": "Int_ShieldGenerator_Size2_Class2", + "cost": 5934, + "sku": null + }, + "128064268": { + "id": 128064268, + "category": "module", + "name": "Int_ShieldGenerator_Size3_Class1", + "cost": 6271, + "sku": null + }, + "128671252": { + "id": 128671252, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size1_Class4", + "cost": 4800, + "sku": null + }, + "128671264": { + "id": 128671264, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size7_Class1", + "cost": 437400, + "sku": null + }, + "128671260": { + "id": 128671260, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size5_Class2", + "cost": 97200, + "sku": null + }, + "128671256": { + "id": 128671256, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size3_Class3", + "cost": 21600, + "sku": null + }, + "128671251": { + "id": 128671251, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size1_Class3", + "cost": 2400, + "sku": null + }, + "128671259": { + "id": 128671259, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size5_Class1", + "cost": 48600, + "sku": null + }, + "128671255": { + "id": 128671255, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size3_Class2", + "cost": 10800, + "sku": null + }, + "128671250": { + "id": 128671250, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size1_Class2", + "cost": 1200, + "sku": null + }, + "128671254": { + "id": 128671254, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size3_Class1", + "cost": 5400, + "sku": null + }, + "128671249": { + "id": 128671249, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size1_Class1", + "cost": 600, + "sku": null + }, + "128064067": { + "id": 128064067, + "category": "module", + "name": "Int_Powerplant_Size8_Class5", + "cost": 162586486, + "sku": null + }, + "128064062": { + "id": 128064062, + "category": "module", + "name": "Int_Powerplant_Size7_Class5", + "cost": 51289112, + "sku": null + }, + "128064066": { + "id": 128064066, + "category": "module", + "name": "Int_Powerplant_Size8_Class4", + "cost": 54195495, + "sku": null + }, + "128064065": { + "id": 128064065, + "category": "module", + "name": "Int_Powerplant_Size8_Class3", + "cost": 18065165, + "sku": null + }, + "128064060": { + "id": 128064060, + "category": "module", + "name": "Int_Powerplant_Size7_Class3", + "cost": 5698790, + "sku": null + }, + "128064064": { + "id": 128064064, + "category": "module", + "name": "Int_Powerplant_Size8_Class2", + "cost": 6021722, + "sku": null + }, + "128064059": { + "id": 128064059, + "category": "module", + "name": "Int_Powerplant_Size7_Class2", + "cost": 1899597, + "sku": null + }, + "128064063": { + "id": 128064063, + "category": "module", + "name": "Int_Powerplant_Size8_Class1", + "cost": 2007241, + "sku": null + }, + "128064058": { + "id": 128064058, + "category": "module", + "name": "Int_Powerplant_Size7_Class1", + "cost": 633199, + "sku": null + }, + "128064097": { + "id": 128064097, + "category": "module", + "name": "Int_Engine_Size7_Class5", + "cost": 51289112, + "sku": null + }, + "128064101": { + "id": 128064101, + "category": "module", + "name": "Int_Engine_Size8_Class4", + "cost": 54195495, + "sku": null + }, + "128064096": { + "id": 128064096, + "category": "module", + "name": "Int_Engine_Size7_Class4", + "cost": 17096371, + "sku": null + }, + "128064100": { + "id": 128064100, + "category": "module", + "name": "Int_Engine_Size8_Class3", + "cost": 18065165, + "sku": null + }, + "128064095": { + "id": 128064095, + "category": "module", + "name": "Int_Engine_Size7_Class3", + "cost": 5698790, + "sku": null + }, + "128064099": { + "id": 128064099, + "category": "module", + "name": "Int_Engine_Size8_Class2", + "cost": 6021722, + "sku": null + }, + "128064094": { + "id": 128064094, + "category": "module", + "name": "Int_Engine_Size7_Class2", + "cost": 1899597, + "sku": null + }, + "128064098": { + "id": 128064098, + "category": "module", + "name": "Int_Engine_Size8_Class1", + "cost": 2007241, + "sku": null + }, + "128064093": { + "id": 128064093, + "category": "module", + "name": "Int_Engine_Size7_Class1", + "cost": 633199, + "sku": null + }, + "128064136": { + "id": 128064136, + "category": "module", + "name": "Int_Hyperdrive_Size8_Class4", + "cost": 54195495, + "sku": null + }, + "128064135": { + "id": 128064135, + "category": "module", + "name": "Int_Hyperdrive_Size8_Class3", + "cost": 18065165, + "sku": null + }, + "128064130": { + "id": 128064130, + "category": "module", + "name": "Int_Hyperdrive_Size7_Class3", + "cost": 5698790, + "sku": null + }, + "128064134": { + "id": 128064134, + "category": "module", + "name": "Int_Hyperdrive_Size8_Class2", + "cost": 6021722, + "sku": null + }, + "128064129": { + "id": 128064129, + "category": "module", + "name": "Int_Hyperdrive_Size7_Class2", + "cost": 1899597, + "sku": null + }, + "128064133": { + "id": 128064133, + "category": "module", + "name": "Int_Hyperdrive_Size8_Class1", + "cost": 2007241, + "sku": null + }, + "128064128": { + "id": 128064128, + "category": "module", + "name": "Int_Hyperdrive_Size7_Class1", + "cost": 633199, + "sku": null + }, + "128064242": { + "id": 128064242, + "category": "module", + "name": "Int_Sensors_Size5_Class5", + "cost": 1241317, + "sku": null + }, + "128064237": { + "id": 128064237, + "category": "module", + "name": "Int_Sensors_Size4_Class5", + "cost": 443328, + "sku": null + }, + "128064246": { + "id": 128064246, + "category": "module", + "name": "Int_Sensors_Size6_Class4", + "cost": 1390275, + "sku": null + }, + "128064241": { + "id": 128064241, + "category": "module", + "name": "Int_Sensors_Size5_Class4", + "cost": 496527, + "sku": null + }, + "128064236": { + "id": 128064236, + "category": "module", + "name": "Int_Sensors_Size4_Class4", + "cost": 177331, + "sku": null + }, + "128064245": { + "id": 128064245, + "category": "module", + "name": "Int_Sensors_Size6_Class3", + "cost": 556110, + "sku": null + }, + "128064244": { + "id": 128064244, + "category": "module", + "name": "Int_Sensors_Size6_Class2", + "cost": 222444, + "sku": null + }, + "128064235": { + "id": 128064235, + "category": "module", + "name": "Int_Sensors_Size4_Class3", + "cost": 70932, + "sku": null + }, + "128671262": { + "id": 128671262, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size5_Class4", + "cost": 388800, + "sku": null + }, + "128671257": { + "id": 128671257, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size3_Class4", + "cost": 43200, + "sku": null + }, + "128671265": { + "id": 128671265, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size7_Class2", + "cost": 874800, + "sku": null + }, + "128671261": { + "id": 128671261, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size5_Class3", + "cost": 194400, + "sku": null + }, + "128064292": { + "id": 128064292, + "category": "module", + "name": "Int_ShieldGenerator_Size7_Class5", + "cost": 51289112, + "sku": null + }, + "128064291": { + "id": 128064291, + "category": "module", + "name": "Int_ShieldGenerator_Size7_Class4", + "cost": 17096371, + "sku": null + }, + "128064295": { + "id": 128064295, + "category": "module", + "name": "Int_ShieldGenerator_Size8_Class3", + "cost": 18065165, + "sku": null + }, + "128064294": { + "id": 128064294, + "category": "module", + "name": "Int_ShieldGenerator_Size8_Class2", + "cost": 6021722, + "sku": null + }, + "128064289": { + "id": 128064289, + "category": "module", + "name": "Int_ShieldGenerator_Size7_Class2", + "cost": 1899597, + "sku": null + }, + "128064293": { + "id": 128064293, + "category": "module", + "name": "Int_ShieldGenerator_Size8_Class1", + "cost": 2007241, + "sku": null + }, + "128064288": { + "id": 128064288, + "category": "module", + "name": "Int_ShieldGenerator_Size7_Class1", + "cost": 633199, + "sku": null + }, + "128064232": { + "id": 128064232, + "category": "module", + "name": "Int_Sensors_Size3_Class5", + "cost": 158331, + "sku": null + }, + "128064222": { + "id": 128064222, + "category": "module", + "name": "Int_Sensors_Size1_Class5", + "cost": 20195, + "sku": null + }, + "128064231": { + "id": 128064231, + "category": "module", + "name": "Int_Sensors_Size3_Class4", + "cost": 63333, + "sku": null + }, + "128064221": { + "id": 128064221, + "category": "module", + "name": "Int_Sensors_Size1_Class4", + "cost": 8078, + "sku": null + }, + "128064226": { + "id": 128064226, + "category": "module", + "name": "Int_Sensors_Size2_Class4", + "cost": 22619, + "sku": null + }, + "128064230": { + "id": 128064230, + "category": "module", + "name": "Int_Sensors_Size3_Class3", + "cost": 25333, + "sku": null + }, + "128064225": { + "id": 128064225, + "category": "module", + "name": "Int_Sensors_Size2_Class3", + "cost": 9048, + "sku": null + }, + "128666681": { + "id": 128666681, + "category": "module", + "name": "Int_FuelScoop_Size6_Class5", + "cost": 28763610, + "sku": null + }, + "128666673": { + "id": 128666673, + "category": "module", + "name": "Int_FuelScoop_Size6_Class4", + "cost": 7190903, + "sku": null + }, + "128666665": { + "id": 128666665, + "category": "module", + "name": "Int_FuelScoop_Size6_Class3", + "cost": 1797726, + "sku": null + }, + "128666672": { + "id": 128666672, + "category": "module", + "name": "Int_FuelScoop_Size5_Class4", + "cost": 2268424, + "sku": null + }, + "128666679": { + "id": 128666679, + "category": "module", + "name": "Int_FuelScoop_Size4_Class5", + "cost": 2862364, + "sku": null + }, + "128666671": { + "id": 128666671, + "category": "module", + "name": "Int_FuelScoop_Size4_Class4", + "cost": 715591, + "sku": null + }, + "128064327": { + "id": 128064327, + "category": "module", + "name": "Int_ShieldCellBank_Size6_Class5", + "cost": 3475688, + "sku": null + }, + "128064317": { + "id": 128064317, + "category": "module", + "name": "Int_ShieldCellBank_Size4_Class5", + "cost": 443328, + "sku": null + }, + "128064326": { + "id": 128064326, + "category": "module", + "name": "Int_ShieldCellBank_Size6_Class4", + "cost": 1390275, + "sku": null + }, + "128064321": { + "id": 128064321, + "category": "module", + "name": "Int_ShieldCellBank_Size5_Class4", + "cost": 496527, + "sku": null + }, + "128064316": { + "id": 128064316, + "category": "module", + "name": "Int_ShieldCellBank_Size4_Class4", + "cost": 177331, + "sku": null + }, + "128064324": { + "id": 128064324, + "category": "module", + "name": "Int_ShieldCellBank_Size6_Class2", + "cost": 222444, + "sku": null + }, + "128668546": { + "id": 128668546, + "category": "module", + "name": "Int_HullReinforcement_Size5_Class2", + "cost": 450000, + "sku": null + }, + "128668544": { + "id": 128668544, + "category": "module", + "name": "Int_HullReinforcement_Size4_Class2", + "cost": 195000, + "sku": null + }, + "128668542": { + "id": 128668542, + "category": "module", + "name": "Int_HullReinforcement_Size3_Class2", + "cost": 84000, + "sku": null + }, + "128668540": { + "id": 128668540, + "category": "module", + "name": "Int_HullReinforcement_Size2_Class2", + "cost": 36000, + "sku": null + }, + "128671247": { + "id": 128671247, + "category": "module", + "name": "Int_DroneControl_Collection_Size7_Class4", + "cost": 3499200, + "sku": null + }, + "128671242": { + "id": 128671242, + "category": "module", + "name": "Int_DroneControl_Collection_Size5_Class4", + "cost": 388800, + "sku": null + }, + "128671246": { + "id": 128671246, + "category": "module", + "name": "Int_DroneControl_Collection_Size7_Class3", + "cost": 1749600, + "sku": null + }, + "128671237": { + "id": 128671237, + "category": "module", + "name": "Int_DroneControl_Collection_Size3_Class4", + "cost": 43200, + "sku": null + }, + "128671245": { + "id": 128671245, + "category": "module", + "name": "Int_DroneControl_Collection_Size7_Class2", + "cost": 874800, + "sku": null + }, + "128064052": { + "id": 128064052, + "category": "module", + "name": "Int_Powerplant_Size5_Class5", + "cost": 5103953, + "sku": null + }, + "128064047": { + "id": 128064047, + "category": "module", + "name": "Int_Powerplant_Size4_Class5", + "cost": 1610080, + "sku": null + }, + "128064051": { + "id": 128064051, + "category": "module", + "name": "Int_Powerplant_Size5_Class4", + "cost": 1701318, + "sku": null + }, + "128064055": { + "id": 128064055, + "category": "module", + "name": "Int_Powerplant_Size6_Class3", + "cost": 1797726, + "sku": null + }, + "128064162": { + "id": 128064162, + "category": "module", + "name": "Int_LifeSupport_Size5_Class5", + "cost": 1241317, + "sku": null + }, + "128064166": { + "id": 128064166, + "category": "module", + "name": "Int_LifeSupport_Size6_Class4", + "cost": 1390275, + "sku": null + }, + "128064161": { + "id": 128064161, + "category": "module", + "name": "Int_LifeSupport_Size5_Class4", + "cost": 496527, + "sku": null + }, + "128668536": { + "id": 128668536, + "category": "module", + "name": "Hpt_ShieldBooster_Size0_Class5", + "cost": 281000, + "sku": null + }, + "128668535": { + "id": 128668535, + "category": "module", + "name": "Hpt_ShieldBooster_Size0_Class4", + "cost": 122000, + "sku": null + }, + "128668534": { + "id": 128668534, + "category": "module", + "name": "Hpt_ShieldBooster_Size0_Class3", + "cost": 53000, + "sku": null + }, + "128668545": { + "id": 128668545, + "category": "module", + "name": "Int_HullReinforcement_Size5_Class1", + "cost": 150000, + "sku": null + }, + "128668543": { + "id": 128668543, + "category": "module", + "name": "Int_HullReinforcement_Size4_Class1", + "cost": 65000, + "sku": null + }, + "128064087": { + "id": 128064087, + "category": "module", + "name": "Int_Engine_Size5_Class5", + "cost": 5103953, + "sku": null + }, + "128667727": { + "id": 128667727, + "category": "paintjob", + "name": "paintjob_CobraMkiii_Default_52", + "cost": 0, + "sku": null + }, + "128667729": { + "id": 128667729, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Faction1_01", + "cost": 0, + "sku": null + }, + "128667730": { + "id": 128667730, + "category": "paintjob", + "name": "PaintJob_Eagle_Faction1_01", + "cost": 0, + "sku": null + }, + "128667731": { + "id": 128667731, + "category": "paintjob", + "name": "PaintJob_FedDropship_Faction1_01", + "cost": 0, + "sku": null + }, + "128667732": { + "id": 128667732, + "category": "paintjob", + "name": "PaintJob_SideWinder_Faction1_01", + "cost": 0, + "sku": null + }, + "128667733": { + "id": 128667733, + "category": "paintjob", + "name": "PaintJob_Viper_Faction1_01", + "cost": 0, + "sku": null + }, + "128667734": { + "id": 128667734, + "category": "paintjob", + "name": "PaintJob_Python_Faction1_01", + "cost": 0, + "sku": null + }, + "128066428": { + "id": 128066428, + "category": "paintjob", + "name": "paintjob_cobramkiii_wireframe_01", + "cost": 0, + "sku": null + }, + "128667638": { + "id": 128667638, + "category": "paintjob", + "name": "PaintJob_Sidewinder_Merc", + "cost": 0, + "sku": null + }, + "128667639": { + "id": 128667639, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Merc", + "cost": 0, + "sku": null + }, + "128066405": { + "id": 128066405, + "category": "paintjob", + "name": "paintjob_eagle_stripe1_02", + "cost": 0, + "sku": null + }, + "128066406": { + "id": 128066406, + "category": "paintjob", + "name": "paintjob_eagle_doublestripe_01", + "cost": 0, + "sku": null + }, + "128066416": { + "id": 128066416, + "category": "paintjob", + "name": "paintjob_eagle_thirds_01", + "cost": 0, + "sku": null + }, + "128066419": { + "id": 128066419, + "category": "paintjob", + "name": "paintjob_eagle_stripe1_03", + "cost": 0, + "sku": null + }, + "128668019": { + "id": 128668019, + "category": "paintjob", + "name": "PaintJob_Eagle_Crimson", + "cost": 0, + "sku": null + }, + "128066420": { + "id": 128066420, + "category": "paintjob", + "name": "paintjob_eagle_thirds_02", + "cost": 0, + "sku": null + }, + "128066430": { + "id": 128066430, + "category": "paintjob", + "name": "paintjob_eagle_stripe1_01", + "cost": 0, + "sku": null + }, + "128066436": { + "id": 128066436, + "category": "paintjob", + "name": "paintjob_eagle_camo_03", + "cost": 0, + "sku": null + }, + "128066437": { + "id": 128066437, + "category": "paintjob", + "name": "paintjob_eagle_thirds_03", + "cost": 0, + "sku": null + }, + "128066441": { + "id": 128066441, + "category": "paintjob", + "name": "paintjob_eagle_camo_02", + "cost": 0, + "sku": null + }, + "128066449": { + "id": 128066449, + "category": "paintjob", + "name": "paintjob_eagle_doublestripe_02", + "cost": 0, + "sku": null + }, + "128066453": { + "id": 128066453, + "category": "paintjob", + "name": "paintjob_eagle_doublestripe_03", + "cost": 0, + "sku": null + }, + "128066456": { + "id": 128066456, + "category": "paintjob", + "name": "paintjob_eagle_camo_01", + "cost": 0, + "sku": null + }, + "128066404": { + "id": 128066404, + "category": "paintjob", + "name": "paintjob_sidewinder_default_02", + "cost": 0, + "sku": null + }, + "128066408": { + "id": 128066408, + "category": "paintjob", + "name": "paintjob_sidewinder_default_03", + "cost": 0, + "sku": null + }, + "128066414": { + "id": 128066414, + "category": "paintjob", + "name": "paintjob_sidewinder_doublestripe_08", + "cost": 0, + "sku": null + }, + "128066423": { + "id": 128066423, + "category": "paintjob", + "name": "paintjob_sidewinder_doublestripe_05", + "cost": 0, + "sku": null + }, + "128066431": { + "id": 128066431, + "category": "paintjob", + "name": "paintjob_sidewinder_thirds_07", + "cost": 0, + "sku": null + }, + "128066432": { + "id": 128066432, + "category": "paintjob", + "name": "paintjob_sidewinder_thirds_01", + "cost": 0, + "sku": null + }, + "128066433": { + "id": 128066433, + "category": "paintjob", + "name": "paintjob_sidewinder_doublestripe_07", + "cost": 0, + "sku": null + }, + "128066440": { + "id": 128066440, + "category": "paintjob", + "name": "paintjob_sidewinder_camo_01", + "cost": 0, + "sku": null + }, + "128066444": { + "id": 128066444, + "category": "paintjob", + "name": "paintjob_sidewinder_thirds_06", + "cost": 0, + "sku": null + }, + "128066447": { + "id": 128066447, + "category": "paintjob", + "name": "paintjob_sidewinder_camo_03", + "cost": 0, + "sku": null + }, + "128066448": { + "id": 128066448, + "category": "paintjob", + "name": "paintjob_sidewinder_default_04", + "cost": 0, + "sku": null + }, + "128066454": { + "id": 128066454, + "category": "paintjob", + "name": "paintjob_sidewinder_camo_02", + "cost": 0, + "sku": null + }, + "128667667": { + "id": 128667667, + "category": "paintjob", + "name": "PaintJob_Viper_Merc", + "cost": 0, + "sku": null + }, + "128666726": { + "id": 128666726, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Camo1_02", + "cost": 0, + "sku": null + }, + "128066407": { + "id": 128066407, + "category": "paintjob", + "name": "paintjob_viper_flag_switzerland_01", + "cost": 0, + "sku": null + }, + "128666727": { + "id": 128666727, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Camo2_03", + "cost": 0, + "sku": null + }, + "128666728": { + "id": 128666728, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Stripe1_02", + "cost": 0, + "sku": null + }, + "128066409": { + "id": 128066409, + "category": "paintjob", + "name": "paintjob_viper_flag_belgium_01", + "cost": 0, + "sku": null + }, + "128666729": { + "id": 128666729, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Stripe1_03", + "cost": 0, + "sku": null + }, + "128066410": { + "id": 128066410, + "category": "paintjob", + "name": "paintjob_viper_flag_australia_01", + "cost": 0, + "sku": null + }, + "128666730": { + "id": 128666730, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Stripe2_02", + "cost": 0, + "sku": null + }, + "128066411": { + "id": 128066411, + "category": "paintjob", + "name": "paintjob_viper_default_01", + "cost": 0, + "sku": null + }, + "128666731": { + "id": 128666731, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Stripe2_03", + "cost": 0, + "sku": null + }, + "128066412": { + "id": 128066412, + "category": "paintjob", + "name": "paintjob_viper_stripe2_02", + "cost": 0, + "sku": null + }, + "128666732": { + "id": 128666732, + "category": "paintjob", + "name": "PaintJob_Hauler_Doublestripe_01", + "cost": 0, + "sku": null + }, + "128066413": { + "id": 128066413, + "category": "paintjob", + "name": "paintjob_viper_flag_austria_01", + "cost": 0, + "sku": null + }, + "128666733": { + "id": 128666733, + "category": "paintjob", + "name": "PaintJob_Hauler_Doublestripe_02", + "cost": 0, + "sku": null + }, + "128666734": { + "id": 128666734, + "category": "paintjob", + "name": "PaintJob_Hauler_Doublestripe_03", + "cost": 0, + "sku": null + }, + "128066415": { + "id": 128066415, + "category": "paintjob", + "name": "paintjob_viper_stripe1_01", + "cost": 0, + "sku": null + }, + "128666735": { + "id": 128666735, + "category": "paintjob", + "name": "PaintJob_Hauler_Stripe1_01", + "cost": 0, + "sku": null + }, + "128666736": { + "id": 128666736, + "category": "paintjob", + "name": "PaintJob_Hauler_Stripe1_02", + "cost": 0, + "sku": null + }, + "128066417": { + "id": 128066417, + "category": "paintjob", + "name": "paintjob_viper_flag_spain_01", + "cost": 0, + "sku": null + }, + "128666737": { + "id": 128666737, + "category": "paintjob", + "name": "PaintJob_Hauler_Stripe1_03", + "cost": 0, + "sku": null + }, + "128066418": { + "id": 128066418, + "category": "paintjob", + "name": "paintjob_viper_stripe1_02", + "cost": 0, + "sku": null + }, + "128666738": { + "id": 128666738, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Hotrod_01", + "cost": 0, + "sku": null + }, + "128666739": { + "id": 128666739, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Hotrod_03", + "cost": 0, + "sku": null + }, + "128666740": { + "id": 128666740, + "category": "paintjob", + "name": "PaintJob_Eagle_Hotrod_01", + "cost": 0, + "sku": null + }, + "128066421": { + "id": 128066421, + "category": "paintjob", + "name": "paintjob_viper_flag_denmark_01", + "cost": 0, + "sku": null + }, + "128666741": { + "id": 128666741, + "category": "paintjob", + "name": "PaintJob_Eagle_Hotrod_03", + "cost": 0, + "sku": null + }, + "128066422": { + "id": 128066422, + "category": "paintjob", + "name": "paintjob_viper_police_federation_01", + "cost": 0, + "sku": null + }, + "128666742": { + "id": 128666742, + "category": "paintjob", + "name": "PaintJob_Sidewinder_Hotrod_01", + "cost": 0, + "sku": null + }, + "128666743": { + "id": 128666743, + "category": "paintjob", + "name": "PaintJob_Sidewinder_Hotrod_03", + "cost": 0, + "sku": null + }, + "128066424": { + "id": 128066424, + "category": "paintjob", + "name": "paintjob_viper_flag_newzealand_01", + "cost": 0, + "sku": null + }, + "128666744": { + "id": 128666744, + "category": "paintjob", + "name": "PaintJob_Viper_Stripe2_51", + "cost": 0, + "sku": null + }, + "128066425": { + "id": 128066425, + "category": "paintjob", + "name": "paintjob_viper_flag_italy_01", + "cost": 0, + "sku": null + }, + "128666745": { + "id": 128666745, + "category": "paintjob", + "name": "PaintJob_Viper_Stripe2_52", + "cost": 0, + "sku": null + }, + "128066426": { + "id": 128066426, + "category": "paintjob", + "name": "paintjob_viper_stripe2_04", + "cost": 0, + "sku": null + }, + "128066427": { + "id": 128066427, + "category": "paintjob", + "name": "paintjob_viper_police_independent_01", + "cost": 0, + "sku": null + }, + "128066429": { + "id": 128066429, + "category": "paintjob", + "name": "paintjob_viper_default_03", + "cost": 0, + "sku": null + }, + "128066434": { + "id": 128066434, + "category": "paintjob", + "name": "paintjob_viper_flag_uk_01", + "cost": 0, + "sku": null + }, + "128066435": { + "id": 128066435, + "category": "paintjob", + "name": "paintjob_viper_flag_germany_01", + "cost": 0, + "sku": null + }, + "128066438": { + "id": 128066438, + "category": "paintjob", + "name": "paintjob_viper_flag_netherlands_01", + "cost": 0, + "sku": null + }, + "128066439": { + "id": 128066439, + "category": "paintjob", + "name": "paintjob_viper_flag_usa_01", + "cost": 0, + "sku": null + }, + "128066442": { + "id": 128066442, + "category": "paintjob", + "name": "paintjob_viper_flag_russia_01", + "cost": 0, + "sku": null + }, + "128066443": { + "id": 128066443, + "category": "paintjob", + "name": "paintjob_viper_flag_canada_01", + "cost": 0, + "sku": null + }, + "128066445": { + "id": 128066445, + "category": "paintjob", + "name": "paintjob_viper_flag_sweden_01", + "cost": 0, + "sku": null + }, + "128066446": { + "id": 128066446, + "category": "paintjob", + "name": "paintjob_viper_flag_poland_01", + "cost": 0, + "sku": null + }, + "128066450": { + "id": 128066450, + "category": "paintjob", + "name": "paintjob_viper_flag_finland_01", + "cost": 0, + "sku": null + }, + "128066451": { + "id": 128066451, + "category": "paintjob", + "name": "paintjob_viper_flag_france_01", + "cost": 0, + "sku": null + }, + "128066452": { + "id": 128066452, + "category": "paintjob", + "name": "paintjob_viper_police_empire_01", + "cost": 0, + "sku": null + }, + "128066455": { + "id": 128066455, + "category": "paintjob", + "name": "paintjob_viper_flag_norway_01", + "cost": 0, + "sku": null + }, + "128667720": { + "id": 128667720, + "category": "paintjob", + "name": "PaintJob_Asp_Default_02", + "cost": 0, + "sku": null + }, + "128667721": { + "id": 128667721, + "category": "paintjob", + "name": "PaintJob_Asp_Default_03", + "cost": 0, + "sku": null + }, + "128667722": { + "id": 128667722, + "category": "paintjob", + "name": "PaintJob_Asp_Default_04", + "cost": 0, + "sku": null + }, + "128667723": { + "id": 128667723, + "category": "paintjob", + "name": "PaintJob_Asp_Faction1_01", + "cost": 0, + "sku": null + }, + "128667724": { + "id": 128667724, + "category": "paintjob", + "name": "PaintJob_Asp_Stripe1_02", + "cost": 0, + "sku": null + }, + "128667725": { + "id": 128667725, + "category": "paintjob", + "name": "PaintJob_Asp_Stripe1_03", + "cost": 0, + "sku": null + }, + "128667726": { + "id": 128667726, + "category": "paintjob", + "name": "PaintJob_Asp_Stripe1_04", + "cost": 0, + "sku": null + }, + "128667655": { + "id": 128667655, + "category": "decal", + "name": "Decal_Skull3", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_MERCENARY_DECAL_1000" + }, + "128667736": { + "id": 128667736, + "category": "decal", + "name": "Decal_Combat_Mostly_Harmless", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_COMBAT_DECAL_1001" + }, + "128667737": { + "id": 128667737, + "category": "decal", + "name": "Decal_Combat_Novice", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_COMBAT_DECAL_1002" + }, + "128667738": { + "id": 128667738, + "category": "decal", + "name": "Decal_Combat_Competent", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_COMBAT_DECAL_1003" + }, + "128667744": { + "id": 128667744, + "category": "decal", + "name": "Decal_Trade_Mostly_Penniless", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_TRADE_DECAL_1001" + }, + "128667745": { + "id": 128667745, + "category": "decal", + "name": "Decal_Trade_Peddler", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_TRADE_DECAL_1002" + }, + "128667746": { + "id": 128667746, + "category": "decal", + "name": "Decal_Trade_Dealer", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_TRADE_DECAL_1003" + }, + "128667747": { + "id": 128667747, + "category": "decal", + "name": "Decal_Trade_Merchant", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_TRADE_DECAL_1004" + }, + "128667752": { + "id": 128667752, + "category": "decal", + "name": "Decal_Explorer_Mostly_Aimless", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_EXPLORE_DECAL_1001" + }, + "128667753": { + "id": 128667753, + "category": "decal", + "name": "Decal_Explorer_Scout", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_EXPLORE_DECAL_1002" + }, + "128667754": { + "id": 128667754, + "category": "decal", + "name": "Decal_Explorer_Surveyor", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_EXPLORE_DECAL_1003" + } + } + }, + "stats": { + "game_time": 847776, + "missions": { + "courier": { + "missionsAccepted": 64, + "furthest": { + "distance": 9.8418152860638, + "origin": 3228189952, + "destination": "3227868416" + }, + "highestEarnings": { + "value": 0, + "distance": 0, + "origin": 0, + "destination": 0, + "faction": 0 + }, + "missionsCompleted": 36, + "creditsEarned": -9119, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 1109, + "faction": "Defence Force of LHS 1541", + "type": "CourierLegal" + }, + { + "value": 1018, + "faction": "Defence Force of LHS 1541", + "type": "CourierLegal" + }, + { + "value": 487, + "faction": "Defence Force of LHS 1541", + "type": "CourierLegal" + } + ] + }, + "deliver": { + "missionsAccepted": 105, + "furthest": { + "distance": 9.8944626243672, + "origin": 3228393472, + "destination": "3228115456" + }, + "highestEarnings": { + "value": 0, + "commodity": 0, + "qty": 0, + "distance": 0, + "origin": 0, + "destination": 0, + "faction": 0 + }, + "missionsCompleted": 98, + "creditsEarned": 1164220, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 1988, + "faction": "Crimson Energy Systems", + "type": "DeliveryLegal" + }, + { + "value": 107316, + "faction": "Gold Netcoms Commodities", + "type": "DeliveryLegal" + }, + { + "value": 65546, + "faction": "Allied LHS 1507 Dominion", + "type": "DeliveryLegal" + } + ] + }, + "collect": { + "missionsAccepted": 175, + "furthest": { + "distance": 0, + "origin": 0, + "destination": 0 + }, + "highestEarnings": { + "value": 0, + "commodity": 0, + "qty": 0, + "distance": 0, + "origin": 0, + "destination": 0, + "faction": 0 + }, + "missionsCompleted": 0, + "creditsEarned": 0, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 22145, + "faction": "Defence Force of LHS 1541", + "type": "Collect" + }, + { + "value": 3420, + "faction": "Defence Force of LHS 1541", + "type": "Collect" + }, + { + "value": 34772, + "faction": "Wolf 1323 Life Corp.", + "type": "Collect" + } + ] + }, + "assassin": { + "highestEarnings": { + "value": 199640, + "origin": "3228064512", + "faction": 0 + }, + "missionsCompleted": 25, + "creditsEarned": 1147873, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 36176, + "faction": "United Euryale First", + "type": "Massacre" + }, + { + "value": 99646, + "faction": "United Euryale First", + "type": "Assassinate" + }, + { + "value": 42589, + "faction": "United Euryale First", + "type": "Assassinate" + } + ], + "missionsAccepted": 52 + }, + "bountyHunter": { + "highestEarnings": { + "value": 0, + "origin": 0, + "faction": 0 + }, + "missionsCompleted": 0, + "creditsEarned": 0, + "missionsFailed": 0, + "latestCompleted": [], + "missionsAccepted": 0 + } + }, + "explore": { + "hyperspaceJumps": 1562, + "totalHyperspaceDistance": 26832.084787718, + "visited": { + "starsystem": [ + "GCRV 4654", + "FK5 2550", + "LHS 1914", + "Siren", + "Geawenki", + "Thiin", + "LP 307-8", + "StKM 1-626", + "BD+30 1423", + "LHS 6103", + "LHS 1814", + "LHS 1794", + "Nandjabinja", + "Susanoo", + "Wong Sher", + "74 k Orionis", + "BD+08 1303", + "Iansan", + "LHS 1857", + "Yin Sector HW-W b1-3", + "Nihursaga", + "Hahgwe", + "Alzirr", + "Toog", + "Yin Sector ZE-A d120", + "Chang Yeh", + "G 108-26", + "HR 2251", + "LHS 1838", + "Breksta", + "Amait", + "Cosi", + "Yggdrajang", + "LTT 17868", + "Yin Sector EQ-Y b2", + "Yin Sector EQ-Y b1", + "Zandu", + "Flech", + "Julanggarri", + "Ross 878", + "Kamchata", + "Tamalhikas", + "Katocudatta", + "Lumbla", + "Tascheter Sector FG-X b1-6", + "Jita Ten", + "71 Orionis", + "Tao Ti", + "LHS 1743", + "LFT 392", + "Ndozins", + "LHS 21", + "Geras", + "G 85-36", + "LP 417-213", + "V1402 Orionis", + "MCC 467", + "Suyarang", + "Chonost", + "Fular", + "LTT 11519", + "Tote", + "Psi Tauri", + "Wolf 1301", + "Tascheter Sector MS-T a3-2", + "Achlys", + "BD+14 831", + "Kungurutii", + "Ross 49", + "Dewikum", + "Yin Sector DQ-Y b1", + "Tascheter Sector FG-X b1-1", + "Tascheter Sector EG-X b1-1", + "Cahuile", + "Tascheter Sector WE-Q a5-1", + "Tascheter Sector DG-O a6-0", + "LP 771-72", + "Kappa Fornacis", + "LP 831-72", + "Zeus", + "Tascheter Sector HM-M a7-2", + "Tascheter Sector BL-O a6-1", + "Tascheter Sector YE-Q a5-0", + "Pachanwen", + "Ranginui", + "LHS 1928", + "LP 605-37", + "Sekhemet", + "Hlocidirus", + "Fionn", + "LHS 1920", + "Tascheter Sector GW-W c1-18", + "LFT 377", + "Kunlun", + "Tascheter Sector HM-M a7-1", + "LTT 1349", + "LFT 179", + "Jibitoq", + "BD-18 394", + "Autahenetsi", + "Ceti Sector AV-Y c17", + "Tetekhe", + "Ceti Sector FW-V b2-5", + "LTT 1141", + "Bandizel", + "Artemis", + "LHS 1409", + "Tascheter Sector EG-Y d106", + "Tascheter Sector BG-O a6-1", + "Tascheter Sector WZ-P a5-1", + "LHS 1573", + "G 100-4", + "V491 Persei", + "Sui Xing", + "Bonde", + "Bhadaba", + "Uchaluroja", + "Manamaya", + "LHS 197", + "Ashandras", + "LTT 11455", + "Al-Qaum", + "Herishep", + "LTT 11503", + "Ross 592", + "Itza", + "Capukanga", + "LHS 1483", + "LP 356-106", + "BD+24 543", + "39 Tauri", + "KP Tauri", + "Wolf 1278", + "Lowne 1", + "Meri", + "Apollo", + "LHS 1516", + "Wolf 1323", + "Marduk", + "LHS 1541", + "Wolf 1325", + "G 95-22", + "LHS 1507", + "Bao Yan Luo", + "Tascheter Sector HH-V b2-5", + "G 173-39", + "G 173-53", + "Theta Persei", + "LHS 1446", + "Lorana", + "Anlave", + "Wolf 46", + "V388 Cassiopeiae", + "Zeessze", + "Eta Cassiopeiae", + "Groombridge 34", + "Ross 248", + "Ross 730", + "Altair", + "Sol", + "Alpha Centauri", + "LHS 18", + "Bonitou", + "LTT 10482", + "Cephei Sector BA-A d103", + "Cephei Sector DQ-Y b4", + "Iota Cassiopeiae", + "Funji", + "T'ienimi", + "HIP 12512", + "Col 285 Sector QT-Q c5-14", + "HIP 10466", + "Col 285 Sector QT-Q c5-9", + "Col 285 Sector BH-J b10-4", + "Col 285 Sector BH-J b10-2", + "Col 285 Sector PT-Q c5-13", + "Col 285 Sector WA-L b9-0", + "HR 567", + "Col 285 Sector MY-Q c5-3", + "Col 285 Sector MY-Q c5-15", + "Undalibaluf", + "Col 285 Sector GY-F b12-4", + "BD+65 1984", + "Col 285 Sector HY-F b12-0", + "HIP 3509", + "Nootkena", + "Inovandar", + "Tegidana", + "BD+44 1040", + "LHS 1765", + "Selniang", + "Skuta", + "Gani", + "Enuma", + "Gkutat", + "Djinbin", + "Col 285 Sector NG-H a26-5", + "Col 285 Sector MA-J a25-4", + "Col 285 Sector SG-H a26-2", + "Col 285 Sector JB-N c7-7", + "Col 285 Sector JB-N c7-4", + "Synuefe XT-D a94-2", + "h2 Puppis", + "Synuefe BP-D a94-1", + "O Puppis", + "Synuefe KB-A a96-2", + "HIP 40430", + "Synuefe WR-H d11-48", + "Synuefe WQ-Z b47-5", + "Gliese 3434", + "Synuefe YK-N c23-14", + "Canopus", + "Synuefe ZK-N c23-22", + "Synuefe BH-Z b47-1", + "HIP 34755", + "HIP 35652", + "HIP 36489", + "47 G. Carinae", + "Synuefe BM-Z b47-8", + "Q Carinae", + "Synuefe DW-L c24-30", + "Synuefe IS-X b48-3", + "Chi Carinae", + "Synuefe HX-X b48-2", + "HIP 40929", + "HIP 42504", + "HIP 42459", + "E Velorum", + "Synuefe JI-W b49-12", + "HIP 42374", + "HR 3503", + "HIP 42823", + "HR 3448", + "HIP 42726", + "Omicron Velorum", + "HIP 42715", + "IC 2391 Sector LI-S b4-10", + "IC 2391 Sector SJ-Q b5-10", + "HIP 43433", + "IC 2391 Sector UJ-Q b5-8", + "IC 2391 Sector VJ-Q b5-1", + "HIP 43015", + "IC 2391 Sector MC-V c2-14", + "Synuefe GL-S b51-9", + "Synuefe LR-Q b52-2", + "V473 Carinae", + "Synuefe JE-E d13-115", + "Synuefe RX-O b53-7", + "Synuefe JE-E d13-94", + "Synuefe WD-N b54-1", + "Tureis", + "Synuefe BK-L b55-4", + "Synuefe CV-E c28-23", + "Synuefe OK-C d14-6", + "HIP 47751", + "HIP 48127", + "Synuefe KM-G b58-4", + "Synuefe XO-L a117-1", + "Synuefe AA-K a118-6", + "Wregoe KZ-S b58-7", + "HR 4091", + "Praea Euq SG-A b1", + "Praea Euq XM-Y b2", + "Praea Euq ZM-Y b1", + "Praea Euq MA-A d153", + "Praea Euq ZR-Y b0", + "Praea Euq CM-Y c9", + "HD 92405", + "Praea Euq FO-V b2-1", + "Praea Euq KU-T b3-5", + "Praea Euq PL-Y d85", + "Praea Euq TG-Q b5-3", + "HD 95633", + "Praea Euq ZM-O b6-0", + "Praea Euq LD-V c2-20", + "Praea Euq UR-W d1-63", + "Praea Euq EY-M b7-4", + "Praea Euq GJ-L b8-1", + "Praea Euq HJ-L b8-4", + "Praea Euq VR-W d1-80", + "Praea Euq RZ-R c4-2", + "Praea Euq JZ-J b9-0", + "Pro Eurl AI-I b10-3", + "Pro Eurl EW-W d1-55", + "Pro Eurl KD-S c4-7", + "Pro Eurl EW-W d1-39", + "HD 98557", + "Pro Eurl XR-I b10-0", + "Pro Eurl AN-I b10-3", + "Pro Eurl PJ-Q c5-12", + "Pro Eurl IC-V d2-40", + "Pro Eurl JC-V d2-35", + "Pro Eurl KZ-E b12-2", + "NGC 3532 Sector ZK-X d1-59", + "Pro Eurl NK-D b13-0", + "Pro Eurl HH-V d2-32", + "Pro Eurl JU-D b13-0", + "HD 100476", + "Pro Eurl LU-D b13-0", + "HD 99573", + "HD 99081", + "Pro Eurl IO-F b12-1", + "NGC 3532 Sector YP-X d1-24", + "NGC 3532 Sector EJ-M b9-1", + "NGC 3532 Sector DC-T c4-9", + "NGC 3532 Sector AL-X d1-30", + "NGC 3532 Sector PF-K b10-0", + "NGC 3532 Sector RA-K b10-1", + "NGC 3532 Sector BL-X d1-48", + "NGC 3532 Sector FR-V d2-53", + "NGC 3532 Sector EI-G b12-2", + "NGC 3532 Sector FI-G b12-0", + "NGC 3532 Sector FI-G b12-4", + "HD 98767", + "NGC 3532 Sector PU-C b14-0", + "NGC 3532 Sector RP-C b14-5", + "HD 98896", + "NGC 3532 Sector WV-A b15-4", + "NGC 3532 Sector YK-N c7-10", + "NGC 3532 Sector ID-X b16-2", + "NGC 3532 Sector LO-V b17-2", + "Pro Eurl BW-K b22-1", + "Pro Eurl AB-L b22-2", + "Pro Eurl OS-U e2-4", + "Pro Eurl CQ-P d5-68", + "Pro Eurl GR-D c12-2", + "Pro Eurl CQ-P d5-27", + "Pro Eurl OI-H b24-3", + "Pro Eurl CQ-P d5-21", + "Pro Eurl MC-J b23-2", + "Pro Eurl DQ-P d5-63", + "Pro Eurl ZJ-R d4-4", + "Pro Eurl NC-J b23-2", + "HD 99218", + "Pro Eurl JR-D c12-12", + "Pro Eurl DQ-P d5-39", + "Pro Eurl ZU-D b26-2", + "Pro Eurl HW-N d6-37", + "Pro Eurl HH-A b28-3", + "Pro Eurl QD-A c14-12", + "Pro Eurl UJ-Y c14-2", + "Pro Eurl LC-M d7-2", + "HD 104214", + "Pro Eurl WK-T b31-2", + "Pro Eurl ZP-W c15-1", + "Pro Eurl KN-P b33-2", + "Pro Eurl GR-U c16-9", + "Pro Eurl MN-P b33-1", + "Pro Eurl TO-N b34-0", + "Pro Eurl WJ-N b34-3", + "Pro Eurl XJ-N b34-6", + "Pro Eurl UD-P b33-0", + "Pro Eurl BF-N b34-4", + "Pro Eurl CF-N b34-1", + "Pro Eurl DF-N b34-2", + "Pro Eurl UD-K d8-47", + "Pro Eurl UD-K d8-85", + "Pro Eurl KG-L b35-3", + "Pro Eurl UD-K d8-73", + "Pro Eurl MG-L b35-5", + "Pro Eurl PB-L b35-1", + "Prua Dryoae UQ-Q a73-3", + "Prua Dryoae CS-O a74-1", + "Prua Dryoae FH-T b37-5", + "HD 101131", + "Prua Dryoae WF-L d9-50", + "Prua Dryoae LN-R b38-3", + "Prua Dryoae PT-P b39-7", + "Prua Dryoae MN-S e4-12", + "Prua Dryoae IJ-C a81-1", + "Prua Dryoae CD-E a80-3", + "Prua Dryoae YH-E a80-0", + "Pro Eurl ZJ-I d9-63", + "Pro Eurl HA-E b39-0", + "Pro Eurl ZJ-I d9-0", + "Pro Eurl HA-E b39-4", + "Pro Eurl ZJ-I d9-3", + "Pro Eurl ZD-G b38-0", + "Pro Eurl XI-G b38-0", + "HD 102728", + "Pro Eurl XI-G b38-1", + "Pro Eurl EK-E b39-4", + "Pro Eurl AK-I d9-55", + "Pro Eurl EA-P c19-3", + "Prua Dryoae LU-A a82-0", + "Prua Dryoae AM-J d10-40", + "Prua Dryoae AM-J d10-53", + "Prua Dryoae AM-J d10-5", + "Prua Dryoae AG-M b41-0", + "Prua Dryoae GM-K b42-1", + "Prua Dryoae HM-K b42-0", + "Prua Dryoae UU-R a86-3", + "Prua Dryoae CM-J d10-3", + "Prua Dryoae HJ-R c21-6", + "Prua Dryoae BV-R a86-5", + "Prua Dryoae DV-R a86-1", + "Prua Dryoae IJ-R c21-9", + "HD 101035", + "Prua Dryoae JJ-R c21-7", + "Swoiphs PB-Q a87-1", + "Swoiphs WH-O a88-5", + "Sifeae JD-V b43-0", + "Swoiphs BI-O a88-2", + "Sifeae LD-V b43-2", + "Sifeae VR-J c22-14", + "Sifeae RJ-T b44-5", + "Sifeae ZK-P e5-0", + "Sifeae UJ-T b44-2", + "Sifeae XU-R b45-3", + "Sifeae YU-R b45-6", + "Sifeae DB-Q b46-2", + "Sifeae EB-Q b46-2", + "Sifeae JH-O b47-5", + "HD 100137", + "Sifeae LH-O b47-3", + "NGC 4463 Sector TT-Z d42", + "NGC 4463 Sector QT-C b2-6", + "NGC 4463 Sector VZ-A b3-3", + "NGC 4463 Sector TT-Z d46", + "NGC 4463 Sector MS-Z c1-16", + "NGC 4463 Sector MS-Z c1-18", + "NGC 4463 Sector YZ-X d1-24", + "NGC 4463 Sector JX-V b5-2", + "NGC 4463 Sector ZZ-X d1-86", + "NGC 4463 Sector ZZ-X d1-82", + "NGC 4463 Sector VE-S b7-1", + "NGC 4463 Sector XZ-R b7-3", + "NGC 4463 Sector ZZ-X d1-89", + "NGC 4463 Sector ZZ-X d1-17", + "NGC 4463 Sector MH-H a16-1", + "NGC 4463 Sector GB-U c4-1", + "NGC 4463 Sector PX-N b9-2", + "NGC 4463 Sector GB-W d2-41", + "NGC 4463 Sector YJ-K b11-0", + "NGC 4463 Sector GB-W d2-37", + "NGC 4463 Sector AF-T a23-3", + "HD 101794", + "NGC 4463 Sector HL-R a24-1", + "NGC 4463 Sector KW-G b13-6", + "NGC 4463 Sector XD-M a27-1", + "NGC 4463 Sector ZD-M a27-2", + "NGC 4463 Sector JQ-I a29-1", + "NGC 4463 Sector MH-U d3-27", + "NGC 4463 Sector XN-D a32-2", + "NGC 4463 Sector DU-B a33-2", + "NGC 4463 Sector NG-Y a34-1", + "NGC 4463 Sector RN-S d4-3", + "NGC 4463 Sector ZS-U a36-3", + "NGC 4463 Sector GZ-S a37-0", + "NGC 4463 Sector OA-R a38-0", + "NGC 4463 Sector SL-P a39-1", + "NGC 4609 Sector JU-Y a5-1", + "NGC 4609 Sector SG-V a7-0", + "NGC 4609 Sector AZ-V b4-0", + "NGC 4609 Sector AK-Z d29", + "NGC 4609 Sector DA-X c2-7", + "NGC 4609 Sector AK-Z d63", + "NGC 4609 Sector AK-Z d17", + "NGC 4609 Sector AK-Z d36", + "NGC 4609 Sector LB-V c3-5", + "NGC 4609 Sector UR-R b6-4", + "NGC 4609 Sector MB-V c3-11", + "NGC 4609 Sector FQ-X d1-64", + "NGC 4609 Sector NB-V c3-9", + "NGC 4609 Sector CY-P b7-4", + "NGC 4609 Sector GQ-X d1-33", + "NGC 4609 Sector FY-P b7-4", + "NGC 4609 Sector GY-P b7-2", + "NGC 4609 Sector QB-V c3-16", + "Aucops TS-O b12-3", + "Blaa Eoq IQ-O b12-2", + "Blaa Eoq OW-M b13-3", + "Blaa Eoq TN-T c6-5", + "Blaa Eoq RH-L b14-4", + "Blaa Eoq UN-T c6-4", + "Blaa Eoq SL-T a30-1", + "Blaa Eoq UL-T a30-1", + "Blaa Eoq XL-T a30-2", + "Blaa Eoq DS-R a31-0", + "Blaa Eoq OU-V d3-3", + "Blaa Eoq MY-P a32-0", + "Blaa Eoq SE-O a33-1", + "Blaa Eoq YK-M a34-2", + "Blaa Eoq AL-M a34-3", + "Blaa Eoq CL-M a34-5", + "Blaa Eoq IR-K a35-0", + "Blaa Eoq QU-V d3-34", + "Blaa Eoq PX-I a36-2", + "Blaa Eoq QU-V d3-38", + "Blaa Eoq RU-V d3-17", + "Blaa Eoq BP-F a38-2", + "Blaa Eoq EP-F a38-3", + "Phylurn AU-Q b18-5", + "Blaa Eoq IP-F a38-4", + "Blaa Eoq LP-F a38-0", + "Blaa Eoq WA-U d4-8", + "Blaa Eoq PP-F a38-2", + "Blaa Eoq RP-F a38-0", + "Blaa Eoq XA-U d4-22", + "HD 99619", + "Blaa Eoq XP-F a38-2", + "Col 240 Sector MX-E a42-1", + "Col 240 Sector HJ-G c11-3", + "Col 240 Sector OX-M b22-1", + "Col 240 Sector PX-M b22-0", + "Col 240 Sector ZD-D a43-3", + "Col 240 Sector YX-E a42-1", + "Col 240 Sector KJ-G c11-4", + "Col 240 Sector DY-E a42-3", + "Col 240 Sector JE-D a43-0", + "Col 240 Sector HY-E a42-1", + "Col 240 Sector JY-E a42-1", + "Col 240 Sector LO-G c11-5", + "Col 240 Sector RJ-Q d5-27", + "Col 240 Sector MO-G c11-10", + "Col 240 Sector SJ-Q d5-51", + "Col 240 Sector SJ-Q d5-46", + "Col 240 Sector ZR-O b21-5", + "Col 240 Sector AS-O b21-3", + "Col 240 Sector OO-G c11-8", + "Col 240 Sector TJ-Q d5-54", + "Col 240 Sector ES-O b21-0", + "Col 240 Sector JY-M b22-0", + "2MASS J11132054-6053363", + "2MASS J11130497-6049452", + "TYC 8959-364-2", + "2MASS J11130472-6047135", + "NGC 3590 MV 4", + "NGC 3590 CLA 15", + "HD 306185", + "2MASS J11123987-6047011", + "NGC 3590 MV 12", + "NGC 3590 Sector UT-R a4-1", + "NGC 3590 Sector BA-A d12", + "Col 240 Sector AB-J b24-0", + "Col 240 Sector GH-H b25-0", + "Col 240 Sector HH-H b25-4", + "Col 240 Sector FW-C c13-7", + "IC 2944 Sector PP-Q b8-0", + "IC 2944 Sector UV-O b9-0", + "IC 2944 Sector VV-O b9-2", + "IC 2944 Sector WV-O b9-0", + "IC 2944 Sector WE-Y d1-26", + "IC 2944 Sector EX-M b10-2", + "IC 2944 Sector FX-M b10-0", + "IC 2944 Sector ER-S c5-0", + "IC 2944 Sector LD-L b11-2", + "IC 2944 Sector SE-J b12-1", + "IC 2944 Sector VP-H b13-0", + "IC 2944 Sector WP-H b13-1", + "IC 2944 Sector KX-Q c6-5", + "IC 2944 Sector CW-F b14-2", + "IC 2944 Sector HR-U d3-13", + "IC 2944 Sector FG-X e1-3", + "IC 2944 Sector QD-P c7-5", + "IC 2944 Sector RO-A b17-0", + "IC 2944 Sector SO-A b17-0", + "IC 2944 Sector TO-A b17-0", + "Statue of Liberty Sector FW-W c1-2", + "Statue of Liberty Sector OY-R b4-1", + "Statue of Liberty Sector LS-T b3-0", + "Statue of Liberty Sector OD-S b4-0", + "Statue of Liberty Sector LX-T b3-2", + "Statue of Liberty Sector DL-Y d25", + "Statue of Liberty Sector FG-Y e5", + "Statue of Liberty Sector PI-S b4-0", + "Statue of Liberty Sector QI-S b4-0", + "Statue of Liberty Sector FW-K a9-1", + "Statue of Liberty Sector IW-K a9-0", + "IC 2944 Sector XH-C a34-0", + "IC 2944 Sector ZH-C a34-0", + "IC 2944 Sector GO-A a35-0", + "IC 2944 Sector GT-A a35-1", + "IC 2944 Sector KO-A a35-1", + "IC 2944 Sector KT-A a35-2", + "IC 2944 Sector MR-U d3-20", + "IC 2944 Sector LI-C a34-0", + "Blua Eoq CI-G a65-0", + "Blua Eoq DL-Y g0", + "Blua Eoq GC-C b33-1", + "Blua Eoq TA-B a68-0", + "Blua Eoq TF-B a68-0", + "Blo Thae QH-U c16-7", + "Blo Thae MV-M b34-2", + "Blo Thae LA-N b34-1", + "NGC 3572 Sector DB-X c1-0", + "NGC 3572 Sector FR-V b2-2", + "NGC 3572 Sector AV-Y c1", + "NGC 3572 Sector EB-X c1-5", + "NGC 3572 Sector IR-V b2-0", + "NGC 3572 Sector FB-X c1-4", + "NGC 3572 Sector YE-A g2", + "NGC 3572 Sector IR-W d1-9", + "NGC 3572 Sector QN-S b4-0", + "Blo Thae BI-I b37-1", + "Blo Thae AP-I d9-17", + "Blo Thae BE-R c18-1", + "Blo Thae AS-I b37-0", + "Blo Thae BS-I b37-0", + "Blo Thae YL-K b36-0", + "Blo Thae BJ-R c18-4", + "Tyriedgoea MO-I d9-2", + "Tyriedgoea MO-I d9-20", + "Tyriedgoea PJ-K b36-1", + "Tyriedgoea II-K d8-12", + "Tyriedgoea IX-N b34-0", + "Tyriedgoea DW-P b33-0", + "Tyriedgoea BB-Q b33-0", + "Tyriedgoea AQ-R b32-0", + "Tyriedgoea DH-M d7-10", + "Tyriedgoea ZU-R b32-0", + "Tyriedgoea VO-T b31-0", + "Tyriedgoea UD-V b30-0", + "Tyriedgoea DH-M d7-2", + "Tyriedgoea LW-Y b28-0", + "Tyriedgoea LX-U e2-0", + "Tyriedgoea JQ-A b28-0", + "Tyriedgoea KQ-A b28-0", + "Tyriedgoea CW-N d6-9", + "Tyriedgoea OL-A b28-0", + "Tyriedgoea PL-A b28-0", + "Tyriedgoea DW-N d6-19", + "Tyriedgoea VR-Y b28-0", + "Tyriedgoea WR-Y b28-0", + "Col 228 Sector CW-V d2-19", + "Col 228 Sector CW-V d2-18", + "Col 228 Sector GC-U d3-3", + "Col 228 Sector PB-G b13-0", + "Col 228 Sector JY-P c6-2", + "Col 228 Sector SB-G b13-0", + "Col 228 Sector UW-F b13-1", + "Col 228 Sector ZC-E b14-1", + "Col 228 Sector KY-P c6-1", + "Col 228 Sector BD-E b14-0", + "Col 228 Sector IE-C b15-1", + "Col 228 Sector KX-T d3-13", + "Col 228 Sector TZ-N c7-4", + "Col 228 Sector NP-A b16-0", + "Col 228 Sector UZ-N c7-5", + "Col 228 Sector VQ-Y b16-0", + "Col 228 Sector ZF-M c8-0", + "Col 228 Sector ZL-Y b16-1", + "Col 228 Sector FN-W b17-1", + "NGC 3324 Sector VI-V b17-1", + "NGC 3324 Sector BP-T b18-1", + "NGC 3324 Sector CP-T b18-0", + "NGC 3324 Sector DS-J c9-8", + "NGC 3324 Sector ME-O a36-0", + "NGC 3324 Sector IY-H c10-1", + "NGC 3324 Sector CX-I a39-0", + "NGC 3324 Sector HD-H a40-2", + "NGC 3324 Sector QT-R d4-3", + "NGC 3324 Sector PJ-F a41-0", + "NGC 3324 Sector VP-D a42-4", + "NGC 3324 Sector RT-R d4-15", + "NGC 3324 Sector DR-B a43-0", + "NGC 3324 Sector FR-B a43-2", + "NGC 3324 Sector IZ-L b22-2", + "NGC 3324 Sector UU-F c11-3", + "NGC 3324 Sector UU-F c11-6", + "Eta Carinae", + "NGC 3324 Sector OU-L b22-0", + "NGC 3324 Sector LO-N b21-0", + "NGC 3324 Sector WU-F c11-4", + "NGC 3324 Sector JI-P b20-1", + "NGC 3324 Sector KI-P b20-1", + "Bleia Eork MW-U b36-1", + "Bleia Eork NW-U b36-0", + "Bleia Eork LQ-W b35-1", + "Bleia Eork VZ-M d8-7", + "Bleia Eork NQ-W b35-1", + "Bleia Eork TK-Y c17-1", + "Bleia Eork JP-Y b34-0", + "Blae Eork KD-A c17-2", + "Blae Eork ZM-Y b34-1", + "Blae Eork WG-A b34-1", + "Blae Eork XG-A b34-1", + "Blae Eork YG-A b34-1", + "Blae Eork BC-A b34-1", + "Blae Eork CH-U e3-4", + "Blae Eork ID-Y b34-0", + "Blae Eork MJ-W b35-1", + "Blae Eork QP-U b36-0", + "Blae Eork XK-W c18-1", + "Blae Eork WK-W c18-0", + "Blae Eork CI-P b39-0", + "Blae Eork GO-N b40-0", + "Blae Eork LU-L b41-1", + "Blae Eork OA-K b42-1", + "Blae Eork JD-R c21-5", + "CPD-58 2648", + "CPD-59 2627", + "2MASS J10443666-5946218", + "Blae Eork OJ-P c22-3", + "Trumpler 16 HG 1462", + "CPD-59 2591", + "Blae Eork QA-B b47-0", + "PCYC 666", + "Blae Eork SA-B b47-0", + "Blae Eork TA-B b47-0", + "2MASS J10442445-5951430", + "Blae Eork YM-H d11-18", + "Blae Eork ZK-N c23-2", + "Blae Eork HI-X b48-0", + "Blae Eork KT-V b49-0", + "Blae Eork NO-V b49-0", + "Blae Eork FR-L c24-2", + "Tr 16 Sector RA-M b8-0", + "2MASS J10432911-6003200", + "Tr 16 Sector DB-X d1-12", + "Tr 16 Sector XG-K b9-0", + "Tr 16 Sector ZG-K b9-0", + "Tr 16 Sector ND-S c4-0", + "Tr 16 Sector EB-X d1-17", + "Tr 16 Sector II-I b10-0", + "Tr 16 Sector LD-I b10-0", + "Tr 16 Sector OO-G b11-0", + "Tr 16 Sector PO-G b11-0", + "Tr 16 Sector QO-G b11-0", + "Tr 16 Sector RO-G b11-0", + "Tr 16 Sector VJ-Q c5-4", + "Tr 16 Sector TO-G b11-0", + "Tr 16 Sector VJ-G b11-0", + "Tr 16 Sector XJ-G b11-0", + "Tr 16 Sector VY-R c4-2", + "Tr 16 Sector NC-V d2-2", + "Tr 14 Sector JM-W d1-10", + "Tr 16 Sector CA-Q c5-7", + "Tr 16 Sector NC-V d2-6", + "Tr 16 Sector GG-O c6-6", + "Tr 14 Sector TY-S c3-12", + "Tr 14 Sector LC-M b7-0", + "Eta Carina Sector HR-W c1-3", + "Eta Carina Sector RT-R b4-0", + "Eta Carina Sector HR-W d1-22", + "Eta Carina Sector KC-V c2-1", + "Eta Carina Sector SJ-Q b5-0", + "Eta Carina Sector RO-Q b5-0", + "2MASS J10442897-5942343", + "Eta Carina Sector NY-Q b5-0", + "Eta Carina Sector KD-R b5-1", + "Tr 14 Sector GD-W a17-1", + "Tr 14 Sector IH-V d2-19", + "Blu Theia ND-Z c27-1", + "Blu Theia LI-Z c27-3", + "Blu Theia LI-Z c27-6", + "Blu Theia QF-Z b55-0", + "Blu Theia RT-Z d13-23", + "Blu Theia HS-Z c27-0", + "Blu Theia KE-B b55-0", + "Blu Theia FY-C b54-0", + "Blu Theia CM-B c27-3", + "Blu Theia XW-E b53-0", + "Blu Theia VB-F b53-0", + "Blu Theia QV-G b52-0", + "Blu Theia LP-I b51-0", + "Blu Theia HJ-K b50-0", + "Blu Theia EO-K b50-0", + "Blu Theia YM-M b49-0", + "Blu Theia UG-O b48-0", + "Blu Theia FM-D d12-9", + "Blu Theia NF-Q b47-0", + "Blu Theia AQ-P e5-1", + "Blu Theia HZ-R b46-0", + "Blu Theia BG-F d11-6", + "Blu Theia BG-F d11-11", + "Blu Theia AG-F d11-4", + "Blu Theia ZH-V b44-0", + "Blu Theia VW-W b43-0", + "Blu Theia TB-X b43-0", + "Blu Theia UK-M c21-1", + "Blu Theia QE-O c20-2", + "Blu Theia WZ-G d10-9", + "Blu Theia PE-O c20-0", + "Blu Theia EJ-C b41-0", + "Blu Theia FE-C b41-0", + "Blu Theia KY-P c19-1", + "Blu Theia QT-I d9-8", + "Blu Theia TW-F b39-0", + "Blu Theia QB-G b39-0", + "Blu Theia PB-G b39-0", + "Blu Theia LQ-H b38-0", + "Blu Theia JV-H b38-0", + "Blu Theia IV-H b38-0", + "Blu Theia HV-H b38-0", + "Blu Theia GV-H b38-0", + "Blu Theia FV-H b38-0", + "Blu Theia CA-I b38-0", + "Blu Theia BA-I b38-0", + "Blu Theia CV-H b38-0", + "Blu Theia DG-G b39-0", + "Blu Theia BD-Q c19-0", + "Blu Theia BG-G b39-0", + "Blu Theia LY-I d9-6", + "Blu Theia SJ-I b38-0", + "Blu Theia ND-K b37-0", + "Blu Theia GS-K d8-5", + "Blu Theia GC-M b36-0", + "Blu Theia DH-M b36-0", + "Blu Theia VU-P b34-0", + "Blu Theia SZ-P b34-0", + "Blu Theia NT-R b33-0", + "Blu Theia KY-R b33-0", + "Blu Theia FS-T b32-0", + "Blu Theia DX-T b32-0", + "Blu Theia CX-T b32-0", + "Blu Theia YX-X c15-0", + "Blu Theia VV-V b31-0", + "Blu Theia XX-X c15-0", + "Blu Theia SR-Z c14-1", + "Blu Theia WV-M d7-1", + "Blu Theia WV-M d7-2", + "Blu Theia QW-Z c14-0", + "Blu Theia CN-B b29-0", + "Blu Theia YG-D b28-0", + "Blu Theia SF-F b27-0", + "Blu Theia QU-O d6-2", + "Blu Theia GP-D c13-0", + "Tyriedgoea BP-Q d5-2", + "Tyriedgoea BP-Q d5-3", + "Tyriedgoea BP-Q d5-0", + "Tyriedgoea BP-Q d5-4", + "Tyriedgoea DK-Q d5-1", + "Blu Theia OZ-G b26-0", + "Blu Theia QU-G b26-0", + "Tyriedgoea HQ-O d6-4", + "Tyriedgoea PG-D c13-1", + "Tyriedgoea JL-O d6-7", + "Tyriedgoea RB-D c13-1", + "Tyriedgoea KY-F b26-0", + "Tyriedgoea JL-O d6-1", + "Tyriedgoea OQ-E c12-0", + "Tyriedgoea CX-H b25-0", + "Tyriedgoea LV-E c12-0", + "Tyriedgoea EF-Q d5-8", + "Tyriedgoea UV-J b24-0", + "Tyriedgoea QP-L b23-0", + "Tyriedgoea MJ-N b22-0", + "Tyriedgoea LJ-N b22-0", + "Tyriedgoea KJ-N b22-0", + "Tyriedgoea FD-P b21-0", + "Tyriedgoea ED-P b21-0", + "Tyriedgoea ZW-Q b20-0", + "Tyriedgoea VQ-S b19-0", + "Tyriedgoea TV-S b19-0", + "Tyriedgoea XD-S d4-0", + "Tyriedgoea QK-U b18-0", + "Tyriedgoea PK-U b18-0", + "Tyriedgoea OK-U b18-0", + "Tyriedgoea LP-U b18-0", + "Tyriedgoea JU-U b18-0", + "Tyriedgoea NB-M c8-1", + "Tyriedgoea BT-W b17-0", + "Tyriedgoea ZS-W b17-0", + "Tyriedgoea RX-T d3-7", + "Tyriedgoea MB-M c8-1", + "Tyriedgoea TM-Y b16-0", + "Tyriedgoea SM-Y b16-0", + "Tyriedgoea QX-T d3-3", + "Tyriedgoea QX-T d3-2", + "Tyriedgoea LV-B b15-0", + "Tyriedgoea KV-B b15-0", + "Tyriedgoea EA-O c7-0", + "Tyriedgoea ZT-P c6-0", + "Tyriedgoea CU-D b14-0", + "Tyriedgoea EQ-Y e1", + "Tyriedgoea YN-F b13-0", + "Tyriedgoea LR-V d2-7", + "Tyriedgoea UN-R c5-0", + "Tyriedgoea QH-T c4-0", + "Tyriedgoea QH-T c4-1", + "Tyriedgoea HL-X d1-4", + "Tyriedgoea FP-M b9-0", + "Tyriedgoea EP-M b9-0", + "Tyriedgoea AJ-O b8-0", + "Tyriedgoea VC-Q b7-0", + "Tyriedgoea UC-Q b7-0", + "Tyriedgoea PW-R b6-0", + "Tyriedgoea OW-R b6-0", + "Tyriedgoea BF-Z d6", + "Tyriedgoea KB-S b6-0", + "Tyriedgoea FV-T b5-0", + "Tyriedgoea AF-Z d5", + "Tyriedgoea AP-V b4-0", + "Tyriedgoea AF-Z d6", + "Tyriedgoea BK-V b4-0", + "Tyriedgoea WD-X b3-0", + "Tyriedgoea VD-A c1-2", + "Tyriedgoea RX-Y b2-0", + "Tyriedgoea VY-A d8", + "Tyriedgoea SI-A c1-2", + "Tyriedgoea JW-A b2-0", + "Tyriedgoea GL-C b1-0", + "Tyriedgoea FL-C b1-0", + "Tyriedgoea ZJ-E b0", + "Pru Eurl QH-X b58-0", + "Pru Eurl CN-A d14-2", + "Pru Eurl JG-Z b57-0", + "Pru Eurl EQ-Z c28-0", + "Pru Eurl DA-B b57-0", + "Pru Eurl CA-B b57-0", + "Pru Eurl BA-B b57-0", + "Pru Eurl WT-C b56-0", + "Pru Eurl SN-E b55-0", + "Pru Eurl PS-E b55-0", + "Pru Eurl KM-G b54-0", + "Pru Eurl JM-G b54-0", + "Pru Eurl FG-I b53-0", + "Pru Eurl XF-O e6-0", + "Pru Eurl AA-K b52-0", + "Pru Eurl VT-L b51-0", + "Pru Eurl PF-E d12-9", + "Pru Eurl QX-O b49-0", + "Pru Eurl RA-E d12-9", + "Pru Eurl GG-I c24-3", + "Pru Eurl QA-E d12-5", + "Pru Eurl DL-I c24-2", + "Pru Eurl CQ-S b47-0", + "Pru Eurl BQ-S b47-0", + "Pru Eurl XJ-U b46-0", + "Pru Eurl YE-K c23-0", + "Sifaea BV-F d11-15", + "Pru Eurl OX-X b44-0", + "Pru Eurl SZ-P e5-1", + "Pru Eurl KZ-F d11-0", + "Sifaea ZZ-X b44-0", + "Sifaea VT-H d10-9", + "Sifaea UT-N c21-0", + "Sifaea QY-Z b43-0", + "Sifaea SY-N c21-0", + "Sifaea IX-B b43-0", + "Sifaea NS-P c20-1", + "Sifaea DR-D b42-0", + "Sifaea YK-F b41-0", + "Sifaea XK-F b41-0", + "Sifaea SE-H b40-0", + "Sifaea PN-J d9-10", + "Sifaea PN-J d9-2", + "Sifaea JS-K b38-0", + "Sifaea IS-K b38-0", + "Sifaea HS-K b38-0", + "Sifaea HN-K b38-0", + "Sifaea UT-R e4-1", + "Sifaea ES-K b38-0", + "Sifaea HY-I b39-0", + "Sifaea IT-I b39-0", + "Sifaea NN-J d9-8", + "Sifaea EY-I b39-0", + "Sifaea CM-R c19-0", + "Sifaea MN-J d9-1", + "Sifaea BM-R c19-1", + "Sifaea GE-H b40-0", + "Sifaea FE-H b40-0", + "Sifaea EE-H b40-0", + "Sifaea FZ-G b40-0", + "Sifaea EZ-G b40-0", + "Sifaea DZ-G b40-0", + "Sifaea ST-R e4-0", + "Sifaea BZ-G b40-0", + "Sifaea YD-H b40-0", + "Sifaea KN-J d9-3", + "Sifaea XD-H b40-0", + "Sifaea KN-J d9-13", + "Sifaea JN-J d9-1", + "Sifaea VD-H b40-0", + "Sifaea JN-J d9-2", + "Sifaea UL-R c19-1", + "Sifaea JW-K b38-0", + "Sifaea EQ-M b37-0", + "Sifaea EH-L d8-4", + "Sifaea BF-O b36-0", + "Sifaea AF-O b36-0", + "Sifaea VY-P b35-0", + "Sifaea YE-O b36-0", + "Sifaea XE-O b36-0", + "Sifaea DH-L d8-12", + "Sifaea DH-L d8-13", + "Sifaea RY-P b35-0", + "Sifaea IZ-U c17-0", + "Sifaea LS-R b34-0", + "Sifaea CH-L d8-6", + "Sifaea CH-L d8-1", + "Sifaea GW-U b32-1", + "Sifaea AW-M d7-2", + "Sifaea DD-Y c15-0", + "Sifaea DL-W b31-0", + "Sifaea YE-Y b30-1", + "Sifaea ZV-M d7-3", + "Sifaea AA-Y b30-0", + "Sifaea WT-Z b29-0", + "Sifaea KC-V e2-2", + "Sifaea WP-O d6-16", + "Sifaea KC-V e2-3", + "Sifaea QS-B b29-0", + "Sifaea RN-B b29-1", + "Sifaea QN-B b29-0", + "Sifaea VP-O d6-1", + "Sifaea ST-Z b29-0", + "Sifaea YV-M d7-12", + "Sifaea QT-Z b29-0", + "Sifaea LN-B b29-1", + "Sifaea UP-O d6-8", + "Sifaea DM-D b28-2", + "Sifaea TP-O d6-26", + "Sifaea CH-D b28-0", + "Sifaea BH-D b28-1", + "Sifaea WA-F b27-2", + "Sifaea SP-O d6-26", + "Sifaea PZ-G b26-0", + "Sifaea OZ-G b26-1", + "Pro Eur VV-I b25-0", + "Pro Eur UV-I b25-0", + "Pro Eur PP-K b24-2", + "Pro Eur SV-I b25-0", + "Pro Eur PK-K b24-0", + "Pro Eur CK-Q d5-6", + "Pro Eur ED-O b22-0", + "Pro Eur ZW-P b21-2", + "Pro Eur YW-P b21-0", + "Pro Eur XW-P b21-0", + "Pro Eur WW-P b21-0", + "Pro Eur WS-I c10-7", + "Pro Eur QQ-R b20-0", + "Pro Eur RM-K c9-3", + "Pro Eur WD-S d4-28", + "Pro Eur MG-M c8-4", + "Pro Eur CT-W b17-2", + "Pro Eur LG-M c8-5", + "Pro Eur WM-Y b16-1", + "Pro Eur TR-Y b16-0", + "Pro Eur NL-A b16-2", + "Pro Eur FA-O c7-0", + "Pro Eur IF-C b15-0", + "Pro Eur DZ-D b14-2", + "Pro Eur CZ-D b14-1", + "Pro Eur ZN-F b13-1", + "Pro Eur YT-P c6-3", + "Pro Eur LR-V d2-36", + "Pro Eur WN-F b13-1", + "Pro Eur ZT-D b14-1", + "Pro Eur AP-D b14-1", + "Pro Eur DV-B b15-2", + "Pro Eur CV-B b15-2", + "Pro Eur NX-T d3-41", + "Pro Eur NX-T d3-32", + "Pro Eur FB-M c8-1", + "Pro Eur LN-W b17-2", + "Pro Eur NX-T d3-15", + "Pro Eur GM-K c9-0", + "Pro Eur PE-T b19-0", + "Pro Eur FM-K c9-6", + "Pro Eur RK-R b20-0", + "Pro Eur IS-I c10-0", + "Pro Eur PD-S d4-9", + "Pro Eur GW-W e1-0", + "Pro Eur EH-K c9-9", + "Pro Eur EY-U b18-1", + "Pro Eur BM-K c9-3", + "Pro Eur ET-U b18-0", + "Pro Eur AM-K c9-5", + "Pro Eur OD-S d4-23", + "Pro Eur ZL-K c9-4", + "Pro Eur ND-S d4-26", + "Pro Eur VC-V b18-0", + "Pro Eur UC-V b18-0", + "Pro Eur IX-T d3-26", + "Pro Eur SC-V b18-0", + "Pro Eur TX-U b18-1", + "Pro Eur MD-S d4-24", + "Pro Eur MD-S d4-23", + "Pro Eur OR-W b17-1", + "Pro Eur HX-T d3-18", + "Pro Eur RF-M c8-2", + "Pro Eur HL-Y b16-0", + "Pro Eur IG-Y b16-0", + "Pro Eur DA-A b16-2", + "Pro Eur GG-Y b16-0", + "Pro Eur DL-Y b16-0", + "Pro Eur GX-T d3-1", + "Sifeae IH-A b16-1", + "Sifeae GM-A b16-0", + "Sifeae FM-A b16-0", + "Sifeae VX-T d3-11", + "Sifeae UX-T d3-1", + "Sifeae LF-O c7-0", + "Sifeae SC-U d3-1", + "Sifeae NW-V d2-6", + "Sifeae NW-V d2-16", + "Sifeae OE-E b14-1", + "Sifeae NE-E b14-0", + "Sifeae QK-C b15-0", + "Sifeae QC-U d3-22", + "Sifeae OK-C b15-0", + "Sifeae MK-C b15-1", + "Sifeae DU-P c6-4", + "Sifeae JZ-D b14-0", + "Sifeae GE-E b14-0", + "Sifeae FE-E b14-0", + "Sifeae CT-F b13-0", + "Sifeae BT-F b13-0", + "Sifeae ZY-P c6-1", + "Sifeae KW-V d2-9", + "Sifeae RR-H b12-0", + "Sifeae XY-P c6-6", + "Sifeae XY-P c6-0", + "Sifeae JW-V d2-12", + "Sifeae WD-E b14-0", + "Sifeae XT-P c6-5", + "Sifeae WY-D b14-0", + "Sifeae VY-D b14-1", + "Sifeae AA-C b15-1", + "Sifeae ZZ-N c7-0", + "Sifeae AL-A b16-1", + "Sifeae VE-C b15-1", + "Sifeae YK-A b16-1", + "Sifeae MX-T d3-28", + "Sifeae ZV-Y b16-0", + "Sifeae KC-U d3-4", + "Synuefe YG-Z b47-0", + "Synuefe XK-N c23-3", + "Col 285 Sector MR-M c7-13", + "Col 285 Sector SH-B b14-7", + "Col 285 Sector RH-B b14-2", + "HIP 28150", + "Col 285 Sector NM-B b14-6", + "Hyades Sector LC-V d2-99", + "Trianguli Sector QI-T b3-6", + "Trianguli Sector PI-T b3-7", + "Trianguli Sector TU-O a6-1", + "Tascheter Sector TY-R a4-2", + "LP 415-26", + "Delta Trianguli", + "LHS 4003", + "WISE 2056+1459", + "LP 634-1", + "Volungu", + "Liaedin", + "Wolf 1062", + "IL Aquarii", + "LAWD 96", + "Core Sys Sector CQ-P a5-2", + "Alectrona", + "Hyldekagati", + "Ceti Sector CQ-Y d89", + "Ceti Sector PD-S b4-1", + "Quivira", + "Kadrusa", + "ICZ CL-X b1-5", + "ICZ EW-V b2-4", + "Sanna", + "Euryale", + "LPM 26", + "Putamasin", + "LFT 78", + "Col 285 Sector NE-R a34-0", + "LHS 160", + "LHS 1351", + "LP 91-140", + "Ennead" + ], + "starport": [ + "Bosch Terminal", + "Julian Gateway", + "Jemison Dock", + "Galvani Port", + "Wundt Gateway", + "Conrad Port", + "Knapp Vision", + "Herzfeld Landing", + "Kotov Terminal", + "Weston Orbital", + "Ricardo Landing", + "Brand City", + "Huygens Mines", + "Zudov City", + "Chomsky Ring", + "Wescott Terminal", + "Dirac Hub", + "Planck Dock", + "Hertz Colony", + "Bosch Mines", + "Blaschke Vision", + "Nicollet City", + "Ejeta Colony", + "Pierres Ring", + "Grant Terminal", + "Narvaez Orbital", + "Legendre Ring", + "Popper Dock", + "Brooks City", + "Wells Hub", + "Barcelos City", + "Perez Market", + "Lopez de Villalobos Prospect", + "Oramus Legacy", + "Henry Hub", + "Schade Platform", + "Selberg's Inheritance", + "Solovyov Orbital", + "Pierce Hanger", + "Giles Colony", + "Marshall Hub", + "Ising Hub", + "Arrhenius Hub", + "Vaucanson Hub", + "Frimout Horizons", + "Parry Terminal", + "Saberhagen Port", + "Stafford Terminal", + "Willis City", + "Romanenko Gateway", + "Jakes Enterprise", + "Budarin Terminal", + "Horowitz Gateway", + "Burke Hub", + "Perrin Ring", + "Balandin Enterprise", + "So-yeon Port", + "Potter Gateway", + "Tudela Installation", + "Quimper Ring", + "Julian City", + "Whitelaw Enterprise", + "Saunders's Dive", + "Harvestport", + "Brunton Hub", + "Nasmyth Station", + "Currie Enterprise", + "McArthur Plant", + "Lundwall City", + "Tshang Enterprise", + "Mach Dock", + "Wellman Gateway", + "Moisuc Refinery", + "Boe Enterprise", + "Gelfand Survey", + "Artyukhin Ring", + "Aitken Vision", + "Laphrian Shipyard", + "Crook Orbital", + "Rand City", + "Morgan Terminal", + "Oswald Platform", + "Aksyonov Platform", + "Coney Arena", + "Roberts Hub", + "Ayerdhal City", + "Derleth Orbital", + "Maire Gateway", + "Dedman Gateway", + "Bailey Ring", + "Humphreys Enterprise", + "Kandel Ring", + "Polya Enterprise", + "Rozhdestvensky Station", + "Cameron Survey", + "Shuttleworth Terminal", + "Yu Port", + "Bolger Vision", + "Alpers Refinery", + "Goeschke Station", + "Stebler Mines", + "Duke Hub", + "Shepard Ring", + "Cormack Orbital", + "Harris Platform", + "Fung Outpost", + "Ore Terminal", + "McDaniel Station", + "Ellison Station", + "Hennepin Enterprise", + "Luiken Port", + "Cochrane Terminal", + "McDonald Port", + "Bykovsky Ring", + "Vaucanson Settlement", + "Nicollier Ring", + "Carrier Dock", + "DG-1 Refinery", + "Blackman Terminal", + "Proteus Orbital", + "Katzenstein Settlement", + "Porta", + "Spedding Orbital", + "Anders Orbital", + "Mohmand Dock", + "Maler Hub", + "Scott Settlement", + "Sarich Port", + "Tyurin Port", + "Reisman Station", + "Fulton Landing", + "DENIS FILIPPOV", + "Rattus High", + "Port Sippar", + "Amar Station", + "Hennen City", + "Cabrera Dock", + "Haller Port", + "Pennington City", + "Foda Station", + "Stebler City", + "Gibson Settlement", + "Strekalov Dock", + "Behnken Terminal", + "Euler Port", + "Archimedes Hub", + "Ross Dock", + "Blalock Orbital", + "Pavlov Settlement", + "Galileo", + "Stein Platform", + "Beatty Landing", + "Galiano Plant", + "Rangarajan's Base", + "Jemison Refinery", + "Solo Orbiter", + "Brunel Station", + "Brendan Gateway", + "Godel Dock", + "Slipher Vision", + "EG Main HQ", + "Crown Orbital", + "Crown City", + "Watt Ring", + "Coye Orbital" + ] + }, + "greatestDistanceFromStart": 9017.2195143253, + "creditsEarned": 542823, + "bodiesCount": 0, + "scanSoldLevels": { + "lev_0": 647, + "lev_1": 489, + "lev_2": 132, + "lev_3": 0 + }, + "latestPayouts": [ + { + "market": "Port Sippar", + "value": 3218 + }, + { + "market": "Quimper Ring", + "value": 63035 + }, + { + "market": "Rangarajan's Base", + "value": 141702 + }, + { + "market": "Galiano Plant", + "value": 59372 + }, + { + "market": "Beatty Landing", + "value": 3424 + } + ], + "highestPayout": 34942, + "lastVisitedStarSystems": [ + "Ennead", + "LP 91-140", + "LHS 1351", + "LFT 78", + "LHS 1351" + ], + "bodiesSoldCount": 1268, + "bodiesFirstDiscovered": 26 + }, + "ship": { + "spend": { + "ships": 8227344, + "fuel": 160669, + "modules": 15615586, + "ammo": 232942, + "repair": 909596 + }, + "fuel_units": { + "purchased": 0, + "scooped": 2232 + }, + "insurance": { + "claims": 24, + "value": 2714138 + } + }, + "wealth": { + "maxCredits": 23883052 + }, + "trade": { + "marketIds": [ + "3228160256", + "3228321792", + "3228393472", + "3228129280", + "3228062976", + "3227948288", + "3227868160", + "3228192000", + "3228189952", + "3228190208", + "3228191232", + "3228190464", + "3228190720", + "3228244480", + "3228249088", + "3228264192", + "3228252160", + "3228251904", + "3228190976", + "3228191488", + "3228249344", + "3227868416", + "3228248064", + "3228470784", + "3228244736", + "3228471040", + "3228339968", + "3228340224", + "3228244224", + "3228247808", + "3228329472", + "3228390400", + "3223529472", + "128129272", + "3223288832", + "3228081408", + "3228081152", + "3227955968", + "3227957248", + "3228063232", + "3228028672", + "3227998208", + "3227998464", + "3228066560", + "128134648", + "128154360", + "3228040192", + "128153848", + "3228064768", + "3228065024", + "3228064256", + "3227919360", + "128169976", + "3228064000", + "128073720", + "3228077824", + "128073464", + "3228120576" + ], + "furthest": { + "distance": 99.480201783445, + "origin": 128129272, + "destination": "3228390400" + }, + "largestProfit": { + "value": 171720, + "commodity": "Beryllium", + "qty": 120, + "marketId": "3228081152" + }, + "largestProfitPerItem": { + "value": 1433, + "commodity": "Beryllium", + "marketId": "3228081152" + }, + "count": 429, + "qty": 22410, + "profit": 14759658, + "totalDistance": 198621.73693075 + }, + "mining": { + "largestProfit": { + "value": 0, + "commodity": 0, + "qty": 0, + "marketId": 0 + }, + "largestProfitPerItem": { + "value": 0, + "commodity": 0, + "marketId": 0 + }, + "count": 0, + "qty": 0, + "profit": 0, + "converted": { + "qty": 0 + } + }, + "blackMarket": { + "marketIds": [ + "3227868160", + "3228338688", + "3228189952", + "3228247808", + "3228390144", + "128130296" + ], + "furthest": { + "distance": 69224.099624264, + "origin": 0, + "destination": "3228338688" + }, + "largestProfit": { + "value": 132005, + "commodity": "OnionHead", + "qty": 17, + "marketId": "3228390144" + }, + "largestProfitPerItem": { + "value": 13130, + "commodity": "MotronaExperienceJelly", + "marketId": "128130296" + }, + "count": 13, + "qty": 67, + "profit": 292429, + "totalDistance": 556021.41706887 + }, + "stolenGoods": { + "largestProfit": { + "value": 65650, + "commodity": "MotronaExperienceJelly", + "qty": 5, + "marketId": "128130296" + }, + "largestProfitPerItem": { + "value": 13130, + "commodity": "MotronaExperienceJelly", + "marketId": "128130296" + }, + "count": 10, + "qty": 38, + "profit": 157238 + }, + "combat": { + "bounty": { + "highestClaimed": 134706, + "qty": 239, + "value": 1215158 + }, + "bond": { + "qty": 223, + "value": 1559000 + } + }, + "crime": { + "fine": { + "qty": 11, + "value": 135334, + "factions": [] + }, + "bounty": { + "highest": { + "value": 0, + "faction": 0, + "systemId": 0 + }, + "qty": 0, + "value": 0, + "factions": [] + }, + "stolenCargo": { + "qty": 75, + "value": 442840 + } + }, + "PVP": { + "kills": { + "ranks": { + "r0": 2, + "r1": 1, + "r2": 2, + "r3": 0, + "r4": 1, + "r5": 0, + "r6": 0, + "r7": 0, + "r8": 0 + } + } + }, + "NCP": { + "kills": { + "ranks": { + "r0": 2, + "r1": 4, + "r2": 2, + "r3": 3, + "r4": 1, + "r5": 0, + "r6": 0, + "r7": 0, + "r8": 0 + } + } + }, + "prealloc": true, + "ranks": { + "combat": { + "1": { + "ts": 1417719389, + "gt": 144380 + }, + "2": { + "ts": 1419164701, + "gt": 328001 + }, + "3": { + "ts": 1419789595, + "gt": 381168 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "crime": { + "1": { + "ts": 0, + "gt": 0 + }, + "2": { + "ts": 0, + "gt": 0 + }, + "3": { + "ts": 0, + "gt": 0 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "explore": { + "1": { + "ts": 1416679505, + "gt": 7340 + }, + "2": { + "ts": 1416773896, + "gt": 32330 + }, + "3": { + "ts": 1425813076, + "gt": 645416 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "trade": { + "1": { + "ts": 1417041602, + "gt": 57777 + }, + "2": { + "ts": 1417208591, + "gt": 78181 + }, + "3": { + "ts": 1417804896, + "gt": 154613 + }, + "4": { + "ts": 1421439724, + "gt": 490202 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "federation": { + "1": { + "ts": 1418494995, + "gt": 227112 + }, + "2": { + "ts": 1418496671, + "gt": 227112 + }, + "3": { + "ts": 1419692207, + "gt": 369093 + }, + "4": { + "ts": 1420382992, + "gt": 418109 + }, + "5": { + "ts": 1437243056, + "gt": 847776 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "empire": { + "1": { + "ts": 1437243056, + "gt": 847776 + }, + "2": { + "ts": 0, + "gt": 0 + }, + "3": { + "ts": 0, + "gt": 0 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + } + }, + "lastModulesBought": [ + { + "market": "EG Main HQ", + "module": "Hpt_ChaffLauncher_Tiny", + "value": 8500 + }, + { + "market": "Godel Dock", + "module": "Int_DockingComputer_Standard", + "value": 4500 + }, + { + "market": "Quimper Ring", + "module": "Hpt_ElectronicCountermeasure_Tiny", + "value": 12500 + }, + { + "market": "Quimper Ring", + "module": "Decal_Combat_Competent", + "value": 0 + }, + { + "market": "Quimper Ring", + "module": "Int_HullReinforcement_Size4_Class2", + "value": 195000 + } + ], + "illegalGoods": { + "largestProfit": { + "value": 132005, + "commodity": "OnionHead", + "qty": 17, + "marketId": "3228390144" + }, + "largestProfitPerItem": { + "value": 13130, + "commodity": "MotronaExperienceJelly", + "marketId": "128130296" + }, + "count": 10, + "qty": 45, + "profit": 239863 + }, + "NPC": { + "kills": { + "ranks": { + "r1": 14, + "r3": 17, + "r2": 14, + "r0": 3, + "r4": 12, + "r5": 13, + "rArray": 2, + "r8": 3, + "r7": 2, + "r6": 5 + } + } + }, + "vanishCounters": { + "amongPeers": 5, + "notInDanger": 5, + "isNotDying": 2 + } + }, + "ship": { + "name": "CobraMkIII", + "modules": { + "MediumHardpoint1": { + "module": { + "id": 128049460, + "name": "Hpt_MultiCannon_Gimbal_Medium", + "value": 57000, + "unloaned": 57000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 90, + "hopper": 2100 + } + } + }, + "MediumHardpoint2": { + "module": { + "id": 128049386, + "name": "Hpt_PulseLaser_Gimbal_Medium", + "value": 35400, + "unloaned": 35400, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "SmallHardpoint1": { + "module": { + "id": 128049385, + "name": "Hpt_PulseLaser_Gimbal_Small", + "value": 6600, + "unloaned": 6600, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "SmallHardpoint2": { + "module": { + "id": 128049459, + "name": "Hpt_MultiCannon_Gimbal_Small", + "value": 14250, + "unloaned": 14250, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 90, + "hopper": 2100 + } + } + }, + "TinyHardpoint1": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 8500, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "TinyHardpoint2": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 8500, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "Decal1": { + "module": { + "id": 128667738, + "name": "Decal_Combat_Competent", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Decal2": { + "module": { + "id": 128667655, + "name": "Decal_Skull3", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Decal3": { + "module": { + "id": 128667655, + "name": "Decal_Skull3", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PaintJob": { + "module": { + "id": 128666731, + "name": "PaintJob_CobraMkIII_Stripe2_03", + "value": 0, + "health": 1000000, + "on": true, + "priority": 1, + "free": true, + "unloaned": 0 + } + }, + "Armour": { + "module": { + "id": 128049282, + "name": "CobraMkIII_Armour_Grade3", + "value": 341746, + "unloaned": 341746, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PowerPlant": { + "module": { + "id": 128064045, + "name": "Int_Powerplant_Size4_Class3", + "value": 178898, + "unloaned": 178898, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "MainEngines": { + "module": { + "id": 128064082, + "name": "Int_Engine_Size4_Class5", + "value": 1610080, + "unloaned": 1610080, + "free": false, + "health": 1000000, + "on": true, + "priority": 0 + } + }, + "FrameShiftDrive": { + "module": { + "id": 128064117, + "name": "Int_Hyperdrive_Size4_Class5", + "value": 1610080, + "unloaned": 1610080, + "free": false, + "health": 1000000, + "on": true, + "priority": 3 + } + }, + "LifeSupport": { + "module": { + "id": 128064149, + "name": "Int_LifeSupport_Size3_Class2", + "value": 10133, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "unloaned": 10133 + } + }, + "PowerDistributor": { + "module": { + "id": 128064192, + "name": "Int_PowerDistributor_Size3_Class5", + "value": 158331, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "unloaned": 158331 + } + }, + "Radar": { + "module": { + "id": 128064229, + "name": "Int_Sensors_Size3_Class2", + "value": 10133, + "unloaned": 10133, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "FuelTank": { + "module": { + "id": 128064349, + "name": "Int_FuelTank_Size4_Class3", + "value": 24734, + "health": 1000000, + "on": true, + "priority": 1, + "free": false, + "unloaned": 24734 + } + }, + "Slot01_Size4": { + "module": { + "id": 128668544, + "name": "Int_HullReinforcement_Size4_Class2", + "value": 195000, + "unloaned": 195000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot02_Size4": { + "module": { + "id": 128064314, + "name": "Int_ShieldCellBank_Size4_Class2", + "value": 28373, + "unloaned": 28373, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 2 + } + } + }, + "Slot03_Size4": { + "module": { + "id": 128064274, + "name": "Int_ShieldGenerator_Size4_Class2", + "value": 59633, + "unloaned": 59633, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot04_Size2": { + "module": { + "id": 128668540, + "name": "Int_HullReinforcement_Size2_Class2", + "value": 36000, + "unloaned": 36000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot05_Size2": { + "module": { + "id": 128666709, + "name": "Int_FSDInterdictor_Size2_Class2", + "value": 100800, + "unloaned": 100800, + "free": false, + "health": 1000000, + "on": true, + "priority": 3 + } + }, + "Slot06_Size2": { + "module": { + "id": 128049549, + "name": "Int_DockingComputer_Standard", + "value": 4500, + "unloaned": 4500, + "free": false, + "health": 1000000, + "on": false, + "priority": 0 + } + } + }, + "value": { + "hull": 235787, + "modules": 4498691, + "cargo": 0, + "total": 4734478, + "unloaned": 4498691 + }, + "free": false, + "health": { + "hull": 1000000, + "shield": 1000000, + "shieldup": true + }, + "wear": { + "dirt": 11844, + "fade": 358, + "tear": 35956, + "game": 5207 + }, + "cockpitBreached": false, + "oxygenRemaining": 450000, + "fuel": { + "capacity": 16, + "lvl": 16 + }, + "reserve": { + "lvl": 0.914921 + }, + "cargo": { + "capacity": 0, + "qty": 0, + "items": [] + }, + "passengers": [], + "refinery": null + }, + "ships": { + "0": { + "name": "SideWinder", + "station": { + "id": "3228338688", + "name": "Nicollet City" + }, + "starsystem": { + "id": "8055378940618", + "name": "Chang Yeh", + "systemaddress": "8055378940618" + } + }, + "2": { + "name": "CobraMkIII", + "station": { + "id": "3223840768", + "name": "Watt Ring" + }, + "starsystem": { + "id": "65179", + "name": "Ennead", + "systemaddress": "6680989373138" + } + } + } +} \ No newline at end of file diff --git a/utils/src/test/resources/edce/edce_deep_space.json b/utils/src/test/resources/edce/edce_deep_space.json new file mode 100644 index 0000000..8710832 --- /dev/null +++ b/utils/src/test/resources/edce/edce_deep_space.json @@ -0,0 +1,6798 @@ +{ + "commander": { + "id": 126367, + "name": "MoHax", + "credits": 23883052, + "debt": 0, + "currentShipId": 2, + "alive": true, + "docked": false, + "rank": { + "combat": 3, + "trade": 4, + "explore": 3, + "crime": 0, + "service": 0, + "empire": 0, + "federation": 2, + "power": 3 + } + }, + "lastSystem": { + "id": "65179", + "name": "Ennead", + "faction": "Federation" + }, + "lastStarport": { + "id": "3223840768", + "name": "Watt Ring", + "faction": "Federation", + "commodities": [ + { + "id": "128049202", + "name": "Hydrogen Fuel", + "cost_min": 125, + "cost_max": 168, + "cost_mean": "147.00", + "homebuy": "74", + "homesell": "71", + "consumebuy": "3", + "baseCreationQty": 200, + "baseConsumptionQty": 200, + "capacity": 1239476, + "buyPrice": 0, + "sellPrice": 152, + "meanPrice": 147, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 12273, + "consumptionQty": 1227203, + "targetStock": 319073, + "stock": 0, + "demand": 659426, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Chemicals", + "volumescale": "1.3000" + }, + { + "id": "128049203", + "name": "Mineral Oil", + "cost_min": 192, + "cost_max": 325, + "cost_mean": "259.00", + "homebuy": "47", + "homesell": "42", + "consumebuy": "5", + "baseCreationQty": 647, + "baseConsumptionQty": 0, + "capacity": 39701, + "buyPrice": 120, + "sellPrice": 106, + "meanPrice": 259, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 39701, + "consumptionQty": 0, + "targetStock": 39701, + "stock": 22229, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Chemicals", + "volumescale": "1.0300" + }, + { + "id": "128049241", + "name": "Clothing", + "cost_min": 315, + "cost_max": 474, + "cost_mean": "395.00", + "homebuy": "61", + "homesell": "57", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 350, + "capacity": 2147606, + "buyPrice": 0, + "sellPrice": 465, + "meanPrice": 395, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 2147606, + "targetStock": 536901, + "stock": 0, + "demand": 1531178, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Consumer Items", + "volumescale": "1.1500" + }, + { + "id": "128049240", + "name": "Consumer Technology", + "cost_min": 6561, + "cost_max": 7500, + "cost_mean": "7031.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 27, + "capacity": 298211, + "buyPrice": 0, + "sellPrice": 7520, + "meanPrice": 7031, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 298211, + "targetStock": 74552, + "stock": 0, + "demand": 223659, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Consumer Items", + "volumescale": "1.1000" + }, + { + "id": "128049238", + "name": "Domestic Appliances", + "cost_min": 527, + "cost_max": 734, + "cost_mean": "631.00", + "homebuy": "70", + "homesell": "67", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 209, + "capacity": 641214, + "buyPrice": 0, + "sellPrice": 730, + "meanPrice": 631, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 641214, + "targetStock": 160303, + "stock": 0, + "demand": 470294, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Consumer Items", + "volumescale": "1.2500" + }, + { + "id": "128049177", + "name": "Algae", + "cost_min": 135, + "cost_max": 265, + "cost_mean": "200.00", + "homebuy": "27", + "homesell": "20", + "consumebuy": "7", + "baseCreationQty": 126, + "baseConsumptionQty": 0, + "capacity": 23196, + "buyPrice": 73, + "sellPrice": 54, + "meanPrice": 200, + "demandBracket": 0, + "stockBracket": 1, + "creationQty": 7732, + "consumptionQty": 0, + "targetStock": 7732, + "stock": 4329, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.0000" + }, + { + "id": "128049182", + "name": "Animal Meat", + "cost_min": 1286, + "cost_max": 1633, + "cost_mean": "1460.00", + "homebuy": "81", + "homesell": "79", + "consumebuy": "2", + "baseCreationQty": 19, + "baseConsumptionQty": 0, + "capacity": 1166, + "buyPrice": 1181, + "sellPrice": 1140, + "meanPrice": 1460, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 1166, + "consumptionQty": 0, + "targetStock": 1166, + "stock": 650, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.4000" + }, + { + "id": "128049189", + "name": "Coffee", + "cost_min": 1286, + "cost_max": 1633, + "cost_mean": "1460.00", + "homebuy": "81", + "homesell": "79", + "consumebuy": "2", + "baseCreationQty": 19, + "baseConsumptionQty": 0, + "capacity": 1166, + "buyPrice": 1181, + "sellPrice": 1141, + "meanPrice": 1460, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 1166, + "consumptionQty": 0, + "targetStock": 1166, + "stock": 649, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.4000" + }, + { + "id": "128049183", + "name": "Fish", + "cost_min": 403, + "cost_max": 583, + "cost_mean": "493.00", + "homebuy": "66", + "homesell": "63", + "consumebuy": "3", + "baseCreationQty": 27, + "baseConsumptionQty": 0, + "capacity": 4971, + "buyPrice": 390, + "sellPrice": 369, + "meanPrice": 493, + "demandBracket": 0, + "stockBracket": 1, + "creationQty": 1657, + "consumptionQty": 0, + "targetStock": 1657, + "stock": 925, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.2000" + }, + { + "id": "128049178", + "name": "Fruit And Vegetables", + "cost_min": 315, + "cost_max": 474, + "cost_mean": "395.00", + "homebuy": "61", + "homesell": "57", + "consumebuy": "4", + "baseCreationQty": 1748, + "baseConsumptionQty": 9, + "capacity": 363195, + "buyPrice": 293, + "sellPrice": 271, + "meanPrice": 395, + "demandBracket": 0, + "stockBracket": 1, + "creationQty": 107258, + "consumptionQty": 13807, + "targetStock": 110709, + "stock": 63511, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.1500" + }, + { + "id": "128049180", + "name": "Grain", + "cost_min": 207, + "cost_max": 342, + "cost_mean": "275.00", + "homebuy": "50", + "homesell": "45", + "consumebuy": "5", + "baseCreationQty": 5840, + "baseConsumptionQty": 29, + "capacity": 1608867, + "buyPrice": 174, + "sellPrice": 155, + "meanPrice": 275, + "demandBracket": 0, + "stockBracket": 1, + "creationQty": 358344, + "consumptionQty": 177945, + "targetStock": 402830, + "stock": 245155, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.0500" + }, + { + "id": "128049188", + "name": "Tea", + "cost_min": 1459, + "cost_max": 1833, + "cost_mean": "1646.00", + "homebuy": "82", + "homesell": "80", + "consumebuy": "2", + "baseCreationQty": 18, + "baseConsumptionQty": 0, + "capacity": 1105, + "buyPrice": 1425, + "sellPrice": 1376, + "meanPrice": 1646, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 1105, + "consumptionQty": 0, + "targetStock": 1105, + "stock": 468, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.4200" + }, + { + "id": "128064028", + "name": "Atmospheric Extractors", + "cost_min": 403, + "cost_max": 583, + "cost_mean": "493.00", + "homebuy": "66", + "homesell": "63", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 271, + "capacity": 1662860, + "buyPrice": 0, + "sellPrice": 557, + "meanPrice": 493, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 1662860, + "targetStock": 415715, + "stock": 0, + "demand": 1106579, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.2000" + }, + { + "id": "128049222", + "name": "Crop Harvesters", + "cost_min": 2142, + "cost_max": 2613, + "cost_mean": "2378.00", + "homebuy": "86", + "homesell": "85", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 322, + "capacity": 79032, + "buyPrice": 0, + "sellPrice": 2148, + "meanPrice": 2378, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 79032, + "targetStock": 19758, + "stock": 0, + "demand": 14818.5, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.4400" + }, + { + "id": "128049223", + "name": "Marine Supplies", + "cost_min": 4122, + "cost_max": 4826, + "cost_mean": "4474.00", + "homebuy": "90", + "homesell": "89", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 39, + "capacity": 9573, + "buyPrice": 0, + "sellPrice": 4133, + "meanPrice": 4474, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 9573, + "targetStock": 2393, + "stock": 0, + "demand": 1795, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.2400" + }, + { + "id": "128049217", + "name": "Power Generators", + "cost_min": 527, + "cost_max": 734, + "cost_mean": "631.00", + "homebuy": "70", + "homesell": "67", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 21, + "capacity": 5155, + "buyPrice": 0, + "sellPrice": 529, + "meanPrice": 631, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 5155, + "targetStock": 1288, + "stock": 0, + "demand": 966.75, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.2500" + }, + { + "id": "128049218", + "name": "Water Purifiers", + "cost_min": 300, + "cost_max": 456, + "cost_mean": "378.00", + "homebuy": "60", + "homesell": "56", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 37, + "capacity": 9082, + "buyPrice": 0, + "sellPrice": 301, + "meanPrice": 378, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 9082, + "targetStock": 2270, + "stock": 0, + "demand": 1703, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.1400" + }, + { + "id": "128049208", + "name": "Agricultural Medicines", + "cost_min": 1004, + "cost_max": 1303, + "cost_mean": "1154.00", + "homebuy": "79", + "homesell": "77", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 119, + "capacity": 29208, + "buyPrice": 0, + "sellPrice": 1307, + "meanPrice": 1154, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 29208, + "targetStock": 7302, + "stock": 0, + "demand": 21906, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.3600" + }, + { + "id": "128049210", + "name": "Basic Medicines", + "cost_min": 315, + "cost_max": 474, + "cost_mean": "395.00", + "homebuy": "61", + "homesell": "57", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 350, + "capacity": 322143, + "buyPrice": 0, + "sellPrice": 470, + "meanPrice": 395, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 107381, + "targetStock": 26845, + "stock": 0, + "demand": 234896, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.1500" + }, + { + "id": "128049209", + "name": "Performance Enhancers", + "cost_min": 6561, + "cost_max": 7500, + "cost_mean": "7031.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 67, + "capacity": 205557, + "buyPrice": 0, + "sellPrice": 7520, + "meanPrice": 7031, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 205557, + "targetStock": 51389, + "stock": 0, + "demand": 154168, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.1000" + }, + { + "id": "128049669", + "name": "Progenitor Cells", + "cost_min": 6561, + "cost_max": 7500, + "cost_mean": "7031.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 27, + "capacity": 165673, + "buyPrice": 0, + "sellPrice": 7520, + "meanPrice": 7031, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 165673, + "targetStock": 41418, + "stock": 0, + "demand": 124255, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.1000" + }, + { + "id": "128668550", + "name": "Painite", + "cost_min": 30000, + "cost_max": 36000, + "cost_mean": "33000.00", + "homebuy": "100", + "homesell": "100", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 15, + "capacity": 92041, + "buyPrice": 0, + "sellPrice": 36093, + "meanPrice": 33000, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 92041, + "targetStock": 23010, + "stock": 0, + "demand": 69031, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.0000" + }, + { + "id": "128049214", + "name": "Beer", + "cost_min": 175, + "cost_max": 304, + "cost_mean": "240.00", + "homebuy": "43", + "homesell": "37", + "consumebuy": "6", + "baseCreationQty": 755, + "baseConsumptionQty": 4, + "capacity": 58600, + "buyPrice": 108, + "sellPrice": 92, + "meanPrice": 240, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 46327, + "consumptionQty": 12273, + "targetStock": 49395, + "stock": 29009, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Narcotics", + "volumescale": "1.0000" + }, + { + "id": "128049216", + "name": "Liquor", + "cost_min": 624, + "cost_max": 852, + "cost_mean": "738.00", + "homebuy": "73", + "homesell": "70", + "consumebuy": "3", + "baseCreationQty": 179, + "baseConsumptionQty": 1, + "capacity": 812, + "buyPrice": 0, + "sellPrice": 816, + "meanPrice": 738, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 44, + "consumptionQty": 768, + "targetStock": 236, + "stock": 0, + "demand": 533, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Narcotics", + "volumescale": "1.2800" + }, + { + "id": "128049215", + "name": "Wine", + "cost_min": 252, + "cost_max": 396, + "cost_mean": "324.00", + "homebuy": "56", + "homesell": "52", + "consumebuy": "4", + "baseCreationQty": 452, + "baseConsumptionQty": 2, + "capacity": 40008, + "buyPrice": 193, + "sellPrice": 178, + "meanPrice": 324, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 27735, + "consumptionQty": 12273, + "targetStock": 30803, + "stock": 18596, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Narcotics", + "volumescale": "1.1000" + }, + { + "id": "128066403", + "name": "Drones", + "cost_min": 100, + "cost_max": 100, + "cost_mean": "100.00", + "homebuy": "100", + "homesell": "100", + "consumebuy": "1", + "baseCreationQty": 200, + "baseConsumptionQty": 0, + "capacity": 1227203, + "buyPrice": 102, + "sellPrice": 101, + "meanPrice": 100, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 1227203, + "consumptionQty": 0, + "targetStock": 1227203, + "stock": 1227203, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "NonMarketable", + "volumescale": "1.0000" + }, + { + "id": "128671443", + "name": "S A P8 Core Container", + "cost_min": 50000, + "cost_max": 60000, + "cost_mean": "55000.00", + "homebuy": "100", + "homesell": "100", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 200, + "capacity": 1227203, + "buyPrice": 0, + "sellPrice": 60155, + "meanPrice": 55000, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 1227203, + "targetStock": 306800, + "stock": 0, + "demand": 920403, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Salvage", + "volumescale": "1.0000" + }, + { + "id": "128049229", + "name": "Animal Monitors", + "cost_min": 300, + "cost_max": 456, + "cost_mean": "378.00", + "homebuy": "60", + "homesell": "56", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 368, + "capacity": 90323, + "buyPrice": 0, + "sellPrice": 458, + "meanPrice": 378, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 90323, + "targetStock": 22580, + "stock": 0, + "demand": 67743, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.1400" + }, + { + "id": "128049230", + "name": "Aquaponic Systems", + "cost_min": 274, + "cost_max": 424, + "cost_mean": "349.00", + "homebuy": "58", + "homesell": "54", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 408, + "capacity": 100140, + "buyPrice": 0, + "sellPrice": 426, + "meanPrice": 349, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 100140, + "targetStock": 25035, + "stock": 0, + "demand": 75105, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.1200" + }, + { + "id": "128049232", + "name": "Terrain Enrichment Systems", + "cost_min": 4705, + "cost_max": 5470, + "cost_mean": "5088.00", + "homebuy": "91", + "homesell": "90", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 35, + "capacity": 8591, + "buyPrice": 0, + "sellPrice": 5485, + "meanPrice": 5088, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 8591, + "targetStock": 2147, + "stock": 0, + "demand": 6444, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.2000" + }, + { + "id": "128049190", + "name": "Leather", + "cost_min": 175, + "cost_max": 304, + "cost_mean": "240.00", + "homebuy": "43", + "homesell": "37", + "consumebuy": "6", + "baseCreationQty": 75, + "baseConsumptionQty": 0, + "capacity": 4603, + "buyPrice": 101, + "sellPrice": 86, + "meanPrice": 240, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 4603, + "consumptionQty": 0, + "targetStock": 4603, + "stock": 2576, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Textiles", + "volumescale": "1.0000" + }, + { + "id": "128049191", + "name": "Natural Fabrics", + "cost_min": 403, + "cost_max": 583, + "cost_mean": "493.00", + "homebuy": "66", + "homesell": "63", + "consumebuy": "3", + "baseCreationQty": 271, + "baseConsumptionQty": 0, + "capacity": 16629, + "buyPrice": 322, + "sellPrice": 305, + "meanPrice": 493, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 16629, + "consumptionQty": 0, + "targetStock": 16629, + "stock": 9311, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Textiles", + "volumescale": "1.2000" + }, + { + "id": "128049244", + "name": "Biowaste", + "cost_min": 50, + "cost_max": 98, + "cost_mean": "74.00", + "homebuy": "27", + "homesell": "20", + "consumebuy": "7", + "baseCreationQty": 0, + "baseConsumptionQty": 1620, + "capacity": 9940344, + "buyPrice": 0, + "sellPrice": 99, + "meanPrice": 74, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 9940344, + "targetStock": 2485086, + "stock": 0, + "demand": 7439286, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Waste ", + "volumescale": "1.0000" + }, + { + "id": "128049236", + "name": "Non Lethal Weapons", + "cost_min": 1766, + "cost_max": 2185, + "cost_mean": "1976.00", + "homebuy": "84", + "homesell": "82", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 75, + "capacity": 9205, + "buyPrice": 0, + "sellPrice": 2191, + "meanPrice": 1976, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 9205, + "targetStock": 2301, + "stock": 0, + "demand": 6904, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Weapons", + "volumescale": "1.4500" + }, + { + "id": "128049233", + "name": "Personal Weapons", + "cost_min": 4122, + "cost_max": 4826, + "cost_mean": "4474.00", + "homebuy": "90", + "homesell": "89", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 39, + "capacity": 59827, + "buyPrice": 0, + "sellPrice": 4791, + "meanPrice": 4474, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 59827, + "targetStock": 14956, + "stock": 0, + "demand": 42639, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Weapons", + "volumescale": "1.2400" + }, + { + "id": "128049235", + "name": "Reactive Armour", + "cost_min": 2008, + "cost_max": 2461, + "cost_mean": "2235.00", + "homebuy": "85", + "homesell": "84", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 68, + "capacity": 25035, + "buyPrice": 0, + "sellPrice": 2468, + "meanPrice": 2235, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 25035, + "targetStock": 6258, + "stock": 0, + "demand": 18777, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Weapons", + "volumescale": "1.4600" + } + ], + "ships": { + "shipyard_list": { + "Type7": { + "id": 128049297, + "name": "Type7", + "basevalue": 17472252 + }, + "CobraMkIII": { + "id": 128049279, + "name": "CobraMkIII", + "basevalue": 379718 + }, + "Type6": { + "id": 128049285, + "name": "Type6", + "basevalue": 1045945 + }, + "SideWinder": { + "id": 128049249, + "name": "SideWinder", + "basevalue": 32000 + }, + "Eagle": { + "id": 128049255, + "name": "Eagle", + "basevalue": 44800 + }, + "Hauler": { + "id": 128049261, + "name": "Hauler", + "basevalue": 52720 + }, + "Adder": { + "id": 128049267, + "name": "Adder", + "basevalue": 87808 + }, + "Type9": { + "id": 128049333, + "name": "Type9", + "basevalue": 76555842 + } + }, + "unavailable_list": [] + }, + "modules": { + "128049467": { + "id": 128049467, + "category": "weapon", + "name": "Hpt_PlasmaAccelerator_Fixed_Huge", + "cost": 13793600, + "sku": null + }, + "128049466": { + "id": 128049466, + "category": "weapon", + "name": "Hpt_PlasmaAccelerator_Fixed_Large", + "cost": 3051200, + "sku": null + }, + "128049465": { + "id": 128049465, + "category": "weapon", + "name": "Hpt_PlasmaAccelerator_Fixed_Medium", + "cost": 834200, + "sku": null + }, + "128049489": { + "id": 128049489, + "category": "weapon", + "name": "Hpt_Railgun_Fixed_Medium", + "cost": 412800, + "sku": null + }, + "128049488": { + "id": 128049488, + "category": "weapon", + "name": "Hpt_Railgun_Fixed_Small", + "cost": 51600, + "sku": null + }, + "128049493": { + "id": 128049493, + "category": "weapon", + "name": "Hpt_BasicMissileRack_Fixed_Medium", + "cost": 512400, + "sku": null + }, + "128049492": { + "id": 128049492, + "category": "weapon", + "name": "Hpt_BasicMissileRack_Fixed_Small", + "cost": 72600, + "sku": null + }, + "128049510": { + "id": 128049510, + "category": "weapon", + "name": "Hpt_AdvancedTorpPylon_Fixed_Medium", + "cost": 44800, + "sku": null + }, + "128049509": { + "id": 128049509, + "category": "weapon", + "name": "Hpt_AdvancedTorpPylon_Fixed_Small", + "cost": 11200, + "sku": null + }, + "128666725": { + "id": 128666725, + "category": "weapon", + "name": "Hpt_DumbfireMissileRack_Fixed_Medium", + "cost": 240400, + "sku": null + }, + "128666724": { + "id": 128666724, + "category": "weapon", + "name": "Hpt_DumbfireMissileRack_Fixed_Small", + "cost": 32175, + "sku": null + }, + "128049500": { + "id": 128049500, + "category": "weapon", + "name": "Hpt_MineLauncher_Fixed_Small", + "cost": 24260, + "sku": null + }, + "128049463": { + "id": 128049463, + "category": "weapon", + "name": "Hpt_MultiCannon_Turret_Medium", + "cost": 1292800, + "sku": null + }, + "128049459": { + "id": 128049459, + "category": "weapon", + "name": "Hpt_MultiCannon_Gimbal_Small", + "cost": 14250, + "sku": null + }, + "128049460": { + "id": 128049460, + "category": "weapon", + "name": "Hpt_MultiCannon_Gimbal_Medium", + "cost": 57000, + "sku": null + }, + "128049456": { + "id": 128049456, + "category": "weapon", + "name": "Hpt_MultiCannon_Fixed_Medium", + "cost": 38000, + "sku": null + }, + "128049455": { + "id": 128049455, + "category": "weapon", + "name": "Hpt_MultiCannon_Fixed_Small", + "cost": 9500, + "sku": null + }, + "128049441": { + "id": 128049441, + "category": "weapon", + "name": "Hpt_Cannon_Fixed_Huge", + "cost": 2700800, + "sku": null + }, + "128049445": { + "id": 128049445, + "category": "weapon", + "name": "Hpt_Cannon_Turret_Small", + "cost": 506400, + "sku": null + }, + "128671120": { + "id": 128671120, + "category": "weapon", + "name": "Hpt_Cannon_Gimbal_Large", + "cost": 1350400, + "sku": null + }, + "128049446": { + "id": 128049446, + "category": "weapon", + "name": "Hpt_Cannon_Turret_Medium", + "cost": 4051200, + "sku": null + }, + "128049442": { + "id": 128049442, + "category": "weapon", + "name": "Hpt_Cannon_Gimbal_Small", + "cost": 42200, + "sku": null + }, + "128049440": { + "id": 128049440, + "category": "weapon", + "name": "Hpt_Cannon_Fixed_Large", + "cost": 675200, + "sku": null + }, + "128671322": { + "id": 128671322, + "category": "weapon", + "name": "Hpt_Slugshot_Turret_Large", + "cost": 5836800, + "sku": null + }, + "128049454": { + "id": 128049454, + "category": "weapon", + "name": "Hpt_Slugshot_Turret_Medium", + "cost": 1459200, + "sku": null + }, + "128049451": { + "id": 128049451, + "category": "weapon", + "name": "Hpt_Slugshot_Gimbal_Small", + "cost": 54720, + "sku": null + }, + "128049452": { + "id": 128049452, + "category": "weapon", + "name": "Hpt_Slugshot_Gimbal_Medium", + "cost": 437760, + "sku": null + }, + "128049450": { + "id": 128049450, + "category": "weapon", + "name": "Hpt_Slugshot_Fixed_Large", + "cost": 1167360, + "sku": null + }, + "128049437": { + "id": 128049437, + "category": "weapon", + "name": "Hpt_BeamLaser_Turret_Large", + "cost": 19399600, + "sku": null + }, + "128049428": { + "id": 128049428, + "category": "weapon", + "name": "Hpt_BeamLaser_Fixed_Small", + "cost": 37430, + "sku": null + }, + "128049430": { + "id": 128049430, + "category": "weapon", + "name": "Hpt_BeamLaser_Fixed_Large", + "cost": 1177600, + "sku": null + }, + "128049432": { + "id": 128049432, + "category": "weapon", + "name": "Hpt_BeamLaser_Gimbal_Small", + "cost": 74650, + "sku": null + }, + "128049387": { + "id": 128049387, + "category": "weapon", + "name": "Hpt_PulseLaser_Gimbal_Large", + "cost": 140600, + "sku": null + }, + "128049385": { + "id": 128049385, + "category": "weapon", + "name": "Hpt_PulseLaser_Gimbal_Small", + "cost": 6600, + "sku": null + }, + "128049386": { + "id": 128049386, + "category": "weapon", + "name": "Hpt_PulseLaser_Gimbal_Medium", + "cost": 35400, + "sku": null + }, + "128049382": { + "id": 128049382, + "category": "weapon", + "name": "Hpt_PulseLaser_Fixed_Medium", + "cost": 17600, + "sku": null + }, + "128049404": { + "id": 128049404, + "category": "weapon", + "name": "Hpt_PulseLaserBurst_Gimbal_Small", + "cost": 8600, + "sku": null + }, + "128049405": { + "id": 128049405, + "category": "weapon", + "name": "Hpt_PulseLaserBurst_Gimbal_Medium", + "cost": 48500, + "sku": null + }, + "128049401": { + "id": 128049401, + "category": "weapon", + "name": "Hpt_PulseLaserBurst_Fixed_Medium", + "cost": 23000, + "sku": null + }, + "128662534": { + "id": 128662534, + "category": "utility", + "name": "Hpt_CrimeScanner_Size0_Class5", + "cost": 1097095, + "sku": null + }, + "128662533": { + "id": 128662533, + "category": "utility", + "name": "Hpt_CrimeScanner_Size0_Class4", + "cost": 365698, + "sku": null + }, + "128662532": { + "id": 128662532, + "category": "utility", + "name": "Hpt_CrimeScanner_Size0_Class3", + "cost": 121899, + "sku": null + }, + "128662531": { + "id": 128662531, + "category": "utility", + "name": "Hpt_CrimeScanner_Size0_Class2", + "cost": 40633, + "sku": null + }, + "128662524": { + "id": 128662524, + "category": "utility", + "name": "Hpt_CargoScanner_Size0_Class5", + "cost": 1097095, + "sku": null + }, + "128662523": { + "id": 128662523, + "category": "utility", + "name": "Hpt_CargoScanner_Size0_Class4", + "cost": 365698, + "sku": null + }, + "128662521": { + "id": 128662521, + "category": "utility", + "name": "Hpt_CargoScanner_Size0_Class2", + "cost": 40633, + "sku": null + }, + "128662520": { + "id": 128662520, + "category": "utility", + "name": "Hpt_CargoScanner_Size0_Class1", + "cost": 13544, + "sku": null + }, + "128049519": { + "id": 128049519, + "category": "utility", + "name": "Hpt_HeatSinkLauncher_Turret_Tiny", + "cost": 3500, + "sku": null + }, + "128049522": { + "id": 128049522, + "category": "utility", + "name": "Hpt_PlasmaPointDefence_Turret_Tiny", + "cost": 18546, + "sku": null + }, + "128662527": { + "id": 128662527, + "category": "utility", + "name": "Hpt_CloudScanner_Size0_Class3", + "cost": 121899, + "sku": null + }, + "128662526": { + "id": 128662526, + "category": "utility", + "name": "Hpt_CloudScanner_Size0_Class2", + "cost": 40633, + "sku": null + }, + "128662529": { + "id": 128662529, + "category": "utility", + "name": "Hpt_CloudScanner_Size0_Class5", + "cost": 1097095, + "sku": null + }, + "128662528": { + "id": 128662528, + "category": "utility", + "name": "Hpt_CloudScanner_Size0_Class4", + "cost": 365698, + "sku": null + }, + "128049526": { + "id": 128049526, + "category": "utility", + "name": "Hpt_MiningLaser_Fixed_Medium", + "cost": 22576, + "sku": null + }, + "128049525": { + "id": 128049525, + "category": "utility", + "name": "Hpt_MiningLaser_Fixed_Small", + "cost": 6800, + "sku": null + }, + "128049300": { + "id": 128049300, + "category": "module", + "name": "Type7_Armour_Grade3", + "cost": 15725026, + "sku": null + }, + "128049299": { + "id": 128049299, + "category": "module", + "name": "Type7_Armour_Grade2", + "cost": 6988900, + "sku": null + }, + "128049298": { + "id": 128049298, + "category": "module", + "name": "Type7_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049301": { + "id": 128049301, + "category": "module", + "name": "Type7_Armour_Mirrored", + "cost": 37163480, + "sku": null + }, + "128049302": { + "id": 128049302, + "category": "module", + "name": "Type7_Armour_Reactive", + "cost": 41182097, + "sku": null + }, + "128049282": { + "id": 128049282, + "category": "module", + "name": "CobraMkIII_Armour_Grade3", + "cost": 341746, + "sku": null + }, + "128049281": { + "id": 128049281, + "category": "module", + "name": "CobraMkIII_Armour_Grade2", + "cost": 151887, + "sku": null + }, + "128049280": { + "id": 128049280, + "category": "module", + "name": "CobraMkIII_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049283": { + "id": 128049283, + "category": "module", + "name": "CobraMkIII_Armour_Mirrored", + "cost": 797407, + "sku": null + }, + "128049284": { + "id": 128049284, + "category": "module", + "name": "CobraMkIII_Armour_Reactive", + "cost": 894995, + "sku": null + }, + "128049288": { + "id": 128049288, + "category": "module", + "name": "Type6_Armour_Grade3", + "cost": 941350, + "sku": null + }, + "128049287": { + "id": 128049287, + "category": "module", + "name": "Type6_Armour_Grade2", + "cost": 418378, + "sku": null + }, + "128049286": { + "id": 128049286, + "category": "module", + "name": "Type6_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049289": { + "id": 128049289, + "category": "module", + "name": "Type6_Armour_Mirrored", + "cost": 2224725, + "sku": null + }, + "128049290": { + "id": 128049290, + "category": "module", + "name": "Type6_Armour_Reactive", + "cost": 2465292, + "sku": null + }, + "128049252": { + "id": 128049252, + "category": "module", + "name": "SideWinder_Armour_Grade3", + "cost": 80320, + "sku": null + }, + "128049251": { + "id": 128049251, + "category": "module", + "name": "SideWinder_Armour_Grade2", + "cost": 25600, + "sku": null + }, + "128049250": { + "id": 128049250, + "category": "module", + "name": "SideWinder_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049253": { + "id": 128049253, + "category": "module", + "name": "SideWinder_Armour_Mirrored", + "cost": 132064, + "sku": null + }, + "128049254": { + "id": 128049254, + "category": "module", + "name": "SideWinder_Armour_Reactive", + "cost": 139424, + "sku": null + }, + "128049258": { + "id": 128049258, + "category": "module", + "name": "Eagle_Armour_Grade3", + "cost": 90048, + "sku": null + }, + "128049257": { + "id": 128049257, + "category": "module", + "name": "Eagle_Armour_Grade2", + "cost": 26880, + "sku": null + }, + "128049256": { + "id": 128049256, + "category": "module", + "name": "Eagle_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049259": { + "id": 128049259, + "category": "module", + "name": "Eagle_Armour_Mirrored", + "cost": 140089, + "sku": null + }, + "128049260": { + "id": 128049260, + "category": "module", + "name": "Eagle_Armour_Reactive", + "cost": 150393, + "sku": null + }, + "128049264": { + "id": 128049264, + "category": "module", + "name": "Hauler_Armour_Grade3", + "cost": 185047, + "sku": null + }, + "128049263": { + "id": 128049263, + "category": "module", + "name": "Hauler_Armour_Grade2", + "cost": 42176, + "sku": null + }, + "128049262": { + "id": 128049262, + "category": "module", + "name": "Hauler_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049265": { + "id": 128049265, + "category": "module", + "name": "Hauler_Armour_Mirrored", + "cost": 270295, + "sku": null + }, + "128049266": { + "id": 128049266, + "category": "module", + "name": "Hauler_Armour_Reactive", + "cost": 282421, + "sku": null + }, + "128049270": { + "id": 128049270, + "category": "module", + "name": "Adder_Armour_Grade3", + "cost": 79027, + "sku": null + }, + "128049269": { + "id": 128049269, + "category": "module", + "name": "Adder_Armour_Grade2", + "cost": 35123, + "sku": null + }, + "128049268": { + "id": 128049268, + "category": "module", + "name": "Adder_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049271": { + "id": 128049271, + "category": "module", + "name": "Adder_Armour_Mirrored", + "cost": 186767, + "sku": null + }, + "128049272": { + "id": 128049272, + "category": "module", + "name": "Adder_Armour_Reactive", + "cost": 206963, + "sku": null + }, + "128049336": { + "id": 128049336, + "category": "module", + "name": "Type9_Armour_Grade3", + "cost": 68900257, + "sku": null + }, + "128049335": { + "id": 128049335, + "category": "module", + "name": "Type9_Armour_Grade2", + "cost": 30622336, + "sku": null + }, + "128049334": { + "id": 128049334, + "category": "module", + "name": "Type9_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049337": { + "id": 128049337, + "category": "module", + "name": "Type9_Armour_Mirrored", + "cost": 162834275, + "sku": null + }, + "128049338": { + "id": 128049338, + "category": "module", + "name": "Type9_Armour_Reactive", + "cost": 180442119, + "sku": null + }, + "128662535": { + "id": 128662535, + "category": "module", + "name": "Int_StellarBodyDiscoveryScanner_Standard", + "cost": 1000, + "sku": null + }, + "128064338": { + "id": 128064338, + "category": "module", + "name": "Int_CargoRack_Size1_Class1", + "cost": 1000, + "sku": null + }, + "128666684": { + "id": 128666684, + "category": "module", + "name": "Int_Refinery_Size1_Class1", + "cost": 6000, + "sku": null + }, + "128666644": { + "id": 128666644, + "category": "module", + "name": "Int_FuelScoop_Size1_Class1", + "cost": 309, + "sku": null + }, + "128666704": { + "id": 128666704, + "category": "module", + "name": "Int_FSDInterdictor_Size1_Class1", + "cost": 12000, + "sku": null + }, + "128066532": { + "id": 128066532, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size1_Class1", + "cost": 600, + "sku": null + }, + "128064263": { + "id": 128064263, + "category": "module", + "name": "Int_ShieldGenerator_Size2_Class1", + "cost": 1978, + "sku": null + }, + "128064111": { + "id": 128064111, + "category": "module", + "name": "Int_Hyperdrive_Size3_Class4", + "cost": 169304, + "sku": null + }, + "128064106": { + "id": 128064106, + "category": "module", + "name": "Int_Hyperdrive_Size2_Class4", + "cost": 53408, + "sku": null + }, + "128064110": { + "id": 128064110, + "category": "module", + "name": "Int_Hyperdrive_Size3_Class3", + "cost": 56435, + "sku": null + }, + "128064105": { + "id": 128064105, + "category": "module", + "name": "Int_Hyperdrive_Size2_Class3", + "cost": 17803, + "sku": null + }, + "128064109": { + "id": 128064109, + "category": "module", + "name": "Int_Hyperdrive_Size3_Class2", + "cost": 18812, + "sku": null + }, + "128064104": { + "id": 128064104, + "category": "module", + "name": "Int_Hyperdrive_Size2_Class2", + "cost": 5934, + "sku": null + }, + "128064108": { + "id": 128064108, + "category": "module", + "name": "Int_Hyperdrive_Size3_Class1", + "cost": 6271, + "sku": null + }, + "128064103": { + "id": 128064103, + "category": "module", + "name": "Int_Hyperdrive_Size2_Class1", + "cost": 1978, + "sku": null + }, + "128064192": { + "id": 128064192, + "category": "module", + "name": "Int_PowerDistributor_Size3_Class5", + "cost": 158331, + "sku": null + }, + "128064182": { + "id": 128064182, + "category": "module", + "name": "Int_PowerDistributor_Size1_Class5", + "cost": 20195, + "sku": null + }, + "128064191": { + "id": 128064191, + "category": "module", + "name": "Int_PowerDistributor_Size3_Class4", + "cost": 63333, + "sku": null + }, + "128064181": { + "id": 128064181, + "category": "module", + "name": "Int_PowerDistributor_Size1_Class4", + "cost": 8078, + "sku": null + }, + "128064186": { + "id": 128064186, + "category": "module", + "name": "Int_PowerDistributor_Size2_Class4", + "cost": 22619, + "sku": null + }, + "128064190": { + "id": 128064190, + "category": "module", + "name": "Int_PowerDistributor_Size3_Class3", + "cost": 25333, + "sku": null + }, + "128064185": { + "id": 128064185, + "category": "module", + "name": "Int_PowerDistributor_Size2_Class3", + "cost": 9048, + "sku": null + }, + "128064180": { + "id": 128064180, + "category": "module", + "name": "Int_PowerDistributor_Size1_Class3", + "cost": 3231, + "sku": null + }, + "128064189": { + "id": 128064189, + "category": "module", + "name": "Int_PowerDistributor_Size3_Class2", + "cost": 10133, + "sku": null + }, + "128064179": { + "id": 128064179, + "category": "module", + "name": "Int_PowerDistributor_Size1_Class2", + "cost": 1293, + "sku": null + }, + "128064184": { + "id": 128064184, + "category": "module", + "name": "Int_PowerDistributor_Size2_Class2", + "cost": 3619, + "sku": null + }, + "128064188": { + "id": 128064188, + "category": "module", + "name": "Int_PowerDistributor_Size3_Class1", + "cost": 4053, + "sku": null + }, + "128064183": { + "id": 128064183, + "category": "module", + "name": "Int_PowerDistributor_Size2_Class1", + "cost": 1448, + "sku": null + }, + "128064178": { + "id": 128064178, + "category": "module", + "name": "Int_PowerDistributor_Size1_Class1", + "cost": 517, + "sku": null + }, + "128064345": { + "id": 128064345, + "category": "module", + "name": "Int_CargoRack_Size8_Class1", + "cost": 3829866, + "sku": null + }, + "128064344": { + "id": 128064344, + "category": "module", + "name": "Int_CargoRack_Size7_Class1", + "cost": 1178420, + "sku": null + }, + "128064343": { + "id": 128064343, + "category": "module", + "name": "Int_CargoRack_Size6_Class1", + "cost": 362591, + "sku": null + }, + "128064342": { + "id": 128064342, + "category": "module", + "name": "Int_CargoRack_Size5_Class1", + "cost": 111566, + "sku": null + }, + "128064341": { + "id": 128064341, + "category": "module", + "name": "Int_CargoRack_Size4_Class1", + "cost": 34328, + "sku": null + }, + "128064340": { + "id": 128064340, + "category": "module", + "name": "Int_CargoRack_Size3_Class1", + "cost": 10563, + "sku": null + }, + "128064339": { + "id": 128064339, + "category": "module", + "name": "Int_CargoRack_Size2_Class1", + "cost": 3250, + "sku": null + }, + "128064041": { + "id": 128064041, + "category": "module", + "name": "Int_Powerplant_Size3_Class4", + "cost": 169304, + "sku": null + }, + "128064036": { + "id": 128064036, + "category": "module", + "name": "Int_Powerplant_Size2_Class4", + "cost": 53408, + "sku": null + }, + "128064040": { + "id": 128064040, + "category": "module", + "name": "Int_Powerplant_Size3_Class3", + "cost": 56435, + "sku": null + }, + "128064035": { + "id": 128064035, + "category": "module", + "name": "Int_Powerplant_Size2_Class3", + "cost": 17803, + "sku": null + }, + "128064039": { + "id": 128064039, + "category": "module", + "name": "Int_Powerplant_Size3_Class2", + "cost": 18812, + "sku": null + }, + "128064034": { + "id": 128064034, + "category": "module", + "name": "Int_Powerplant_Size2_Class2", + "cost": 5934, + "sku": null + }, + "128064038": { + "id": 128064038, + "category": "module", + "name": "Int_Powerplant_Size3_Class1", + "cost": 6271, + "sku": null + }, + "128064033": { + "id": 128064033, + "category": "module", + "name": "Int_Powerplant_Size2_Class1", + "cost": 1978, + "sku": null + }, + "128663561": { + "id": 128663561, + "category": "module", + "name": "Int_StellarBodyDiscoveryScanner_Advanced", + "cost": 1545000, + "sku": null + }, + "128663560": { + "id": 128663560, + "category": "module", + "name": "Int_StellarBodyDiscoveryScanner_Intermediate", + "cost": 505000, + "sku": null + }, + "128666634": { + "id": 128666634, + "category": "module", + "name": "Int_DetailedSurfaceScanner_Tiny", + "cost": 250000, + "sku": null + }, + "128064197": { + "id": 128064197, + "category": "module", + "name": "Int_PowerDistributor_Size4_Class5", + "cost": 443328, + "sku": null + }, + "128064206": { + "id": 128064206, + "category": "module", + "name": "Int_PowerDistributor_Size6_Class4", + "cost": 1390275, + "sku": null + }, + "128064201": { + "id": 128064201, + "category": "module", + "name": "Int_PowerDistributor_Size5_Class4", + "cost": 496527, + "sku": null + }, + "128064196": { + "id": 128064196, + "category": "module", + "name": "Int_PowerDistributor_Size4_Class4", + "cost": 177331, + "sku": null + }, + "128064205": { + "id": 128064205, + "category": "module", + "name": "Int_PowerDistributor_Size6_Class3", + "cost": 556110, + "sku": null + }, + "128064204": { + "id": 128064204, + "category": "module", + "name": "Int_PowerDistributor_Size6_Class2", + "cost": 222444, + "sku": null + }, + "128064195": { + "id": 128064195, + "category": "module", + "name": "Int_PowerDistributor_Size4_Class3", + "cost": 70932, + "sku": null + }, + "128064199": { + "id": 128064199, + "category": "module", + "name": "Int_PowerDistributor_Size5_Class2", + "cost": 79444, + "sku": null + }, + "128064203": { + "id": 128064203, + "category": "module", + "name": "Int_PowerDistributor_Size6_Class1", + "cost": 88978, + "sku": null + }, + "128064194": { + "id": 128064194, + "category": "module", + "name": "Int_PowerDistributor_Size4_Class2", + "cost": 28373, + "sku": null + }, + "128064198": { + "id": 128064198, + "category": "module", + "name": "Int_PowerDistributor_Size5_Class1", + "cost": 31778, + "sku": null + }, + "128064193": { + "id": 128064193, + "category": "module", + "name": "Int_PowerDistributor_Size4_Class1", + "cost": 11349, + "sku": null + }, + "128064311": { + "id": 128064311, + "category": "module", + "name": "Int_ShieldCellBank_Size3_Class4", + "cost": 63333, + "sku": null + }, + "128064301": { + "id": 128064301, + "category": "module", + "name": "Int_ShieldCellBank_Size1_Class4", + "cost": 8078, + "sku": null + }, + "128064306": { + "id": 128064306, + "category": "module", + "name": "Int_ShieldCellBank_Size2_Class4", + "cost": 22619, + "sku": null + }, + "128064310": { + "id": 128064310, + "category": "module", + "name": "Int_ShieldCellBank_Size3_Class3", + "cost": 25333, + "sku": null + }, + "128064305": { + "id": 128064305, + "category": "module", + "name": "Int_ShieldCellBank_Size2_Class3", + "cost": 9048, + "sku": null + }, + "128064300": { + "id": 128064300, + "category": "module", + "name": "Int_ShieldCellBank_Size1_Class3", + "cost": 3231, + "sku": null + }, + "128064309": { + "id": 128064309, + "category": "module", + "name": "Int_ShieldCellBank_Size3_Class2", + "cost": 10133, + "sku": null + }, + "128064299": { + "id": 128064299, + "category": "module", + "name": "Int_ShieldCellBank_Size1_Class2", + "cost": 1293, + "sku": null + }, + "128064304": { + "id": 128064304, + "category": "module", + "name": "Int_ShieldCellBank_Size2_Class2", + "cost": 3619, + "sku": null + }, + "128064308": { + "id": 128064308, + "category": "module", + "name": "Int_ShieldCellBank_Size3_Class1", + "cost": 4053, + "sku": null + }, + "128064303": { + "id": 128064303, + "category": "module", + "name": "Int_ShieldCellBank_Size2_Class1", + "cost": 1448, + "sku": null + }, + "128064298": { + "id": 128064298, + "category": "module", + "name": "Int_ShieldCellBank_Size1_Class1", + "cost": 517, + "sku": null + }, + "128064353": { + "id": 128064353, + "category": "module", + "name": "Int_FuelTank_Size8_Class3", + "cost": 5428429, + "sku": null + }, + "128064352": { + "id": 128064352, + "category": "module", + "name": "Int_FuelTank_Size7_Class3", + "cost": 1780914, + "sku": null + }, + "128064351": { + "id": 128064351, + "category": "module", + "name": "Int_FuelTank_Size6_Class3", + "cost": 341577, + "sku": null + }, + "128064350": { + "id": 128064350, + "category": "module", + "name": "Int_FuelTank_Size5_Class3", + "cost": 97754, + "sku": null + }, + "128064349": { + "id": 128064349, + "category": "module", + "name": "Int_FuelTank_Size4_Class3", + "cost": 24734, + "sku": null + }, + "128064348": { + "id": 128064348, + "category": "module", + "name": "Int_FuelTank_Size3_Class3", + "cost": 7063, + "sku": null + }, + "128064347": { + "id": 128064347, + "category": "module", + "name": "Int_FuelTank_Size2_Class3", + "cost": 3750, + "sku": null + }, + "128064346": { + "id": 128064346, + "category": "module", + "name": "Int_FuelTank_Size1_Class3", + "cost": 1000, + "sku": null + }, + "128666723": { + "id": 128666723, + "category": "module", + "name": "Int_FSDInterdictor_Size4_Class5", + "cost": 21337344, + "sku": null + }, + "128666719": { + "id": 128666719, + "category": "module", + "name": "Int_FSDInterdictor_Size4_Class4", + "cost": 7112448, + "sku": null + }, + "128666715": { + "id": 128666715, + "category": "module", + "name": "Int_FSDInterdictor_Size4_Class3", + "cost": 2370816, + "sku": null + }, + "128666722": { + "id": 128666722, + "category": "module", + "name": "Int_FSDInterdictor_Size3_Class5", + "cost": 7620480, + "sku": null + }, + "128666718": { + "id": 128666718, + "category": "module", + "name": "Int_FSDInterdictor_Size3_Class4", + "cost": 2540160, + "sku": null + }, + "128666714": { + "id": 128666714, + "category": "module", + "name": "Int_FSDInterdictor_Size3_Class3", + "cost": 846720, + "sku": null + }, + "128666711": { + "id": 128666711, + "category": "module", + "name": "Int_FSDInterdictor_Size4_Class2", + "cost": 790272, + "sku": null + }, + "128666707": { + "id": 128666707, + "category": "module", + "name": "Int_FSDInterdictor_Size4_Class1", + "cost": 263424, + "sku": null + }, + "128666710": { + "id": 128666710, + "category": "module", + "name": "Int_FSDInterdictor_Size3_Class2", + "cost": 282240, + "sku": null + }, + "128666706": { + "id": 128666706, + "category": "module", + "name": "Int_FSDInterdictor_Size3_Class1", + "cost": 94080, + "sku": null + }, + "128066540": { + "id": 128066540, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size3_Class4", + "cost": 43200, + "sku": null + }, + "128066535": { + "id": 128066535, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size1_Class4", + "cost": 4800, + "sku": null + }, + "128066539": { + "id": 128066539, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size3_Class3", + "cost": 21600, + "sku": null + }, + "128066534": { + "id": 128066534, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size1_Class3", + "cost": 2400, + "sku": null + }, + "128066538": { + "id": 128066538, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size3_Class2", + "cost": 10800, + "sku": null + }, + "128066533": { + "id": 128066533, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size1_Class2", + "cost": 1200, + "sku": null + }, + "128066537": { + "id": 128066537, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size3_Class1", + "cost": 5400, + "sku": null + }, + "128666683": { + "id": 128666683, + "category": "module", + "name": "Int_FuelScoop_Size8_Class5", + "cost": 289042641, + "sku": null + }, + "128666675": { + "id": 128666675, + "category": "module", + "name": "Int_FuelScoop_Size8_Class4", + "cost": 72260660, + "sku": null + }, + "128666682": { + "id": 128666682, + "category": "module", + "name": "Int_FuelScoop_Size7_Class5", + "cost": 91180644, + "sku": null + }, + "128666674": { + "id": 128666674, + "category": "module", + "name": "Int_FuelScoop_Size7_Class4", + "cost": 22795161, + "sku": null + }, + "128666667": { + "id": 128666667, + "category": "module", + "name": "Int_FuelScoop_Size8_Class3", + "cost": 18065165, + "sku": null + }, + "128666666": { + "id": 128666666, + "category": "module", + "name": "Int_FuelScoop_Size7_Class3", + "cost": 5698790, + "sku": null + }, + "128666659": { + "id": 128666659, + "category": "module", + "name": "Int_FuelScoop_Size8_Class2", + "cost": 4516291, + "sku": null + }, + "128666658": { + "id": 128666658, + "category": "module", + "name": "Int_FuelScoop_Size7_Class2", + "cost": 1424698, + "sku": null + }, + "128666651": { + "id": 128666651, + "category": "module", + "name": "Int_FuelScoop_Size8_Class1", + "cost": 1083910, + "sku": null + }, + "128666650": { + "id": 128666650, + "category": "module", + "name": "Int_FuelScoop_Size7_Class1", + "cost": 341927, + "sku": null + }, + "128064151": { + "id": 128064151, + "category": "module", + "name": "Int_LifeSupport_Size3_Class4", + "cost": 63333, + "sku": null + }, + "128064141": { + "id": 128064141, + "category": "module", + "name": "Int_LifeSupport_Size1_Class4", + "cost": 8078, + "sku": null + }, + "128064146": { + "id": 128064146, + "category": "module", + "name": "Int_LifeSupport_Size2_Class4", + "cost": 22619, + "sku": null + }, + "128064150": { + "id": 128064150, + "category": "module", + "name": "Int_LifeSupport_Size3_Class3", + "cost": 25333, + "sku": null + }, + "128064145": { + "id": 128064145, + "category": "module", + "name": "Int_LifeSupport_Size2_Class3", + "cost": 9048, + "sku": null + }, + "128064140": { + "id": 128064140, + "category": "module", + "name": "Int_LifeSupport_Size1_Class3", + "cost": 3231, + "sku": null + }, + "128064149": { + "id": 128064149, + "category": "module", + "name": "Int_LifeSupport_Size3_Class2", + "cost": 10133, + "sku": null + }, + "128064139": { + "id": 128064139, + "category": "module", + "name": "Int_LifeSupport_Size1_Class2", + "cost": 1293, + "sku": null + }, + "128064144": { + "id": 128064144, + "category": "module", + "name": "Int_LifeSupport_Size2_Class2", + "cost": 3619, + "sku": null + }, + "128064148": { + "id": 128064148, + "category": "module", + "name": "Int_LifeSupport_Size3_Class1", + "cost": 4053, + "sku": null + }, + "128064143": { + "id": 128064143, + "category": "module", + "name": "Int_LifeSupport_Size2_Class1", + "cost": 1448, + "sku": null + }, + "128064138": { + "id": 128064138, + "category": "module", + "name": "Int_LifeSupport_Size1_Class1", + "cost": 517, + "sku": null + }, + "128667605": { + "id": 128667605, + "category": "module", + "name": "Int_Repairer_Size8_Class1", + "cost": 612220, + "sku": null + }, + "128667611": { + "id": 128667611, + "category": "module", + "name": "Int_Repairer_Size6_Class2", + "cost": 566870, + "sku": null + }, + "128667604": { + "id": 128667604, + "category": "module", + "name": "Int_Repairer_Size7_Class1", + "cost": 340122, + "sku": null + }, + "128667610": { + "id": 128667610, + "category": "module", + "name": "Int_Repairer_Size5_Class2", + "cost": 314928, + "sku": null + }, + "128667616": { + "id": 128667616, + "category": "module", + "name": "Int_Repairer_Size3_Class3", + "cost": 291600, + "sku": null + }, + "128667623": { + "id": 128667623, + "category": "module", + "name": "Int_Repairer_Size2_Class4", + "cost": 486000, + "sku": null + }, + "128667615": { + "id": 128667615, + "category": "module", + "name": "Int_Repairer_Size2_Class3", + "cost": 162000, + "sku": null + }, + "128667609": { + "id": 128667609, + "category": "module", + "name": "Int_Repairer_Size4_Class2", + "cost": 174960, + "sku": null + }, + "128667603": { + "id": 128667603, + "category": "module", + "name": "Int_Repairer_Size6_Class1", + "cost": 188957, + "sku": null + }, + "128667602": { + "id": 128667602, + "category": "module", + "name": "Int_Repairer_Size5_Class1", + "cost": 104976, + "sku": null + }, + "128667608": { + "id": 128667608, + "category": "module", + "name": "Int_Repairer_Size3_Class2", + "cost": 97200, + "sku": null + }, + "128667614": { + "id": 128667614, + "category": "module", + "name": "Int_Repairer_Size1_Class3", + "cost": 90000, + "sku": null + }, + "128667601": { + "id": 128667601, + "category": "module", + "name": "Int_Repairer_Size4_Class1", + "cost": 58320, + "sku": null + }, + "128064076": { + "id": 128064076, + "category": "module", + "name": "Int_Engine_Size3_Class4", + "cost": 169304, + "sku": null + }, + "128064071": { + "id": 128064071, + "category": "module", + "name": "Int_Engine_Size2_Class4", + "cost": 53408, + "sku": null + }, + "128064070": { + "id": 128064070, + "category": "module", + "name": "Int_Engine_Size2_Class3", + "cost": 17803, + "sku": null + }, + "128064074": { + "id": 128064074, + "category": "module", + "name": "Int_Engine_Size3_Class2", + "cost": 18812, + "sku": null + }, + "128064069": { + "id": 128064069, + "category": "module", + "name": "Int_Engine_Size2_Class2", + "cost": 5934, + "sku": null + }, + "128064073": { + "id": 128064073, + "category": "module", + "name": "Int_Engine_Size3_Class1", + "cost": 6271, + "sku": null + }, + "128064068": { + "id": 128064068, + "category": "module", + "name": "Int_Engine_Size2_Class1", + "cost": 1978, + "sku": null + }, + "128064337": { + "id": 128064337, + "category": "module", + "name": "Int_ShieldCellBank_Size8_Class5", + "cost": 27249391, + "sku": null + }, + "128064331": { + "id": 128064331, + "category": "module", + "name": "Int_ShieldCellBank_Size7_Class4", + "cost": 3892770, + "sku": null + }, + "128064335": { + "id": 128064335, + "category": "module", + "name": "Int_ShieldCellBank_Size8_Class3", + "cost": 4359903, + "sku": null + }, + "128064330": { + "id": 128064330, + "category": "module", + "name": "Int_ShieldCellBank_Size7_Class3", + "cost": 1557108, + "sku": null + }, + "128064334": { + "id": 128064334, + "category": "module", + "name": "Int_ShieldCellBank_Size8_Class2", + "cost": 1743961, + "sku": null + }, + "128064329": { + "id": 128064329, + "category": "module", + "name": "Int_ShieldCellBank_Size7_Class2", + "cost": 622843, + "sku": null + }, + "128064333": { + "id": 128064333, + "category": "module", + "name": "Int_ShieldCellBank_Size8_Class1", + "cost": 697584, + "sku": null + }, + "128064328": { + "id": 128064328, + "category": "module", + "name": "Int_ShieldCellBank_Size7_Class1", + "cost": 249137, + "sku": null + }, + "128064177": { + "id": 128064177, + "category": "module", + "name": "Int_LifeSupport_Size8_Class5", + "cost": 27249391, + "sku": null + }, + "128064172": { + "id": 128064172, + "category": "module", + "name": "Int_LifeSupport_Size7_Class5", + "cost": 9731925, + "sku": null + }, + "128064171": { + "id": 128064171, + "category": "module", + "name": "Int_LifeSupport_Size7_Class4", + "cost": 3892770, + "sku": null + }, + "128064175": { + "id": 128064175, + "category": "module", + "name": "Int_LifeSupport_Size8_Class3", + "cost": 4359903, + "sku": null + }, + "128064170": { + "id": 128064170, + "category": "module", + "name": "Int_LifeSupport_Size7_Class3", + "cost": 1557108, + "sku": null + }, + "128064174": { + "id": 128064174, + "category": "module", + "name": "Int_LifeSupport_Size8_Class2", + "cost": 1743961, + "sku": null + }, + "128064169": { + "id": 128064169, + "category": "module", + "name": "Int_LifeSupport_Size7_Class2", + "cost": 622843, + "sku": null + }, + "128064173": { + "id": 128064173, + "category": "module", + "name": "Int_LifeSupport_Size8_Class1", + "cost": 697584, + "sku": null + }, + "128064168": { + "id": 128064168, + "category": "module", + "name": "Int_LifeSupport_Size7_Class1", + "cost": 249137, + "sku": null + }, + "128066551": { + "id": 128066551, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size7_Class5", + "cost": 6998400, + "sku": null + }, + "128066545": { + "id": 128066545, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size5_Class4", + "cost": 388800, + "sku": null + }, + "128066549": { + "id": 128066549, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size7_Class3", + "cost": 1749600, + "sku": null + }, + "128066548": { + "id": 128066548, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size7_Class2", + "cost": 874800, + "sku": null + }, + "128066547": { + "id": 128066547, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size7_Class1", + "cost": 437400, + "sku": null + }, + "128066543": { + "id": 128066543, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size5_Class2", + "cost": 97200, + "sku": null + }, + "128066542": { + "id": 128066542, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size5_Class1", + "cost": 48600, + "sku": null + }, + "128064271": { + "id": 128064271, + "category": "module", + "name": "Int_ShieldGenerator_Size3_Class4", + "cost": 169304, + "sku": null + }, + "128064266": { + "id": 128064266, + "category": "module", + "name": "Int_ShieldGenerator_Size2_Class4", + "cost": 53408, + "sku": null + }, + "128064270": { + "id": 128064270, + "category": "module", + "name": "Int_ShieldGenerator_Size3_Class3", + "cost": 56435, + "sku": null + }, + "128064265": { + "id": 128064265, + "category": "module", + "name": "Int_ShieldGenerator_Size2_Class3", + "cost": 17803, + "sku": null + }, + "128064269": { + "id": 128064269, + "category": "module", + "name": "Int_ShieldGenerator_Size3_Class2", + "cost": 18812, + "sku": null + }, + "128064264": { + "id": 128064264, + "category": "module", + "name": "Int_ShieldGenerator_Size2_Class2", + "cost": 5934, + "sku": null + }, + "128064268": { + "id": 128064268, + "category": "module", + "name": "Int_ShieldGenerator_Size3_Class1", + "cost": 6271, + "sku": null + }, + "128671252": { + "id": 128671252, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size1_Class4", + "cost": 4800, + "sku": null + }, + "128671264": { + "id": 128671264, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size7_Class1", + "cost": 437400, + "sku": null + }, + "128671260": { + "id": 128671260, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size5_Class2", + "cost": 97200, + "sku": null + }, + "128671256": { + "id": 128671256, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size3_Class3", + "cost": 21600, + "sku": null + }, + "128671251": { + "id": 128671251, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size1_Class3", + "cost": 2400, + "sku": null + }, + "128671259": { + "id": 128671259, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size5_Class1", + "cost": 48600, + "sku": null + }, + "128671255": { + "id": 128671255, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size3_Class2", + "cost": 10800, + "sku": null + }, + "128671250": { + "id": 128671250, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size1_Class2", + "cost": 1200, + "sku": null + }, + "128671254": { + "id": 128671254, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size3_Class1", + "cost": 5400, + "sku": null + }, + "128671249": { + "id": 128671249, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size1_Class1", + "cost": 600, + "sku": null + }, + "128064067": { + "id": 128064067, + "category": "module", + "name": "Int_Powerplant_Size8_Class5", + "cost": 162586486, + "sku": null + }, + "128064062": { + "id": 128064062, + "category": "module", + "name": "Int_Powerplant_Size7_Class5", + "cost": 51289112, + "sku": null + }, + "128064066": { + "id": 128064066, + "category": "module", + "name": "Int_Powerplant_Size8_Class4", + "cost": 54195495, + "sku": null + }, + "128064065": { + "id": 128064065, + "category": "module", + "name": "Int_Powerplant_Size8_Class3", + "cost": 18065165, + "sku": null + }, + "128064060": { + "id": 128064060, + "category": "module", + "name": "Int_Powerplant_Size7_Class3", + "cost": 5698790, + "sku": null + }, + "128064064": { + "id": 128064064, + "category": "module", + "name": "Int_Powerplant_Size8_Class2", + "cost": 6021722, + "sku": null + }, + "128064059": { + "id": 128064059, + "category": "module", + "name": "Int_Powerplant_Size7_Class2", + "cost": 1899597, + "sku": null + }, + "128064063": { + "id": 128064063, + "category": "module", + "name": "Int_Powerplant_Size8_Class1", + "cost": 2007241, + "sku": null + }, + "128064058": { + "id": 128064058, + "category": "module", + "name": "Int_Powerplant_Size7_Class1", + "cost": 633199, + "sku": null + }, + "128064097": { + "id": 128064097, + "category": "module", + "name": "Int_Engine_Size7_Class5", + "cost": 51289112, + "sku": null + }, + "128064101": { + "id": 128064101, + "category": "module", + "name": "Int_Engine_Size8_Class4", + "cost": 54195495, + "sku": null + }, + "128064096": { + "id": 128064096, + "category": "module", + "name": "Int_Engine_Size7_Class4", + "cost": 17096371, + "sku": null + }, + "128064100": { + "id": 128064100, + "category": "module", + "name": "Int_Engine_Size8_Class3", + "cost": 18065165, + "sku": null + }, + "128064095": { + "id": 128064095, + "category": "module", + "name": "Int_Engine_Size7_Class3", + "cost": 5698790, + "sku": null + }, + "128064099": { + "id": 128064099, + "category": "module", + "name": "Int_Engine_Size8_Class2", + "cost": 6021722, + "sku": null + }, + "128064094": { + "id": 128064094, + "category": "module", + "name": "Int_Engine_Size7_Class2", + "cost": 1899597, + "sku": null + }, + "128064098": { + "id": 128064098, + "category": "module", + "name": "Int_Engine_Size8_Class1", + "cost": 2007241, + "sku": null + }, + "128064093": { + "id": 128064093, + "category": "module", + "name": "Int_Engine_Size7_Class1", + "cost": 633199, + "sku": null + }, + "128064136": { + "id": 128064136, + "category": "module", + "name": "Int_Hyperdrive_Size8_Class4", + "cost": 54195495, + "sku": null + }, + "128064135": { + "id": 128064135, + "category": "module", + "name": "Int_Hyperdrive_Size8_Class3", + "cost": 18065165, + "sku": null + }, + "128064130": { + "id": 128064130, + "category": "module", + "name": "Int_Hyperdrive_Size7_Class3", + "cost": 5698790, + "sku": null + }, + "128064134": { + "id": 128064134, + "category": "module", + "name": "Int_Hyperdrive_Size8_Class2", + "cost": 6021722, + "sku": null + }, + "128064129": { + "id": 128064129, + "category": "module", + "name": "Int_Hyperdrive_Size7_Class2", + "cost": 1899597, + "sku": null + }, + "128064133": { + "id": 128064133, + "category": "module", + "name": "Int_Hyperdrive_Size8_Class1", + "cost": 2007241, + "sku": null + }, + "128064128": { + "id": 128064128, + "category": "module", + "name": "Int_Hyperdrive_Size7_Class1", + "cost": 633199, + "sku": null + }, + "128064242": { + "id": 128064242, + "category": "module", + "name": "Int_Sensors_Size5_Class5", + "cost": 1241317, + "sku": null + }, + "128064237": { + "id": 128064237, + "category": "module", + "name": "Int_Sensors_Size4_Class5", + "cost": 443328, + "sku": null + }, + "128064246": { + "id": 128064246, + "category": "module", + "name": "Int_Sensors_Size6_Class4", + "cost": 1390275, + "sku": null + }, + "128064241": { + "id": 128064241, + "category": "module", + "name": "Int_Sensors_Size5_Class4", + "cost": 496527, + "sku": null + }, + "128064236": { + "id": 128064236, + "category": "module", + "name": "Int_Sensors_Size4_Class4", + "cost": 177331, + "sku": null + }, + "128064245": { + "id": 128064245, + "category": "module", + "name": "Int_Sensors_Size6_Class3", + "cost": 556110, + "sku": null + }, + "128064244": { + "id": 128064244, + "category": "module", + "name": "Int_Sensors_Size6_Class2", + "cost": 222444, + "sku": null + }, + "128064235": { + "id": 128064235, + "category": "module", + "name": "Int_Sensors_Size4_Class3", + "cost": 70932, + "sku": null + }, + "128671262": { + "id": 128671262, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size5_Class4", + "cost": 388800, + "sku": null + }, + "128671257": { + "id": 128671257, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size3_Class4", + "cost": 43200, + "sku": null + }, + "128671265": { + "id": 128671265, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size7_Class2", + "cost": 874800, + "sku": null + }, + "128671261": { + "id": 128671261, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size5_Class3", + "cost": 194400, + "sku": null + }, + "128064292": { + "id": 128064292, + "category": "module", + "name": "Int_ShieldGenerator_Size7_Class5", + "cost": 51289112, + "sku": null + }, + "128064291": { + "id": 128064291, + "category": "module", + "name": "Int_ShieldGenerator_Size7_Class4", + "cost": 17096371, + "sku": null + }, + "128064295": { + "id": 128064295, + "category": "module", + "name": "Int_ShieldGenerator_Size8_Class3", + "cost": 18065165, + "sku": null + }, + "128064294": { + "id": 128064294, + "category": "module", + "name": "Int_ShieldGenerator_Size8_Class2", + "cost": 6021722, + "sku": null + }, + "128064289": { + "id": 128064289, + "category": "module", + "name": "Int_ShieldGenerator_Size7_Class2", + "cost": 1899597, + "sku": null + }, + "128064293": { + "id": 128064293, + "category": "module", + "name": "Int_ShieldGenerator_Size8_Class1", + "cost": 2007241, + "sku": null + }, + "128064288": { + "id": 128064288, + "category": "module", + "name": "Int_ShieldGenerator_Size7_Class1", + "cost": 633199, + "sku": null + }, + "128064232": { + "id": 128064232, + "category": "module", + "name": "Int_Sensors_Size3_Class5", + "cost": 158331, + "sku": null + }, + "128064222": { + "id": 128064222, + "category": "module", + "name": "Int_Sensors_Size1_Class5", + "cost": 20195, + "sku": null + }, + "128064231": { + "id": 128064231, + "category": "module", + "name": "Int_Sensors_Size3_Class4", + "cost": 63333, + "sku": null + }, + "128064221": { + "id": 128064221, + "category": "module", + "name": "Int_Sensors_Size1_Class4", + "cost": 8078, + "sku": null + }, + "128064226": { + "id": 128064226, + "category": "module", + "name": "Int_Sensors_Size2_Class4", + "cost": 22619, + "sku": null + }, + "128064230": { + "id": 128064230, + "category": "module", + "name": "Int_Sensors_Size3_Class3", + "cost": 25333, + "sku": null + }, + "128064225": { + "id": 128064225, + "category": "module", + "name": "Int_Sensors_Size2_Class3", + "cost": 9048, + "sku": null + }, + "128666681": { + "id": 128666681, + "category": "module", + "name": "Int_FuelScoop_Size6_Class5", + "cost": 28763610, + "sku": null + }, + "128666673": { + "id": 128666673, + "category": "module", + "name": "Int_FuelScoop_Size6_Class4", + "cost": 7190903, + "sku": null + }, + "128666665": { + "id": 128666665, + "category": "module", + "name": "Int_FuelScoop_Size6_Class3", + "cost": 1797726, + "sku": null + }, + "128666672": { + "id": 128666672, + "category": "module", + "name": "Int_FuelScoop_Size5_Class4", + "cost": 2268424, + "sku": null + }, + "128666679": { + "id": 128666679, + "category": "module", + "name": "Int_FuelScoop_Size4_Class5", + "cost": 2862364, + "sku": null + }, + "128666671": { + "id": 128666671, + "category": "module", + "name": "Int_FuelScoop_Size4_Class4", + "cost": 715591, + "sku": null + }, + "128064327": { + "id": 128064327, + "category": "module", + "name": "Int_ShieldCellBank_Size6_Class5", + "cost": 3475688, + "sku": null + }, + "128064317": { + "id": 128064317, + "category": "module", + "name": "Int_ShieldCellBank_Size4_Class5", + "cost": 443328, + "sku": null + }, + "128064326": { + "id": 128064326, + "category": "module", + "name": "Int_ShieldCellBank_Size6_Class4", + "cost": 1390275, + "sku": null + }, + "128064321": { + "id": 128064321, + "category": "module", + "name": "Int_ShieldCellBank_Size5_Class4", + "cost": 496527, + "sku": null + }, + "128064316": { + "id": 128064316, + "category": "module", + "name": "Int_ShieldCellBank_Size4_Class4", + "cost": 177331, + "sku": null + }, + "128064324": { + "id": 128064324, + "category": "module", + "name": "Int_ShieldCellBank_Size6_Class2", + "cost": 222444, + "sku": null + }, + "128668546": { + "id": 128668546, + "category": "module", + "name": "Int_HullReinforcement_Size5_Class2", + "cost": 450000, + "sku": null + }, + "128668544": { + "id": 128668544, + "category": "module", + "name": "Int_HullReinforcement_Size4_Class2", + "cost": 195000, + "sku": null + }, + "128668542": { + "id": 128668542, + "category": "module", + "name": "Int_HullReinforcement_Size3_Class2", + "cost": 84000, + "sku": null + }, + "128668540": { + "id": 128668540, + "category": "module", + "name": "Int_HullReinforcement_Size2_Class2", + "cost": 36000, + "sku": null + }, + "128671247": { + "id": 128671247, + "category": "module", + "name": "Int_DroneControl_Collection_Size7_Class4", + "cost": 3499200, + "sku": null + }, + "128671242": { + "id": 128671242, + "category": "module", + "name": "Int_DroneControl_Collection_Size5_Class4", + "cost": 388800, + "sku": null + }, + "128671246": { + "id": 128671246, + "category": "module", + "name": "Int_DroneControl_Collection_Size7_Class3", + "cost": 1749600, + "sku": null + }, + "128671237": { + "id": 128671237, + "category": "module", + "name": "Int_DroneControl_Collection_Size3_Class4", + "cost": 43200, + "sku": null + }, + "128671245": { + "id": 128671245, + "category": "module", + "name": "Int_DroneControl_Collection_Size7_Class2", + "cost": 874800, + "sku": null + }, + "128064052": { + "id": 128064052, + "category": "module", + "name": "Int_Powerplant_Size5_Class5", + "cost": 5103953, + "sku": null + }, + "128064047": { + "id": 128064047, + "category": "module", + "name": "Int_Powerplant_Size4_Class5", + "cost": 1610080, + "sku": null + }, + "128064051": { + "id": 128064051, + "category": "module", + "name": "Int_Powerplant_Size5_Class4", + "cost": 1701318, + "sku": null + }, + "128064055": { + "id": 128064055, + "category": "module", + "name": "Int_Powerplant_Size6_Class3", + "cost": 1797726, + "sku": null + }, + "128064162": { + "id": 128064162, + "category": "module", + "name": "Int_LifeSupport_Size5_Class5", + "cost": 1241317, + "sku": null + }, + "128064166": { + "id": 128064166, + "category": "module", + "name": "Int_LifeSupport_Size6_Class4", + "cost": 1390275, + "sku": null + }, + "128064161": { + "id": 128064161, + "category": "module", + "name": "Int_LifeSupport_Size5_Class4", + "cost": 496527, + "sku": null + }, + "128668536": { + "id": 128668536, + "category": "module", + "name": "Hpt_ShieldBooster_Size0_Class5", + "cost": 281000, + "sku": null + }, + "128668535": { + "id": 128668535, + "category": "module", + "name": "Hpt_ShieldBooster_Size0_Class4", + "cost": 122000, + "sku": null + }, + "128668534": { + "id": 128668534, + "category": "module", + "name": "Hpt_ShieldBooster_Size0_Class3", + "cost": 53000, + "sku": null + }, + "128668545": { + "id": 128668545, + "category": "module", + "name": "Int_HullReinforcement_Size5_Class1", + "cost": 150000, + "sku": null + }, + "128668543": { + "id": 128668543, + "category": "module", + "name": "Int_HullReinforcement_Size4_Class1", + "cost": 65000, + "sku": null + }, + "128064087": { + "id": 128064087, + "category": "module", + "name": "Int_Engine_Size5_Class5", + "cost": 5103953, + "sku": null + }, + "128667727": { + "id": 128667727, + "category": "paintjob", + "name": "paintjob_CobraMkiii_Default_52", + "cost": 0, + "sku": null + }, + "128667729": { + "id": 128667729, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Faction1_01", + "cost": 0, + "sku": null + }, + "128667730": { + "id": 128667730, + "category": "paintjob", + "name": "PaintJob_Eagle_Faction1_01", + "cost": 0, + "sku": null + }, + "128667731": { + "id": 128667731, + "category": "paintjob", + "name": "PaintJob_FedDropship_Faction1_01", + "cost": 0, + "sku": null + }, + "128667732": { + "id": 128667732, + "category": "paintjob", + "name": "PaintJob_SideWinder_Faction1_01", + "cost": 0, + "sku": null + }, + "128667733": { + "id": 128667733, + "category": "paintjob", + "name": "PaintJob_Viper_Faction1_01", + "cost": 0, + "sku": null + }, + "128667734": { + "id": 128667734, + "category": "paintjob", + "name": "PaintJob_Python_Faction1_01", + "cost": 0, + "sku": null + }, + "128066428": { + "id": 128066428, + "category": "paintjob", + "name": "paintjob_cobramkiii_wireframe_01", + "cost": 0, + "sku": null + }, + "128667638": { + "id": 128667638, + "category": "paintjob", + "name": "PaintJob_Sidewinder_Merc", + "cost": 0, + "sku": null + }, + "128667639": { + "id": 128667639, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Merc", + "cost": 0, + "sku": null + }, + "128066405": { + "id": 128066405, + "category": "paintjob", + "name": "paintjob_eagle_stripe1_02", + "cost": 0, + "sku": null + }, + "128066406": { + "id": 128066406, + "category": "paintjob", + "name": "paintjob_eagle_doublestripe_01", + "cost": 0, + "sku": null + }, + "128066416": { + "id": 128066416, + "category": "paintjob", + "name": "paintjob_eagle_thirds_01", + "cost": 0, + "sku": null + }, + "128066419": { + "id": 128066419, + "category": "paintjob", + "name": "paintjob_eagle_stripe1_03", + "cost": 0, + "sku": null + }, + "128668019": { + "id": 128668019, + "category": "paintjob", + "name": "PaintJob_Eagle_Crimson", + "cost": 0, + "sku": null + }, + "128066420": { + "id": 128066420, + "category": "paintjob", + "name": "paintjob_eagle_thirds_02", + "cost": 0, + "sku": null + }, + "128066430": { + "id": 128066430, + "category": "paintjob", + "name": "paintjob_eagle_stripe1_01", + "cost": 0, + "sku": null + }, + "128066436": { + "id": 128066436, + "category": "paintjob", + "name": "paintjob_eagle_camo_03", + "cost": 0, + "sku": null + }, + "128066437": { + "id": 128066437, + "category": "paintjob", + "name": "paintjob_eagle_thirds_03", + "cost": 0, + "sku": null + }, + "128066441": { + "id": 128066441, + "category": "paintjob", + "name": "paintjob_eagle_camo_02", + "cost": 0, + "sku": null + }, + "128066449": { + "id": 128066449, + "category": "paintjob", + "name": "paintjob_eagle_doublestripe_02", + "cost": 0, + "sku": null + }, + "128066453": { + "id": 128066453, + "category": "paintjob", + "name": "paintjob_eagle_doublestripe_03", + "cost": 0, + "sku": null + }, + "128066456": { + "id": 128066456, + "category": "paintjob", + "name": "paintjob_eagle_camo_01", + "cost": 0, + "sku": null + }, + "128066404": { + "id": 128066404, + "category": "paintjob", + "name": "paintjob_sidewinder_default_02", + "cost": 0, + "sku": null + }, + "128066408": { + "id": 128066408, + "category": "paintjob", + "name": "paintjob_sidewinder_default_03", + "cost": 0, + "sku": null + }, + "128066414": { + "id": 128066414, + "category": "paintjob", + "name": "paintjob_sidewinder_doublestripe_08", + "cost": 0, + "sku": null + }, + "128066423": { + "id": 128066423, + "category": "paintjob", + "name": "paintjob_sidewinder_doublestripe_05", + "cost": 0, + "sku": null + }, + "128066431": { + "id": 128066431, + "category": "paintjob", + "name": "paintjob_sidewinder_thirds_07", + "cost": 0, + "sku": null + }, + "128066432": { + "id": 128066432, + "category": "paintjob", + "name": "paintjob_sidewinder_thirds_01", + "cost": 0, + "sku": null + }, + "128066433": { + "id": 128066433, + "category": "paintjob", + "name": "paintjob_sidewinder_doublestripe_07", + "cost": 0, + "sku": null + }, + "128066440": { + "id": 128066440, + "category": "paintjob", + "name": "paintjob_sidewinder_camo_01", + "cost": 0, + "sku": null + }, + "128066444": { + "id": 128066444, + "category": "paintjob", + "name": "paintjob_sidewinder_thirds_06", + "cost": 0, + "sku": null + }, + "128066447": { + "id": 128066447, + "category": "paintjob", + "name": "paintjob_sidewinder_camo_03", + "cost": 0, + "sku": null + }, + "128066448": { + "id": 128066448, + "category": "paintjob", + "name": "paintjob_sidewinder_default_04", + "cost": 0, + "sku": null + }, + "128066454": { + "id": 128066454, + "category": "paintjob", + "name": "paintjob_sidewinder_camo_02", + "cost": 0, + "sku": null + }, + "128667667": { + "id": 128667667, + "category": "paintjob", + "name": "PaintJob_Viper_Merc", + "cost": 0, + "sku": null + }, + "128666726": { + "id": 128666726, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Camo1_02", + "cost": 0, + "sku": null + }, + "128066407": { + "id": 128066407, + "category": "paintjob", + "name": "paintjob_viper_flag_switzerland_01", + "cost": 0, + "sku": null + }, + "128666727": { + "id": 128666727, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Camo2_03", + "cost": 0, + "sku": null + }, + "128666728": { + "id": 128666728, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Stripe1_02", + "cost": 0, + "sku": null + }, + "128066409": { + "id": 128066409, + "category": "paintjob", + "name": "paintjob_viper_flag_belgium_01", + "cost": 0, + "sku": null + }, + "128666729": { + "id": 128666729, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Stripe1_03", + "cost": 0, + "sku": null + }, + "128066410": { + "id": 128066410, + "category": "paintjob", + "name": "paintjob_viper_flag_australia_01", + "cost": 0, + "sku": null + }, + "128666730": { + "id": 128666730, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Stripe2_02", + "cost": 0, + "sku": null + }, + "128066411": { + "id": 128066411, + "category": "paintjob", + "name": "paintjob_viper_default_01", + "cost": 0, + "sku": null + }, + "128666731": { + "id": 128666731, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Stripe2_03", + "cost": 0, + "sku": null + }, + "128066412": { + "id": 128066412, + "category": "paintjob", + "name": "paintjob_viper_stripe2_02", + "cost": 0, + "sku": null + }, + "128666732": { + "id": 128666732, + "category": "paintjob", + "name": "PaintJob_Hauler_Doublestripe_01", + "cost": 0, + "sku": null + }, + "128066413": { + "id": 128066413, + "category": "paintjob", + "name": "paintjob_viper_flag_austria_01", + "cost": 0, + "sku": null + }, + "128666733": { + "id": 128666733, + "category": "paintjob", + "name": "PaintJob_Hauler_Doublestripe_02", + "cost": 0, + "sku": null + }, + "128666734": { + "id": 128666734, + "category": "paintjob", + "name": "PaintJob_Hauler_Doublestripe_03", + "cost": 0, + "sku": null + }, + "128066415": { + "id": 128066415, + "category": "paintjob", + "name": "paintjob_viper_stripe1_01", + "cost": 0, + "sku": null + }, + "128666735": { + "id": 128666735, + "category": "paintjob", + "name": "PaintJob_Hauler_Stripe1_01", + "cost": 0, + "sku": null + }, + "128666736": { + "id": 128666736, + "category": "paintjob", + "name": "PaintJob_Hauler_Stripe1_02", + "cost": 0, + "sku": null + }, + "128066417": { + "id": 128066417, + "category": "paintjob", + "name": "paintjob_viper_flag_spain_01", + "cost": 0, + "sku": null + }, + "128666737": { + "id": 128666737, + "category": "paintjob", + "name": "PaintJob_Hauler_Stripe1_03", + "cost": 0, + "sku": null + }, + "128066418": { + "id": 128066418, + "category": "paintjob", + "name": "paintjob_viper_stripe1_02", + "cost": 0, + "sku": null + }, + "128666738": { + "id": 128666738, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Hotrod_01", + "cost": 0, + "sku": null + }, + "128666739": { + "id": 128666739, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Hotrod_03", + "cost": 0, + "sku": null + }, + "128666740": { + "id": 128666740, + "category": "paintjob", + "name": "PaintJob_Eagle_Hotrod_01", + "cost": 0, + "sku": null + }, + "128066421": { + "id": 128066421, + "category": "paintjob", + "name": "paintjob_viper_flag_denmark_01", + "cost": 0, + "sku": null + }, + "128666741": { + "id": 128666741, + "category": "paintjob", + "name": "PaintJob_Eagle_Hotrod_03", + "cost": 0, + "sku": null + }, + "128066422": { + "id": 128066422, + "category": "paintjob", + "name": "paintjob_viper_police_federation_01", + "cost": 0, + "sku": null + }, + "128666742": { + "id": 128666742, + "category": "paintjob", + "name": "PaintJob_Sidewinder_Hotrod_01", + "cost": 0, + "sku": null + }, + "128666743": { + "id": 128666743, + "category": "paintjob", + "name": "PaintJob_Sidewinder_Hotrod_03", + "cost": 0, + "sku": null + }, + "128066424": { + "id": 128066424, + "category": "paintjob", + "name": "paintjob_viper_flag_newzealand_01", + "cost": 0, + "sku": null + }, + "128666744": { + "id": 128666744, + "category": "paintjob", + "name": "PaintJob_Viper_Stripe2_51", + "cost": 0, + "sku": null + }, + "128066425": { + "id": 128066425, + "category": "paintjob", + "name": "paintjob_viper_flag_italy_01", + "cost": 0, + "sku": null + }, + "128666745": { + "id": 128666745, + "category": "paintjob", + "name": "PaintJob_Viper_Stripe2_52", + "cost": 0, + "sku": null + }, + "128066426": { + "id": 128066426, + "category": "paintjob", + "name": "paintjob_viper_stripe2_04", + "cost": 0, + "sku": null + }, + "128066427": { + "id": 128066427, + "category": "paintjob", + "name": "paintjob_viper_police_independent_01", + "cost": 0, + "sku": null + }, + "128066429": { + "id": 128066429, + "category": "paintjob", + "name": "paintjob_viper_default_03", + "cost": 0, + "sku": null + }, + "128066434": { + "id": 128066434, + "category": "paintjob", + "name": "paintjob_viper_flag_uk_01", + "cost": 0, + "sku": null + }, + "128066435": { + "id": 128066435, + "category": "paintjob", + "name": "paintjob_viper_flag_germany_01", + "cost": 0, + "sku": null + }, + "128066438": { + "id": 128066438, + "category": "paintjob", + "name": "paintjob_viper_flag_netherlands_01", + "cost": 0, + "sku": null + }, + "128066439": { + "id": 128066439, + "category": "paintjob", + "name": "paintjob_viper_flag_usa_01", + "cost": 0, + "sku": null + }, + "128066442": { + "id": 128066442, + "category": "paintjob", + "name": "paintjob_viper_flag_russia_01", + "cost": 0, + "sku": null + }, + "128066443": { + "id": 128066443, + "category": "paintjob", + "name": "paintjob_viper_flag_canada_01", + "cost": 0, + "sku": null + }, + "128066445": { + "id": 128066445, + "category": "paintjob", + "name": "paintjob_viper_flag_sweden_01", + "cost": 0, + "sku": null + }, + "128066446": { + "id": 128066446, + "category": "paintjob", + "name": "paintjob_viper_flag_poland_01", + "cost": 0, + "sku": null + }, + "128066450": { + "id": 128066450, + "category": "paintjob", + "name": "paintjob_viper_flag_finland_01", + "cost": 0, + "sku": null + }, + "128066451": { + "id": 128066451, + "category": "paintjob", + "name": "paintjob_viper_flag_france_01", + "cost": 0, + "sku": null + }, + "128066452": { + "id": 128066452, + "category": "paintjob", + "name": "paintjob_viper_police_empire_01", + "cost": 0, + "sku": null + }, + "128066455": { + "id": 128066455, + "category": "paintjob", + "name": "paintjob_viper_flag_norway_01", + "cost": 0, + "sku": null + }, + "128667720": { + "id": 128667720, + "category": "paintjob", + "name": "PaintJob_Asp_Default_02", + "cost": 0, + "sku": null + }, + "128667721": { + "id": 128667721, + "category": "paintjob", + "name": "PaintJob_Asp_Default_03", + "cost": 0, + "sku": null + }, + "128667722": { + "id": 128667722, + "category": "paintjob", + "name": "PaintJob_Asp_Default_04", + "cost": 0, + "sku": null + }, + "128667723": { + "id": 128667723, + "category": "paintjob", + "name": "PaintJob_Asp_Faction1_01", + "cost": 0, + "sku": null + }, + "128667724": { + "id": 128667724, + "category": "paintjob", + "name": "PaintJob_Asp_Stripe1_02", + "cost": 0, + "sku": null + }, + "128667725": { + "id": 128667725, + "category": "paintjob", + "name": "PaintJob_Asp_Stripe1_03", + "cost": 0, + "sku": null + }, + "128667726": { + "id": 128667726, + "category": "paintjob", + "name": "PaintJob_Asp_Stripe1_04", + "cost": 0, + "sku": null + }, + "128667655": { + "id": 128667655, + "category": "decal", + "name": "Decal_Skull3", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_MERCENARY_DECAL_1000" + }, + "128667736": { + "id": 128667736, + "category": "decal", + "name": "Decal_Combat_Mostly_Harmless", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_COMBAT_DECAL_1001" + }, + "128667737": { + "id": 128667737, + "category": "decal", + "name": "Decal_Combat_Novice", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_COMBAT_DECAL_1002" + }, + "128667738": { + "id": 128667738, + "category": "decal", + "name": "Decal_Combat_Competent", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_COMBAT_DECAL_1003" + }, + "128667744": { + "id": 128667744, + "category": "decal", + "name": "Decal_Trade_Mostly_Penniless", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_TRADE_DECAL_1001" + }, + "128667745": { + "id": 128667745, + "category": "decal", + "name": "Decal_Trade_Peddler", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_TRADE_DECAL_1002" + }, + "128667746": { + "id": 128667746, + "category": "decal", + "name": "Decal_Trade_Dealer", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_TRADE_DECAL_1003" + }, + "128667747": { + "id": 128667747, + "category": "decal", + "name": "Decal_Trade_Merchant", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_TRADE_DECAL_1004" + }, + "128667752": { + "id": 128667752, + "category": "decal", + "name": "Decal_Explorer_Mostly_Aimless", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_EXPLORE_DECAL_1001" + }, + "128667753": { + "id": 128667753, + "category": "decal", + "name": "Decal_Explorer_Scout", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_EXPLORE_DECAL_1002" + }, + "128667754": { + "id": 128667754, + "category": "decal", + "name": "Decal_Explorer_Surveyor", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_EXPLORE_DECAL_1003" + } + } + }, + "stats": { + "game_time": 847776, + "missions": { + "courier": { + "missionsAccepted": 64, + "furthest": { + "distance": 9.8418152860638, + "origin": 3228189952, + "destination": "3227868416" + }, + "highestEarnings": { + "value": 0, + "distance": 0, + "origin": 0, + "destination": 0, + "faction": 0 + }, + "missionsCompleted": 36, + "creditsEarned": -9119, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 1109, + "faction": "Defence Force of LHS 1541", + "type": "CourierLegal" + }, + { + "value": 1018, + "faction": "Defence Force of LHS 1541", + "type": "CourierLegal" + }, + { + "value": 487, + "faction": "Defence Force of LHS 1541", + "type": "CourierLegal" + } + ] + }, + "deliver": { + "missionsAccepted": 105, + "furthest": { + "distance": 9.8944626243672, + "origin": 3228393472, + "destination": "3228115456" + }, + "highestEarnings": { + "value": 0, + "commodity": 0, + "qty": 0, + "distance": 0, + "origin": 0, + "destination": 0, + "faction": 0 + }, + "missionsCompleted": 98, + "creditsEarned": 1164220, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 1988, + "faction": "Crimson Energy Systems", + "type": "DeliveryLegal" + }, + { + "value": 107316, + "faction": "Gold Netcoms Commodities", + "type": "DeliveryLegal" + }, + { + "value": 65546, + "faction": "Allied LHS 1507 Dominion", + "type": "DeliveryLegal" + } + ] + }, + "collect": { + "missionsAccepted": 175, + "furthest": { + "distance": 0, + "origin": 0, + "destination": 0 + }, + "highestEarnings": { + "value": 0, + "commodity": 0, + "qty": 0, + "distance": 0, + "origin": 0, + "destination": 0, + "faction": 0 + }, + "missionsCompleted": 0, + "creditsEarned": 0, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 22145, + "faction": "Defence Force of LHS 1541", + "type": "Collect" + }, + { + "value": 3420, + "faction": "Defence Force of LHS 1541", + "type": "Collect" + }, + { + "value": 34772, + "faction": "Wolf 1323 Life Corp.", + "type": "Collect" + } + ] + }, + "assassin": { + "highestEarnings": { + "value": 199640, + "origin": "3228064512", + "faction": 0 + }, + "missionsCompleted": 25, + "creditsEarned": 1147873, + "missionsFailed": 0, + "latestCompleted": [ + { + "value": 36176, + "faction": "United Euryale First", + "type": "Massacre" + }, + { + "value": 99646, + "faction": "United Euryale First", + "type": "Assassinate" + }, + { + "value": 42589, + "faction": "United Euryale First", + "type": "Assassinate" + } + ], + "missionsAccepted": 52 + }, + "bountyHunter": { + "highestEarnings": { + "value": 0, + "origin": 0, + "faction": 0 + }, + "missionsCompleted": 0, + "creditsEarned": 0, + "missionsFailed": 0, + "latestCompleted": [], + "missionsAccepted": 0 + } + }, + "explore": { + "hyperspaceJumps": 1562, + "totalHyperspaceDistance": 26832.084787718, + "visited": { + "starsystem": [ + "GCRV 4654", + "FK5 2550", + "LHS 1914", + "Siren", + "Geawenki", + "Thiin", + "LP 307-8", + "StKM 1-626", + "BD+30 1423", + "LHS 6103", + "LHS 1814", + "LHS 1794", + "Nandjabinja", + "Susanoo", + "Wong Sher", + "74 k Orionis", + "BD+08 1303", + "Iansan", + "LHS 1857", + "Yin Sector HW-W b1-3", + "Nihursaga", + "Hahgwe", + "Alzirr", + "Toog", + "Yin Sector ZE-A d120", + "Chang Yeh", + "G 108-26", + "HR 2251", + "LHS 1838", + "Breksta", + "Amait", + "Cosi", + "Yggdrajang", + "LTT 17868", + "Yin Sector EQ-Y b2", + "Yin Sector EQ-Y b1", + "Zandu", + "Flech", + "Julanggarri", + "Ross 878", + "Kamchata", + "Tamalhikas", + "Katocudatta", + "Lumbla", + "Tascheter Sector FG-X b1-6", + "Jita Ten", + "71 Orionis", + "Tao Ti", + "LHS 1743", + "LFT 392", + "Ndozins", + "LHS 21", + "Geras", + "G 85-36", + "LP 417-213", + "V1402 Orionis", + "MCC 467", + "Suyarang", + "Chonost", + "Fular", + "LTT 11519", + "Tote", + "Psi Tauri", + "Wolf 1301", + "Tascheter Sector MS-T a3-2", + "Achlys", + "BD+14 831", + "Kungurutii", + "Ross 49", + "Dewikum", + "Yin Sector DQ-Y b1", + "Tascheter Sector FG-X b1-1", + "Tascheter Sector EG-X b1-1", + "Cahuile", + "Tascheter Sector WE-Q a5-1", + "Tascheter Sector DG-O a6-0", + "LP 771-72", + "Kappa Fornacis", + "LP 831-72", + "Zeus", + "Tascheter Sector HM-M a7-2", + "Tascheter Sector BL-O a6-1", + "Tascheter Sector YE-Q a5-0", + "Pachanwen", + "Ranginui", + "LHS 1928", + "LP 605-37", + "Sekhemet", + "Hlocidirus", + "Fionn", + "LHS 1920", + "Tascheter Sector GW-W c1-18", + "LFT 377", + "Kunlun", + "Tascheter Sector HM-M a7-1", + "LTT 1349", + "LFT 179", + "Jibitoq", + "BD-18 394", + "Autahenetsi", + "Ceti Sector AV-Y c17", + "Tetekhe", + "Ceti Sector FW-V b2-5", + "LTT 1141", + "Bandizel", + "Artemis", + "LHS 1409", + "Tascheter Sector EG-Y d106", + "Tascheter Sector BG-O a6-1", + "Tascheter Sector WZ-P a5-1", + "LHS 1573", + "G 100-4", + "V491 Persei", + "Sui Xing", + "Bonde", + "Bhadaba", + "Uchaluroja", + "Manamaya", + "LHS 197", + "Ashandras", + "LTT 11455", + "Al-Qaum", + "Herishep", + "LTT 11503", + "Ross 592", + "Itza", + "Capukanga", + "LHS 1483", + "LP 356-106", + "BD+24 543", + "39 Tauri", + "KP Tauri", + "Wolf 1278", + "Lowne 1", + "Meri", + "Apollo", + "LHS 1516", + "Wolf 1323", + "Marduk", + "LHS 1541", + "Wolf 1325", + "G 95-22", + "LHS 1507", + "Bao Yan Luo", + "Tascheter Sector HH-V b2-5", + "G 173-39", + "G 173-53", + "Theta Persei", + "LHS 1446", + "Lorana", + "Anlave", + "Wolf 46", + "V388 Cassiopeiae", + "Zeessze", + "Eta Cassiopeiae", + "Groombridge 34", + "Ross 248", + "Ross 730", + "Altair", + "Sol", + "Alpha Centauri", + "LHS 18", + "Bonitou", + "LTT 10482", + "Cephei Sector BA-A d103", + "Cephei Sector DQ-Y b4", + "Iota Cassiopeiae", + "Funji", + "T'ienimi", + "HIP 12512", + "Col 285 Sector QT-Q c5-14", + "HIP 10466", + "Col 285 Sector QT-Q c5-9", + "Col 285 Sector BH-J b10-4", + "Col 285 Sector BH-J b10-2", + "Col 285 Sector PT-Q c5-13", + "Col 285 Sector WA-L b9-0", + "HR 567", + "Col 285 Sector MY-Q c5-3", + "Col 285 Sector MY-Q c5-15", + "Undalibaluf", + "Col 285 Sector GY-F b12-4", + "BD+65 1984", + "Col 285 Sector HY-F b12-0", + "HIP 3509", + "Nootkena", + "Inovandar", + "Tegidana", + "BD+44 1040", + "LHS 1765", + "Selniang", + "Skuta", + "Gani", + "Enuma", + "Gkutat", + "Djinbin", + "Col 285 Sector NG-H a26-5", + "Col 285 Sector MA-J a25-4", + "Col 285 Sector SG-H a26-2", + "Col 285 Sector JB-N c7-7", + "Col 285 Sector JB-N c7-4", + "Synuefe XT-D a94-2", + "h2 Puppis", + "Synuefe BP-D a94-1", + "O Puppis", + "Synuefe KB-A a96-2", + "HIP 40430", + "Synuefe WR-H d11-48", + "Synuefe WQ-Z b47-5", + "Gliese 3434", + "Synuefe YK-N c23-14", + "Canopus", + "Synuefe ZK-N c23-22", + "Synuefe BH-Z b47-1", + "HIP 34755", + "HIP 35652", + "HIP 36489", + "47 G. Carinae", + "Synuefe BM-Z b47-8", + "Q Carinae", + "Synuefe DW-L c24-30", + "Synuefe IS-X b48-3", + "Chi Carinae", + "Synuefe HX-X b48-2", + "HIP 40929", + "HIP 42504", + "HIP 42459", + "E Velorum", + "Synuefe JI-W b49-12", + "HIP 42374", + "HR 3503", + "HIP 42823", + "HR 3448", + "HIP 42726", + "Omicron Velorum", + "HIP 42715", + "IC 2391 Sector LI-S b4-10", + "IC 2391 Sector SJ-Q b5-10", + "HIP 43433", + "IC 2391 Sector UJ-Q b5-8", + "IC 2391 Sector VJ-Q b5-1", + "HIP 43015", + "IC 2391 Sector MC-V c2-14", + "Synuefe GL-S b51-9", + "Synuefe LR-Q b52-2", + "V473 Carinae", + "Synuefe JE-E d13-115", + "Synuefe RX-O b53-7", + "Synuefe JE-E d13-94", + "Synuefe WD-N b54-1", + "Tureis", + "Synuefe BK-L b55-4", + "Synuefe CV-E c28-23", + "Synuefe OK-C d14-6", + "HIP 47751", + "HIP 48127", + "Synuefe KM-G b58-4", + "Synuefe XO-L a117-1", + "Synuefe AA-K a118-6", + "Wregoe KZ-S b58-7", + "HR 4091", + "Praea Euq SG-A b1", + "Praea Euq XM-Y b2", + "Praea Euq ZM-Y b1", + "Praea Euq MA-A d153", + "Praea Euq ZR-Y b0", + "Praea Euq CM-Y c9", + "HD 92405", + "Praea Euq FO-V b2-1", + "Praea Euq KU-T b3-5", + "Praea Euq PL-Y d85", + "Praea Euq TG-Q b5-3", + "HD 95633", + "Praea Euq ZM-O b6-0", + "Praea Euq LD-V c2-20", + "Praea Euq UR-W d1-63", + "Praea Euq EY-M b7-4", + "Praea Euq GJ-L b8-1", + "Praea Euq HJ-L b8-4", + "Praea Euq VR-W d1-80", + "Praea Euq RZ-R c4-2", + "Praea Euq JZ-J b9-0", + "Pro Eurl AI-I b10-3", + "Pro Eurl EW-W d1-55", + "Pro Eurl KD-S c4-7", + "Pro Eurl EW-W d1-39", + "HD 98557", + "Pro Eurl XR-I b10-0", + "Pro Eurl AN-I b10-3", + "Pro Eurl PJ-Q c5-12", + "Pro Eurl IC-V d2-40", + "Pro Eurl JC-V d2-35", + "Pro Eurl KZ-E b12-2", + "NGC 3532 Sector ZK-X d1-59", + "Pro Eurl NK-D b13-0", + "Pro Eurl HH-V d2-32", + "Pro Eurl JU-D b13-0", + "HD 100476", + "Pro Eurl LU-D b13-0", + "HD 99573", + "HD 99081", + "Pro Eurl IO-F b12-1", + "NGC 3532 Sector YP-X d1-24", + "NGC 3532 Sector EJ-M b9-1", + "NGC 3532 Sector DC-T c4-9", + "NGC 3532 Sector AL-X d1-30", + "NGC 3532 Sector PF-K b10-0", + "NGC 3532 Sector RA-K b10-1", + "NGC 3532 Sector BL-X d1-48", + "NGC 3532 Sector FR-V d2-53", + "NGC 3532 Sector EI-G b12-2", + "NGC 3532 Sector FI-G b12-0", + "NGC 3532 Sector FI-G b12-4", + "HD 98767", + "NGC 3532 Sector PU-C b14-0", + "NGC 3532 Sector RP-C b14-5", + "HD 98896", + "NGC 3532 Sector WV-A b15-4", + "NGC 3532 Sector YK-N c7-10", + "NGC 3532 Sector ID-X b16-2", + "NGC 3532 Sector LO-V b17-2", + "Pro Eurl BW-K b22-1", + "Pro Eurl AB-L b22-2", + "Pro Eurl OS-U e2-4", + "Pro Eurl CQ-P d5-68", + "Pro Eurl GR-D c12-2", + "Pro Eurl CQ-P d5-27", + "Pro Eurl OI-H b24-3", + "Pro Eurl CQ-P d5-21", + "Pro Eurl MC-J b23-2", + "Pro Eurl DQ-P d5-63", + "Pro Eurl ZJ-R d4-4", + "Pro Eurl NC-J b23-2", + "HD 99218", + "Pro Eurl JR-D c12-12", + "Pro Eurl DQ-P d5-39", + "Pro Eurl ZU-D b26-2", + "Pro Eurl HW-N d6-37", + "Pro Eurl HH-A b28-3", + "Pro Eurl QD-A c14-12", + "Pro Eurl UJ-Y c14-2", + "Pro Eurl LC-M d7-2", + "HD 104214", + "Pro Eurl WK-T b31-2", + "Pro Eurl ZP-W c15-1", + "Pro Eurl KN-P b33-2", + "Pro Eurl GR-U c16-9", + "Pro Eurl MN-P b33-1", + "Pro Eurl TO-N b34-0", + "Pro Eurl WJ-N b34-3", + "Pro Eurl XJ-N b34-6", + "Pro Eurl UD-P b33-0", + "Pro Eurl BF-N b34-4", + "Pro Eurl CF-N b34-1", + "Pro Eurl DF-N b34-2", + "Pro Eurl UD-K d8-47", + "Pro Eurl UD-K d8-85", + "Pro Eurl KG-L b35-3", + "Pro Eurl UD-K d8-73", + "Pro Eurl MG-L b35-5", + "Pro Eurl PB-L b35-1", + "Prua Dryoae UQ-Q a73-3", + "Prua Dryoae CS-O a74-1", + "Prua Dryoae FH-T b37-5", + "HD 101131", + "Prua Dryoae WF-L d9-50", + "Prua Dryoae LN-R b38-3", + "Prua Dryoae PT-P b39-7", + "Prua Dryoae MN-S e4-12", + "Prua Dryoae IJ-C a81-1", + "Prua Dryoae CD-E a80-3", + "Prua Dryoae YH-E a80-0", + "Pro Eurl ZJ-I d9-63", + "Pro Eurl HA-E b39-0", + "Pro Eurl ZJ-I d9-0", + "Pro Eurl HA-E b39-4", + "Pro Eurl ZJ-I d9-3", + "Pro Eurl ZD-G b38-0", + "Pro Eurl XI-G b38-0", + "HD 102728", + "Pro Eurl XI-G b38-1", + "Pro Eurl EK-E b39-4", + "Pro Eurl AK-I d9-55", + "Pro Eurl EA-P c19-3", + "Prua Dryoae LU-A a82-0", + "Prua Dryoae AM-J d10-40", + "Prua Dryoae AM-J d10-53", + "Prua Dryoae AM-J d10-5", + "Prua Dryoae AG-M b41-0", + "Prua Dryoae GM-K b42-1", + "Prua Dryoae HM-K b42-0", + "Prua Dryoae UU-R a86-3", + "Prua Dryoae CM-J d10-3", + "Prua Dryoae HJ-R c21-6", + "Prua Dryoae BV-R a86-5", + "Prua Dryoae DV-R a86-1", + "Prua Dryoae IJ-R c21-9", + "HD 101035", + "Prua Dryoae JJ-R c21-7", + "Swoiphs PB-Q a87-1", + "Swoiphs WH-O a88-5", + "Sifeae JD-V b43-0", + "Swoiphs BI-O a88-2", + "Sifeae LD-V b43-2", + "Sifeae VR-J c22-14", + "Sifeae RJ-T b44-5", + "Sifeae ZK-P e5-0", + "Sifeae UJ-T b44-2", + "Sifeae XU-R b45-3", + "Sifeae YU-R b45-6", + "Sifeae DB-Q b46-2", + "Sifeae EB-Q b46-2", + "Sifeae JH-O b47-5", + "HD 100137", + "Sifeae LH-O b47-3", + "NGC 4463 Sector TT-Z d42", + "NGC 4463 Sector QT-C b2-6", + "NGC 4463 Sector VZ-A b3-3", + "NGC 4463 Sector TT-Z d46", + "NGC 4463 Sector MS-Z c1-16", + "NGC 4463 Sector MS-Z c1-18", + "NGC 4463 Sector YZ-X d1-24", + "NGC 4463 Sector JX-V b5-2", + "NGC 4463 Sector ZZ-X d1-86", + "NGC 4463 Sector ZZ-X d1-82", + "NGC 4463 Sector VE-S b7-1", + "NGC 4463 Sector XZ-R b7-3", + "NGC 4463 Sector ZZ-X d1-89", + "NGC 4463 Sector ZZ-X d1-17", + "NGC 4463 Sector MH-H a16-1", + "NGC 4463 Sector GB-U c4-1", + "NGC 4463 Sector PX-N b9-2", + "NGC 4463 Sector GB-W d2-41", + "NGC 4463 Sector YJ-K b11-0", + "NGC 4463 Sector GB-W d2-37", + "NGC 4463 Sector AF-T a23-3", + "HD 101794", + "NGC 4463 Sector HL-R a24-1", + "NGC 4463 Sector KW-G b13-6", + "NGC 4463 Sector XD-M a27-1", + "NGC 4463 Sector ZD-M a27-2", + "NGC 4463 Sector JQ-I a29-1", + "NGC 4463 Sector MH-U d3-27", + "NGC 4463 Sector XN-D a32-2", + "NGC 4463 Sector DU-B a33-2", + "NGC 4463 Sector NG-Y a34-1", + "NGC 4463 Sector RN-S d4-3", + "NGC 4463 Sector ZS-U a36-3", + "NGC 4463 Sector GZ-S a37-0", + "NGC 4463 Sector OA-R a38-0", + "NGC 4463 Sector SL-P a39-1", + "NGC 4609 Sector JU-Y a5-1", + "NGC 4609 Sector SG-V a7-0", + "NGC 4609 Sector AZ-V b4-0", + "NGC 4609 Sector AK-Z d29", + "NGC 4609 Sector DA-X c2-7", + "NGC 4609 Sector AK-Z d63", + "NGC 4609 Sector AK-Z d17", + "NGC 4609 Sector AK-Z d36", + "NGC 4609 Sector LB-V c3-5", + "NGC 4609 Sector UR-R b6-4", + "NGC 4609 Sector MB-V c3-11", + "NGC 4609 Sector FQ-X d1-64", + "NGC 4609 Sector NB-V c3-9", + "NGC 4609 Sector CY-P b7-4", + "NGC 4609 Sector GQ-X d1-33", + "NGC 4609 Sector FY-P b7-4", + "NGC 4609 Sector GY-P b7-2", + "NGC 4609 Sector QB-V c3-16", + "Aucops TS-O b12-3", + "Blaa Eoq IQ-O b12-2", + "Blaa Eoq OW-M b13-3", + "Blaa Eoq TN-T c6-5", + "Blaa Eoq RH-L b14-4", + "Blaa Eoq UN-T c6-4", + "Blaa Eoq SL-T a30-1", + "Blaa Eoq UL-T a30-1", + "Blaa Eoq XL-T a30-2", + "Blaa Eoq DS-R a31-0", + "Blaa Eoq OU-V d3-3", + "Blaa Eoq MY-P a32-0", + "Blaa Eoq SE-O a33-1", + "Blaa Eoq YK-M a34-2", + "Blaa Eoq AL-M a34-3", + "Blaa Eoq CL-M a34-5", + "Blaa Eoq IR-K a35-0", + "Blaa Eoq QU-V d3-34", + "Blaa Eoq PX-I a36-2", + "Blaa Eoq QU-V d3-38", + "Blaa Eoq RU-V d3-17", + "Blaa Eoq BP-F a38-2", + "Blaa Eoq EP-F a38-3", + "Phylurn AU-Q b18-5", + "Blaa Eoq IP-F a38-4", + "Blaa Eoq LP-F a38-0", + "Blaa Eoq WA-U d4-8", + "Blaa Eoq PP-F a38-2", + "Blaa Eoq RP-F a38-0", + "Blaa Eoq XA-U d4-22", + "HD 99619", + "Blaa Eoq XP-F a38-2", + "Col 240 Sector MX-E a42-1", + "Col 240 Sector HJ-G c11-3", + "Col 240 Sector OX-M b22-1", + "Col 240 Sector PX-M b22-0", + "Col 240 Sector ZD-D a43-3", + "Col 240 Sector YX-E a42-1", + "Col 240 Sector KJ-G c11-4", + "Col 240 Sector DY-E a42-3", + "Col 240 Sector JE-D a43-0", + "Col 240 Sector HY-E a42-1", + "Col 240 Sector JY-E a42-1", + "Col 240 Sector LO-G c11-5", + "Col 240 Sector RJ-Q d5-27", + "Col 240 Sector MO-G c11-10", + "Col 240 Sector SJ-Q d5-51", + "Col 240 Sector SJ-Q d5-46", + "Col 240 Sector ZR-O b21-5", + "Col 240 Sector AS-O b21-3", + "Col 240 Sector OO-G c11-8", + "Col 240 Sector TJ-Q d5-54", + "Col 240 Sector ES-O b21-0", + "Col 240 Sector JY-M b22-0", + "2MASS J11132054-6053363", + "2MASS J11130497-6049452", + "TYC 8959-364-2", + "2MASS J11130472-6047135", + "NGC 3590 MV 4", + "NGC 3590 CLA 15", + "HD 306185", + "2MASS J11123987-6047011", + "NGC 3590 MV 12", + "NGC 3590 Sector UT-R a4-1", + "NGC 3590 Sector BA-A d12", + "Col 240 Sector AB-J b24-0", + "Col 240 Sector GH-H b25-0", + "Col 240 Sector HH-H b25-4", + "Col 240 Sector FW-C c13-7", + "IC 2944 Sector PP-Q b8-0", + "IC 2944 Sector UV-O b9-0", + "IC 2944 Sector VV-O b9-2", + "IC 2944 Sector WV-O b9-0", + "IC 2944 Sector WE-Y d1-26", + "IC 2944 Sector EX-M b10-2", + "IC 2944 Sector FX-M b10-0", + "IC 2944 Sector ER-S c5-0", + "IC 2944 Sector LD-L b11-2", + "IC 2944 Sector SE-J b12-1", + "IC 2944 Sector VP-H b13-0", + "IC 2944 Sector WP-H b13-1", + "IC 2944 Sector KX-Q c6-5", + "IC 2944 Sector CW-F b14-2", + "IC 2944 Sector HR-U d3-13", + "IC 2944 Sector FG-X e1-3", + "IC 2944 Sector QD-P c7-5", + "IC 2944 Sector RO-A b17-0", + "IC 2944 Sector SO-A b17-0", + "IC 2944 Sector TO-A b17-0", + "Statue of Liberty Sector FW-W c1-2", + "Statue of Liberty Sector OY-R b4-1", + "Statue of Liberty Sector LS-T b3-0", + "Statue of Liberty Sector OD-S b4-0", + "Statue of Liberty Sector LX-T b3-2", + "Statue of Liberty Sector DL-Y d25", + "Statue of Liberty Sector FG-Y e5", + "Statue of Liberty Sector PI-S b4-0", + "Statue of Liberty Sector QI-S b4-0", + "Statue of Liberty Sector FW-K a9-1", + "Statue of Liberty Sector IW-K a9-0", + "IC 2944 Sector XH-C a34-0", + "IC 2944 Sector ZH-C a34-0", + "IC 2944 Sector GO-A a35-0", + "IC 2944 Sector GT-A a35-1", + "IC 2944 Sector KO-A a35-1", + "IC 2944 Sector KT-A a35-2", + "IC 2944 Sector MR-U d3-20", + "IC 2944 Sector LI-C a34-0", + "Blua Eoq CI-G a65-0", + "Blua Eoq DL-Y g0", + "Blua Eoq GC-C b33-1", + "Blua Eoq TA-B a68-0", + "Blua Eoq TF-B a68-0", + "Blo Thae QH-U c16-7", + "Blo Thae MV-M b34-2", + "Blo Thae LA-N b34-1", + "NGC 3572 Sector DB-X c1-0", + "NGC 3572 Sector FR-V b2-2", + "NGC 3572 Sector AV-Y c1", + "NGC 3572 Sector EB-X c1-5", + "NGC 3572 Sector IR-V b2-0", + "NGC 3572 Sector FB-X c1-4", + "NGC 3572 Sector YE-A g2", + "NGC 3572 Sector IR-W d1-9", + "NGC 3572 Sector QN-S b4-0", + "Blo Thae BI-I b37-1", + "Blo Thae AP-I d9-17", + "Blo Thae BE-R c18-1", + "Blo Thae AS-I b37-0", + "Blo Thae BS-I b37-0", + "Blo Thae YL-K b36-0", + "Blo Thae BJ-R c18-4", + "Tyriedgoea MO-I d9-2", + "Tyriedgoea MO-I d9-20", + "Tyriedgoea PJ-K b36-1", + "Tyriedgoea II-K d8-12", + "Tyriedgoea IX-N b34-0", + "Tyriedgoea DW-P b33-0", + "Tyriedgoea BB-Q b33-0", + "Tyriedgoea AQ-R b32-0", + "Tyriedgoea DH-M d7-10", + "Tyriedgoea ZU-R b32-0", + "Tyriedgoea VO-T b31-0", + "Tyriedgoea UD-V b30-0", + "Tyriedgoea DH-M d7-2", + "Tyriedgoea LW-Y b28-0", + "Tyriedgoea LX-U e2-0", + "Tyriedgoea JQ-A b28-0", + "Tyriedgoea KQ-A b28-0", + "Tyriedgoea CW-N d6-9", + "Tyriedgoea OL-A b28-0", + "Tyriedgoea PL-A b28-0", + "Tyriedgoea DW-N d6-19", + "Tyriedgoea VR-Y b28-0", + "Tyriedgoea WR-Y b28-0", + "Col 228 Sector CW-V d2-19", + "Col 228 Sector CW-V d2-18", + "Col 228 Sector GC-U d3-3", + "Col 228 Sector PB-G b13-0", + "Col 228 Sector JY-P c6-2", + "Col 228 Sector SB-G b13-0", + "Col 228 Sector UW-F b13-1", + "Col 228 Sector ZC-E b14-1", + "Col 228 Sector KY-P c6-1", + "Col 228 Sector BD-E b14-0", + "Col 228 Sector IE-C b15-1", + "Col 228 Sector KX-T d3-13", + "Col 228 Sector TZ-N c7-4", + "Col 228 Sector NP-A b16-0", + "Col 228 Sector UZ-N c7-5", + "Col 228 Sector VQ-Y b16-0", + "Col 228 Sector ZF-M c8-0", + "Col 228 Sector ZL-Y b16-1", + "Col 228 Sector FN-W b17-1", + "NGC 3324 Sector VI-V b17-1", + "NGC 3324 Sector BP-T b18-1", + "NGC 3324 Sector CP-T b18-0", + "NGC 3324 Sector DS-J c9-8", + "NGC 3324 Sector ME-O a36-0", + "NGC 3324 Sector IY-H c10-1", + "NGC 3324 Sector CX-I a39-0", + "NGC 3324 Sector HD-H a40-2", + "NGC 3324 Sector QT-R d4-3", + "NGC 3324 Sector PJ-F a41-0", + "NGC 3324 Sector VP-D a42-4", + "NGC 3324 Sector RT-R d4-15", + "NGC 3324 Sector DR-B a43-0", + "NGC 3324 Sector FR-B a43-2", + "NGC 3324 Sector IZ-L b22-2", + "NGC 3324 Sector UU-F c11-3", + "NGC 3324 Sector UU-F c11-6", + "Eta Carinae", + "NGC 3324 Sector OU-L b22-0", + "NGC 3324 Sector LO-N b21-0", + "NGC 3324 Sector WU-F c11-4", + "NGC 3324 Sector JI-P b20-1", + "NGC 3324 Sector KI-P b20-1", + "Bleia Eork MW-U b36-1", + "Bleia Eork NW-U b36-0", + "Bleia Eork LQ-W b35-1", + "Bleia Eork VZ-M d8-7", + "Bleia Eork NQ-W b35-1", + "Bleia Eork TK-Y c17-1", + "Bleia Eork JP-Y b34-0", + "Blae Eork KD-A c17-2", + "Blae Eork ZM-Y b34-1", + "Blae Eork WG-A b34-1", + "Blae Eork XG-A b34-1", + "Blae Eork YG-A b34-1", + "Blae Eork BC-A b34-1", + "Blae Eork CH-U e3-4", + "Blae Eork ID-Y b34-0", + "Blae Eork MJ-W b35-1", + "Blae Eork QP-U b36-0", + "Blae Eork XK-W c18-1", + "Blae Eork WK-W c18-0", + "Blae Eork CI-P b39-0", + "Blae Eork GO-N b40-0", + "Blae Eork LU-L b41-1", + "Blae Eork OA-K b42-1", + "Blae Eork JD-R c21-5", + "CPD-58 2648", + "CPD-59 2627", + "2MASS J10443666-5946218", + "Blae Eork OJ-P c22-3", + "Trumpler 16 HG 1462", + "CPD-59 2591", + "Blae Eork QA-B b47-0", + "PCYC 666", + "Blae Eork SA-B b47-0", + "Blae Eork TA-B b47-0", + "2MASS J10442445-5951430", + "Blae Eork YM-H d11-18", + "Blae Eork ZK-N c23-2", + "Blae Eork HI-X b48-0", + "Blae Eork KT-V b49-0", + "Blae Eork NO-V b49-0", + "Blae Eork FR-L c24-2", + "Tr 16 Sector RA-M b8-0", + "2MASS J10432911-6003200", + "Tr 16 Sector DB-X d1-12", + "Tr 16 Sector XG-K b9-0", + "Tr 16 Sector ZG-K b9-0", + "Tr 16 Sector ND-S c4-0", + "Tr 16 Sector EB-X d1-17", + "Tr 16 Sector II-I b10-0", + "Tr 16 Sector LD-I b10-0", + "Tr 16 Sector OO-G b11-0", + "Tr 16 Sector PO-G b11-0", + "Tr 16 Sector QO-G b11-0", + "Tr 16 Sector RO-G b11-0", + "Tr 16 Sector VJ-Q c5-4", + "Tr 16 Sector TO-G b11-0", + "Tr 16 Sector VJ-G b11-0", + "Tr 16 Sector XJ-G b11-0", + "Tr 16 Sector VY-R c4-2", + "Tr 16 Sector NC-V d2-2", + "Tr 14 Sector JM-W d1-10", + "Tr 16 Sector CA-Q c5-7", + "Tr 16 Sector NC-V d2-6", + "Tr 16 Sector GG-O c6-6", + "Tr 14 Sector TY-S c3-12", + "Tr 14 Sector LC-M b7-0", + "Eta Carina Sector HR-W c1-3", + "Eta Carina Sector RT-R b4-0", + "Eta Carina Sector HR-W d1-22", + "Eta Carina Sector KC-V c2-1", + "Eta Carina Sector SJ-Q b5-0", + "Eta Carina Sector RO-Q b5-0", + "2MASS J10442897-5942343", + "Eta Carina Sector NY-Q b5-0", + "Eta Carina Sector KD-R b5-1", + "Tr 14 Sector GD-W a17-1", + "Tr 14 Sector IH-V d2-19", + "Blu Theia ND-Z c27-1", + "Blu Theia LI-Z c27-3", + "Blu Theia LI-Z c27-6", + "Blu Theia QF-Z b55-0", + "Blu Theia RT-Z d13-23", + "Blu Theia HS-Z c27-0", + "Blu Theia KE-B b55-0", + "Blu Theia FY-C b54-0", + "Blu Theia CM-B c27-3", + "Blu Theia XW-E b53-0", + "Blu Theia VB-F b53-0", + "Blu Theia QV-G b52-0", + "Blu Theia LP-I b51-0", + "Blu Theia HJ-K b50-0", + "Blu Theia EO-K b50-0", + "Blu Theia YM-M b49-0", + "Blu Theia UG-O b48-0", + "Blu Theia FM-D d12-9", + "Blu Theia NF-Q b47-0", + "Blu Theia AQ-P e5-1", + "Blu Theia HZ-R b46-0", + "Blu Theia BG-F d11-6", + "Blu Theia BG-F d11-11", + "Blu Theia AG-F d11-4", + "Blu Theia ZH-V b44-0", + "Blu Theia VW-W b43-0", + "Blu Theia TB-X b43-0", + "Blu Theia UK-M c21-1", + "Blu Theia QE-O c20-2", + "Blu Theia WZ-G d10-9", + "Blu Theia PE-O c20-0", + "Blu Theia EJ-C b41-0", + "Blu Theia FE-C b41-0", + "Blu Theia KY-P c19-1", + "Blu Theia QT-I d9-8", + "Blu Theia TW-F b39-0", + "Blu Theia QB-G b39-0", + "Blu Theia PB-G b39-0", + "Blu Theia LQ-H b38-0", + "Blu Theia JV-H b38-0", + "Blu Theia IV-H b38-0", + "Blu Theia HV-H b38-0", + "Blu Theia GV-H b38-0", + "Blu Theia FV-H b38-0", + "Blu Theia CA-I b38-0", + "Blu Theia BA-I b38-0", + "Blu Theia CV-H b38-0", + "Blu Theia DG-G b39-0", + "Blu Theia BD-Q c19-0", + "Blu Theia BG-G b39-0", + "Blu Theia LY-I d9-6", + "Blu Theia SJ-I b38-0", + "Blu Theia ND-K b37-0", + "Blu Theia GS-K d8-5", + "Blu Theia GC-M b36-0", + "Blu Theia DH-M b36-0", + "Blu Theia VU-P b34-0", + "Blu Theia SZ-P b34-0", + "Blu Theia NT-R b33-0", + "Blu Theia KY-R b33-0", + "Blu Theia FS-T b32-0", + "Blu Theia DX-T b32-0", + "Blu Theia CX-T b32-0", + "Blu Theia YX-X c15-0", + "Blu Theia VV-V b31-0", + "Blu Theia XX-X c15-0", + "Blu Theia SR-Z c14-1", + "Blu Theia WV-M d7-1", + "Blu Theia WV-M d7-2", + "Blu Theia QW-Z c14-0", + "Blu Theia CN-B b29-0", + "Blu Theia YG-D b28-0", + "Blu Theia SF-F b27-0", + "Blu Theia QU-O d6-2", + "Blu Theia GP-D c13-0", + "Tyriedgoea BP-Q d5-2", + "Tyriedgoea BP-Q d5-3", + "Tyriedgoea BP-Q d5-0", + "Tyriedgoea BP-Q d5-4", + "Tyriedgoea DK-Q d5-1", + "Blu Theia OZ-G b26-0", + "Blu Theia QU-G b26-0", + "Tyriedgoea HQ-O d6-4", + "Tyriedgoea PG-D c13-1", + "Tyriedgoea JL-O d6-7", + "Tyriedgoea RB-D c13-1", + "Tyriedgoea KY-F b26-0", + "Tyriedgoea JL-O d6-1", + "Tyriedgoea OQ-E c12-0", + "Tyriedgoea CX-H b25-0", + "Tyriedgoea LV-E c12-0", + "Tyriedgoea EF-Q d5-8", + "Tyriedgoea UV-J b24-0", + "Tyriedgoea QP-L b23-0", + "Tyriedgoea MJ-N b22-0", + "Tyriedgoea LJ-N b22-0", + "Tyriedgoea KJ-N b22-0", + "Tyriedgoea FD-P b21-0", + "Tyriedgoea ED-P b21-0", + "Tyriedgoea ZW-Q b20-0", + "Tyriedgoea VQ-S b19-0", + "Tyriedgoea TV-S b19-0", + "Tyriedgoea XD-S d4-0", + "Tyriedgoea QK-U b18-0", + "Tyriedgoea PK-U b18-0", + "Tyriedgoea OK-U b18-0", + "Tyriedgoea LP-U b18-0", + "Tyriedgoea JU-U b18-0", + "Tyriedgoea NB-M c8-1", + "Tyriedgoea BT-W b17-0", + "Tyriedgoea ZS-W b17-0", + "Tyriedgoea RX-T d3-7", + "Tyriedgoea MB-M c8-1", + "Tyriedgoea TM-Y b16-0", + "Tyriedgoea SM-Y b16-0", + "Tyriedgoea QX-T d3-3", + "Tyriedgoea QX-T d3-2", + "Tyriedgoea LV-B b15-0", + "Tyriedgoea KV-B b15-0", + "Tyriedgoea EA-O c7-0", + "Tyriedgoea ZT-P c6-0", + "Tyriedgoea CU-D b14-0", + "Tyriedgoea EQ-Y e1", + "Tyriedgoea YN-F b13-0", + "Tyriedgoea LR-V d2-7", + "Tyriedgoea UN-R c5-0", + "Tyriedgoea QH-T c4-0", + "Tyriedgoea QH-T c4-1", + "Tyriedgoea HL-X d1-4", + "Tyriedgoea FP-M b9-0", + "Tyriedgoea EP-M b9-0", + "Tyriedgoea AJ-O b8-0", + "Tyriedgoea VC-Q b7-0", + "Tyriedgoea UC-Q b7-0", + "Tyriedgoea PW-R b6-0", + "Tyriedgoea OW-R b6-0", + "Tyriedgoea BF-Z d6", + "Tyriedgoea KB-S b6-0", + "Tyriedgoea FV-T b5-0", + "Tyriedgoea AF-Z d5", + "Tyriedgoea AP-V b4-0", + "Tyriedgoea AF-Z d6", + "Tyriedgoea BK-V b4-0", + "Tyriedgoea WD-X b3-0", + "Tyriedgoea VD-A c1-2", + "Tyriedgoea RX-Y b2-0", + "Tyriedgoea VY-A d8", + "Tyriedgoea SI-A c1-2", + "Tyriedgoea JW-A b2-0", + "Tyriedgoea GL-C b1-0", + "Tyriedgoea FL-C b1-0", + "Tyriedgoea ZJ-E b0", + "Pru Eurl QH-X b58-0", + "Pru Eurl CN-A d14-2", + "Pru Eurl JG-Z b57-0", + "Pru Eurl EQ-Z c28-0", + "Pru Eurl DA-B b57-0", + "Pru Eurl CA-B b57-0", + "Pru Eurl BA-B b57-0", + "Pru Eurl WT-C b56-0", + "Pru Eurl SN-E b55-0", + "Pru Eurl PS-E b55-0", + "Pru Eurl KM-G b54-0", + "Pru Eurl JM-G b54-0", + "Pru Eurl FG-I b53-0", + "Pru Eurl XF-O e6-0", + "Pru Eurl AA-K b52-0", + "Pru Eurl VT-L b51-0", + "Pru Eurl PF-E d12-9", + "Pru Eurl QX-O b49-0", + "Pru Eurl RA-E d12-9", + "Pru Eurl GG-I c24-3", + "Pru Eurl QA-E d12-5", + "Pru Eurl DL-I c24-2", + "Pru Eurl CQ-S b47-0", + "Pru Eurl BQ-S b47-0", + "Pru Eurl XJ-U b46-0", + "Pru Eurl YE-K c23-0", + "Sifaea BV-F d11-15", + "Pru Eurl OX-X b44-0", + "Pru Eurl SZ-P e5-1", + "Pru Eurl KZ-F d11-0", + "Sifaea ZZ-X b44-0", + "Sifaea VT-H d10-9", + "Sifaea UT-N c21-0", + "Sifaea QY-Z b43-0", + "Sifaea SY-N c21-0", + "Sifaea IX-B b43-0", + "Sifaea NS-P c20-1", + "Sifaea DR-D b42-0", + "Sifaea YK-F b41-0", + "Sifaea XK-F b41-0", + "Sifaea SE-H b40-0", + "Sifaea PN-J d9-10", + "Sifaea PN-J d9-2", + "Sifaea JS-K b38-0", + "Sifaea IS-K b38-0", + "Sifaea HS-K b38-0", + "Sifaea HN-K b38-0", + "Sifaea UT-R e4-1", + "Sifaea ES-K b38-0", + "Sifaea HY-I b39-0", + "Sifaea IT-I b39-0", + "Sifaea NN-J d9-8", + "Sifaea EY-I b39-0", + "Sifaea CM-R c19-0", + "Sifaea MN-J d9-1", + "Sifaea BM-R c19-1", + "Sifaea GE-H b40-0", + "Sifaea FE-H b40-0", + "Sifaea EE-H b40-0", + "Sifaea FZ-G b40-0", + "Sifaea EZ-G b40-0", + "Sifaea DZ-G b40-0", + "Sifaea ST-R e4-0", + "Sifaea BZ-G b40-0", + "Sifaea YD-H b40-0", + "Sifaea KN-J d9-3", + "Sifaea XD-H b40-0", + "Sifaea KN-J d9-13", + "Sifaea JN-J d9-1", + "Sifaea VD-H b40-0", + "Sifaea JN-J d9-2", + "Sifaea UL-R c19-1", + "Sifaea JW-K b38-0", + "Sifaea EQ-M b37-0", + "Sifaea EH-L d8-4", + "Sifaea BF-O b36-0", + "Sifaea AF-O b36-0", + "Sifaea VY-P b35-0", + "Sifaea YE-O b36-0", + "Sifaea XE-O b36-0", + "Sifaea DH-L d8-12", + "Sifaea DH-L d8-13", + "Sifaea RY-P b35-0", + "Sifaea IZ-U c17-0", + "Sifaea LS-R b34-0", + "Sifaea CH-L d8-6", + "Sifaea CH-L d8-1", + "Sifaea GW-U b32-1", + "Sifaea AW-M d7-2", + "Sifaea DD-Y c15-0", + "Sifaea DL-W b31-0", + "Sifaea YE-Y b30-1", + "Sifaea ZV-M d7-3", + "Sifaea AA-Y b30-0", + "Sifaea WT-Z b29-0", + "Sifaea KC-V e2-2", + "Sifaea WP-O d6-16", + "Sifaea KC-V e2-3", + "Sifaea QS-B b29-0", + "Sifaea RN-B b29-1", + "Sifaea QN-B b29-0", + "Sifaea VP-O d6-1", + "Sifaea ST-Z b29-0", + "Sifaea YV-M d7-12", + "Sifaea QT-Z b29-0", + "Sifaea LN-B b29-1", + "Sifaea UP-O d6-8", + "Sifaea DM-D b28-2", + "Sifaea TP-O d6-26", + "Sifaea CH-D b28-0", + "Sifaea BH-D b28-1", + "Sifaea WA-F b27-2", + "Sifaea SP-O d6-26", + "Sifaea PZ-G b26-0", + "Sifaea OZ-G b26-1", + "Pro Eur VV-I b25-0", + "Pro Eur UV-I b25-0", + "Pro Eur PP-K b24-2", + "Pro Eur SV-I b25-0", + "Pro Eur PK-K b24-0", + "Pro Eur CK-Q d5-6", + "Pro Eur ED-O b22-0", + "Pro Eur ZW-P b21-2", + "Pro Eur YW-P b21-0", + "Pro Eur XW-P b21-0", + "Pro Eur WW-P b21-0", + "Pro Eur WS-I c10-7", + "Pro Eur QQ-R b20-0", + "Pro Eur RM-K c9-3", + "Pro Eur WD-S d4-28", + "Pro Eur MG-M c8-4", + "Pro Eur CT-W b17-2", + "Pro Eur LG-M c8-5", + "Pro Eur WM-Y b16-1", + "Pro Eur TR-Y b16-0", + "Pro Eur NL-A b16-2", + "Pro Eur FA-O c7-0", + "Pro Eur IF-C b15-0", + "Pro Eur DZ-D b14-2", + "Pro Eur CZ-D b14-1", + "Pro Eur ZN-F b13-1", + "Pro Eur YT-P c6-3", + "Pro Eur LR-V d2-36", + "Pro Eur WN-F b13-1", + "Pro Eur ZT-D b14-1", + "Pro Eur AP-D b14-1", + "Pro Eur DV-B b15-2", + "Pro Eur CV-B b15-2", + "Pro Eur NX-T d3-41", + "Pro Eur NX-T d3-32", + "Pro Eur FB-M c8-1", + "Pro Eur LN-W b17-2", + "Pro Eur NX-T d3-15", + "Pro Eur GM-K c9-0", + "Pro Eur PE-T b19-0", + "Pro Eur FM-K c9-6", + "Pro Eur RK-R b20-0", + "Pro Eur IS-I c10-0", + "Pro Eur PD-S d4-9", + "Pro Eur GW-W e1-0", + "Pro Eur EH-K c9-9", + "Pro Eur EY-U b18-1", + "Pro Eur BM-K c9-3", + "Pro Eur ET-U b18-0", + "Pro Eur AM-K c9-5", + "Pro Eur OD-S d4-23", + "Pro Eur ZL-K c9-4", + "Pro Eur ND-S d4-26", + "Pro Eur VC-V b18-0", + "Pro Eur UC-V b18-0", + "Pro Eur IX-T d3-26", + "Pro Eur SC-V b18-0", + "Pro Eur TX-U b18-1", + "Pro Eur MD-S d4-24", + "Pro Eur MD-S d4-23", + "Pro Eur OR-W b17-1", + "Pro Eur HX-T d3-18", + "Pro Eur RF-M c8-2", + "Pro Eur HL-Y b16-0", + "Pro Eur IG-Y b16-0", + "Pro Eur DA-A b16-2", + "Pro Eur GG-Y b16-0", + "Pro Eur DL-Y b16-0", + "Pro Eur GX-T d3-1", + "Sifeae IH-A b16-1", + "Sifeae GM-A b16-0", + "Sifeae FM-A b16-0", + "Sifeae VX-T d3-11", + "Sifeae UX-T d3-1", + "Sifeae LF-O c7-0", + "Sifeae SC-U d3-1", + "Sifeae NW-V d2-6", + "Sifeae NW-V d2-16", + "Sifeae OE-E b14-1", + "Sifeae NE-E b14-0", + "Sifeae QK-C b15-0", + "Sifeae QC-U d3-22", + "Sifeae OK-C b15-0", + "Sifeae MK-C b15-1", + "Sifeae DU-P c6-4", + "Sifeae JZ-D b14-0", + "Sifeae GE-E b14-0", + "Sifeae FE-E b14-0", + "Sifeae CT-F b13-0", + "Sifeae BT-F b13-0", + "Sifeae ZY-P c6-1", + "Sifeae KW-V d2-9", + "Sifeae RR-H b12-0", + "Sifeae XY-P c6-6", + "Sifeae XY-P c6-0", + "Sifeae JW-V d2-12", + "Sifeae WD-E b14-0", + "Sifeae XT-P c6-5", + "Sifeae WY-D b14-0", + "Sifeae VY-D b14-1", + "Sifeae AA-C b15-1", + "Sifeae ZZ-N c7-0", + "Sifeae AL-A b16-1", + "Sifeae VE-C b15-1", + "Sifeae YK-A b16-1", + "Sifeae MX-T d3-28", + "Sifeae ZV-Y b16-0", + "Sifeae KC-U d3-4", + "Synuefe YG-Z b47-0", + "Synuefe XK-N c23-3", + "Col 285 Sector MR-M c7-13", + "Col 285 Sector SH-B b14-7", + "Col 285 Sector RH-B b14-2", + "HIP 28150", + "Col 285 Sector NM-B b14-6", + "Hyades Sector LC-V d2-99", + "Trianguli Sector QI-T b3-6", + "Trianguli Sector PI-T b3-7", + "Trianguli Sector TU-O a6-1", + "Tascheter Sector TY-R a4-2", + "LP 415-26", + "Delta Trianguli", + "LHS 4003", + "WISE 2056+1459", + "LP 634-1", + "Volungu", + "Liaedin", + "Wolf 1062", + "IL Aquarii", + "LAWD 96", + "Core Sys Sector CQ-P a5-2", + "Alectrona", + "Hyldekagati", + "Ceti Sector CQ-Y d89", + "Ceti Sector PD-S b4-1", + "Quivira", + "Kadrusa", + "ICZ CL-X b1-5", + "ICZ EW-V b2-4", + "Sanna", + "Euryale", + "LPM 26", + "Putamasin", + "LFT 78", + "Col 285 Sector NE-R a34-0", + "LHS 160", + "LHS 1351", + "LP 91-140", + "Ennead" + ], + "starport": [ + "Bosch Terminal", + "Julian Gateway", + "Jemison Dock", + "Galvani Port", + "Wundt Gateway", + "Conrad Port", + "Knapp Vision", + "Herzfeld Landing", + "Kotov Terminal", + "Weston Orbital", + "Ricardo Landing", + "Brand City", + "Huygens Mines", + "Zudov City", + "Chomsky Ring", + "Wescott Terminal", + "Dirac Hub", + "Planck Dock", + "Hertz Colony", + "Bosch Mines", + "Blaschke Vision", + "Nicollet City", + "Ejeta Colony", + "Pierres Ring", + "Grant Terminal", + "Narvaez Orbital", + "Legendre Ring", + "Popper Dock", + "Brooks City", + "Wells Hub", + "Barcelos City", + "Perez Market", + "Lopez de Villalobos Prospect", + "Oramus Legacy", + "Henry Hub", + "Schade Platform", + "Selberg's Inheritance", + "Solovyov Orbital", + "Pierce Hanger", + "Giles Colony", + "Marshall Hub", + "Ising Hub", + "Arrhenius Hub", + "Vaucanson Hub", + "Frimout Horizons", + "Parry Terminal", + "Saberhagen Port", + "Stafford Terminal", + "Willis City", + "Romanenko Gateway", + "Jakes Enterprise", + "Budarin Terminal", + "Horowitz Gateway", + "Burke Hub", + "Perrin Ring", + "Balandin Enterprise", + "So-yeon Port", + "Potter Gateway", + "Tudela Installation", + "Quimper Ring", + "Julian City", + "Whitelaw Enterprise", + "Saunders's Dive", + "Harvestport", + "Brunton Hub", + "Nasmyth Station", + "Currie Enterprise", + "McArthur Plant", + "Lundwall City", + "Tshang Enterprise", + "Mach Dock", + "Wellman Gateway", + "Moisuc Refinery", + "Boe Enterprise", + "Gelfand Survey", + "Artyukhin Ring", + "Aitken Vision", + "Laphrian Shipyard", + "Crook Orbital", + "Rand City", + "Morgan Terminal", + "Oswald Platform", + "Aksyonov Platform", + "Coney Arena", + "Roberts Hub", + "Ayerdhal City", + "Derleth Orbital", + "Maire Gateway", + "Dedman Gateway", + "Bailey Ring", + "Humphreys Enterprise", + "Kandel Ring", + "Polya Enterprise", + "Rozhdestvensky Station", + "Cameron Survey", + "Shuttleworth Terminal", + "Yu Port", + "Bolger Vision", + "Alpers Refinery", + "Goeschke Station", + "Stebler Mines", + "Duke Hub", + "Shepard Ring", + "Cormack Orbital", + "Harris Platform", + "Fung Outpost", + "Ore Terminal", + "McDaniel Station", + "Ellison Station", + "Hennepin Enterprise", + "Luiken Port", + "Cochrane Terminal", + "McDonald Port", + "Bykovsky Ring", + "Vaucanson Settlement", + "Nicollier Ring", + "Carrier Dock", + "DG-1 Refinery", + "Blackman Terminal", + "Proteus Orbital", + "Katzenstein Settlement", + "Porta", + "Spedding Orbital", + "Anders Orbital", + "Mohmand Dock", + "Maler Hub", + "Scott Settlement", + "Sarich Port", + "Tyurin Port", + "Reisman Station", + "Fulton Landing", + "DENIS FILIPPOV", + "Rattus High", + "Port Sippar", + "Amar Station", + "Hennen City", + "Cabrera Dock", + "Haller Port", + "Pennington City", + "Foda Station", + "Stebler City", + "Gibson Settlement", + "Strekalov Dock", + "Behnken Terminal", + "Euler Port", + "Archimedes Hub", + "Ross Dock", + "Blalock Orbital", + "Pavlov Settlement", + "Galileo", + "Stein Platform", + "Beatty Landing", + "Galiano Plant", + "Rangarajan's Base", + "Jemison Refinery", + "Solo Orbiter", + "Brunel Station", + "Brendan Gateway", + "Godel Dock", + "Slipher Vision", + "EG Main HQ", + "Crown Orbital", + "Crown City", + "Watt Ring", + "Coye Orbital" + ] + }, + "greatestDistanceFromStart": 9017.2195143253, + "creditsEarned": 542823, + "bodiesCount": 0, + "scanSoldLevels": { + "lev_0": 647, + "lev_1": 489, + "lev_2": 132, + "lev_3": 0 + }, + "latestPayouts": [ + { + "market": "Port Sippar", + "value": 3218 + }, + { + "market": "Quimper Ring", + "value": 63035 + }, + { + "market": "Rangarajan's Base", + "value": 141702 + }, + { + "market": "Galiano Plant", + "value": 59372 + }, + { + "market": "Beatty Landing", + "value": 3424 + } + ], + "highestPayout": 34942, + "lastVisitedStarSystems": [ + "Ennead", + "LP 91-140", + "LHS 1351", + "LFT 78", + "LHS 1351" + ], + "bodiesSoldCount": 1268, + "bodiesFirstDiscovered": 26 + }, + "ship": { + "spend": { + "ships": 8227344, + "fuel": 160669, + "modules": 15615586, + "ammo": 232942, + "repair": 909596 + }, + "fuel_units": { + "purchased": 0, + "scooped": 2232 + }, + "insurance": { + "claims": 24, + "value": 2714138 + } + }, + "wealth": { + "maxCredits": 23883052 + }, + "trade": { + "marketIds": [ + "3228160256", + "3228321792", + "3228393472", + "3228129280", + "3228062976", + "3227948288", + "3227868160", + "3228192000", + "3228189952", + "3228190208", + "3228191232", + "3228190464", + "3228190720", + "3228244480", + "3228249088", + "3228264192", + "3228252160", + "3228251904", + "3228190976", + "3228191488", + "3228249344", + "3227868416", + "3228248064", + "3228470784", + "3228244736", + "3228471040", + "3228339968", + "3228340224", + "3228244224", + "3228247808", + "3228329472", + "3228390400", + "3223529472", + "128129272", + "3223288832", + "3228081408", + "3228081152", + "3227955968", + "3227957248", + "3228063232", + "3228028672", + "3227998208", + "3227998464", + "3228066560", + "128134648", + "128154360", + "3228040192", + "128153848", + "3228064768", + "3228065024", + "3228064256", + "3227919360", + "128169976", + "3228064000", + "128073720", + "3228077824", + "128073464", + "3228120576" + ], + "furthest": { + "distance": 99.480201783445, + "origin": 128129272, + "destination": "3228390400" + }, + "largestProfit": { + "value": 171720, + "commodity": "Beryllium", + "qty": 120, + "marketId": "3228081152" + }, + "largestProfitPerItem": { + "value": 1433, + "commodity": "Beryllium", + "marketId": "3228081152" + }, + "count": 429, + "qty": 22410, + "profit": 14759658, + "totalDistance": 198621.73693075 + }, + "mining": { + "largestProfit": { + "value": 0, + "commodity": 0, + "qty": 0, + "marketId": 0 + }, + "largestProfitPerItem": { + "value": 0, + "commodity": 0, + "marketId": 0 + }, + "count": 0, + "qty": 0, + "profit": 0, + "converted": { + "qty": 0 + } + }, + "blackMarket": { + "marketIds": [ + "3227868160", + "3228338688", + "3228189952", + "3228247808", + "3228390144", + "128130296" + ], + "furthest": { + "distance": 69224.099624264, + "origin": 0, + "destination": "3228338688" + }, + "largestProfit": { + "value": 132005, + "commodity": "OnionHead", + "qty": 17, + "marketId": "3228390144" + }, + "largestProfitPerItem": { + "value": 13130, + "commodity": "MotronaExperienceJelly", + "marketId": "128130296" + }, + "count": 13, + "qty": 67, + "profit": 292429, + "totalDistance": 556021.41706887 + }, + "stolenGoods": { + "largestProfit": { + "value": 65650, + "commodity": "MotronaExperienceJelly", + "qty": 5, + "marketId": "128130296" + }, + "largestProfitPerItem": { + "value": 13130, + "commodity": "MotronaExperienceJelly", + "marketId": "128130296" + }, + "count": 10, + "qty": 38, + "profit": 157238 + }, + "combat": { + "bounty": { + "highestClaimed": 134706, + "qty": 239, + "value": 1215158 + }, + "bond": { + "qty": 223, + "value": 1559000 + } + }, + "crime": { + "fine": { + "qty": 11, + "value": 135334, + "factions": [] + }, + "bounty": { + "highest": { + "value": 0, + "faction": 0, + "systemId": 0 + }, + "qty": 0, + "value": 0, + "factions": [] + }, + "stolenCargo": { + "qty": 75, + "value": 442840 + } + }, + "PVP": { + "kills": { + "ranks": { + "r0": 2, + "r1": 1, + "r2": 2, + "r3": 0, + "r4": 1, + "r5": 0, + "r6": 0, + "r7": 0, + "r8": 0 + } + } + }, + "NCP": { + "kills": { + "ranks": { + "r0": 2, + "r1": 4, + "r2": 2, + "r3": 3, + "r4": 1, + "r5": 0, + "r6": 0, + "r7": 0, + "r8": 0 + } + } + }, + "prealloc": true, + "ranks": { + "combat": { + "1": { + "ts": 1417719389, + "gt": 144380 + }, + "2": { + "ts": 1419164701, + "gt": 328001 + }, + "3": { + "ts": 1419789595, + "gt": 381168 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "crime": { + "1": { + "ts": 0, + "gt": 0 + }, + "2": { + "ts": 0, + "gt": 0 + }, + "3": { + "ts": 0, + "gt": 0 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "explore": { + "1": { + "ts": 1416679505, + "gt": 7340 + }, + "2": { + "ts": 1416773896, + "gt": 32330 + }, + "3": { + "ts": 1425813076, + "gt": 645416 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "trade": { + "1": { + "ts": 1417041602, + "gt": 57777 + }, + "2": { + "ts": 1417208591, + "gt": 78181 + }, + "3": { + "ts": 1417804896, + "gt": 154613 + }, + "4": { + "ts": 1421439724, + "gt": 490202 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "federation": { + "1": { + "ts": 1418494995, + "gt": 227112 + }, + "2": { + "ts": 1418496671, + "gt": 227112 + }, + "3": { + "ts": 1419692207, + "gt": 369093 + }, + "4": { + "ts": 1420382992, + "gt": 418109 + }, + "5": { + "ts": 1437243056, + "gt": 847776 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + }, + "empire": { + "1": { + "ts": 1437243056, + "gt": 847776 + }, + "2": { + "ts": 0, + "gt": 0 + }, + "3": { + "ts": 0, + "gt": 0 + }, + "4": { + "ts": 0, + "gt": 0 + }, + "5": { + "ts": 0, + "gt": 0 + }, + "6": { + "ts": 0, + "gt": 0 + }, + "7": { + "ts": 0, + "gt": 0 + }, + "8": { + "ts": 0, + "gt": 0 + } + } + }, + "lastModulesBought": [ + { + "market": "EG Main HQ", + "module": "Hpt_ChaffLauncher_Tiny", + "value": 8500 + }, + { + "market": "Godel Dock", + "module": "Int_DockingComputer_Standard", + "value": 4500 + }, + { + "market": "Quimper Ring", + "module": "Hpt_ElectronicCountermeasure_Tiny", + "value": 12500 + }, + { + "market": "Quimper Ring", + "module": "Decal_Combat_Competent", + "value": 0 + }, + { + "market": "Quimper Ring", + "module": "Int_HullReinforcement_Size4_Class2", + "value": 195000 + } + ], + "illegalGoods": { + "largestProfit": { + "value": 132005, + "commodity": "OnionHead", + "qty": 17, + "marketId": "3228390144" + }, + "largestProfitPerItem": { + "value": 13130, + "commodity": "MotronaExperienceJelly", + "marketId": "128130296" + }, + "count": 10, + "qty": 45, + "profit": 239863 + }, + "NPC": { + "kills": { + "ranks": { + "r1": 14, + "r3": 17, + "r2": 14, + "r0": 3, + "r4": 12, + "r5": 13, + "rArray": 2, + "r8": 3, + "r7": 2, + "r6": 5 + } + } + }, + "vanishCounters": { + "amongPeers": 5, + "notInDanger": 5, + "isNotDying": 2 + } + }, + "ship": { + "name": "CobraMkIII", + "modules": { + "MediumHardpoint1": { + "module": { + "id": 128049460, + "name": "Hpt_MultiCannon_Gimbal_Medium", + "value": 57000, + "unloaned": 57000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 90, + "hopper": 2100 + } + } + }, + "MediumHardpoint2": { + "module": { + "id": 128049386, + "name": "Hpt_PulseLaser_Gimbal_Medium", + "value": 35400, + "unloaned": 35400, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "SmallHardpoint1": { + "module": { + "id": 128049385, + "name": "Hpt_PulseLaser_Gimbal_Small", + "value": 6600, + "unloaned": 6600, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "SmallHardpoint2": { + "module": { + "id": 128049459, + "name": "Hpt_MultiCannon_Gimbal_Small", + "value": 14250, + "unloaned": 14250, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 90, + "hopper": 2100 + } + } + }, + "TinyHardpoint1": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 8500, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "TinyHardpoint2": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 8500, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "Decal1": { + "module": { + "id": 128667738, + "name": "Decal_Combat_Competent", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Decal2": { + "module": { + "id": 128667655, + "name": "Decal_Skull3", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Decal3": { + "module": { + "id": 128667655, + "name": "Decal_Skull3", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PaintJob": { + "module": { + "id": 128666731, + "name": "PaintJob_CobraMkIII_Stripe2_03", + "value": 0, + "health": 1000000, + "on": true, + "priority": 1, + "free": true, + "unloaned": 0 + } + }, + "Armour": { + "module": { + "id": 128049282, + "name": "CobraMkIII_Armour_Grade3", + "value": 341746, + "unloaned": 341746, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PowerPlant": { + "module": { + "id": 128064045, + "name": "Int_Powerplant_Size4_Class3", + "value": 178898, + "unloaned": 178898, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "MainEngines": { + "module": { + "id": 128064082, + "name": "Int_Engine_Size4_Class5", + "value": 1610080, + "unloaned": 1610080, + "free": false, + "health": 1000000, + "on": true, + "priority": 0 + } + }, + "FrameShiftDrive": { + "module": { + "id": 128064117, + "name": "Int_Hyperdrive_Size4_Class5", + "value": 1610080, + "unloaned": 1610080, + "free": false, + "health": 1000000, + "on": true, + "priority": 3 + } + }, + "LifeSupport": { + "module": { + "id": 128064149, + "name": "Int_LifeSupport_Size3_Class2", + "value": 10133, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "unloaned": 10133 + } + }, + "PowerDistributor": { + "module": { + "id": 128064192, + "name": "Int_PowerDistributor_Size3_Class5", + "value": 158331, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "unloaned": 158331 + } + }, + "Radar": { + "module": { + "id": 128064229, + "name": "Int_Sensors_Size3_Class2", + "value": 10133, + "unloaned": 10133, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "FuelTank": { + "module": { + "id": 128064349, + "name": "Int_FuelTank_Size4_Class3", + "value": 24734, + "health": 1000000, + "on": true, + "priority": 1, + "free": false, + "unloaned": 24734 + } + }, + "Slot01_Size4": { + "module": { + "id": 128668544, + "name": "Int_HullReinforcement_Size4_Class2", + "value": 195000, + "unloaned": 195000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot02_Size4": { + "module": { + "id": 128064314, + "name": "Int_ShieldCellBank_Size4_Class2", + "value": 28373, + "unloaned": 28373, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 2 + } + } + }, + "Slot03_Size4": { + "module": { + "id": 128064274, + "name": "Int_ShieldGenerator_Size4_Class2", + "value": 59633, + "unloaned": 59633, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot04_Size2": { + "module": { + "id": 128668540, + "name": "Int_HullReinforcement_Size2_Class2", + "value": 36000, + "unloaned": 36000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot05_Size2": { + "module": { + "id": 128666709, + "name": "Int_FSDInterdictor_Size2_Class2", + "value": 100800, + "unloaned": 100800, + "free": false, + "health": 1000000, + "on": true, + "priority": 3 + } + }, + "Slot06_Size2": { + "module": { + "id": 128049549, + "name": "Int_DockingComputer_Standard", + "value": 4500, + "unloaned": 4500, + "free": false, + "health": 1000000, + "on": false, + "priority": 0 + } + } + }, + "value": { + "hull": 235787, + "modules": 4498691, + "cargo": 0, + "total": 4734478, + "unloaned": 4498691 + }, + "free": false, + "health": { + "hull": 1000000, + "shield": 1000000, + "shieldup": true + }, + "wear": { + "dirt": 11858, + "fade": 358, + "tear": 35956, + "game": 5221 + }, + "cockpitBreached": false, + "oxygenRemaining": 450000, + "fuel": { + "capacity": 16, + "lvl": 16 + }, + "reserve": { + "lvl": 0.830754 + }, + "cargo": { + "capacity": 0, + "qty": 0, + "items": [] + }, + "passengers": [], + "refinery": null + }, + "ships": { + "0": { + "name": "SideWinder", + "station": { + "id": "3228338688", + "name": "Nicollet City" + }, + "starsystem": { + "id": "8055378940618", + "name": "Chang Yeh", + "systemaddress": "8055378940618" + } + }, + "2": { + "name": "CobraMkIII", + "station": { + "id": "3223840768", + "name": "Watt Ring" + }, + "starsystem": { + "id": "65179", + "name": "Ennead", + "systemaddress": "6680989373138" + } + } + } +} \ No newline at end of file diff --git a/utils/src/test/resources/log4j.properties b/utils/src/test/resources/log4j.properties index a8bd3ef..c4b2c17 100644 --- a/utils/src/test/resources/log4j.properties +++ b/utils/src/test/resources/log4j.properties @@ -5,4 +5,4 @@ log4j.appender.stdout.layout=org.apache.log4j.PatternLayout log4j.appender.stdout.layout.ConversionPattern=%p: %d{dd.MM.yyyy HH:mm:ss} (%F:%L) - %m%n - +log4j.logger.ru.trader.edce = DEBUG \ No newline at end of file