diff --git a/Procfile b/Procfile index e1d4131..489b270 100644 --- a/Procfile +++ b/Procfile @@ -1 +1 @@ -web: node app.js +web: node server.js diff --git a/Procfile.development b/Procfile.development new file mode 100644 index 0000000..36de376 --- /dev/null +++ b/Procfile.development @@ -0,0 +1,3 @@ +web: node --debug server.js NODE_ENV=development +db: mongod +debugger: node-inspector \ No newline at end of file diff --git a/app.js b/app.js deleted file mode 100644 index e7d7a5b..0000000 --- a/app.js +++ /dev/null @@ -1,31 +0,0 @@ -var express = require('express') - , routes = require('./routes') - , user = require('./routes/user') - , http = require('http') - , path = require('path'); - -var app = express(); - -app.set('port', process.env.PORT || 3000); -app.set('views', __dirname + '/views'); -app.set('view engine', 'jade'); -app.set('view options', { pretty: true }); -app.use(express.favicon()); -app.use(express.logger('dev')); -app.use(express.bodyParser()); -app.use(express.methodOverride()); -app.use(express.cookieParser('your secret here')); -app.use(express.session()); -app.use(app.router); -app.use(require('stylus').middleware(__dirname + '/public')); -app.use(express.static(path.join(__dirname, 'public'))); - -app.configure('development', function() { app.use(express.errorHandler({ dumpExceptions: true, showStack: true })); }); -app.configure('production', function() { app.use(express.errorHandler()); }); - -app.get('/', routes.index); -app.get('/users', user.list); - -http.createServer(app).listen(app.get('port'), function(){ - console.log('Express server listening on port ' + app.get('port')); -}); diff --git a/app/controllers/operations.js b/app/controllers/operations.js new file mode 100644 index 0000000..c693842 --- /dev/null +++ b/app/controllers/operations.js @@ -0,0 +1,115 @@ +var mongoose = require('mongoose') + , async = require('async') + , Operation = mongoose.model('Operation') + , _ = require('underscore') + +mongoose.set('debug', true) + +// Find operation by id +exports.operation = function(req, res, next, id){ + Operation.load(id, function (err, operation) { + if (err) return next(err) + if (!operation) return next(new Error('Failed to load operation ' + id)) + req.operation = operation + next() + }) +} + +// GET /ops +exports.index = function(req, res) { + res.locals.path = req.path + var page = req.param('page') > 0 ? req.param('page') : 0 + var perPage = 10 + var options = { + perPage: perPage, + page: page + } + + Operation.list(options, function(err, operations) { + if (err) return res.render('500') + Operation.count().exec(function (err, count) { + res.render('operations/index', { + title: 'Operations Manifest', + operations: operations, + page: page, + pages: count / perPage + }) + }) + }) +} + +// GET /ops/:id +exports.show = function(req, res){ + res.locals.path = req.path + res.render('operations/show', { + title: 'Operation', + operation: req.operation + }) +} + +// GET /ops/new +exports.new = function(req, res){ + res.locals.path = req.path + res.render('operations/new', { + title: 'Register an Operation', + operation: new Operation({}) + }) +} + +// POST /ops +exports.create = function (req, res) { + res.locals.path = req.path + var operation = new Operation(req.body) + operation.save(function(err) { + if (err) { + res.render('operations/new', { + title: 'Register an Operation', + operation: operation, + errors: err.errors, + req: req.body + }) + } + else { + res.redirect('/ops/' + operation._id) + } + }) +} + +// GET /ops/:id/edit +exports.edit = function (req, res) { + res.locals.path = req.path + res.render('operations/edit', { + title: 'Edit Operation', + operation: req.operation + }) +} + +// PUT /ops/:id +exports.update = function(req, res) { + res.locals.path = req.path + var operation = req.operation + operation = _.extend(operation, req.body) + + operation.save(function (err) { + if (err) { + res.render('operations/edit', { + title: 'Edit Operation', + operation: operation, + errors: err.errors + }) + } + else { + res.redirect('/ops/' + operation._id) + } + }) +} + +// DELETE /ops/:id +exports.destroy = function(req, res){ + var operation = req.operation + operation.remove(function(err){ + // req.flash('notice', 'Deleted successfully') + res.redirect('/ops') + }) +} + diff --git a/app/controllers/root.js b/app/controllers/root.js new file mode 100644 index 0000000..36271be --- /dev/null +++ b/app/controllers/root.js @@ -0,0 +1,4 @@ +// GET / +exports.index = function (req, res) { + res.render('root/index', {title: 'index'}) +} \ No newline at end of file diff --git a/app/helpers/helpers.js b/app/helpers/helpers.js new file mode 100644 index 0000000..308a7d9 --- /dev/null +++ b/app/helpers/helpers.js @@ -0,0 +1,34 @@ +var url = require('url') + , qs = require('querystring') + , moment = require('moment') + +function helpers () { + return function (req, res, next) { + res.locals.req = req + res.locals.isActive = function (link) { + return req.url.indexOf(link) !== -1 ? 'active' : '' + } + res.locals.formatDatetime = formatDatetime + res.locals.datetimeFormatString = datetimeFormatString + res.locals.moment = moment + + if (typeof req.flash !== 'undefined') { + res.locals.info = req.flash('info') + res.locals.errors = req.flash('errors') + res.locals.success = req.flash('success') + res.locals.warning = req.flash('warning') + } + + next() + } +} + +module.exports = helpers + +function datetimeFormatString () { + return 'MM/DD/YY HH:mm' +} + +function formatDatetime (date) { + return moment(date).format(datetimeFormatString()); +} diff --git a/app/models/operation.js b/app/models/operation.js new file mode 100644 index 0000000..8af8cf3 --- /dev/null +++ b/app/models/operation.js @@ -0,0 +1,35 @@ +var mongoose = require('mongoose') + , env = process.env.NODE_ENV || 'development' + , Schema = mongoose.Schema + +// schema +var OperationSchema = new Schema({ + system : {type : String, default : '', trim : true} + , starts_at : {type : Date, default : Date.now} + , created_at : {type : Date, default : Date.now} +}) + +// validations +OperationSchema.path('system').validate(function (system) { + return system.length > 0 +}, 'System name cannot be blank') + +// static functions +OperationSchema.statics = { + load: function (id, cb) { + this.findOne({ _id : id }) + .exec(cb) + }, + + list: function (options, cb) { + var criteria = options.criteria || {} + + this.find(criteria) + .sort({'createdAt': -1}) + .limit(options.perPage) + .skip(options.perPage * options.page) + .exec(cb) + } +} + +mongoose.model('Operation', OperationSchema) \ No newline at end of file diff --git a/app/views/404.jade b/app/views/404.jade new file mode 100644 index 0000000..93fe8f2 --- /dev/null +++ b/app/views/404.jade @@ -0,0 +1,8 @@ +extends layouts/default + +block content + div.jumbotron.masthead + div.container + h1 Error 404 + p Sorry, but we couldn't find '#{url}'. + diff --git a/app/views/500.jade b/app/views/500.jade new file mode 100644 index 0000000..c688398 --- /dev/null +++ b/app/views/500.jade @@ -0,0 +1,8 @@ +extends layouts/default + +block content + div.jumbotron.masthead + div.container + h1 Error 500 + p There seems to be a malfunction with the docking clamps. + diff --git a/app/views/includes/footer.jade b/app/views/includes/footer.jade new file mode 100644 index 0000000..3e048de --- /dev/null +++ b/app/views/includes/footer.jade @@ -0,0 +1,5 @@ +div#footer.container-fluid.navbar-fixed-bottom + a(href='https://github.com/rcreasey/eve-foreman') View source + +script(src='//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.0/js/bootstrap.min.js') +script(src='//tarruda.github.io/bootstrap-datetimepicker/assets/js/bootstrap-datetimepicker.min.js') diff --git a/app/views/includes/head.jade b/app/views/includes/head.jade new file mode 100644 index 0000000..9d777d5 --- /dev/null +++ b/app/views/includes/head.jade @@ -0,0 +1,8 @@ +link(rel='stylesheet', href='//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.0/css/bootstrap.min.css') +style(type='text/css') + body { padding-top: 60px; } +link(rel='stylesheet', href='//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.0/css/bootstrap-responsive.min.css') +link(rel='stylesheet', href='//netdna.bootstrapcdn.com/bootswatch/2.3.1/slate/bootstrap.min.css') +link(rel='stylesheet', href='//tarruda.github.io/bootstrap-datetimepicker/assets/css/bootstrap-datetimepicker.min.css') +link(rel='stylesheet', href='/stylesheets/style.css') +script(src='//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js') diff --git a/app/views/includes/header.jade b/app/views/includes/header.jade new file mode 100644 index 0000000..5763f3f --- /dev/null +++ b/app/views/includes/header.jade @@ -0,0 +1,12 @@ +div.navbar.navbar-inverse.navbar-fixed-top + div.navbar-inner + div.container-fluid + a.btn.btn-navbar(data-toggle='collapse', data-target='.nav-collapse') + span.icon-bar + span.icon-bar + span.icon-bar + a.brand(href='/') EVE Foreman + div.nav-collapse.collapse + ul.nav + li + a(href='/ops') Operations diff --git a/app/views/layouts/default.jade b/app/views/layouts/default.jade new file mode 100644 index 0000000..3540dda --- /dev/null +++ b/app/views/layouts/default.jade @@ -0,0 +1,12 @@ +!!! +doctype 5 +html + head + title eve foreman :: #{title} + include ../includes/head + body + include ../includes/header + + block content + + include ../includes/footer \ No newline at end of file diff --git a/app/views/operations/edit.jade b/app/views/operations/edit.jade new file mode 100644 index 0000000..324ed46 --- /dev/null +++ b/app/views/operations/edit.jade @@ -0,0 +1,4 @@ +extends form + +block preamble + h1 Edit Operation diff --git a/app/views/operations/form.jade b/app/views/operations/form.jade new file mode 100644 index 0000000..e6a6458 --- /dev/null +++ b/app/views/operations/form.jade @@ -0,0 +1,53 @@ +extends layout + +block context + block preamble + - var action = '/ops' + if (!operation.isNew) + - action += '/' + operation.id + + if (typeof errors !== 'undefined') + .fade.in.alert.alert-block.alert-error + a.close(data-dismiss="alert", href="javascript:void(0)") x + ul + each error in errors + li= error.type + + form.form-horizontal(method="post", action=action, enctype="multipart/form-data") + if (!operation.isNew) + input(type="hidden", name="id", value=operation.id) + input(type="hidden", name="_method", value="PUT") + + .control-group + label.control-label(for='system') Solar System + .controls + input#system(type='text', name="system", value=operation.system, placeholder='Enter the solar system', autocomplete='off') + span.help-block What system is this operation taking place in? + :coffeescript + populateSystems = -> + $.getJSON "/data/systems.json", (systems) -> + system_names = [] + + for name of systems + system_names.push systems[name] + + $('#system').typeahead + source: system_names + items: 8 + + $ -> + populateSystems() + + .control-group + label.control-label(for='starts_at') Start Time + .controls + span.input-append.date.starts_at + input#starts_at(type='text', name="starts_at", value=formatDatetime(operation.starts_at), size='16', data-format='MM/dd/yy hh:mm', data-pickSeconds=false) + span.add-on + i(data-time-icon='icon-time', form-date-icon='icon-calendar') + :coffeescript + $ -> + $('.date.starts_at').datetimepicker() + + .form-actions + button.btn.btn-primary(type='submit') Save changes diff --git a/app/views/operations/index.jade b/app/views/operations/index.jade new file mode 100644 index 0000000..200d891 --- /dev/null +++ b/app/views/operations/index.jade @@ -0,0 +1,16 @@ +extends layout + +block context + h1= title + + table.table.table-striped + thead + tr + th System + th Date + tbody + each operation in operations + tr + td + a.title(href='/ops/' + operation._id)= operation.system + td= operation.starts_at diff --git a/app/views/operations/layout.jade b/app/views/operations/layout.jade new file mode 100644 index 0000000..4c39b2e --- /dev/null +++ b/app/views/operations/layout.jade @@ -0,0 +1,9 @@ +extends ../layouts/default + +block content + div.container-fluid + .row-fluid + .span2 + include ../operations/subnav + .span10 + block context \ No newline at end of file diff --git a/app/views/operations/new.jade b/app/views/operations/new.jade new file mode 100644 index 0000000..c823820 --- /dev/null +++ b/app/views/operations/new.jade @@ -0,0 +1,4 @@ +extends form + +block preamble + h1 Register an Operation diff --git a/app/views/operations/show.jade b/app/views/operations/show.jade new file mode 100644 index 0000000..39f9a3d --- /dev/null +++ b/app/views/operations/show.jade @@ -0,0 +1,6 @@ +extends layout + +block context + h1= operation.system + pre.well= operation + diff --git a/app/views/operations/subnav.jade b/app/views/operations/subnav.jade new file mode 100644 index 0000000..1bce182 --- /dev/null +++ b/app/views/operations/subnav.jade @@ -0,0 +1,24 @@ +ul.nav.nav-list + li.nav-header Operations + - if (path == '/ops') + li + a(href='/ops/new') Registration + - else + li + a(href='/ops') + i.icon-th-list + | Manifest + - if (operation && !operation.isNew) + li + a(href='/ops/' + operation.id + '/edit') + i.icon-edit + | Edit Operation + - if (path.indexOf('edit') !== -1) + li + a(href="#", onclick="$(this).next('form:first').submit()") + i.icon-trash + | Delete Operation + form(action='/ops/' + operation.id, method='post') + input(type='hidden', name='_method', value='DELETE') + + diff --git a/app/views/root/index.jade b/app/views/root/index.jade new file mode 100644 index 0000000..968412b --- /dev/null +++ b/app/views/root/index.jade @@ -0,0 +1,8 @@ +extends ../layouts/default + +block content + div.jumbotron.masthead + div.container + h1 EVE Foreman + p simplifying mining operations + diff --git a/config/config.js b/config/config.js new file mode 100644 index 0000000..23edd9c --- /dev/null +++ b/config/config.js @@ -0,0 +1,23 @@ +module.exports = { + development: { + root: require('path').normalize(__dirname + '/..'), + db: 'mongodb://localhost/eveforeman', + app: { + secret: 'dev' + } + }, + test: { + root: require('path').normalize(__dirname + '/..'), + db: 'mongodb://localhost/eveforeman_test', + app: { + secret: 'test' + } + }, + production: { + root: require('path').normalize(__dirname + '/..'), + db: process.env.MONGOHQ_URL, + app: { + secret: 's3kr3t_34t1ng' + } + } +} \ No newline at end of file diff --git a/config/express.js b/config/express.js new file mode 100644 index 0000000..a7f86b7 --- /dev/null +++ b/config/express.js @@ -0,0 +1,49 @@ +var express = require('express') + , mongoStore = require('connect-mongo')(express) + , helpers = require('../app/helpers/helpers.js') + +module.exports = function (app, config) { + app.set('showStackError', true) + app.use(require('stylus').middleware(config.root + '/public')); + app.use(express.static(config.root + '/public')) + app.use(express.logger('dev')) + app.set('views', config.root + '/app/views') + app.set('view engine', 'jade') + + app.configure(function () { + // dynamic helpers + app.use(helpers()) + + // bodyParser should be above methodOverride + app.use(express.bodyParser()) + app.use(express.methodOverride()) + + // cookieParser should be above session + app.use(express.cookieParser()) + app.use(express.session({ + secret: config.app.secret, + store: new mongoStore({ + url: config.db, + collection : 'sessions' + }) + })) + + // routes should be at the last + app.use(app.router) + + // use express favicon + app.use(express.favicon()) + + // custom error handler + app.use(function (err, req, res, next) { + if (~err.message.indexOf('not found')) return next() + console.error(err.stack) + res.status(500).render('500', { title: 'Hull breached.'}) + }) + + app.use(function (req, res, next) { + res.status(404).render('404', { title: 'Signal lost.', url: req.originalUrl }) + }) + + }) +} diff --git a/config/routes.js b/config/routes.js new file mode 100644 index 0000000..b6a5cfc --- /dev/null +++ b/config/routes.js @@ -0,0 +1,20 @@ +var async = require('async') + +module.exports = function (app, auth) { + + // operations + var operations = require('../app/controllers/operations') + app.get('/ops', operations.index) + app.get('/ops/new', operations.new) + app.post('/ops', operations.create) + app.get('/ops/:id', operations.show) + app.get('/ops/:id/edit', operations.edit) + app.put('/ops/:id', operations.update) + app.del('/ops/:id', operations.destroy) + + app.param('id', operations.operation) + + // root + var root = require('../app/controllers/root') + app.get('/', root.index) +} \ No newline at end of file diff --git a/package.json b/package.json index 1f0a26a..cc25fac 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "eveforeman.com", + "name": "eve-foreman", "version": "0.0.1", "private": true, "engines": { @@ -12,8 +12,17 @@ "dependencies": { "express": "3.2.5", "jade": "0.30.x", - "marked": "0.2.x", "stylus": "0.32.x", - "coffee-script": "1.6.x" + "coffee-script": "1.6.x", + "mongoose": "3.6.x", + "connect-mongo": "0.3.x", + "async": "0.2.8", + "underscore": "1.4.x", + "moment": "2.0.x" + }, + "devDependencies": { + "nodemon": "0.7.x", + "mocha": "1.10.x", + "should": "1.2.2" } -} \ No newline at end of file +} diff --git a/public/data/items.json b/public/data/items.json new file mode 100644 index 0000000..73fe7e3 --- /dev/null +++ b/public/data/items.json @@ -0,0 +1 @@ +{"32772": "Medium Ancillary Shield Booster", "32773": "Medium Ancillary Shield Booster Blueprint", "32774": "Small Ancillary Shield Booster", "32775": "Small Ancillary Shield Booster Blueprint", "32780": "X-Large Ancillary Shield Booster", "32781": "X-Large Ancillary Shield Booster Blueprint", "32782": "Light Defender Missile I", "32783": "Light Defender Missile I Blueprint", "18": "Plagioclase", "32787": "Salvage Drone I", "32788": "Cambion", "32789": "Cambion Blueprint", "32790": "Etana", "32791": "Etana Blueprint", "32792": "100 Aurum Token", "32793": "500 Aurum Token", "32797": "Armor Resistance Phasing", "32799": "Tactical Laser S", "32800": "Tactical Laser S Blueprint", "32801": "Tactical EMP S", "32802": "Tactical EMP S Blueprint", "32803": "Tactical Hybrid S", "32804": "Tactical Hybrid S Blueprint", "37": "Isogen", "38": "Nocxium", "39": "Zydrine", "40": "Megacyte", "32809": "Ammatar Navy Thermic Plating", "32810": "Ammatar Navy Thermic Plating Blueprint", "32811": "Iteron Mark IV Amastris Edition", "32812": "Iteron Mark IV Amastris Edition Blueprint", "45": "Frozen Plant Seeds", "32817": "Medium Mercoxit Mining Crystal Optimization I", "32818": "Medium Mercoxit Mining Crystal Optimization I Blueprint", "32819": "Medium Ice Harvester Accelerator I", "32820": "Medium Ice Harvester Accelerator I Blueprint", "32821": "Unrefined Vanadium Hafnite", "32822": "Unrefined Platinum Technite", "32823": "Unrefined Solerium", "32824": "Unrefined Caesarium Cadmide", "32825": "Unrefined Hexite", "32826": "Unrefined Rolled Tungsten Alloy", "32827": "Unrefined Titanium Chromide", "32828": "Unrefined Fernite Alloy", "32829": "Unrefined Crystallite Alloy", "32830": "Unrefined Vanadium Hafnite Reaction", "32831": "Unrefined Platinum Technite Reaction", "32832": "Unrefined Solerium Reaction", "32833": "Unrefined Caesarium Cadmide Reaction", "32834": "Unrefined Hexite Reaction", "32835": "Unrefined Rolled Tungsten Alloy Reaction", "32836": "Unrefined Titanium Chromide Reaction", "32837": "Unrefined Fernite Alloy Reaction", "32838": "Unrefined Crystallite Alloy Reaction", "32839": "Quest Survey Probe I Blueprint", "32840": "InterBus Catalyst", "32841": "InterBus Catalyst Blueprint", "32842": "Intaki Syndicate Catalyst", "32843": "Intaki Syndicate Catalyst Blueprint", "32844": "Inner Zone Shipping Catalyst", "32845": "Inner Zone Shipping Catalyst Blueprint", "32846": "Quafe Catalyst", "32847": "Quafe Catalyst Blueprint", "32848": "Aliastra Catalyst", "32849": "Aliastra Catalyst Blueprint", "32853": "SPZ-3 \"Torch\" Laser Sight Combat Ocular Enhancer (right/black)", "32854": "Discovery Survey Probe I Blueprint", "32855": "Gaze Survey Probe I Blueprint", "32858": "Station Container Blueprint", "32859": "Small Standard Container Blueprint", "32860": "Medium Standard Container Blueprint", "32861": "Large Standard Container Blueprint", "32862": "Giant Freight Container Blueprint", "32863": "Giant Secure Container Blueprint", "32864": "Huge Secure Container Blueprint", "32865": "Large Secure Container Blueprint", "32866": "Medium Secure Container Blueprint", "32867": "Small Secure Container Blueprint", "32868": "Small Audit Log Secure Container Blueprint", "32869": "Medium Audit Log Secure Container Blueprint", "32870": "Large Audit Log Secure Container Blueprint", "32871": "Station Vault Container Blueprint", "32872": "Algos", "32873": "Algos Blueprint", "32874": "Dragoon", "32875": "Dragoon Blueprint", "32876": "Corax", "32877": "Corax Blueprint", "32878": "Talwar", "32879": "Talwar Blueprint", "32880": "Venture", "32881": "Venture Blueprint", "19": "Spodumain", "32885": "Empire Emissary Medallion", "32886": "Republic Emissary Medallion", "32887": "Federation Emissary Medallion", "32888": "State Emissary Medallion", "32889": "Empire Diplomatic Documents", "32890": "Republic Diplomatic Documents", "32891": "Federation Diplomatic Documents", "32892": "State Diplomatic Documents", "21": "Hedbergite", "22": "Arkonor", "32918": "Mining Frigate", "32919": "Unit D-34343's Modified Drone Damage Amplifier", "32921": "Unit F-435454's Modified Drone Damage Amplifier", "32923": "Unit P-343554's Modified Drone Damage Amplifier", "32925": "Unit W-634's Modified Drone Damage Amplifier", "32927": "Unit D-34343's Modified Drone Link Augmentor", "32929": "Unit F-435454's Modified Drone Link Augmentor", "32931": "Unit P-343554's Modified Drone Link Augmentor", "32933": "Unit W-634's Modified Drone Link Augmentor", "32935": "Unit D-34343's Modified Omnidirectional Tracking Link", "32937": "Unit F-435454's Modified Omnidirectional Tracking Link", "32939": "Unit P-343554's Modified Omnidirectional Tracking Link", "32941": "Unit W-634's Modified Omnidirectional Tracking Link", "3279": "Zainou 'Gypsy' Propulsion Jamming PJ-806", "32943": "Unit D-34343's Modified Drone Navigation Computer", "32945": "Unit F-435454's Modified Drone Navigation Computer", "178": "Carbonized Lead S", "32947": "Unit P-343554's Modified Drone Navigation Computer", "180": "Proton S", "32949": "Unit W-634's Modified Drone Navigation Computer", "182": "Titanium Sabot S", "32951": "Unit D-34343's Modified Drone Control Unit", "184": "Phased Plasma S", "32953": "Unit F-435454's Modified Drone Control Unit", "186": "Carbonized Lead M", "32955": "Unit P-343554's Modified Drone Control Unit", "188": "Proton M", "32957": "Unit W-634's Modified Drone Control Unit", "190": "Titanium Sabot M", "191": "Fusion M", "192": "Phased Plasma M", "193": "EMP M", "194": "Carbonized Lead L", "355019": "PRO Drone Forge Gun", "196": "Proton L", "197": "Depleted Uranium L", "198": "Titanium Sabot L", "199": "Fusion L", "200": "Phased Plasma L", "201": "EMP L", "202": "Mjolnir Cruise Missile", "203": "Scourge Cruise Missile", "204": "Inferno Cruise Missile", "34": "Tritanium", "206": "Nova Heavy Missile", "207": "Mjolnir Heavy Missile", "208": "Inferno Heavy Missile", "209": "Scourge Heavy Missile", "210": "Scourge Light Missile", "35": "Pyerite", "212": "Mjolnir Light Missile", "213": "Nova Light Missile", "32982": "Salvage Drone I Blueprint", "32983": "Sukuuvestaa Heron", "32984": "Sukuuvestaa Heron Blueprint", "32985": "Inner Zone Shipping Imicus", "32986": "Inner Zone Shipping Imicus Blueprint", "32987": "Sarum Magnate", "32988": "Sarum Magnate Blueprint", "32989": "Vherokior Probe", "32990": "Vherokior Probe Blueprint", "223": "Iron Charge M", "224": "Tungsten Charge M", "32993": "Sodium Firework CXIV", "32994": "Barium Firework CXIV", "32995": "Copper Firework CXIV", "228": "Uranium Charge M", "229": "Plutonium Charge M", "230": "Antimatter Charge M", "32999": "Magnetometric Sensor Compensation", "33000": "Gravimetric Sensor Compensation", "33001": "Ladar Sensor Compensation", "33002": "Radar Sensor Compensation", "33003": "Enormous Freight Container", "33004": "Enormous Freight Container Blueprint", "33005": "Huge Freight Container", "33006": "Huge Freight Container Blueprint", "33007": "Large Freight Container", "33008": "Large Freight Container Blueprint", "33009": "Medium Freight Container", "33010": "Medium Freight Container Blueprint", "33011": "Small Freight Container", "33012": "Small Freight Container Blueprint", "245": "Gamma S", "246": "Multifrequency S", "33015": "The Mini Monolith", "33016": "A Handful of Tiny Stars", "33017": "Deactivated Station Key Pass", "33018": "Ship Fitting Guide", "33019": "Scotty the Docking Manager's Clone", "33020": "A Big Red Button", "33021": "Unit of Lag", "33022": "Postcard From Poitot", "33023": "A Tank of Honor", "33024": "Animal Medical Expert", "33025": "Military Experts and You", "33026": "Rules of Engagement", "33027": "Little Helper, Female", "33028": "Little Helper, Male", "33029": "Replica Gallente Cruiser", "33030": "Model of a Fighter", "33031": "NEO YC 114: Team Ineluctable", "33032": "NEO YC 114: Raiden. 58th Squadron", "33033": "NEO YC 114: Last Huzzah", "33034": "NEO YC 114: Why Dash", "33035": "NEO YC 114: RONIN and pixies", "33036": "NEO YC 114: Expendables", "33037": "NEO YC 114: The HUNS", "33038": "NEO YC 114: Tinkerhell and Alts", "33039": "NEO YC 114: Tengu Terror", "33040": "NEO YC 114: Oxygen Isonopes", "33041": "NEO YC 114: Africas Finest", "33042": "NEO YC 114: Something Else", "33043": "NEO YC 114: The Exiled Gaming", "33044": "NEO YC 114: Perihelion Beryllium Duralumin", "33045": "NEO YC 114: Goggle Wearing Internet Crime Fighters", "33046": "NEO YC 114: ISN Incursion Shiny Network", "33047": "NEO YC 114: Baaaramu", "33048": "NEO YC 114: Asine Hitamas team", "33049": "NEO YC 114: EFS", "33050": "NEO YC 114: Much Crying Old Experts", "33051": "NEO YC 114: DeepWater", "33052": "NEO YC 114: Blue Ballers", "33053": "NEO YC 114: The Gentlemen Renegades", "33054": "NEO YC 114: Guiding Hand Social Club", "33055": "NEO YC 114: XXXMity", "33056": "NEO YC 114: My Little Nulli", "33057": "NEO YC 114: 8 CAS", "33058": "Concordokken", "33059": "Shuttle Piloting For Dummies", "33060": "*Sneaks in a classic*", "33061": "Public Portrait: How To", "33062": "Men's 'Red Star' T-shirt", "33063": "Women's 'Red Star' T-shirt", "33064": "Boots.ini", "33065": "Donut Holder", "33066": "New Eden Soundbox", "33067": "Deactivated Station Key Pass Blueprint", "33069": "Orbital Target", "33070": "New Eden Open Gold Medal", "33071": "New Eden Open Silver Medal", "33072": "New Eden Open Bronze Medal", "33073": "New Eden Open Fourth Place Medal", "33076": "Small Ancillary Armor Repairer", "33077": "Small Ancillary Armor Repairer Blueprint", "33078": "Armor Honeycombing", "33079": "Hematos", "33081": "Taipan", "33083": "Violator", "33087": "Advanced Cerebral Accelerator", "33088": "Advanced Cerebral Accelerator Blueprint", "33099": "Nefantar Thrasher", "33101": "Medium Ancillary Armor Repairer", "33102": "Medium Ancillary Armor Repairer Blueprint", "33103": "Large Ancillary Armor Repairer", "33104": "Large Ancillary Armor Repairer Blueprint", "355043": "PRO Drone Sniper Rifle", "33109": "Women's 'Quafe' T-shirt YC115", "33111": "Prototype Cerebral Accelerator", "33112": "Prototype Cerebral Accelerator Blueprint", "33117": "Bronze Order of the Mountain", "33118": "Iron Order of the Storm", "33119": "Steel Order of the Cold", "33120": "Badge of Prophet Kuria", "33121": "Star of the Sefrim", "33122": "Senatorial Silver Star", "33123": "Gold Medallion of Liberty", "33124": "Platinum Medallion of Freedom", "33125": "Dagger of Coricia", "33126": "Spear of Matar", "33127": "Sword of Pator", "33128": "Defense of Caldari Prime Ribbon", "33129": "Assault on Caldari Prime Ribbon", "377": "Small Shield Extender I", "380": "Small Shield Extender II", "393": "Shield Recharger I", "394": "Shield Recharger II", "399": "Small Shield Booster I", "400": "Small Shield Booster II", "405": "Micro Shield Transporter I", "406": "Micro Shield Transporter II", "421": "Basic Capacitor Recharger", "434": "1MN Microwarpdrive I", "438": "1MN Afterburner II", "439": "1MN Afterburner I", "440": "1MN Microwarpdrive II", "442": "Cargo Scanner I", "443": "Ship Scanner I", "444": "Survey Scanner I", "447": "Warp Scrambler I", "448": "Warp Scrambler II", "450": "Gatling Pulse Laser I", "451": "Dual Light Pulse Laser I", "452": "Dual Light Beam Laser I", "453": "Small Focused Pulse Laser I", "454": "Small Focused Beam Laser I", "455": "Quad Light Beam Laser I", "456": "Focused Medium Pulse Laser I", "457": "Focused Medium Beam Laser I", "458": "Heavy Pulse Laser I", "459": "Heavy Beam Laser I", "460": "Dual Heavy Pulse Laser I", "461": "Dual Heavy Beam Laser I", "462": "Mega Pulse Laser I", "463": "Mega Beam Laser I", "464": "Tachyon Beam Laser I", "482": "Miner II", "355067": "PRO Drone Mass Driver", "484": "125mm Gatling AutoCannon I", "485": "150mm Light AutoCannon I", "486": "200mm AutoCannon I", "487": "250mm Light Artillery Cannon I", "488": "280mm Howitzer Artillery I", "489": "Dual 180mm AutoCannon I", "490": "220mm Vulcan AutoCannon I", "491": "425mm AutoCannon I", "492": "650mm Artillery Cannon I", "493": "720mm Howitzer Artillery I", "494": "Dual 425mm AutoCannon I", "355069": "ADV Drone Mass Driver", "496": "800mm Repeating Artillery I", "497": "1200mm Artillery Cannon I", "498": "1400mm Howitzer Artillery I", "499": "Light Missile Launcher I", "501": "Heavy Missile Launcher I", "503": "Torpedo Launcher I", "506": "Basic Capacitor Power Relay", "355071": "Drone Mass Driver", "508": "Basic Shield Flux Coil", "509": "Basic Capacitor Flux Coil", "518": "Basic Gyrostabilizer", "519": "Gyrostabilizer II", "520": "Gyrostabilizer I", "521": "Basic Damage Control", "522": "Micro Capacitor Battery I", "523": "Small Armor Repairer I", "524": "Small Hull Repairer I", "526": "Stasis Webifier I", "527": "Stasis Webifier II", "529": "Small Energy Transfer Array I", "530": "Small Nosferatu I", "533": "Small Energy Neutralizer I", "561": "75mm Gatling Rail I", "562": "Light Electron Blaster I", "563": "Light Ion Blaster I", "564": "Light Neutron Blaster I", "565": "150mm Railgun I", "566": "Heavy Electron Blaster I", "355081": "Drone Assault Rifle", "568": "Heavy Neutron Blaster I", "569": "Heavy Ion Blaster I", "570": "250mm Railgun I", "571": "Electron Blaster Cannon I", "572": "Dual 250mm Railgun I", "573": "Neutron Blaster Cannon I", "574": "425mm Railgun I", "575": "Ion Blaster Cannon I", "577": "Medium Capacitor Booster I", "578": "Adaptive Invulnerability Field I", "580": "ECM Burst I", "581": "Passive Targeter I", "582": "Bantam", "583": "Condor", "584": "Griffin", "585": "Slasher", "586": "Probe", "587": "Rifter", "588": "Reaper", "589": "Executioner", "590": "Inquisitor", "591": "Tormentor", "592": "Navitas", "593": "Tristan", "594": "Incursus", "596": "Impairor", "597": "Punisher", "598": "Breacher", "599": "Burst", "601": "Ibis", "602": "Kestrel", "355087": "PRO Drone Assault Rifle", "605": "Heron", "20": "Kernite", "607": "Imicus", "608": "Atron", "609": "Maulus", "615": "Immolator", "617": "Echo", "620": "Osprey", "621": "Caracal", "622": "Stabber", "623": "Moa", "624": "Maller", "625": "Augoror", "626": "Vexor", "627": "Thorax", "628": "Arbitrator", "629": "Rupture", "630": "Bellicose", "631": "Scythe", "632": "Blackbird", "633": "Celestis", "634": "Exequror", "635": "Opux Luxury Yacht", "638": "Raven", "639": "Tempest", "640": "Scorpion", "641": "Megathron", "642": "Apocalypse", "643": "Armageddon", "644": "Typhoon", "645": "Dominix", "648": "Badger", "649": "Badger Mark II", "650": "Iteron", "651": "Hoarder", "652": "Mammoth", "653": "Wreathe", "654": "Iteron Mark II", "655": "Iteron Mark III", "656": "Iteron Mark IV", "657": "Iteron Mark V", "671": "Erebus", "672": "Caldari Shuttle", "683": "Bantam Blueprint", "684": "Condor Blueprint", "685": "Griffin Blueprint", "686": "Osprey Blueprint", "687": "Caracal Blueprint", "688": "Raven Blueprint", "689": "Slasher Blueprint", "690": "Probe Blueprint", "691": "Rifter Blueprint", "692": "Stabber Blueprint", "693": "Tempest Blueprint", "355107": "ADV Drone Laser Rifle", "355109": "Drone Laser Rifle", "25": "Corpse", "784": "Miner II Blueprint", "363349": "Balac's Modified Assault vk.0", "786": "Light Missile Launcher I Blueprint", "788": "Heavy Missile Launcher I Blueprint", "790": "Torpedo Launcher I Blueprint", "803": "Mjolnir Cruise Missile Blueprint", "804": "Scourge Cruise Missile Blueprint", "805": "Inferno Cruise Missile Blueprint", "806": "Nova Cruise Missile Blueprint", "807": "Nova Heavy Missile Blueprint", "808": "Mjolnir Heavy Missile Blueprint", "809": "Inferno Heavy Missile Blueprint", "810": "Scourge Heavy Missile Blueprint", "811": "Scourge Light Missile Blueprint", "812": "Inferno Light Missile Blueprint", "813": "Mjolnir Light Missile Blueprint", "814": "Nova Light Missile Blueprint", "819": "125mm Gatling AutoCannon I Blueprint", "820": "150mm Light AutoCannon I Blueprint", "821": "200mm AutoCannon I Blueprint", "822": "250mm Light Artillery Cannon I Blueprint", "823": "280mm Howitzer Artillery I Blueprint", "824": "Dual 180mm AutoCannon I Blueprint", "825": "220mm Vulcan AutoCannon I Blueprint", "826": "425mm AutoCannon I Blueprint", "827": "650mm Artillery Cannon I Blueprint", "828": "720mm Howitzer Artillery I Blueprint", "829": "Dual 425mm AutoCannon I Blueprint", "830": "Dual 650mm Repeating Artillery I Blueprint", "831": "800mm Repeating Artillery I Blueprint", "832": "1200mm Artillery Cannon I Blueprint", "833": "1400mm Howitzer Artillery I Blueprint", "834": "Gatling Pulse Laser I Blueprint", "835": "Dual Light Pulse Laser I Blueprint", "836": "Dual Light Beam Laser I Blueprint", "837": "Small Focused Pulse Laser I Blueprint", "838": "Small Focused Beam Laser I Blueprint", "839": "Quad Light Beam Laser I Blueprint", "840": "Focused Medium Pulse Laser I Blueprint", "841": "Focused Medium Beam Laser I Blueprint", "842": "Heavy Pulse Laser I Blueprint", "843": "Heavy Beam Laser I Blueprint", "844": "Dual Heavy Pulse Laser I Blueprint", "845": "Dual Heavy Beam Laser I Blueprint", "846": "Mega Pulse Laser I Blueprint", "847": "Mega Beam Laser I Blueprint", "848": "Tachyon Beam Laser I Blueprint", "879": "Carbonized Lead S Blueprint", "880": "Nuclear S Blueprint", "881": "Proton S Blueprint", "882": "Depleted Uranium S Blueprint", "883": "Titanium Sabot S Blueprint", "884": "Fusion S Blueprint", "885": "Phased Plasma S Blueprint", "886": "EMP S Blueprint", "887": "Carbonized Lead M Blueprint", "888": "Nuclear M Blueprint", "889": "Proton M Blueprint", "890": "Depleted Uranium M Blueprint", "891": "Titanium Sabot M Blueprint", "892": "Fusion M Blueprint", "893": "Phased Plasma M Blueprint", "894": "EMP M Blueprint", "895": "Carbonized Lead L Blueprint", "896": "Nuclear L Blueprint", "897": "Proton L Blueprint", "898": "Depleted Uranium L Blueprint", "899": "Titanium Sabot L Blueprint", "900": "Fusion L Blueprint", "901": "Phased Plasma L Blueprint", "902": "EMP L Blueprint", "355139": "PRO Drone Swarm Launcher", "936": "Executioner Blueprint", "937": "Inquisitor Blueprint", "938": "Tormentor Blueprint", "939": "Navitas Blueprint", "940": "Tristan Blueprint", "941": "Incursus Blueprint", "944": "Punisher Blueprint", "945": "Breacher Blueprint", "946": "Burst Blueprint", "949": "Kestrel Blueprint", "950": "Merlin Blueprint", "355145": "ADV Drone Swarm Launcher", "952": "Heron Blueprint", "954": "Imicus Blueprint", "955": "Atron Blueprint", "956": "Maulus Blueprint", "967": "Caldari Shuttle Blueprint", "968": "Moa Blueprint", "969": "Maller Blueprint", "970": "Augoror Blueprint", "971": "Vexor Blueprint", "972": "Thorax Blueprint", "973": "Arbitrator Blueprint", "974": "Rupture Blueprint", "975": "Bellicose Blueprint", "976": "Scythe Blueprint", "977": "Blackbird Blueprint", "978": "Celestis Blueprint", "979": "Exequror Blueprint", "983": "Badger Blueprint", "984": "Badger Mark II Blueprint", "985": "Iteron Blueprint", "986": "Hoarder Blueprint", "355151": "Drone Swarm Launcher", "988": "Wreathe Blueprint", "989": "Iteron Mark II Blueprint", "990": "Iteron Mark III Blueprint", "991": "Iteron Mark IV Blueprint", "992": "Iteron Mark V Blueprint", "994": "Scorpion Blueprint", "995": "Megathron Blueprint", "996": "Apocalypse Blueprint", "997": "Armageddon Blueprint", "998": "Typhoon Blueprint", "999": "Dominix Blueprint", "1002": "Erebus Blueprint", "1010": "Small Shield Extender I Blueprint", "1013": "Small Shield Extender II Blueprint", "355157": "PRO Drone HMG", "1026": "Shield Recharger I Blueprint", "1027": "Shield Recharger II Blueprint", "1032": "Small Shield Booster I Blueprint", "1033": "Small Shield Booster II Blueprint", "1067": "1MN Microwarpdrive I Blueprint", "1071": "1MN Afterburner II Blueprint", "1072": "1MN Afterburner I Blueprint", "1073": "1MN Microwarpdrive II Blueprint", "1074": "Cargo Scanner I Blueprint", "179": "Nuclear S", "1076": "Survey Scanner I Blueprint", "1079": "Warp Scrambler I Blueprint", "1080": "Warp Scrambler II Blueprint", "36": "Mexallon", "1095": "Gyrostabilizer II Blueprint", "1096": "Gyrostabilizer I Blueprint", "183": "Fusion S", "1100": "Small Hull Repairer I Blueprint", "1102": "Stasis Webifier I Blueprint", "1103": "Stasis Webifier II Blueprint", "1105": "Small Energy Transfer Array I Blueprint", "1106": "Small Nosferatu I Blueprint", "1109": "Small Energy Neutralizer I Blueprint", "185": "EMP S", "1112": "75mm Gatling Rail I Blueprint", "1113": "Light Electron Blaster I Blueprint", "1114": "Light Ion Blaster I Blueprint", "1115": "Light Neutron Blaster I Blueprint", "1116": "150mm Railgun I Blueprint", "1117": "Heavy Electron Blaster I Blueprint", "1118": "Dual 150mm Railgun I Blueprint", "1119": "Heavy Neutron Blaster I Blueprint", "1120": "Heavy Ion Blaster I Blueprint", "1121": "250mm Railgun I Blueprint", "1122": "Electron Blaster Cannon I Blueprint", "187": "Nuclear M", "1124": "Neutron Blaster Cannon I Blueprint", "1125": "425mm Railgun I Blueprint", "1126": "Ion Blaster Cannon I Blueprint", "1128": "Medium Capacitor Booster I Blueprint", "1129": "Adaptive Invulnerability Field I Blueprint", "1130": "Iron Charge S Blueprint", "1131": "Tungsten Charge S Blueprint", "1132": "Iridium Charge S Blueprint", "1133": "Lead Charge S Blueprint", "1134": "Thorium Charge S Blueprint", "189": "Depleted Uranium M", "1136": "Plutonium Charge S Blueprint", "1137": "Antimatter Charge S Blueprint", "1138": "Iron Charge M Blueprint", "1139": "Tungsten Charge M Blueprint", "1140": "Iridium Charge M Blueprint", "1141": "Lead Charge M Blueprint", "1142": "Thorium Charge M Blueprint", "1143": "Uranium Charge M Blueprint", "1144": "Plutonium Charge M Blueprint", "1145": "Antimatter Charge M Blueprint", "1146": "Iron Charge L Blueprint", "1147": "Tungsten Charge L Blueprint", "1148": "Iridium Charge L Blueprint", "1149": "Lead Charge L Blueprint", "1150": "Thorium Charge L Blueprint", "1151": "Uranium Charge L Blueprint", "1152": "Plutonium Charge L Blueprint", "1153": "Antimatter Charge L Blueprint", "1154": "Radio S Blueprint", "1155": "Microwave S Blueprint", "1156": "Infrared S Blueprint", "1157": "Standard S Blueprint", "1158": "Ultraviolet S Blueprint", "1159": "Xray S Blueprint", "1160": "Gamma S Blueprint", "1161": "Multifrequency S Blueprint", "1162": "Radio M Blueprint", "1163": "Microwave M Blueprint", "1164": "Infrared M Blueprint", "1165": "Standard M Blueprint", "1166": "Ultraviolet M Blueprint", "1167": "Xray M Blueprint", "1168": "Gamma M Blueprint", "1169": "Multifrequency M Blueprint", "1170": "Radio L Blueprint", "195": "Nuclear L", "1172": "Infrared L Blueprint", "1173": "Standard L Blueprint", "1174": "Ultraviolet L Blueprint", "1175": "Xray L Blueprint", "1176": "Gamma L Blueprint", "1177": "Multifrequency L Blueprint", "1178": "Cap Booster 25 Blueprint", "1179": "Cap Booster 50 Blueprint", "1182": "Auto Targeting System I", "1183": "Small Armor Repairer II", "1184": "Small Armor Repairer II Blueprint", "1185": "Small Capacitor Battery I", "1186": "Small Capacitor Battery I Blueprint", "1190": "Small Energy Transfer Array II", "1191": "Small Energy Transfer Array II Blueprint", "1192": "Basic Overdrive Injector System", "1193": "Basic EM Plating", "1195": "Cap Recharger I", "1196": "Cap Recharger I Blueprint", "1197": "EM Plating I", "1198": "EM Plating II", "1201": "Wasp I", "1202": "Civilian Mining Drone", "1204": "EM Plating I Blueprint", "1205": "EM Plating II Blueprint", "1208": "Auto Targeting System I Blueprint", "1210": "ECM Burst I Blueprint", "1212": "Passive Targeter I Blueprint", "1214": "Wasp I Blueprint", "1215": "Heavy Defender Missile I Blueprint", "1216": "Mjolnir Auto-Targeting Light Missile I Blueprint", "1218": "Civilian Mining Drone Blueprint", "1220": "Scourge Rocket Blueprint", "1221": "Scourge Torpedo Blueprint", "1223": "Bistot", "1224": "Pyroxeres", "1225": "Crokite", "1226": "Jaspet", "1227": "Omber", "1228": "Scordite", "1229": "Gneiss", "1230": "Veldspar", "205": "Nova Cruise Missile", "1232": "Dark Ochre", "1236": "Overdrive Injector System II", "41": "Garbage", "1240": "Basic Reinforced Bulkheads", "1242": "Basic Nanofiber Internal Structure", "1244": "Overdrive Injector System I", "1245": "Overdrive Injector System I Blueprint", "1246": "Capacitor Flux Coil I", "1247": "Capacitor Flux Coil I Blueprint", "1248": "Capacitor Flux Coil II", "1249": "Capacitor Flux Coil II Blueprint", "1254": "Shield Flux Coil I", "1255": "Shield Flux Coil I Blueprint", "1256": "Shield Flux Coil II", "1257": "Shield Flux Coil II Blueprint", "1262": "Basic Explosive Plating", "1264": "Explosive Plating I", "1265": "Explosive Plating I Blueprint", "1266": "Explosive Plating II", "42": "Spiced Wine", "1272": "Basic Layered Plating", "1274": "Layered Plating I", "355199": "Drone Hive - Lvl.3", "1276": "Layered Plating II", "1277": "Layered Plating II Blueprint", "356842": "Blood Raiders Saga", "1282": "Basic Kinetic Plating", "1284": "Kinetic Plating I", "1285": "Kinetic Plating I Blueprint", "1286": "Kinetic Plating II", "1287": "Kinetic Plating II Blueprint", "215": "Iron Charge S", "1292": "Basic Thermic Plating", "1294": "Thermic Plating I", "1295": "Thermic Plating I Blueprint", "1296": "Thermic Plating II", "43": "Antibiotics", "1302": "Basic Adaptive Nano Plating", "217": "Iridium Charge S", "1304": "Adaptive Nano Plating I", "1305": "Adaptive Nano Plating I Blueprint", "1306": "Adaptive Nano Plating II", "1307": "Adaptive Nano Plating II Blueprint", "218": "Lead Charge S", "219": "Thorium Charge S", "1317": "Expanded Cargohold I", "1318": "Expanded Cargohold I Blueprint", "1319": "Expanded Cargohold II", "1320": "Expanded Cargohold II Blueprint", "220": "Uranium Charge S", "1135": "Uranium Charge S Blueprint", "44": "Enriched Uranium", "222": "Antimatter Charge S", "1334": "Reinforced Bulkheads I Blueprint", "1335": "Reinforced Bulkheads II", "1336": "Reinforced Bulkheads II Blueprint", "355210": "Passive Booster (15-Day)", "225": "Iridium Charge M", "355212": "Shotgun Operation", "1354": "Reactor Control Unit I Blueprint", "1355": "Reactor Control Unit II", "1356": "Reactor Control Unit II Blueprint", "226": "Lead Charge M", "355213": "Shotgun Proficiency", "227": "Thorium Charge M", "231": "Iron Charge L", "232": "Tungsten Charge L", "355219": "Passive Booster (7-Day)", "233": "Iridium Charge L", "1401": "Basic Inertia Stabilizers", "1403": "Inertia Stabilizers I", "1404": "Inertia Stabilizers I Blueprint", "234": "Lead Charge L", "1406": "Inertia Stabilizers II Blueprint", "235": "Thorium Charge L", "236": "Uranium Charge L", "1419": "Basic Shield Power Relay", "1422": "Shield Power Relay II", "237": "Plutonium Charge L", "238": "Antimatter Charge L", "239": "Radio S", "1436": "Auto Targeting System II", "1437": "Auto Targeting System II Blueprint", "240": "Microwave S", "1445": "Capacitor Power Relay I", "1446": "Capacitor Power Relay I Blueprint", "241": "Infrared S", "1448": "Capacitor Power Relay II Blueprint", "242": "Standard S", "243": "Ultraviolet S", "244": "Xray S", "247": "Radio M", "248": "Microwave M", "249": "Infrared M", "250": "Standard M", "251": "Ultraviolet M", "252": "Xray M", "253": "Gamma M", "254": "Multifrequency M", "255": "Radio L", "256": "Microwave L", "1539": "Power Diagnostic System I", "1540": "Power Diagnostic System I Blueprint", "1541": "Power Diagnostic System II", "1542": "Power Diagnostic System II Blueprint", "257": "Infrared L", "1547": "Small Proton Smartbomb I", "1548": "Small Proton Smartbomb I Blueprint", "258": "Standard L", "1550": "Small Proton Smartbomb II Blueprint", "1551": "Small Graviton Smartbomb I", "1552": "Small Graviton Smartbomb I Blueprint", "1553": "Small Graviton Smartbomb II", "1554": "Small Graviton Smartbomb II Blueprint", "259": "Ultraviolet L", "1557": "Small Plasma Smartbomb I", "1558": "Small Plasma Smartbomb I Blueprint", "1559": "Small Plasma Smartbomb II", "1560": "Small Plasma Smartbomb II Blueprint", "260": "Xray L", "1563": "Small EMP Smartbomb I", "1564": "Small EMP Smartbomb I Blueprint", "1565": "Small EMP Smartbomb II", "1566": "Small EMP Smartbomb II Blueprint", "261": "Gamma L", "262": "Multifrequency L", "355249": "Cestus ", "263": "Cap Booster 25", "355250": "Charron ", "264": "Cap Booster 50", "265": "Heavy Defender Missile I", "266": "Scourge Rocket", "267": "Scourge Torpedo", "355254": "Boundless Breach Submachine Gun", "269": "Mjolnir Auto-Targeting Light Missile I", "355256": "Kaalakiota Tactical Sniper Rifle", "355257": "KLO-1 Scrambler Pistol", "355259": "Assault Scrambler Pistol", "355260": "'Cerberus' CRG-3 Shotgun", "355261": "'Hydra' CreoDron Shotgun", "355262": "'Broadside' MH-82 Heavy Machine Gun", "355263": "'Steelmine' Boundless Heavy Machine Gun", "355265": "'Avalanche' Freedom Mass Driver", "355267": "'Void' Imperial Drop Uplink", "355269": "Wiyrkomi Nanite Injector", "355271": "'Talisman' Wiyrkomi Nanite Injector", "355280": "Nanocircuitry", "1798": "Basic EM Ward Amplifier", "1800": "Basic Thermic Dissipation Amplifier", "1802": "Basic Kinetic Deflection Amplifier", "1804": "Basic Explosive Deflection Amplifier", "1808": "EM Ward Amplifier I", "1809": "EM Ward Amplifier I Blueprint", "1810": "Scourge Auto-Targeting Light Missile I", "1811": "Scourge Auto-Targeting Light Missile I Blueprint", "1814": "Nova Auto-Targeting Light Missile I", "1815": "Nova Auto-Targeting Light Missile I Blueprint", "1816": "Inferno Auto-Targeting Light Missile I", "1817": "Inferno Auto-Targeting Light Missile I Blueprint", "1818": "Scourge Auto-Targeting Heavy Missile I", "1819": "Scourge Auto-Targeting Heavy Missile I Blueprint", "1820": "Mjolnir Auto-Targeting Heavy Missile I", "1821": "Mjolnir Auto-Targeting Heavy Missile I Blueprint", "1822": "Nova Auto-Targeting Heavy Missile I", "1823": "Nova Auto-Targeting Heavy Missile I Blueprint", "1824": "Inferno Auto-Targeting Heavy Missile I", "1825": "Inferno Auto-Targeting Heavy Missile I Blueprint", "1826": "Scourge Auto-Targeting Cruise Missile I", "1827": "Scourge Auto-Targeting Cruise Missile I Blueprint", "1828": "Mjolnir Auto-Targeting Cruise Missile I", "1829": "Mjolnir Auto-Targeting Cruise Missile I Blueprint", "1830": "Nova Auto-Targeting Cruise Missile I", "1831": "Nova Auto-Targeting Cruise Missile I Blueprint", "1832": "Inferno Auto-Targeting Cruise Missile I", "1833": "Inferno Auto-Targeting Cruise Missile I Blueprint", "1855": "Ship Scanner II", "1856": "Ship Scanner II Blueprint", "355297": "Squad - Signature Dampener", "1875": "Rapid Light Missile Launcher I", "1876": "Rapid Light Missile Launcher I Blueprint", "1877": "Rapid Light Missile Launcher II", "1878": "Rapid Light Missile Launcher II Blueprint", "1893": "Basic Heat Sink", "355308": "Squad - Shield Energizer", "1944": "Bestower", "1945": "Bestower Blueprint", "1946": "Basic RADAR Backup Array", "1947": "ECCM - Radar I", "1948": "ECM - Ion Field Projector I", "1949": "Basic Signal Amplifier", "1951": "Basic Tracking Enhancer", "1952": "Sensor Booster II", "1955": "ECM - Spatial Destabilizer I", "1956": "ECM - White Noise Generator I", "1957": "ECM - Multispectral Jammer I", "1958": "ECM - Phase Inverter I", "1959": "ECCM Projector I", "1960": "ECCM Projector II", "1963": "Remote Sensor Booster I", "1964": "Remote Sensor Booster II", "1968": "Remote Sensor Dampener I", "1969": "Remote Sensor Dampener II", "1973": "Sensor Booster I", "1977": "Tracking Computer I", "1978": "Tracking Computer II", "1982": "Basic LADAR Backup Array", "1983": "Basic Gravimetric Backup Array", "1984": "Basic Magnetometric Backup Array", "1985": "Basic Multi Sensor Backup Array", "1986": "Signal Amplifier I", "1987": "Signal Amplifier II", "1998": "Tracking Enhancer I", "1999": "Tracking Enhancer II", "2001": "Cynosural Suppression", "356866": "Militia Field Stabilizer I", "2003": "ECCM - Magnetometric I", "2004": "ECCM - Gravimetric I", "2005": "ECCM - Omni I", "2006": "Omen", "2007": "Omen Blueprint", "2008": "Cynosural Navigation", "2009": "Supercapital Construction Facilities", "2013": "Hostages", "2018": "Medium Capacitor Battery I", "2019": "Medium Capacitor Battery I Blueprint", "2020": "Large Capacitor Battery I", "2021": "Large Capacitor Battery I Blueprint", "2024": "Medium Capacitor Booster II", "2025": "Medium Capacitor Booster II Blueprint", "2026": "Pirate Detection Array 1", "2027": "Pirate Detection Array 2", "2028": "Pirate Detection Array 3", "2029": "Pirate Detection Array 4", "2030": "Pirate Detection Array 5", "2031": "Entrapment Array 1", "356867": "Militia Ballistic Control I Blueprint", "2033": "Cap Recharger II Blueprint", "2034": "Entrapment Array 2", "33107": "Men's 'Quafe' T-shirt YC115", "2036": "Entrapment Array 4", "355326": "QA Drone Hive 2", "2038": "Cargo Scanner II", "2039": "Cargo Scanner II Blueprint", "2040": "Ore Prospecting Array 1", "2041": "Ore Prospecting Array 2", "2042": "Ore Prospecting Array 3", "355327": "QA Drone Hive 3", "2044": "Ore Prospecting Array 5", "2046": "Damage Control I", "2047": "Damage Control I Blueprint", "2048": "Damage Control II", "2049": "Damage Control II Blueprint", "2050": "Gistum C-Type Adaptive Invulnerability Field", "2053": "Survey Networks 1", "2054": "Survey Networks 2", "2055": "Survey Networks 3", "2056": "Survey Networks 4", "2057": "Survey Networks 5", "2058": "Quantum Flux Generator 1", "2059": "Quantum Flux Generator 2", "2060": "Quantum Flux Generator 3", "2061": "Quantum Flux Generator 4", "356868": "Militia CPU Enhancer Blueprint", "2073": "Microorganisms", "2074": "Zazzmatazz", "2075": "Consolidated Holdings Commander Access Key", "2076": "Gate Key", "2078": "Zephyr", "2082": "Genolution Core Augmentation CA-1", "2083": "Prototype Iris Probe Launcher", "2093": "Kidnapped Citizens", "2100": "Phenod's DNA", "2103": "Tracking Link I", "2104": "Tracking Link II", "2108": "Tracking Disruptor I", "2109": "Tracking Disruptor II", "2117": "ECM Burst II", "2118": "ECM Burst II Blueprint", "356871": "Viper", "2161": "Crucifier", "2162": "Crucifier Blueprint", "2173": "Infiltrator I", "2174": "Infiltrator I Blueprint", "2175": "Infiltrator II", "2176": "Infiltrator II Blueprint", "2178": "Guristas Nova Citadel Cruise Missile", "2179": "Sansha Wrath Cruise Missile Blueprint", "2180": "Guristas Scourge Citadel Cruise Missile", "2182": "Guristas Inferno Citadel Cruise Missile", "2183": "Hammerhead I", "2184": "Hammerhead I Blueprint", "2185": "Hammerhead II", "2186": "Hammerhead II Blueprint", "2188": "Guristas Mjolnir Citadel Cruise Missile", "2193": "Praetor I", "2194": "Praetor I Blueprint", "2195": "Praetor II", "2196": "Praetor II Blueprint", "2197": "Environmentally-friendly Mining Equipment", "2198": "Crate of Environmentally-friendly Mining Equipment", "2199": "Prototype Body Armor Fabric ", "2200": "Crate of Prototype Body Armor Fabric ", "2201": "Riot Interdiction Team", "2202": "Riot Interdiction Teams", "2203": "Acolyte I", "2204": "Acolyte I Blueprint", "2205": "Acolyte II", "2206": "Acolyte II Blueprint", "2211": "Sansha Juggernaut Torpedo Blueprint", "356873": "Sica", "2213": "Ghost Heavy Missile Blueprint", "2215": "Amarr TIL-1A Nexus Chips ", "2216": "Crate of Amarr TIL-1A Nexus Chips", "2217": "Preacher", "2219": "Large Group of Civilian Workers and Dependents", "2220": "Civilian Workers and Dependents", "2221": "Manportable Electromagnetic Pulse Weapons ", "2226": "Sisters of Eve Negotiator", "2239": "Oura Madusaari", "2240": "Harroken Ikero", "2244": "Fajah Ateshi", "2250": "Neurowave Pattern Scanner", "2254": "Temperate Command Center", "2256": "Temperate Launchpad", "2257": "Ice Storage Facility", "2258": "ECCM - Omni II", "2259": "ECCM - Gravimetric II", "2260": "ECCM - Ladar II", "2261": "ECCM - Magnetometric II", "2262": "ECCM - Radar II", "2267": "Base Metals", "2268": "Aqueous Liquids", "2270": "Noble Metals", "2272": "Heavy Metals", "2280": "Link", "2281": "Adaptive Invulnerability Field II", "2282": "Adaptive Invulnerability Field II Blueprint", "2286": "Planktic Colonies", "2287": "Complex Organisms", "2288": "Carbon Compounds", "2289": "Explosive Deflection Field I", "2290": "Explosive Deflection Field I Blueprint", "2291": "Kinetic Deflection Field I", "2292": "Kinetic Deflection Field I Blueprint", "2293": "EM Ward Field I", "2294": "EM Ward Field I Blueprint", "2295": "Thermic Dissipation Field I", "2296": "Thermic Dissipation Field I Blueprint", "2297": "Explosive Deflection Field II", "2298": "Explosive Deflection Field II Blueprint", "2299": "Kinetic Deflection Field II", "2300": "Kinetic Deflection Field II Blueprint", "2301": "EM Ward Field II", "2302": "EM Ward Field II Blueprint", "2303": "Thermic Dissipation Field II", "2304": "Thermic Dissipation Field II Blueprint", "2305": "Autotrophs", "355785": "Insulated Magnetic Field Stabilizer", "2307": "Felsic Magma", "2308": "Suspended Plasma", "2309": "Ionic Solutions", "2310": "Noble Gas", "2311": "Reactive Gas", "2312": "Supertensile Plastics", "2317": "Oxides", "2319": "Test Cultures", "2321": "Polyaramids", "355374": "Sica", "2327": "Microfiber Shielding", "2328": "Water-Cooled CPU", "2329": "Biocells", "355375": "Militia Armor Repair Unit", "2332": "Shield Power Relay I Blueprint", "2333": "Survey Scanner II", "2334": "Survey Scanner II Blueprint", "2341": "Passive Targeter II", "2342": "Passive Targeter II Blueprint", "2344": "Condensates", "2345": "Camera Drones", "2346": "Synthetic Synapses", "2348": "Gel-Matrix Biopaste", "2349": "Supercomputers", "2351": "Smartfab Units", "2352": "Nuclear Reactors", "2354": "Neocoms", "2355": "Small Hull Repairer II", "2356": "Small Hull Repairer II Blueprint", "2358": "Biotech Research Reports", "2360": "Industrial Explosives", "2361": "Hermetic Membranes", "2363": "Heat Sink I", "2364": "Heat Sink II", "2366": "Hazmat Detection Systems", "2367": "Cryoprotectant Solution", "2368": "Broken Organic Mortar Applicators", "2369": "Broken Sterile Conduits", "2371": "Broken Nano-Factory", "2373": "Broken Self-Harmonizing Power Core", "2374": "Broken Recursive Computing Module", "2375": "Broken Broadcast Node", "2376": "Broken Integrity Response Drones", "2377": "Broken Wetware Mainframe", "2389": "Plasmoids", "2390": "Electrolytes", "2392": "Oxidizing Compound", "2393": "Bacteria", "2395": "Proteins", "2396": "Biofuels", "2397": "Industrial Fibers", "2398": "Reactive Metals", "2399": "Precious Metals", "2400": "Toxic Metals", "2401": "Chiral Structures", "2403": "Advanced Planetology", "2404": "Light Missile Launcher II", "2405": "Light Missile Launcher II Blueprint", "2406": "Planetology", "2409": "Barren Aqueous Liquid Extractor", "2410": "Heavy Missile Launcher II", "2411": "Heavy Missile Launcher II Blueprint", "2412": "Temperate Aqueous Liquid Extractor", "2413": "Storm Aqueous Liquid Extractor", "2414": "Oceanic Aqueous Liquid Extractor", "2415": "Ice Aqueous Liquid Extractor", "2416": "Gas Aqueous Liquid Extractor", "2417": "Plasma Suspended Plasma Extractor", "2418": "Lava Suspended Plasma Extractor", "2419": "Storm Suspended Plasma Extractor", "2420": "Torpedo Launcher II", "2421": "Torpedo Launcher II Blueprint", "2422": "Storm Ionic Solutions Extractor", "2423": "Ice Noble Gas Extractor", "2424": "Gas Ionic Solutions Extractor", "2425": "Storm Noble Gas Extractor", "2426": "Gas Noble Gas Extractor", "2427": "Gas Reactive Gas Extractor", "2428": "Lava Base Metals Extractor", "2429": "Plasma Base Metals Extractor", "2430": "Barren Base Metals Extractor", "2431": "Storm Base Metals Extractor", "2432": "Ice Microorganisms Extractor", "2433": "Gas Base Metals Extractor", "2434": "Plasma Noble Metals Extractor", "2435": "Barren Noble Metals Extractor", "2436": "Wasp II", "2437": "Wasp II Blueprint", "2438": "Ice Planktic Colonies Extractor", "2439": "Lava Heavy Metals Extractor", "2440": "Plasma Heavy Metals Extractor", "2441": "Ice Heavy Metals Extractor", "2442": "Lava Non-CS Crystals Extractor", "2443": "Plasma Non-CS Crystals Extractor", "2444": "Ogre I", "2445": "Ogre I Blueprint", "2446": "Ogre II", "2447": "Ogre II Blueprint", "2448": "Lava Felsic Magma Extractor", "2449": "Barren Microorganisms Extractor", "2450": "Temperate Microorganisms Extractor", "2451": "Oceanic Microorganisms Extractor", "2452": "Oceanic Planktic Colonies Extractor", "2453": "Temperate Complex Organisms Extractor", "2454": "Hobgoblin I", "2455": "Hobgoblin I Blueprint", "2456": "Hobgoblin II", "2457": "Hobgoblin II Blueprint", "2458": "Oceanic Complex Organisms Extractor", "2459": "Barren Carbon Compounds Extractor", "2460": "Temperate Carbon Compounds Extractor", "2461": "Oceanic Carbon Compounds Extractor", "2462": "Temperate Autotrophs Extractor", "2463": "Nanites", "2464": "Hornet I", "2465": "Hornet I Blueprint", "2466": "Hornet II", "2467": "Hornet II Blueprint", "2469": "Lava Basic Industry Facility", "2470": "Lava Advanced Industry Facility", "2471": "Plasma Basic Industry Facility", "2472": "Plasma Advanced Industry Facility", "2473": "Barren Basic Industry Facility", "2474": "Barren Advanced Industry Facility", "2475": "Barren High-Tech Production Plant", "2476": "Berserker I", "2477": "Berserker I Blueprint", "2478": "Berserker II", "2479": "Berserker II Blueprint", "2480": "Temperate Advanced Industry Facility", "2481": "Temperate Basic Industry Facility", "2482": "Temperate High-Tech Production Plant", "2483": "Storm Basic Industry Facility", "2484": "Storm Advanced Industry Facility", "2485": "Oceanic Advanced Industry Facility", "2486": "Warrior I", "2487": "Warrior I Blueprint", "2488": "Warrior II", "2489": "Warrior II Blueprint", "2490": "Oceanic Basic Industry Facility", "2491": "Ice Advanced Industry Facility", "2492": "Gas Basic Industry Facility", "2493": "Ice Basic Industry Facility", "2494": "Gas Advanced Industry Facility", "2495": "Interplanetary Consolidation", "2505": "Command Center Upgrades", "2506": "Mjolnir Torpedo", "2507": "Mjolnir Torpedo Blueprint", "2508": "Nova Torpedo", "2509": "Nova Torpedo Blueprint", "2510": "Inferno Torpedo", "2511": "Inferno Torpedo Blueprint", "356883": "Boundless Proximity Explosive", "2513": "Mjolnir Rocket Blueprint", "2514": "Inferno Rocket", "2515": "Inferno Rocket Blueprint", "355792": "Vented Heat Sink", "2517": "Nova Rocket Blueprint", "2524": "Barren Command Center", "2525": "Oceanic Command Center", "2529": "Explosive Deflection Amplifier I", "2530": "Explosive Deflection Amplifier I Blueprint", "2531": "Explosive Deflection Amplifier II", "2532": "Explosive Deflection Amplifier II Blueprint", "2533": "Ice Command Center", "2534": "Gas Command Center", "2535": "Oceanic Storage Facility", "2536": "Gas Storage Facility", "2537": "Thermic Dissipation Amplifier I", "2538": "Thermic Dissipation Amplifier I Blueprint", "2539": "Thermic Dissipation Amplifier II", "2540": "Thermic Dissipation Amplifier II Blueprint", "2541": "Barren Storage Facility", "2542": "Oceanic Launchpad", "2543": "Gas Launchpad", "2544": "Barren Launchpad", "2545": "Kinetic Deflection Amplifier I", "2546": "Kinetic Deflection Amplifier I Blueprint", "2547": "Kinetic Deflection Amplifier II", "2548": "Kinetic Deflection Amplifier II Blueprint", "2549": "Lava Command Center", "2550": "Storm Command Center", "2551": "Plasma Command Center", "2552": "Ice Launchpad", "2553": "EM Ward Amplifier II", "2554": "EM Ward Amplifier II Blueprint", "2555": "Lava Launchpad", "2556": "Plasma Launchpad", "2557": "Storm Launchpad", "2558": "Lava Storage Facility", "2559": "ECM - Phase Inverter II", "2560": "Plasma Storage Facility", "2561": "Storm Storage Facility", "2562": "Temperate Storage Facility", "2563": "ECM - Ion Field Projector II", "2567": "ECM - Multispectral Jammer II", "2571": "ECM - Spatial Destabilizer II", "2575": "ECM - White Noise Generator II", "2579": "Gravimetric Backup Array I", "2580": "Gravimetric Backup Array II", "2583": "LADAR Backup Array I", "2584": "LADAR Backup Array II", "2587": "Magnetometric Backup Array I", "2588": "Magnetometric Backup Array II", "2589": "Genolution Core Augmentation CA-2", "2591": "Multi Sensor Backup Array I", "2592": "Multi Sensor Backup Array II", "2595": "Encoded Data Chip", "2596": "Crates of Clothing", "2597": "Crates of Command Reports", "2598": "Crates of Coolant", "2599": "Crates of Corporate Documents", "2601": "Crates of Data Sheets", "2602": "Crates of Drill Parts", "2603": "Nanofiber Internal Structure I", "2604": "Nanofiber Internal Structure I Blueprint", "2605": "Nanofiber Internal Structure II", "2606": "Nanofiber Internal Structure II Blueprint", "2608": "Crates of Fertilizer", "2610": "Crates of Frozen Food", "2613": "Mjolnir Fury Light Missile", "2614": "Mjolnir Fury Light Missile Blueprint", "2615": "Crates of Garbage", "2616": "Large Crates of Coolant", "2617": "Crates of Guidance Systems", "2618": "Crates of Harroule Dryweed", "2619": "Crates of High-Tech Small Arms", "2620": "Crates of Liparer Cheese", "363069": "Thukker Contact Locus Grenade", "2622": "Inferno Fury Cruise Missile Blueprint", "2623": "Crates of Listening Post Recordings", "2624": "Crates of Mechanical Parts", "2626": "Crates of Missile Guidance Systems", "2627": "Crates of Mono-Cell Batteries", "2628": "Crates of Odd Data Crystals", "2629": "Scourge Fury Heavy Missile", "2630": "Scourge Fury Heavy Missile Blueprint", "2631": "Crates of OP Insecticide", "2632": "Crates of Oxygen", "2633": "Crates of Planetary Vehicles", "2635": "Crates of Protein Delicacies", "2636": "Crates of Raggy Dolls", "2637": "Inferno Precision Cruise Missile", "2638": "Inferno Precision Cruise Missile Blueprint", "2639": "Crates of Repair Parts", "2640": "Crates of Replacement Parts", "2641": "Crates of Reports", "2642": "Crates of Robotics", "2644": "Crates of Small Arms", "2645": "Crates of Soil", "2646": "Crates of Spiced Wine", "2647": "Inferno Precision Light Missile", "363096": "Militia Mobile CRU Blueprint", "2652": "Crates of Synthetic Oil", "2653": "Crates of Vaccine Injectors", "2654": "Crates of Viral Agent", "2655": "Nova Precision Heavy Missile", "2656": "Nova Precision Heavy Missile Blueprint", "363105": "ACOG Test Tactical Assault Rifle", "363106": "Ironsight Test Assault Rifle", "363107": "Red Dot Test Burst Assault Rifle", "2660": "Crates of Zemnar", "2662": "Group of Army Recruits", "2663": "Group of Cattle", "2665": "Group of Elite Slaves", "2666": "Group of Exotic Dancers", "2668": "Group of Genetically Enhanced Livestock", "2669": "Group of Kameiras", "2670": "Group of Marines", "2671": "Group of Militants", "2672": "Group of Miners", "2673": "Large Crates of Data Sheets", "2674": "Group of Refugees", "2675": "Group of Science Graduates", "2676": "Group of Security Personnel", "2677": "Group of Slaves", "2678": "Group of Tourists", "2679": "Scourge Rage Heavy Assault Missile", "2680": "Scourge Rage Heavy Assault Missile Blueprint", "2681": "Group of VIPs", "2682": "Large Crates of Galeptos Medicine", "2683": "Large Crates of Guidance Systems", "2684": "Large Crates of Harroule Dryweed", "2685": "Large Crates of Holoreels", "2686": "Large Crates of Liparer Cheese", "2687": "Large Crates of Mechanical Parts", "2688": "Large Crates of Mono-Cell Batteries", "2689": "Large Crates of Oxygen", "2690": "Large Crates of Planetary Vehicles", "2691": "Large Crates of Polytextiles", "2692": "Large Crates of Protein Delicacies", "2693": "Large Crates of Reports", "2694": "Large Crates of Small Arms", "2695": "Large Crates of Soil", "355798": "Low Throughput Field Stabilizer I", "2697": "Large Crates of Synthetic Oil", "2698": "Large Crates of Vitoc", "2699": "Large Group of Civilians", "2700": "Large Group of Exotic Dancers", "2701": "Large Group of Genetically Enhanced Livestock", "2702": "Large Group of Homeless", "2703": "Large Group of Kameiras", "2704": "Large Group of Marines", "2705": "Large Group of Militants", "2706": "Large Group of Science Graduates", "2707": "Large Group of Slaves", "2708": "Large Group of Tourists", "2709": "Large Group of VIPs", "2710": "Large Crates of Construction Blocks", "2711": "Large Crates of Crystal Eggs", "2712": "Large Crates of Drill Parts", "2713": "Large Crates of Electronic Parts", "2714": "Large Crates of Fertilizer", "2715": "Large Crates of Frozen Food", "2716": "Large Crates of Frozen Plant Seeds", "2717": "Large Crates of Garbage", "2718": "Large Crates of Long-limb Roes", "2719": "Large Crates of Raggy Dolls", "2720": "Large Crates of Rocket Fuel", "2721": "Large Crates of Tobacco", "2722": "Large Crates of Transmitters", "2723": "Large Crates of Viral Agent", "2724": "Large Crates of Water", "2725": "Large Group of Cattle", "355799": "LT Linear Flux Stabilizer", "2727": "Large Group of Miners", "2728": "Large Group of Refugees", "2729": "Crates of Consumer Electronics", "2730": "Crates of Enriched Uranium", "2731": "Crates of Silicon", "2732": "Crates of Silicate Glass", "2735": "Infrastructure Hub Blueprint", "2736": "Warp Disruption Battery Blueprint", "2737": "Territorial Claim Unit Blueprint", "2738": "Sovereignty Blockade Unit Blueprint", "2739": "Nanite Repair Paste Blueprint", "2740": "Warp Scrambling Battery Blueprint", "2741": "Stasis Webification Battery Blueprint", "2742": "Biochemical Silo Blueprint", "2743": "Catalyst Silo Blueprint", "2744": "Coupling Array Blueprint", "2745": "General Storage Blueprint", "2746": "Hazardous Chemical Silo Blueprint", "2747": "Hybrid Polymer Silo Blueprint", "2748": "Silo Blueprint", "2749": "Advanced Large Ship Assembly Array Blueprint", "2750": "Capital Ship Maintenance Array Blueprint", "2751": "Advanced Medium Ship Assembly Array Blueprint", "2752": "Ship Maintenance Array Blueprint", "2753": "Advanced Small Ship Assembly Array Blueprint", "2754": "Ammunition Assembly Array Blueprint", "2755": "Ballistic Deflection Array Blueprint", "2756": "Capital Ship Assembly Array Blueprint", "2757": "Explosion Dampening Array Blueprint", "2758": "Component Assembly Array Blueprint", "2759": "Heat Dissipation Array Blueprint", "2760": "Drone Assembly Array Blueprint", "2761": "Photon Scattering Array Blueprint", "2762": "Drug Lab Blueprint", "2763": "Sensor Dampening Battery Blueprint", "2764": "Equipment Assembly Array Blueprint", "2765": "Intensive Refining Array Blueprint", "2766": "Large Ship Assembly Array Blueprint", "2767": "Medium Intensive Refining Array Blueprint", "2768": "Medium Ship Assembly Array Blueprint", "2769": "Refining Array Blueprint", "2770": "Rapid Equipment Assembly Array Blueprint", "2771": "Small Ship Assembly Array Blueprint", "2772": "Subsystem Assembly Array Blueprint", "2773": "X-Large Ship Assembly Array Blueprint", "2774": "Amarr Control Tower Blueprint", "2775": "Amarr Control Tower Medium Blueprint", "2776": "Amarr Control Tower Small Blueprint", "2777": "Caldari Control Tower Blueprint", "2778": "Caldari Control Tower Medium Blueprint", "2779": "Caldari Control Tower Small Blueprint", "2780": "Gallente Control Tower Blueprint", "2781": "Gallente Control Tower Medium Blueprint", "2782": "Gallente Control Tower Small Blueprint", "2783": "Minmatar Control Tower Blueprint", "2784": "Minmatar Control Tower Medium Blueprint", "2785": "Minmatar Control Tower Small Blueprint", "2786": "Moon Harvesting Array Blueprint", "2787": "Corporate Hangar Array Blueprint", "2788": "Cynosural Generator Array Blueprint", "2789": "Cynosural System Jammer Blueprint", "2790": "Biochemical Reactor Array Blueprint", "2791": "Complex Reactor Array Blueprint", "2792": "Ion Field Projection Battery Blueprint", "2793": "Medium Biochemical Reactor Array Blueprint", "2794": "Phase Inversion Battery Blueprint", "2795": "Polymer Reactor Array Blueprint", "2796": "Spatial Destabilization Battery Blueprint", "2797": "Simple Reactor Array Blueprint", "2798": "White Noise Generation Battery Blueprint", "2799": "Energy Neutralizing Battery Blueprint", "2800": "Jump Bridge Blueprint", "2801": "Nova Javelin Torpedo", "2802": "Nova Javelin Torpedo Blueprint", "2803": "Large Blaster Battery Blueprint", "2804": "Large Railgun Battery Blueprint", "2805": "Large Artillery Battery Blueprint", "2806": "Medium Blaster Battery Blueprint", "2807": "Large AutoCannon Battery Blueprint", "2808": "Medium Railgun Battery Blueprint", "2810": "Medium Artillery Battery Blueprint", "2811": "Inferno Rage Torpedo", "2812": "Inferno Rage Torpedo Blueprint", "2813": "Small Blaster Battery Blueprint", "2814": "Medium AutoCannon Battery Blueprint", "2815": "Small Railgun Battery Blueprint", "2816": "Small Artillery Battery Blueprint", "2817": "Mjolnir Rage Rocket", "2818": "Mjolnir Rage Rocket Blueprint", "2819": "Small AutoCannon Battery Blueprint", "2820": "Experimental Laboratory Blueprint", "2821": "Mobile Laboratory Blueprint", "2822": "Citadel Torpedo Battery Blueprint", "2823": "Cruise Missile Battery Blueprint", "2824": "Torpedo Battery Blueprint", "2825": "Small Pulse Laser Battery Blueprint", "2826": "Small Beam Laser Battery Blueprint", "2827": "Medium Pulse Laser Battery Blueprint", "2828": "Medium Beam Laser Battery Blueprint", "2829": "Large Pulse Laser Battery Blueprint", "2830": "Large Beam Laser Battery Blueprint", "2833": "1000 Aurum Token", "2834": "Utu", "2836": "Adrestia", "2838": "Standard Cerebral Accelerator", "2848": "Barren Extractor Control Unit", "2851": "Incriminating Evidence", "2853": "Salvaged Electronics", "363309": "Militia Forge Gun", "363310": "Enforcer", "2863": "Primae", "2864": "Primae Blueprint", "2865": "1200mm Artillery Cannon II", "2866": "1200mm Artillery Cannon II Blueprint", "2867": "Broadcast Node", "2868": "Integrity Response Drones", "2869": "Nano-Factory", "2870": "Organic Mortar Applicators", "2871": "Recursive Computing Module", "2872": "Self-Harmonizing Power Core", "2873": "125mm Gatling AutoCannon II", "2874": "125mm Gatling AutoCannon II Blueprint", "2875": "Sterile Conduits", "2876": "Wetware Mainframe", "2880": "Unknown Dead", "2881": "150mm Light AutoCannon II", "2887": "Gallente Admiral's Corpse", "2888": "Acceleration Gate Authentication Matrix", "2889": "200mm AutoCannon II", "2890": "200mm AutoCannon II Blueprint", "2893": "Damning Evidence", "2897": "220mm Vulcan AutoCannon II", "2898": "220mm Vulcan AutoCannon II Blueprint", "483": "Miner I", "2900": "Recovered Data Core", "355470": "Soma", "363350": "Balac's MRN-30 Submachine Gun", "363351": "Balac's N-17 Sniper Rifle", "2904": "Quantum Entanglement", "2905": "250mm Light Artillery Cannon II", "363354": "Angel Cartel Saga", "355471": "Gorgon - Hatch", "2912": "Minmatar Pilot's Corpse", "2913": "425mm AutoCannon II", "2914": "425mm AutoCannon II Blueprint", "2917": "Survivors", "2919": "Caldari Operative", "2921": "650mm Artillery Cannon II", "2922": "650mm Artillery Cannon II Blueprint", "2929": "800mm Repeating Artillery II", "2930": "Crate of Special Forces Weapons and Equipment", "2934": "Counterfeit Voluval Tattoo Chemicals", "2937": "Dual 180mm AutoCannon II", "2938": "Dual 180mm AutoCannon II Blueprint", "363388": "Microcell Nanite Armor Hardener", "363389": "Carapace Armor Hardener", "363390": "R-Type Vehicular Hardener", "2943": "Hybrid Slaver Hounds", "2944": "Kennel of Hybrid Slaver Hounds", "2945": "Dual 425mm AutoCannon II", "363394": "'Burnstalk' Laser Rifle", "363395": "'Deathchorus' ELM-7 Laser Rifle", "363396": "'Rawspark' Viziam Laser Rifle", "363397": "'Dragonfly' Assault [nSv]", "363398": "'Toxin' Assault Rifle", "2951": "Large Crate of Improved Inertial Compensation Systems", "363400": "Hacked Nanohive", "2953": "Dual 650mm Repeating Artillery II", "2954": "Dual 650mm Repeating Artillery II Blueprint", "2955": "Large Crate of Unidentified Fibrous Compound", "2956": "Large Crate of Refurbished Mining Drones", "363405": "CN-V Light Damage Modifier", "363406": "HK-2 Scrambler Pistol", "2959": "Group of Civilian SIGINT Contractors", "363408": "Hacked EX-0 AV Grenade", "363409": "'Torrent' Triage Nanohive", "363410": "'Whisper' Repair Tool", "363411": "'Cannibal' Nanite Injector", "363412": "'Terminus' Drop Uplink", "2965": "Crate of Aerogel Counteragent", "2967": "Crate of Target Painter Deflection Plating", "2968": "Large Crate of Target Painter Deflection Plating", "2969": "720mm Howitzer Artillery II", "2970": "720mm Howitzer Artillery II Blueprint", "495": "Dual 650mm Repeating Artillery I", "2972": "Ditanium Metal Plates", "2973": "Pallet of Ditanium Metal Plates", "2974": "Large Group of The Hooded Men", "2975": "Arctic Warfare Marines", "2976": "Arctic Warfare Marine Squads", "2977": "280mm Howitzer Artillery II", "2978": "280mm Howitzer Artillery II Blueprint", "355483": "AntiMCC Railgun", "2980": "Large Crate of Industrial-Grade Tritanium-Alloy Scraps", "2981": "Crate of Architectural-Quality Plagioclase Paneling", "2982": "Large Crate of Architectural-Quality Plagioclase Paneling", "2983": "Corporate Assassin", "2984": "Deep Cover Corporate Assassin", "2985": "Dual Heavy Beam Laser II", "2986": "Dual Heavy Beam Laser II Blueprint", "2987": "Crate of Harvester Components", "2988": "Large Crate of Harvester Components", "2989": "Decoy Prototype Cloaking Devices", "2990": "Crate of Decoy Prototype Cloaking Devices", "2991": "Crate of Amarr Scripture Educational Study Packages (Matari translation)", "2992": "Large Crate of Amarr Scripture Educational Study Packages (Matari translation)", "2993": "Dual Light Beam Laser II", "2994": "Dual Light Beam Laser II Blueprint", "2995": "Blue Paradise", "2996": "Crate of Blue Paradise", "2997": "Crate of Refined C-86 Epoxy Resin", "2998": "Noctis", "2999": "Amarr Marine Counter-Boarding Team", "3000": "Group of Angel Cartel VIPs", "3001": "Dual Light Pulse Laser II", "3002": "Dual Light Pulse Laser II Blueprint", "3003": "Large Group of Angel Cartel VIPs", "3004": "Amarr Marine Counter-Boarding Company", "3005": "Crate of Feille d'Marnne Champagne", "3006": "Conditioned House Slaves", "3007": "Large Crate of Feille d'Marnne Champagne", "3008": "Herd of Conditioned House Slaves", "355488": "Passenger Position", "3010": "Focused Medium Beam Laser II Blueprint", "3011": "Crate of Bootleg Holoreels", "3012": "Large Crate of Suspicious Holoreels", "3013": "Amarr Religious Holoreels", "3014": "Crate of Amarr Religious Holoreels", "3015": "Crate of Cryo-Stored Luminaire Skippers", "3016": "Large Crate of Cryo-Stored Luminaire Skippers", "3017": "Gatling Pulse Laser II", "3018": "Gatling Pulse Laser II Blueprint", "3019": "Crate of Unidentified Ancient Technology", "3020": "Large Crate of Talocan Station Life-Support Cores", "3021": "Crate of Portable Emergency Heating Units", "3022": "Large Crate of Portable Emergency Heating Units", "3023": "Crate of Archaeological Lot GV87-426-D Artifacts", "3024": "Large Crate of Archaeological Lot GV87-426-E Artifacts", "3025": "Heavy Beam Laser II", "3026": "Heavy Beam Laser II Blueprint", "3027": "Crate of Contained Cerrocentite", "3028": "Large Crate of Contained Mesarchonite", "3029": "Group of Coriault Couture Collective Display Employees", "3030": "Large Group of Mannar Textile Institute International Representatives", "3031": "Crate of Exclusive Simo Reshar Fitness Holoreels", "3032": "Amarr Forensic Investigative Team", "3033": "Small Focused Beam Laser II", "3034": "Small Focused Beam Laser II Blueprint", "3035": "Large Crate of Exclusive Simo Reshar Fitness Holoreels", "3036": "Amarr Forensic Investigative Deployment", "3037": "Crate of Experimental ECM Hybrid Rounds", "3038": "Large Crate of Experimental ECM Hybrid Rounds", "3039": "Noctis Blueprint", "3041": "Small Focused Pulse Laser II", "3042": "Small Focused Pulse Laser II Blueprint", "3049": "Mega Beam Laser II", "3050": "Mega Beam Laser II Blueprint", "355495": "Breach Shotgun", "3057": "Mega Pulse Laser II", "3058": "Mega Pulse Laser II Blueprint", "3060": "Gas Extractor Control Unit", "3061": "Ice Extractor Control Unit", "3062": "Lava Extractor Control Unit", "355497": "'Chimera' Shotgun", "3064": "Plasma Extractor Control Unit", "3065": "Tachyon Beam Laser II", "3066": "Tachyon Beam Laser II Blueprint", "3067": "Storm Extractor Control Unit", "3068": "Temperate Extractor Control Unit", "355498": "'Golem' Heavy Machine Gun", "3072": "Incursion Effect Assault", "3074": "150mm Railgun II", "355499": "'Tsunami' Mass Driver", "3076": "Incursion Effect HQ", "3077": "Zainou 'Gnome' Shield Upgrades SU-602", "3078": "Zainou 'Gnome' Shield Upgrades SU-604", "3079": "Zainou 'Gnome' Shield Upgrades SU-606", "3080": "Zainou 'Gnome' Shield Management SM-702", "3081": "Zainou 'Gnome' Shield Management SM-704", "3082": "250mm Railgun II", "3083": "250mm Railgun II Blueprint", "3084": "Zainou 'Gnome' Shield Management SM-706", "3085": "Zainou 'Gnome' Shield Emission Systems SE-802", "3086": "Zainou 'Gnome' Shield Emission Systems SE-804", "3087": "Zainou 'Gnome' Shield Emission Systems SE-806", "3088": "Zainou 'Gnome' Shield Operation SP-902", "3089": "Zainou 'Gnome' Shield Operation SP-904", "3090": "425mm Railgun II", "3091": "425mm Railgun II Blueprint", "3092": "Zainou 'Gnome' Shield Operation SP-906", "3093": "Eifyr and Co. 'Rogue' Evasive Maneuvering EM-702", "3094": "Eifyr and Co. 'Rogue' Evasive Maneuvering EM-704", "3095": "Eifyr and Co. 'Rogue' Evasive Maneuvering EM-706", "3096": "Eifyr and Co. 'Rogue' Navigation NN-602", "3097": "Eifyr and Co. 'Rogue' Navigation NN-604", "3098": "75mm Gatling Rail II", "3099": "75mm Gatling Rail II Blueprint", "3100": "Eifyr and Co. 'Rogue' Navigation NN-606", "3101": "Eifyr and Co. 'Rogue' Fuel Conservation FC-802", "3102": "Eifyr and Co. 'Rogue' Fuel Conservation FC-804", "3103": "Eifyr and Co. 'Rogue' Fuel Conservation FC-806", "3104": "Eifyr and Co. 'Rogue' Afterburner AB-604", "3105": "Eifyr and Co. 'Rogue' Afterburner AB-608", "3106": "Dual 150mm Railgun II", "3107": "Dual 150mm Railgun II Blueprint", "3108": "Eifyr and Co. 'Rogue' Afterburner AB-612", "3109": "Eifyr and Co. 'Rogue' Warp Drive Operation WD-604", "3110": "Eifyr and Co. 'Rogue' Warp Drive Operation WD-608", "3111": "Eifyr and Co. 'Rogue' Warp Drive Operation WD-612", "3112": "Eifyr and Co. 'Rogue' High Speed Maneuvering HS-902", "3113": "Eifyr and Co. 'Rogue' High Speed Maneuvering HS-904", "3114": "Dual 250mm Railgun II", "3115": "Dual 250mm Railgun II Blueprint", "3116": "Eifyr and Co. 'Rogue' High Speed Maneuvering HS-906", "3117": "Eifyr and Co. 'Rogue' Warp Drive Speed WS-608", "3118": "Eifyr and Co. 'Rogue' Warp Drive Speed WS-613", "3119": "Eifyr and Co. 'Rogue' Warp Drive Speed WS-618", "3120": "Eifyr and Co. 'Rogue' Acceleration Control AC-602", "3121": "Eifyr and Co. 'Rogue' Acceleration Control AC-604", "3122": "Electron Blaster Cannon II", "3123": "Electron Blaster Cannon II Blueprint", "3124": "Eifyr and Co. 'Rogue' Acceleration Control AC-606", "3125": "Zainou 'Deadeye' Guided Missile Precision GP-802", "3126": "Zainou 'Deadeye' Guided Missile Precision GP-804", "3127": "Zainou 'Deadeye' Guided Missile Precision GP-806", "3128": "Zainou 'Deadeye' Missile Bombardment MB-702", "355508": "Cortex", "3130": "Heavy Electron Blaster II", "3131": "Heavy Electron Blaster II Blueprint", "3132": "Zainou 'Deadeye' Missile Bombardment MB-706", "3133": "Zainou 'Deadeye' Missile Projection MP-702", "3134": "Zainou 'Deadeye' Missile Projection MP-704", "3135": "Zainou 'Deadeye' Missile Projection MP-706", "3136": "Zainou 'Deadeye' Rapid Launch RL-1002", "3137": "Zainou 'Deadeye' Rapid Launch RL-1004", "3138": "Heavy Ion Blaster II", "3139": "Heavy Ion Blaster II Blueprint", "3140": "Zainou 'Deadeye' Rapid Launch RL-1006", "3141": "Zainou 'Deadeye' Target Navigation Prediction TN-902", "3142": "Zainou 'Deadeye' Target Navigation Prediction TN-904", "3143": "Zainou 'Deadeye' Target Navigation Prediction TN-906", "3144": "Zainou 'Gnome' Launcher CPU Efficiency LE-602", "3145": "Zainou 'Gnome' Launcher CPU Efficiency LE-604", "3146": "Heavy Neutron Blaster II", "355813": "EC-3 Assault Mass Driver", "3148": "Zainou 'Gnome' Launcher CPU Efficiency LE-606", "3149": "Hardwiring - Zainou 'Sharpshooter' ZMX11", "3150": "Hardwiring - Zainou 'Sharpshooter' ZMX110", "3151": "Hardwiring - Zainou 'Sharpshooter' ZMX1100", "3152": "Zainou 'Snapshot' Defender Missiles DM-802", "3153": "Zainou 'Snapshot' Defender Missiles DM-804", "3154": "Ion Blaster Cannon II", "3155": "Ion Blaster Cannon II Blueprint", "3156": "Zainou 'Snapshot' Defender Missiles DM-806", "3157": "Zainou 'Snapshot' Assault Missiles AM-702", "3158": "Zainou 'Snapshot' Assault Missiles AM-704", "3159": "Zainou 'Snapshot' Assault Missiles AM-706", "3160": "Zainou 'Snapshot' FOF Explosion Radius FR-1002", "3161": "Zainou 'Snapshot' FOF Explosion Radius FR-1004", "3162": "Light Electron Blaster II", "3163": "Light Electron Blaster II Blueprint", "3164": "Zainou 'Snapshot' FOF Explosion Radius FR-1006", "355514": "KR-17 Breach Shotgun", "3166": "Zainou 'Snapshot' Heavy Missiles HM-704", "3167": "Zainou 'Snapshot' Heavy Missiles HM-706", "3168": "Zainou 'Snapshot' Light Missiles LM-902", "3169": "Zainou 'Snapshot' Light Missiles LM-904", "3170": "Light Ion Blaster II", "355515": "Allotek Breach Shotgun", "3172": "Zainou 'Snapshot' Light Missiles LM-906", "3173": "Zainou 'Snapshot' Rockets RD-902", "3174": "Zainou 'Snapshot' Rockets RD-904", "3175": "Zainou 'Snapshot' Rockets RD-906", "3176": "Zainou 'Snapshot' Torpedoes TD-602", "355516": "Logistics Type-II", "3178": "Light Neutron Blaster II", "3179": "Light Neutron Blaster II Blueprint", "3180": "Zainou 'Snapshot' Torpedoes TD-606", "3181": "Zainou 'Snapshot' Cruise Missiles CM-602", "3182": "Zainou 'Snapshot' Cruise Missiles CM-604", "355517": "Enhanced Profile Dampener", "3184": "ORE Industrial", "3185": "Eifyr and Co. 'Gunslinger' Medium Projectile Turret MP-802", "3186": "Neutron Blaster Cannon II", "3187": "Neutron Blaster Cannon II Blueprint", "3188": "Eifyr and Co. 'Gunslinger' Medium Projectile Turret MP-804", "355518": "Complex Profile Dampener", "3190": "Eifyr and Co. 'Gunslinger' Motion Prediction MR-702", "3191": "Eifyr and Co. 'Gunslinger' Motion Prediction MR-704", "3192": "Eifyr and Co. 'Gunslinger' Motion Prediction MR-706", "3193": "Eifyr and Co. 'Gunslinger' Surgical Strike SS-902", "3194": "Eifyr and Co. 'Gunslinger' Surgical Strike SS-904", "355519": "'Cataract' Basic Profile Dampener", "3196": "Eifyr and Co. 'Gunslinger' Large Projectile Turret LP-1002", "3197": "Eifyr and Co. 'Gunslinger' Large Projectile Turret LP-1004", "3198": "Eifyr and Co. 'Gunslinger' Large Projectile Turret LP-1006", "3199": "Eifyr and Co. 'Gunslinger' Small Projectile Turret SP-602", "3200": "Eifyr and Co. 'Gunslinger' Small Projectile Turret SP-604", "355520": "'Nyctalus' Enhanced Profile Damper", "3202": "Inherent Implants 'Lancer' Small Energy Turret SE-602", "3203": "Inherent Implants 'Lancer' Controlled Bursts CB-702", "3204": "Inherent Implants 'Lancer' Gunnery RF-902", "3205": "Inherent Implants 'Lancer' Large Energy Turret LE-1002", "3206": "Inherent Implants 'Lancer' Medium Energy Turret ME-802", "355521": "'Miosis' Complex Profile Damper", "3208": "Inherent Implants 'Lancer' Controlled Bursts CB-704", "3209": "Inherent Implants 'Lancer' Gunnery RF-904", "3210": "Inherent Implants 'Lancer' Large Energy Turret LE-1004", "3211": "Inherent Implants 'Lancer' Medium Energy Turret ME-804", "3212": "Inherent Implants 'Lancer' Small Energy Turret SE-606", "3213": "Inherent Implants 'Lancer' Controlled Bursts CB-706", "3214": "Inherent Implants 'Lancer' Gunnery RF-906", "3215": "Inherent Implants 'Lancer' Large Energy Turret LE-1006", "3216": "Inherent Implants 'Lancer' Medium Energy Turret ME-806", "3217": "Zainou 'Deadeye' Sharpshooter ST-902", "3218": "Harvester Mining Drone", "355523": "Militia Profile Dampener", "3220": "Zainou 'Deadeye' Trajectory Analysis TA-704", "3221": "Zainou 'Deadeye' Trajectory Analysis TA-706", "3222": "Zainou 'Deadeye' Large Hybrid Turret LH-1002", "3223": "Zainou 'Deadeye' Large Hybrid Turret LH-1004", "3224": "Zainou 'Deadeye' Large Hybrid Turret LH-1006", "3225": "Zainou 'Deadeye' Small Hybrid Turret SH-602", "3226": "Zainou 'Deadeye' Small Hybrid Turret SH-604", "3227": "Zainou 'Deadeye' Small Hybrid Turret SH-606", "3228": "Zainou 'Gnome' Weapon Upgrades WU-1002", "3229": "Zainou 'Gnome' Weapon Upgrades WU-1004", "3230": "Zainou 'Gnome' Weapon Upgrades WU-1006", "3231": "Zainou 'Deadeye' Medium Hybrid Turret MH-802", "3232": "Zainou 'Deadeye' Medium Hybrid Turret MH-804", "3233": "Zainou 'Deadeye' Medium Hybrid Turret MH-806", "3234": "Zainou 'Deadeye' Sharpshooter ST-904", "3235": "Zainou 'Deadeye' Sharpshooter ST-906", "3236": "Zainou 'Deadeye' Trajectory Analysis TA-702", "355526": "'Echo' Basic Light Damage Modifier", "3238": "Inherent Implants 'Squire' Energy Management EM-804", "3239": "Inherent Implants 'Squire' Energy Management EM-806", "3240": "Inherent Implants 'Squire' Energy Systems Operation EO-602", "3241": "Inherent Implants 'Squire' Energy Systems Operation EO-604", "3242": "Warp Disruptor I", "355527": "'Ricochet' Enhanced Light Damage Modifier", "3244": "Warp Disruptor II", "3245": "Warp Disruptor II Blueprint", "3246": "Inherent Implants 'Squire' Energy Systems Operation EO-606", "3247": "Inherent Implants 'Squire' Energy Emission Systems ES-702", "3248": "Inherent Implants 'Squire' Energy Emission Systems ES-704", "355528": "'Cascade' Complex Light Damage Modifier", "3250": "Inherent Implants 'Squire' Energy Pulse Weapons EP-702", "3251": "Inherent Implants 'Squire' Energy Pulse Weapons EP-704", "3252": "Inherent Implants 'Squire' Energy Pulse Weapons EP-706", "3253": "Inherent Implants 'Squire' Energy Grid Upgrades EU-702", "3254": "Inherent Implants 'Squire' Energy Grid Upgrades EU-704", "3255": "Inherent Implants 'Squire' Energy Grid Upgrades EU-706", "3256": "Inherent Implants 'Squire' Engineering EG-602", "3257": "Inherent Implants 'Squire' Engineering EG-604", "3258": "Inherent Implants 'Squire' Engineering EG-606", "3262": "Zainou 'Gypsy' Electronics Upgrades EU-602", "3263": "Zainou 'Gypsy' Electronics Upgrades EU-604", "3264": "Zainou 'Gypsy' Electronics Upgrades EU-606", "3265": "Zainou 'Gypsy' Electronics EE-602", "3266": "Zainou 'Gypsy' Electronics EE-604", "3267": "Zainou 'Gypsy' Electronics EE-606", "3268": "Zainou 'Gypsy' Signature Analysis SA-702", "3269": "Zainou 'Gypsy' Signature Analysis SA-704", "3270": "Zainou 'Gypsy' Signature Analysis SA-706", "3271": "Zainou 'Gypsy' Electronic Warfare EW-902", "3272": "Zainou 'Gypsy' Electronic Warfare EW-904", "355532": "'Debris' Basic Sidearm Damage Modifier", "3274": "Zainou 'Gypsy' Long Range Targeting LT-802", "3275": "Zainou 'Gypsy' Long Range Targeting LT-804", "3276": "Zainou 'Gypsy' Long Range Targeting LT-806", "3277": "Zainou 'Gypsy' Propulsion Jamming PJ-802", "3278": "Zainou 'Gypsy' Propulsion Jamming PJ-804", "355533": "'Fragment' Enhanced Sidearm Damage Modifier", "3280": "Zainou 'Gypsy' Sensor Linking SL-902", "3281": "Zainou 'Gypsy' Sensor Linking SL-904", "3282": "Zainou 'Gypsy' Sensor Linking SL-906", "3283": "Zainou 'Gypsy' Weapon Disruption WD-902", "3284": "Zainou 'Gypsy' Weapon Disruption WD-904", "355534": "'Sliver' Complex Sidearm Damage Modifier", "3286": "Quad Light Beam Laser II Blueprint", "3287": "Zainou 'Gypsy' Weapon Disruption WD-906", "3288": "Zainou 'Gypsy' Target Painting TG-902", "3289": "Zainou 'Gypsy' Target Painting TG-904", "3290": "Zainou 'Gypsy' Target Painting TG-906", "355535": "'Tremor' Basic Heavy Damage Modifier", "3292": "Inherent Implants 'Noble' Repair Systems RS-604", "356909": "HAV", "3296": "Large Standard Container", "355536": "'Impact' Enhanced Heavy Damage Modifier", "3299": "Inherent Implants 'Noble' Repair Systems RS-606", "3300": "Gunnery", "3301": "Small Hybrid Turret", "3302": "Small Projectile Turret", "355537": "'Seismic' Complex Heavy Damage Modifier", "3304": "Medium Hybrid Turret", "3305": "Medium Projectile Turret", "3306": "Medium Energy Turret", "3307": "Large Hybrid Turret", "3308": "Large Projectile Turret", "3309": "Large Energy Turret", "3310": "Rapid Firing", "3311": "Sharpshooter", "3312": "Motion Prediction", "3315": "Surgical Strike", "3316": "Controlled Bursts", "3317": "Trajectory Analysis", "3318": "Weapon Upgrades", "3319": "Missile Launcher Operation", "3320": "Rockets", "3321": "Light Missiles", "3322": "Auto-Targeting Missiles", "3323": "Defender Missiles", "3324": "Heavy Missiles", "3325": "Torpedoes", "3326": "Cruise Missiles", "3327": "Spaceship Command", "3328": "Gallente Frigate", "3329": "Minmatar Frigate", "3330": "Caldari Frigate", "3331": "Amarr Frigate", "3332": "Gallente Cruiser", "3333": "Minmatar Cruiser", "3334": "Caldari Cruiser", "3335": "Amarr Cruiser", "3336": "Gallente Battleship", "3337": "Minmatar Battleship", "3338": "Caldari Battleship", "3339": "Amarr Battleship", "3340": "Gallente Industrial", "3341": "Minmatar Industrial", "3342": "Caldari Industrial", "3343": "Amarr Industrial", "3344": "Gallente Titan", "3345": "Minmatar Titan", "3346": "Caldari Titan", "3347": "Amarr Titan", "3348": "Leadership", "3349": "Skirmish Warfare", "3350": "Siege Warfare", "3351": "Siege Warfare Specialist", "3352": "Information Warfare Specialist", "3354": "Warfare Link Specialist", "3355": "Social", "3356": "Negotiation", "3357": "Diplomacy", "3358": "Fast Talk", "3359": "Connections", "3361": "Criminal Connections", "355547": "'Orchid' Assault Type-I [Female Test]", "3368": "Diplomatic Relations", "355548": "'Firebrand' Assault Type-I [Female Test]", "3373": "Starbase Defense Management", "355549": "'Carbon' Assault Type-I [Female Test]", "3380": "Industry", "355550": "'Relic' Assault Type-I [Female Test]", "3385": "Refining", "3386": "Mining", "355551": "Assault Type-II [Female Test]", "3388": "Production Efficiency", "3389": "Refinery Efficiency", "3392": "Mechanics", "355552": "Assault Type-I [Female Test]", "3394": "Hull Upgrades", "3395": "Frigate Construction", "3396": "Industrial Construction", "3397": "Cruiser Construction", "3398": "Battleship Construction", "3400": "Outpost Construction", "3402": "Science", "567": "Dual 150mm Railgun I", "3404": "Genetic Engineering", "355554": "Scout Type-I [Female Test]", "3406": "Laboratory Operation", "3408": "Reverse Engineering", "3409": "Metallurgy", "3410": "Astrogeology", "355555": "Scout Type-II [Female Test]", "3412": "Astrometrics", "3413": "Engineering", "3414": "Inherent Implants 'Noble' Remote Armor Repair Systems RA-702", "3415": "Inherent Implants 'Noble' Remote Armor Repair Systems RA-704", "3416": "Shield Operation", "355556": "'Solstice' Scout Type-I [Female Test]", "3418": "Energy Management", "3419": "Shield Management", "3420": "Tactical Shield Manipulation", "3421": "Energy Pulse Weapons", "3422": "Shield Emission Systems", "355557": "'Kindred' Scout Type-I [Female Test]", "3424": "Energy Grid Upgrades", "3425": "Shield Upgrades", "3426": "Electronics", "3427": "Electronic Warfare", "3428": "Long Range Targeting", "355558": "Passive Booster (30-Day)", "3430": "Multitasking", "3431": "Signature Analysis", "3432": "Electronics Upgrades", "3433": "Sensor Linking", "3434": "Weapon Disruption", "3435": "Propulsion Jamming", "3436": "Drones", "3437": "Scout Drone Operation", "3438": "Mining Drone Operation", "3439": "Repair Drone Operation", "3440": "Salvage Drone Operation", "3441": "Heavy Drone Operation", "3442": "Drone Interfacing", "3443": "Trade", "3444": "Retail", "3446": "Broker Relations", "3447": "Visibility", "3449": "Navigation", "3450": "Afterburner", "3451": "Fuel Conservation", "3452": "Acceleration Control", "3453": "Evasive Maneuvering", "3454": "High Speed Maneuvering", "3455": "Warp Drive Operation", "3456": "Jump Drive Operation", "3465": "Large Secure Container", "3466": "Medium Secure Container", "3467": "Small Secure Container", "3469": "Basic Co-Processor", "3470": "Inherent Implants 'Noble' Remote Armor Repair Systems RA-706", "3471": "Inherent Implants 'Noble' Mechanic MC-802", "356758": "Titan vk.0", "3475": "Inherent Implants 'Noble' Mechanic MC-806", "3476": "Inherent Implants 'Noble' Repair Proficiency RP-902", "3477": "Inherent Implants 'Noble' Repair Proficiency RP-904", "3478": "Inherent Implants 'Noble' Repair Proficiency RP-906", "3479": "Inherent Implants 'Noble' Hull Upgrades HG-1002", "3480": "Micro Capacitor Battery II", "3481": "Inherent Implants 'Noble' Hull Upgrades HG-1004", "3482": "Inherent Implants 'Noble' Hull Upgrades HG-1006", "3483": "Captured Civilians", "3488": "Small Capacitor Battery II", "3489": "Small Capacitor Battery II Blueprint", "3493": "Incursion ship attributes effects Assault ", "3494": "Incursion ship attributes effects HQ", "3495": "Shield Transfer Control Tower", "3496": "Medium Capacitor Battery II", "3497": "Medium Capacitor Battery II Blueprint", "3501": "CONCORD MTAC", "3504": "Large Capacitor Battery II", "3505": "Large Capacitor Battery II Blueprint", "3507": "Tactical Response Transmitter", "3512": "Focused Medium Pulse Laser II", "3513": "Focused Medium Pulse Laser II Blueprint", "3514": "Revenant", "3515": "Revenant Blueprint", "3516": "Malice", "3517": "Malice Blueprint", "3518": "Vangel", "3519": "Vangel Blueprint", "3520": "Heavy Pulse Laser II", "3521": "Heavy Pulse Laser II Blueprint", "3528": "Medium Armor Repairer I", "3529": "Medium Armor Repairer I Blueprint", "3530": "Medium Armor Repairer II", "3531": "Medium Armor Repairer II Blueprint", "3532": "Echelon", "3533": "Echelon Blueprint", "3534": "Capital Inefficient Armor Repair Unit", "3535": "Capital Inefficient Armor Repair Unit Blueprint", "3536": "Capital Coaxial Regenerative Projector", "3537": "Capital Coaxial Regenerative Projector Blueprint", "3538": "Large Armor Repairer I", "3539": "Large Armor Repairer I Blueprint", "3540": "Large Armor Repairer II", "3541": "Large Armor Repairer II Blueprint", "3542": "Capital Neutron Saturation Injector I", "355577": "Proximity Explosive", "3544": "Capital Murky Shield Screen Transmitter I", "3545": "Capital Murky Shield Screen Transmitter I Blueprint", "3546": "Limited Mega Ion Siege Blaster I", "3547": "Limited Mega Ion Siege Blaster I Blueprint", "3550": "Dual 1000mm 'Scout' Accelerator Cannon", "3551": "Survey", "3552": "Cap Booster 75", "3553": "Cap Booster 75 Blueprint", "3554": "Cap Booster 100", "3555": "Cap Booster 100 Blueprint", "3556": "Micro Capacitor Booster I", "3557": "Dual 1000mm 'Scout' I Accelerator Cannon Blueprint", "3558": "Micro Capacitor Booster II", "3559": "Dual Modal Giga Pulse Laser I", "3560": "Dual Modal Giga Pulse Laser I Blueprint", "3561": "Dual Giga Modal Laser I", "3562": "Dual Giga Modal Laser I Blueprint", "3563": "'Limos' Citadel Cruise Launcher I", "3564": "'Limos' Citadel Cruise Launcher I Blueprint", "3565": "Shock 'Limos' Citadel Torpedo Bay I", "3566": "Small Capacitor Booster I", "3567": "Small Capacitor Booster I Blueprint", "3568": "Small Capacitor Booster II", "3569": "Small Capacitor Booster II Blueprint", "3570": "Shock 'Limos' Citadel Torpedo Bay I Blueprint", "3571": "Quad 3500mm Gallium Cannon", "3572": "Quad 3500mm Gallium I Cannon Blueprint", "355582": "'Origin' Enhanced Shield Regulator", "3574": "6x2500mm Heavy Gallium I Repeating Cannon Blueprint", "3147": "Heavy Neutron Blaster II Blueprint", "3576": "Heavy Capacitor Booster I", "3577": "Heavy Capacitor Booster I Blueprint", "3578": "Heavy Capacitor Booster II", "3579": "Heavy Capacitor Booster II Blueprint", "3580": "Capital Murky Energy Transmitter I Blueprint", "3581": "Purloined Sansha Codebreaker", "3582": "Purloined Sansha Codebreaker Blueprint", "3583": "Badly Mangled Components", "3584": "True Slave Decryption Node", "355584": "'Tether' Complex Shield Regulator", "3586": "Small Shield Transporter I", "3587": "Small Shield Transporter I Blueprint", "3588": "Small Shield Transporter II", "3589": "Small Shield Transporter II Blueprint", "3590": "Mangled Sansha Codebreaker Blueprint", "355585": "Basic Shield Regulator", "3596": "Medium Shield Transporter I", "355586": "Complex Shield Regulator", "3598": "Medium Shield Transporter II", "3599": "Medium Shield Transporter II Blueprint", "3606": "Large Shield Transporter I", "3607": "Large Shield Transporter I Blueprint", "3608": "Large Shield Transporter II", "3609": "Large Shield Transporter II Blueprint", "3616": "Capital Shield Transporter I", "3617": "Capital Shield Transporter I Blueprint", "603": "Merlin", "355591": "Militia Shield Regulator", "606": "Velator", "3643": "Soil", "355594": "C-7 Flux Grenade", "364094": "Active Omega-Booster (7-Day)", "364095": "Raider Scout", "364096": "CQC Scout", "364097": "Hunter Scout", "364098": "Shock Assault", "355595": "Allotek Flux Grenade", "364101": "Recruit Booster (7-Day)", "364102": "Recruit Assault Rifle", "364103": "Recruit Submachine Gun", "3656": "Medium Hull Repairer II Blueprint", "355596": "'Siren' Flux Grenade", "355597": "'Klaxon' Allotek Flux Grenade", "3664": "Large Hull Repairer I Blueprint", "3665": "Large Hull Repairer II", "3666": "Large Hull Repairer II Blueprint", "355598": "'Banshee' C-7 Flux Grenade", "364121": "CreoDron Methana", "355599": "'Haze' Locus Grenade", "355600": "'Husk' AV Grenade", "3683": "Oxygen", "3685": "Hydrogen Batteries", "3687": "Electronic Parts", "3689": "Mechanical Parts", "3691": "Synthetic Oil", "3693": "Fertilizer", "3695": "Polytextiles", "3697": "Silicate Glass", "355603": "Breach Scrambler Pistol", "3701": "Certification Results", "3703": "Nerve Sticks", "355604": "TY-5 Breach Scrambler Pistol", "3707": "Blue Pill", "3709": "Drop", "355605": "Imperial Breach Scrambler Pistol", "3713": "Vitoc", "3715": "Frozen Food", "3717": "Dairy Products", "3719": "Tourists", "3721": "Slaves", "2306": "Non-CS Crystals", "364171": "Kaalakiota Tactical HAV", "364172": "Creodron Breach HAV", "364173": "Militia Spool Reduction Unit", "364174": "Militia Heat Sink", "364175": "Militia Tracking Enhancement", "364176": "Militia Active Heat Sink", "364177": "Militia Tracking CPU", "3731": "Megacorp Management", "3732": "Empire Control", "353985": "Light Automated Armor Repair Unit", "355610": "Fire Control System", "355611": "Conscript Heat Sink", "3756": "Gnosis", "355613": "Propulsion Test Plates", "3764": "Leviathan", "355614": "Inertia Test Plates", "3766": "Vigil", "3767": "Vigil Blueprint", "355615": "Synch AV Grenade", "3773": "Hydrochloric Acid", "3775": "Viral Agent", "355616": "EX-3 Sleek AV Grenade", "3779": "Biomass", "355617": "Lai Dai Packed AV Grenade", "3793": "Data Subverter I", "3794": "Data Subverter I Blueprint", "3804": "VIPs", "3806": "Refugees", "3808": "Prisoners", "3810": "Marines", "3812": "Data Sheets", "3814": "Reports", "3818": "Exile", "3820": "Sooth Sayer", "3822": "Frentix", "3824": "Crystal Egg", "3826": "Mindflood", "3828": "Construction Blocks", "3829": "Medium Shield Extender I", "3830": "Medium Shield Extender I Blueprint", "3831": "Medium Shield Extender II", "3832": "Medium Shield Extender II Blueprint", "3836": "Pilot Certification Documents", "3837": "Token of Submission", "3838": "Clearance Documents", "3839": "Large Shield Extender I", "3840": "Large Shield Extender I Blueprint", "3841": "Large Shield Extender II", "3842": "Large Shield Extender II Blueprint", "3843": "Tribal Sponsorship", "3844": "Freedom of Operation License", "3849": "Micro Shield Extender I", "3851": "Micro Shield Extender II", "3887": "Co-Processor I", "3888": "Co-Processor II", "3893": "Mining Connections", "3894": "Distribution Connections", "3895": "Security Connections", "3897": "Micro Proton Smartbomb I", "3403": "Research", "3899": "Micro Proton Smartbomb II", "3901": "Micro Graviton Smartbomb I", "3903": "Micro Graviton Smartbomb II", "3907": "Micro Plasma Smartbomb I", "3909": "Micro Plasma Smartbomb II", "3913": "Micro EMP Smartbomb I", "3915": "Micro EMP Smartbomb II", "3937": "Medium Proton Smartbomb I", "3938": "Medium Proton Smartbomb I Blueprint", "3939": "Medium Proton Smartbomb II", "3940": "Medium Proton Smartbomb II Blueprint", "3941": "Medium Graviton Smartbomb I", "3942": "Medium Graviton Smartbomb I Blueprint", "3943": "Medium Graviton Smartbomb II", "3944": "Medium Graviton Smartbomb II Blueprint", "3947": "Medium Plasma Smartbomb I", "3948": "Medium Plasma Smartbomb I Blueprint", "3949": "Medium Plasma Smartbomb II", "3950": "Medium Plasma Smartbomb II Blueprint", "3953": "Medium EMP Smartbomb I", "3954": "Medium EMP Smartbomb I Blueprint", "3955": "Medium EMP Smartbomb II", "3956": "Medium EMP Smartbomb II Blueprint", "3958": "GDN-9 \"Nightstalker\" Combat Goggles", "3962": "Customs Office Gantry", "3963": "Customs Office Gantry Blueprint", "3966": "Men's 'Precision' Boots", "3975": "Women's 'Structure' Dress (navy)", "3977": "Large Proton Smartbomb I", "3978": "Large Proton Smartbomb I Blueprint", "3979": "Large Proton Smartbomb II", "3980": "Large Proton Smartbomb II Blueprint", "3981": "Large Graviton Smartbomb I", "3982": "Large Graviton Smartbomb I Blueprint", "3983": "Large Graviton Smartbomb II", "3984": "Large Graviton Smartbomb II Blueprint", "3986": "Large Remote Hull Repair System II", "3987": "Large Plasma Smartbomb I", "3988": "Large Plasma Smartbomb I Blueprint", "3989": "Large Plasma Smartbomb II", "3990": "Large Plasma Smartbomb II Blueprint", "3991": "Large Remote Hull Repair System II Blueprint", "3992": "Men's 'Commando' Pants (black wax)", "3993": "Large EMP Smartbomb I", "3994": "Large EMP Smartbomb I Blueprint", "3995": "Large EMP Smartbomb II", "3996": "Large EMP Smartbomb II Blueprint", "3997": "Women's 'Excursion' Pants (black/gray)", "3998": "Women's 'Impress' Skirt (gray)", "3999": "Women's 'Impress' Skirt (black wax)", "4001": "Men's 'Trench' Boots", "4002": "Women's 'Minima' Heels", "4003": "Women's 'Greave' Knee-Boots", "4004": "Women's 'Mystrioso' Boots", "4005": "Scorpion Ishukone Watch", "4006": "Scorpion Ishukone Watch Blueprint", "4008": "Men's 'Lockstep' Boots", "4009": "Looking Glass Monocle Interface (right/gold)", "4013": "RADAR Backup Array I", "4014": "RADAR Backup Array II", "4016": "Women's 'Excursion' Pants (black)", "4017": "Women's 'Excursion' Pants (black/blue/gold)", "4018": "Women's 'Excursion' Pants (black/gold)", "4019": "Women's 'Excursion' Pants (black/gold line)", "4020": "Women's 'Excursion' Pants (black/red/gold)", "4021": "Women's 'Excursion' Pants (black/silver)", "4022": "Women's 'Excursion' Pants (gold)", "4025": "X5 Prototype Engine Enervator", "4026": "Women's 'Excursion' Pants (matte blue)", "4027": "Fleeting Propulsion Inhibitor I", "4028": "Women's 'Excursion' Pants (matte green)", "4029": "'Langour' Drive Disruptor I", "4030": "Women's 'Excursion' Pants (matte red)", "4031": "Patterned Stasis Web I", "4032": "Women's 'Excursion' Pants (silver)", "4033": "Women's 'Impress' Skirt (black leather)", "4034": "Women's 'Impress' Skirt (brown leather)", "4035": "Women's 'Impress' Skirt (graphite)", "4036": "Women's 'Impress' Skirt (green/gold)", "4037": "Odin Synthetic Eye (right/dark)", "4038": "Odin Synthetic Eye (right/gray)", "4039": "Odin Synthetic Eye (right/gold)", "4042": "Looking Glass Monocle Interface (right/gray)", "4043": "Odin Synthetic Eye (left/dark)", "4046": "Odin Synthetic Eye (left/gold)", "4048": "Odin Synthetic Eye (left/gray)", "4050": "Looking Glass Monocle Interface (left/gold)", "4051": "Caldari Fuel Block", "4052": "Looking Glass Monocle Interface (left/gray)", "4054": "Women's 'Executor' Coat", "4057": "Men's 'Sterling' Dress Shirt (black)", "4058": "Men's 'Sterling' Dress Shirt (navy)", "4059": "Men's 'Sterling' Dress Shirt (dust)", "4060": "Men's 'Sterling' Dress Shirt (olive)", "4061": "Women's 'Sterling' Dress Blouse (black)", "4062": "Women's 'Sterling' Dress Blouse (navy)", "4063": "Women's 'Sterling' Dress Blouse (dust)", "4064": "Women's 'Sterling' Dress Blouse (olive)", "4065": "Women's 'Sterling' Dress Blouse (platinum)", "4066": "Women's 'Quafe' T-shirt", "4067": "Men's 'Quafe' T-shirt", "4068": "Men's 'Sterling' Dress Shirt (Ishukone Special Edition)", "4069": "Women's 'Impress' Skirt (marine)", "4070": "Women's 'Impress' Skirt (matte black)", "4071": "Women's 'Impress' Skirt (matte blue)", "4072": "Women's 'Impress' Skirt (matte red)", "4073": "Women's 'Impress' Skirt (red gold)", "4074": "Women's 'Impress' Skirt (silver)", "4075": "Women's 'Impress' Skirt (white)", "4076": "Women's 'Structure' Skirt (black/red)", "4078": "Women's 'Structure' Skirt (camouflage)", "4085": "Women's 'Structure' Skirt (black)", "4089": "Clearance Documents", "4090": "Large Crates of Quafe", "4091": "Large Crates of Ectoplasm", "4097": "Men's 'Field Marshal' Coat", "4098": "Men's 'Esquire' Coat", "4101": "Women's 'Structure' Skirt (black/white)", "4102": "Women's 'Structure' Skirt (blue)", "4103": "Women's 'Structure' Skirt (graphite)", "4104": "Women's 'Structure' Skirt (gray)", "4105": "Women's 'Structure' Skirt (gray stripes)", "4106": "Women's 'Structure' Skirt (green)", "4107": "Women's 'Structure' Skirt (green/black)", "4108": "Women's 'Structure' Skirt (green stripes)", "4109": "Women's 'Structure' Skirt (khaki)", "4110": "Women's 'Structure' Skirt (marine)", "4111": "Women's 'Structure' Skirt (matte black)", "4112": "Women's 'Structure' Skirt (red)", "4113": "Women's 'Structure' Skirt (red leather)", "4114": "Women's 'Structure' Skirt (red stripes)", "4115": "Women's 'Structure' Skirt (white stripes)", "4116": "Women's 'Minima' Heels (black/gold)", "4117": "Women's 'Minima' Heels (black/red)", "4118": "Women's 'Minima' Heels (blue)", "4119": "Women's 'Minima' Heels (gold)", "4120": "Women's 'Minima' Heels (graphite/white)", "4121": "Women's 'Minima' Heels (green/black)", "4122": "Women's 'Minima' Heels (matte black)", "4123": "Women's 'Minima' Heels (matte red)", "4124": "Women's 'Minima' Heels (red)", "4125": "Women's 'Minima' Heels (silver)", "4126": "Women's 'Minima' Heels (turquoise)", "4127": "Women's 'Greave' Boots (black/gold)", "4128": "Women's 'Greave' Boots (brown)", "4129": "Women's 'Greave' Boots (matte brown)", "4130": "Women's 'Greave' Boots (matte gray)", "4131": "Women's 'Greave' Boots (red)", "4132": "Women's 'Mystrioso' Boots (black/white)", "4133": "Women's 'Mystrioso' Boots (brown/black)", "4134": "Women's 'Mystrioso' Boots (red)", "4135": "Women's 'Mystrioso' Boots (white/black)", "4136": "Women's 'Executor' Coat (black)", "4137": "Women's 'Executor' Coat (graphite)", "4138": "Women's 'Executor' Coat (green/gold)", "4139": "Women's 'Executor' Coat (matte blue)", "4140": "Women's 'Executor' Coat (matte red)", "4141": "Women's 'Executor' Coat (red/gold)", "4142": "Women's 'Executor' Coat (silver)", "4143": "Women's 'Structure' Dress (black)", "4144": "Women's 'Structure' Dress (black/white)", "4145": "Women's 'Structure' Dress (brown)", "4146": "Women's 'Structure' Dress (gold/black)", "4147": "Dual Heavy Pulse Laser II", "4148": "Dual Heavy Pulse Laser II Blueprint", "4149": "Women's 'Structure' Dress (graphite)", "4150": "Women's 'Structure' Dress (green)", "4151": "Women's 'Structure' Dress (matte blue)", "4152": "Women's 'Structure' Dress (matte red)", "4153": "Women's 'Structure' Dress (red)", "4154": "Women's 'Structure' Dress (turquoise)", "4155": "Women's 'Sterling' Dress Blouse (black leather)", "4156": "Women's 'Sterling' Dress Blouse (black/white)", "4157": "Women's 'Sterling' Dress Blouse (gold)", "4158": "Women's 'Sterling' Dress Blouse (graphite)", "4159": "Women's 'Sterling' Dress Blouse (green satin)", "4160": "Women's 'Sterling' Dress Blouse (matte black)", "4161": "Women's 'Sterling' Dress Blouse (matte blue)", "4162": "Women's 'Sterling' Dress Blouse (matte olive)", "4163": "Women's 'Sterling' Dress Blouse (orange satin)", "4164": "Women's 'Sterling' Dress Blouse (red satin)", "4165": "Men's 'Commando' Pants (black)", "4166": "Men's 'Commando' Pants (blue)", "4167": "Men's 'Commando' Pants (gold/black)", "4168": "Men's 'Commando' Pants (gray/black)", "4169": "Men's 'Commando' Pants (brown camo)", "4170": "Men's 'Commando' Pants (green camo)", "4171": "Men's 'Commando' Pants (red/black)", "4172": "Men's 'Lockstep' Boots (true black)", "4173": "Men's 'Lockstep' Boots (worn brown)", "4174": "Men's 'Precision' Boots (brown)", "4175": "Men's 'Precision' Boots (gray)", "4176": "Men's 'Precision' Boots (tan)", "4177": "Men's 'Trench' Boots (brown)", "4178": "Men's 'Trench' Boots (gray)", "4179": "Men's 'Trench' Boots (tan)", "4180": "Men's 'Form' Shirt (black)", "4181": "Men's 'Form' Shirt (blue)", "4182": "Men's 'Form' Shirt (brown)", "4183": "Men's 'Form' Shirt (dark blue)", "4184": "Men's 'Form' Shirt (dark red)", "4185": "Men's 'Form' Shirt (khaki)", "4186": "Men's 'Form' Shirt (light gray)", "4187": "Men's 'Form' Shirt (olive)", "4188": "Men's 'Form' Shirt (dark camo)", "4189": "Men's 'Form' Shirt (desert camo)", "4190": "Men's 'Form' Shirt (white)", "4191": "Men's 'Street' Shirt (black)", "4192": "Men's 'Street' Shirt (blue)", "4193": "Men's 'Street' Shirt (brown)", "4194": "Men's 'Street' Shirt (gray)", "4195": "Men's 'Street' Shirt (green)", "4196": "Men's 'Street' Shirt (gray urban camo)", "4197": "Men's 'Street' Shirt (brown camo)", "4198": "Men's 'Street' Shirt (urban camo)", "4199": "Men's 'Street' Shirt (green camo)", "4200": "Men's 'Street' Shirt (white)", "4201": "Women's 'Function' Shirt (black)", "4202": "Women's 'Function' Shirt (blue)", "4203": "Women's 'Function' Shirt (brown)", "4204": "Women's 'Function' Shirt (cream)", "4205": "Women's 'Function' Shirt (dark blue)", "4206": "Women's 'Function' Shirt (dark red)", "4207": "Women's 'Function' Shirt (gray)", "4208": "Women's 'Function' Shirt (green)", "4209": "Women's 'Function' Shirt (khaki)", "4210": "Women's 'Function' Shirt (olive)", "4211": "Women's 'Function' Shirt (orange)", "4212": "Women's 'Function' Shirt (dark camo)", "4213": "Women's 'Function' Shirt (desert camo)", "4214": "Women's 'Function' Shirt (red)", "4215": "Women's 'Function' Shirt (white)", "4216": "Women's 'Avenue' Shirt (black)", "4217": "Women's 'Avenue' Shirt (black leather)", "4218": "Women's 'Avenue' Shirt (blue)", "4219": "Women's 'Avenue' Shirt (brown)", "4220": "Women's 'Avenue' Shirt (gray)", "4221": "Women's 'Avenue' Shirt (green)", "4222": "Women's 'Avenue' Shirt (orange)", "4223": "Women's 'Avenue' Shirt (gray camo)", "4224": "Women's 'Avenue' Shirt (orange camo)", "4225": "Women's 'Avenue' Shirt (red patterned)", "4226": "Women's 'Avenue' Shirt (camo)", "4227": "Women's 'Avenue' Shirt (lined brown)", "4228": "Women's 'Avenue' Shirt (purple mesh)", "4229": "Women's 'Avenue' Shirt (black and dark red)", "4230": "Women's 'Avenue' Shirt (pink camo)", "4231": "Women's 'Avenue' Shirt (red)", "4232": "Women's 'Avenue' Shirt (white)", "4233": "Men's 'Esquire' Coat (black)", "4234": "Men's 'Esquire' Coat (green/gold)", "4235": "Men's 'Esquire' Coat (matte graphite)", "4236": "Men's 'Esquire' Coat (matte gray)", "4237": "Men's 'Esquire' Coat (matte green)", "4238": "Men's 'Esquire' Coat (red/gold)", "4239": "Men's 'Esquire' Coat (silver)", "4240": "Men's 'Sterling' Dress Shirt (gold leather)", "4241": "Men's 'Sterling' Dress Shirt (gray)", "4242": "Men's 'Sterling' Dress Shirt (red/black leather)", "4243": "Men's 'Sterling' Dress Shirt (white/blue)", "4244": "Men's 'Field Marshal' Coat (green)", "4245": "'Silvershore' Greatcoat", "4246": "Minmatar Fuel Block", "4247": "Amarr Fuel Block", "4248": "Warp Disruption Field Generator II", "4249": "Warp Disruption Field Generator II Blueprint", "4250": "Small Tractor Beam II", "4251": "Small Tractor Beam II Blueprint", "4252": "Capital Tractor Beam II", "4253": "Capital Tractor Beam II Blueprint", "4254": "Micro Auxiliary Power Core II", "4255": "Micro Auxiliary Power Core II Blueprint", "4256": "Bomb Launcher II", "4257": "Bomb Launcher II Blueprint", "4258": "Core Probe Launcher II", "4259": "Core Probe Launcher II Blueprint", "4260": "Expanded Probe Launcher II", "4261": "Expanded Probe Launcher II Blueprint", "4262": "Armored Warfare Link - Damage Control II", "4263": "Armored Warfare Link - Damage Control II Blueprint", "4264": "Armored Warfare Link - Passive Defense II", "4265": "Armored Warfare Link - Passive Defense II Blueprint", "4266": "Armored Warfare Link - Rapid Repair II", "4267": "Armored Warfare Link - Rapid Repair II Blueprint", "4268": "Information Warfare Link - Electronic Superiority II", "4269": "Information Warfare Link - Electronic Superiority II Blueprint", "4270": "Information Warfare Link - Recon Operation II", "4271": "Information Warfare Link - Recon Operation II Blueprint", "4272": "Information Warfare Link - Sensor Integrity II", "4273": "Information Warfare Link - Sensor Integrity II Blueprint", "4274": "Mining Foreman Link - Harvester Capacitor Efficiency II", "4275": "Mining Foreman Link - Harvester Capacitor Efficiency II Blueprint", "4276": "Mining Foreman Link - Laser Optimization II", "4277": "Mining Foreman Link - Laser Optimization II Blueprint", "4278": "Mining Foreman Link - Mining Laser Field Enhancement II", "4279": "Mining Foreman Link - Mining Laser Field Enhancement II Blueprint", "4280": "Siege Warfare Link - Active Shielding II", "4281": "Siege Warfare Link - Active Shielding II Blueprint", "4282": "Siege Warfare Link - Shield Efficiency II", "4283": "Siege Warfare Link - Shield Efficiency II Blueprint", "4284": "Siege Warfare Link - Shield Harmonizing II", "4285": "Siege Warfare Link - Shield Harmonizing II Blueprint", "4286": "Skirmish Warfare Link - Evasive Maneuvers II", "4287": "Skirmish Warfare Link - Evasive Maneuvers II Blueprint", "4288": "Skirmish Warfare Link - Interdiction Maneuvers II", "4289": "Skirmish Warfare Link - Interdiction Maneuvers II Blueprint", "4290": "Skirmish Warfare Link - Rapid Deployment II", "4291": "Skirmish Warfare Link - Rapid Deployment II Blueprint", "4292": "Siege Module II", "4293": "Siege Module II Blueprint", "4294": "Triage Module II", "4295": "Triage Module II Blueprint", "4296": "Medium Remote Hull Repair System II", "4298": "Medium Remote Hull Repair System II Blueprint", "4299": "Small Remote Hull Repair System II", "4300": "Small Remote Hull Repair System II Blueprint", "4301": "Outgrowth Rogue Drone Hive Pass Key", "4302": "Oracle", "4303": "Research Abstract: Project Tesseract", "4304": "Research Abstract: Project Theseus", "4305": "Oracle Blueprint", "4306": "Naga", "4307": "Naga Blueprint", "4308": "Talos", "4309": "Talos Blueprint", "4310": "Tornado", "4311": "Tornado Blueprint", "4312": "Gallente Fuel Block", "4313": "Gallente Fuel Block Blueprint", "4314": "Caldari Fuel Block Blueprint", "4315": "Amarr Fuel Block Blueprint", "4316": "Minmatar Fuel Block Blueprint", "3417": "Energy Systems Operation", "4320": "Research Abstract: Project Theta", "4321": "Research Abstract: Project Blueprint", "4322": "Research Abstract: Project Catapult", "4323": "Research Abstract: Project Common Ground", "4324": "Research Abstract: Project Huntress Green (1 of 3)", "4325": "Research Abstract: Project Algintal", "4326": "Research Abstract: Project Enigma", "4327": "Research Abstract: Project Trinity", "4328": "Research Abstract: Project Infernal Spade", "4329": "Research Abstract: Project Astrosurvey", "4330": "Research Abstract: Project Omicron", "4331": "Research Abstract: Project Omega", "4332": "Research Abstract: Project Rho", "4333": "Research Abstract: Project Slipstream", "4334": "Arek'Jaalan: Site One Contributions Listing", "4335": "Research Abstract: Project Compass", "4336": "Research Abstract: Project Huntress Green (2 of 3)", "4337": "Research Abstract: Project Huntress Green (3 of 3)", "4338": "Arek'Jaalan: Mission Statement", "4345": "Gistum B-Type Adaptive Invulnerability Field", "4346": "Gistum A-Type Adaptive Invulnerability Field", "4347": "Pithum A-Type Adaptive Invulnerability Field", "4348": "Pithum B-Type Adaptive Invulnerability Field", "4349": "Pithum C-Type Adaptive Invulnerability Field", "4358": "Exotic Dancers, Male", "4359": "QA Jump Bridge", "4360": "QA ECCM", "4361": "QA Fuel Control Tower", "4363": "Iteron Mark IV Quafe Ultra Edition", "4364": "Iteron Mark IV Quafe Ultra Edition Blueprint", "4365": "Men's 'Quafe' T-shirt YC114", "4366": "Women's 'Quafe' T-shirt YC114", "4367": "Men's 'Sterling' Dress Shirt (white)", "4368": "Women's 'Sterling' Dress Blouse (white)", "4370": "Small Targeting Amplifier I Blueprint", "4371": "QA Remote Armor Repair System - 5 Players", "4372": "QA Shield Transporter - 5 Players", "4373": "QA Damage Module", "4374": "QA Multiship Module - 10 Players", "4375": "QA Multiship Module - 20 Players", "4376": "QA Multiship Module - 40 Players", "4377": "QA Multiship Module - 5 Players", "4380": "QA Immunity Module", "4383": "Large Micro Jump Drive", "4384": "Large Micro Jump Drive Blueprint", "4385": "Micro Jump Drive Operation", "4387": "Mobile Large Jump Disruptor I Blueprint", "4388": "Iteron Mark IV Quafe Ultramarine Edition", "4389": "Iteron Mark IV Quafe Ultramarine Edition Blueprint", "4390": "Pax Ammaria", "4391": "Large Ancillary Shield Booster", "4392": "Large Ancillary Shield Booster Blueprint", "4393": "Drone Damage Amplifier I", "4394": "Drone Damage Amplifier I Blueprint", "4395": "Medium Processor Overclocking Unit I", "4396": "Medium Processor Overclocking Unit I Blueprint", "4397": "Large Processor Overclocking Unit I", "4398": "Large Processor Overclocking Unit I Blueprint", "4399": "Medium Processor Overclocking Unit II", "4400": "Medium Processor Overclocking Unit II Blueprint", "4401": "Large Processor Overclocking Unit II", "4402": "Large Processor Overclocking Unit II Blueprint", "4403": "Reactive Armor Hardener", "4404": "Reactive Armor Hardener Blueprint", "4405": "Drone Damage Amplifier II", "4406": "Drone Damage Amplifier II Blueprint", "355721": "Large Blaster Installation", "4408": "Shield Booster Fuel Allocation Script Blueprint", "4409": "Target Spectrum Breaker", "4410": "Target Spectrum Breaker Blueprint", "4411": "Target Breaker Amplification", "354764": "Command Node", "355723": "Large GA Railgun Installation", "4421": "F-a10 Buffer Capacitor Regenerator", "4423": "Industrial Capacitor Recharger", "4425": "AGM Capacitor Charge Array", "4427": "Secondary Parallel Link-Capacitor", "4431": "F-b10 Nominal Capacitor Regenerator", "4433": "Barton Reactor Capacitor Recharger I", "4435": "Eutectic Capacitor Charge Array", "4437": "Fixed Parallel Link-Capacitor I", "354765": "Command Node ", "4471": "5W Infectious Power System Malfunction", "4473": "Small Rudimentary Energy Destabilizer I", "4475": "Small Unstable Power Fluctuator I", "4477": "Small 'Gremlin' Power Core Disruptor I", "3423": "Energy Emission Systems", "354767": "Clone Reanimation Unit", "355741": "'Grimoire' 20GJ Blaster", "4529": "Small I-a Polarized Armor Regenerator", "4531": "Small Inefficient Armor Repair Unit", "4533": "Small 'Accommodation' Vestment Reconstructer I", "4535": "Small Automated Carapace Restoration", "355743": "'Phantasm' 20GJ Ion Cannon", "4569": "Medium I-a Polarized Armor Regenerator", "4571": "Medium Inefficient Armor Repair Unit", "4573": "Medium 'Accommodation' Vestment Reconstructer I", "4575": "Medium Automated Carapace Restoration", "4579": "Medium Nano Armor Repair Unit I", "354770": "Defense Relay", "355753": "'Gomorrah' 80GJ Particle Cannon", "4609": "Large I-a Polarized Armor Regenerator", "4611": "Large Inefficient Armor Repair Unit", "4613": "Large 'Accommodation' Vestment Reconstructer I", "4615": "Large Automated Carapace Restoration", "4621": "Large 'Reprieve' Vestment Reconstructer I", "355761": "'Brimstone' ST-1 Missile Launcher", "354772": "Supply Depot", "355762": "'Arson' AT-1 Missile Launcher", "355763": "'Cinder' XT-1 Missile Launcher", "355764": "'Harbinger' ST-201 Missile Launcher", "355765": "'Omen' AT-201 Missile Launcher", "355766": "'Prodigy' XT-201 Missile Launcher", "3429": "Targeting", "354773": "[TEST] Drone Hive", "355767": "'Skinweave' Scout", "355768": "'Skinweave' Logistics", "355771": "'Skinweave' Heavy", "785": "Miner I Blueprint", "355772": "Guristas Saga", "4745": "Micro F-4a Ld-Sulfate Capacitor Charge Unit", "4747": "Micro Ld-Acid Capacitor Battery I", "4749": "Micro Peroxide Capacitor Power Cell", "4751": "Micro Ohm Capacitor Reserve I", "355779": "Breach Mass Driver", "355781": "Assault Mass Driver", "4785": "Small F-4a Ld-Sulfate Capacitor Charge Unit", "4787": "Small Ld-Acid Capacitor Battery I", "4789": "Small Peroxide Capacitor Power Cell", "4791": "Small Ohm Capacitor Reserve I", "355786": "Nonlinear Flux Stabilizer", "355787": "'Utopia' Magnetic Field Stabilizer", "355788": "Asynchronous Fire Control", "355789": "Fire Control System II", "355790": "'Trojan' Fire Control System", "355791": "Modified Extruded Heat Sink", "4829": "Medium F-RX Prototype Capacitor Boost", "4831": "Medium Brief Capacitor Overcharge I", "4833": "Medium Electrochemical Capacitor Booster I", "4835": "Medium Tapered Capacitor Infusion I", "355793": "'Helios' Heat Sink", "355870": "20GJ Scattered Ion Cannon", "4869": "Large F-4a Ld-Sulfate Capacitor Charge Unit", "4871": "Large Ld-Acid Capacitor Battery I", "4873": "Large Peroxide Capacitor Power Cell", "4875": "Large Ohm Capacitor Reserve I", "355800": "Low Throughput Field Stabilizer II", "355801": "LT Insulated Stabilizer Array", "355802": "High Throughput Field Stabilizer I", "355803": "HT Linear Flux Stabilizer", "355804": "High Throughput Field Stabilizer II", "355805": "HT Insulated Stabilizer Array", "355807": "Calibration Subsystem", "355808": "Routine Calibration Subsystem", "355809": "Tolerant Calibration Subsystem", "355810": "'Cirrus' Calibration Subsystem", "355811": "Militia Field Stabilizer I", "355812": "EK-A2 Breach Mass Driver", "4955": "Micro F-RX Prototype Capacitor Boost", "4957": "Micro Brief Capacitor Overcharge I", "4959": "Micro Electrochemical Capacitor Booster I", "4961": "Micro Tapered Capacitor Infusion I", "355814": "Core Breach Mass Driver", "355815": "Boundless Assault Mass Driver", "5007": "Small F-RX Prototype Capacitor Boost", "5009": "Small Brief Capacitor Overcharge I", "5011": "Small Electrochemical Capacitor Booster I", "5013": "Small Tapered Capacitor Infusion I", "5047": "Heavy F-RX Prototype Capacitor Boost", "5049": "Heavy Brief Capacitor Overcharge I", "5051": "Heavy Electrochemical Capacitor Booster I", "5053": "Heavy Tapered Capacitor Infusion I", "5087": "Partial E95a Power Conduit", "5089": "Murky Energy Transmitter I", "5091": "'Regard' Power Projector", "5093": "Asymmetric Energy Succor I", "5135": "E5 Prototype Energy Vampire", "5137": "Small 'Knave' Energy Drain", "5139": "Small Diminishing Power System Drain I", "5141": "Small 'Ghoul' Energy Siphon I", "355844": "20GJ Compressed Particle Cannon", "355880": "ST-201 Cycled Missile Launcher", "354789": "Large Blaster Installation", "5175": "Gatling Modal Laser I", "5177": "Gatling Afocal Maser I", "5179": "Gatling Modulated Energy Beam I", "5181": "Gatling Anode Particle Stream I", "354790": "Small Blaster Installation", "5215": "Dual Modal Pulse Laser I", "5217": "Dual Afocal Pulse Maser I", "5219": "Dual Modulated Pulse Energy Beam I", "5221": "Dual Anode Pulse Particle Stream I", "354791": "Large CA Railgun Installation", "5231": "EP-R Argon Ion Basic Excavation Pulse", "5233": "Single Diode Basic Mining Laser", "5235": "Xenon Basic Drilling Beam", "5237": "Rubin Basic Particle Bore Stream", "5239": "EP-S Gaussian Excavation Pulse", "5241": "Dual Diode Mining Laser I", "5243": "XeCl Drilling Beam I", "5245": "Cu Vapor Particle Bore Stream I", "354792": "Small CA Railgun Installation", "355863": "Specialist Shotgun", "355864": "K5 Specialist Shotgun", "355865": "Duvolle Specialist Shotgun", "5279": "F-23 Reciprocal Sensor Cluster Link", "5280": "Connected Scanning CPU Uplink", "5281": "Coadjunct Linked Sensor Array I", "5282": "Linked Sensor Network", "354793": "Large GA Railgun Installation", "5299": "Low Frequency Sensor Suppressor I", "5300": "Indirect Scanning Dampening Unit I", "5301": "Kapteyn Sensor Array Inhibitor I", "5302": "Phased Muon Sensor Disruptor I", "5319": "F-392 Baker Nunn Tracking Disruptor I", "5320": "Balmer Series Tracking Disruptor I", "5321": "'Abandon' Tracking Disruptor I", "5322": "DDO Photometry Tracking Disruptor I", "5339": "F-293 Nutation Target Coupling", "5340": "Phase Switching Targeting Nexus", "5341": "'Prayer' Targeting Annex I", "5342": "Alfven Surface Targeting Annex I", "355877": "20GJ Regulated Railgun", "355878": "AT-201 Cycled Missile Launcher", "355879": "XT-201 Cycled Missile Launcher", "5359": "1Z-3 Subversive ECM Eruption", "5361": "'Deluge' ECM Burst I", "5363": "'Rash' ECM Emission I", "5365": "'Cetus' ECM Shockwave I", "355881": "AT-1 Cycled Missile Launcher", "355882": "XT-1 Cycled Missile Launcher", "355883": "ST-1 Cycled Missile Launcher", "5399": "J5 Prototype Warp Disruptor I", "5401": "Fleeting Warp Disruptor I", "5403": "Faint Warp Disruptor I", "5405": "Initiated Warp Disruptor I", "5439": "J5b Phased Prototype Warp Scrambler I", "5441": "Fleeting Progressive Warp Scrambler I", "5443": "Faint Epsilon Warp Scrambler I", "5445": "Initiated Harmonic Warp Scrambler I", "355895": "HP Multiphasic Bolt Array I", "355896": "Heavy Payload Control System II", "5479": "Marked Modified SS Expanded Cargo", "5481": "Partial Hull Conversion Expanded Cargo", "5483": "Alpha Hull Mod Expanded Cargo", "5485": "Type-E Altered SS Expanded Cargo", "5487": "Mark I Modified SS Expanded Cargo", "5489": "Local Hull Conversion Expanded Cargo I", "5491": "Beta Hull Mod Expanded Cargo", "5493": "Type-D Altered SS Expanded Cargo", "5519": "Marked Modified SS Inertial Stabilizers", "5521": "Partial Hull Conversion Inertial Stabilizers", "5523": "Alpha Hull Mod Inertial Stabilizers", "5525": "Type-E Altered SS Inertial Stabilizers", "5527": "Mark I Modified SS Inertial Stabilizers", "5529": "Local Hull Conversion Inertial Stabilizers I", "5531": "Beta Hull Mod Inertial Stabilizers", "5533": "Type-D Altered SS Inertial Stabilizers", "5559": "Partial Hull Conversion Nanofiber Structure", "5561": "Local Hull Conversion Nanofiber Structure I", "355894": "Heavy Payload Control System I", "5591": "Alpha Hull Mod Nanofiber Structure", "5593": "Type-E Altered SS Nanofiber Structure", "5595": "Marked Modified SS Nanofiber Structure", "5597": "Beta Hull Mod Nanofiber Structure", "5599": "Type-D Altered SS Nanofiber Structure", "5601": "Mark I Modified SS Nanofiber Structure", "5611": "Partial Hull Conversion Overdrive Injector", "5613": "Alpha Hull Mod Overdrive Injector", "5615": "Type-E Altered SS Overdrive Injector", "5617": "Marked Modified SS Overdrive Injector", "5627": "Local Hull Conversion Overdrive Injector I", "5629": "Beta Hull Mod Overdrive Injector", "5631": "Type-D Altered SS Overdrive Injector", "5633": "Mark I Modified SS Overdrive Injector", "5643": "Local Hull Conversion Reinforced Bulkheads I", "5645": "Beta Hull Mod Reinforced Bulkheads", "5647": "Type-D Altered SS Reinforced Bulkheads", "5649": "Mark I Modified SS Reinforced Bulkheads", "5675": "Partial Hull Conversion Reinforced Bulkheads", "5677": "Alpha Hull Mod Reinforced Bulkheads", "5679": "Type-E Altered SS Reinforced Bulkheads", "5681": "Marked Modified SS Reinforced Bulkheads", "5683": "Medium Inefficient Hull Repair Unit", "5693": "Small Inefficient Hull Repair Unit", "5697": "Large Inefficient Hull Repair Unit", "5719": "Medium 'Hope' Hull Reconstructor I", "5721": "Medium Automated Structural Restoration", "5723": "Medium I-b Polarized Structural Regenerator", "5743": "Small 'Hope' Hull Reconstructor I", "5745": "Small Automated Structural Restoration", "5747": "Small I-b Polarized Structural Regenerator", "5755": "Large 'Hope' Hull Reconstructor I", "5757": "Large Automated Structural Restoration", "5759": "Large I-b Polarized Structural Regenerator", "355949": "Handheld weapon needs a name", "5829": "GLFF Containment Field", "5831": "Interior Force Field Array", "5833": "Systematic Damage Control", "5835": "F84 Local Damage System", "5837": "Pseudoelectron Containment Field I", "5839": "Internal Force Field Array I", "5841": "Emergency Damage Control I", "5843": "F85 Peripheral Damage System I", "5845": "Heat Exhaust System", "5846": "Thermal Exhaust System I", "5849": "Extruded Heat Sink I", "355962": "Missile Launcher", "5854": "Stamped Heat Sink", "5855": "'Boreas' Coolant System", "5856": "C3S Convection Thermal Radiator", "5857": "'Skadi' Coolant System I", "5858": "C4S Coiled Circuit Thermal Radiator", "5865": "Indirect Target Acquisition I", "5867": "Passive Targeting Array I", "5869": "Suppressed Targeting System I", "5871": "41F Veiled Targeting Unit", "5913": "Hydraulic Stabilization Actuator", "5915": "Lateral Gyrostabilizer", "5917": "Stabilized Weapon Mounts", "5919": "F-M2 Weapon Inertial Suspensor", "987": "Mammoth Blueprint", "5929": "Pneumatic Stabilization Actuator I", "5931": "Cross-Lateral Gyrostabilizer I", "5933": "Counterbalanced Weapon Mounts I", "5935": "F-M3 Munition Inertial Suspensor", "355976": "Universal Voice Transmitter (1-Day)", "355977": "Universal Voice Transmitter (3-Day)", "5945": "Prototype 100MN Microwarpdrive I", "355978": "Universal Voice Transmitter (7-Day)", "5955": "Experimental 100MN Afterburner I", "5971": "Upgraded 1MN Microwarpdrive I", "5973": "Limited 1MN Microwarpdrive I", "5975": "Experimental 10MN Microwarpdrive I", "6001": "Limited 1MN Afterburner I", "6003": "Experimental 1MN Afterburner I", "6005": "Experimental 10MN Afterburner I", "3474": "Inherent Implants 'Noble' Mechanic MC-804", "6041": "Hostile Target Acquisition I", "6043": "'Recusant' Hostile Targeting Array I", "6045": "Responsive Auto-Targeting System I", "6047": "Automated Targeting Unit I", "6073": "Medium Ld-Acid Capacitor Battery I", "6083": "Medium Peroxide Capacitor Power Cell", "6097": "Medium Ohm Capacitor Reserve I", "6111": "Medium F-4a Ld-Sulfate Capacitor Charge Unit", "6129": "Surface Cargo Scanner I", "6131": "Prototype Freight Sensors", "6133": "Interior Type-E Cargo Identifier", "6135": "PL-0 Shipment Probe", "356012": "Null Cannon", "6157": "Supplemental Scanning CPU I", "6158": "Prototype Sensor Booster", "6159": "Alumel-Wired Sensor Augmentation", "6160": "F-90 Positional Sensor Subroutines", "6173": "Optical Tracking Computer I", "6174": "Monopulse Tracking Mechanism I", "6175": "'Orion' Tracking CPU I", "6176": "F-12 Nonlinear Tracking Processor", "1297": "Thermic Plating II Blueprint", "6193": "Emergency Magnetometric Scanners", "6194": "Emergency Multi-Frequency Scanners", "6195": "Reserve Gravimetric Scanners", "6199": "Reserve LADAR Scanners", "6202": "Emergency RADAR Scanners", "6203": "Reserve Magnetometric Scanners", "6207": "Reserve Multi-Frequency Scanners", "6212": "Reserve RADAR Scanners", "6216": "Emergency LADAR Scanners", "6217": "Emergency Gravimetric Scanners", "6218": "Protected Gravimetric Backup Cluster I", "6222": "Protected LADAR Backup Cluster I", "6225": "Sealed RADAR Backup Cluster", "6226": "Protected Magnetometric Backup Cluster I", "6230": "Protected Multi-Frequency Backup Cluster I", "6234": "Protected RADAR Backup Cluster I", "6238": "Sealed Magnetometric Backup Cluster", "6239": "Sealed Multi-Frequency Backup Cluster", "6241": "Sealed LADAR Backup Cluster", "6242": "Sealed Gravimetric Backup Cluster", "6243": "Surrogate Gravimetric Reserve Array I", "6244": "F-43 Repetitive Gravimetric Backup Sensors", "6251": "Surrogate LADAR Reserve Array I", "6252": "F-43 Repetitive LADAR Backup Sensors", "6257": "Surplus RADAR Reserve Array", "6258": "F-42 Reiterative RADAR Backup Sensors", "6259": "Surrogate Magnetometric Reserve Array I", "6260": "F-43 Repetitive Magnetometric Backup Sensors", "6267": "Surrogate Multi-Frequency Reserve Array I", "6268": "F-43 Repetitive Multi-Frequency Backup Sensors", "356032": "'Primordial' Assault Type-I", "6275": "Surrogate RADAR Reserve Array I", "6276": "F-43 Repetitive RADAR Backup Sensors", "6283": "Surplus Magnetometric Reserve Array", "6284": "F-42 Reiterative Magnetometric Backup Sensors", "6285": "Surplus Multi-Frequency Reserve Array", "6286": "F-42 Reiterative Multi-Frequency Backup Sensors", "6289": "Surplus LADAR Reserve Array", "6290": "F-42 Reiterative LADAR Backup Sensors", "6291": "Surplus Gravimetric Reserve Array", "6292": "F-42 Reiterative Gravimetric Backup Sensors", "6293": "Wavelength Signal Enhancer I", "6294": "'Mendicant' Signal Booster I", "6295": "Type-D Attenuation Signal Augmentation", "6296": "F-89 Synchronized Signal Amplifier", "354827": "Anti-MCC Turret Console", "6309": "Amplitude Signal Enhancer", "6310": "'Acolyth' Signal Booster", "6311": "Type-E Discriminative Signal Augmentation", "6312": "F-90 Positional Signal Amplifier", "6321": "Beam Parallax Tracking Program", "6322": "Beta-Nought Tracking Mode", "6323": "Azimuth Descalloping Tracking Enhancer", "6324": "F-AQ Delay-Line Scan Tracking Subroutines", "6325": "Fourier Transform Tracking Program", "6326": "Sigma-Nought Tracking Mode I", "6327": "Auto-Gain Control Tracking Enhancer I", "6328": "F-aQ Phase Code Tracking Subroutines", "356042": "Krin's SIN-11 Assault Rifle", "353737": "'Void' Kaalakiota AV Grenade", "211": "Inferno Light Missile", "356044": "Cala's MK-33 Submachine Gun", "356046": "Gastun's BRN-50 Forge Gun", "353738": "'Sigil' Wiyrkomi AV Grenade", "356048": "Thale's TAR-07 Sniper Rifle", "353183": "CBR-112 Specialist Swarm Launcher", "356056": "'Quafe' Assault A-Series", "356058": "'Quafe' Assault vk.0", "356059": "'Quafe' Scout Type-I", "6437": "Small C5-L Emergency Shield Overload I", "6439": "Small Neutron Saturation Injector I", "6441": "Small Clarity Ward Booster I", "6443": "Small Converse Deflection Catalyzer", "1075": "Ship Scanner I Blueprint", "353741": "Militia Locus Grenade", "356065": "'Quafe' Scout vk.0", "6485": "M51 Iterative Shield Regenerator", "6487": "Supplemental Screen Generator I", "353742": "Militia Shield Extender", "6489": "'Benefactor' Ward Reconstructor", "6491": "Passive Barrier Compensator I", "216": "Tungsten Charge S", "356069": "'CD-41' Myron", "353988": "Heavy Remote Efficient Armor Repair Unit", "356072": "'AI-102' Madrugar", "353743": "Militia Shield Recharger", "356073": "'HC-130' Gunnlogi", "6525": "Ta3 Perfunctory Vessel Probe", "6527": "Rudimentary Ship Scanner I", "6529": "Speculative Ship Identifier I", "6531": "Practical Type-E Ship Probe", "356077": "'LG-88' Methana", "357018": "Flux Proximity Explosive", "6567": "ML-3 Amphilotite Mining Probe", "6569": "Residual Survey Scanner I", "6571": "Rock-Scanning Sensor Array I", "6573": "'Dactyl' Type-E Asteroid Analyzer", "1099": "Small Armor Repairer I Blueprint", "6631": "Dual Modal Light Laser I", "6633": "Dual Afocal Light Maser I", "6635": "Dual Modulated Light Energy Beam I", "6637": "Dual Anode Light Particle Stream I", "221": "Plutonium Charge S", "353748": "Custom Repair Tool", "6671": "Small Focused Modal Pulse Laser I", "6673": "Small Focused Afocal Pulse Maser I", "6675": "Small Focused Modulated Pulse Energy Beam I", "6677": "Small Focused Anode Pulse Particle Stream I", "353749": "Volatile Locus Grenade", "6715": "Small Focused Modal Laser I", "6717": "Small Focused Afocal Maser I", "6719": "Small Focused Modulated Energy Beam I", "6721": "Small Focused Anode Particle Stream I", "356107": "'Sever' Assault Type-I", "356108": "'Valor' Heavy Type-I", "356109": "'Raven' Heavy Type-I", "1123": "Dual 250mm Railgun I Blueprint", "356110": "'Sever' Heavy Type-I", "356111": "'Valor' Logistics Type-I", "356112": "'Raven' Logistics Type-I", "6757": "Quad Modal Light Laser I", "6759": "Quad Afocal Light Maser I", "6761": "Quad Modulated Light Energy Beam I", "6763": "Quad Anode Light Particle Stream I", "356114": "'Sever' Scout Type-I", "356115": "'Daemon' Shotgun", "356116": "'Carnifax' Locus Grenade", "6805": "Focused Modal Pulse Laser I", "6807": "Focused Afocal Pulse Maser I", "6809": "Focused Modulated Pulse Energy Beam I", "6811": "Focused Anode Pulse Particle Stream I", "6859": "Focused Modal Medium Laser I", "6861": "Focused Afocal Medium Maser I", "6863": "Focused Modulated Medium Energy Beam I", "6865": "Focused Anode Medium Particle Stream I", "6919": "Heavy Modal Pulse Laser I", "6921": "Heavy Afocal Pulse Maser I", "6923": "Heavy Modulated Pulse Energy Beam I", "6925": "Heavy Anode Pulse Particle Stream I", "6959": "Heavy Modal Laser I", "6961": "Heavy Afocal Maser I", "6963": "Heavy Modulated Energy Beam I", "6965": "Heavy Anode Particle Stream I", "6999": "Dual Heavy Modal Pulse Laser I", "7001": "Dual Heavy Afocal Pulse Maser I", "7003": "Dual Heavy Modulated Pulse Energy Beam I", "7005": "Dual Heavy Anode Pulse Particle Stream I", "354851": "Defense Relay ", "1171": "Microwave L Blueprint", "353760": "Scout vk.0", "7043": "Dual Modal Heavy Laser I", "7045": "Dual Afocal Heavy Maser I", "7047": "Dual Modulated Heavy Energy Beam I", "7049": "Dual Anode Heavy Particle Stream I", "7083": "Mega Modal Pulse Laser I", "7085": "Mega Afocal Pulse Maser I", "7087": "Mega Modulated Pulse Energy Beam I", "7089": "Mega Anode Pulse Particle Stream I", "353763": "Assault A-Series", "7123": "Mega Modal Laser I", "7125": "Mega Afocal Maser I", "7127": "Mega Modulated Energy Beam I", "7131": "Mega Anode Particle Stream I", "353764": "Assault vk.0", "7167": "Tachyon Modal Laser I", "7169": "Tachyon Afocal Maser I", "7171": "Tachyon Modulated Energy Beam I", "7173": "Tachyon Anode Particle Stream I", "7217": "Spot Pulsing ECCM I", "7218": "Piercing ECCM Emitter I", "7219": "Scattering ECCM Projector I", "7220": "Phased Muon ECCM Caster I", "353767": "Heavy vk.0", "7247": "75mm Prototype Gauss Gun", "7249": "75mm 'Scout' Accelerator Cannon", "7251": "75mm Carbide Railgun I", "7253": "75mm Compressed Coil Gun I", "353768": "Logistics A-Series", "7287": "150mm Prototype Gauss Gun", "7289": "150mm 'Scout' Accelerator Cannon", "7291": "150mm Carbide Railgun I", "7293": "150mm Compressed Coil Gun I", "353769": "Logistics vk.0", "356207": "Chakram", "7327": "Dual 150mm Prototype Gauss Gun", "7329": "Dual 150mm 'Scout' Accelerator Cannon", "7331": "Dual 150mm Carbide Railgun I", "7333": "Dual 150mm Compressed Coil Gun I", "356211": "Kubera", "356214": "Anti-MCC Turret", "7367": "250mm Prototype Gauss Gun", "7369": "250mm 'Scout' Accelerator Cannon", "7371": "250mm Carbide Railgun I", "7373": "250mm Compressed Coil Gun I", "1231": "Hemorphite", "7407": "Dual 250mm Prototype Gauss Gun", "7409": "Dual 250mm 'Scout' Accelerator Cannon", "7411": "Dual 250mm Carbide Railgun I", "7413": "Dual 250mm Compressed Coil Gun I", "1237": "Overdrive Injector System II Blueprint", "7447": "425mm Prototype Gauss Gun", "7449": "425mm 'Scout' Accelerator Cannon", "7451": "425mm Carbide Railgun I", "7453": "425mm Compressed Coil Gun I", "7487": "Modal Light Electron Particle Accelerator I", "7489": "Limited Light Electron Blaster I", "7491": "Regulated Light Electron Phase Cannon I", "7493": "Anode Light Electron Particle Cannon I", "354867": "Squad - Armor Bonus Test", "7535": "Modal Light Ion Particle Accelerator I", "7537": "Limited Light Ion Blaster I", "7539": "Regulated Light Ion Phase Cannon I", "7541": "Anode Light Ion Particle Cannon I", "7579": "Modal Light Neutron Particle Accelerator I", "7581": "Limited Light Neutron Blaster I", "7583": "Regulated Light Neutron Phase Cannon I", "7585": "Anode Light Neutron Particle Cannon I", "354870": "Squad - Speed Test", "1267": "Explosive Plating II Blueprint", "7619": "Modal Electron Particle Accelerator I", "7621": "Limited Electron Blaster I", "7623": "Regulated Electron Phase Cannon I", "7625": "Anode Electron Particle Cannon I", "1275": "Layered Plating I Blueprint", "7663": "Modal Ion Particle Accelerator I", "7665": "Limited Ion Blaster I", "7667": "Regulated Ion Phase Cannon I", "7669": "Anode Ion Particle Cannon I", "355964": "Missile Installation", "7703": "Modal Neutron Particle Accelerator I", "7705": "Limited Neutron Blaster I", "7707": "Regulated Neutron Phase Cannon I", "7709": "Anode Neutron Particle Cannon I", "353783": "80GJ Particle Cannon", "7743": "Modal Mega Electron Particle Accelerator I", "7745": "Limited Electron Blaster Cannon I", "7747": "Regulated Mega Electron Phase Cannon I", "7749": "Anode Mega Electron Particle Cannon I", "7783": "Modal Mega Neutron Particle Accelerator I", "7785": "Limited Mega Neutron Blaster I", "7787": "Regulated Mega Neutron Phase Cannon I", "7789": "Anode Mega Neutron Particle Cannon I", "7827": "Modal Mega Ion Particle Accelerator I", "7829": "Limited Mega Ion Blaster I", "7831": "Regulated Mega Ion Phase Cannon I", "7833": "Anode Mega Ion Particle Cannon I", "7867": "Supplemental Ladar ECCM Scanning Array I", "7869": "Supplemental Gravimetric ECCM Scanning Array I", "7870": "Supplemental Omni ECCM Scanning Array I", "7887": "Supplemental Radar ECCM Scanning Array I", "7889": "Supplemental Magnetometric ECCM Scanning Array I", "1315": "Basic Expanded Cargohold", "7892": "Prototype ECCM Radar Sensor Cluster", "7893": "Prototype ECCM Ladar Sensor Cluster", "7895": "Prototype ECCM Gravimetric Sensor Cluster", "7896": "Prototype ECCM Omni Sensor Cluster", "356305": "K-CR Triage Nanohive", "7914": "Prototype ECCM Magnetometric Sensor Cluster", "7917": "Alumel Radar ECCM Sensor Array I", "7918": "Alumel Ladar ECCM Sensor Array I", "7922": "Alumel Gravimetric ECCM Sensor Array I", "7926": "Alumel Omni ECCM Sensor Array I", "7937": "Alumel Magnetometric ECCM Sensor Array I", "7948": "Gravimetric Positional ECCM Sensor System I", "7964": "Radar Positional ECCM Sensor System I", "7965": "Omni Positional ECCM Sensor System I", "7966": "Ladar Positional ECCM Sensor System I", "7970": "Magnetometric Positional ECCM Sensor System I", "7993": "Experimental TE-2100 Light Missile Launcher", "7997": "XR-3200 Heavy Missile Bay", "1333": "Reinforced Bulkheads I", "8001": "Experimental ZW-4100 Torpedo Launcher", "8007": "Experimental SV-2000 Rapid Light Missile Launcher", "8023": "Upgraded 'Malkuth' Rapid Light Missile Launcher", "8025": "Limited 'Limos' Rapid Light Missile Launcher", "8027": "Prototype 'Arbalest' Rapid Light Missile Launcher", "356332": "Anti-MCC Turret", "356333": "Anti-MCC Turret", "356334": "Anti-MCC Turret", "8089": "Upgraded 'Malkuth' Light Missile Launcher", "8091": "Limited 'Limos' Light Missile Launcher", "8093": "Prototype 'Arbalest' Light Missile Launcher", "356336": "Null Cannon", "8101": "'Malkuth' Heavy Missile Launcher I", "8103": "Advanced 'Limos' Heavy Missile Bay I", "8105": "'Arbalest' Heavy Missile Launcher", "1351": "Basic Reactor Control Unit", "8113": "Upgraded 'Malkuth' Torpedo Launcher", "8115": "Limited 'Limos' Torpedo Launcher", "8117": "Prototype 'Arbalest' Torpedo Launcher", "1353": "Reactor Control Unit I", "8131": "Local Power Plant Manager: Capacitor Flux I", "355979": "Universal Voice Transmitter (30-Day)", "8133": "Beta Reactor Control: Capacitor Flux I", "8135": "Type-D Power Core Modification: Capacitor Flux", "8137": "Mark I Generator Refitting: Capacitor Flux", "351615": "60mm Reinforced Steel Plates", "351614": "120mm Reinforced Steel Plates", "8163": "Partial Power Plant Manager: Capacitor Flux", "8165": "Alpha Reactor Control: Capacitor Flux", "8167": "Type-E Power Core Modification: Capacitor Flux", "8169": "Marked Generator Refitting: Capacitor Flux", "8171": "Local Power Plant Manager: Capacity Power Relay I", "8173": "Beta Reactor Control: Capacitor Power Relay I", "8175": "Type-D Power Core Modification: Capacitor Power Relay", "8177": "Mark I Generator Refitting: Capacitor Power Relay", "8203": "Partial Power Plant Manager: Capacity Power Relay", "8205": "Alpha Reactor Control: Capacitor Power Relay", "8207": "Type-E Power Core Modification: Capacitor Power Relay", "8209": "Marked Generator Refitting: Capacitor Power Relay", "8211": "Partial Power Plant Manager: Diagnostic System", "8213": "Alpha Reactor Control: Diagnostic System", "8215": "Type-E Power Core Modification: Diagnostic System", "8217": "Marked Generator Refitting: Diagnostic System", "8219": "Local Power Plant Manager: Diagnostic System I", "8221": "Beta Reactor Control: Diagnostic System I", "8223": "Type-D Power Core Modification: Diagnostic System", "8225": "Mark I Generator Refitting: Diagnostic System", "8251": "Partial Power Plant Manager: Reaction Control", "8253": "Alpha Reactor Control: Reaction Control", "8255": "Type-E Power Core Modification: Reaction Control", "8257": "Marked Generator Refitting: Reaction Control", "8259": "Local Power Plant Manager: Reaction Control I", "8261": "Beta Reactor Control: Reaction Control I", "8263": "Type-D Power Core Modification: Reaction Control", "8265": "Mark I Generator Refitting: Reaction Control", "8291": "Local Power Plant Manager: Reaction Shield Flux I", "8293": "Beta Reactor Control: Shield Flux I", "8295": "Type-D Power Core Modification: Shield Flux", "8297": "Mark I Generator Refitting: Shield Flux", "8323": "Partial Power Plant Manager: Shield Flux", "8325": "Alpha Reactor Shield Flux", "8327": "Type-E Power Core Modification: Shield Flux", "8329": "Marked Generator Refitting: Shield Flux", "8331": "Local Power Plant Manager: Reaction Shield Power Relay I", "8333": "Beta Reactor Control: Shield Power Relay I", "8335": "Type-D Power Core Modification: Shield Power Relay", "8337": "Mark I Generator Refitting: Shield Power Relay", "8339": "Partial Power Plant Manager: Shield Power Relay", "8341": "Alpha Reactor Shield Power Relay", "8343": "Type-E Power Core Modification: Shield Power Relay", "8345": "Marked Generator Refitting: Shield Power Relay", "8387": "Micro Subordinate Screen Stabilizer I", "8397": "Medium Subordinate Screen Stabilizer I", "8401": "Small Subordinate Screen Stabilizer I", "8409": "Large Subordinate Screen Stabilizer I", "8419": "Large Azeotropic Ward Salubrity I", "8427": "Small Azeotropic Ward Salubrity I", "1405": "Inertia Stabilizers II", "8433": "Medium Azeotropic Ward Salubrity I", "8437": "Micro Azeotropic Ward Salubrity I", "8465": "Micro Supplemental Barrier Emitter I", "353808": "Baloch", "8477": "Medium Supplemental Barrier Emitter I", "8481": "Small Supplemental Barrier Emitter I", "8489": "Large Supplemental Barrier Emitter I", "8505": "Micro F-S9 Regolith Shield Induction", "8517": "Medium F-S9 Regolith Shield Induction", "8521": "Small F-S9 Regolith Shield Induction", "8529": "Large F-S9 Regolith Shield Induction", "8531": "Small Murky Shield Screen Transmitter I", "8533": "Small 'Atonement' Ward Projector", "8535": "Small Asymmetric Barrier Transpositioner I", "8537": "Small S95a Partial Shield Transporter", "1423": "Shield Power Relay II Blueprint", "8579": "Medium Murky Shield Screen Transmitter I", "8581": "Medium 'Atonement' Ward Projector", "8583": "Medium Asymmetric Barrier Transpositioner I", "8585": "Medium S95a Partial Shield Transporter", "8627": "Micro Murky Shield Screen Transmitter I", "8629": "Micro 'Atonement' Ward Projector", "8631": "Micro Asymmetric Barrier Transpositioner I", "8633": "Micro S95a Partial Shield Transporter", "8635": "Large Murky Shield Screen Transmitter I", "8637": "Large 'Atonement' Ward Projector", "8639": "Large Asymmetric Barrier Transpositioner I", "8641": "Large S95a Partial Shield Transporter", "353186": "'Scramkit' CBR-112 Breach Swarm Launcher", "354906": "Basic Sidearm Damage Modifier", "1447": "Capacitor Power Relay II", "8743": "Nanomechanical CPU Enhancer", "8744": "Nanoelectrical Co-Processor", "8745": "Photonic CPU Enhancer", "8746": "Quantum Co-Processor", "8747": "Nanomechanical CPU Enhancer I", "8748": "Nanoelectrical Co-Processor I", "8749": "Photonic CPU Enhancer I", "8750": "Quantum Co-Processor I", "8759": "125mm Light 'Scout' Autocannon I", "353818": "AT-201 Missile Launcher", "8785": "125mm Light Carbine Repeating Cannon I", "8787": "125mm Light Gallium Machine Gun", "8789": "125mm Light Prototype Automatic Cannon", "8815": "150mm Light 'Scout' Autocannon I", "8817": "150mm Light Carbine Repeating Cannon I", "8819": "150mm Light Gallium Machine Gun", "8821": "150mm Light Prototype Automatic Cannon", "356458": "Sagaris Classic", "8863": "200mm Light 'Scout' Autocannon I", "8865": "200mm Light Carbine Repeating Cannon I", "8867": "200mm Light Gallium Machine Gun", "8869": "200mm Light Prototype Automatic Cannon", "8903": "250mm Light 'Scout' Artillery I", "8905": "250mm Light Carbine Howitzer I", "8907": "250mm Light Gallium Cannon", "8909": "250mm Light Prototype Siege Cannon", "356473": "Conscript Tracking Computer I", "354915": "'Chord' Basic Cardiac Stimulant", "354916": "'Macro' Enhanced Cardiac Stimulant", "354917": "'Spiral' Complex Cardiac Stimulant", "356495": "G-11 Nonlinear Tracking Processor", "356496": "Conscript Tracking Computer II", "356497": "'Delphi' Tracking CPU", "356498": "Delta-Nought Tracking Mode", "9071": "Dual 180mm 'Scout' Autocannon I", "9073": "Dual 180mm Carbine Repeating Cannon I", "356499": "Conscript Tracking Enhancer II", "9091": "Dual 180mm Gallium Machine Gun", "9093": "Dual 180mm Prototype Automatic Cannon", "9127": "220mm Medium 'Scout' Autocannon I", "9129": "220mm Medium Carbine Repeating Cannon I", "9131": "220mm Medium Gallium Machine Gun", "9133": "220mm Medium Prototype Automatic Cannon", "9135": "425mm Medium 'Scout' Autocannon I", "9137": "425mm Medium Carbine Repeating Cannon I", "9139": "425mm Medium Gallium Machine Gun", "9141": "425mm Medium Prototype Automatic Cannon", "356514": "Handheld weapon needs a name", "356515": "Handheld weapon needs a name", "356516": "Handheld weapon needs a name", "9207": "650mm Medium 'Scout' Artillery I", "9209": "650mm Medium Carbine Howitzer I", "9211": "650mm Medium Gallium Cannon", "9213": "650mm Medium Prototype Siege Cannon", "354924": "'Vigil' Complex Myofibril Stimulant", "1537": "Basic Power Diagnostic System", "356526": "Basic Range Amplifier", "9247": "Dual 425mm 'Scout' Autocannon I", "9249": "Dual 425mm Carbine Repeating Cannon I", "9251": "Dual 425mm Gallium Machine Gun", "9253": "Dual 425mm Prototype Automatic Cannon", "9287": "Dual 650mm 'Scout' Repeating Artillery I", "9289": "Dual 650mm Carbine Repeating Howitzer I", "9291": "Dual 650mm Gallium Repeating Cannon", "9293": "Dual 650mm Prototype Repeating Siege Cannon", "1549": "Small Proton Smartbomb II", "9327": "800mm Heavy 'Scout' Repeating Artillery I", "9329": "800mm Heavy Carbine Repeating Howitzer I", "9331": "800mm Heavy Gallium Repeating Cannon", "9333": "800mm Heavy Prototype Repeating Siege Cannon", "3585": "Mangled Sansha Codebreaker", "9367": "1200mm Heavy 'Scout' Artillery I", "9369": "1200mm Heavy Carbine Howitzer I", "9371": "1200mm Heavy Gallium Cannon", "9377": "1200mm Heavy Prototype Siege Cannon", "9411": "280mm 'Scout' Artillery I", "9413": "280mm Carbine Howitzer I", "9415": "280mm Gallium Cannon", "9417": "280mm Prototype Siege Cannon", "356559": "Assault - Medic", "9451": "720mm 'Scout' Artillery I", "9453": "720mm Carbine Howitzer I", "9455": "720mm Gallium Cannon", "9457": "720mm Prototype Siege Cannon", "356566": "'Auga' Complex Precision Enhancer", "9491": "1400mm 'Scout' Artillery I", "9493": "1400mm Carbine Howitzer I", "9495": "1400mm Gallium Cannon", "9497": "1400mm Prototype Siege Cannon", "9518": "Initiated Ion Field ECM I", "9519": "FZ-3 Subversive Spatial Destabilizer ECM", "9520": "'Penumbra' White Noise ECM", "9521": "Initiated Multispectral ECM I", "9522": "Faint Phase Inversion ECM I", "354935": "Assault - Anti-Armor", "9556": "Upgraded Explosive Deflection Amplifier I", "9562": "Supplemental EM Ward Amplifier", "9566": "Supplemental Thermic Dissipation Amplifier", "9568": "Upgraded Thermic Dissipation Amplifier I", "9570": "Supplemental Kinetic Deflection Amplifier", "9574": "Supplemental Explosive Deflection Amplifier", "9580": "Upgraded EM Ward Amplifier I", "9582": "Upgraded Kinetic Deflection Amplifier I", "9608": "Limited Kinetic Deflection Field I", "9622": "Limited 'Anointed' EM Ward Field", "9632": "Limited Adaptive Invulnerability Field I", "9646": "Limited Explosive Deflection Field I", "9660": "Limited Thermic Dissipation Field I", "9668": "Large Rudimentary Concussion Bomb I", "9670": "Small Rudimentary Concussion Bomb I", "9678": "Large 'Vehemence' Shockwave Charge", "9680": "Small 'Vehemence' Shockwave Charge", "356031": "'Raven' Assault Type-I", "9702": "Micro Rudimentary Concussion Bomb I", "9706": "Micro 'Vehemence' Shockwave Charge", "3597": "Medium Shield Transporter I Blueprint", "9728": "Medium Rudimentary Concussion Bomb I", "9734": "Medium 'Vehemence' Shockwave Charge", "9744": "Small 'Notos' Explosive Charge I", "9750": "Micro 'Notos' Explosive Charge I", "9762": "Medium 'Notos' Explosive Charge I", "9772": "Large 'Notos' Explosive Charge I", "9784": "Small YF-12a Smartbomb", "9790": "Micro YF-12a Smartbomb", "9800": "Medium YF-12a Smartbomb", "9808": "Large YF-12a Smartbomb", "356426": "Nova Knives", "9826": "Carbon", "9828": "Silicon", "9830": "Rocket Fuel", "9832": "Coolant", "9834": "Guidance Systems", "9836": "Consumer Electronics", "9838": "Superconductors", "9840": "Transmitter", "9842": "Miniature Electronics", "9844": "Small Arms", "9846": "Planetary Vehicles", "9848": "Robotics", "9850": "Spirits", "9852": "Tobacco", "9899": "Ocular Filter - Basic", "9941": "Memory Augmentation - Basic", "9942": "Neural Boost - Basic", "9943": "Cybernetic Subprocessor - Basic", "9944": "Magnetic Field Stabilizer I", "9945": "Magnetic Field Stabilizer I Blueprint", "9947": "Standard Crash Booster", "9950": "Standard Blue Pill Booster", "9956": "Social Adaptation Chip - Basic", "9957": "Eifyr and Co. 'Gunslinger' Motion Prediction MR-703", "356040": "'Valor' Scout Type-I", "356041": "'Thale' Scout Type-I", "10039": "Civilian Shield Booster", "10040": "Civilian Shield Booster Blueprint", "10151": "Improved Crash Booster", "10152": "Strong Crash Booster", "10155": "Improved Blue Pill Booster", "10156": "Strong Blue Pill Booster", "10164": "Standard Sooth Sayer Booster", "10165": "Improved Sooth Sayer Booster", "10166": "Strong Sooth Sayer Booster", "10188": "Basic Magnetic Field Stabilizer", "10190": "Magnetic Field Stabilizer II", "10191": "Magnetic Field Stabilizer II Blueprint", "10204": "Zainou 'Deadeye' Sharpshooter ST-903", "10208": "Memory Augmentation - Standard", "10209": "Memory Augmentation - Improved", "10210": "Memory Augmentation - Advanced", "10211": "Memory Augmentation - Elite", "10212": "Neural Boost - Standard", "10213": "Neural Boost - Improved", "10214": "Neural Boost - Advanced", "10215": "Neural Boost - Elite", "10216": "Ocular Filter - Standard", "10217": "Ocular Filter - Improved", "10218": "Ocular Filter - Advanced", "10219": "Ocular Filter - Elite", "10221": "Cybernetic Subprocessor - Standard", "10222": "Cybernetic Subprocessor - Improved", "10223": "Cybernetic Subprocessor - Advanced", "10224": "Cybernetic Subprocessor - Elite", "10225": "Social Adaptation Chip - Standard", "10226": "Social Adaptation Chip - Improved", "10227": "Social Adaptation Chip - Advanced", "10228": "Zainou 'Gnome' Shield Management SM-703", "10244": "Zainou 'Gypsy' Signature Analysis SA-703", "10246": "Mining Drone I", "10247": "Mining Drone I Blueprint", "10250": "Mining Drone II", "10251": "Mining Drone II Blueprint", "10257": "Gallente Administrative Outpost Platform", "10258": "Minmatar Service Outpost Platform", "10260": "Amarr Factory Outpost Platform", "356709": "A-86 Active Scanner", "351253": "Methana", "2906": "250mm Light Artillery Cannon II Blueprint", "356724": "Profile Dampening", "356725": "Sensor Upgrades", "356735": "Breach Type-I", "356736": "Breach A-Series", "356737": "Breach vk.0", "356738": "Insurgent", "356739": "Mauler", "356740": "Spec Ops Type-I", "356741": "Spec Ops A-Series", "356742": "Spec Ops vk.0", "356743": "Hunter", "356744": "Raider", "356751": "Atlas Type-I", "356752": "Atlas A-Series", "356753": "Atlas vk.0", "356754": "Shrike", "356755": "Vorwraith", "356756": "Titan Type-I", "356757": "Titan A-Series", "10629": "Rocket Launcher I", "10630": "Rocket Launcher I Blueprint", "10631": "Rocket Launcher II", "10632": "Rocket Launcher II Blueprint", "356759": "Beholder", "356760": "Vorguardian", "10646": "Training Certificate", "10678": "125mm Railgun I", "10679": "125mm Railgun I Blueprint", "10680": "125mm Railgun II", "10681": "125mm Railgun II Blueprint", "356767": "Omen Type-I", "2035": "Entrapment Array 3", "10688": "125mm 'Scout' Accelerator Cannon", "356768": "Omen A-Series", "10690": "125mm Carbide Railgun I", "10692": "125mm Compressed Coil Gun I", "10694": "125mm Prototype Gauss Gun", "356769": "Omen vk.0", "356770": "Operator", "356771": "Savior", "351310": "ST-1 Missile Launcher", "356772": "Sigma Type-I", "356773": "Sigma A-Series", "356774": "Sigma vk.0", "356775": "Cypher", "356776": "Trojan", "356780": "Shock Type-I", "356781": "Shock A-Series", "356782": "Shock vk.0", "356783": "Spectre Type-I", "356784": "Spectre A-Series", "356785": "Spectre vk.0", "356786": "Berserker", "356787": "Avenger", "356068": "'AG-01' Grimsnes", "356788": "Militia Armor Plates Blueprint", "356789": "Militia Armor Repairer Blueprint", "356790": "Militia Cardiac Stimulant Blueprint", "10836": "Medium Shield Booster I", "10837": "Medium Shield Booster I Blueprint", "10838": "Large Shield Booster I", "10839": "Large Shield Booster I Blueprint", "10840": "X-Large Shield Booster I", "10841": "X-Large Shield Booster I Blueprint", "10842": "X-Large Shield Booster II", "10843": "X-Large Shield Booster II Blueprint", "10850": "Medium Shield Booster II", "10851": "Medium Shield Booster II Blueprint", "10858": "Large Shield Booster II", "10859": "Large Shield Booster II Blueprint", "10866": "Medium Neutron Saturation Injector I", "10868": "Medium Clarity Ward Booster I", "10870": "Medium Converse Deflection Catalyzer", "10872": "Medium C5-L Emergency Shield Overload I", "10874": "Large Neutron Saturation Injector I", "10876": "Large Clarity Ward Booster I", "10878": "Large Converse Deflection Catalyzer", "10880": "Large C5-L Emergency Shield Overload I", "10882": "X-Large Neutron Saturation Injector I", "10884": "X-Large Clarity Ward Booster I", "10886": "X-Large Converse Deflection Catalyzer", "10888": "X-Large C5-L Emergency Shield Overload I", "351354": "Myron", "351355": "Grimsnes", "10998": "Warp Core Stabilizer I", "11011": "Guardian-Vexor", "11012": "Guardian-Vexor Blueprint", "11013": "Drug Contact List", "11014": "Command Processor I", "356075": "'LC-217' Saga", "11017": "Skirmish Warfare Link - Interdiction Maneuvers I", "356828": "'Dren' Heavy Type-I", "11052": "Information Warfare Link - Sensor Integrity I", "356830": "'Dren' Scout Type-I", "11066": "Trinary Data", "11067": "Nugoeihuvi Data Chip", "11068": "Special Delivery", "11069": "Criminal Dog Tag", "11070": "Religious Artifact", "11071": "Battery Cartridge", "11082": "Small Railgun Specialization", "11083": "Small Beam Laser Specialization", "11084": "Small Autocannon Specialization", "11101": "Linear Flux Stabilizer I", "11103": "Insulated Stabilizer Array I", "11105": "Magnetic Vortex Stabilizer I", "11107": "Gauss Field Balancer I", "11109": "Linear Flux Stabilizer", "11111": "Insulated Stabilizer Array", "11113": "Magnetic Vortex Stabilizer", "11115": "Gauss Field Balancer", "3129": "Zainou 'Deadeye' Missile Bombardment MB-704", "11129": "Gallente Shuttle", "11130": "Gallente Shuttle Blueprint", "11132": "Minmatar Shuttle", "11133": "Minmatar Shuttle Blueprint", "11134": "Amarr Shuttle", "11135": "Amarr Shuttle Blueprint", "11172": "Helios", "11173": "Helios Blueprint", "11174": "Keres", "11175": "Keres Blueprint", "11176": "Crow", "11177": "Crow Blueprint", "11178": "Raptor", "11179": "Raptor Blueprint", "11182": "Cheetah", "11183": "Cheetah Blueprint", "11184": "Crusader", "11185": "Crusader Blueprint", "11186": "Malediction", "11187": "Malediction Blueprint", "11188": "Anathema", "11189": "Anathema Blueprint", "11190": "Sentinel", "11191": "Sentinel Blueprint", "11192": "Buzzard", "11193": "Buzzard Blueprint", "11194": "Kitsune", "11195": "Kitsune Blueprint", "11196": "Claw", "11197": "Claw Blueprint", "11198": "Stiletto", "11199": "Stiletto Blueprint", "11200": "Taranis", "11201": "Taranis Blueprint", "11202": "Ares", "11203": "Ares Blueprint", "11207": "Advanced Weapon Upgrades", "11215": "Basic Energized EM Membrane", "11216": "Basic Energized EM Membrane Blueprint", "11217": "Energized EM Membrane I", "11218": "Energized EM Membrane I Blueprint", "11219": "Energized EM Membrane II", "11220": "Energized EM Membrane II Blueprint", "11225": "Basic Energized Explosive Membrane", "11226": "Basic Energized Explosive Membrane Blueprint", "11227": "Energized Explosive Membrane I", "11228": "Energized Explosive Membrane I Blueprint", "11229": "Energized Explosive Membrane II", "11230": "Energized Explosive Membrane II Blueprint", "11235": "Basic Energized Armor Layering Membrane", "11236": "Basic Energized Armor Layering Membrane Blueprint", "11237": "Energized Armor Layering Membrane I", "11238": "Energized Armor Layering Membrane I Blueprint", "11239": "Energized Armor Layering Membrane II", "11240": "Energized Armor Layering Membrane II Blueprint", "11245": "Basic Energized Kinetic Membrane", "11246": "Basic Energized Kinetic Membrane Blueprint", "11247": "Energized Kinetic Membrane I", "11248": "Energized Kinetic Membrane I Blueprint", "11249": "Energized Kinetic Membrane II", "11250": "Energized Kinetic Membrane II Blueprint", "11255": "Basic Energized Thermic Membrane", "11256": "Basic Energized Thermic Membrane Blueprint", "11257": "Energized Thermic Membrane I", "11258": "Energized Thermic Membrane I Blueprint", "11259": "Energized Thermic Membrane II", "11260": "Energized Thermic Membrane II Blueprint", "11265": "Basic Energized Adaptive Nano Membrane", "11266": "Basic Energized Adaptive Nano Membrane Blueprint", "11267": "Energized Adaptive Nano Membrane I", "11268": "Energized Adaptive Nano Membrane I Blueprint", "11269": "Energized Adaptive Nano Membrane II", "11270": "Energized Adaptive Nano Membrane II Blueprint", "356865": "Militia Shield Resistance Amplifier", "11277": "Armor Thermic Hardener I", "11278": "Armor Thermic Hardener I Blueprint", "11279": "1600mm Reinforced Steel Plates I", "11280": "1600mm Reinforced Steel Plates I Blueprint", "11283": "Cap Booster 150", "11284": "Cap Booster 150 Blueprint", "11285": "Cap Booster 200", "11286": "Cap Booster 200 Blueprint", "11287": "Cap Booster 400", "11288": "Cap Booster 400 Blueprint", "11289": "Cap Booster 800", "11290": "Cap Booster 800 Blueprint", "11291": "50mm Reinforced Steel Plates I", "11292": "50mm Reinforced Steel Plates I Blueprint", "11293": "100mm Reinforced Steel Plates I", "11294": "100mm Reinforced Steel Plates I Blueprint", "11295": "200mm Reinforced Steel Plates I", "11296": "200mm Reinforced Steel Plates I Blueprint", "11297": "400mm Reinforced Steel Plates I", "11298": "400mm Reinforced Steel Plates I Blueprint", "11299": "800mm Reinforced Steel Plates I", "11300": "800mm Reinforced Steel Plates I Blueprint", "11301": "Armor EM Hardener I", "11302": "Armor EM Hardener I Blueprint", "11303": "Armor Explosive Hardener I", "11304": "Armor Explosive Hardener I Blueprint", "11305": "Armor Kinetic Hardener I", "11306": "Armor Kinetic Hardener I Blueprint", "11307": "400mm Reinforced Titanium Plates I", "11309": "400mm Reinforced Rolled Tungsten Plates I", "11311": "400mm Reinforced Crystalline Carbonide Plates I", "11313": "400mm Reinforced Nanofiber Plates I", "11315": "800mm Reinforced Titanium Plates I", "11317": "800mm Reinforced Rolled Tungsten Plates I", "11319": "800mm Reinforced Crystalline Carbonide Plates I", "11321": "800mm Reinforced Nanofiber Plates I", "11323": "1600mm Reinforced Titanium Plates I", "11325": "1600mm Reinforced Rolled Tungsten Plates I", "11327": "1600mm Reinforced Crystalline Carbonide Plates I", "11329": "1600mm Reinforced Nanofiber Plates I", "11331": "50mm Reinforced Titanium Plates I", "11333": "50mm Reinforced Rolled Tungsten Plates I", "11335": "50mm Reinforced Crystalline Carbonide Plates I", "11337": "50mm Reinforced Nanofiber Plates I", "11339": "100mm Reinforced Titanium Plates I", "11341": "100mm Reinforced Rolled Tungsten Plates I", "11343": "100mm Reinforced Crystalline Carbonide Plates I", "11345": "100mm Reinforced Nanofiber Plates I", "3651": "Civilian Miner", "11347": "200mm Reinforced Titanium Plates I", "11349": "200mm Reinforced Rolled Tungsten Plates I", "11351": "200mm Reinforced Crystalline Carbonide Plates I", "11353": "200mm Reinforced Nanofiber Plates I", "11355": "Small Remote Armor Repair System I", "11356": "Small Remote Armor Repair System I Blueprint", "11357": "Medium Remote Armor Repair System I", "11358": "Medium Remote Armor Repair System I Blueprint", "11359": "Large Remote Armor Repair System I", "11360": "Large Remote Armor Repair System I Blueprint", "11365": "Vengeance", "11366": "Vengeance Blueprint", "11370": "Prototype Cloaking Device I", "11371": "Wolf", "11372": "Wolf Blueprint", "356882": "F/49 Proximity Explosive", "11377": "Nemesis", "11378": "Nemesis Blueprint", "11379": "Hawk", "11380": "Hawk Blueprint", "11381": "Harpy", "11382": "Harpy Blueprint", "11387": "Hyena", "11388": "Hyena Blueprint", "11393": "Retribution", "11394": "Retribution Blueprint", "11395": "Deep Core Mining", "11396": "Mercoxit", "11399": "Morphite", "11400": "Jaguar", "11401": "Jaguar Blueprint", "11433": "High Energy Physics", "11441": "Plasma Physics", "11442": "Nanite Engineering", "11443": "Hydromagnetic Physics", "11444": "Amarrian Starship Engineering", "11445": "Minmatar Starship Engineering", "11446": "Graviton Physics", "11447": "Laser Physics", "11448": "Electromagnetic Physics", "11449": "Rocket Science", "11450": "Gallentean Starship Engineering", "11451": "Nuclear Physics", "11452": "Mechanical Engineering", "11453": "Electronic Engineering", "11454": "Caldari Starship Engineering", "11455": "Quantum Physics", "11457": "R.Db - Viziam", "11458": "R.Db - Khanid Innovation", "11459": "R.Db - Carthum Conglomerate", "11460": "R.Db - Thukker Mix", "11461": "R.Db - Boundless Creations", "11462": "R.Db - Core Complexion", "11463": "R.Db - Ishukone", "11464": "R.Db - Kaalakiota", "11465": "R.Db - Roden Shipyards", "11466": "R.Db - CreoDron", "11467": "R.Db - Duvolle Labs", "11475": "R.A.M.- Armor/Hull Tech", "11476": "R.A.M.- Ammunition Tech", "11478": "R.A.M.- Starship Tech", "11481": "R.A.M.- Robotics", "11482": "R.A.M.- Energy Tech", "11483": "R.A.M.- Electronics", "11484": "R.A.M.- Shield Tech", "11485": "R.A.M.- Cybernetics", "11486": "R.A.M.- Weapon Tech", "11487": "Astronautic Engineering", "11488": "Huge Secure Container", "11489": "Giant Secure Container", "11496": "Datacore - Defensive Subsystems Engineering", "11508": "Cross of the Sacred Throne Order", "11509": "Onyx Heart of Valor", "11510": "Aidonis Honorary Fellow Medallion", "11511": "Liberty Tattoo of the Minmatar Nation", "11512": "Enlightened Soul Silver Shield", "11528": "Jovian Delegates", "11529": "Molecular Engineering", "11530": "Plasma Thruster", "11531": "Ion Thruster", "11532": "Fusion Thruster", "11533": "Magpulse Thruster", "11534": "Gravimetric Sensor Cluster", "11535": "Magnetometric Sensor Cluster", "11536": "Ladar Sensor Cluster", "11537": "Radar Sensor Cluster", "11538": "Nanomechanical Microprocessor", "11539": "Nanoelectrical Microprocessor", "11540": "Quantum Microprocessor", "11541": "Photon Microprocessor", "11542": "Fernite Carbide Composite Armor Plate", "11543": "Tungsten Carbide Armor Plate", "11544": "Titanium Diborite Armor Plate", "11545": "Crystalline Carbonide Armor Plate", "11547": "Fusion Reactor Unit", "11548": "Nuclear Reactor Unit", "11549": "Antimatter Reactor Unit", "11550": "Graviton Reactor Unit", "11551": "Electrolytic Capacitor Unit", "11552": "Scalar Capacitor Unit", "11553": "Oscillator Capacitor Unit", "11554": "Tesseract Capacitor Unit", "11555": "Deflection Shield Emitter", "11556": "Pulse Shield Emitter", "11557": "Linear Shield Emitter", "11558": "Sustained Shield Emitter", "11561": "Shield Boost Amplifier I", "11562": "Shield Boost Amplifier I Blueprint", "11563": "Micro Auxiliary Power Core I", "11564": "Micro Auxiliary Power Core I Blueprint", "11566": "Thermic Shield Compensation", "11567": "Avatar", "11568": "Avatar Blueprint", "11569": "Armored Warfare Specialist", "11572": "Skirmish Warfare Specialist", "11574": "Wing Command", "11577": "Improved Cloaking Device II", "11578": "Covert Ops Cloaking Device II", "11579": "Cloaking", "11584": "Anchoring", "11585": "Pax Amarria", "11586": "Signed Copy of Pax Amarria", "11587": "Temple Stone", "11588": "Defunct Drone Sensor Module", "11602": "Gallente Federation Transaction And Salary Logs", "11603": "Shiez Kuzaks Ship Database", "11604": "Caldari State Transaction And Salary Logs", "11606": "Amarr Empire Transaction And Salary Logs", "11607": "Minmatar Republic Transaction And Salary Logs", "11608": "Ammatar Transaction and salary logs", "11610": "Nugoeihuvi reports", "11612": "Heat Sink I Blueprint", "11613": "Warp Core Stabilizer I Blueprint", "11614": "Tracking Disruptor I Blueprint", "11616": "Tracking Enhancer I Blueprint", "11617": "Tracking Link I Blueprint", "11619": "Co-Processor I Blueprint", "11620": "Sensor Booster I Blueprint", "11621": "Tracking Computer I Blueprint", "11622": "ECCM - Gravimetric I Blueprint", "11623": "ECCM - Ladar I Blueprint", "11624": "ECCM - Magnetometric I Blueprint", "11625": "ECCM - Radar I Blueprint", "11626": "ECCM - Omni I Blueprint", "11628": "ECM - Ion Field Projector I Blueprint", "11629": "ECM - Multispectral Jammer I Blueprint", "11630": "ECM - Phase Inverter I Blueprint", "11631": "ECM - Spatial Destabilizer I Blueprint", "11632": "ECM - White Noise Generator I Blueprint", "11634": "Signal Amplifier I Blueprint", "11635": "Personal Information Data", "11640": "Warp Core Stabilizer II", "11641": "Warp Core Stabilizer II Blueprint", "11642": "Armor EM Hardener II", "11643": "Armor EM Hardener II Blueprint", "11644": "Armor Kinetic Hardener II", "11645": "Armor Kinetic Hardener II Blueprint", "11646": "Armor Explosive Hardener II", "11647": "Armor Explosive Hardener II Blueprint", "11648": "Armor Thermic Hardener II", "11649": "Armor Thermic Hardener II Blueprint", "11654": "Korim Kor-Azor", "353932": "Militia Armor Repairer", "11688": "Particle Accelerator Unit", "11689": "Laser Focusing Crystals", "11690": "Superconductor Rails", "11691": "Thermonuclear Trigger Unit", "11692": "Nuclear Pulse Generator", "11693": "Graviton Pulse Generator", "11694": "EM Pulse Generator", "11695": "Plasma Pulse Generator", "11701": "Thanok", "11702": "Transaction And Salary Logs", "11703": "Angel Cartel Plans", "11707": "Strange Mechanical Device", "11709": "Comatose Alena Karyn", "11723": "Design Documents", "11724": "Glossy Compound", "11725": "Plush Compound", "11732": "Sheen Compound", "11733": "Motley Compound", "11734": "Opulent Compound", "11735": "Dark Compound", "11736": "Lustering Alloy", "11737": "Precious Alloy", "11738": "Lucent Compound", "11739": "Condensed Alloy", "11740": "Gleaming Alloy", "11741": "Crystal Compound", "11742": "The Damsel", "11746": "R.Db - Lai Dai", "11747": "Co-Processor II Blueprint", "11750": "ECCM - Gravimetric II Blueprint", "11754": "ECCM - Ladar II Blueprint", "11758": "ECCM - Magnetometric II Blueprint", "11762": "ECCM - Omni II Blueprint", "11766": "ECCM - Radar II Blueprint", "11770": "ECCM Projector I Blueprint", "11771": "ECCM Projector II Blueprint", "11775": "ECM - Ion Field Projector II Blueprint", "11779": "ECM - Multispectral Jammer II Blueprint", "11783": "ECM - Phase Inverter II Blueprint", "11787": "ECM - Spatial Destabilizer II Blueprint", "11791": "ECM - White Noise Generator II Blueprint", "11795": "Heat Sink II Blueprint", "11798": "Remote Sensor Booster I Blueprint", "11799": "Remote Sensor Booster II Blueprint", "11803": "Remote Sensor Dampener I Blueprint", "11804": "Remote Sensor Dampener II Blueprint", "11808": "Sensor Booster II Blueprint", "11812": "Signal Amplifier II Blueprint", "11820": "Gravimetric Backup Array I Blueprint", "11821": "Gravimetric Backup Array II Blueprint", "11824": "LADAR Backup Array I Blueprint", "11825": "LADAR Backup Array II Blueprint", "11828": "Magnetometric Backup Array I Blueprint", "11829": "Magnetometric Backup Array II Blueprint", "11832": "Multi Sensor Backup Array I Blueprint", "11833": "Multi Sensor Backup Array II Blueprint", "11836": "RADAR Backup Array I Blueprint", "11837": "RADAR Backup Array II Blueprint", "11840": "Tracking Computer II Blueprint", "11844": "Tracking Disruptor II Blueprint", "11848": "Tracking Enhancer II Blueprint", "11851": "Tracking Link II Blueprint", "11855": "Protein Delicacies", "11856": "Foundation Stone", "11857": "R.Db - Roden Shipyards Blueprint", "11859": "R.A.M.- Energy Tech Blueprint", "11860": "R.A.M.- Cybernetics Blueprint", "11870": "R.A.M.- Electronics Blueprint", "11872": "R.A.M.- Ammunition Tech Blueprint", "11873": "R.A.M.- Armor/Hull Tech Blueprint", "11876": "R.Db - Boundless Creations Blueprint", "11877": "R.Db - Core Complexion Blueprint", "11878": "R.Db - CreoDron Blueprint", "11879": "R.Db - Duvolle Labs Blueprint", "11880": "R.Db - Carthum Conglomerate Blueprint", "11881": "R.Db - Kaalakiota Blueprint", "11882": "R.Db - Khanid Innovation Blueprint", "11883": "R.Db - Thukker Mix Blueprint", "11884": "R.Db - Viziam Blueprint", "11885": "R.Db - Ishukone Blueprint", "11886": "R.Db - Lai Dai Blueprint", "11887": "R.A.M.- Robotics Blueprint", "11889": "R.A.M.- Shield Tech Blueprint", "11890": "R.A.M.- Starship Tech Blueprint", "11891": "R.A.M.- Weapon Tech Blueprint", "11936": "Apocalypse Imperial Issue", "11937": "Apocalypse Imperial Issue Blueprint", "11938": "Armageddon Imperial Issue", "11940": "Gold Magnate", "11942": "Silver Magnate", "11944": "Synthetic Coffee", "356106": "'Valor' Assault Type-I", "355015": "Drone Shotgun", "11957": "Falcon", "11958": "Falcon Blueprint", "11959": "Rook", "11960": "Rook Blueprint", "11961": "Huginn", "11962": "Huginn Blueprint", "11963": "Rapier", "11964": "Rapier Blueprint", "11965": "Pilgrim", "11966": "Pilgrim Blueprint", "11969": "Arazu", "11970": "Arazu Blueprint", "11971": "Lachesis", "11972": "Lachesis Blueprint", "11978": "Scimitar", "11979": "Scimitar Blueprint", "11985": "Basilisk", "11986": "Basilisk Blueprint", "11987": "Guardian", "11988": "Guardian Blueprint", "11989": "Oneiros", "11990": "Oneiros Blueprint", "11993": "Cerberus", "11994": "Cerberus Blueprint", "11995": "Onyx", "11996": "Onyx Blueprint", "11999": "Vagabond", "12000": "Vagabond Blueprint", "12003": "Zealot", "12004": "Zealot Blueprint", "12005": "Ishtar", "12006": "Ishtar Blueprint", "12011": "Eagle", "12012": "Eagle Blueprint", "12013": "Broadsword", "12014": "Broadsword Blueprint", "12015": "Muninn", "12016": "Muninn Blueprint", "12017": "Devoter", "12018": "Devoter Blueprint", "12019": "Sacrilege", "12020": "Sacrilege Blueprint", "12021": "Phobos", "12022": "Phobos Blueprint", "12023": "Deimos", "12024": "Deimos Blueprint", "12031": "Manticore Blueprint", "12032": "Manticore", "12034": "Hound", "12035": "Hound Blueprint", "12038": "Purifier", "12041": "Purifier Blueprint", "12042": "Ishkur", "12043": "Ishkur Blueprint", "12044": "Enyo", "12045": "Enyo Blueprint", "12049": "Slaver", "12052": "10MN Microwarpdrive I", "12053": "10MN Microwarpdrive I Blueprint", "12054": "100MN Microwarpdrive I", "12055": "100MN Microwarpdrive I Blueprint", "12056": "10MN Afterburner I", "12057": "10MN Afterburner I Blueprint", "12058": "10MN Afterburner II", "12059": "10MN Afterburner II Blueprint", "12066": "100MN Afterburner I", "12067": "100MN Afterburner I Blueprint", "12068": "100MN Afterburner II", "12069": "100MN Afterburner II Blueprint", "12076": "10MN Microwarpdrive II", "12077": "10MN Microwarpdrive II Blueprint", "12084": "100MN Microwarpdrive II", "12085": "100MN Microwarpdrive II Blueprint", "12092": "Interceptors", "12093": "Covert Ops", "12095": "Assault Ships", "12096": "Logistics", "12097": "Destroyers", "12098": "Interdictors", "12099": "Battlecruisers", "12102": "Large Energy Transfer Array II", "12103": "Large Energy Transfer Array II Blueprint", "12104": "Improved Cloaking Device II Blueprint", "12105": "Covert Ops Cloaking Device II Blueprint", "12108": "Deep Core Mining Laser I", "12109": "Deep Core Mining Laser I Blueprint", "12110": "Homeless", "356113": "'Raven' Scout Type-I", "12179": "Research Project Management", "12180": "Arkonor Processing", "12181": "Bistot Processing", "12182": "Crokite Processing", "12183": "Dark Ochre Processing", "12184": "Gneiss Processing", "12185": "Hedbergite Processing", "12186": "Hemorphite Processing", "12187": "Jaspet Processing", "12188": "Kernite Processing", "12189": "Mercoxit Processing", "12190": "Omber Processing", "12191": "Plagioclase Processing", "12192": "Pyroxeres Processing", "12193": "Scordite Processing", "12194": "Spodumain Processing", "12195": "Veldspar Processing", "12196": "Scrapmetal Processing", "12198": "Mobile Small Warp Disruptor I", "12199": "Mobile Medium Warp Disruptor I", "12200": "Mobile Large Warp Disruptor I", "12201": "Small Artillery Specialization", "12202": "Medium Artillery Specialization", "12203": "Large Artillery Specialization", "12204": "Medium Beam Laser Specialization", "12205": "Large Beam Laser Specialization", "12206": "Medium Railgun Specialization", "12207": "Large Railgun Specialization", "12208": "Medium Autocannon Specialization", "12209": "Large Autocannon Specialization", "12210": "Small Blaster Specialization", "12211": "Medium Blaster Specialization", "12212": "Large Blaster Specialization", "12213": "Small Pulse Laser Specialization", "12214": "Medium Pulse Laser Specialization", "12215": "Large Pulse Laser Specialization", "12217": "Medium Energy Transfer Array I", "12218": "Medium Energy Transfer Array I Blueprint", "12219": "Capital Energy Transfer Array I", "12220": "Capital Energy Transfer Array I Blueprint", "12221": "Medium Energy Transfer Array II", "12222": "Medium Energy Transfer Array II Blueprint", "2037": "Entrapment Array 5", "353933": "Militia Light Damage Modifier", "12225": "Large Energy Transfer Array I", "12226": "Large Energy Transfer Array I Blueprint", "12235": "Amarr Control Tower", "12236": "Gallente Control Tower", "12237": "Ship Maintenance Array", "12238": "Refining Array", "12239": "Medium Intensive Refining Array", "12241": "Sovereignty", "12243": "Science Graduates", "12250": "Criminal DNA", "353934": "Militia Kinetic Catalyzer", "12257": "Medium Nosferatu I", "12258": "Medium Nosferatu I Blueprint", "12259": "Medium Nosferatu II", "12260": "Medium Nosferatu II Blueprint", "12261": "Heavy Nosferatu I", "12262": "Heavy Nosferatu I Blueprint", "12263": "Heavy Nosferatu II", "12264": "Heavy Nosferatu II Blueprint", "12265": "Medium Energy Neutralizer I", "12266": "Medium Energy Neutralizer I Blueprint", "12267": "Medium Energy Neutralizer II", "12268": "Medium Energy Neutralizer II Blueprint", "12269": "Heavy Energy Neutralizer I", "12270": "Heavy Energy Neutralizer I Blueprint", "12271": "Heavy Energy Neutralizer II", "12272": "Heavy Energy Neutralizer II Blueprint", "12274": "Ballistic Control System I", "12275": "Ballistic Control System I Blueprint", "353935": "Militia Cardiac Stimulant", "12297": "Mobile Small Warp Disruptor I Blueprint", "12300": "Mobile Medium Warp Disruptor I Blueprint", "12301": "Mobile Large Warp Disruptor I Blueprint", "12302": "Test Dummies", "12303": "Unassembled Energy Weapons", "12304": "Angel Copper Tag", "12305": "Drone Navigation", "355027": "ADV Drone Forge Gun", "353936": "Militia Myofibril Stimulant", "12344": "200mm Railgun I", "12345": "200mm Railgun I Blueprint", "12346": "200mm Railgun II", "12347": "200mm Railgun II Blueprint", "12354": "350mm Railgun I", "12355": "350mm Railgun I Blueprint", "12356": "350mm Railgun II", "12357": "350mm Railgun II Blueprint", "12365": "EM Shield Compensation", "12366": "Kinetic Shield Compensation", "12367": "Explosive Shield Compensation", "2062": "Quantum Flux Generator 5", "2648": "Inferno Precision Light Missile Blueprint", "12441": "Missile Bombardment", "12442": "Missile Projection", "2971": "Group of Haakar's Striking Hawks", "12478": "Khumaak", "12484": "Amarr Drone Specialization", "12485": "Minmatar Drone Specialization", "12486": "Gallente Drone Specialization", "12487": "Caldari Drone Specialization", "351610": "Active Fuel Injector I", "12528": "Angel Silver Tag", "12529": "Angel Brass Tag", "12530": "Angel Palladium Tag", "12531": "Angel Crystal Tag", "12532": "Blood Bronze Tag", "12533": "Blood Silver Tag", "12534": "Blood Upper-Tier Tag", "12535": "Blood Platinum Tag", "12536": "Blood Crystal Tag", "12537": "Serpentis Bronze Tag", "12538": "Serpentis Silver Tag", "12539": "Serpentis Gold Tag", "12540": "Serpentis Platinum Tag", "12541": "Serpentis Crystal Tag", "12542": "Guristas Bronze Tag", "12543": "Guristas Silver Tag", "12544": "Guristas Gold Tag", "12545": "Guristas Platinum Tag", "12546": "Guristas Crystal Tag", "12547": "Sansha Bronze Tag", "12548": "Sansha Silver Tag", "12549": "Sansha Gold Tag", "12550": "Sansha Platinum Tag", "12551": "Sansha Crystal Tag", "12557": "Gleam S", "12558": "Gleam S Blueprint", "12559": "Aurora S", "12560": "Aurora S Blueprint", "12563": "Scorch S", "12564": "Scorch S Blueprint", "12565": "Conflagration S", "12566": "Conflagration S Blueprint", "12608": "Hail S", "12609": "Hail S Blueprint", "12612": "Void S", "12613": "Void S Blueprint", "12614": "Null S", "12615": "Null S Blueprint", "12618": "Spike S", "12619": "Spike S Blueprint", "12620": "Javelin S", "12621": "Javelin S Blueprint", "12625": "Barrage S", "12626": "Barrage S Blueprint", "351630": "Variable Vane Turbine", "12631": "Quake S", "12632": "Quake S Blueprint", "12633": "Tremor S", "12634": "Tremor S Blueprint", "351633": "Overdrive", "12709": "Target Painter I", "12710": "Target Painter I Blueprint", "12729": "Crane", "12730": "Crane Blueprint", "12731": "Bustard", "12732": "Bustard Blueprint", "12733": "Prorator", "12734": "Prorator Blueprint", "12735": "Prowler", "12736": "Prowler Blueprint", "12743": "Viator", "12744": "Viator Blueprint", "12745": "Occator", "12746": "Occator Blueprint", "12747": "Mastodon", "12748": "Mastodon Blueprint", "12753": "Impel", "12754": "Impel Blueprint", "12761": "Quake L", "12762": "Quake L Blueprint", "12765": "Tremor L", "12766": "Tremor L Blueprint", "12767": "Quake M", "12768": "Quake M Blueprint", "12771": "Tremor M", "12772": "Tremor M Blueprint", "12773": "Barrage M", "12774": "Barrage M Blueprint", "12775": "Barrage L", "12776": "Barrage L Blueprint", "12777": "Hail M", "12778": "Hail M Blueprint", "12779": "Hail L", "12780": "Hail L Blueprint", "12785": "Null M", "12786": "Null M Blueprint", "12787": "Null L", "12788": "Null L Blueprint", "12789": "Void M", "12790": "Void M Blueprint", "12791": "Void L", "12792": "Void L Blueprint", "12801": "Javelin M", "12802": "Javelin M Blueprint", "12803": "Javelin L", "12804": "Javelin L Blueprint", "12805": "Spike M", "12806": "Spike M Blueprint", "12807": "Spike L", "12808": "Spike L Blueprint", "12814": "Conflagration M", "12815": "Conflagration M Blueprint", "12816": "Conflagration L", "12817": "Conflagration L Blueprint", "12818": "Scorch M", "12819": "Scorch M Blueprint", "12820": "Scorch L", "12821": "Scorch L Blueprint", "12822": "Aurora M", "12823": "Aurora M Blueprint", "12824": "Aurora L", "12825": "Aurora L Blueprint", "12826": "Gleam M", "12827": "Gleam M Blueprint", "12828": "Gleam L", "12829": "Gleam L Blueprint", "12836": "Transcranial Microcontrollers", "12865": "Quafe Ultra", "3705": "Crash", "353389": "Gallente HAV", "12994": "Quafe Ultra Special Edition", "12995": "Ultra! Promotional holoreel", "13000": "Prototype Cloaking Device I Blueprint", "13001": "Small Nosferatu II", "13002": "Small Nosferatu II Blueprint", "13003": "Small Energy Neutralizer II", "13004": "Small Energy Neutralizer II Blueprint", "13067": "Smurgleblaster", "13119": "Mjolnir Javelin Rocket", "13166": "Inherent Implants 'Lancer' Gunnery RF-903", "2621": "Inferno Fury Cruise Missile", "13202": "Megathron Federate Issue", "13203": "Megathron Federate Issue Blueprint", "13204": "Sacred Bricks", "13205": "Heart Stone", "13206": "Defiled Relics", "13209": "Armored Warfare Mindlink", "13210": "Cerebral Slice", "13211": "Epidermis Sliver", "13212": "Liver Bile", "13213": "Blood Drop", "13214": "Bone Splinter", "13215": "Complex Fullerene Shard", "13216": "Zainou 'Gypsy' Electronics EE-603", "13217": "Inherent Implants 'Lancer' Large Energy Turret LE-1003", "13218": "Zainou 'Deadeye' Large Hybrid Turret LH-1003", "13219": "Eifyr and Co. 'Gunslinger' Large Projectile Turret LP-1003", "13220": "Inherent Implants 'Lancer' Medium Energy Turret ME-803", "13221": "Zainou 'Deadeye' Medium Hybrid Turret MH-803", "13222": "Eifyr and Co. 'Gunslinger' Medium Projectile Turret MP-803", "13223": "Inherent Implants 'Lancer' Small Energy Turret SE-603", "13224": "Zainou 'Deadeye' Small Hybrid Turret SH-603", "13225": "Eifyr and Co. 'Gunslinger' Small Projectile Turret SP-603", "13226": "Zainou 'Snapshot' Cruise Missiles CM-603", "13227": "Zainou 'Snapshot' Defender Missiles DM-803", "13228": "Zainou 'Snapshot' FOF Explosion Radius FR-1003", "13229": "Zainou 'Snapshot' Heavy Missiles HM-703", "13230": "Zainou 'Snapshot' Rockets RD-903", "13231": "Zainou 'Snapshot' Torpedoes TD-603", "13232": "Zainou 'Gypsy' Electronic Warfare EW-903", "13233": "Zainou 'Gypsy' Long Range Targeting LT-803", "13234": "Zainou 'Gypsy' Propulsion Jamming PJ-803", "13235": "Zainou 'Gypsy' Sensor Linking SL-903", "13236": "Zainou 'Gypsy' Weapon Disruption WD-903", "13237": "Eifyr and Co. 'Rogue' Navigation NN-603", "13238": "Eifyr and Co. 'Rogue' Fuel Conservation FC-803", "13239": "Eifyr and Co. 'Rogue' Afterburner AB-606", "13240": "Eifyr and Co. 'Rogue' Evasive Maneuvering EM-703", "13241": "Eifyr and Co. 'Rogue' Warp Drive Operation WD-606", "13242": "Eifyr and Co. 'Rogue' Warp Drive Speed WS-610", "13243": "Eifyr and Co. 'Rogue' High Speed Maneuvering HS-903", "13244": "Eifyr and Co. 'Gunslinger' Surgical Strike SS-903", "13245": "Zainou 'Deadeye' Trajectory Analysis TA-703", "13246": "Inherent Implants 'Lancer' Controlled Bursts CB-703", "13247": "Zainou 'Deadeye' Missile Bombardment MB-703", "13248": "Zainou 'Deadeye' Missile Projection MP-703", "13249": "Zainou 'Deadeye' Rapid Launch RL-1003", "13250": "Zainou 'Deadeye' Target Navigation Prediction TN-903", "13251": "Inherent Implants 'Squire' Energy Pulse Weapons EP-703", "13252": "Zainou 'Gnome' Weapon Upgrades WU-1003", "13253": "Zainou 'Gnome' Shield Upgrades SU-603", "13254": "Zainou 'Gypsy' Electronics Upgrades EU-603", "13255": "Inherent Implants 'Squire' Energy Grid Upgrades EU-703", "13256": "Inherent Implants 'Noble' Hull Upgrades HG-1003", "13257": "Inherent Implants 'Noble' Mechanic MC-803", "13258": "Inherent Implants 'Noble' Repair Systems RS-603", "13259": "Inherent Implants 'Squire' Energy Management EM-803", "13260": "Inherent Implants 'Squire' Energy Systems Operation EO-603", "13261": "Inherent Implants 'Squire' Engineering EG-603", "13262": "Zainou 'Gnome' Shield Emission Systems SE-803", "13263": "Zainou 'Gnome' Shield Operation SP-903", "13265": "Inherent Implants 'Squire' Energy Emission Systems ES-703", "13267": "Janitor", "2212": "Ghost Heavy Missile", "13278": "Archaeology", "13279": "Remote Sensing", "13283": "Limited Ocular Filter", "13284": "Limited Memory Augmentation", "13285": "Limited Neural Boost", "13286": "Limited Social Adaptation Chip", "13287": "Limited Cybernetic Subprocessor", "13288": "DNA Sample", "13320": "Cruise Missile Launcher I", "13321": "Cruise Missile Launcher I Blueprint", "13328": "Star Charts", "3723": "Slaver Hound", "352305": "Militia 80GJ Railgun", "13773": "Domination 125mm Autocannon", "13774": "Domination 1200mm Artillery", "13775": "Domination 1400mm Howitzer Artillery", "13776": "Domination 150mm Autocannon", "13777": "Domination 200mm Autocannon", "13778": "Domination 220mm Autocannon", "13779": "Domination 250mm Artillery", "13780": "Equipment Assembly Array", "13781": "Domination 280mm Howitzer Artillery", "13782": "Domination 425mm Autocannon", "13783": "Domination 650mm Artillery", "13784": "Domination 720mm Howitzer Artillery", "13785": "Domination 800mm Repeating Artillery", "13786": "Domination Dual 180mm Autocannon", "13787": "Domination Dual 425mm Autocannon", "13788": "Domination Dual 650mm Repeating Artillery", "13791": "Dark Blood Dual Heavy Pulse Laser", "13793": "Dark Blood Dual Heavy Beam Laser", "13795": "Dark Blood Dual Light Beam Laser", "13797": "Dark Blood Dual Light Pulse Laser", "13799": "Dark Blood Focused Medium Beam Laser", "13801": "Dark Blood Focused Medium Pulse Laser", "13803": "Dark Blood Gatling Pulse Laser", "13805": "Dark Blood Heavy Beam Laser", "13807": "Dark Blood Heavy Pulse Laser", "13809": "Dark Blood Small Focused Beam Laser", "13811": "Dark Blood Small Focused Pulse Laser", "13813": "Dark Blood Mega Beam Laser", "13815": "Dark Blood Mega Pulse Laser", "13817": "Dark Blood Tachyon Beam Laser", "13819": "Dark Blood Quad Beam Laser", "13820": "True Sansha Dual Heavy Beam Laser", "13821": "True Sansha Dual Heavy Pulse Laser", "13822": "True Sansha Dual Light Beam Laser", "13823": "True Sansha Dual Light Pulse Laser", "13824": "True Sansha Focused Medium Beam Laser", "13825": "True Sansha Focused Medium Pulse Laser", "13826": "True Sansha Gatling Pulse Laser", "13827": "True Sansha Heavy Beam Laser", "13828": "True Sansha Heavy Pulse Laser", "13829": "True Sansha Small Focused Beam Laser", "13830": "True Sansha Small Focused Pulse Laser", "13831": "True Sansha Mega Beam Laser", "13832": "True Sansha Mega Pulse Laser", "13833": "True Sansha Quad Beam Laser", "13834": "True Sansha Tachyon Beam Laser", "13837": "Captives", "13856": "Nova Javelin Heavy Assault Missile", "13864": "Shadow Serpentis 125mm Railgun", "13865": "Dread Guristas 125mm Railgun", "13866": "Shadow Serpentis 150mm Railgun", "13867": "Dread Guristas 150mm Railgun", "13868": "Shadow Serpentis 200mm Railgun", "13870": "Dread Guristas 200mm Railgun", "13872": "Shadow Serpentis 250mm Railgun", "13873": "Dread Guristas 250mm Railgun", "13874": "Shadow Serpentis 350mm Railgun", "13876": "Dread Guristas 350mm Railgun", "13878": "Shadow Serpentis 425mm Railgun", "13879": "Dread Guristas 425mm Railgun", "13880": "Shadow Serpentis Dual 150mm Railgun", "13881": "Dread Guristas Dual 150mm Railgun", "13882": "Shadow Serpentis Dual 250mm Railgun", "13883": "Dread Guristas Dual 250mm Railgun", "13884": "Shadow Serpentis Heavy Electron Blaster", "13885": "Shadow Serpentis Heavy Ion Blaster", "13886": "Shadow Serpentis Light Electron Blaster", "13887": "Shadow Serpentis Light Ion Blaster", "13888": "Shadow Serpentis Light Neutron Blaster", "13889": "Shadow Serpentis Electron Blaster Cannon", "13890": "Shadow Serpentis Ion Blaster Cannon", "13891": "Shadow Serpentis Neutron Blaster Cannon", "13892": "Shadow Serpentis Heavy Neutron Blaster", "13893": "Dread Guristas 75mm Railgun", "13894": "Shadow Serpentis 75mm Railgun", "353989": "Heavy Remote Automated Armor Repair Unit", "13918": "Korranis DNA", "13919": "Domination Rapid Light Missile Launcher", "13920": "Dread Guristas Rapid Light Missile Launcher", "13921": "Domination Heavy Missile Launcher", "13922": "Dread Guristas Heavy Missile Launcher", "13923": "Domination Torpedo Launcher", "13924": "Dread Guristas Torpedo Launcher", "13925": "Domination Light Missile Launcher", "13926": "Dread Guristas Light Missile Launcher", "13927": "Domination Cruise Missile Launcher", "13929": "Dread Guristas Cruise Missile Launcher", "13931": "Domination Rocket Launcher", "13933": "Dread Guristas Rocket Launcher", "13935": "Domination Ballistic Control System", "353990": "Light Remote IG-R Polarized Armor Regenerator", "13937": "Dread Guristas Ballistic Control System", "13939": "Domination Gyrostabilizer", "13941": "Dark Blood Heat Sink", "13943": "True Sansha Heat Sink", "13945": "Shadow Serpentis Magnetic Field Stabilizer", "13947": "Dread Guristas Large Shield Booster", "13948": "Domination Large Shield Booster", "13949": "Dread Guristas Medium Shield Booster", "13950": "Domination Medium Shield Booster", "13951": "Dread Guristas Small Shield Booster", "13952": "Domination Small Shield Booster", "13953": "Dread Guristas X-Large Shield Booster", "13954": "Domination X-Large Shield Booster", "13955": "Domination Large Armor Repairer", "13956": "True Sansha Large Armor Repairer", "13957": "Dark Blood Large Armor Repairer", "13958": "Domination Medium Armor Repairer", "13959": "True Sansha Medium Armor Repairer", "13960": "Dark Blood Medium Armor Repairer", "13962": "Domination Small Armor Repairer", "13963": "True Sansha Small Armor Repairer", "13964": "Dark Blood Small Armor Repairer", "13965": "Dread Guristas EM Ward Field", "13966": "Dread Guristas Thermic Dissipation Field", "13967": "Dread Guristas Explosive Deflection Field", "13968": "Dread Guristas Kinetic Deflection Field", "13969": "Dread Guristas Adaptive Invulnerability Field", "13970": "True Sansha Armor EM Hardener", "13972": "Dark Blood Armor EM Hardener", "13974": "True Sansha Armor Explosive Hardener", "13976": "Dark Blood Armor Explosive Hardener", "13978": "True Sansha Armor Kinetic Hardener", "13980": "Dark Blood Armor Kinetic Hardener", "13982": "True Sansha Armor Thermic Hardener", "13984": "Dark Blood Armor Thermic Hardener", "13986": "Domination Armor EM Hardener", "2331": "Shield Power Relay I", "13988": "Domination Armor Explosive Hardener", "13990": "Domination Armor Kinetic Hardener", "13992": "Domination Armor Thermic Hardener", "13994": "Domination EM Ward Field", "13995": "Domination Thermic Dissipation Field", "13996": "Domination Explosive Deflection Field", "13997": "Domination Kinetic Deflection Field", "13998": "Domination Adaptive Invulnerability Field", "13999": "Domination Adaptive Nano Plating", "14001": "True Sansha Adaptive Nano Plating", "14003": "Dark Blood Adaptive Nano Plating", "14005": "Domination Kinetic Plating", "14007": "True Sansha Kinetic Plating", "14009": "Dark Blood Kinetic Plating", "14011": "Domination Explosive Plating", "14013": "True Sansha Explosive Plating", "14015": "Dark Blood Explosive Plating", "14017": "Domination EM Plating", "14019": "True Sansha EM Plating", "14021": "Dark Blood EM Plating", "14023": "Domination Thermic Plating", "14025": "True Sansha Thermic Plating", "14027": "Dark Blood Thermic Plating", "14029": "Domination Explosive Deflection Amplifier", "14031": "Dread Guristas Explosive Deflection Amplifier", "14033": "Domination Thermic Dissipation Amplifier", "14035": "Dread Guristas Thermic Dissipation Amplifier", "14037": "Domination Kinetic Deflection Amplifier", "14039": "Dread Guristas Kinetic Deflection Amplifier", "14041": "Domination EM Ward Amplifier", "14043": "Dread Guristas EM Ward Amplifier", "14045": "Domination Shield Boost Amplifier", "14047": "Dread Guristas Shield Boost Amplifier", "14049": "Shadow Serpentis Adaptive Nano Plating", "14051": "Shadow Serpentis Kinetic Plating", "14053": "Shadow Serpentis Explosive Plating", "14055": "Shadow Serpentis EM Plating", "14057": "Shadow Serpentis Thermic Plating", "14059": "Shadow Serpentis Armor EM Hardener", "14061": "Shadow Serpentis Armor Explosive Hardener", "14063": "Shadow Serpentis Armor Kinetic Hardener", "14065": "Shadow Serpentis Armor Thermic Hardener", "14067": "Shadow Serpentis Large Armor Repairer", "14068": "Shadow Serpentis Medium Armor Repairer", "14069": "Shadow Serpentis Small Armor Repairer", "14070": "Dark Blood Energized Adaptive Nano Membrane", "14072": "True Sansha Energized Adaptive Nano Membrane", "14074": "Shadow Serpentis Energized Adaptive Nano Membrane", "14076": "Dark Blood Energized Kinetic Membrane", "14078": "True Sansha Energized Kinetic Membrane", "14080": "Shadow Serpentis Energized Kinetic Membrane", "14082": "Dark Blood Energized Explosive Membrane", "14084": "True Sansha Energized Explosive Membrane", "14086": "Shadow Serpentis Energized Explosive Membrane", "14088": "Dark Blood Energized EM Membrane", "14090": "True Sansha Energized EM Membrane", "14092": "Shadow Serpentis Energized EM Membrane", "14094": "Dark Blood Energized Thermic Membrane", "14096": "True Sansha Energized Thermic Membrane", "14098": "Shadow Serpentis Energized Thermic Membrane", "14100": "Domination Tracking Enhancer", "14102": "Domination 100MN Afterburner", "14104": "Shadow Serpentis 100MN Afterburner", "14106": "Domination 10MN Afterburner", "14108": "Shadow Serpentis 10MN Afterburner", "14110": "Domination 1MN Afterburner", "14112": "Shadow Serpentis 1MN Afterburner", "14114": "Domination 100MN Microwarpdrive", "14116": "Shadow Serpentis 100MN Microwarpdrive", "14118": "Domination 10MN Microwarpdrive", "14120": "Shadow Serpentis 10MN Microwarpdrive", "14122": "Domination 1MN Microwarpdrive", "14124": "Shadow Serpentis 1MN Microwarpdrive", "14126": "Domination Overdrive Injector", "14127": "Domination Nanofiber Structure", "14128": "Dark Blood Reactor Control Unit", "14130": "True Sansha Reactor Control Unit", "14132": "Shadow Serpentis Reactor Control Unit", "14134": "Dark Blood Power Diagnostic System", "14136": "True Sansha Power Diagnostic System", "14138": "Shadow Serpentis Power Diagnostic System", "14140": "True Sansha Cap Recharger", "14142": "Dark Blood Cap Recharger", "14144": "Dark Blood Capacitor Power Relay", "14146": "True Sansha Capacitor Power Relay", "14148": "Dark Blood Small Nosferatu", "14150": "True Sansha Small Nosferatu", "14152": "Dark Blood Heavy Nosferatu", "14154": "True Sansha Heavy Nosferatu", "14156": "Dark Blood Medium Nosferatu", "14158": "True Sansha Medium Nosferatu", "14160": "Dark Blood Small Energy Neutralizer", "14162": "True Sansha Small Energy Neutralizer", "14164": "Dark Blood Medium Energy Neutralizer", "14166": "True Sansha Medium Energy Neutralizer", "14168": "Dark Blood Heavy Energy Neutralizer", "14170": "True Sansha Heavy Energy Neutralizer", "14172": "Dark Blood Heavy Capacitor Booster", "14174": "True Sansha Heavy Capacitor Booster", "14176": "Dark Blood Medium Capacitor Booster", "14178": "True Sansha Medium Capacitor Booster", "14180": "Dark Blood Micro Capacitor Booster", "14182": "True Sansha Micro Capacitor Booster", "14184": "Dark Blood Small Capacitor Booster", "14186": "True Sansha Small Capacitor Booster", "14188": "Dark Blood Large EMP Smartbomb", "14190": "True Sansha Large EMP Smartbomb", "14192": "Dark Blood Medium EMP Smartbomb", "14194": "True Sansha Medium EMP Smartbomb", "14196": "Dark Blood Micro EMP Smartbomb", "14198": "True Sansha Micro EMP Smartbomb", "14200": "Dark Blood Small EMP Smartbomb", "14202": "True Sansha Small EMP Smartbomb", "14204": "Dread Guristas Large Graviton Smartbomb", "14206": "Shadow Serpentis Large Plasma Smartbomb", "14208": "Domination Large Proton Smartbomb", "14210": "Dread Guristas Medium Graviton Smartbomb", "14212": "Dread Guristas Micro Graviton Smartbomb", "14214": "Dread Guristas Small Graviton Smartbomb", "14218": "Shadow Serpentis Micro Plasma Smartbomb", "14220": "Shadow Serpentis Medium Plasma Smartbomb", "14222": "Domination Medium Proton Smartbomb", "14224": "Domination Micro Proton Smartbomb", "14226": "Domination Small Proton Smartbomb", "14228": "Shadow Serpentis Small Plasma Smartbomb", "14230": "Dread Guristas Co-Processor", "14232": "Shadow Serpentis Co-Processor", "14234": "Dread Guristas Cloaking Device", "14236": "Shadow Serpentis Sensor Booster", "14238": "Shadow Serpentis Tracking Computer", "14240": "Shadow Serpentis Tracking Link", "14242": "Dark Blood Warp Disruptor", "14244": "Domination Warp Disruptor", "14246": "Dread Guristas Warp Disruptor", "14248": "True Sansha Warp Disruptor", "14250": "Shadow Serpentis Warp Disruptor", "14252": "Dark Blood Warp Scrambler", "14254": "Domination Warp Scrambler", "14256": "Dread Guristas Warp Scrambler", "14258": "True Sansha Warp Scrambler", "14260": "Shadow Serpentis Warp Scrambler", "14262": "Dark Blood Stasis Webifier", "2657": "Crates of Vitoc", "14264": "Domination Stasis Webifier", "14266": "Dread Guristas Stasis Webifier", "14268": "True Sansha Stasis Webifier", "14270": "Shadow Serpentis Stasis Webifier", "14272": "200mm Carbide Railgun I", "14274": "200mm 'Scout' Accelerator Cannon", "14276": "200mm Compressed Coil Gun I", "14278": "200mm Prototype Gauss Gun", "14280": "350mm Carbide Railgun I", "14282": "350mm 'Scout' Accelerator Cannon", "14284": "350mm Compressed Coil Gun I", "14286": "350mm Prototype Gauss Gun", "14292": "Kruul's DNA", "14293": "X-Rated Holoreel", "14295": "Limited Ocular Filter - Beta", "14296": "Limited Neural Boost - Beta", "14297": "Limited Memory Augmentation - Beta", "14298": "Limited Cybernetic Subprocessor - Beta", "14299": "Limited Social Adaptation Chip - Beta", "2659": "Crates of Water", "14343": "Silo", "14358": "Zemnar", "14375": "Tuvan's Modified Electron Blaster Cannon", "14377": "Cormack's Modified Electron Blaster Cannon", "14379": "Cormack's Modified Ion Blaster Cannon", "14381": "Tuvan's Modified Ion Blaster Cannon", "14383": "Tuvan's Modified Neutron Blaster Cannon", "14385": "Cormack's Modified Neutron Blaster Cannon", "14387": "Brynn's Modified 350mm Railgun", "14389": "Setele's Modified 350mm Railgun", "14391": "Kaikka's Modified 350mm Railgun", "14393": "Vepas' Modified 350mm Railgun", "14395": "Estamel's Modified 350mm Railgun", "14397": "Brynn's Modified 425mm Railgun", "14399": "Setele's Modified 425mm Railgun", "14401": "Kaikka's Modified 425mm Railgun", "14403": "Vepas' Modified 425mm Railgun", "14405": "Estamel's Modified 425mm Railgun", "14407": "Brynn's Modified Dual 250mm Railgun", "14409": "Setele's Modified Dual 250mm Railgun", "14411": "Kaikka's Modified Dual 250mm Railgun", "14413": "Vepas' Modified Dual 250mm Railgun", "14415": "Estamel's Modified Dual 250mm Railgun", "14417": "Selynne's Modified Dual Heavy Beam Laser", "14419": "Chelm's Modified Dual Heavy Beam Laser", "14421": "Raysere's Modified Dual Heavy Beam Laser", "14423": "Draclira's Modified Dual Heavy Beam Laser", "14425": "Tairei's Modified Dual Heavy Pulse Laser", "14427": "Ahremen's Modified Dual Heavy Pulse Laser", "14429": "Brokara's Modified Dual Heavy Pulse Laser", "14431": "Vizan's Modified Dual Heavy Pulse Laser", "14433": "Selynne's Modified Mega Beam Laser", "14435": "Chelm's Modified Mega Beam Laser", "14437": "Raysere's Modified Mega Beam Laser", "14439": "Draclira's Modified Mega Beam Laser", "14441": "Tairei's Modified Mega Pulse Laser", "14443": "Ahremen's Modified Mega Pulse Laser", "14445": "Brokara's Modified Mega Pulse Laser", "354007": "'Hazard' Logistics Type-I", "14447": "Vizan's Modified Mega Pulse Laser", "14449": "Selynne's Modified Tachyon Beam Laser", "14451": "Chelm's Modified Tachyon Beam Laser", "14453": "Raysere's Modified Tachyon Beam Laser", "14455": "Draclira's Modified Tachyon Beam Laser", "14457": "Mizuro's Modified 800mm Repeating Artillery", "14459": "Gotan's Modified 800mm Repeating Artillery", "14461": "Hakim's Modified 1200mm Artillery Cannon", "14463": "Tobias' Modified 1200mm Artillery Cannon", "14465": "Hakim's Modified 1400mm Howitzer Artillery", "14467": "Tobias' Modified 1400mm Howitzer Artillery", "14469": "Mizuro's Modified Dual 425mm AutoCannon", "14471": "Gotan's Modified Dual 425mm AutoCannon", "14473": "Mizuro's Modified Dual 650mm Repeating Artillery", "14475": "Gotan's Modified Dual 650mm Repeating Artillery", "14483": "Drezins DNA", "14484": "Mizuro's Modified 100MN Afterburner", "14486": "Hakim's Modified 100MN Afterburner", "14488": "Gotan's Modified 100MN Afterburner", "14490": "Tobias' Modified 100MN Afterburner", "14492": "Mizuro's Modified 100MN Microwarpdrive", "14494": "Hakim's Modified 100MN Microwarpdrive", "14496": "Gotan's Modified 100MN Microwarpdrive", "14498": "Tobias' Modified 100MN Microwarpdrive", "14500": "Brynn's Modified 100MN Afterburner", "14502": "Tuvan's Modified 100MN Afterburner", "14504": "Setele's Modified 100MN Afterburner", "14506": "Cormack's Modified 100MN Afterburner", "14508": "Brynn's Modified 100MN Microwarpdrive", "14510": "Tuvan's Modified 100MN Microwarpdrive", "14512": "Setele's Modified 100MN Microwarpdrive", "14514": "Cormack's Modified 100MN Microwarpdrive", "14516": "Mizuro's Modified Cruise Missile Launcher", "14518": "Hakim's Modified Cruise Missile Launcher", "14520": "Gotan's Modified Cruise Missile Launcher", "14522": "Tobias' Modified Cruise Missile Launcher", "14524": "Mizuro's Modified Torpedo Launcher", "14525": "Hakim's Modified Torpedo Launcher", "14526": "Gotan's Modified Torpedo Launcher", "14527": "Tobias's Modified Torpedo Launcher", "14528": "Hakim's Modified Ballistic Control System", "14530": "Mizuro's Modified Ballistic Control System", "14532": "Gotan's Modified Ballistic Control System", "14534": "Tobias' Modified Ballistic Control System", "14536": "Mizuro's Modified Gyrostabilizer", "14538": "Hakim's Modified Gyrostabilizer", "14540": "Gotan's Modified Gyrostabilizer", "14542": "Tobias' Modified Gyrostabilizer", "14544": "Mizuro's Modified Large Proton Smartbomb", "14546": "Hakim's Modified Large Proton Smartbomb", "14548": "Gotan's Modified Large Proton Smartbomb", "14550": "Tobias' Modified Large Proton Smartbomb", "14552": "Mizuro's Modified Large Armor Repairer", "14554": "Gotan's Modified Large Armor Repairer", "14556": "Mizuro's Modified Adaptive Nano Plating", "14560": "Gotan's Modified Adaptive Nano Plating", "14564": "Mizuro's Modified Kinetic Plating", "354011": "Militia CPU Upgrade", "14568": "Gotan's Modified Kinetic Plating", "14572": "Mizuro's Modified Explosive Plating", "14576": "Gotan's Modified Explosive Plating", "14580": "Mizuro's Modified EM Plating", "14584": "Gotan's Modified EM Plating", "14588": "Mizuro's Modified Thermic Plating", "14592": "Gotan's Modified Thermic Plating", "14597": "Hakim's Modified Large Shield Booster", "14599": "Tobias' Modified Large Shield Booster", "14601": "Hakim's Modified X-Large Shield Booster", "14603": "Tobias' Modified X-Large Shield Booster", "14606": "Hakim's Modified Explosive Deflection Amplifier", "14610": "Tobias' Modified Explosive Deflection Amplifier", "14614": "Hakim's Modified Thermic Dissipation Amplifier", "14618": "Tobias' Modified Thermic Dissipation Amplifier", "14622": "Hakim's Modified Kinetic Deflection Amplifier", "14626": "Tobias' Modified Kinetic Deflection Amplifier", "14630": "Hakim's Modified EM Ward Amplifier", "14634": "Tobias' Modified EM Ward Amplifier", "14636": "Hakim's Modified Shield Boost Amplifier", "14638": "Tobias' Modified Shield Boost Amplifier", "14640": "Mizuro's Modified Tracking Enhancer", "14642": "Hakim's Modified Tracking Enhancer", "14644": "Gotan's Modified Tracking Enhancer", "14646": "Tobias' Modified Tracking Enhancer", "14648": "Mizuro's Modified Stasis Webifier", "14650": "Hakim's Modified Stasis Webifier", "14652": "Gotan's Modified Stasis Webifier", "14654": "Tobias' Modified Stasis Webifier", "14656": "Mizuro's Modified Warp Disruptor", "14658": "Hakim's Modified Warp Disruptor", "14660": "Gotan's Modified Warp Disruptor", "14662": "Tobias' Modified Warp Disruptor", "14664": "Mizuro's Modified Warp Scrambler", "14666": "Hakim's Modified Warp Scrambler", "14668": "Gotan's Modified Warp Scrambler", "14670": "Tobias' Modified Warp Scrambler", "14672": "Kaikka's Modified Cruise Missile Launcher", "14674": "Thon's Modified Cruise Missile Launcher", "14676": "Vepas' Modified Cruise Missile Launcher", "14678": "Estamel's Modified Cruise Missile Launcher", "14680": "Kaikka's Modified Torpedo Launcher", "14681": "Thon's Modified Torpedo Launcher", "14682": "Vepas's Modified Torpedo Launcher", "14683": "Estamel's Modified Torpedo Launcher", "14684": "Kaikka's Modified Ballistic Control System", "14686": "Thon's Modified Ballistic Control System", "14688": "Vepas' Modified Ballistic Control System", "14690": "Estamel's Modified Ballistic Control System", "14692": "Kaikka's Modified Large Graviton Smartbomb", "14694": "Thon's Modified Large Graviton Smartbomb", "14696": "Vepas' Modified Large Graviton Smartbomb", "14698": "Estamel's Modified Large Graviton Smartbomb", "14700": "Kaikka's Modified Large Shield Booster", "14701": "Thon's Modified Large Shield Booster", "14702": "Vepas' Modified Large Shield Booster", "14703": "Estamel's Modified Large Shield Booster", "14704": "Kaikka's Modified X-Large Shield Booster", "14705": "Thon's Modified X-Large Shield Booster", "14706": "Vepas' Modified X-Large Shield Booster", "14707": "Estamel's Modified X-Large Shield Booster", "14708": "Kaikka's Modified Shield Boost Amplifier", "14710": "Thon's Modified Shield Boost Amplifier", "14712": "Vepas' Modified Shield Boost Amplifier", "14714": "Estamel's Modified Shield Boost Amplifier", "14716": "Kaikka's Modified Explosive Deflection Amplifier", "14718": "Thon's Modified Explosive Deflection Amplifier", "14720": "Vepas' Modified Explosive Deflection Amplifier", "14722": "Estamel's Modified Explosive Deflection Amplifier", "14724": "Kaikka's Modified Thermic Dissipation Amplifier", "14726": "Thon's Modified Thermic Dissipation Amplifier", "14728": "Vepas' Modified Thermic Dissipation Amplifier", "14730": "Estamel's Modified Thermic Dissipation Amplifier", "14732": "Kaikka's Modified Kinetic Deflection Amplifier", "14734": "Thon's Modified Kinetic Deflection Amplifier", "14736": "Vepas' Modified Kinetic Deflection Amplifier", "14738": "Estamel's Modified Kinetic Deflection Amplifier", "14740": "Kaikka's Modified EM Ward Amplifier", "14742": "Thon's Modified EM Ward Amplifier", "14744": "Vepas' Modified EM Ward Amplifier", "14746": "Estamel's Modified EM Ward Amplifier", "14748": "Kaikka's Modified Kinetic Deflection Field", "14749": "Thon's Modified Kinetic Deflection Field", "14750": "Vepas's Modified Kinetic Deflection Field", "14751": "Estamel's Modified Kinetic Deflection Field", "14752": "Kaikka's Modified EM Ward Field", "14753": "Thon's Modified EM Ward Field", "14754": "Vepas's Modified EM Ward Field", "14755": "Estamel's Modified EM Ward Field", "14756": "Kaikka's Modified Explosive Deflection Field", "14757": "Thon's Modified Explosive Deflection Field", "14758": "Vepas's Modified Explosive Deflection Field", "14759": "Estamel's Modified Explosive Deflection Field", "14760": "Kaikka's Modified Thermic Dissipation Field", "14761": "Thon's Modified Thermic Dissipation Field", "14762": "Vepas's Modified Thermic Dissipation Field", "14763": "Estamel's Modified Thermic Dissipation Field", "14764": "Kaikka's Modified Adaptive Invulnerability Field", "14765": "Thon's Modified Adaptive Invulnerability Field", "14766": "Vepas's Modified Adaptive Invulnerability Field", "14767": "Estamel's Modified Adaptive Invulnerability Field", "14768": "Kaikka's Modified Co-Processor", "14770": "Thon's Modified Co-Processor", "14772": "Vepas' Modified Co-Processor", "14774": "Estamel's Modified Co-Processor", "14776": "Kaikka's Modified Cloaking Device", "14778": "Thon's Modified Cloaking Device", "14780": "Vepas' Modified Cloaking Device", "14782": "Estamel's Modified Cloaking Device", "14784": "Brokara's Modified Large EMP Smartbomb", "14786": "Tairei's Modified Large EMP Smartbomb", "14788": "Selynne's Modified Large EMP Smartbomb", "14790": "Raysere's Modified Large EMP Smartbomb", "14792": "Vizan's Modified Large EMP Smartbomb", "14794": "Ahremen's Modified Large EMP Smartbomb", "14796": "Chelm's Modified Large EMP Smartbomb", "14798": "Draclira's Modified Large EMP Smartbomb", "14800": "Brokara's Modified Heat Sink", "14802": "Tairei's Modified Heat Sink", "14804": "Selynne's Modified Heat Sink", "14806": "Raysere's Modified Heat Sink", "14808": "Vizan's Modified Heat Sink", "14810": "Ahremen's Modified Heat Sink", "14812": "Chelm's Modified Heat Sink", "14814": "Draclira's Modified Heat Sink", "14816": "Brokara's Modified Heavy Nosferatu", "354277": "'Hazard' Logistics vk.0", "14818": "Tairei's Modified Heavy Nosferatu", "14820": "Selynne's Modified Heavy Nosferatu", "14822": "Raysere's Modified Heavy Nosferatu", "14824": "Vizan's Modified Heavy Nosferatu", "14826": "Ahremen's Modified Heavy Nosferatu", "14828": "Chelm's Modified Heavy Nosferatu", "14830": "Draclira's Modified Heavy Nosferatu", "14832": "Brokara's Modified Heavy Energy Neutralizer", "14834": "Tairei's Modified Heavy Energy Neutralizer", "14836": "Selynne's Modified Heavy Energy Neutralizer", "14838": "Raysere's Modified Heavy Energy Neutralizer", "14840": "Vizan's Modified Heavy Energy Neutralizer", "14842": "Ahremen's Modified Heavy Energy Neutralizer", "14844": "Chelm's Modified Heavy Energy Neutralizer", "14846": "Draclira's Modified Heavy Energy Neutralizer", "14848": "Brokara's Modified Large Armor Repairer", "14849": "Tairei's Modified Large Armor Repairer", "14850": "Selynne's Modified Large Armor Repairer", "14851": "Raysere's Modified Large Armor Repairer", "14852": "Vizan's Modified Large Armor Repairer", "14853": "Ahremen's Modified Large Armor Repairer", "14854": "Chelm's Modified Large Armor Repairer", "14855": "Draclira's Modified Large Armor Repairer", "14856": "Brokara's Modified Adaptive Nano Plating", "14858": "Tairei's Modified Adaptive Nano Plating", "14860": "Selynne's Modified Adaptive Nano Plating", "14862": "Raysere's Modified Adaptive Nano Plating", "14864": "Vizan's Modified Adaptive Nano Plating", "14866": "Ahremen's Modified Adaptive Nano Plating", "14868": "Chelm's Modified Adaptive Nano Plating", "14870": "Draclira's Modified Adaptive Nano Plating", "3293": "Medium Standard Container", "14872": "Brokara's Modified Kinetic Plating", "14874": "Tairei's Modified Kinetic Plating", "14876": "Selynne's Modified Kinetic Plating", "14878": "Raysere's Modified Kinetic Plating", "14880": "Vizan's Modified Kinetic Plating", "14882": "Ahremen's Modified Kinetic Plating", "14884": "Chelm's Modified Kinetic Plating", "14886": "Draclira's Modified Kinetic Plating", "14888": "Brokara's Modified Explosive Plating", "14890": "Tairei's Modified Explosive Plating", "14892": "Selynne's Modified Explosive Plating", "14894": "Raysere's Modified Explosive Plating", "14896": "Vizan's Modified Explosive Plating", "14898": "Ahremen's Modified Explosive Plating", "14900": "Chelm's Modified Explosive Plating", "14902": "Draclira's Modified Explosive Plating", "14904": "Brokara's Modified EM Plating", "14906": "Tairei's Modified EM Plating", "14908": "Selynne's Modified EM Plating", "14910": "Raysere's Modified EM Plating", "14912": "Vizan's Modified EM Plating", "14914": "Ahremen's Modified EM Plating", "14916": "Chelm's Modified EM Plating", "14918": "Draclira's Modified EM Plating", "14920": "Brokara's Modified Thermic Plating", "14922": "Tairei's Modified Thermic Plating", "14924": "Selynne's Modified Thermic Plating", "14926": "Raysere's Modified Thermic Plating", "14928": "Vizan's Modified Thermic Plating", "14930": "Ahremen's Modified Thermic Plating", "14932": "Chelm's Modified Thermic Plating", "14934": "Draclira's Modified Thermic Plating", "14936": "Brokara's Modified Energized Adaptive Nano Membrane", "14938": "Tairei's Modified Energized Adaptive Nano Membrane", "14940": "Selynne's Modified Energized Adaptive Nano Membrane", "14942": "Raysere's Modified Energized Adaptive Nano Membrane", "14944": "Vizan's Modified Energized Adaptive Nano Membrane", "14946": "Ahremen's Modified Energized Adaptive Nano Membrane", "14948": "Chelm's Modified Energized Adaptive Nano Membrane", "14950": "Draclira's Modified Energized Adaptive Nano Membrane", "14952": "Brokara's Modified Energized Thermic Membrane", "14954": "Tairei's Modified Energized Thermic Membrane", "14956": "Selynne's Modified Energized Thermic Membrane", "14958": "Raysere's Modified Energized Thermic Membrane", "14960": "Vizan's Modified Energized Thermic Membrane", "14962": "Ahremen's Modified Energized Thermic Membrane", "14964": "Chelm's Modified Energized Thermic Membrane", "14966": "Draclira's Modified Energized Thermic Membrane", "14968": "Brokara's Modified Energized EM Membrane", "14970": "Tairei's Modified Energized EM Membrane", "14972": "Selynne's Modified Energized EM Membrane", "14974": "Raysere's Modified Energized EM Membrane", "14976": "Vizan's Modified Energized EM Membrane", "14978": "Ahremen's Modified Energized EM Membrane", "14980": "Chelm's Modified Energized EM Membrane", "352022": "'Icarus' Basic Kinetic Catalyzer", "14982": "Draclira's Modified Energized EM Membrane", "14984": "Brokara's Modified Energized Explosive Membrane", "14986": "Tairei's Modified Energized Explosive Membrane", "14988": "Selynne's Modified Energized Explosive Membrane", "14990": "Raysere's Modified Energized Explosive Membrane", "14992": "Vizan's Modified Energized Explosive Membrane", "14994": "Ahremen's Modified Energized Explosive Membrane", "14996": "Chelm's Modified Energized Explosive Membrane", "14998": "Draclira's Modified Energized Explosive Membrane", "15000": "Brokara's Modified Energized Kinetic Membrane", "15002": "Tairei's Modified Energized Kinetic Membrane", "15004": "Selynne's Modified Energized Kinetic Membrane", "15006": "Raysere's Modified Energized Kinetic Membrane", "15008": "Vizan's Modified Energized Kinetic Membrane", "15010": "Ahremen's Modified Energized Kinetic Membrane", "15012": "Chelm's Modified Energized Kinetic Membrane", "15014": "Draclira's Modified Energized Kinetic Membrane", "15016": "Brokara's Modified Armor EM Hardener", "15018": "Tairei's Modified Armor EM Hardener", "15020": "Selynne's Modified Armor EM Hardener", "15022": "Raysere's Modified Armor EM Hardener", "15024": "Vizan's Modified Armor EM Hardener", "15026": "Ahremen's Modified Armor EM Hardener", "15028": "Chelm's Modified Armor EM Hardener", "15030": "Draclira's Modified Armor EM Hardener", "15032": "Brokara's Modified Armor Thermic Hardener", "15034": "Tairei's Modified Armor Thermic Hardener", "15036": "Selynne's Modified Armor Thermic Hardener", "15038": "Raysere's Modified Armor Thermic Hardener", "15040": "Vizan's Modified Armor Thermic Hardener", "352032": "Light Shield Booster I", "15042": "Ahremen's Modified Armor Thermic Hardener", "15044": "Chelm's Modified Armor Thermic Hardener", "15046": "Draclira's Modified Armor Thermic Hardener", "15048": "Brokara's Modified Armor Kinetic Hardener", "15050": "Tairei's Modified Armor Kinetic Hardener", "15052": "Selynne's Modified Armor Kinetic Hardener", "352034": "Shield Extender I", "15054": "Raysere's Modified Armor Kinetic Hardener", "15056": "Vizan's Modified Armor Kinetic Hardener", "15058": "Ahremen's Modified Armor Kinetic Hardener", "352035": "Heavy Shield Extender I", "15060": "Chelm's Modified Armor Kinetic Hardener", "15062": "Draclira's Modified Armor Kinetic Hardener", "15064": "Brokara's Modified Armor Explosive Hardener", "15066": "Tairei's Modified Armor Explosive Hardener", "15068": "Selynne's Modified Armor Explosive Hardener", "15070": "Raysere's Modified Armor Explosive Hardener", "15072": "Vizan's Modified Armor Explosive Hardener", "2512": "Mjolnir Rocket", "15074": "Ahremen's Modified Armor Explosive Hardener", "15076": "Chelm's Modified Armor Explosive Hardener", "15078": "Draclira's Modified Armor Explosive Hardener", "15080": "Brokara's Modified Capacitor Power Relay", "15082": "Tairei's Modified Capacitor Power Relay", "15084": "Selynne's Modified Capacitor Power Relay", "15086": "Raysere's Modified Capacitor Power Relay", "15088": "Vizan's Modified Capacitor Power Relay", "15090": "Ahremen's Modified Capacitor Power Relay", "15092": "Chelm's Modified Capacitor Power Relay", "15094": "Draclira's Modified Capacitor Power Relay", "15096": "Brokara's Modified Power Diagnostic System", "2516": "Nova Rocket", "15098": "Tairei's Modified Power Diagnostic System", "15100": "Selynne's Modified Power Diagnostic System", "15102": "Raysere's Modified Power Diagnostic System", "15104": "Vizan's Modified Power Diagnostic System", "15106": "Ahremen's Modified Power Diagnostic System", "15108": "Chelm's Modified Power Diagnostic System", "15110": "Draclira's Modified Power Diagnostic System", "15112": "Brokara's Modified Reactor Control Unit", "15114": "Tairei's Modified Reactor Control Unit", "15116": "Selynne's Modified Reactor Control Unit", "15118": "Raysere's Modified Reactor Control Unit", "15120": "Vizan's Modified Reactor Control Unit", "15122": "Ahremen's Modified Reactor Control Unit", "15124": "Chelm's Modified Reactor Control Unit", "15126": "Draclira's Modified Reactor Control Unit", "15128": "Brokara's Modified Heavy Capacitor Booster", "15130": "Tairei's Modified Heavy Capacitor Booster", "15132": "Selynne's Modified Heavy Capacitor Booster", "15134": "Raysere's Modified Heavy Capacitor Booster", "15136": "Vizan's Modified Heavy Capacitor Booster", "15138": "Ahremen's Modified Heavy Capacitor Booster", "15140": "Chelm's Modified Heavy Capacitor Booster", "15142": "Draclira's Modified Heavy Capacitor Booster", "15144": "Brynn's Modified Magnetic Field Stabilizer", "15146": "Tuvan's Modified Magnetic Field Stabilizer", "15148": "Setele's Modified Magnetic Field Stabilizer", "15150": "Cormack's Modified Magnetic Field Stabilizer", "15152": "Brynn's Modified Large Plasma Smartbomb", "15154": "Tuvan's Modified Large Plasma Smartbomb", "15156": "Setele's Modified Large Plasma Smartbomb", "15158": "Cormack's Modified Large Plasma Smartbomb", "15160": "Brynn's Modified Large Armor Repairer", "15161": "Tuvan's Modified Large Armor Repairer", "15162": "Setele's Modified Large Armor Repairer", "15163": "Cormack's Modified Large Armor Repairer", "15164": "Brynn's Modified Adaptive Nano Plating", "15166": "Tuvan's Modified Adaptive Nano Plating", "15168": "Setele's Modified Adaptive Nano Plating", "15170": "Cormack's Modified Adaptive Nano Plating", "15172": "Brynn's Modified Thermic Plating", "15174": "Tuvan's Modified Thermic Plating", "15176": "Setele's Modified Thermic Plating", "15178": "Cormack's Modified Thermic Plating", "15180": "Brynn's Modified EM Plating", "15182": "Tuvan's Modified EM Plating", "15184": "Setele's Modified EM Plating", "15186": "Cormack's Modified EM Plating", "15188": "Brynn's Modified Explosive Plating", "15190": "Tuvan's Modified Explosive Plating", "15192": "Setele's Modified Explosive Plating", "15194": "Cormack's Modified Explosive Plating", "15196": "Brynn's Modified Kinetic Plating", "15198": "Tuvan's Modified Kinetic Plating", "15200": "Setele's Modified Kinetic Plating", "15202": "Cormack's Modified Kinetic Plating", "15204": "Brynn's Modified Energized Adaptive Nano Membrane", "15206": "Tuvan's Modified Energized Adaptive Nano Membrane", "15208": "Setele's Modified Energized Adaptive Nano Membrane", "15210": "Cormack's Modified Energized Adaptive Nano Membrane", "15212": "Brynn's Modified Energized Thermic Membrane", "15214": "Tuvan's Modified Energized Thermic Membrane", "15216": "Setele's Modified Energized Thermic Membrane", "15218": "Cormack's Modified Energized Thermic Membrane", "15220": "Brynn's Modified Energized EM Membrane", "15222": "Tuvan's Modified Energized EM Membrane", "15224": "Setele's Modified Energized EM Membrane", "15226": "Cormack's Modified Energized EM Membrane", "15228": "Brynn's Modified Energized Explosive Membrane", "15230": "Tuvan's Modified Energized Explosive Membrane", "15232": "Setele's Modified Energized Explosive Membrane", "15234": "Cormack's Modified Energized Explosive Membrane", "15236": "Brynn's Modified Energized Kinetic Membrane", "15238": "Tuvan's Modified Energized Kinetic Membrane", "15240": "Setele's Modified Energized Kinetic Membrane", "15242": "Cormack's Modified Energized Kinetic Membrane", "15244": "Brynn's Modified Armor EM Hardener", "15246": "Tuvan's Modified Armor EM Hardener", "15248": "Setele's Modified Armor EM Hardener", "15250": "Cormack's Modified Armor EM Hardener", "15252": "Brynn's Modified Armor Thermic Hardener", "15254": "Tuvan's Modified Armor Thermic Hardener", "15256": "Setele's Modified Armor Thermic Hardener", "15258": "Cormack's Modified Armor Thermic Hardener", "15260": "Brynn's Modified Armor Kinetic Hardener", "15262": "Tuvan's Modified Armor Kinetic Hardener", "15264": "Setele's Modified Armor Kinetic Hardener", "15266": "Cormack's Modified Armor Kinetic Hardener", "15268": "Brynn's Modified Armor Explosive Hardener", "15270": "Tuvan's Modified Armor Explosive Hardener", "15272": "Setele's Modified Armor Explosive Hardener", "15274": "Cormack's Modified Armor Explosive Hardener", "15276": "Brynn's Modified Sensor Booster", "15278": "Tuvan's Modified Sensor Booster", "15280": "Setele's Modified Sensor Booster", "15282": "Cormack's Modified Sensor Booster", "15284": "Brynn's Modified Tracking Computer", "15286": "Tuvan's Modified Tracking Computer", "15288": "Setele's Modified Tracking Computer", "15290": "Cormack's Modified Tracking Computer", "15292": "Brynn's Modified Power Diagnostic System", "15294": "Tuvan's Modified Power Diagnostic System", "15296": "Setele's Modified Power Diagnostic System", "15298": "Cormack's Modified Power Diagnostic System", "15300": "Brynn's Modified Reactor Control Unit", "15302": "Tuvan's Modified Reactor Control Unit", "15304": "Setele's Modified Reactor Control Unit", "352076": "Power Diagnostic System I ", "15306": "Cormack's Modified Reactor Control Unit", "15308": "Brynn's Modified Co-Processor", "15310": "Tuvan's Modified Co-Processor", "15312": "Setele's Modified Co-Processor", "15314": "Cormack's Modified Co-Processor", "15316": "Galeptos Medicine", "15317": "Genetically Enhanced Livestock", "15318": "Top-Secret Design Documents", "15319": "Large Special Delivery", "15331": "Metal Scraps", "15353": "Research Tools", "15410": "Neophite", "15425": "Naiyon's Modified Co-Processor", "15447": "Shaqil's Modified Gyrostabilizer", "15451": "Shaqil's Modified Heavy Nosferatu", "15453": "Shaqil's Modified Energized Thermic Membrane", "15455": "Shaqil's Modified Energized Adaptive Nano Membrane", "15457": "Standard X-Instinct Booster", "15458": "Improved X-Instinct Booster", "15459": "Strong X-Instinct Booster", "15460": "Standard Frentix Booster", "15461": "Improved Frentix Booster", "15462": "Strong Frentix Booster", "15463": "Standard Mindflood Booster", "15464": "Improved Mindflood Booster", "15465": "Strong Mindflood Booster", "15466": "Standard Drop Booster", "15477": "Improved Drop Booster", "15478": "Strong Drop Booster", "15479": "Standard Exile Booster", "15480": "Improved Exile Booster", "15508": "Vespa I", "15509": "Vespa I Blueprint", "15510": "Valkyrie I", "15511": "Valkyrie I Blueprint", "15587": "Federation Navy Midshipman Insignia I", "15588": "Federation Navy Midshipman Insignia II", "15589": "Federation Navy Midshipman Insignia III", "15590": "Federation Navy Sergeant Insignia I", "15591": "Federation Navy Sergeant Major Insignia I", "15592": "Federation Navy Fleet Captain Insignia I", "15593": "Federation Navy Fleet Major Insignia I", "15594": "Federation Navy Fleet Colonel Insignia I", "15596": "Caldari Navy Midshipman Insignia I", "15597": "Caldari Navy Midshipman Insignia II", "15598": "Caldari Navy Midshipman Insignia III", "15599": "Caldari Navy Captain Insignia I", "15600": "Caldari Navy Captain Insignia II", "15601": "Caldari Navy Captain Insignia III", "15602": "Caldari Navy Commodore Insignia I", "15604": "Caldari Navy Admiral Insignia I", "15605": "Caldari Navy Vice Admiral Insignia I", "15607": "Imperial Navy Midshipman Insignia I", "15608": "Imperial Navy Midshipman Insignia II", "15609": "Imperial Navy Midshipman Insignia III", "15610": "Imperial Navy Sergeant Insignia I", "15611": "Imperial Navy Sergeant Major Insignia I", "15612": "Imperial Navy Captain Insignia I", "15613": "Imperial Navy Major Insignia I", "15614": "Imperial Navy Colonel Insignia I", "15615": "Imperial Navy General Insignia I", "15617": "Ammatar Navy Midshipman Insignia I", "15618": "Ammatar Navy Midshipman Insignia II", "15619": "Ammatar Navy Midshipman Insignia III", "15620": "Ammatar Navy Sergeant Insignia I", "15621": "Ammatar Navy Sergeant Major Insignia I", "15622": "Ammatar Navy Captain Insignia I", "15623": "Ammatar Navy Major Insignia I", "15625": "Republic Fleet Midshipman Insignia I", "15626": "Republic Fleet Midshipman Insignia II", "15627": "Republic Fleet Midshipman Insignia III", "15628": "Republic Fleet Private Insignia I", "15629": "Republic Fleet Private Insignia II", "15630": "Republic Fleet Captain Insignia I", "15631": "Republic Fleet High Captain Insignia I", "15632": "Republic Fleet Commander Insignia I", "15634": "Imperial Navy Squad Leader Insignia", "15635": "Imperial Navy Raid Leader Insignia", "15636": "Imperial Navy Sergeant Elite Insignia", "15637": "Yeni Sarum's Insignia", "15638": "Terachi Tash-Murkon's Insignia", "15639": "Karzo Sarum's Insignia", "15640": "Ammatar Navy Squad Leader Insignia", "15641": "Ammatar Navy Raid Leader Insignia", "15642": "Ammatar Navy Sergeant Elite Insignia", "15643": "Ammatar Navy Fleet Commander Insignia", "15644": "Zerim Kurzon's Insignia", "15645": "Jerek Zuomi's Insignia", "15646": "Federation Navy Command Sergeant Major Insignia I", "15647": "Federation Navy Squad Leader Insignia", "15648": "Federation Navy Raid Leader Insignia", "15649": "Federation Navy Sergeant Elite Insignia", "15650": "Federation Navy Fleet Commander Insignia", "15651": "Jerome Leman's Insignia", "15652": "Luther Veron's Insignia", "15653": "Caldari Navy Captain Elite Insignia", "15654": "Caldari Navy Squad Leader Insignia", "15655": "Caldari Navy Raid Leader Insignia", "15656": "Caldari Navy Commodore Insignia II", "15657": "Caldari Navy Fleet Commander Insignia", "15658": "Naiyon Tai's Insignia", "15659": "Mizuma Gomi's Insignia", "15660": "Republic Fleet Private Insignia III", "15661": "Republic Fleet Commander Insignia II", "15662": "Republic Fleet Squad Leader Insignia", "15663": "Republic Fleet Raid Leader Insignia", "15664": "Republic Fleet Navy Commander Insignia", "15666": "Republic Fleet Private Elite Insignia", "15667": "Kali Midez's Insignia", "15668": "Shaqil Dragat's Insignia", "15669": "Imperial Navy General Insignia II", "15670": "Imperial Navy Fleet Commander Insignia", "15671": "Ammatar Navy Colonel Insignia II", "15672": "Ammatar Navy Major Insignia II", "15673": "Federation Navy Fleet Colonel Insignia II", "15674": "Minmatar Freedom Fighter Insignia I", "15675": "Caldari Navy Co-Processor", "15676": "Caldari Navy Co-Processor Blueprint", "15677": "Federation Navy Co-Processor", "15678": "Federation Navy Co-Processor Blueprint", "15681": "Caldari Navy Ballistic Control System", "15682": "Caldari Navy Ballistic Control System Blueprint", "15683": "Republic Fleet Ballistic Control System", "15684": "Republic Fleet Ballistic Control System Blueprint", "15685": "Imperial Navy Thermic Plating", "15686": "Imperial Navy Thermic Plating Blueprint", "15687": "Imperial Navy EM Plating", "15688": "Imperial Navy Reflective Plating Blueprint", "15689": "Imperial Navy Explosive Plating", "15690": "Imperial Navy Reactive Plating Blueprint", "15691": "Imperial Navy Kinetic Plating", "15692": "Imperial Navy Magnetic Plating Blueprint", "15693": "Imperial Navy Adaptive Nano Plating", "15694": "Imperial Navy Adaptive Nano Plating Blueprint", "15695": "Republic Fleet Thermic Plating", "15696": "Republic Fleet Thermic Plating Blueprint", "15697": "Republic Fleet EM Plating", "15698": "Republic Fleet Reflective Plating Blueprint", "15699": "Republic Fleet Explosive Plating", "15700": "Republic Fleet Reactive Plating Blueprint", "15701": "Republic Fleet Kinetic Plating", "15702": "Republic Fleet Magnetic Plating Blueprint", "15703": "Republic Fleet Adaptive Nano Plating", "15704": "Republic Fleet Adaptive Nano Plating Blueprint", "15705": "Imperial Navy Armor Thermic Hardener", "15706": "Imperial Navy Armor Thermic Hardener Blueprint", "15707": "Imperial Navy Armor Kinetic Hardener", "15708": "Imperial Navy Armor Kinetic Hardener Blueprint", "15709": "Imperial Navy Armor Explosive Hardener", "15710": "Imperial Navy Armor Explosive Hardener Blueprint", "15711": "Imperial Navy Armor EM Hardener", "15712": "Imperial Navy Armor EM Hardener Blueprint", "15713": "Republic Fleet Armor Thermic Hardener", "15714": "Republic Fleet Armor Thermic Hardener Blueprint", "15715": "Republic Fleet Armor Kinetic Hardener", "15716": "Republic Fleet Armor Kinetic Hardener Blueprint", "15717": "Republic Fleet Armor Explosive Hardener", "15718": "Republic Fleet Armor Explosive Hardener Blueprint", "15719": "Republic Fleet Armor EM Hardener", "15720": "Republic Fleet Armor EM Hardener Blueprint", "15721": "Imperial Navy Energized Thermic Membrane", "15722": "Imperial Navy Energized Thermic Membrane Blueprint", "15723": "Imperial Navy Energized EM Membrane", "15724": "Imperial Navy Energized EM Membrane Blueprint", "15725": "Imperial Navy Energized Explosive Membrane", "15726": "Imperial Navy Energized Explosive Membrane Blueprint", "15727": "Imperial Navy Energized Kinetic Membrane", "15728": "Imperial Navy Energized Kinetic Membrane Blueprint", "15729": "Imperial Navy Energized Adaptive Nano Membrane", "15730": "Imperial Navy Energized Adaptive Nano Membrane Blueprint", "15731": "Federation Navy Energized Thermic Membrane", "15732": "Federation Navy Energized Thermic Membrane Blueprint", "15733": "Federation Navy Energized EM Membrane", "15734": "Federation Navy Energized EM Membrane Blueprint", "15735": "Federation Navy Energized Explosive Membrane", "15736": "Federation Navy Energized Explosive Membrane Blueprint", "15737": "Federation Navy Energized Kinetic Membrane", "15738": "Federation Navy Energized Kinetic Membrane Blueprint", "15739": "Federation Navy Energized Adaptive Nano Membrane", "15740": "Federation Navy Energized Adaptive Nano Membrane Blueprint", "15741": "Ammatar Navy Small Armor Repairer", "15742": "Ammatar Navy Medium Armor Repairer", "15743": "Ammatar Navy Large Armor Repairer", "15744": "Federation Navy Small Armor Repairer", "15745": "Federation Navy Medium Armor Repairer", "15746": "Federation Navy Large Armor Repairer", "15747": "Republic Fleet 1MN Microwarpdrive", "15748": "Republic Fleet 1MN Microwarpdrive Blueprint", "15749": "Republic Fleet 1MN Afterburner", "15750": "Republic Fleet 1MN Afterburner Blueprint", "15751": "Republic Fleet 10MN Microwarpdrive", "15752": "Republic Fleet 10MN Microwarpdrive Blueprint", "15753": "Republic Fleet 10MN Afterburner", "15754": "Republic Fleet 10MN Afterburner Blueprint", "15755": "Republic Fleet 100MN Microwarpdrive", "15756": "Republic Fleet 100MN Microwarpdrive Blueprint", "15757": "Republic Fleet 100MN Afterburner", "15758": "Republic Fleet 100MN Afterburner Blueprint", "15759": "Federation Navy 1MN Microwarpdrive", "15760": "Federation Navy 1MN Microwarpdrive Blueprint", "15761": "Federation Navy 1MN Afterburner", "15762": "Federation Navy 1MN Afterburner Blueprint", "15764": "Federation Navy 10MN Microwarpdrive", "15765": "Federation Navy 10MN Microwarpdrive Blueprint", "15766": "Federation Navy 10MN Afterburner", "15767": "Federation Navy 10MN Afterburner Blueprint", "15768": "Federation Navy 100MN Microwarpdrive", "15769": "Federation Navy 100MN Microwarpdrive Blueprint", "15770": "Federation Navy 100MN Afterburner", "15771": "Federation Navy 100MN Afterburner Blueprint", "15772": "Ammatar Navy Small Capacitor Booster", "15773": "Ammatar Navy Small Capacitor Booster Blueprint", "15774": "Ammatar Navy Micro Capacitor Booster", "15776": "Ammatar Navy Medium Capacitor Booster", "15777": "Ammatar Navy Medium Capacitor Booster Blueprint", "15778": "Ammatar Navy Heavy Capacitor Booster", "15779": "Ammatar Navy Heavy Capacitor Booster Blueprint", "15780": "Imperial Navy Small Capacitor Booster", "15781": "Imperial Navy Small Capacitor Booster Blueprint", "15782": "Imperial Navy Micro Capacitor Booster", "15783": "Imperial Navy Micro Capacitor Booster Blueprint", "15784": "Imperial Navy Medium Capacitor Booster", "15785": "Imperial Navy Medium Capacitor Booster Blueprint", "15786": "Imperial Navy Heavy Capacitor Booster", "15787": "Imperial Navy Heavy Capacitor Booster Blueprint", "15788": "Ammatar Navy Cap Recharger", "15789": "Ammatar Navy Cap Recharger Blueprint", "15790": "Caldari Navy Cloaking Device", "15791": "Caldari Navy Cloaking Device Blueprint", "15792": "Federation Navy Tracking Computer", "15793": "Federation Navy Tracking Computer Blueprint", "15794": "Ammatar Navy Small Energy Neutralizer", "15795": "Ammatar Navy Small Energy Neutralizer Blueprint", "15796": "Ammatar Navy Medium Energy Neutralizer", "15797": "Ammatar Navy Medium Energy Neutralizer Blueprint", "15798": "Ammatar Navy Heavy Energy Neutralizer", "15799": "Ammatar Navy Heavy Energy Neutralizer Blueprint", "15800": "Imperial Navy Small Energy Neutralizer", "15801": "Imperial Navy Small Energy Neutralizer Blueprint", "15802": "Imperial Navy Medium Energy Neutralizer", "15803": "Imperial Navy Medium Energy Neutralizer Blueprint", "15804": "Imperial Navy Heavy Energy Neutralizer", "15805": "Imperial Navy Heavy Energy Neutralizer Blueprint", "15806": "Republic Fleet Gyrostabilizer", "15807": "Republic Fleet Gyrostabilizer Blueprint", "15808": "Ammatar Navy Heat Sink", "15809": "Ammatar Navy Heat Sink Blueprint", "15810": "Imperial Navy Heat Sink", "15811": "Imperial Navy Heat Sink Blueprint", "15812": "Republic Fleet Overdrive Injector", "15813": "Republic Fleet Nanofiber Structure", "15814": "Caldari Navy Dual 250mm Railgun", "15815": "Caldari Navy Dual 150mm Railgun", "15816": "Caldari Navy 75mm Railgun", "15817": "Caldari Navy 425mm Railgun", "15818": "Caldari Navy 350mm Railgun", "15819": "Caldari Navy 350mm Railgun Blueprint", "15820": "Caldari Navy 250mm Railgun", "15821": "Caldari Navy 200mm Railgun", "15822": "Caldari Navy 200mm Railgun Blueprint", "15823": "Caldari Navy 150mm Railgun", "15824": "Caldari Navy 125mm Railgun", "15825": "Federation Navy Neutron Blaster Cannon", "15826": "Federation Navy Light Neutron Blaster", "15827": "Federation Navy Light Ion Blaster", "15828": "Federation Navy Light Electron Blaster", "15829": "Federation Navy Ion Blaster Cannon", "15830": "Federation Navy Heavy Neutron Blaster", "15831": "Federation Navy Heavy Ion Blaster", "15832": "Federation Navy Heavy Electron Blaster", "15833": "Federation Navy Electron Blaster Cannon", "15834": "Federation Navy Dual 250mm Railgun", "15835": "Federation Navy Dual 150mm Railgun", "15836": "Federation Navy 75mm Railgun", "15837": "Federation Navy 425mm Railgun", "15838": "Federation Navy 350mm Railgun", "15839": "Federation Navy 350mm Railgun Blueprint", "15840": "Federation Navy 250mm Railgun", "15841": "Federation Navy 200mm Railgun", "15842": "Federation Navy 200mm Railgun Blueprint", "15843": "Federation Navy 150mm Railgun", "15844": "Federation Navy 125mm Railgun", "15845": "Ammatar Navy Tachyon Beam Laser", "15846": "Ammatar Navy Quad Beam Laser", "15847": "Ammatar Navy Mega Pulse Laser", "15848": "Ammatar Navy Mega Beam Laser", "15849": "Ammatar Navy Small Focused Pulse Laser", "15850": "Ammatar Navy Small Focused Beam Laser", "15851": "Ammatar Navy Heavy Pulse Laser", "15852": "Ammatar Navy Heavy Beam Laser", "15853": "Ammatar Navy Gatling Pulse Laser", "15854": "Ammatar Navy Focused Medium Pulse Laser", "15855": "Ammatar Navy Focused Medium Beam Laser", "15856": "Ammatar Navy Dual Light Pulse Laser", "15857": "Ammatar Navy Dual Light Beam Laser", "15858": "Ammatar Navy Dual Heavy Pulse Laser", "15859": "Ammatar Navy Dual Heavy Beam Laser", "15860": "Imperial Navy Tachyon Beam Laser", "15861": "Imperial Navy Quad Beam Laser", "15862": "Imperial Navy Mega Pulse Laser", "15863": "Imperial Navy Mega Beam Laser", "15864": "Imperial Navy Small Focused Pulse Laser", "15865": "Imperial Navy Small Focused Beam Laser", "15866": "Imperial Navy Heavy Pulse Laser", "15867": "Imperial Navy Heavy Beam Laser", "15868": "Imperial Navy Gatling Pulse Laser", "15869": "Imperial Navy Focused Medium Pulse Laser", "15870": "Imperial Navy Focused Medium Beam Laser", "15871": "Imperial Navy Dual Light Pulse Laser", "15872": "Imperial Navy Dual Light Beam Laser", "15873": "Imperial Navy Dual Heavy Pulse Laser", "15874": "Imperial Navy Dual Heavy Beam Laser", "15875": "Ammatar Navy Small Nosferatu", "15876": "Ammatar Navy Small Nosferatu Blueprint", "15877": "Ammatar Navy Medium Nosferatu", "15878": "Ammatar Navy Medium Nosferatu Blueprint", "15879": "Ammatar Navy Heavy Nosferatu", "15880": "Ammatar Navy Heavy Nosferatu Blueprint", "15881": "Imperial Navy Small Nosferatu", "15882": "Imperial Navy Small Nosferatu Blueprint", "15883": "Imperial Navy Medium Nosferatu", "15884": "Imperial Navy Medium Nosferatu Blueprint", "15885": "Imperial Navy Heavy Nosferatu", "15886": "Imperial Navy Heavy Nosferatu Blueprint", "15887": "Caldari Navy Warp Scrambler", "15888": "Caldari Navy Warp Scrambler Blueprint", "15889": "Caldari Navy Warp Disruptor", "15890": "Caldari Navy Warp Disruptor Blueprint", "15891": "Republic Fleet Warp Disruptor", "15892": "Republic Fleet Warp Disruptor Blueprint", "15893": "Republic Fleet Warp Scrambler", "15894": "Republic Fleet Warp Scrambler Blueprint", "15895": "Federation Navy Magnetic Field Stabilizer", "15896": "Federation Navy Magnetic Field Stabilizer Blueprint", "15897": "Caldari Navy X-Large Shield Booster", "15898": "Caldari Navy Small Shield Booster", "15899": "Caldari Navy Medium Shield Booster", "15900": "Caldari Navy Large Shield Booster", "15901": "Republic Fleet X-Large Shield Booster", "15902": "Republic Fleet Small Shield Booster", "15903": "Republic Fleet Medium Shield Booster", "15904": "Republic Fleet Large Shield Booster", "15905": "Caldari Navy Shield Boost Amplifier", "15906": "Caldari Navy Shield Boost Amplifier Blueprint", "15907": "Republic Fleet Shield Boost Amplifier", "15908": "Republic Fleet Shield Boost Amplifier Blueprint", "15909": "Caldari Navy EM Ward Amplifier", "15910": "Caldari Navy EM Ward Amplifier Blueprint", "15911": "Caldari Navy Kinetic Deflection Amplifier", "15912": "Caldari Navy Kinetic Deflection Amplifier Blueprint", "15913": "Caldari Navy Thermic Dissipation Amplifier", "15914": "Caldari Navy Thermic Dissipation Amplifier Blueprint", "15915": "Caldari Navy Explosive Deflection Amplifier", "15916": "Caldari Navy Explosive Deflection Amplifier Blueprint", "15917": "Republic Fleet EM Ward Amplifier", "15918": "Republic Fleet EM Ward Amplifier Blueprint", "15919": "Republic Fleet Kinetic Deflection Amplifier", "15920": "Republic Fleet Kinetic Deflection Amplifier Blueprint", "15921": "Republic Fleet Thermic Dissipation Amplifier", "15922": "Republic Fleet Thermic Dissipation Amplifier Blueprint", "15923": "Republic Fleet Explosive Deflection Amplifier", "15924": "Republic Fleet Explosive Deflection Amplifier Blueprint", "15925": "Caldari Navy Small Graviton Smartbomb", "15926": "Caldari Navy Small Graviton Smartbomb Blueprint", "15927": "Caldari Navy Micro Graviton Smartbomb", "15928": "Caldari Navy Micro Graviton Smartbomb Blueprint", "15929": "Caldari Navy Medium Graviton Smartbomb", "15930": "Caldari Navy Medium Graviton Smartbomb Blueprint", "15931": "Caldari Navy Large Graviton Smartbomb", "15932": "Caldari Navy Large Graviton Smartbomb Blueprint", "15933": "Republic Fleet Micro Proton Smartbomb", "15935": "Republic Fleet Small Proton Smartbomb", "15936": "Republic Fleet Small Proton Smartbomb Blueprint", "15937": "Republic Fleet Medium Proton Smartbomb", "15938": "Republic Fleet Medium Proton Smartbomb Blueprint", "15939": "Republic Fleet Large Proton Smartbomb", "15940": "Republic Fleet Large Proton Smartbomb Blueprint", "15941": "Ammatar Navy Small EMP Smartbomb", "15942": "Ammatar Navy Small EMP Smartbomb Blueprint", "15943": "Ammatar Navy Micro EMP Smartbomb", "15945": "Ammatar Navy Medium EMP Smartbomb", "15946": "Ammatar Navy Medium EMP Smartbomb Blueprint", "15947": "Ammatar Navy Large EMP Smartbomb", "15948": "Ammatar Navy Large EMP Smartbomb Blueprint", "15949": "Federation Navy Small Plasma Smartbomb", "15950": "Federation Navy Small Plasma Smartbomb Blueprint", "15951": "Federation Navy Micro Plasma Smartbomb", "15953": "Federation Navy Medium Plasma Smartbomb", "15954": "Federation Navy Medium Plasma Smartbomb Blueprint", "15955": "Federation Navy Large Plasma Smartbomb", "15956": "Federation Navy Large Plasma Smartbomb Blueprint", "15957": "Imperial Navy Small EMP Smartbomb", "15958": "Imperial Navy Small EMP Smartbomb Blueprint", "15959": "Imperial Navy Micro EMP Smartbomb", "15960": "Imperial Navy Micro EMP Smartbomb Blueprint", "15961": "Imperial Navy Medium EMP Smartbomb", "15962": "Imperial Navy Medium EMP Smartbomb Blueprint", "15963": "Imperial Navy Large EMP Smartbomb", "15964": "Imperial Navy Large EMP Smartbomb Blueprint", "15965": "Republic Fleet Tracking Enhancer", "15966": "Republic Fleet Tracking Enhancer Blueprint", "15967": "Federation Navy Tracking Link", "15968": "Federation Navy Tracking Link Blueprint", "15979": "Ammatar Slave Trader Insignia", "15980": "Amarr Empire Slave Trader Insignia", "15981": "Khanid Slave Trader Insignia", "15992": "Imperial Navy Sergeant Insignia II", "15993": "Ammatar Navy Sergeant Insignia II", "15994": "Federation Navy Sergeant Insignia II", "15996": "Caldari Navy Captain Insignia IV", "15997": "Republic Fleet Private Insignia IV", "15998": "Republic Fleet Private Insignia V", "15999": "Caldari Navy Captain Insignia V", "16000": "Imperial Navy Sergeant Insignia III", "16001": "Ammatar Navy Sergeant Insignia III", "16002": "Federation Navy Sergeant Insignia III", "16003": "Eifyr and Co. 'Rogue' Navigation NN-605", "16004": "Eifyr and Co. 'Rogue' Evasive Maneuvering EM-705", "16005": "Eifyr and Co. 'Rogue' Fuel Conservation FC-805", "16006": "Eifyr and Co. 'Rogue' High Speed Maneuvering HS-905", "16008": "Eifyr and Co. 'Rogue' Acceleration Control AC-603", "16009": "Eifyr and Co. 'Rogue' Acceleration Control AC-605", "16029": "800mm Repeating Artillery II Blueprint", "16032": "150mm Light AutoCannon II Blueprint", "16041": "Colossal Sealed Cargo Containers", "16042": "Medium Sized Sealed Cargo Containers", "16043": "Giant Sealed Cargo Containers", "16044": "Small Sealed Cargo Containers", "16045": "Large Sealed Cargo Containers", "16046": "Republic Fleet 125mm Autocannon", "16047": "Republic Fleet 1200mm Artillery", "16048": "Republic Fleet 1400mm Howitzer Artillery", "16049": "Republic Fleet 150mm Autocannon", "16050": "Republic Fleet 200mm Autocannon", "16051": "Republic Fleet 220mm Autocannon", "16052": "Republic Fleet 250mm Artillery", "16053": "Republic Fleet 280mm Howitzer Artillery", "16054": "Republic Fleet 425mm Autocannon", "16055": "Republic Fleet 650mm Artillery", "16056": "Republic Fleet 720mm Howitzer Artillery", "16057": "Republic Fleet 800mm Repeating Artillery", "16058": "Republic Fleet Dual 180mm Autocannon", "16059": "Republic Fleet Dual 425mm Autocannon", "16060": "Republic Fleet Dual 650mm Repeating Artillery", "16061": "Caldari Navy Rapid Light Missile Launcher", "16062": "Caldari Navy Cruise Missile Launcher", "16063": "Caldari Navy Cruise Missile Launcher Blueprint", "16064": "Caldari Navy Heavy Missile Launcher", "16065": "Caldari Navy Rocket Launcher", "16066": "Caldari Navy Rocket Launcher Blueprint", "16067": "Caldari Navy Torpedo Launcher", "16068": "Caldari Navy Light Missile Launcher", "16069": "Remote Armor Repair Systems", "16118": "CONCORD Officer Emblem", "16119": "CONCORD Soldier Emblem", "16120": "CONCORD Piranha Emblem", "16121": "CONCORD Panther Emblem", "16122": "CONCORD Captain Emblem", "16123": "CONCORD Raptor Emblem", "16124": "CONCORD Colonel Emblem", "16125": "CONCORD General Emblem", "16126": "CONCORD Modified Cloaking Device", "2726": "Large Group of Janitors", "352221": "Energized Plating I", "2696": "Large Crates of Spirits", "16179": "Khanid Rookie Insignia", "16180": "Khanid Fighter Insignia", "16181": "Khanid Elite Fighter Insignia", "16182": "Khanid Scout Insignia", "16183": "Khanid Sparrow Insignia", "16184": "Khanid Officer Insignia", "16185": "Khanid Hawk Insignia", "16186": "Khanid Eagle Insignia", "16187": "Khanid Warbird Insignia", "16188": "Khanid High Commander Insignia", "16189": "Khanid Royal Insignia", "16194": "Mercenary Pilot", "16213": "Caldari Control Tower", "16214": "Minmatar Control Tower", "16216": "Mobile Laboratory", "16220": "Rapid Equipment Assembly Array", "16221": "Moon Harvesting Array", "16227": "Ferox", "16228": "Ferox Blueprint", "16229": "Brutix", "16230": "Brutix Blueprint", "16231": "Cyclone", "16232": "Cyclone Blueprint", "16233": "Prophecy", "16234": "Prophecy Blueprint", "16236": "Coercer", "16237": "Coercer Blueprint", "16238": "Cormorant", "16239": "Cormorant Blueprint", "16240": "Catalyst", "16241": "Catalyst Blueprint", "16242": "Thrasher", "16243": "Thrasher Blueprint", "16245": "Zainou 'Gnome' Shield Upgrades SU-605", "16246": "Zainou 'Gnome' Shield Management SM-705", "16247": "Zainou 'Gnome' Shield Emission Systems SE-805", "16248": "Zainou 'Gnome' Shield Operation SP-905", "16249": "Zainou 'Gnome' Weapon Upgrades WU-1005", "16253": "Minmatar Emissary", "16262": "Clear Icicle", "16263": "Glacial Mass", "16264": "Blue Ice", "16265": "White Glaze", "16266": "Glare Crust", "16267": "Dark Glitter", "16268": "Gelidus", "16269": "Krystallos", "16272": "Heavy Water", "16273": "Liquid Ozone", "16274": "Helium Isotopes", "16275": "Strontium Clathrates", "16278": "Ice Harvester I", "16279": "Ice Harvester I Blueprint", "16281": "Ice Harvesting", "16297": "'Accord' Core Compensation", "16299": "'Repose' Core Compensation", "16301": "'Stoic' Core Equalizer I", "16303": "'Halcyon' Core Equalizer I", "16305": "Upgraded Adaptive Nano Plating I", "16307": "Limited Adaptive Nano Plating I", "16309": "'Collateral' Adaptive Nano Plating I", "16311": "'Refuge' Adaptive Nano Plating I", "16313": "Upgraded Kinetic Plating I", "16315": "Limited Kinetic Plating I", "16317": "Experimental Kinetic Plating I", "16319": "'Aegis' Explosive Plating I", "16321": "Upgraded Explosive Plating I", "16323": "Limited Explosive Plating I", "16325": "Experimental Explosive Plating I", "16327": "'Element' Kinetic Plating I", "16329": "Upgraded EM Plating I", "16331": "Limited EM Plating I", "16333": "'Contour' EM Plating I", "16335": "'Spiegel' EM Plating I", "16337": "Upgraded Thermic Plating I", "16339": "Limited Thermic Plating I", "16341": "Experimental Thermic Plating I", "16343": "Prototype Thermic Plating I", "16345": "Upgraded Layered Plating I", "16347": "Limited Layered Plating I", "16349": "'Scarab' Layered Plating I", "16351": "'Grail' Layered Plating I", "16353": "Upgraded Armor EM Hardener I", "16355": "Limited Armor EM Hardener I", "16357": "Experimental Armor EM Hardener I", "16359": "Prototype Armor EM Hardener I", "16361": "Upgraded Armor Explosive Hardener I", "16363": "Limited Armor Explosive Hardener I", "16365": "Experimental Armor Explosive Hardener I", "16367": "Prototype Armor Explosive Hardener I", "16369": "Upgraded Armor Kinetic Hardener I", "16371": "Limited Armor Kinetic Hardener I", "16373": "Experimental Armor Kinetic Hardener I", "16375": "Prototype Armor Kinetic Hardener I", "16377": "Upgraded Armor Thermic Hardener I", "16379": "Limited Armor Thermic Hardener I", "16381": "Experimental Armor Thermic Hardener I", "16383": "Prototype Armor Thermic Hardener I", "16385": "Upgraded Energized Adaptive Nano Membrane I", "16387": "Limited Energized Adaptive Nano Membrane I", "16389": "Experimental Energized Adaptive Nano Membrane I", "16391": "Prototype Energized Adaptive Nano Membrane I", "16393": "Upgraded Energized Kinetic Membrane I", "16395": "Limited Energized Kinetic Membrane I", "16397": "Experimental Energized Kinetic Membrane I", "16399": "Prototype Energized Kinetic Membrane I", "16401": "Upgraded Energized Explosive Membrane I", "16403": "Limited Energized Explosive Membrane I", "16405": "Experimental Energized Explosive Membrane I", "16407": "Prototype Energized Explosive Membrane I", "16409": "Upgraded Energized EM Membrane I", "16411": "Limited Energized EM Membrane I", "16413": "Experimental Energized EM Membrane I", "16415": "Prototype Energized EM Membrane I", "16417": "Upgraded Energized Armor Layering Membrane I", "16419": "Limited Energized Armor Layering Membrane I", "16421": "Experimental Energized Armor Layering Membrane I", "16423": "Prototype Energized Armor Layering Membrane I", "16425": "Upgraded Energized Thermic Membrane I", "16427": "Limited Energized Thermic Membrane I", "16429": "Experimental Energized Thermic Membrane I", "16431": "Prototype Energized Thermic Membrane I", "16433": "Small I-ax Regenerative Projector", "16435": "Small Coaxial Regenerative Projector", "16437": "Small 'Arup' Remote Bulwark Reconstruction", "16439": "Small 'Solace' Remote Bulwark Reconstruction", "16441": "Medium I-ax Regenerative Projector", "16443": "Medium Coaxial Regenerative Projector", "16445": "Medium 'Arup' Remote Bulwark Reconstruction", "16447": "Medium 'Solace' Remote Bulwark Reconstruction", "16449": "Large I-ax Regenerative Projector", "16451": "Large Coaxial Regenerative Projector", "16453": "Large 'Arup' Remote Bulwark Reconstruction", "16455": "Large 'Solace' Remote Bulwark Reconstruction", "16457": "Cross-linked Bolt Array I", "16459": "Muon Coil Bolt Array I", "16461": "Multiphasic Bolt Array I", "16463": "'Pandemonium' Ballistic Enhancement", "16465": "Medium Rudimentary Energy Destabilizer I", "16467": "Medium 'Gremlin' Power Core Disruptor I", "16469": "50W Infectious Power System Malfunction", "16471": "Medium Unstable Power Fluctuator I", "16473": "Heavy Rudimentary Energy Destabilizer I", "16475": "Heavy 'Gremlin' Power Core Disruptor I", "16477": "500W Infectious Power System Malfunction", "16479": "Heavy Unstable Power Fluctuator I", "16481": "Large Asymmetric Energy Succor I", "16483": "Large Murky Energy Transmitter I", "16485": "Large Partial E95c Power Conduit", "16487": "Large 'Regard' Power Projector", "16489": "Medium Asymmetric Energy Succor I", "16491": "Medium Murky Energy Transmitter I", "16493": "Medium Partial E95b Power Conduit", "16495": "Medium 'Regard' Power Projector", "16497": "Heavy 'Ghoul' Energy Siphon I", "16499": "Heavy 'Knave' Energy Drain", "16501": "E500 Prototype Energy Vampire", "16503": "Heavy Diminishing Power System Drain I", "16505": "Medium 'Ghoul' Energy Siphon I", "16507": "Medium 'Knave' Energy Drain", "16509": "E50 Prototype Energy Vampire", "2946": "Dual 425mm AutoCannon II Blueprint", "16511": "Medium Diminishing Power System Drain I", "16513": "'Malkuth' Cruise Launcher I", "16515": "'Limos' Cruise Launcher I", "16517": "XT-9000 Cruise Launcher", "16519": "'Arbalest' Cruise Launcher I", "16521": "'Malkuth' Rocket Launcher I", "16523": "'Limos' Rocket Launcher I", "16525": "OE-5200 Rocket Launcher", "16527": "'Arbalest' Rocket Launcher I", "16529": "Ionic Field Accelerator I", "16531": "5a Prototype Shield Support I", "16533": "'Stalwart' Particle Field Magnifier", "16535": "'Copasetic' Particle Field Acceleration", "16537": "Micro B66 Core Augmentation", "16539": "Micro B88 Core Augmentation", "16541": "Micro K-Exhaust Core Augmentation", "16543": "Micro 'Vigor' Core Augmentation", "356471": "Conscript Tracking Enhancer I", "16591": "Heavy Assault Ships", "16593": "Angel Cartel Prisoners", "16594": "Procurement", "16595": "Daytrading", "16596": "Wholesale", "16597": "Margin Trading", "16598": "Marketing", "16599": "Brokara's Modified Cap Recharger", "16601": "Selynne's Modified Cap Recharger", "16603": "Vizan's Modified Cap Recharger", "16605": "Chelm's Modified Cap Recharger", "352293": "Shield Hardener I", "16614": "Message from the Governor", "16617": "CONCORD Star Emblem", "16622": "Accounting", "16623": "The Chief of Security", "16630": "The Militia Leader", "16631": "Small Artillery Battery", "16633": "Hydrocarbons", "16634": "Atmospheric Gases", "16635": "Evaporite Deposits", "16636": "Silicates", "16637": "Tungsten", "16638": "Titanium", "16639": "Scandium", "16640": "Cobalt", "16641": "Chromium", "16642": "Vanadium", "16643": "Cadmium", "16644": "Platinum", "16646": "Mercury", "16647": "Caesium", "16648": "Hafnium", "16649": "Technetium", "16650": "Dysprosium", "16651": "Neodymium", "16652": "Promethium", "16653": "Thulium", "16654": "Titanium Chromide", "16655": "Crystallite Alloy", "16656": "Fernite Alloy", "16657": "Rolled Tungsten Alloy", "16658": "Silicon Diborite", "16659": "Carbon Polymers", "16660": "Ceramic Powder", "16661": "Sulfuric Acid", "16662": "Platinum Technite", "16663": "Caesarium Cadmide", "16664": "Solerium", "16665": "Hexite", "16666": "Hyperflurite", "16667": "Neo Mercurite", "16668": "Dysporite", "16669": "Ferrofluid", "16670": "Crystalline Carbonide", "16671": "Titanium Carbide", "16672": "Tungsten Carbide", "16673": "Fernite Carbide", "16678": "Sylramic Fibers", "16679": "Fullerides", "16680": "Phenolic Composites", "16681": "Nanotransistors", "16682": "Hypersynaptic Fibers", "16683": "Ferrogel", "16686": "Manufacturing Tools", "16688": "Medium Artillery Battery", "16689": "Large Artillery Battery", "16690": "Small Railgun Battery", "16691": "Medium Railgun Battery", "16692": "Large Railgun Battery", "16694": "Large Beam Laser Battery", "16696": "Cruise Missile Battery", "16697": "Torpedo Battery", "16712": "Novice Medal", "16713": "Intermediate Medal", "16714": "Legends Medal", "16832": "Sansha Data Sheets", "16868": "Standard Blue Pill Booster Reaction", "16869": "Complex Reactor Array", "17136": "Ukomi Superconductors", "17143": "Gallentean Planetary Vehicles", "17167": "Small Beam Laser Battery", "17168": "Medium Beam Laser Battery", "2862": "Special Forces Weapons and Equipment ", "17174": "Ion Field Projection Battery", "17175": "Phase Inversion Battery", "17176": "Spatial Destabilization Battery", "17177": "White Noise Generation Battery", "17178": "Stasis Webification Battery", "17180": "Sensor Dampening Battery", "17181": "Warp Disruption Battery", "17182": "Warp Scrambling Battery", "17184": "Ballistic Deflection Array", "17185": "Explosion Dampening Array", "17186": "Heat Dissipation Array", "17187": "Photon Scattering Array", "17190": "Angel Bronze Tag", "17192": "Angel Diamond Tag", "17194": "Angel Gold Tag", "17196": "Angel Platinum Tag", "17199": "Angel Electrum Tag", "17200": "Blood Copper Tag", "17201": "Blood Diamond Tag", "17202": "Blood Palladium Tag", "17203": "Blood Electrum Tag", "17204": "Blood Brass Tag", "17205": "Guristas Copper Tag", "17206": "Guristas Diamond Tag", "17207": "Guristas Brass Tag", "17208": "Guristas Palladium Tag", "17209": "Guristas Electrum Tag", "17210": "Sansha Copper Tag", "17211": "Sansha Diamond Tag", "17212": "Sansha Brass Tag", "17213": "Sansha Palladium Tag", "17214": "Sansha Electrum Tag", "17215": "Serpentis Copper Tag", "17216": "Serpentis Diamond Tag", "17217": "Serpentis Brass Tag", "17218": "Serpentis Palladium Tag", "17219": "Serpentis Electrum Tag", "17220": "Domination Brass Tag", "17221": "Domination Bronze Tag", "17222": "Domination Copper Tag", "17223": "Domination Crystal Tag", "17224": "Domination Diamond Tag", "17225": "Domination Electrum Tag", "17226": "Domination Gold Tag", "17227": "Domination Palladium Tag", "17229": "Domination Platinum Tag", "17230": "Domination Silver Tag", "17231": "Dark Blood Brass Tag", "17232": "Dark Blood Bronze Tag", "17233": "Dark Blood Copper Tag", "17234": "Dark Blood Crystal Tag", "17235": "Dark Blood Diamond Tag", "17236": "Dark Blood Electrum Tag", "17237": "Dark Blood Palladium Tag", "17238": "Dark Blood Gold Tag", "17239": "Dark Blood Silver Tag", "17240": "Dark Blood Platinum Tag", "17241": "Dread Guristas Brass Tag", "17242": "Dread Guristas Bronze Tag", "17243": "Dread Guristas Copper Tag", "17244": "Dread Guristas Crystal Tag", "17245": "Dread Guristas Diamond Tag", "17247": "Dread Guristas Electrum Tag", "17248": "Dread Guristas Gold Tag", "17249": "Dread Guristas Palladium Tag", "17250": "Dread Guristas Platinum Tag", "17251": "Dread Guristas Silver Tag", "17252": "True Sansha Brass Tag", "17253": "True Sansha Bronze Tag", "17254": "True Sansha Copper Tag", "17255": "True Sansha Crystal Tag", "17256": "True Sansha Diamond Tag", "17257": "True Sansha Electrum Tag", "17258": "True Sansha Gold Tag", "17259": "True Sansha Palladium Tag", "17260": "True Sansha Platinum Tag", "17261": "True Sansha Silver Tag", "17262": "Shadow Serpentis Brass Tag", "17263": "Shadow Serpentis Bronze Tag", "17264": "Shadow Serpentis Copper Tag", "17266": "Shadow Serpentis Crystal Tag", "17267": "Shadow Serpentis Diamond Tag", "17268": "Shadow Serpentis Electrum Tag", "17269": "Shadow Serpentis Palladium Tag", "17270": "Shadow Serpentis Gold Tag", "17271": "Shadow Serpentis Platinum Tag", "17272": "Shadow Serpentis Silver Tag", "17287": "Chelm Soran's Tag", "17288": "Vizan Ankonin's Tag", "17289": "Selynne Mardakar's Tag", "17290": "Brokara Ryver's Tag", "17291": "Cormack Vaaja's Tag", "17292": "Setele Schellan's Tag", "17293": "Tuvan Orth's Tag", "17294": "Brynn Jerdola's Tag", "17295": "Estamel Tharchon's Tag", "17296": "Vepas Minimala's Tag", "17297": "Thon Eney's Tag", "17298": "Kaikka Peunato's Tag", "17299": "Draclira Merlonne's Tag", "17300": "Ahremen Arkah's Tag", "17301": "Raysere Giant's Tag", "17302": "Tairei Namazoth's Tag", "17303": "Tobias Kruzhor's Tag", "17304": "Gotan Kreiss's Tag", "17305": "Hakim Stormare's Tag", "17306": "Mizuro Cybon's Tag", "17317": "Fermionic Condensates", "17322": "Thermonuclear Trigger Unit Blueprint", "17323": "Crystalline Carbonide Armor Plate Blueprint", "17324": "Plasma Thruster Blueprint", "17325": "Nanomechanical Microprocessor Blueprint", "17326": "Nuclear Pulse Generator Blueprint", "17327": "Scalar Capacitor Unit Blueprint", "17328": "Titanium Diborite Armor Plate Blueprint", "17329": "Ion Thruster Blueprint", "17330": "Nanoelectrical Microprocessor Blueprint", "17331": "Fusion Reactor Unit Blueprint", "17332": "Graviton Pulse Generator Blueprint", "17333": "Ladar Sensor Cluster Blueprint", "17334": "Tesseract Capacitor Unit Blueprint", "17335": "EM Pulse Generator Blueprint", "17336": "Radar Sensor Cluster Blueprint", "17337": "Oscillator Capacitor Unit Blueprint", "17338": "Antimatter Reactor Unit Blueprint", "17339": "Plasma Pulse Generator Blueprint", "17340": "Gravimetric Sensor Cluster Blueprint", "17341": "Pulse Shield Emitter Blueprint", "17342": "Nuclear Reactor Unit Blueprint", "17344": "Particle Accelerator Unit Blueprint", "17345": "Magnetometric Sensor Cluster Blueprint", "17346": "Deflection Shield Emitter Blueprint", "17347": "Electrolytic Capacitor Unit Blueprint", "17348": "Laser Focusing Crystals Blueprint", "17349": "Fusion Thruster Blueprint", "17350": "Tungsten Carbide Armor Plate Blueprint", "17351": "Quantum Microprocessor Blueprint", "17352": "Sustained Shield Emitter Blueprint", "17353": "Graviton Reactor Unit Blueprint", "17354": "Superconductor Rails Blueprint", "17355": "Fernite Carbide Composite Armor Plate Blueprint", "17356": "Magpulse Thruster Blueprint", "17357": "Photon Microprocessor Blueprint", "17359": "Linear Shield Emitter Blueprint", "17363": "Small Audit Log Secure Container", "17364": "Medium Audit Log Secure Container", "17365": "Large Audit Log Secure Container", "17366": "Station Container", "17367": "Station Vault Container", "17368": "Station Warehouse Container", "17391": "Ulamon's Data Chip", "17392": "Data Chips", "2899": "Custom Circuitry", "17402": "Large Blaster Battery", "17403": "Medium Blaster Battery", "17404": "Small Blaster Battery", "17406": "Large Pulse Laser Battery", "17407": "Medium Pulse Laser Battery", "17408": "Small Pulse Laser Battery", "17409": "Former Slaves", "17423": "Gallente 106 Election Holoreel", "17424": "Amarrian Wheat", "17425": "Crimson Arkonor", "17426": "Prime Arkonor", "17428": "Triclinic Bistot", "17429": "Monoclinic Bistot", "17432": "Sharp Crokite", "17433": "Crystalline Crokite", "17436": "Onyx Ochre", "17437": "Obsidian Ochre", "17440": "Vitric Hedbergite", "17441": "Glazed Hedbergite", "17444": "Vivid Hemorphite", "17445": "Radiant Hemorphite", "17448": "Pure Jaspet", "17449": "Pristine Jaspet", "17452": "Luminous Kernite", "17453": "Fiery Kernite", "17455": "Azure Plagioclase", "17456": "Rich Plagioclase", "17459": "Solid Pyroxeres", "17460": "Viscous Pyroxeres", "17463": "Condensed Scordite", "17464": "Massive Scordite", "17466": "Bright Spodumain", "17467": "Gleaming Spodumain", "17470": "Concentrated Veldspar", "17471": "Dense Veldspar", "17475": "Radioactive Waste", "17476": "Covetor", "17477": "Covetor Blueprint", "17478": "Retriever", "17479": "Retriever Blueprint", "17480": "Procurer", "17481": "Procurer Blueprint", "17482": "Strip Miner I", "17483": "Strip Miner I Blueprint", "17484": "Republic Fleet Rapid Light Missile Launcher", "17485": "Republic Fleet Cruise Missile Launcher", "17486": "Republic Fleet Cruise Missile Launcher Blueprint", "17487": "Republic Fleet Heavy Missile Launcher", "17488": "Republic Fleet Rocket Launcher", "17489": "Republic Fleet Rocket Launcher Blueprint", "17490": "Republic Fleet Torpedo Launcher", "17491": "Republic Fleet Light Missile Launcher", "17492": "Republic Fleet Large Armor Repairer", "17493": "Republic Fleet Medium Armor Repairer", "17494": "Republic Fleet Small Armor Repairer", "17495": "Caldari Navy Kinetic Deflection Field", "17496": "Caldari Navy Explosive Deflection Field", "17497": "Caldari Navy Thermic Dissipation Field", "17498": "Caldari Navy Adaptive Invulnerability Field", "17499": "Caldari Navy EM Ward Field", "17500": "Caldari Navy Stasis Webifier", "17501": "Caldari Navy Stasis Webifier Blueprint", "17502": "Ammatar Navy Armor EM Hardener", "17503": "Ammatar Navy Armor EM Hardener Blueprint", "17504": "Ammatar Navy Armor Explosive Hardener", "17505": "Ammatar Navy Armor Explosive Hardener Blueprint", "17506": "Ammatar Navy Armor Kinetic Hardener", "17507": "Ammatar Navy Armor Kinetic Hardener Blueprint", "17508": "Ammatar Navy Armor Thermic Hardener", "17509": "Ammatar Navy Armor Thermic Hardener Blueprint", "17510": "Ammatar Navy Capacitor Power Relay", "17511": "Ammatar Navy Capacitor Power Relay Blueprint", "17512": "Ammatar Navy Kinetic Plating", "17513": "Ammatar Navy Kinetic Plating Blueprint", "17514": "Ammatar Navy Adaptive Nano Plating", "17515": "Ammatar Navy Adaptive Nano Plating Blueprint", "17516": "Ammatar Navy Explosive Plating", "17517": "Ammatar Navy Explosive Plating Blueprint", "17518": "Ammatar Navy EM Plating", "17519": "Ammatar Navy EM Plating Blueprint", "17520": "Federation Navy Sensor Booster", "17521": "Federation Navy Sensor Booster Blueprint", "17522": "Ammatar Navy Reactor Control Unit", "17523": "Ammatar Navy Reactor Control Unit Blueprint", "17524": "Ammatar Navy Power Diagnostic System", "17525": "Ammatar Navy Power Diagnostic System Blueprint", "17526": "Imperial Navy Cap Recharger", "17527": "Imperial Navy Cap Recharger Blueprint", "17528": "Imperial Navy Capacitor Power Relay", "17529": "Imperial Navy Capacitor Power Relay Blueprint", "17536": "Ammatar Navy Energized Adaptive Nano Membrane", "17537": "Ammatar Navy Energized Adaptive Nano Membrane Blueprint", "17538": "Ammatar Navy Energized Kinetic Membrane", "17539": "Ammatar Navy Energized Kinetic Membrane Blueprint", "17540": "Ammatar Navy Energized Explosive Membrane", "17541": "Ammatar Navy Energized Explosive Membrane Blueprint", "17542": "Ammatar Navy Energized EM Membrane", "17543": "Ammatar Navy Energized EM Membrane Blueprint", "17544": "Ammatar Navy Energized Thermic Membrane", "17545": "Ammatar Navy Energized Thermic Membrane Blueprint", "17546": "Imperial Navy Large Armor Repairer", "17547": "Imperial Navy Medium Armor Repairer", "17548": "Imperial Navy Small Armor Repairer", "17549": "Federation Navy Adaptive Nano Plating", "17550": "Federation Navy Adaptive Nano Plating Blueprint", "17551": "Federation Navy Kinetic Plating", "17552": "Federation Navy Magnetic Plating Blueprint", "17553": "Federation Navy Explosive Plating", "17554": "Federation Navy Reactive Plating Blueprint", "17555": "Federation Navy EM Plating", "17556": "Federation Navy Reflective Plating Blueprint", "17557": "Federation Navy Thermic Plating", "17558": "Federation Navy Thermic Plating Blueprint", "17559": "Federation Navy Stasis Webifier", "17561": "Federation Navy Stasis Webifier Blueprint", "17619": "Caldari Navy Hookbill", "17620": "Caldari Navy Hookbill Blueprint", "17621": "Corporate Hangar Array", "17623": "Jenmei's Tag", "17624": "Elena Gazky's DNA", "17630": "Imai Kenon's Tag", "17634": "Caracal Navy Issue", "17635": "Caracal Navy Issue Blueprint", "17636": "Raven Navy Issue", "17637": "Raven Navy Issue Blueprint", "17639": "Taisu Magdesh's Insignia", "17640": "Mordur's DNA", "17642": "Raelek's Tag", "17643": "Caldari AZ-1 Nexus Chip", "17646": "Caldari CU-1 Nexus Chip", "17647": "Caldari BY-1 Nexus Chip", "17648": "Antimatter Charge XL", "17649": "Antimatter Charge XL Blueprint", "17650": "Iridium Charge XL", "17651": "Iridium Charge XL Blueprint", "17652": "Iron Charge XL", "17653": "Iron Charge XL Blueprint", "17654": "Lead Charge XL", "17655": "Lead Charge XL Blueprint", "17656": "Plutonium Charge XL", "17657": "Plutonium Charge XL Blueprint", "17658": "Thorium Charge XL", "17659": "Thorium Charge XL Blueprint", "17660": "Tungsten Charge XL", "17661": "Tungsten Charge XL Blueprint", "17662": "Uranium Charge XL", "17663": "Uranium Charge XL Blueprint", "17664": "Carbonized Lead XL", "17665": "Carbonized Lead XL Blueprint", "17666": "Depleted Uranium XL", "17667": "Depleted Uranium XL Blueprint", "17668": "EMP XL", "17669": "EMP XL Blueprint", "17670": "Fusion XL", "17671": "Fusion XL Blueprint", "17672": "Nuclear XL", "17673": "Nuclear XL Blueprint", "17674": "Phased Plasma XL", "17675": "Phased Plasma XL Blueprint", "17676": "Proton XL", "17677": "Proton XL Blueprint", "17678": "Titanium Sabot XL", "17679": "Titanium Sabot XL Blueprint", "17680": "Gamma XL", "17681": "Gamma XL Blueprint", "17682": "Infrared XL", "17683": "Infrared XL Blueprint", "17684": "Microwave XL", "17685": "Microwave XL Blueprint", "17686": "Multifrequency XL", "17687": "Multifrequency XL Blueprint", "17688": "Radio XL", "17689": "Radio XL Blueprint", "17690": "Standard XL", "17691": "Standard XL Blueprint", "17692": "Ultraviolet XL", "17693": "Ultraviolet XL Blueprint", "17694": "Xray XL", "17695": "Xray XL Blueprint", "17701": "Tracking Array", "17703": "Imperial Navy Slicer", "17704": "Imperial Navy Slicer Blueprint", "17709": "Omen Navy Issue", "17710": "Omen Navy Issue Blueprint", "17713": "Stabber Fleet Issue", "17714": "Stabber Fleet Issue Blueprint", "17715": "Gila", "17716": "Gila Blueprint", "17718": "Phantasm", "17719": "Phantasm Blueprint", "17720": "Cynabal", "17721": "Cynabal Blueprint", "17722": "Vigilant", "17723": "Vigilant Blueprint", "17726": "Apocalypse Navy Issue", "17727": "Apocalypse Navy Issue Blueprint", "17728": "Megathron Navy Issue", "17729": "Megathron Navy Issue Blueprint", "17732": "Tempest Fleet Issue", "17733": "Tempest Fleet Issue Blueprint", "17736": "Nightmare", "17737": "Nightmare Blueprint", "17738": "Machariel", "17739": "Machariel Blueprint", "17740": "Vindicator", "17741": "Vindicator Blueprint", "17743": "Uleen Bloodsworn's Tag", "2958": "Civilian SIGINT Contractors", "17754": "Activists", "17755": "Pro-Trade Pamphlets", "17756": "Virgin Forest Pulp", "17757": "Bronze Sculpture", "17759": "Silver Sculpture", "17761": "Gold Sculpture", "17765": "Exotic Dancers, Female", "17767": "Kameiras", "17769": "Fluxed Condensates", "17770": "Large AutoCannon Battery", "17771": "Medium AutoCannon Battery", "17772": "Small AutoCannon Battery", "17773": "Citadel Torpedo Battery", "2963": "Quantrium Wiring", "2964": "Aerogel Counteragent", "17791": "Freedom Fighters", "17793": "Amarr TIL-1 Nexus Chip", "17794": "Amarr KIU-1 Nexus Chip", "17795": "Amarr MIY-1 Nexus Chip", "17796": "Elite Slaves", "17801": "Akori's Insignia", "17802": "Ibrahim's Insignia", "17803": "Karothas's Insignia", "17812": "Republic Fleet Firetail", "17813": "Republic Fleet Firetail Blueprint", "17814": "Minmatar UUC Nexus Chip", "17815": "Minmatar UUA Nexus Chip", "17816": "Minmatar UUB Nexus Chip", "17817": "Genom Tara's Insignia", "17826": "Traffic Management Passkey", "17827": "Serpentis Staff Passcard", "17828": "Security Corridor Pass", "17829": "Headmaster Administration Keycard", "17830": "Inner Sanctum Passcard", "17832": "Federation Navy Armor EM Hardener", "17833": "Federation Navy Armor EM Hardener Blueprint", "17834": "Federation Navy Armor Explosive Hardener", "17835": "Federation Navy Armor Explosive Hardener Blueprint", "17836": "Federation Navy Armor Kinetic Hardener", "17837": "Federation Navy Armor Kinetic Hardener Blueprint", "17838": "Federation Navy Armor Thermic Hardener", "17839": "Federation Navy Armor Thermic Hardener Blueprint", "17840": "Zor's DNA", "17841": "Federation Navy Comet", "17842": "Federation Navy Comet Blueprint", "17843": "Vexor Navy Issue", "17844": "Vexor Navy Issue Blueprint", "17847": "Lazarus's Tag", "17848": "Gallente Gamma Nexus Chip", "17849": "Gallente Beta Nexus Chip", "17850": "Gallente Alpha Nexus Chip", "17852": "Faramon's Tag", "17853": "Crimson Hand Level 3 Passcard", "17854": "Crimson Hand Level 1 Passcard", "17855": "Crimson Hand Level 2 Passcard", "17856": "Crimson Hand Level 4 Passcard", "17857": "Mjolnir Citadel Torpedo", "17858": "Mjolnir Citadel Torpedo Blueprint", "17859": "Scourge Citadel Torpedo", "17860": "Scourge Citadel Torpedo Blueprint", "17861": "Inferno Citadel Torpedo", "17862": "Inferno Citadel Torpedo Blueprint", "17863": "Nova Citadel Torpedo", "17864": "Nova Citadel Torpedo Blueprint", "17865": "Iridescent Gneiss", "17866": "Prismatic Gneiss", "17867": "Silvery Omber", "17868": "Golden Omber", "17869": "Magma Mercoxit", "17870": "Vitreous Mercoxit", "17871": "Inherent Implants 'Noble' Remote Armor Repair Systems RA-703", "2979": "Crate of Industrial-Grade Tritanium-Alloy Scraps", "17887": "Oxygen Isotopes", "17888": "Nitrogen Isotopes", "17889": "Hydrogen Isotopes", "17892": "Drugdealer Passcard to Storage Area", "17893": "High-Tech Data Chip", "17894": "High-Tech Scanner", "17895": "High-Tech Manufacturing Tools", "17897": "High-Tech Small Arms", "17898": "High-Tech Transmitters", "17904": "Sansha Outpost Securitycard", "17905": "Creo-Synchronization Pass", "17906": "Factory Gatekey", "17907": "Dented Cipher", "17910": "Ruined Stargate Cipher", "17911": "Supply Ship Pass", "17912": "Modulated Strip Miner II", "17913": "Modulated Strip Miner II Blueprint", "17916": "Tritan's Forked Key", "17918": "Rattlesnake", "17919": "Rattlesnake Blueprint", "17920": "Bhaalgorn", "17921": "Bhaalgorn Blueprint", "17922": "Ashimmu", "17923": "Ashimmu Blueprint", "17924": "Succubus", "17925": "Succubus Blueprint", "17926": "Cruor", "17927": "Cruor Blueprint", "17928": "Daredevil", "17929": "Daredevil Blueprint", "17930": "Worm", "17931": "Worm Blueprint", "17932": "Dramiel", "17933": "Dramiel Blueprint", "353032": "Swarm Launcher", "17938": "Core Probe Launcher I", "17939": "Core Probe Launcher I Blueprint", "17940": "Mining Barge", "17941": "Caesarium Cadmide Reaction", "17942": "Carbon Polymers Reaction", "17943": "Ceramic Powder Reaction", "17944": "Crystallite Alloy Reaction", "17945": "Dysporite Reaction", "17946": "Fernite Alloy Reaction", "17947": "Ferrofluid Reaction", "17948": "Fluxed Condensates Reaction", "17949": "Hexite Reaction", "17950": "Hyperflurite Reaction", "17951": "Neo Mercurite Reaction", "17952": "Platinum Technite Reaction", "17953": "Rolled Tungsten Alloy Reaction", "17954": "Silicon Diborite Reaction", "17955": "Solerium Reaction", "17956": "Sulfuric Acid Reaction", "17957": "Titanium Chromide Reaction", "17958": "Vanadium Hafnite Reaction", "17959": "Vanadium Hafnite", "17960": "Prometium", "17961": "Prometium Reaction", "17962": "Titanium Carbide Reaction", "17963": "Crystalline Carbonide Reaction", "17964": "Fernite Carbide Reaction", "17965": "Tungsten Carbide Reaction", "17966": "Sylramic Fibers Reaction", "17967": "Fulleride Reaction", "17968": "Phenolic Composites Reaction", "17969": "Nanotransistors Reaction", "17970": "Hypersynaptic Fibers Reaction", "17971": "Ferrogel Reaction", "17972": "Fermionic Condensates Reaction", "17974": "Battlement Accesscard", "17975": "Thick Blue Ice", "17976": "Pristine White Glaze", "17977": "Smooth Glacial Mass", "17978": "Enriched Clear Icicle", "17982": "Coupling Array", "17983": "Armorer Keycard", "17984": "The Repairer's Keycard", "17985": "Scratched and Dented Keycard", "17986": "Dusty Keycard", "17987": "Command Relay Key", "17988": "Gardan's Private Key", "17989": "Thorak's Private Key", "17990": "Security Cypher for Angel Prison", "17991": "9D Logic Keycard", "17992": "Puxley's 9D Pass", "17995": "Stolen Passkey", "17998": "Sade's Pass", "17999": "Ammatar Navy Colonel Insignia I", "18025": "Ice Processing", "18029": "Freed Slaves", "18036": "Arkonor Mining Crystal I", "18037": "Arkonor Mining Crystal I Blueprint", "18038": "Bistot Mining Crystal I", "18039": "Bistot Mining Crystal I Blueprint", "18040": "Crokite Mining Crystal I", "18041": "Crokite Mining Crystal I Blueprint", "18042": "Dark Ochre Mining Crystal I", "18043": "Dark Ochre Mining Crystal I Blueprint", "18044": "Gneiss Mining Crystal I", "18045": "Gneiss Mining Crystal I Blueprint", "18046": "Hedbergite Mining Crystal I", "18047": "Hedbergite Mining Crystal I Blueprint", "18048": "Hemorphite Mining Crystal I", "18049": "Hemorphite Mining Crystal I Blueprint", "18050": "Jaspet Mining Crystal I", "18051": "Jaspet Mining Crystal I Blueprint", "18052": "Kernite Mining Crystal I", "18053": "Kernite Mining Crystal I Blueprint", "18054": "Mercoxit Mining Crystal I", "18055": "Mercoxit Mining Crystal I Blueprint", "18056": "Omber Mining Crystal I", "18057": "Omber Mining Crystal I Blueprint", "18058": "Plagioclase Mining Crystal I", "18059": "Plagioclase Mining Crystal I Blueprint", "18060": "Pyroxeres Mining Crystal I", "18061": "Pyroxeres Mining Crystal I Blueprint", "18062": "Scordite Mining Crystal I", "18063": "Scordite Mining Crystal I Blueprint", "18064": "Spodumain Mining Crystal I", "18065": "Spodumain Mining Crystal I Blueprint", "18066": "Veldspar Mining Crystal I", "18067": "Veldspar Mining Crystal I Blueprint", "18068": "Modulated Deep Core Miner II", "18069": "Modulated Deep Core Miner II Blueprint", "354132": "Heavy Converse Shield Booster", "354133": "Heavy Shield Booster I", "3063": "Oceanic Extractor Control Unit", "3069": "Incursion ship attributes effects Vanguard", "354140": "Energized Nanite Plating", "3075": "150mm Railgun II Blueprint", "354141": "Voltaic Energized Plating", "18566": "Shipyard Code Part (One half)", "18580": "Tycoon", "18581": "Zazzmatazz's Bodyguard Insignia", "18583": "Ornamental Necklace", "18585": "Weekend Pass for Sin Boulevard", "18590": "Arkonor Mining Crystal II", "18591": "Arkonor Mining Crystal II Blueprint", "18592": "Bistot Mining Crystal II", "18593": "Bistot Mining Crystal II Blueprint", "18594": "Crokite Mining Crystal II", "18595": "Crokite Mining Crystal II Blueprint", "18596": "Dark Ochre Mining Crystal II", "18597": "Dark Ochre Mining Crystal II Blueprint", "18598": "Gneiss Mining Crystal II", "18599": "Gneiss Mining Crystal II Blueprint", "18600": "Hedbergite Mining Crystal II", "18601": "Hedbergite Mining Crystal II Blueprint", "18602": "Hemorphite Mining Crystal II", "18603": "Hemorphite Mining Crystal II Blueprint", "18604": "Jaspet Mining Crystal II", "18605": "Jaspet Mining Crystal II Blueprint", "18606": "Kernite Mining Crystal II", "18607": "Kernite Mining Crystal II Blueprint", "18608": "Mercoxit Mining Crystal II", "18609": "Mercoxit Mining Crystal II Blueprint", "18610": "Omber Mining Crystal II", "18611": "Omber Mining Crystal II Blueprint", "18612": "Plagioclase Mining Crystal II", "18613": "Plagioclase Mining Crystal II Blueprint", "18614": "Pyroxeres Mining Crystal II", "18615": "Pyroxeres Mining Crystal II Blueprint", "18616": "Scordite Mining Crystal II", "18617": "Scordite Mining Crystal II Blueprint", "18618": "Veldspar Mining Crystal II", "18619": "Veldspar Mining Crystal II Blueprint", "18624": "Spodumain Mining Crystal II", "18625": "Spodumain Mining Crystal II Blueprint", "18626": "Quest Survey Probe I", "18635": "Discovery Survey Probe I", "18637": "Gaze Survey Probe I", "18639": "Expanded Probe Launcher I", "18640": "Expanded Probe Launcher I Blueprint", "18644": "High Roller's Passcard", "18654": "Olufami's Insignia", "18655": "Olufami's DNA", "18657": "Shimon Jaen's Insignia", "18658": "Gistii C-Type 1MN Afterburner", "18660": "Gistum C-Type 10MN Afterburner", "18662": "Gist C-Type 100MN Afterburner", "18664": "Gistii B-Type 1MN Afterburner", "18666": "Gistum B-Type 10MN Afterburner", "18668": "Gist B-Type 100MN Afterburner", "18670": "Gistii A-Type 1MN Afterburner", "18672": "Gistum A-Type 10MN Afterburner", "18674": "Gist A-Type 100MN Afterburner", "18676": "Gist X-Type 100MN Afterburner", "18679": "Zelfarios Kashnostramus's Tag", "18680": "Coreli C-Type 1MN Afterburner", "18682": "Corelum C-Type 10MN Afterburner", "18684": "Core C-Type 100MN Afterburner", "18686": "Coreli B-Type 1MN Afterburner", "18688": "Corelum B-Type 10MN Afterburner", "18690": "Core B-Type 100MN Afterburner", "18692": "Coreli A-Type 1MN Afterburner", "18694": "Corelum A-Type 10MN Afterburner", "18696": "Core A-Type 100MN Afterburner", "18698": "Core X-Type 100MN Afterburner", "18700": "Corpii C-Type Adaptive Nano Plating", "18702": "Centii C-Type Adaptive Nano Plating", "18704": "Corpii B-Type Adaptive Nano Plating", "18706": "Centii B-Type Adaptive Nano Plating", "18708": "Corpii A-Type Adaptive Nano Plating", "18710": "Centii A-Type Adaptive Nano Plating", "18712": "Corpii C-Type Kinetic Plating", "18714": "Centii C-Type Kinetic Plating", "18716": "Corpii C-Type Explosive Plating", "18718": "Centii C-Type Explosive Plating", "18720": "Corpii C-Type EM Plating", "18722": "Centii C-Type EM Plating", "18724": "Corpii C-Type Thermic Plating", "18726": "Centii C-Type Thermic Plating", "18728": "Corpii B-Type Thermic Plating", "18730": "Centii B-Type Thermic Plating", "18740": "Corpii B-Type Kinetic Plating", "18742": "Centii B-Type Kinetic Plating", "18744": "Corpii B-Type Explosive Plating", "18746": "Centii B-Type Explosive Plating", "18748": "Corpii B-Type EM Plating", "18750": "Centii B-Type EM Plating", "18752": "Corpii A-Type Kinetic Plating", "18754": "Centii A-Type Kinetic Plating", "18756": "Corpii A-Type Explosive Plating", "18758": "Centii A-Type Explosive Plating", "18760": "Corpii A-Type EM Plating", "18762": "Centii A-Type EM Plating", "18764": "Corpii A-Type Thermic Plating", "18766": "Centii A-Type Thermic Plating", "18768": "Coreli C-Type Adaptive Nano Plating", "18770": "Coreli C-Type Kinetic Plating", "18772": "Coreli C-Type Explosive Plating", "18775": "Coreli C-Type EM Plating", "18777": "Coreli C-Type Thermic Plating", "18779": "Coreli B-Type Adaptive Nano Plating", "18781": "Coreli B-Type Kinetic Plating", "18783": "Coreli B-Type Explosive Plating", "18785": "Coreli B-Type EM Plating", "18787": "Coreli B-Type Thermic Plating", "18789": "Coreli A-Type Adaptive Nano Plating", "18791": "Coreli A-Type Kinetic Plating", "18793": "Coreli A-Type Explosive Plating", "18795": "Coreli A-Type EM Plating", "18797": "Coreli A-Type Thermic Plating", "18799": "Corelum C-Type Energized Adaptive Nano Membrane", "18801": "Corelum C-Type Energized Kinetic Membrane", "18803": "Corelum C-Type Energized Explosive Membrane", "18805": "Corelum C-Type Energized EM Membrane", "18807": "Corelum C-Type Energized Thermic Membrane", "18809": "Corelum B-Type Energized Adaptive Nano Membrane", "18811": "Corelum B-Type Energized Kinetic Membrane", "18813": "Corelum B-Type Energized Explosive Membrane", "18815": "Corelum B-Type Energized EM Membrane", "18817": "Corelum B-Type Energized Thermic Membrane", "18819": "Corelum A-Type Energized Adaptive Nano Membrane", "18821": "Corelum A-Type Energized Kinetic Membrane", "18823": "Corelum A-Type Energized Explosive Membrane", "18825": "Corelum A-Type Energized EM Membrane", "18827": "Corelum A-Type Energized Thermic Membrane", "18829": "Corpum C-Type Energized Adaptive Nano Membrane", "18831": "Centum C-Type Energized Adaptive Nano Membrane", "18833": "Corpum C-Type Energized Kinetic Membrane", "18835": "Centum C-Type Energized Kinetic Membrane", "18837": "Corpum C-Type Energized Explosive Membrane", "18839": "Centum C-Type Energized Explosive Membrane", "18841": "Corpum C-Type Energized EM Membrane", "18843": "Centum C-Type Energized EM Membrane", "18845": "Corpum C-Type Energized Thermic Membrane", "18847": "Centum C-Type Energized Thermic Membrane", "18849": "Corpum B-Type Energized Adaptive Nano Membrane", "18851": "Centum B-Type Energized Adaptive Nano Membrane", "18853": "Corpum B-Type Energized Kinetic Membrane", "18855": "Centum B-Type Energized Kinetic Membrane", "18857": "Corpum B-Type Energized Explosive Membrane", "18859": "Centum B-Type Energized Explosive Membrane", "18861": "Corpum B-Type Energized Thermic Membrane", "18863": "Centum B-Type Energized Thermic Membrane", "18865": "Corpum A-Type Energized Thermic Membrane", "18867": "Centum A-Type Energized Thermic Membrane", "18869": "Corpum A-Type Energized EM Membrane", "18871": "Centum A-Type Energized EM Membrane", "18873": "Corpum A-Type Energized Explosive Membrane", "18875": "Centum A-Type Energized Explosive Membrane", "18877": "Corpum A-Type Energized Kinetic Membrane", "18879": "Centum A-Type Energized Kinetic Membrane", "18881": "Corpum A-Type Energized Adaptive Nano Membrane", "18883": "Centum A-Type Energized Adaptive Nano Membrane", "18885": "Corpus C-Type Armor EM Hardener", "18887": "Centus C-Type Armor EM Hardener", "18889": "Corpus C-Type Armor Explosive Hardener", "18891": "Centus C-Type Armor Explosive Hardener", "18893": "Corpus C-Type Armor Kinetic Hardener", "18895": "Centus C-Type Armor Kinetic Hardener", "18897": "Corpus C-Type Armor Thermic Hardener", "18899": "Centus C-Type Armor Thermic Hardener", "18901": "Corpus B-Type Armor EM Hardener", "18903": "Centus B-Type Armor EM Hardener", "18905": "Corpus B-Type Armor Explosive Hardener", "18907": "Centus B-Type Armor Explosive Hardener", "18909": "Corpus B-Type Armor Kinetic Hardener", "18911": "Centus B-Type Armor Kinetic Hardener", "18913": "Corpus B-Type Armor Thermic Hardener", "18915": "Centus B-Type Armor Thermic Hardener", "18917": "Corpus A-Type Armor Thermic Hardener", "18919": "Centus A-Type Armor Thermic Hardener", "18921": "Corpus A-Type Armor Kinetic Hardener", "18923": "Centus A-Type Armor Kinetic Hardener", "18925": "Corpus A-Type Armor Explosive Hardener", "18927": "Centus A-Type Armor Explosive Hardener", "18929": "Corpus A-Type Armor EM Hardener", "18931": "Centus A-Type Armor EM Hardener", "18933": "Corpus X-Type Armor EM Hardener", "18935": "Centus X-Type Armor EM Hardener", "18937": "Corpus X-Type Armor Explosive Hardener", "18939": "Centus X-Type Armor Explosive Hardener", "18941": "Corpus X-Type Armor Kinetic Hardener", "18943": "Centus X-Type Armor Kinetic Hardener", "18945": "Corpus X-Type Armor Thermic Hardener", "18947": "Centus X-Type Armor Thermic Hardener", "18949": "Core C-Type Armor EM Hardener", "18951": "Core C-Type Armor Explosive Hardener", "18953": "Core C-Type Armor Kinetic Hardener", "18955": "Core C-Type Armor Thermic Hardener", "18957": "Core B-Type Armor EM Hardener", "18959": "Core B-Type Armor Explosive Hardener", "18961": "Core B-Type Armor Kinetic Hardener", "18963": "Core B-Type Armor Thermic Hardener", "18965": "Core A-Type Armor EM Hardener", "18967": "Core A-Type Armor Explosive Hardener", "18969": "Core A-Type Armor Kinetic Hardener", "18971": "Core A-Type Armor Thermic Hardener", "18973": "Core X-Type Armor EM Hardener", "18975": "Core X-Type Armor Explosive Hardener", "18977": "Core X-Type Armor Kinetic Hardener", "18979": "Core X-Type Armor Thermic Hardener", "18981": "Coreli C-Type Small Remote Armor Repair System", "18983": "Coreli B-Type Small Remote Armor Repair System", "18985": "Coreli A-Type Small Remote Armor Repair System", "18987": "Corelum C-Type Medium Remote Armor Repair System", "18989": "Corelum B-Type Medium Remote Armor Repair System", "18991": "Corelum A-Type Medium Remote Armor Repair System", "18999": "Corpii C-Type Small Armor Repairer", "19001": "Corpii B-Type Small Armor Repairer", "19003": "Corpii A-Type Small Armor Repairer", "19005": "Centii C-Type Small Armor Repairer", "19007": "Centii B-Type Small Armor Repairer", "19009": "Centii A-Type Small Armor Repairer", "19011": "Coreli C-Type Small Armor Repairer", "19013": "Coreli B-Type Small Armor Repairer", "19015": "Coreli A-Type Small Armor Repairer", "19017": "Corpum C-Type Medium Armor Repairer", "19019": "Corpum B-Type Medium Armor Repairer", "19021": "Corpum A-Type Medium Armor Repairer", "19023": "Centum C-Type Medium Armor Repairer", "19025": "Centum B-Type Medium Armor Repairer", "19027": "Centum A-Type Medium Armor Repairer", "19029": "Corelum C-Type Medium Armor Repairer", "19031": "Corelum B-Type Medium Armor Repairer", "19033": "Corelum A-Type Medium Armor Repairer", "19035": "Core C-Type Large Armor Repairer", "19036": "Core B-Type Large Armor Repairer", "19037": "Core A-Type Large Armor Repairer", "19038": "Core X-Type Large Armor Repairer", "19039": "Corpus C-Type Large Armor Repairer", "19040": "Centus C-Type Large Armor Repairer", "19041": "Corpus B-Type Large Armor Repairer", "19042": "Centus B-Type Large Armor Repairer", "19043": "Corpus A-Type Large Armor Repairer", "19044": "Centus A-Type Large Armor Repairer", "19045": "Corpus X-Type Large Armor Repairer", "19046": "Centus X-Type Large Armor Repairer", "19047": "Centii C-Type Small Remote Armor Repair System", "19049": "Centii B-Type Small Remote Armor Repair System", "19051": "Centii A-Type Small Remote Armor Repair System", "19053": "Centum C-Type Medium Remote Armor Repair System", "19055": "Centum B-Type Medium Remote Armor Repair System", "19057": "Centum A-Type Medium Remote Armor Repair System", "3177": "Zainou 'Snapshot' Torpedoes TD-604", "19065": "Corpii C-Type Small Energy Transfer Array", "19067": "Corpii B-Type Small Energy Transfer Array", "19069": "Corpii A-Type Small Energy Transfer Array", "19071": "Centii C-Type Small Energy Transfer Array", "19073": "Centii B-Type Small Energy Transfer Array", "19075": "Centii A-Type Small Energy Transfer Array", "19077": "Corpum C-Type Medium Energy Transfer Array", "19079": "Corpum B-Type Medium Energy Transfer Array", "19081": "Corpum A-Type Medium Energy Transfer Array", "19083": "Centum C-Type Medium Energy Transfer Array", "19085": "Centum B-Type Medium Energy Transfer Array", "19087": "Centum A-Type Medium Energy Transfer Array", "3183": "Zainou 'Snapshot' Cruise Missiles CM-606", "19101": "Corpii C-Type Small Nosferatu", "19103": "Corpii B-Type Small Nosferatu", "19105": "Corpii A-Type Small Nosferatu", "19107": "Corpum C-Type Medium Nosferatu", "19109": "Corpum B-Type Medium Nosferatu", "19111": "Corpum A-Type Medium Nosferatu", "19113": "Corpus C-Type Heavy Nosferatu", "19115": "Corpus B-Type Heavy Nosferatu", "19117": "Corpus A-Type Heavy Nosferatu", "19119": "Corpus X-Type Heavy Nosferatu", "19129": "Gistii C-Type Small Shield Transporter", "19131": "Gistii B-Type Small Shield Transporter", "19133": "Gistii A-Type Small Shield Transporter", "19135": "Pithi C-Type Small Shield Transporter", "19137": "Pithi B-Type Small Shield Transporter", "19139": "Pithi A-Type Small Shield Transporter", "19141": "Gistum C-Type Medium Shield Transporter", "19143": "Gistum B-Type Medium Shield Transporter", "19145": "Gistum A-Type Medium Shield Transporter", "19147": "Pithum C-Type Medium Shield Transporter", "19149": "Pithum B-Type Medium Shield Transporter", "19151": "Pithum A-Type Medium Shield Transporter", "19169": "Gistii C-Type Small Shield Booster", "19171": "Gistii B-Type Small Shield Booster", "19173": "Gistii A-Type Small Shield Booster", "19175": "Pithi C-Type Small Shield Booster", "19177": "Pithi B-Type Small Shield Booster", "19179": "Pithi A-Type Small Shield Booster", "19181": "Gistum C-Type Medium Shield Booster", "19183": "Gistum B-Type Medium Shield Booster", "19185": "Gistum A-Type Medium Shield Booster", "19187": "Pithum C-Type Medium Shield Booster", "19189": "Pithum B-Type Medium Shield Booster", "19191": "Pithum A-Type Medium Shield Booster", "19193": "Gist C-Type Large Shield Booster", "19194": "Gist B-Type Large Shield Booster", "19195": "Gist C-Type X-Large Shield Booster", "19196": "Gist B-Type X-Large Shield Booster", "19197": "Gist A-Type X-Large Shield Booster", "19198": "Gist X-Type X-Large Shield Booster", "19199": "Gist A-Type Large Shield Booster", "19200": "Gist X-Type Large Shield Booster", "19201": "Pith C-Type Large Shield Booster", "19202": "Pith C-Type X-Large Shield Booster", "19203": "Pith B-Type Large Shield Booster", "19204": "Pith B-Type X-Large Shield Booster", "19205": "Pith A-Type Large Shield Booster", "19206": "Pith A-Type X-Large Shield Booster", "19207": "Pith X-Type Large Shield Booster", "19208": "Pith X-Type X-Large Shield Booster", "19209": "Pithum C-Type Explosive Deflection Amplifier", "19211": "Pithum C-Type Thermic Dissipation Amplifier", "19213": "Pithum C-Type Kinetic Deflection Amplifier", "19215": "Pithum C-Type EM Ward Amplifier", "19217": "Pithum B-Type Explosive Deflection Amplifier", "19219": "Pithum B-Type Thermic Dissipation Amplifier", "19221": "Pithum B-Type Kinetic Deflection Amplifier", "19223": "Pithum B-Type EM Ward Amplifier", "19225": "Pithum A-Type Explosive Deflection Amplifier", "19227": "Pithum A-Type Thermic Dissipation Amplifier", "19229": "Pithum A-Type Kinetic Deflection Amplifier", "19231": "Pithum A-Type EM Ward Amplifier", "19233": "Gistum C-Type Explosive Deflection Amplifier", "19235": "Gistum B-Type Explosive Deflection Amplifier", "19237": "Gistum C-Type Thermic Dissipation Amplifier", "19239": "Gistum B-Type Thermic Dissipation Amplifier", "19241": "Gistum C-Type Kinetic Deflection Amplifier", "19243": "Gistum B-Type Kinetic Deflection Amplifier", "19245": "Gistum C-Type EM Ward Amplifier", "19247": "Gistum B-Type EM Ward Amplifier", "19249": "Gistum A-Type Explosive Deflection Amplifier", "19251": "Gistum A-Type Thermic Dissipation Amplifier", "19253": "Gistum A-Type Kinetic Deflection Amplifier", "19255": "Gistum A-Type EM Ward Amplifier", "19257": "Gist C-Type Kinetic Deflection Field", "19258": "Pith C-Type Kinetic Deflection Field", "19259": "Gist C-Type Explosive Deflection Field", "19260": "Pith C-Type Explosive Deflection Field", "19261": "Gist C-Type Thermic Dissipation Field", "19262": "Pith C-Type Thermic Dissipation Field", "19263": "Gist C-Type EM Ward Field", "19264": "Pith C-Type EM Ward Field", "19265": "Gist B-Type EM Ward Field", "19266": "Pith B-Type EM Ward Field", "19267": "Gist B-Type Thermic Dissipation Field", "19268": "Pith B-Type Thermic Dissipation Field", "19269": "Gist B-Type Explosive Deflection Field", "19270": "Pith B-Type Explosive Deflection Field", "19271": "Gist B-Type Kinetic Deflection Field", "19272": "Pith B-Type Kinetic Deflection Field", "19273": "Gist A-Type Kinetic Deflection Field", "19274": "Pith A-Type Kinetic Deflection Field", "19275": "Gist A-Type Explosive Deflection Field", "19276": "Pith A-Type Explosive Deflection Field", "19277": "Gist A-Type Thermic Dissipation Field", "19278": "Pith A-Type Thermic Dissipation Field", "19279": "Gist A-Type EM Ward Field", "19280": "Pith A-Type EM Ward Field", "19281": "Gist X-Type EM Ward Field", "19282": "Pith X-Type EM Ward Field", "19283": "Gist X-Type Thermic Dissipation Field", "19284": "Pith X-Type Thermic Dissipation Field", "19285": "Gist X-Type Explosive Deflection Field", "19286": "Pith X-Type Explosive Deflection Field", "19287": "Gist X-Type Kinetic Deflection Field", "19288": "Pith X-Type Kinetic Deflection Field", "19289": "Pith C-Type Shield Boost Amplifier", "19293": "Gist A-Type Shield Boost Amplifier", "19295": "Pith X-Type Shield Boost Amplifier", "19297": "Gist C-Type Shield Boost Amplifier", "19299": "Gist B-Type Shield Boost Amplifier", "19301": "Gist X-Type Shield Boost Amplifier", "19303": "Pith B-Type Shield Boost Amplifier", "19311": "Pith A-Type Shield Boost Amplifier", "19313": "Coreli C-Type 1MN Microwarpdrive", "19315": "Corelum C-Type 10MN Microwarpdrive", "19317": "Core C-Type 100MN Microwarpdrive", "19319": "Coreli B-Type 1MN Microwarpdrive", "19321": "Corelum B-Type 10MN Microwarpdrive", "19323": "Core B-Type 100MN Microwarpdrive", "19325": "Coreli A-Type 1MN Microwarpdrive", "19327": "Corelum A-Type 10MN Microwarpdrive", "19329": "Core A-Type 100MN Microwarpdrive", "19335": "Core X-Type 100MN Microwarpdrive", "19337": "Gistii C-Type 1MN Microwarpdrive", "19339": "Gistum C-Type 10MN Microwarpdrive", "19341": "Gist C-Type 100MN Microwarpdrive", "19343": "Gistii B-Type 1MN Microwarpdrive", "19345": "Gistum B-Type 10MN Microwarpdrive", "19347": "Gist B-Type 100MN Microwarpdrive", "19349": "Gistii A-Type 1MN Microwarpdrive", "19351": "Gistum A-Type 10MN Microwarpdrive", "19353": "Gist A-Type 100MN Microwarpdrive", "19359": "Gist X-Type 100MN Microwarpdrive", "19361": "Corpum B-Type Energized EM Membrane", "19363": "Centum B-Type Energized EM Membrane", "19382": "Luther Veron's Head", "19398": "Confiscated Viral Agent", "19399": "Confiscated Vitoc", "19400": "1st Tier Overseer's Personal Effects", "19401": "2nd Tier Overseer's Personal Effects", "19402": "3rd Tier Overseer's Personal Effects", "19403": "4th Tier Overseer's Personal Effects", "19404": "5th Tier Overseer's Personal Effects", "19405": "6th Tier Overseer's Personal Effects", "19406": "7th Tier Overseer's Personal Effects", "19407": "8th Tier Overseer's Personal Effects", "19408": "9th Tier Overseer's Personal Effects", "19409": "11th Tier Overseer's Personal Effects", "19410": "12th Tier Overseer's Personal Effects", "19411": "13th Tier Overseer's Personal Effects", "19412": "14th Tier Overseer's Personal Effects", "19413": "15th Tier Overseer's Personal Effects", "19414": "16th Tier Overseer's Personal Effects", "19415": "17th Tier Overseer's Personal Effects", "19416": "18th Tier Overseer's Personal Effects", "19417": "19th Tier Overseer's Personal Effects", "19418": "20th Tier Overseer's Personal Effects", "19419": "21st Tier Overseer's Personal Effects", "19420": "22nd Tier Overseer's Personal Effects", "19421": "23rd Tier Overseer's Personal Effects", "19422": "10th Tier Overseer's Personal Effects", "3237": "Inherent Implants 'Squire' Energy Management EM-802", "3243": "Warp Disruptor I Blueprint", "19461": "Blaque Voucher", "19462": "Foiritan Voucher", "19463": "Autrech Voucher", "19470": "Intensive Refining Array", "19493": "Arms Cache", "3249": "Inherent Implants 'Squire' Energy Emission Systems ES-706", "19500": "Zor's Custom Navigation Link", "19534": "Talisman Alpha", "19535": "Talisman Beta", "19536": "Talisman Gamma", "19537": "Talisman Delta", "19538": "Talisman Epsilon", "19539": "Talisman Omega", "19540": "Snake Alpha", "19547": "Inherent Implants 'Noble' Repair Systems RS-605", "19548": "Inherent Implants 'Noble' Remote Armor Repair Systems RA-705", "19549": "Inherent Implants 'Noble' Mechanic MC-805", "19550": "Inherent Implants 'Noble' Hull Upgrades HG-1005", "19551": "Snake Beta", "19553": "Snake Gamma", "19554": "Snake Delta", "19555": "Snake Epsilon", "19556": "Snake Omega", "19582": "Guristas Research Data", "19585": "Dewak's Level 1 Decoder", "19586": "Dewak's Level 2 Decoder", "19587": "Dewak's Level 3 Decoder", "19621": "Perimeter Descramble Code", "3273": "Zainou 'Gypsy' Electronic Warfare EW-906", "19658": "Melted Snowball CVII", "19660": "Festival Launcher", "19663": "Jarkon Puman's Tag", "19675": "Ixon Kruz's Insignia", "19678": "Dakin Gara's Insignia", "19680": "Karmone Tizmer's Insignia", "19684": "Inherent Implants 'Noble' Repair Proficiency RP-903", "19685": "Inherent Implants 'Noble' Repair Proficiency RP-905", "19686": "Eifyr and Co. 'Gunslinger' Motion Prediction MR-705", "19687": "Eifyr and Co. 'Gunslinger' Surgical Strike SS-905", "19688": "Eifyr and Co. 'Gunslinger' Large Projectile Turret LP-1005", "19689": "Eifyr and Co. 'Gunslinger' Medium Projectile Turret MP-805", "19690": "Eifyr and Co. 'Gunslinger' Small Projectile Turret SP-605", "19691": "Inherent Implants 'Lancer' Small Energy Turret SE-605", "19692": "Inherent Implants 'Lancer' Controlled Bursts CB-705", "19693": "Inherent Implants 'Lancer' Gunnery RF-905", "19694": "Inherent Implants 'Lancer' Large Energy Turret LE-1005", "19695": "Inherent Implants 'Lancer' Medium Energy Turret ME-805", "19696": "Zainou 'Deadeye' Sharpshooter ST-905", "19697": "Zainou 'Deadeye' Trajectory Analysis TA-705", "19698": "Zainou 'Deadeye' Large Hybrid Turret LH-1005", "19699": "Zainou 'Deadeye' Medium Hybrid Turret MH-805", "19700": "Zainou 'Deadeye' Small Hybrid Turret SH-605", "19702": "Repository Descramble Code", "19705": "Outgrowth Hive Entrance Code", "3285": "Quad Light Beam Laser II", "19719": "Transport Ships", "19720": "Revelation", "19721": "Revelation Blueprint", "19722": "Naglfar", "19723": "Naglfar Blueprint", "19724": "Moros", "19725": "Moros Blueprint", "19726": "Phoenix", "19727": "Phoenix Blueprint", "19730": "Communications Logs", "19732": "Sansha Supply Pit Passcard", "19739": "Cruise Missile Launcher II", "19740": "Cruise Missile Launcher II Blueprint", "19744": "Sigil", "19745": "Sigil Blueprint", "3291": "Inherent Implants 'Noble' Repair Systems RS-602", "19758": "Caldari Research Outpost Platform", "19759": "Long Distance Jamming", "19760": "Frequency Modulation", "19761": "Signal Dispersion", "19766": "Signal Suppression", "19767": "Turret Destabilization", "3297": "Small Standard Container", "353219": "'Cistern' K-17D Nanohive (R)", "19806": "Target Painter II", "19807": "Target Painter II Blueprint", "19808": "Partial Weapon Navigation", "19810": "Peripheral Weapon Navigation Diameter", "19812": "Parallel Weapon Navigation Transmitter", "19814": "Phased Weapon Navigation Array Generation Extron", "3303": "Small Energy Turret", "19921": "Target Painting", "19922": "Signature Focusing", "19923": "Induced Ion Field ECM I", "19925": "Compulsive Ion Field ECM I", "19927": "'Hypnos' Ion Field ECM I", "19929": "Induced Multispectral ECM I", "19931": "Compulsive Multispectral ECM I", "19933": "'Hypnos' Multispectral ECM I", "19935": "Languid Phase Inversion ECM I", "19937": "Halting Phase Inversion ECM I", "19939": "Enfeebling Phase Inversion ECM I", "19942": "FZ-3a Disruptive Spatial Destabilizer ECM", "19944": "CZ-4 Concussive Spatial Destabilizer ECM", "19946": "BZ-5 Neutralizing Spatial Destabilizer ECM", "19948": "'Gloom' White Noise ECM", "19950": "'Shade' White Noise ECM", "19952": "'Umbra' White Noise ECM", "19954": "Soran's Passkey", "19962": "Shadow Iron Charge S", "19964": "Shadow Tungsten Charge S", "19966": "Shadow Iridium Charge S", "19968": "Shadow Lead Charge S", "19970": "Arch Angel Carbonized Lead S", "19972": "Arch Angel Nuclear S", "19974": "Arch Angel Proton S", "19976": "Arch Angel Depleted Uranium S", "19978": "Sanshas Radio S", "19980": "Sanshas Microwave S", "19982": "Sanshas Infrared S", "19984": "Sanshas Standard S", "19986": "Arch Angel Titanium Sabot S", "19988": "Arch Angel Fusion S", "19990": "Arch Angel Phased Plasma S", "19992": "Arch Angel EMP S", "19994": "Arch Angel Carbonized Lead M", "19996": "Arch Angel Nuclear M", "19998": "Arch Angel Proton M", "20000": "Arch Angel Depleted Uranium M", "20002": "Arch Angel Titanium Sabot M", "20004": "Arch Angel Fusion M", "20006": "Arch Angel Phased Plasma M", "20008": "Arch Angel EMP M", "20010": "Sanshas Radio M", "20012": "Sanshas Microwave M", "20014": "Sanshas Infrared M", "20016": "Sanshas Standard M", "20018": "Sanshas Radio L", "20020": "Sanshas Microwave L", "20022": "Sanshas Infrared L", "20024": "Sanshas Standard L", "20026": "Sanshas Radio XL", "20028": "Sanshas Microwave XL", "20030": "Sanshas Infrared XL", "20032": "Sanshas Standard XL", "20034": "Shadow Thorium Charge S", "20036": "Shadow Uranium Charge S", "20038": "Shadow Plutonium Charge S", "20040": "Shadow Antimatter Charge S", "20043": "Shadow Iron Charge M", "20045": "Shadow Tungsten Charge M", "20047": "Shadow Iridium Charge M", "20049": "Shadow Lead Charge M", "20051": "Shadow Thorium Charge M", "20053": "Shadow Uranium Charge M", "20055": "Shadow Plutonium Charge M", "20057": "Shadow Antimatter Charge M", "20059": "Amarr Control Tower Medium", "20060": "Amarr Control Tower Small", "20061": "Caldari Control Tower Medium", "20062": "Caldari Control Tower Small", "20063": "Gallente Control Tower Medium", "20064": "Gallente Control Tower Small", "20065": "Minmatar Control Tower Medium", "20066": "Minmatar Control Tower Small", "20069": "Armored Warfare Link - Damage Control I", "20070": "Skirmish Warfare Link - Evasive Maneuvers I", "20103": "Product Park Passcard", "20104": "Creations Central Pass", "20105": "'True Creations' Manufacture Passcard", "20110": "Sleeper Foundation Block", "20114": "Datacore - Propulsion Subsystems Engineering", "20115": "Datacore - Engineering Subsystems Engineering", "20116": "Datacore - Electronic Subsystems Engineering", "20121": "Crystal Alpha", "20124": "Siege Warfare Link - Active Shielding I", "20125": "Curse", "20126": "Curse Blueprint", "3189": "Eifyr and Co. 'Gunslinger' Medium Projectile Turret MP-806", "20138": "Heavy Assault Missile Launcher I", "20157": "Crystal Beta", "20158": "Crystal Gamma", "20159": "Crystal Delta", "20160": "Crystal Epsilon", "20161": "Crystal Omega", "20164": "Drazin's Keycard", "20171": "Datacore - Hydromagnetic Physics", "20172": "Datacore - Minmatar Starship Engineering", "20175": "Simple Reactor Array", "3363": "Corporation Management", "20183": "Providence", "20184": "Providence Blueprint", "20185": "Charon", "20186": "Charon Blueprint", "20187": "Obelisk", "20188": "Obelisk Blueprint", "20189": "Fenrir", "20190": "Fenrir Blueprint", "20199": "Dread Guristas ECM Multispectral Jammer", "20201": "Kaikka's Modified ECM Multispectral Jammer", "20203": "Thon's Modified ECM Multispectral Jammer", "20205": "Vepas' Modified ECM Multispectral Jammer", "20207": "Estamel's Modified ECM Multispectral Jammer", "20209": "Rocket Specialization", "20210": "Light Missile Specialization", "20211": "Heavy Missile Specialization", "20212": "Cruise Missile Specialization", "20213": "Torpedo Specialization", "20214": "Extra Radar ECCM Scanning Array I", "20216": "Incremental Radar ECCM Scanning Array I", "20218": "Conjunctive Radar ECCM Scanning Array I", "20220": "Extra Ladar ECCM Scanning Array I", "20222": "Incremental Ladar ECCM Scanning Array I", "20224": "Conjunctive Ladar ECCM Scanning Array I", "20226": "Extra Gravimetric ECCM Scanning Array I", "20228": "Incremental Gravimetric ECCM Scanning Array I", "20230": "Conjunctive Gravimetric ECCM Scanning Array I", "20232": "Extra Magnetometric ECCM Scanning Array I", "20234": "Incremental Magnetometric ECCM Scanning Array I", "20236": "Conjunctive Magnetometric ECCM Scanning Array I", "20238": "Secure Gravimetric Backup Cluster I", "20240": "Shielded Gravimetric Backup Cluster I", "20242": "Warded Gravimetric Backup Cluster I", "20244": "Secure Ladar Backup Cluster I", "20246": "Shielded Ladar Backup Cluster I", "20248": "Warded Ladar Backup Cluster I", "20250": "Secure Magnetometric Backup Cluster I", "20252": "Shielded Magnetometric Backup Cluster I", "20254": "Warded Magnetometric Backup Cluster I", "20260": "Secure Radar Backup Cluster I", "20262": "Shielded Radar Backup Cluster I", "20264": "Warded Radar Backup Cluster I", "20280": "Siege Module I", "20281": "Siege Module I Blueprint", "20306": "Mjolnir Heavy Assault Missile", "20307": "Scourge Heavy Assault Missile", "20308": "Inferno Heavy Assault Missile", "20312": "Guided Missile Precision", "20314": "Target Navigation Prediction", "20315": "Warhead Upgrades", "3387": "Mass Production", "20327": "Capital Energy Turret", "20328": "Insorum", "20342": "Advanced Spaceship Command", "20343": "50mm Reinforced Steel Plates II", "20344": "50mm Reinforced Steel Plates II Blueprint", "20345": "100mm Reinforced Steel Plates II", "20346": "100mm Reinforced Steel Plates II Blueprint", "20347": "200mm Reinforced Steel Plates II", "20348": "200mm Reinforced Steel Plates II Blueprint", "20349": "400mm Reinforced Steel Plates II", "20350": "400mm Reinforced Steel Plates II Blueprint", "20351": "800mm Reinforced Steel Plates II", "20352": "800mm Reinforced Steel Plates II Blueprint", "20353": "1600mm Reinforced Steel Plates II", "20354": "1600mm Reinforced Steel Plates II Blueprint", "20358": "Numon Family Heirloom", "3393": "Repair Systems", "20362": "Foiritan Sculpture", "20371": "Whelan Machorin's Ballistic Smartlink", "20372": "Whelan Machorin's Insignia", "20374": "'Buck' Turgidson's Insignia", "20375": "Whelan Machorin's Head", "2861": "Crate of Manportable Electromagnetic Pulse Weapons", "20405": "Information Warfare Link - Recon Operation I", "20406": "Information Warfare Link - Electronic Superiority I", "20408": "Skirmish Warfare Link - Rapid Deployment I", "20409": "Armored Warfare Link - Passive Defense I", "20410": "Datacore - Gallentean Starship Engineering", "20411": "Datacore - High Energy Physics", "20412": "Datacore - Plasma Physics", "20413": "Datacore - Laser Physics", "20414": "Datacore - Quantum Physics", "20415": "Datacore - Molecular Engineering", "20416": "Datacore - Nanite Engineering", "20417": "Datacore - Electromagnetic Physics", "20418": "Datacore - Electronic Engineering", "20419": "Datacore - Graviton Physics", "20420": "Datacore - Rocket Science", "20421": "Datacore - Amarrian Starship Engineering", "20423": "Datacore - Nuclear Physics", "20424": "Datacore - Mechanical Engineering", "20425": "Datacore - Offensive Subsystems Engineering", "3405": "Biology", "20433": "Talocan Technology", "20434": "Terran Broken Datachips - Weaponry", "20443": "Ogdin's Eye Coordination Enhancer", "20444": "Dual Giga Pulse Laser I", "20445": "Dual Giga Pulse Laser I Blueprint", "20446": "Dual Giga Beam Laser I", "20447": "Dual Giga Beam Laser I Blueprint", "20448": "Dual 1000mm Railgun I", "20449": "Dual 1000mm Railgun I Blueprint", "20450": "Ion Siege Blaster Cannon I", "20451": "Ion Siege Blaster Cannon I Blueprint", "20452": "6x2500mm Repeating Artillery I", "20453": "6x2500mm Repeating Artillery I Blueprint", "20454": "Quad 3500mm Siege Artillery I", "20455": "Quad 3500mm Siege Artillery I Blueprint", "20456": "Alpha Keycard", "20457": "Beta Keycard", "20458": "Gamma Keycard", "3411": "Cybernetics", "20476": "Drifter Spur", "20477": "Bandit Spur", "20478": "Marauder Spur", "20479": "Outlaw Spur", "20480": "Gunslinger Spur", "20481": "Desperado Spur", "20494": "Armored Warfare", "20495": "Information Warfare", "20498": "Halo Alpha", "20499": "Slave Alpha", "20500": "Halo Beta", "20501": "Slave Beta", "20502": "Halo Delta", "20503": "Slave Delta", "20504": "Halo Epsilon", "20505": "Slave Epsilon", "20506": "Halo Gamma", "20507": "Slave Gamma", "20508": "Halo Omega", "20509": "Slave Omega", "20510": "Potent Viral Agent", "20514": "Siege Warfare Link - Shield Harmonizing I", "20517": "Private Citizen Tsuna's Passcard", "20524": "Amarr Freighter", "20525": "Amarr Dreadnought", "20526": "Caldari Freighter", "20527": "Gallente Freighter", "20528": "Minmatar Freighter", "20530": "Caldari Dreadnought", "20531": "Gallente Dreadnought", "20532": "Minmatar Dreadnought", "20533": "Capital Ships", "20539": "Citadel Torpedo Launcher I", "20540": "Citadel Torpedo Launcher I Blueprint", "20541": "Drill Parts", "20546": "Markus's Insignia", "20548": "Ratei's Insignia", "20550": "Manchura's Tag", "20551": "Manchura's Logs", "20554": "Wei Todaki", "20555": "Small 'Siesta' Capacitor Booster", "20556": "Small 'Siesta' Capacitor Booster Blueprint", "20557": "Medium 'Gattotte' Capacitor Booster", "20558": "Medium 'Gattotte' Capacitor Booster Blueprint", "20559": "Heavy 'Brave' Capacitor Booster", "20560": "Heavy 'Brave' Capacitor Booster Blueprint", "20561": "Prototype 'Poncho' Cloaking Device I", "20562": "Prototype 'Poncho' Cloaking Device I Blueprint", "20563": "'Smokescreen' Covert Ops Cloaking Device II", "20564": "'Smokescreen' Covert Ops Cloaking Device II Blueprint", "20565": "Improved 'Guise' Cloaking Device II", "20566": "Improved 'Guise' Cloaking Device II Blueprint", "20567": "'Dyad' Co-Processor I", "20568": "'Dyad' Co-Processor I Blueprint", "20569": "'Deuce' Co-Processor I", "20570": "'Deuce' Co-Processor I Blueprint", "20573": "'Marshall' Ion Field Projector", "20574": "'Marshall' Ion Field Projector Blueprint", "20575": "'Gambler' Phase Inverter", "20576": "'Gambler' Phase Inverter Blueprint", "20577": "'Plunderer' Spatial Destabilizer", "20578": "'Plunderer' Spatial Destabilizer Blueprint", "20579": "'Heist' White Noise Generator", "20580": "'Heist' White Noise Generator Blueprint", "20581": "'Ghost' ECM Burst", "20582": "'Ghost' ECM Burst Blueprint", "20587": "150mm 'Musket' Railgun", "20588": "150mm 'Musket' Railgun Blueprint", "20589": "250mm 'Flintlock' Railgun", "20590": "250mm 'Flintlock' Railgun Blueprint", "20591": "425mm 'Popper' Railgun", "20592": "425mm 'Popper' Railgun Blueprint", "20593": "'Balefire' Rocket Launcher", "20594": "'Balefire' Rocket Launcher Blueprint", "20595": "'Gallows' Light Missile Launcher", "20596": "'Gallows' Light Missile Launcher Blueprint", "20597": "'Pickaxe' Rapid Light Missile Launcher", "20598": "'Pickaxe' Rapid Light Missile Launcher Blueprint", "20599": "'Undertaker' Heavy Missile Launcher", "20600": "'Undertaker' Heavy Missile Launcher Blueprint", "20601": "'Noose' Cruise Missile Launcher", "20602": "'Noose' Cruise Missile Launcher Blueprint", "20603": "'Barrage' Torpedo Launcher", "20604": "'Barrage' Torpedo Launcher Blueprint", "20605": "'Whiskey' Explosive Deflection Amplifier", "20606": "'Whiskey' Explosive Deflection Amplifier Blueprint", "20607": "'High Noon' Thermic Dissipation Amplifier", "20608": "'High Noon' Thermic Dissipation Amplifier Blueprint", "20609": "'Cactus' Modified Kinetic Deflection Amplifier", "20610": "'Cactus' Modified Kinetic Deflection Amplifier Blueprint", "20611": "'Prospector' EM Ward Amplifier", "20612": "'Prospector' EM Ward Amplifier Blueprint", "20613": "'Glycerine' Shield Boost Amplifier", "20614": "'Glycerine' Shield Boost Amplifier Blueprint", "20617": "Small 'Settler' Shield Booster", "20618": "Small 'Settler' Shield Booster Blueprint", "20619": "Medium 'Lone Ranger' Shield Booster", "20620": "Medium 'Lone Ranger' Shield Booster Blueprint", "20621": "Large 'Outlaw' Shield Booster", "20622": "Large 'Outlaw' Shield Booster Blueprint", "20623": "X-Large 'Locomotive' Shield Booster", "20624": "X-Large 'Locomotive' Shield Booster Blueprint", "20625": "Small 'Wolf' Shield Extender", "20626": "Small 'Wolf' Shield Extender Blueprint", "20627": "Micro 'Trapper' Shield Extender", "20629": "Medium 'Canyon' Shield Extender", "20630": "Medium 'Canyon' Shield Extender Blueprint", "20631": "Large 'Sheriff' Shield Extender", "20632": "Large 'Sheriff' Shield Extender Blueprint", "20633": "'Nugget' Kinetic Deflection Field", "20634": "'Nugget' Kinetic Deflection Field Blueprint", "20635": "'Desert Heat' Thermic Dissipation Field", "20636": "'Desert Heat' Thermic Dissipation Field Blueprint", "20637": "'Posse' Adaptive Invulnerability Field", "20638": "'Posse' Adaptive Invulnerability Field Blueprint", "20639": "'Poacher' EM Ward Field", "20640": "'Poacher' EM Ward Field Blueprint", "20641": "'Snake Eyes' Explosive Deflection Field", "20642": "'Snake Eyes' Explosive Deflection Field Blueprint", "20700": "Michi's Excavation Augmentor", "20701": "Capital Armor Repairer I", "20702": "Capital Armor Repairer I Blueprint", "20703": "Capital Shield Booster I", "20704": "Capital Shield Booster I Blueprint", "20713": "Utrainen's Employment Voucher", "20715": "Jorek Lephny", "20721": "Arch Angel Carbonized Lead L", "20723": "Arch Angel Nuclear L", "20725": "Arch Angel Proton L", "20727": "Arch Angel Depleted Uranium L", "20729": "Arch Angel Titanium Sabot L", "20731": "Arch Angel Fusion L", "20733": "Arch Angel Phased Plasma L", "20735": "Arch Angel EMP L", "20737": "Arch Angel Carbonized Lead XL", "20739": "Arch Angel Depleted Uranium XL", "20741": "Arch Angel EMP XL", "20743": "Arch Angel Fusion XL", "20745": "Arch Angel Nuclear XL", "20747": "Arch Angel Phased Plasma XL", "20749": "Arch Angel Proton XL", "20751": "Arch Angel Titanium Sabot XL", "20753": "Domination Carbonized Lead S", "20755": "Domination Nuclear S", "20757": "Domination Proton S", "20759": "Domination Depleted Uranium S", "20761": "Domination Titanium Sabot S", "20763": "Domination Fusion S", "20765": "Domination Phased Plasma S", "20767": "Domination EMP S", "20769": "Domination Carbonized Lead M", "20771": "Domination Nuclear M", "20773": "Domination Proton M", "20775": "Domination Depleted Uranium M", "20777": "Domination Titanium Sabot M", "20779": "Domination Fusion M", "20781": "Domination Phased Plasma M", "20783": "Domination EMP M", "20785": "Domination Carbonized Lead L", "20787": "Domination Nuclear L", "20789": "Domination Proton L", "20791": "Domination Depleted Uranium L", "20793": "Domination Titanium Sabot L", "20795": "Domination Fusion L", "20797": "Domination Phased Plasma L", "20799": "Domination EMP L", "20801": "Domination Carbonized Lead XL", "20803": "Domination Depleted Uranium XL", "20805": "Domination EMP XL", "20807": "Domination Fusion XL", "20809": "Domination Nuclear XL", "20811": "Domination Phased Plasma XL", "20813": "Domination Proton XL", "20815": "Domination Titanium Sabot XL", "20817": "Sanshas Ultraviolet S", "20819": "Sanshas Xray S", "20821": "Sanshas Gamma S", "20823": "Sanshas Multifrequency S", "20825": "Sanshas Ultraviolet M", "20827": "Sanshas Xray M", "20829": "Sanshas Gamma M", "20831": "Sanshas Multifrequency M", "20833": "Sanshas Ultraviolet L", "20835": "Sanshas Xray L", "20837": "Sanshas Gamma L", "20839": "Sanshas Multifrequency L", "20841": "Sanshas Ultraviolet XL", "20843": "Sanshas Xray XL", "20845": "Sanshas Gamma XL", "20847": "Sanshas Multifrequency XL", "20849": "True Sanshas Radio S", "20851": "True Sanshas Microwave S", "20853": "True Sanshas Infrared S", "20855": "True Sanshas Standard S", "20857": "True Sanshas Ultraviolet S", "20859": "True Sanshas Xray S", "20861": "True Sanshas Gamma S", "20863": "True Sanshas Multifrequency S", "20865": "True Sanshas Radio M", "20867": "True Sanshas Microwave M", "20869": "True Sanshas Infrared M", "20871": "True Sanshas Standard M", "20873": "True Sanshas Ultraviolet M", "20875": "True Sanshas Xray M", "20877": "True Sanshas Gamma M", "20879": "True Sanshas Multifrequency M", "20881": "True Sanshas Radio L", "20883": "True Sanshas Microwave L", "20885": "True Sanshas Infrared L", "20887": "True Sanshas Standard L", "20889": "True Sanshas Ultraviolet L", "20891": "True Sanshas Xray L", "20893": "True Sanshas Gamma L", "20895": "True Sanshas Multifrequency L", "20897": "True Sanshas Radio XL", "20899": "True Sanshas Microwave XL", "20901": "True Sanshas Infrared XL", "20903": "True Sanshas Standard XL", "20905": "True Sanshas Ultraviolet XL", "20907": "True Sanshas Xray XL", "20909": "True Sanshas Gamma XL", "20911": "True Sanshas Multifrequency XL", "20913": "Shadow Iron Charge L", "20915": "Shadow Tungsten Charge L", "20917": "Shadow Iridium Charge L", "20919": "Shadow Lead Charge L", "20921": "Shadow Thorium Charge L", "20923": "Shadow Uranium Charge L", "20925": "Shadow Plutonium Charge L", "20927": "Shadow Antimatter Charge L", "20929": "Shadow Antimatter Charge XL", "20931": "Shadow Iridium Charge XL", "20933": "Shadow Iron Charge XL", "20935": "Shadow Lead Charge XL", "20937": "Shadow Plutonium Charge XL", "20939": "Shadow Thorium Charge XL", "20941": "Shadow Tungsten Charge XL", "20943": "Shadow Uranium Charge XL", "20945": "Guardian Iron Charge S", "20947": "Guardian Tungsten Charge S", "20949": "Guardian Iridium Charge S", "20951": "Guardian Lead Charge S", "20953": "Guardian Thorium Charge S", "20955": "Guardian Uranium Charge S", "20957": "Guardian Plutonium Charge S", "20959": "Guardian Antimatter Charge S", "20961": "Guardian Iron Charge M", "20963": "Guardian Tungsten Charge M", "20965": "Guardian Iridium Charge M", "20967": "Guardian Lead Charge M", "20969": "Guardian Thorium Charge M", "20971": "Guardian Uranium Charge M", "20973": "Guardian Plutonium Charge M", "20975": "Guardian Antimatter Charge M", "20977": "Guardian Iron Charge L", "20979": "Guardian Tungsten Charge L", "20981": "Guardian Iridium Charge L", "20983": "Guardian Lead Charge L", "20985": "Guardian Thorium Charge L", "20987": "Guardian Uranium Charge L", "20989": "Guardian Plutonium Charge L", "20991": "Guardian Antimatter Charge L", "20993": "Guardian Antimatter Charge XL", "20995": "Guardian Iridium Charge XL", "20997": "Guardian Iron Charge XL", "20999": "Guardian Lead Charge XL", "21001": "Guardian Plutonium Charge XL", "21003": "Guardian Thorium Charge XL", "21005": "Guardian Tungsten Charge XL", "21007": "Guardian Uranium Charge XL", "21009": "Capital Propulsion Engine", "21010": "Capital Propulsion Engine Blueprint", "21011": "Capital Turret Hardpoint", "21012": "Capital Turret Hardpoint Blueprint", "21013": "Capital Sensor Cluster", "21014": "Capital Sensor Cluster Blueprint", "21017": "Capital Armor Plates", "21018": "Capital Armor Plates Blueprint", "21019": "Capital Capacitor Battery", "21020": "Capital Capacitor Battery Blueprint", "21021": "Capital Power Generator", "21022": "Capital Power Generator Blueprint", "21023": "Capital Shield Emitter", "21024": "Capital Shield Emitter Blueprint", "21025": "Capital Jump Drive", "21026": "Capital Jump Drive Blueprint", "21027": "Capital Cargo Bay", "21028": "Capital Cargo Bay Blueprint", "21029": "Capital Drone Bay", "21030": "Capital Drone Bay Blueprint", "21035": "Capital Computer System", "21036": "Capital Computer System Blueprint", "21037": "Capital Construction Parts", "21038": "Capital Construction Parts Blueprint", "21039": "Capital Siege Array", "21040": "Capital Siege Array Blueprint", "21041": "Capital Launcher Hardpoint", "21042": "Capital Launcher Hardpoint Blueprint", "21043": "Ancient Treasure Map", "21044": "Pistols", "21046": "Nugoeihuvi Transaction Logs", "21048": "Kepheur's Keycard", "21053": "Kepheur's DNA", "21054": "Crude Sculpture", "21057": "Tara's Insignia", "21059": "Shield Compensation", "21062": "Makele's Tag", "21064": "Zvarin Karsha", "21066": "Ryoke Laika", "21067": "Ryoke Laika's Head", "21070": "Sheriff Togany", "21071": "Rapid Launch", "21073": "Sleeper Split Cables", "21074": "Talocan Sketch Books", "21075": "Talocan Molecule Binder", "21076": "Talocan Stasis Inverter", "21077": "Talocan Info Shards", "21078": "Talocan Reflective Sheets", "21079": "Talocan Perpetual Clock", "21080": "Talocan Solid Atomizer", "21081": "Talocan Mechanical Gears", "21082": "Talocan System Interface Unit", "21084": "Talocan Mathematical Schematics", "21085": "Talocan Automation Accounts", "21086": "Talocan Partition Plates", "21087": "Talocan Intricate Formulas", "21088": "Talocan Stasis Deflector", "21089": "Talocan Ignition Device", "21091": "Bai's Corpse", "21096": "Cynosural Field Generator I", "21097": "Goru's Shuttle", "21104": "Jakon's Tag", "21126": "Raytio Family Supplies", "21180": "Illian's Passcard", "21194": "Blood Radio S", "21196": "Blood Microwave S", "21198": "Blood Infrared S", "21200": "Blood Standard S", "21202": "Blood Ultraviolet S", "21204": "Blood Xray S", "21206": "Blood Gamma S", "21208": "Blood Multifrequency S", "21210": "Blood Microwave M", "21212": "Blood Infrared M", "21214": "Blood Standard M", "21216": "Blood Ultraviolet M", "21218": "Blood Xray M", "21220": "Blood Gamma M", "21222": "Blood Multifrequency M", "21224": "Blood Radio L", "21226": "Blood Microwave L", "21228": "Blood Infrared L", "21230": "Blood Standard L", "21232": "Blood Ultraviolet L", "21234": "Blood Xray L", "21236": "Blood Gamma L", "21238": "Blood Multifrequency L", "21240": "Blood Radio XL", "21242": "Blood Microwave XL", "21244": "Blood Infrared XL", "21246": "Blood Standard XL", "21248": "Blood Ultraviolet XL", "21250": "Blood Xray XL", "21252": "Blood Gamma XL", "21254": "Blood Multifrequency XL", "21256": "Dark Blood Radio S", "21258": "Dark Blood Microwave S", "3543": "Capital Neutron Saturation Injector I Blueprint", "21260": "Dark Blood Infrared S", "21262": "Dark Blood Standard S", "21264": "Dark Blood Ultraviolet S", "21266": "Dark Blood Xray S", "21268": "Dark Blood Gamma S", "21270": "Dark Blood Multifrequency S", "21272": "Dark Blood Radio M", "21274": "Dark Blood Microwave M", "21276": "Dark Blood Infrared M", "21278": "Dark Blood Standard M", "21280": "Dark Blood Ultraviolet M", "21282": "Dark Blood Xray M", "21284": "Dark Blood Gamma M", "21286": "Dark Blood Multifrequency M", "21288": "Dark Blood Radio L", "21290": "Dark Blood Microwave L", "21292": "Dark Blood Infrared L", "21294": "Dark Blood Standard L", "21296": "Dark Blood Ultraviolet L", "21298": "Dark Blood Xray L", "21300": "Dark Blood Gamma L", "21302": "Dark Blood Multifrequency L", "21304": "Dark Blood Radio XL", "21306": "Dark Blood Microwave XL", "21308": "Dark Blood Infrared XL", "21310": "Dark Blood Standard XL", "21312": "Dark Blood Ultraviolet XL", "21314": "Dark Blood Xray XL", "21316": "Dark Blood Gamma XL", "21318": "Dark Blood Multifrequency XL", "21320": "Guristas Iron Charge S", "21322": "Guristas Tungsten Charge S", "21324": "Guristas Iridium Charge S", "21326": "Guristas Lead Charge S", "21328": "Guristas Thorium Charge S", "21330": "Guristas Uranium Charge S", "21332": "Guristas Plutonium Charge S", "21334": "Guristas Antimatter Charge S", "21336": "Guristas Iron Charge M", "21338": "Guristas Tungsten Charge M", "21340": "Guristas Iridium Charge M", "21342": "Guristas Lead Charge M", "21344": "Guristas Thorium Charge M", "21346": "Guristas Uranium Charge M", "21348": "Guristas Plutonium Charge M", "21350": "Guristas Antimatter Charge M", "21352": "Guristas Iron Charge L", "21354": "Guristas Tungsten Charge L", "21356": "Guristas Iridium Charge L", "21358": "Guristas Lead Charge L", "21360": "Guristas Thorium Charge L", "21362": "Guristas Uranium Charge L", "21364": "Guristas Plutonium Charge L", "21366": "Guristas Antimatter Charge L", "21368": "Guristas Antimatter Charge XL", "21370": "Guristas Iridium Charge XL", "21372": "Guristas Iron Charge XL", "21374": "Guristas Lead Charge XL", "21376": "Guristas Plutonium Charge XL", "21378": "Guristas Thorium Charge XL", "21380": "Guristas Tungsten Charge XL", "21382": "Guristas Uranium Charge XL", "21384": "Dread Guristas Iron Charge S", "21386": "Dread Guristas Tungsten Charge S", "353147": "DAU-2/A Assault Forge Gun", "21388": "Dread Guristas Iridium Charge S", "21390": "Dread Guristas Lead Charge S", "21392": "Dread Guristas Thorium Charge S", "21394": "Dread Guristas Uranium Charge S", "21396": "Dread Guristas Plutonium Charge S", "21398": "Dread Guristas Antimatter Charge S", "21400": "Dread Guristas Iron Charge M", "21402": "Dread Guristas Tungsten Charge M", "21404": "Dread Guristas Iridium Charge M", "21406": "Dread Guristas Lead Charge M", "21408": "Dread Guristas Thorium Charge M", "21410": "Dread Guristas Uranium Charge M", "21412": "Dread Guristas Plutonium Charge M", "21414": "Dread Guristas Antimatter Charge M", "21416": "Dread Guristas Iron Charge L", "21418": "Dread Guristas Tungsten Charge L", "21420": "Dread Guristas Iridium Charge L", "21422": "Dread Guristas Lead Charge L", "21424": "Dread Guristas Thorium Charge L", "21426": "Dread Guristas Uranium Charge L", "21428": "Dread Guristas Plutonium Charge L", "21430": "Dread Guristas Antimatter Charge L", "21432": "Dread Guristas Antimatter Charge XL", "21434": "Dread Guristas Iridium Charge XL", "21436": "Dread Guristas Iron Charge XL", "21438": "Dread Guristas Lead Charge XL", "3573": "6x2500mm Heavy Gallium Repeating Cannon", "21440": "Dread Guristas Plutonium Charge XL", "353230": "Triage Repair Tool", "21442": "Dread Guristas Thorium Charge XL", "21444": "Dread Guristas Tungsten Charge XL", "21446": "Dread Guristas Uranium Charge XL", "21449": "Gatti's DNA", "21450": "Blood Radio M", "3575": "Capital Murky Energy Transmitter I", "21453": "Pata Wakiro's DNA", "21454": "Moa Parts", "21460": "Nugoeihuvi Rifles", "21461": "Wiyrkomi Rifles", "21462": "Propel Dynamics Reports", "21463": "Excavation Equipment", "21464": "Rifles", "21465": "Ancient Weapon", "21466": "Miner", "21467": "Spy", "21468": "Counterfeit Credits", "21469": "Bag of Counterfeit Credits", "21470": "1MN Analog Booster Rockets", "21471": "1MN Analog Booster Rockets Blueprint", "21472": "10MN Analog Booster Rockets", "21473": "10MN Analog Booster Rockets Blueprint", "21474": "100MN Analog Booster Rockets", "21475": "100MN Analog Booster Rockets Blueprint", "21476": "1MN Digital Booster Rockets", "21477": "1MN Digital Booster Rockets Blueprint", "21478": "10MN Digital Booster Rockets", "21479": "10MN Digital Booster Rockets Blueprint", "21480": "100MN Digital Booster Rockets", "21481": "100MN Digital Booster Rockets Blueprint", "21482": "Ballistic 'Purge' Targeting System I", "21483": "Ballistic 'Purge' Targeting System I Blueprint", "21484": "'Full Duplex' Ballistic Targeting System", "21485": "'Full Duplex' Ballistic Targeting System Blueprint", "21486": "'Kindred' Stabilization Actuator I", "21487": "'Kindred' Stabilization Actuator I Blueprint", "21488": "Monophonic Stabilization Actuator I", "21489": "Monophonic Stabilization Actuator I Blueprint", "21491": "Synthetic Hull Conversion Overdrive Injector I", "21492": "Synthetic Hull Conversion Overdrive Injector I Blueprint", "21493": "Limited Expanded 'Archiver' Cargo I", "21494": "Limited Expanded 'Archiver' Cargo I Blueprint", "21496": "Synthetic Hull Conversion Reinforced Bulkheads I", "21497": "Synthetic Hull Conversion Reinforced Bulkheads I Blueprint", "21498": "Synthetic Hull Conversion Inertia Stabilizers I", "21499": "Synthetic Hull Conversion Inertia Stabilizers I Blueprint", "21500": "Synthetic Hull Conversion Nanofiber Structure I", "21501": "Synthetic Hull Conversion Nanofiber Structure I Blueprint", "21502": "Zarkona Mirei", "21504": "Small 'Integrative' Hull Repair Unit", "21505": "Small 'Integrative' Hull Repair Unit Blueprint", "21506": "Medium 'Integrative' Hull Repair Unit", "21507": "Medium 'Integrative' Hull Repair Unit Blueprint", "21508": "Large 'Integrative' Hull Repair Unit", "21509": "Large 'Integrative' Hull Repair Unit Blueprint", "21510": "Process-Interruptive Warp Disruptor", "21511": "Process-Interruptive Warp Disruptor Blueprint", "21512": "'Delineative' Warp Scrambler", "21513": "'Delineative' Warp Scrambler Blueprint", "21514": "Doctored Arrivals & Departures Logs", "21516": "Cheri Mirei's DNA", "21517": "Parts of Printing Machine", "21520": "Guristas Outlaw Dogtag", "21521": "Gravimetric Firewall", "21522": "Gravimetric Firewall Blueprint", "21523": "LADAR Firewall", "21524": "LADAR Firewall Blueprint", "21525": "Magnetometric Firewall", "21526": "Magnetometric Firewall Blueprint", "21527": "Multi Sensor Firewall", "21528": "Multi Sensor Firewall Blueprint", "21529": "RADAR Firewall", "21530": "RADAR Firewall Blueprint", "21531": "Barbed Wire Scanner", "21532": "Micro Degenerative Concussion Bomb I", "21534": "Small Degenerative Concussion Bomb I", "21535": "Small Degenerative Concussion Bomb I Blueprint", "21536": "Medium Degenerative Concussion Bomb I", "21537": "Medium Degenerative Concussion Bomb I Blueprint", "21538": "Large Degenerative Concussion Bomb I", "21539": "Large Degenerative Concussion Bomb I Blueprint", "21540": "'Inception' Target Painter I", "21541": "'Inception' Target Painter I Blueprint", "21542": "N-1 Neon Type Rocket Bay", "21543": "N-1 Neon Type Rocket Bay Blueprint", "21544": "Broken Bug Device", "21545": "200mm Light 'Jolt' Autocannon I", "21546": "200mm Light 'Jolt' Autocannon I Blueprint", "21547": "250mm Light 'Jolt' Artillery I", "21548": "250mm Light 'Jolt' Artillery I Blueprint", "21549": "280mm 'Jolt' Artillery I", "21550": "280mm 'Jolt' Artillery I Blueprint", "21551": "425mm Medium 'Jolt' Autocannon I", "21552": "425mm Medium 'Jolt' Autocannon I Blueprint", "21553": "650mm Medium 'Jolt' Artillery I", "21554": "650mm Medium 'Jolt' Artillery I Blueprint", "21555": "720mm 'Jolt' Artillery I", "21556": "720mm 'Jolt' Artillery I Blueprint", "21557": "800mm Heavy 'Jolt' Repeating Artillery I", "21558": "800mm Heavy 'Jolt' Repeating Artillery I Blueprint", "21559": "1200mm Heavy 'Jolt' Artillery I", "21560": "1200mm Heavy 'Jolt' Artillery I Blueprint", "21561": "1400mm 'Jolt' Artillery I", "21562": "1400mm 'Jolt' Artillery I Blueprint", "21564": "Milk", "21565": "Guristas Outlaw Leader Insignia", "21566": "Impregnable Safe", "21567": "Powdered Cubensis", "21568": "Sleeper Data Interface Protocol", "21569": "Sleeper Profound Research Notes", "21570": "Sleeper Manuscripts", "21571": "Sleeper Technical Schematics", "21572": "Sleeper Data Crystals", "21573": "Tuning Instructions", "21574": "Prototype Diagram", "21575": "User Manual", "21576": "Interface Alignment Chart", "21577": "Installation Guide", "21579": "Calibration Data", "21580": "Advanced Theories", "21581": "Operation Handbook", "21582": "Circuitry Schematics", "21583": "Assembly Instructions", "21584": "Sleeper Micro Circuits", "21585": "Sleeper Cryo Batteries", "21586": "Sleeper Virtual Energizer", "21587": "Electronic Link", "21588": "Spare Parts", "21589": "Power Couplings", "21590": "Armor Blocks", "21591": "Computer Chips", "21592": "Electric Conduit", "21593": "Mechanic Parts", "21594": "Energy Cells", "21595": "Construction Alloy", "21596": "Data Processor", "21601": "Myrkai's Data Chip", "21602": "Jakon's Head", "21603": "Cynosural Field Theory", "21604": "Cynosural Field Generator I Blueprint", "21606": "Inherent Implants 'Noble' Hull Upgrades HG-1008", "21607": "Liberation Elixir", "21610": "Jump Fuel Conservation", "21611": "Jump Drive Calibration", "21612": "Dynamite Crate", "21613": "Safe-Deposit Box Owner List", "21614": "Plan to Crack Impregnable Safe", "21615": "Pakkori's Hat", "21616": "Nugoeihuvi Dogtag", "21619": "Wiretap Plant", "21620": "Assistant's Keychain", "21623": "Nugoeihuvi Station Schematics", "21624": "Encoded Lai Dai Reports", "21625": "Kusan Niemenen's Missile Launcher", "21626": "Propel Dynamics Dogtag", "21628": "Guristas Shuttle", "21631": "Construction Workers", "21632": "Construction Tools", "21634": "Secret Garage Coordinates", "21637": "Data Chip Decoder", "21638": "Vespa II", "21639": "Vespa II Blueprint", "21640": "Valkyrie II", "21641": "Valkyrie II Blueprint", "21661": "Spiked Quafe", "353247": "Stable Drop Uplink", "21663": "Scanner Data I", "21664": "Scanner Data II", "21665": "Scanner Data III", "21666": "Capital Hybrid Turret", "21667": "Capital Projectile Turret", "21668": "Citadel Torpedoes", "21669": "Guristas Communications Logs", "21671": "Guristas Patrol Routes", "21672": "Quao Kale", "21676": "Jedon Hekkiren's Belongings", "21677": "Hakkuran Brother's Remains", "21718": "Hacking", "21719": "Sleeper Hyperbooster", "21720": "Sleeper Thermal Regulator", "21721": "Sleeper Heat Nullifying Coil", "21722": "Sleeper Nanite Cluster", "21723": "Sleeper Reintegration Control", "21724": "Guristas Heavy Weapon Console", "21725": "Guristas Medium Weapon Console", "21726": "Guristas Light Weapon Console", "21727": "Guristas Gravity Focuser", "21728": "Guristas Graviton Hardening", "21729": "Angel Advanced Trigger Mechanism", "21730": "Angel Standard Trigger Mechanism", "21731": "Angel Simple Trigger Mechanism", "21732": "Angel Spatial Analyzer", "21733": "Angel Dynamic Calibrator", "21734": "Cattle", "21736": "Loki's DNA", "21739": "Shady Acres Deed", "21740": "Caldari Navy Antimatter Charge L", "21742": "Black Mask", "21743": "Nakyo Fukoren", "3627": "Construction Materials", "21783": "Unassembled Hybrid Weapons", "21784": "Hybrid Weapon Assembly Instructions", "21789": "Sleeper Technology", "21790": "Caldari Encryption Methods", "21791": "Minmatar Encryption Methods", "21793": "Pansya's Head", "21800": "EMP Charge Components", "21801": "Firewater", "21802": "Capital Shield Operation", "21803": "Capital Repair Systems", "21804": "Rotgut", "21808": "Punk ID Slice", "21809": "Hacker ID Slice", "21810": "Spy ID Slice", "21811": "Sniper ID Slice", "21812": "Ninja ID Slice", "21813": "Mikado ID Slice", "21815": "Elite Drone AI", "21816": "Tairei's Modified Cap Recharger", "21817": "Raysere's Modified Cap Recharger", "21818": "Ahremen's Modified Cap Recharger", "21819": "Draclira's Modified Cap Recharger", "21839": "Training Complex Passkey", "21841": "Gallente Mining Laser", "21850": "Infected Refugees", "21851": "Formula for Septicemic Agent", "21852": "Sample of Septicemic Agent", "21853": "Civilian Armor Repairer", "21855": "Civilian Expanded Cargohold", "21857": "Civilian Afterburner", "21862": "Karo Zulak's Insignia", "21867": "Nova Heavy Assault Missile", "21868": "Nova Heavy Assault Missile Blueprint", "3645": "Water", "21877": "Okham's Head", "21878": "Cracked Keycard", "21879": "Repaired Keycard", "21880": "Transputer Orb", "3647": "Holoreels", "21885": "Caldari Navy Convoy Disposition File", "21888": "Siege Warfare Mindlink", "21889": "Information Warfare Mindlink", "21890": "Skirmish Warfare Mindlink", "21892": "Hacker's Keycard", "21893": "Kutill's Data Chip", "21894": "Republic Fleet EMP L", "21896": "Republic Fleet EMP M", "21898": "Republic Fleet EMP S", "21900": "Republic Fleet EMP XL", "21902": "Republic Fleet Fusion L", "21904": "Republic Fleet Fusion M", "21906": "Republic Fleet Fusion S", "364099": "Mauler Heavy", "21908": "Republic Fleet Fusion XL", "21910": "Republic Fleet Nuclear L", "21912": "Republic Fleet Nuclear M", "21914": "Republic Fleet Nuclear S", "21916": "Republic Fleet Nuclear XL", "21918": "Republic Fleet Phased Plasma L", "3653": "Medium Hull Repairer I", "21920": "Republic Fleet Phased Plasma XL", "21922": "Republic Fleet Phased Plasma M", "21924": "Republic Fleet Phased Plasma S", "3654": "Medium Hull Repairer I Blueprint", "21926": "Republic Fleet Proton L", "21928": "Republic Fleet Proton M", "21930": "Sealed Case of GI Paradise Missiles", "21931": "Republic Fleet Proton S", "3201": "Eifyr and Co. 'Gunslinger' Small Projectile Turret SP-606", "21933": "Republic Fleet Proton XL", "21935": "Republic Fleet Titanium Sabot L", "21937": "Republic Fleet Titanium Sabot M", "21939": "Republic Fleet Titanium Sabot S", "21941": "Republic Fleet Titanium Sabot XL", "21943": "Amarr Factory Outpost Platform Blueprint", "21944": "Caldari Research Outpost Platform Blueprint", "21945": "Gallente Administrative Outpost Platform Blueprint", "21946": "Minmatar Service Outpost Platform Blueprint", "21947": "Station Construction Parts", "21948": "Station Construction Parts Blueprint", "21949": "Station Hangar Array", "21950": "Station Hangar Array Blueprint", "21951": "Station Storage Bay", "21952": "Station Storage Bay Blueprint", "21953": "Station Laboratory", "21954": "Station Laboratory Blueprint", "21955": "Station Factory", "21956": "Station Factory Blueprint", "21957": "Station Repair Facility", "21958": "Station Repair Facility Blueprint", "21959": "Station Reprocessing Plant", "21960": "Station Reprocessing Plant Blueprint", "21961": "Station Docking Bay", "21962": "Station Docking Bay Blueprint", "21963": "Station Market Network", "21964": "Station Market Network Blueprint", "21965": "Station Medical Center", "21966": "Station Medical Center Blueprint", "21967": "Station Office Center", "21968": "Station Office Center Blueprint", "21969": "Station Mission Network", "21970": "Station Mission Network Blueprint", "21971": "Broken ComLink Scanner", "21973": "Machul's Head", "353188": "Wiyrkomi Specialist Swarm Launcher", "3663": "Large Hull Repairer I", "353189": "Ishukone Assault Swarm Launcher", "353190": "'Mimicry' CreoDron Tactical Swarm Launcher", "353191": "'Weavewind' Roden Swarm Launcher", "353192": "'Haywire' Wiyrkomi Swarm Launcher", "353193": "Militia Swarm Launcher", "353196": "Specialist Scrambler Pistol", "22030": "Destroyed ComLink Scanner", "353197": "Burst Scrambler Pistol", "22033": "Republic Pilot", "22035": "Body Bag", "22036": "Republic Fleet Deserter", "22037": "Republic Repair Kit", "22038": "Norak Pakkul's DNA", "3673": "Wheat", "22043": "Tactical Weapon Reconfiguration", "22044": "Vat of Aqua Regia Acid", "22045": "Remains of Thukker Pest", "22046": "DNA Samples of Republic Commandos", "22049": "REF Insignia", "22054": "Thukker Loot", "22055": "Motherload Bomb", "22056": "Rebel Biomass", "22060": "Frozen Livers", "353202": "'Flashbow' CAR-9 Burst Scrambler Pistol", "22062": "Mangled Corpses", "22063": "Empty Data Chip", "22067": "Ambassador Hugo Farin", "22069": "Inspector Layna Whizon", "22073": "Bono Zakan Corpse", "22074": "Gist Database Codes", "22077": "Encoded Gurista Intelligence Dossier", "22078": "Modified Laser Rifles", "22080": "TX-890 Polytextile Fabric", "22083": "Jerpam Hollek's Head", "22085": "Injured Slaves", "22087": "Ancient Vherokior Medallion", "22089": "Lucia Deep", "22095": "Garp Soolim's ID Tag", "22096": "Hraldar's Sculpture", "22099": "Telligman's Stone", "22100": "Namian's Artifacts", "22101": "ST 58 Memory Chip", "22102": "ST 59 Memory Chip", "22103": "ST 60 Memory Chip", "22107": "Low-grade Crystal Alpha", "22108": "Low-grade Crystal Beta", "22109": "Low-grade Crystal Delta", "22110": "Low-grade Crystal Epsilon", "22111": "Low-grade Crystal Gamma", "22112": "Low-grade Crystal Omega", "22113": "Low-grade Halo Alpha", "22114": "Low-grade Halo Beta", "22115": "Low-grade Halo Delta", "22116": "Low-grade Halo Epsilon", "22117": "Low-grade Halo Gamma", "22118": "Low-grade Halo Omega", "22119": "Low-grade Slave Alpha", "22120": "Low-grade Slave Beta", "22121": "Low-grade Slave Delta", "22122": "Low-grade Slave Epsilon", "22123": "Low-grade Slave Gamma", "22124": "Low-grade Slave Omega", "22125": "Low-grade Snake Alpha", "22126": "Low-grade Snake Beta", "22127": "Low-grade Snake Delta", "22128": "Low-grade Snake Epsilon", "22129": "Low-grade Snake Gamma", "22130": "Low-grade Snake Omega", "22131": "Low-grade Talisman Alpha", "22133": "Low-grade Talisman Beta", "22134": "Low-grade Talisman Delta", "22135": "Low-grade Talisman Epsilon", "22136": "Low-grade Talisman Gamma", "22137": "Low-grade Talisman Omega", "22139": "Kardimo Palettan", "22140": "Tri-Vitoc", "22141": "Finger Bone", "22142": "Prophecy Virus", "22143": "Freed Pet Slaves", "22144": "Sadry Damoklet's Head", "22146": "Forged Waypoint Logs", "22149": "Searcher Drone's Memory Chip", "22151": "Yttora's Corpse", "22152": "ID Card Generator", "22155": "Sispur's Security Camera Logs", "22157": "Sispur Estate Keycard", "22159": "Mysterious Portal Parts", "22162": "Runic Tablet", "22163": "Patrenn's Stash", "22164": "Navy Issue Amplifier", "22165": "Custom-made Antenna", "22166": "Portable Power Generator", "22167": "Broken Science Equipment", "353220": "Ishukone Flux Nanohive", "22173": "The Infiltrator", "22174": "Blue Box", "22175": "Codebreaker I", "22176": "Codebreaker I Blueprint", "22177": "Analyzer I", "22178": "Analyzer I Blueprint", "353222": "Ishukone Gauged Nanohive", "353224": "'Centrifuge' Ishukone Flux Nanohive", "22194": "Minmatar Republic Narcotic Officer's Tag", "3699": "Quafe", "353225": "'Isotope' Kaalakiota Nanohive", "22201": "Uni-Dimensional Algorithm Code", "22203": "Angel Drug Addict Tag", "22204": "Red Hammer's Personal Effects", "22205": "Godun Sakt's Diamond Drill", "22206": "Blood Sample", "22207": "Analyzed Blood Sample", "22208": "Prostitute", "22209": "Refugee", "22210": "Cloned SOE officer", "22211": "Angel Cartel Computer Hardware", "22214": "Godun Sakt's Questionable Holoreel", "22217": "Strange Construction Blocks", "22218": "Drug Delivery Package", "22219": "Replacement Laboratory Equipment", "22220": "Mind-Altering Drugs", "22222": "Classified Report - Station Defenses", "22227": "Armored Warfare Link - Rapid Repair I", "22228": "Siege Warfare Link - Shield Efficiency I", "22229": "Ice Harvester II", "22230": "Ice Harvester II Blueprint", "22231": "Recruitment Center Data Log", "22234": "Vanir Makono's DNA", "353231": "Inert Repair Tool", "22242": "Capital Ship Construction", "353233": "BDR-2 Repair Tool", "22248": "Ancient Nefantar Sculpture", "22249": "Lagaster Malotoff's Tag", "353234": "BDR-5 Axis Repair Tool", "22254": "Rekker's Keycard", "353235": "A/7 Inert Repair Tool", "353236": "Core Repair Tool", "3711": "X-Instinct", "22277": "Kyan Magdesh's DNA", "22288": "Angel Cartel Scanner Data", "22291": "Ballistic Control System II", "22292": "Ballistic Control System II Blueprint", "22295": "Ancient Ciphering Totem", "22299": "Armored Warfare Link - Damage Control I Blueprint", "22300": "Armored Warfare Link - Passive Defense I Blueprint", "22301": "Armored Warfare Link - Rapid Repair I Blueprint", "22302": "Command Processor I Blueprint", "22303": "Information Warfare Link - Electronic Superiority I Blueprint", "22304": "Information Warfare Link - Recon Operation I Blueprint", "22305": "Information Warfare Link - Sensor Integrity I Blueprint", "22306": "Siege Warfare Link - Shield Harmonizing I Blueprint", "22307": "Siege Warfare Link - Active Shielding I Blueprint", "22308": "Siege Warfare Link - Shield Efficiency I Blueprint", "22309": "Skirmish Warfare Link - Evasive Maneuvers I Blueprint", "22310": "Skirmish Warfare Link - Interdiction Maneuvers I Blueprint", "22311": "Skirmish Warfare Link - Rapid Deployment I Blueprint", "353244": "Flux Drop Uplink", "22315": "Encoded RSS Brief", "22317": "Nanom Basskel's Ship Logs", "353245": "Quantum Drop Uplink", "22321": "Grace Tarsis", "22325": "'Daemon' Codebreaker I", "22326": "'Daemon' Codebreaker I Blueprint", "22327": "'Codex' Codebreaker I", "22328": "'Codex' Codebreaker I Blueprint", "22329": "'Alpha' Codebreaker I", "22330": "'Alpha' Codebreaker I Blueprint", "22331": "'Libram' Codebreaker I", "22332": "'Libram' Codebreaker I Blueprint", "22333": "Talocan Data Analyzer I", "22335": "Sleeper Data Analyzer I", "22337": "Terran Data Analyzer I", "22339": "Tetrimon Data Analyzer I", "353249": "N-11/A Flux Drop Uplink", "3725": "Livestock", "353251": "Imperial Drop Uplink", "3727": "Plutonium", "3729": "Toxic Waste", "353255": "'Abyss' Carthum Drop Uplink", "353257": "[TEST] QA Dropsuit", "22428": "Redeemer", "22429": "Redeemer Blueprint", "22430": "Sin", "22431": "Sin Blueprint", "353264": "Blaster Installation", "22436": "Widow", "22437": "Widow Blueprint", "22440": "Panther", "22441": "Panther Blueprint", "22442": "Eos", "22443": "Eos Blueprint", "22444": "Sleipnir", "22445": "Sleipnir Blueprint", "22446": "Vulture", "22447": "Vulture Blueprint", "22448": "Absolution", "22449": "Absolution Blueprint", "22452": "Heretic", "22453": "Heretic Blueprint", "22456": "Sabre", "22457": "Sabre Blueprint", "22460": "Eris", "22461": "Eris Blueprint", "22464": "Flycatcher", "22465": "Flycatcher Blueprint", "22466": "Astarte", "22467": "Astarte Blueprint", "22468": "Claymore", "22469": "Claymore Blueprint", "22470": "Nighthawk", "22471": "Nighthawk Blueprint", "22474": "Damnation", "22475": "Damnation Blueprint", "22494": "Utrainen's Reports", "353184": "CFG-129 Assault Swarm Launcher", "353185": "'Darkside' CBR7 Swarm Launcher", "22534": "Inherent Implants 'Highwall' Mining MX-1003", "22535": "Inherent Implants 'Highwall' Mining MX-1005", "22536": "Mining Foreman", "22542": "Mining Laser Upgrade I", "22543": "Mining Laser Upgrade I Blueprint", "22544": "Hulk", "22545": "Hulk Blueprint", "22546": "Skiff", "22547": "Skiff Blueprint", "22548": "Mackinaw", "22549": "Mackinaw Blueprint", "22551": "Exhumers", "22552": "Mining Director", "22553": "Mining Foreman Link - Harvester Capacitor Efficiency I", "22554": "Mining Foreman Link - Harvester Capacitor Efficiency I Blueprint", "22555": "Mining Foreman Link - Mining Laser Field Enhancement I", "22556": "Mining Foreman Link - Mining Laser Field Enhancement I Blueprint", "22557": "Mining Foreman Link - Laser Optimization I", "22558": "Mining Foreman Link - Laser Optimization I Blueprint", "22559": "Mining Foreman Mindlink", "22564": "True Sansha Rocket Launcher", "22565": "True Sansha Light Missile Launcher", "22566": "True Sansha Rapid Light Missile Launcher", "22567": "True Sansha Heavy Missile Launcher", "22568": "True Sansha Cruise Missile Launcher", "22569": "True Sansha Torpedo Launcher", "22570": "Inherent Implants 'Yeti' Ice Harvesting IH-1003", "22571": "Inherent Implants 'Yeti' Ice Harvesting IH-1005", "22572": "Praetor EV-900", "22573": "Praetor EV-900 Blueprint", "22576": "Ice Harvester Upgrade I", "22577": "Ice Harvester Upgrade I Blueprint", "22578": "Mining Upgrades", "353289": "Militia MT-1 Missile Launcher", "353187": "Wiyrkomi Swarm Launcher", "3765": "Leviathan Blueprint", "22609": "Erin Mining Laser Upgrade", "22611": "Elara Mining Laser Upgrade", "22613": "Carpo Mining Laser Upgrade", "22615": "Aoede Mining Laser Upgrade", "22617": "Crisium Ice Harvester Upgrade", "22619": "Frigoris Ice Harvester Upgrade", "22621": "Anguis Ice Harvester Upgrade", "22623": "Ingenii Ice Harvester Upgrade", "3771": "Ectoplasm", "22634": "Medium Biochemical Reactor Array", "3777": "Long-limb Roes", "22701": "Minmatar Bluechip", "22705": "Minas's Voucher", "22707": "Oggiin Kalda's DNA", "22708": "Amarrian Spy", "22715": "Republic Special Ops Field Enhancer - Gamma", "22730": "Amarr Training Certification Results", "22738": "Ison's Voucher", "22740": "Caldari P.A. Keycard", "22741": "Caldari P.A. Keycard Replica", "22751": "Khanid Ext Keycard", "22752": "Khanid Commander", "22754": "Gallente Intelligence Data Recorder", "22756": "Khanid Commander Keycard", "22760": "Imperial Special Ops Field Enhancer - Standard", "22761": "Recon Ships", "22764": "Minmatar Training Certification Results", "22765": "Heavy Shield Maintenance Bot I", "22766": "Heavy Shield Maintenance Bot I Blueprint", "22778": "Warp Disrupt Probe", "22779": "Warp Disrupt Probe Blueprint", "22782": "Interdiction Sphere Launcher I", "22783": "Interdiction Sphere Launcher I Blueprint", "22788": "Amarr Reporter", "364105": "Recruit Assault Dropsuit", "22792": "Amarrian Agent", "22793": "Amarr Corpse", "22795": "Gallente Corpse", "22796": "Gallente Reporter", "22801": "Amarr Light Marines", "22802": "Gallente Light Marines", "22803": "Minmatar Light Marines", "22804": "Caldari Light Marines", "22806": "EM Armor Compensation", "22807": "Explosive Armor Compensation", "22808": "Kinetic Armor Compensation", "22809": "Thermic Armor Compensation", "2942": "Captured CEO", "3207": "Inherent Implants 'Lancer' Small Energy Turret SE-604", "22847": "Minmatar Civilians", "22852": "Hel", "22853": "Hel Blueprint", "22875": "'Aura' Warp Core Stabilizer I", "22876": "'Aura' Warp Core Stabilizer I Blueprint", "22877": "'Natura' Warp Core Stabilizer I", "22878": "'Natura' Warp Core Stabilizer I Blueprint", "22879": "'Pilfer' Energized Adaptive Nano Membrane I", "22880": "'Pilfer' Energized Adaptive Nano Membrane I Blueprint", "22881": "'Moonshine' Energized Thermic Membrane I", "22882": "'Moonshine' Energized Thermic Membrane I Blueprint", "22883": "'Mafia' Energized Kinetic Membrane I", "22884": "'Mafia' Energized Kinetic Membrane I Blueprint", "22887": "'Harmony' Small Armor Repairer I", "22888": "'Harmony' Small Armor Repairer I Blueprint", "22889": "'Meditation' Medium Armor Repairer I", "22890": "'Meditation' Medium Armor Repairer I Blueprint", "22891": "'Protest' Large Armor Repairer I", "22892": "'Protest' Large Armor Repairer I Blueprint", "22893": "'Gonzo' Damage Control I", "22894": "'Gonzo' Damage Control I Blueprint", "22895": "'Shady' ECCM - Gravimetric I", "22896": "'Shady' ECCM - Gravimetric I Blueprint", "22897": "'Forger' ECCM - Magnetometric I", "22898": "'Forger' ECCM - Magnetometric I Blueprint", "22899": "'Corporate' Light Electron Blaster I", "22900": "'Corporate' Light Electron Blaster I Blueprint", "22901": "'Dealer' Light Ion Blaster I", "22902": "'Dealer' Light Ion Blaster I Blueprint", "22903": "'Racket' Light Neutron Blaster I", "22905": "'Slither' Heavy Electron Blaster I", "22906": "'Slither' Heavy Electron Blaster I Blueprint", "22907": "'Hooligan' Heavy Ion Blaster I", "22908": "'Hooligan' Heavy Ion Blaster I Blueprint", "22909": "'Hustler' Heavy Neutron Blaster I", "22910": "'Hustler' Heavy Neutron Blaster I Blueprint", "22911": "'Swindler' Electron Blaster Cannon I", "22912": "'Swindler' Electron Blaster Cannon I Blueprint", "22913": "'Felon' Ion Blaster Cannon I", "22914": "'Felon' Ion Blaster Cannon I Blueprint", "22915": "'Underhand' Neutron Blaster Cannon I", "22916": "'Underhand' Neutron Blaster Cannon I Blueprint", "22917": "'Capitalist' Magnetic Field Stabilizer I", "22918": "'Capitalist' Magnetic Field Stabilizer I Blueprint", "22919": "'Monopoly' Magnetic Field Stabilizer I", "22920": "'Monopoly' Magnetic Field Stabilizer I Blueprint", "22921": "'Habitat' Miner I", "22923": "'Wild' Miner I", "22925": "'Bootleg' ECCM Projector I", "22926": "'Bootleg' ECCM Projector I Blueprint", "22927": "'Economist' Tracking Computer I", "22928": "'Economist' Tracking Computer I Blueprint", "22929": "'Marketeer' Tracking Computer I", "22930": "'Marketeer' Tracking Computer I Blueprint", "22931": "'Distributor' Tracking Disruptor I", "22932": "'Distributor' Tracking Disruptor I Blueprint", "22933": "'Investor' Tracking Disruptor I", "22934": "'Investor' Tracking Disruptor I Blueprint", "22935": "'Tycoon' Tracking Link I", "22936": "'Tycoon' Tracking Link I Blueprint", "22937": "'Enterprise' Tracking Link I", "22938": "'Enterprise' Tracking Link I Blueprint", "22939": "'Boss' Remote Sensor Booster I", "22940": "'Boss' Remote Sensor Booster I Blueprint", "22941": "'Entrepreneur' Remote Sensor Booster I", "22942": "'Entrepreneur' Remote Sensor Booster I Blueprint", "22943": "'Broker' Remote Sensor Dampener I", "22944": "'Broker' Remote Sensor Dampener I Blueprint", "22945": "'Executive' Remote Sensor Dampener I", "22946": "'Executive' Remote Sensor Dampener I Blueprint", "22947": "'Beatnik' Small Remote Armor Repair System I", "22948": "'Beatnik' Small Remote Armor Repair System I Blueprint", "22949": "'Love' Medium Remote Armor Repair System I", "22950": "'Love' Medium Remote Armor Repair System I Blueprint", "22951": "'Pacifier' Large Remote Armor Repair System I", "22952": "'Pacifier' Large Remote Armor Repair System I Blueprint", "22953": "'Cartel' Power Diagnostic System I", "22954": "'Cartel' Power Diagnostic System I Blueprint", "22961": "Federation Navy Antimatter Charge S", "22963": "Federation Navy Plutonium Charge S", "22965": "Federation Navy Uranium Charge S", "22967": "Federation Navy Thorium Charge S", "22969": "Federation Navy Lead Charge S", "22971": "Federation Navy Iridium Charge S", "22973": "Federation Navy Tungsten Charge S", "22975": "Federation Navy Iron Charge S", "22977": "Federation Navy Antimatter Charge M", "22979": "Federation Navy Plutonium Charge M", "22981": "Federation Navy Uranium Charge M", "22983": "Federation Navy Thorium Charge M", "22985": "Federation Navy Lead Charge M", "22987": "Federation Navy Iridium Charge M", "22989": "Federation Navy Tungsten Charge M", "22991": "Federation Navy Iron Charge M", "22993": "Federation Navy Antimatter Charge L", "22995": "Federation Navy Plutonium Charge L", "22997": "Federation Navy Uranium Charge L", "22999": "Federation Navy Thorium Charge L", "23001": "Federation Navy Lead Charge L", "2948": "Shadow", "23003": "Federation Navy Iridium Charge L", "23005": "Federation Navy Tungsten Charge L", "23007": "Federation Navy Iron Charge L", "23009": "Caldari Navy Antimatter Charge S", "23011": "Caldari Navy Plutonium Charge S", "23013": "Caldari Navy Uranium Charge S", "23015": "Caldari Navy Thorium Charge S", "23017": "Caldari Navy Lead Charge S", "23019": "Caldari Navy Iridium Charge S", "23021": "Caldari Navy Tungsten Charge S", "23023": "Caldari Navy Iron Charge S", "23025": "Caldari Navy Antimatter Charge M", "23027": "Caldari Navy Plutonium Charge M", "23029": "Caldari Navy Uranium Charge M", "23031": "Caldari Navy Thorium Charge M", "2949": "Shadow Blueprint", "23033": "Caldari Navy Lead Charge M", "23035": "Caldari Navy Iridium Charge M", "23037": "Caldari Navy Tungsten Charge M", "23039": "Caldari Navy Iron Charge M", "23041": "Caldari Navy Plutonium Charge L", "23043": "Caldari Navy Uranium Charge L", "23045": "Caldari Navy Thorium Charge L", "23047": "Caldari Navy Lead Charge L", "23049": "Caldari Navy Iridium Charge L", "23051": "Caldari Navy Tungsten Charge L", "23053": "Caldari Navy Iron Charge L", "23055": "Templar", "23056": "Templar Blueprint", "23057": "Dragonfly", "23058": "Dragonfly Blueprint", "23059": "Firbolg", "23060": "Firbolg Blueprint", "23061": "Einherji", "23062": "Einherji Blueprint", "23069": "Fighters", "23071": "Imperial Navy Multifrequency S", "23073": "Imperial Navy Gamma S", "23075": "Imperial Navy Xray S", "23077": "Imperial Navy Ultraviolet S", "23079": "Imperial Navy Standard S", "23081": "Imperial Navy Infrared S", "23083": "Imperial Navy Microwave S", "23085": "Imperial Navy Radio S", "23087": "Amarr Encryption Methods", "23089": "Imperial Navy Multifrequency M", "23091": "Imperial Navy Gamma M", "23093": "Imperial Navy Xray M", "23095": "Imperial Navy Ultraviolet M", "23097": "Imperial Navy Standard M", "23099": "Imperial Navy Infrared M", "23101": "Imperial Navy Microwave M", "23103": "Imperial Navy Radio M", "23105": "Imperial Navy Multifrequency L", "23107": "Imperial Navy Gamma L", "23109": "Imperial Navy Xray L", "23111": "Imperial Navy Ultraviolet L", "23113": "Imperial Navy Standard L", "23115": "Imperial Navy Infrared L", "23117": "Imperial Navy Microwave L", "23119": "Imperial Navy Radio L", "23121": "Gallente Encryption Methods", "2952": "Crate of Unidentified Fibrous Compound", "23123": "Takmahl Technology", "23124": "Yan Jung Technology", "23128": "Yan Jung Crystal Cylinder", "23129": "Yan Jung Paradox Box", "23130": "Yan Jung Thunder Kite", "23131": "Yan Jung Void Machine", "23132": "Yan Jung Tachyon Stetoscope", "23133": "Takmahl Phrenic Appendix", "23134": "Takmahl Dynamic Gauge", "23135": "Takmahl Gyro Ballast", "23136": "Takmahl Biodroid Controller", "23137": "Takmahl Quantum Sphere", "23138": "Yan Jung Null Shell", "23139": "Yan Jung Glass Scale", "23140": "Yan Jung Plenary Wire", "23141": "Yan Jung Silk Armor", "23142": "Yan Jung Nano Fabric", "23143": "Takmahl Diamond Rod", "23144": "Takmahl Cohere Cord", "23145": "Takmahl Solid Mox", "23146": "Takmahl Magnetic Slab", "23147": "Takmahl Tri-polished Lens", "23148": "Blood Raider Limited Ballistic Control", "23149": "Blood Raider Regular Ballistic Control", "23150": "Blood Raider Extreme Ballistic Control", "23151": "Blood Raider Weapon Integration Unit", "23152": "Blood Raider Power Redistributor", "23153": "Serpentis Plain Target Guider", "23154": "Serpentis Basic Target Guider", "23155": "Serpentis Complex Target Guider", "23156": "Serpentis 3D Scanner Gamut", "23157": "Serpentis Multi-tasking Processor", "23158": "Positron Cord", "23159": "Auxiliary Parts", "23160": "Force Cable", "23161": "Elemental Crux", "23162": "Analog Panel", "23163": "Current Amplifier", "23164": "Second-hand Parts", "23165": "Heat Depressor", "23166": "Internal Bulkhead", "23167": "Mainframe Bit", "23168": "Yan Jung Info Matrix", "23169": "Yan Jung Vellum Etch", "23170": "Yan Jung Trigonometric Laws", "23171": "Yan Jung Semiotic Theory", "23172": "Yan Jung Singularity Fact Sheet", "23173": "Takmahl Binary Texts", "23174": "Takmahl Fractal Sheet", "23175": "Takmahl Centrifugal Primer", "23176": "Takmahl Geometric Design", "23177": "Takmahl Astral Treatment", "23178": "Formation Layout", "23179": "Classic Doctrine", "23180": "Sacred Manifesto", "23181": "Circular Logic", "23182": "War Strategon", "23183": "Collision Measurements", "23184": "Test Reports", "23185": "Engagement Plan", "23186": "Symbiotic Figures", "23187": "Stolen Formulas", "353391": "Gallente LAV", "23234": "Azure Canyon Tourist Pass", "23236": "Black Market Entry Keycard", "353399": "Marauder", "23272": "Alarus Ekire's Insignia", "23273": "Drill", "23274": "Caldari Surveyor", "23303": "Wiyrkomi Voucher", "23327": "Temko Mercenaries", "2960": "Spools of Quantrium Wiring", "351063": "Heavy Machine Gun", "3898": "Quafe Zero", "351071": "Assault Type-I", "2961": "1400mm Howitzer Artillery II", "23414": "'Brotherhood' Small Remote Armor Repair System I", "23415": "'Brotherhood' Small Remote Armor Repair System I Blueprint", "23416": "'Peace' Large Remote Armor Repair System I", "23417": "'Peace' Large Remote Armor Repair System I Blueprint", "23418": "'Radical' Damage Control I", "23419": "'Radical' Damage Control I Blueprint", "23420": "Veko Tallaja's Voucher", "23421": "Eule Vitrauze's DNA", "2962": "1400mm Howitzer Artillery II Blueprint", "23473": "Wasp EC-900", "23474": "Wasp EC-900 Blueprint", "356306": "Wiyrkomi Triage Nanohive", "23506": "Ogre SD-900", "23507": "Ogre SD-900 Blueprint", "23508": "Interview Transcripts", "23509": "Scope Journalist", "23510": "Praetor TD-900", "23511": "Praetor TD-900 Blueprint", "23512": "Berserker TP-900", "23513": "Berserker TP-900 Blueprint", "23515": "Strange DNA", "23516": "Elere Febre's Data Log", "23517": "Salvaged Data Core", "23518": "Ardillan's Dossier", "23519": "FON Strike Scene Evidence", "353218": "X-3 Quantum Nanohive", "23521": "Serpentis Transaction Log", "23523": "Heavy Armor Maintenance Bot I", "23524": "Heavy Armor Maintenance Bot I Blueprint", "23525": "Curator I", "23526": "Curator I Blueprint", "23527": "Drone Link Augmentor I", "23528": "Drone Link Augmentor I Blueprint", "23533": "Omnidirectional Tracking Link I", "23534": "Omnidirectional Tracking Link I Blueprint", "23536": "Berserker SW-900", "23537": "Berserker SW-900 Blueprint", "23538": "Store Goods", "23539": "Stolen Goods", "23541": "Shady Goods", "23542": "Surveillance Recordings", "23543": "Spoiled Drugs", "23544": "Sealed Container", "23545": "Smuggler DNA", "23546": "ComLink Encoder/Decoder", "23547": "Dolls", "23548": "Tampered Dolls", "23549": "Smuggler Signet", "23550": "Don Rico's Head", "23551": "FON Contact DNA", "23552": "FON Banner", "23554": "Trust Partners Business Card", "23555": "Ship logs", "23556": "Warning Message", "23558": "Federal Intelligence Officer", "23559": "Warden I", "23560": "Warden I Blueprint", "23561": "Garde I", "23562": "Garde I Blueprint", "23563": "Bouncer I", "23564": "Bouncer I Blueprint", "23566": "Electronic Warfare Drone Interfacing", "351252": "Saga", "23573": "Wiyrkomi Data Chip", "23594": "Sentry Drone Interfacing", "23597": "Serpentis Data Chip Decoder", "351278": "Gunnlogi", "23602": "Maqeri Camcen's DNA", "23604": "Isone Flosins's Corpse", "23605": "Isone Flosin's DNA", "23606": "Drone Sharpshooting", "23610": "Jark Makon", "351297": "20GJ Blaster", "23618": "Drone Durability", "23621": "Onreun's Crash", "23622": "Aggregated FON Data", "23624": "Maschteri Markan's Insignia", "23626": "Raid Drone Command Chip", "23629": "Fedo Blood", "23630": "Unassembled Drills", "351311": "ST-201 Missile Launcher", "23632": "Suho Tatanal's Investigation Dossier", "23633": "Preaux's Letter", "23634": "Colelian Spider Spruce", "23635": "Aortal Purifier", "351317": "80GJ Blaster", "351320": "Passenger Position", "351332": "80GJ Particle Accelerator", "351336": "80GJ Railgun", "351337": "20GJ Railgun", "23659": "Acolyte EV-300", "23660": "Acolyte EV-300 Blueprint", "23668": "Blood Lower-Tier Tag", "23669": "Blood Grunt Tag", "351352": "Bolas", "23673": "Key To Lord Manel's Mansion", "23674": "Gjallarhorn", "23675": "Drone Observation Data", "23676": "Cognitive Hive Mind", "23677": "Neural Bio Link", "23678": "Aether Hive Link", "23679": "Latent Submission Tapes", "23680": "Smuggler Tag", "23681": "Shattered Forgery Tools", "23682": "Strike Force Gear", "23683": "Binary Transpositional Code", "23684": "Drone Mind Embryo", "23690": "Raid Drone Navigation Chip", "23692": "Ruined Hive Mind", "23699": "Manel's Servant", "23700": "Ader's Message", "23702": "Infiltrator EV-600", "23703": "Infiltrator EV-600 Blueprint", "23705": "Vespa EC-600", "23706": "Vespa EC-600 Blueprint", "23707": "Hornet EC-300", "23708": "Hornet EC-300 Blueprint", "23709": "Medium Armor Maintenance Bot I", "23710": "Medium Armor Maintenance Bot I Blueprint", "23711": "Light Armor Maintenance Bot I", "23712": "Light Armor Maintenance Bot I Blueprint", "23713": "Hammerhead SD-600", "23714": "Hammerhead SD-600 Blueprint", "23715": "Hobgoblin SD-300", "23716": "Hobgoblin SD-300 Blueprint", "23717": "Medium Shield Maintenance Bot I", "23718": "Medium Shield Maintenance Bot I Blueprint", "23719": "Light Shield Maintenance Bot I", "23720": "Light Shield Maintenance Bot I Blueprint", "23721": "Valkyrie TP-600", "23722": "Valkyrie TP-600 Blueprint", "23723": "Warrior TP-300", "23724": "Warrior TP-300 Blueprint", "23725": "Infiltrator TD-600", "23726": "Infiltrator TD-600 Blueprint", "23727": "Acolyte TD-300", "23728": "Acolyte TD-300 Blueprint", "23729": "Valkyrie SW-600", "23730": "Valkyrie SW-600 Blueprint", "23731": "Warrior SW-300", "23732": "Warrior SW-300 Blueprint", "23735": "Clone Vat Bay I", "23736": "Clone Vat Bay I Blueprint", "23737": "FON-Wiyrkomi Data Chip", "23738": "Wiyrkomi Scandal Holoreel", "23739": "Recon Speeders", "23740": "Custom-built Guidance System", "23744": "Nossa Farad's Voucher", "23745": "Odan Poun's Message", "23748": "Lord Manel's Message", "23749": "Blood Raider Squad Leader's Head", "23757": "Archon", "23758": "Archon Blueprint", "23764": "Bartezo's Message", "23766": "Ader's Keycard", "23773": "Ragnarok", "23774": "Ragnarok Blueprint", "23783": "'Abatis' 100mm Reinforced Steel Plates I", "23784": "'Abatis' 100mm Reinforced Steel Plates I Blueprint", "23785": "'Bailey' 1600mm Reinforced Steel Plates I", "23786": "'Bailey' 1600mm Reinforced Steel Plates I Blueprint", "23787": "'Chainmail' 200mm Reinforced Steel Plates I", "23788": "'Chainmail' 200mm Reinforced Steel Plates I Blueprint", "23789": "'Bastion' 400mm Reinforced Steel Plates I", "23790": "'Bastion' 400mm Reinforced Steel Plates I Blueprint", "23791": "'Citadella' 50mm Reinforced Steel Plates I", "23792": "'Citadella' 50mm Reinforced Steel Plates I Blueprint", "23793": "'Barbican' 800mm Reinforced Steel Plates I", "23794": "'Barbican' 800mm Reinforced Steel Plates I Blueprint", "23795": "'Gorget' Small Armor Repairer I", "23796": "'Gorget' Small Armor Repairer I Blueprint", "23797": "'Greaves' Medium Armor Repairer I", "23798": "'Greaves' Medium Armor Repairer I Blueprint", "23799": "'Hauberk' Large Armor Repairer I", "23800": "'Hauberk' Large Armor Repairer I Blueprint", "23801": "'Crucible' Small Capacitor Battery I", "23802": "'Crucible' Small Capacitor Battery I Blueprint", "23803": "'Censer' Medium Capacitor Battery I", "23804": "'Censer' Medium Capacitor Battery I Blueprint", "23805": "'Thurifer' Large Capacitor Battery I", "23806": "'Thurifer' Large Capacitor Battery I Blueprint", "23807": "'Saddle' Small Capacitor Booster I", "23808": "'Saddle' Small Capacitor Booster I Blueprint", "23809": "'Harness' Medium Capacitor Booster I", "23810": "'Harness' Medium Capacitor Booster I Blueprint", "23811": "'Plough' Heavy Capacitor Booster I", "23812": "'Plough' Heavy Capacitor Booster I Blueprint", "23813": "'Palisade' Cap Recharger I", "23814": "'Palisade' Cap Recharger I Blueprint", "23815": "'Caltrop' Small Energy Neutralizer I", "23816": "'Caltrop' Small Energy Neutralizer I Blueprint", "23817": "'Ditch' Medium Energy Neutralizer I", "23818": "'Ditch' Medium Energy Neutralizer I Blueprint", "23819": "'Moat' Heavy Energy Neutralizer I", "23820": "'Moat' Heavy Energy Neutralizer I Blueprint", "23821": "'Upir' Small Nosferatu I", "23822": "'Upir' Small Nosferatu I Blueprint", "23824": "'Strigoi' Medium Nosferatu I", "23825": "'Strigoi' Medium Nosferatu I Blueprint", "23829": "'Vrykolakas' Heavy Nosferatu I", "23830": "'Vrykolakas' Heavy Nosferatu I Blueprint", "23834": "'Mace' Dual Light Beam Laser I", "23835": "'Mace' Dual Light Beam Laser I Blueprint", "23836": "'Longbow' Small Focused Pulse Laser I", "23837": "'Longbow' Medium Pulse Laser I Blueprint", "23838": "'Gauntlet' Small Focused Beam Laser I", "23839": "'Gauntlet' Medium Beam Laser I Blueprint", "23840": "'Crossbow' Focused Medium Beam Laser I", "23841": "'Crossbow' Focused Medium Beam Laser I Blueprint", "23842": "'Joust' Heavy Pulse Laser I", "23843": "'Joust' Heavy Pulse Laser I Blueprint", "23844": "'Arquebus' Heavy Beam Laser I", "23845": "'Arquebus' Heavy Beam Laser I Blueprint", "23846": "'Halberd' Mega Pulse Laser I", "23847": "'Halberd' Mega Pulse Laser I Blueprint", "23848": "'Catapult' Mega Beam Laser I", "23849": "'Catapult' Mega Beam Laser I Blueprint", "23850": "'Ballista' Tachyon Beam Laser I", "23851": "'Ballista' Tachyon Beam Laser I Blueprint", "23852": "'Squire' Small Energy Transfer Array I", "23853": "'Squire' Small Energy Transfer Array I Blueprint", "23854": "'Knight' Medium Energy Transfer Array I", "23855": "'Knight' Medium Energy Transfer Array I Blueprint", "23856": "'Chivalry' Large Energy Transfer Array I", "23857": "'Chivalry' Large Energy Transfer Array I Blueprint", "23863": "Nidupadian Yorak Eggs", "23864": "'Pike' Small EMP Smartbomb I", "23865": "'Pike' Small EMP Smartbomb I Blueprint", "23866": "'Lance' Medium EMP Smartbomb I", "23867": "'Lance' Medium EMP Smartbomb I Blueprint", "23868": "'Warhammer' Large EMP Smartbomb I", "23869": "'Warhammer' Large EMP Smartbomb I Blueprint", "23871": "Keron's Head", "23874": "Lord Methros' Encrypted Data Burst", "23876": "Lord Arachnan's Encrypted Data Burst", "23877": "Encoded Data Transmission", "23878": "Blood Raider Commander's Medalion", "23880": "Identity Data Chip", "23882": "Standard Decoding Device", "23883": "Methros Enhanced Decoding Device", "23890": "Inter-Galactic Media Report - The Audesder Incident (1 of 3)", "23891": "Inter-Galactic Media Report - The Audesder Incident (2 of 3)", "23892": "Inter-Galactic Media Report - The Audesder Incident (3 of 3)", "23893": "Enigma Cypher Book", "23894": "'Page' Capacitor Flux Coil I", "23895": "'Page' Capacitor Flux Coil I Blueprint", "23896": "'Motte' Capacitor Power Relay I", "23897": "'Motte' Capacitor Power Relay I Blueprint", "23898": "'Portcullis' Reactor Control Unit I", "23899": "'Portcullis' Reactor Control Unit I Blueprint", "23900": "'Mangonel' Heat Sink I", "23901": "'Mangonel' Heat Sink I Blueprint", "23902": "'Trebuchet' Heat Sink I", "23903": "'Trebuchet' Heat Sink I Blueprint", "23907": "Shiny Sentry Key", "23909": "Komni History (1 of 2)", "23911": "Thanatos", "23912": "Thanatos Blueprint", "23913": "Nyx", "23914": "Nyx Blueprint", "23915": "Chimera", "23916": "Chimera Blueprint", "23917": "Wyvern", "23918": "Wyvern Blueprint", "23919": "Aeon", "23920": "Aeon Blueprint", "23925": "Blood Fund", "23926": "Plague Spores", "23929": "Truthteller", "23930": "Foreman's Head", "23931": "House Methros Coat of Arms", "23932": "Blood Reel", "23933": "Dynasty Ring", "23934": "Edict of Ancestry", "23935": "Aradim Arachnan's Head", "23936": "Ancestral Armor", "23937": "Perpetual Chamber Warden", "351620": "Nanofiber Structure I", "23945": "Komni History (2 of 2)", "23948": "Native Freshfood Special", "23950": "Command Ships", "351631": "Twincharger", "351632": "Jovian Fusion Powerplant", "23953": "Jump Portal Generator I", "23954": "Jump Portal Generator I Blueprint", "23961": "Serpentis Sentry Station Gate Crystal", "351669": "Basic Armor Plates", "351670": "Enhanced Armor Plates", "351671": "Complex Armor Plates", "351673": "Basic Armor Repairer", "351674": "Enhanced Armor Repairer", "351675": "Complex Armor Repairer", "351679": "Basic Light Damage Modifier", "351680": "Enhanced Light Damage Modifier", "351681": "Complex Light Damage Modifier", "351684": "Basic Kinetic Catalyzer", "351686": "Basic Cardiac Stimulant", "351687": "Enhanced Kinetic Catalyzer", "351688": "Complex Kinetic Catalyzer", "351689": "Enhanced Cardiac Stimulant", "351690": "Complex Cardiac Stimulant", "351696": "Basic CPU Upgrade", "351697": "Enhanced CPU Upgrade", "351698": "Complex CPU Upgrade", "351699": "Basic PG Upgrade", "351700": "Enhanced PG Upgrade", "351701": "Complex PG Upgrade", "351706": "Locus Grenade", "351709": "AV Grenade", "24030": "R.S. Officer's Passcard", "24031": "R.S. Officer's Alpha Passcard", "351732": "'Goliath' Basic Armor Plates", "24123": "Elite Laser Pistols", "351824": "Madrugar", "351855": "Mass Driver", "351858": "Repair Tool", "351865": "Heavy Armor Repair Unit I", "351905": "Basic Shield Extender", "351906": "Enhanced Shield Extender", "351907": "Complex Shield Extender", "351908": "Basic Shield Recharger", "351909": "Enhanced Shield Recharger", "351910": "Complex Shield Recharger", "351915": "Drop Uplink", "351916": "Nanohive", "24238": "Blood Raider Scientist", "24241": "Combat Drone Operation", "24242": "Infomorph Psychology", "24244": "The Apocryphon", "24246": "Bug-Ridden Corpse", "24247": "Antiseptic Biomass", "24248": "Noble Remains", "24249": "Generator Debris", "24250": "Archpriest Hakram's Head", "24251": "Pilgrims", "24253": "Dead Pilgrim", "24254": "Saintly Shroud", "24255": "Arc of Revelation", "24263": "Anema Bluechip", "24264": "Bastion Master Key", "24268": "Supply Chain Management", "24270": "Scientific Networking", "24276": "Amolah Kesti's Data Fragment I", "24277": "Amolah Kesti's Data Fragment II", "24278": "Amolah Kesti's Data Fragment III", "24283": "Drone Control Unit I", "24284": "Drone Control Unit I Blueprint", "24285": "Corpum Commander Medallion", "24287": "Zach's Note", "24288": "E.F.A. ID Card", "24289": "Encoding Matrix Component", "24300": "Yamia Mida's Remains", "24304": "Excavation Note", "24305": "Modulated Deep Core Strip Miner II", "24306": "Modulated Deep Core Strip Miner II Blueprint", "24308": "Smuggler Knot Lock", "24311": "Amarr Carrier", "24312": "Caldari Carrier", "24313": "Gallente Carrier", "24314": "Minmatar Carrier", "24315": "Thyram Arachnan's Dossier", "24316": "Lord Arachnan's Medal", "24317": "House Arachnan Legal Documents", "352017": "'Scalar' Basic CPU Upgrade", "352018": "'Azimuth' Basic PG Upgrade", "352019": "'Monolith' Basic Armor Repairer", "352020": "'Kinesis' Basic Shield Extender", "352021": "'Synapse' Basic Shield Recharger", "24342": "Lord Arachnan", "24348": "Small Tractor Beam I", "24349": "Small Tractor Beam I Blueprint", "24352": "Passkey to Yan Jung Relic Site", "24353": "Gargoyle Passkey", "24354": "Threaded Waypoint Map", "24355": "Yan Jung Micro Processor", "24357": "Robikar's Recommendation", "352041": "'Helix' Enhanced PG Upgrade", "352042": "'Dimension' Enhanced CPU Upgrade", "352043": "'Vector' Complex CPU Upgrade", "352045": "'Polaris' Complex PG Upgrade", "352046": "'Menhir' Enhanced Armor Repairer", "352047": "'Obelisk' Complex Armor Repairer", "352048": "'Samson' Enhanced Armor Plates", "352049": "'Hercules' Complex Armor Plates", "352050": "'Mercury' Enhanced Kinetic Catalyzer", "352051": "'Spark' Enhanced Shield Recharger", "352052": "'Impulse' Enhanced Shield Extender", "352057": "Heavy Shield Transporter I", "352067": "CPU Enhancer I", "352068": "Nanoelectrical CPU Enhancer", "352069": "Photonic CPU Enhancer ", "352070": "Quantum CPU Enhancer", "352071": "Powergrid Expansion Unit I", "352072": "Beta Powergrid Expansion Unit", "352073": "Local Powergrid Expansion Unit", "352074": "Type-G Powergrid Expansion System", "24395": "Drone Navigation Computer I", "24396": "Drone Navigation Computer I Blueprint", "352077": "Beta Power Diagnostic System", "352078": "Local Power Diagnostic System", "352079": "Type-G Power Diagnostic System", "352083": "Systemic Field Stabilizer I", "352089": "Light Armor Repair Unit I", "24417": "Drone Navigation Computer II", "24418": "Drone Navigation Computer II Blueprint", "352101": "Light Remote Armor Repair Unit I", "24427": "Drone Link Augmentor II", "24428": "Drone Link Augmentor II Blueprint", "24438": "Omnidirectional Tracking Link II", "24439": "Omnidirectional Tracking Link II Blueprint", "24441": "Civilians", "24443": "Shield Boost Amplifier II", "24444": "Shield Boost Amplifier II Blueprint", "24445": "Giant Freight Container", "24446": "Dorga Roes", "24462": "Key of the Arcane", "24465": "Runic Inscription", "24466": "Museum Arcana Guest Pass", "24471": "Scourge Rage Rocket", "24472": "Scourge Rage Rocket Blueprint", "24473": "Nova Rage Rocket", "24474": "Nova Rage Rocket Blueprint", "24475": "Inferno Rage Rocket", "24476": "Inferno Rage Rocket Blueprint", "24477": "Scourge Javelin Rocket", "24478": "Nova Javelin Rocket", "24479": "Inferno Javelin Rocket", "24482": "Key to the Labyrinth", "24483": "Nidhoggur", "24484": "Nidhoggur Blueprint", "24486": "Inferno Rage Heavy Assault Missile", "24487": "Inferno Rage Heavy Assault Missile Blueprint", "24488": "Nova Rage Heavy Assault Missile", "24489": "Nova Rage Heavy Assault Missile Blueprint", "24490": "Mjolnir Rage Heavy Assault Missile", "24491": "Mjolnir Rage Heavy Assault Missile Blueprint", "24492": "Scourge Javelin Heavy Assault Missile", "24493": "Mjolnir Javelin Heavy Assault Missile", "24494": "Inferno Javelin Heavy Assault Missile", "24495": "Scourge Fury Light Missile", "24496": "Scourge Fury Light Missile Blueprint", "24497": "Nova Fury Light Missile", "24498": "Nova Fury Light Missile Blueprint", "24499": "Inferno Fury Light Missile", "24500": "Inferno Fury Light Missile Blueprint", "24501": "Scourge Precision Light Missile", "24502": "Scourge Precision Light Missile Blueprint", "24503": "Nova Precision Light Missile", "24504": "Nova Precision Light Missile Blueprint", "24505": "Mjolnir Precision Light Missile", "24506": "Mjolnir Precision Light Missile Blueprint", "24507": "Nova Fury Heavy Missile", "24508": "Nova Fury Heavy Missile Blueprint", "24509": "Mjolnir Fury Heavy Missile", "24510": "Mjolnir Fury Heavy Missile Blueprint", "24511": "Inferno Fury Heavy Missile", "24512": "Inferno Fury Heavy Missile Blueprint", "24513": "Scourge Precision Heavy Missile", "24514": "Scourge Precision Heavy Missile Blueprint", "24515": "Inferno Precision Heavy Missile", "24516": "Inferno Precision Heavy Missile Blueprint", "24517": "Mjolnir Precision Heavy Missile", "24518": "Mjolnir Precision Heavy Missile Blueprint", "24519": "Nova Rage Torpedo", "24520": "Nova Rage Torpedo Blueprint", "24521": "Scourge Rage Torpedo", "24522": "Scourge Rage Torpedo Blueprint", "24523": "Mjolnir Rage Torpedo", "24524": "Mjolnir Rage Torpedo Blueprint", "24525": "Inferno Javelin Torpedo", "24526": "Inferno Javelin Torpedo Blueprint", "24527": "Mjolnir Javelin Torpedo", "24528": "Mjolnir Javelin Torpedo Blueprint", "24529": "Scourge Javelin Torpedo", "24530": "Scourge Javelin Torpedo Blueprint", "24531": "Nova Fury Cruise Missile", "24532": "Nova Fury Cruise Missile Blueprint", "24533": "Scourge Fury Cruise Missile", "24534": "Scourge Fury Cruise Missile Blueprint", "24535": "Mjolnir Fury Cruise Missile", "24536": "Mjolnir Fury Cruise Missile Blueprint", "24537": "Nova Precision Cruise Missile", "24538": "Nova Precision Cruise Missile Blueprint", "24539": "Mjolnir Precision Cruise Missile", "24540": "Mjolnir Precision Cruise Missile Blueprint", "24541": "Scourge Precision Cruise Missile", "24542": "Scourge Precision Cruise Missile Blueprint", "24543": "Inferno Javelin Rocket Blueprint", "24544": "Mjolnir Javelin Rocket Blueprint", "24545": "Capital Jump Bridge Array", "24546": "Capital Jump Bridge Array Blueprint", "24547": "Capital Clone Vat Bay", "24548": "Capital Clone Vat Bay Blueprint", "24549": "Gjallarhorn Blueprint", "24550": "Judgement", "24551": "Judgement Blueprint", "24552": "Oblivion", "24553": "Oblivion Blueprint", "24554": "Aurora Ominae", "24555": "Aurora Ominae Blueprint", "24556": "Capital Doomsday Weapon Mount", "24557": "Capital Doomsday Weapon Mount Blueprint", "24558": "Capital Ship Maintenance Bay", "24559": "Capital Ship Maintenance Bay Blueprint", "24560": "Capital Corporate Hangar Bay", "24561": "Capital Corporate Hangar Bay Blueprint", "24562": "Jump Portal Generation", "24563": "Doomsday Operation", "24564": "Chanounian Wine", "3655": "Medium Hull Repairer II", "24567": "Experimental Laboratory", "24568": "Capital Remote Armor Repair Systems", "24569": "Capital Remote Armor Repair System I", "24570": "Capital Remote Armor Repair System I Blueprint", "24571": "Capital Shield Emission Systems", "24572": "Capital Energy Emission Systems", "24574": "Small Ship Assembly Array", "24575": "Capital Ship Assembly Array", "24576": "Imperial Navy Gate Permit", "24580": "Ritual Texts", "24581": "Holy Statue", "352263": "Forge Gun", "24592": "Amarr Empire Starbase Charter", "24593": "Caldari State Starbase Charter", "24594": "Gallente Federation Starbase Charter", "24595": "Minmatar Republic Starbase Charter", "24596": "Khanid Kingdom Starbase Charter", "24597": "Ammatar Mandate Starbase Charter", "352279": "Basic Auto-Detonator", "24604": "Nova Javelin Rocket Blueprint", "24605": "Scourge Javelin Rocket Blueprint", "24606": "Cloning Facility Operation", "24613": "Advanced Drone Interfacing", "24614": "Scourge Javelin Heavy Assault Missile Blueprint", "24615": "Inferno Javelin Heavy Assault Missile Blueprint", "24616": "Nova Javelin Heavy Assault Missile Blueprint", "24617": "Mjolnir Javelin Heavy Assault Missile Blueprint", "24624": "Advanced Laboratory Operation", "24625": "Advanced Mass Production", "24632": "Zainou 'Deadeye' Guided Missile Precision GP-803", "352313": "Militia 80GJ Blaster", "352314": "Militia 20GJ Blaster", "24636": "Zainou 'Deadeye' Missile Bombardment MB-705", "24637": "Zainou 'Deadeye' Missile Projection MP-705", "24638": "Zainou 'Deadeye' Rapid Launch RL-1005", "24639": "Zainou 'Deadeye' Target Navigation Prediction TN-905", "24640": "Zainou 'Deadeye' Guided Missile Precision GP-805", "24641": "Zainou 'Gnome' Launcher CPU Efficiency LE-603", "24642": "Zainou 'Gnome' Launcher CPU Efficiency LE-605", "24644": "Capital Tractor Beam I", "24645": "Capital Tractor Beam I Blueprint", "24646": "Capital Ship Maintenance Array", "24653": "Advanced Small Ship Assembly Array", "24654": "Medium Ship Assembly Array", "24655": "Advanced Medium Ship Assembly Array", "24656": "X-Large Ship Assembly Array", "24657": "Advanced Large Ship Assembly Array", "24658": "Ammunition Assembly Array", "24659": "Drone Assembly Array", "24660": "Component Assembly Array", "24663": "Zor's Custom Navigation Hyper-Link", "24669": "Shaqil's Speed Enhancer", "24684": "Biochemical Reactor Array", "24688": "Rokh", "24689": "Rokh Blueprint", "24690": "Hyperion", "24691": "Hyperion Blueprint", "24692": "Abaddon", "24693": "Abaddon Blueprint", "24694": "Maelstrom", "24695": "Maelstrom Blueprint", "24696": "Harbinger", "24697": "Harbinger Blueprint", "24698": "Drake", "24699": "Drake Blueprint", "24700": "Myrmidon", "24701": "Myrmidon Blueprint", "24702": "Hurricane", "24703": "Hurricane Blueprint", "24707": "Caldari Graduation Certificate", "24708": "Caldari Graduation Certificate (signed)", "24714": "Important Surveillance Data", "24715": "Severed Head", "24717": "Havatiah's Ship Database", "24719": "Gallente Graduation Certificate", "24720": "Gallente Graduation Certificate (signed)", "24722": "Kelmiler's Transaction Documents 18992 D", "24725": "Crash Ultra", "24726": "FedMart Reports", "24727": "Mamo's Message", "24728": "Eilard's Corpse", "24729": "Govarde Alourtine", "24730": "Avrue's Token", "24731": "Khanid Marine", "24733": "Choonka's Coordinates", "24734": "Secret Documents", "24735": "Amarr Graduation Certificate", "24736": "Amarr Graduation Certificate (signed)", "24744": "Minmatar Graduation Certificate", "24745": "Minmatar Graduation Certificate (signed)", "24752": "Angel Cartel Pilot", "24755": "Logut Akell", "24756": "Stolen Documents", "24760": "Dari Akell", "24762": "Logut's Keycard", "24763": "Encryption Code Book", "24764": "Fleet Command", "24766": "Ship's Crew", "352472": "'Paradox' Graded Particle Cannon (S)", "181": "Depleted Uranium S", "352493": "'Dawnpyre' R-9 Drop Uplink", "352499": "Scrambler Pistol", "352508": "Flux Grenade", "3009": "Focused Medium Beam Laser II", "352526": "'Husk' Phase-synched Railgun (L)", "352550": "Active Scanner I", "352556": "Sniper Rifle", "352587": "Scout Type-I", "352588": "Logistics Type-I", "352591": "Assault - Frontline", "352592": "Militia Heavy Dropsuit", "352593": "Militia Logistics Dropsuit", "352594": "Gallente Pilot Dropsuit - Standard", "352595": "Militia Pilot Dropsuit", "352596": "Militia Scout Dropsuit", "352602": "Assault Rifle", "352604": "Mobile CRU", "353685": "Amarr Heavy Dropsuit", "353686": "Caldari Assault Dropsuit", "353687": "Gallente Scout Dropsuit", "352687": "Basic Myofibril Stimulant", "353696": "Core Locus Grenade", "353697": "Freedom Sleek Locus Grenade", "353701": "Small CA Railgun Installation ", "353702": "Small Rocket Installation", "352887": "Corporation Control", "352888": "Megacorp Control", "352890": "Transstellar Empire Control", "352891": "Submachine Gun", "25230": "Republic Fleet High Captain Insignia II", "25233": "Corporation Contracting", "25235": "Contracting", "25237": "Pure Standard Blue Pill Booster", "25239": "Blood Gold Tag", "25240": "Improved Blue Pill Booster Reaction", "25241": "Pure Improved Blue Pill Booster", "25242": "Pure Standard Crash Booster", "25243": "Standard Crash Booster Reaction", "352928": "[DEV] Offline Dropsuit", "352929": "Enhanced Myofibril Stimulant", "25251": "Standard Frentix Booster Reaction", "25252": "Pure Standard Frentix Booster", "352934": "Assault B-Series", "352937": "Assault vk.1", "352938": "Assault Type-II", "352939": "Scout Type-II", "352940": "Scout B-Series", "352942": "Scout vk.1", "352944": "Heavy Type-II", "353736": "Lai Dai Sleek AV Grenade", "25266": "Gas Cloud Harvester I", "25267": "Gas Cloud Harvester I Blueprint", "25268": "Amber Cytoserocin", "25270": "Biochemical Silo", "25271": "Catalyst Silo", "25273": "Golden Cytoserocin", "25274": "Viridian Cytoserocin", "25275": "Celadon Cytoserocin", "25276": "Malachite Cytoserocin", "25277": "Lime Cytoserocin", "25278": "Vermillion Cytoserocin", "25279": "Azure Cytoserocin", "25280": "Hazardous Chemical Silo", "25281": "The Red Card", "25282": "Strong Blue Pill Booster Reaction", "25283": "Pure Strong Blue Pill Booster", "25284": "Standard Drop Booster Reaction", "25285": "Standard Exile Booster Reaction", "25286": "Standard Mindflood Booster Reaction", "25287": "Standard X-Instinct Booster Reaction", "25288": "Standard Sooth Sayer Booster Reaction", "25289": "Improved Crash Booster Reaction", "25290": "Improved Drop Booster Reaction", "25291": "Improved Exile Booster Reaction", "25292": "Improved Mindflood Booster Reaction", "25293": "Improved Frentix Booster Reaction", "25294": "Improved X-Instinct Booster Reaction", "25295": "Improved Sooth Sayer Booster Reaction", "25296": "Strong Crash Booster Reaction", "25297": "Strong Drop Booster Reaction", "25298": "Strong Exile Booster Reaction", "25299": "Strong Mindflood Booster Reaction", "25300": "Strong Frentix Booster Reaction", "25301": "Strong X-Instinct Booster Reaction", "25302": "Strong Sooth Sayer Booster Reaction", "25303": "Standard Blue Pill Booster Blueprint", "25304": "Pith Guristas Spa-Card", "25305": "Drug Lab", "25307": "Improved Blue Pill Booster Blueprint", "25308": "Strong Blue Pill Booster Blueprint", "25309": "Standard Crash Booster Blueprint", "25310": "Improved Crash Booster Blueprint", "25311": "Strong Crash Booster Blueprint", "25314": "Standard Sooth Sayer Booster Blueprint", "25322": "Strong Frentix Booster Blueprint", "25323": "Standard Mindflood Booster Blueprint", "25327": "Standard Drop Booster Blueprint", "25328": "Improved Drop Booster Blueprint", "25329": "Strong Drop Booster Blueprint", "25330": "Pure Standard Drop Booster", "25331": "Pure Standard Exile Booster", "25332": "Pure Standard Mindflood Booster", "25333": "Pure Standard X-Instinct Booster", "25334": "Pure Standard Sooth Sayer Booster", "25335": "Pure Improved Crash Booster", "25336": "Pure Improved Drop Booster", "25337": "Pure Improved Exile Booster", "25338": "Pure Improved Mindflood Booster", "25339": "Pure Improved Frentix Booster", "25340": "Pure Improved X-Instinct Booster", "25341": "Pure Improved Sooth Sayer Booster", "25342": "Pure Strong Crash Booster", "25343": "Pure Strong Drop Booster", "25344": "Pure Strong Exile Booster", "25345": "Pure Strong Mindflood Booster", "25346": "Pure Strong Frentix Booster", "25347": "Pure Strong X-Instinct Booster", "25348": "Pure Strong Sooth Sayer Booster", "25349": "Strong Exile Booster", "25352": "Black Jack's Underling", "25353": "Serpentis Shipyard Cipher", "353041": "Complex Myofibril Stimulant", "353042": "[TEST] Swarm Launcher", "25364": "Black Jack's DNA", "25366": "Oronata Vion's Insignia", "25367": "Kois Entry Passcard", "25369": "Airkio Yanjulen's Corpse", "25372": "Tomi Hakiro's Insignia", "25373": "Militants", "25378": "Drone Modified Passcard", "25382": "Guristas War Plans", "25383": "Otsalen Mano's Corpse", "25386": "Prison Area Pass", "25387": "Guristas Armory Codes", "25390": "Tantima Areki", "25391": "Hakiro's Scanner Data", "25393": "Imperial Navy Gate Permit Container", "25394": "Gue Mouey's Message", "25398": "Tikui's Message", "25401": "Expeditionary Data", "353759": "Scout A-Series", "25408": "Akkeshu Karuan's DNA", "353089": "Sagaris", "353281": "Burst Assault Rifle", "353106": "Breach Assault Rifle", "353107": "Tactical Assault Rifle", "353108": "'Blindfire' Assault Rifle", "353109": "GEK-38 Assault Rifle", "353110": "GK-13 Burst Assault Rifle", "353111": "G7-M Compact Assault Rifle", "353112": "'Gorewreck' GK-13 Burst Assault Rifle", "353113": "'Killswitch' GEK-38 Assault Rifle", "353114": "Duvolle Assault Rifle", "353115": "CreoDron Breach Assault Rifle", "353116": "Allotek Burst Assault Rifle", "353117": "'Codewish' Duvolle Tactical Assault Rifle", "353118": "'Stormside' Roden Assault Rifle", "353119": "'Hollowsight' Carthum Assault Rifle", "353120": "Militia Assault Rifle", "353766": "Heavy A-Series", "353126": "Assault Submachine Gun", "353127": "Breach Submachine Gun", "353128": "'Slashvent' Submachine Gun", "353129": "M512-A Submachine Gun", "353130": "M209 Assault Submachine Gun", "353131": "SK9M Breach Submachine Gun", "353132": "'Bedlam' M512-A Submachine Gun", "353133": "'Minddrive' SK9M Breach Submachine Gun", "353134": "Six Kin Submachine Gun", "353135": "Ishukone Assault Submachine Gun", "353136": "Freedom Burst Submachine Gun", "353137": "'Gargoyle' Freedom Burst Submachine Gun", "353138": "'Mashgrill' CreoDron Submachine Gun", "353139": "'Spitfire' Six Kin Submachine Gun", "353140": "Militia Submachine Gun", "353143": "Assault Forge Gun", "353144": "Breach Forge Gun", "353145": "'Strumborne' Forge Gun", "353146": "9K330 Forge Gun", "25467": "Caldari Corpse", "353148": "DCMA-5 Breach Forge Gun", "353149": "'Blastwave' 9K330 Forge Gun", "353150": "'Arcflare' DAU-2/A Forge Gun", "353151": "Kaalakiota Forge Gun", "353152": "Ishukone Assault Forge Gun", "353153": "Imperial Armaments Forge Gun", "353154": "'Grimlock' Guristas Assault Forge Gun", "353155": "'Backscatter' Freedom Forge Gun", "353156": "'Torchflare' Kaalakiota Forge Gun", "353161": "Tactical Sniper Rifle", "353162": "Charge Sniper Rifle", "353163": "'Farsight' Sniper Rifle", "353164": "NT-511 Sniper Rifle", "353165": "C27-N Specialist Sniper Rifle", "353166": "C15-A Tactical Sniper Rifle", "353167": "'Genesis' NT-511 Sniper Rifle", "353168": "'Downwind' C15-A Tactical Sniper Rifle", "353169": "Ishukone Sniper Rifle", "353170": "Lai Dai Compact Sniper Rifle", "353171": "Roden Sniper Rifle", "353172": "'Horizon' Kaalakiota Sniper Rifle", "353173": "'Corona' Ishukone Sniper Rifle", "353174": "'Surgepoint' Six Kin Sniper Rifle", "353175": "Militia Sniper Rifle", "2957": "Crate of Refurbished Mining Drones", "353179": "Assault Swarm Launcher", "353180": "Specialist Swarm Launcher", "353181": "'Scattermind' Swarm Launcher", "353182": "CBR7 Swarm Launcher", "25503": "Improved X-Instinct Booster Blueprint", "25504": "Improved Exile Booster Blueprint", "25505": "Improved Frentix Booster Blueprint", "25506": "Improved Mindflood Booster Blueprint", "25507": "Improved Sooth Sayer Booster Blueprint", "25508": "Standard Exile Booster Blueprint", "25509": "Standard Frentix Booster Blueprint", "25510": "Standard X-Instinct Booster Blueprint", "25511": "Strong Mindflood Booster Blueprint", "25512": "Strong Sooth Sayer Booster Blueprint", "25513": "Strong X-Instinct Booster Blueprint", "25514": "Kakala's Voucher", "25515": "Nuomo's Voucher", "25516": "Erakki's Voucher", "25517": "Oduma's Voucher", "353198": "'Surgewick' Scrambler Pistol", "353199": "CAR-9 Burst Scrambler Pistol", "353200": "IA5 Tactical Scrambler Pistol", "353201": "TT-3 Assault Scrambler Pistol", "25522": "Nuomo's Scanner Data", "353203": "'Hazemoon' IA5 Tactical Scrambler Pistol", "353204": "Ishukone Scrambler Pistol", "353205": "Viziam Scrambler Pistol", "353206": "Imperial Burst Scrambler Pistol", "353207": "'Burnscar' Khanid Scrambler Pistol", "353208": "'Grindfell' Imperial Scrambler Pistol", "353209": "'Singetear' Viziam Scrambler Pistol", "25530": "Neurotoxin Recovery", "353285": "Complex Cardiac Regulator", "353213": "Quantum Nanohive", "353214": "Gauged Nanohive", "353215": "Stable Nanohive", "353216": "K17/D Nanohive (R)", "353217": "R11-4 Flux Nanohive", "25538": "Nanite Control", "25539": "Strong Exile Booster Blueprint", "25540": "'Crop' Gas Cloud Harvester", "25542": "'Plow' Gas Cloud Harvester", "353223": "Allotek Nanohive (R)", "25544": "Gas Cloud Harvesting", "25545": "Eifyr and Co. 'Alchemist' Nanite Control NC-903", "25546": "Eifyr and Co. 'Alchemist' Nanite Control NC-905", "25547": "Eifyr and Co. 'Alchemist' Neurotoxin Recovery NR-1003", "25548": "Eifyr and Co. 'Alchemist' Neurotoxin Recovery NR-1005", "353229": "Flux Repair Tool", "25550": "Freebooter's Key Alpha", "25551": "Blood Raider Shipyard Keycard", "353232": "Stable Repair Tool", "25553": "Cryptic Data Interface", "25554": "Occult Data Interface", "25555": "Esoteric Data Interface", "25556": "Incognito Data Interface", "353237": "Six Kin Triage Repair Tool", "353238": "Lai Dai Flux Repair Tool", "353239": "'Splinter' Axis Boundless Repair Tool", "353240": "'Schizm' Viziam Repair Tool", "25561": "Signal Distortion Amplifier I", "25562": "Signal Distortion Amplifier I Blueprint", "25563": "Signal Distortion Amplifier II", "25564": "Signal Distortion Amplifier II Blueprint", "25565": "'Hypnos' Signal Distortion Amplifier I", "353246": "Gauged Drop Uplink", "25567": "Compulsive Signal Distortion Amplifier I", "353248": "R-9 Drop Uplink", "25569": "Induced Signal Distortion Amplifier I", "353250": "P-13 Quantum Drop Uplink", "25571": "Initiated Signal Distortion Amplifier I", "353252": "Ishukone Gauged Drop Uplink", "353253": "Allotek Stable Drop Uplink", "353254": "'Proxy' Viziam Drop Uplink", "25575": "Damaged Cloaking Device", "353256": "'Fractal' A/7 Repair Tool", "25577": "Freebooter's Key Beta", "353258": "Railgun Installation", "25579": "Freebooter's Key Gamma", "353263": "Missile Installation", "25584": "Esoteric Data Interface Blueprint", "25585": "Occult Data Interface Blueprint", "25586": "Incognito Data Interface Blueprint", "25587": "Cryptic Data Interface Blueprint", "25588": "Scorched Telemetry Processor", "25589": "Malfunctioning Shield Emitter", "25590": "Contaminated Nanite Compound", "25591": "Contaminated Lorentz Fluid", "25592": "Defective Current Pump", "25593": "Smashed Trigger Unit", "25594": "Tangled Power Conduit", "25595": "Alloyed Tritanium Bar", "25596": "Broken Drone Transceiver", "25597": "Damaged Artificial Neural Network", "25598": "Tripped Power Circuit", "25599": "Charred Micro Circuit", "25600": "Burned Logic Circuit", "25601": "Fried Interface Circuit", "25602": "Thruster Console", "25603": "Melted Capacitor Console", "25604": "Conductive Polymer", "25605": "Armor Plates", "25606": "Ward Console", "25607": "Telemetry Processor", "25608": "Intact Shield Emitter", "25609": "Nanite Compound", "25610": "Lorentz Fluid", "25611": "Current Pump", "25612": "Trigger Unit", "25613": "Power Conduit", "25614": "Single-crystal Superalloy I-beam", "25615": "Drone Transceiver", "25616": "Artificial Neural Network", "25617": "Power Circuit", "25618": "Micro Circuit", "25619": "Logic Circuit", "25620": "Interface Circuit", "25621": "Impetus Console", "25622": "Capacitor Console", "25623": "Conductive Thermoplastic", "25624": "Intact Armor Plates", "25625": "Enhanced Ward Console", "353317": "Large Hybrid Turret Operation", "353318": "Large Hybrid Turret Proficiency", "353322": "Large Missile Turret Operation", "353323": "Large Missile Turret Proficiency", "353326": "Small Hybrid Turret Operation", "353327": "Small Hybrid Turret Proficiency", "353800": "AT-1 Missile Launcher", "353330": "Small Missile Turret Operation", "353331": "Small Missile Turret Proficiency", "353335": "Turret Operation", "353336": "Turret Upgrades", "353352": "Circuitry", "353353": "CPU Upgrades", "353357": "Profile Analysis", "353363": "Drop Uplink Deployment", "353365": "Long Range Scanning", "353366": "Combat Engineering", "353368": "Powergrid Upgrades", "353369": "Shield Adaptation", "353370": "Shield Control", "353371": "Shield Boost Systems", "353372": "Shield Transportation", "353373": "Shield Enhancements", "353375": "Field Mechanics", "353376": "Armor Repair Systems", "353377": "Remote Repair Systems", "353378": "Armor Adaptation", "353379": "Armor Upgrades", "353381": "Vehicle Command", "353382": "Piloting", "353386": "Caldari LAV", "25707": "Prototype 'Arbalest' Heavy Assault Missile Launcher I", "353388": "Caldari Dropship", "25709": "Upgraded 'Malkuth' Heavy Assault Missile Launcher I", "353390": "Gallente Dropship", "25711": "Limited 'Limos' Heavy Assault Missile Launcher I", "25713": "Experimental XT-2800 Heavy Assault Missile Launcher I", "25715": "Heavy Assault Missile Launcher II", "25716": "Heavy Assault Missile Launcher II Blueprint", "25718": "Heavy Assault Missile Specialization", "25719": "Heavy Assault Missiles", "353405": "Vehicle Maneuvering", "353408": "Dropsuit Command", "353413": "Minmatar Logistics Dropsuit", "25736": "Large Anti-EM Pump I", "25737": "Large Anti-EM Pump I Blueprint", "25739": "Astrometric Rangefinding", "353426": "Mobility", "353427": "Vigor", "353428": "Endurance", "353435": "Weaponry", "353436": "Sidearm Weapon Upgrade", "353437": "Sidearm Weapon Upgrade Proficiency", "353438": "Light Weapon Upgrade", "353440": "Light Weapon Upgrade Proficiency", "353441": "Heavy Weapon Upgrade", "353443": "Sidearm Weapon Rapid Reload", "353444": "Sidearm Weapon Rapid Reload Proficiency", "353445": "Light Weapon Rapid Reload", "353446": "Light Weapon Rapid Reload Proficiency", "353447": "Heavy Weapon Rapid Reload", "353448": "Heavy Weapon Rapid Reload Proficiency", "353449": "Sidearm Weapon Sharpshooter", "353450": "Sidearm Weapon Sharpshooter Proficiency", "353451": "Light Weapon Sharpshooter", "353452": "Light Weapon Sharpshooter Proficiency", "353453": "Heavy Weapon Sharpshooter", "353454": "Heavy Weapon Sharpshooting Proficiency", "353455": "Sidearm Weapon Capacity", "353456": "Sidearm Weapon Capacity Proficiency", "353457": "Light Weapon Capacity", "353458": "Light Weapon Capacity Proficiency", "353459": "Heavy Weapon Capacity", "353460": "Heavy Weapon Capacity Proficiency", "353461": "Assault Rifle Operation", "353462": "Assault Rifle Proficiency", "353463": "Forge Gun Operation", "353464": "Forge Gun Proficiency", "353465": "Laser Rifle Operation", "353466": "Laser Rifle Proficiency", "353467": "Heavy Machine Gun Operation", "353468": "Heavy Machine Gun Proficiency", "353469": "Mass Driver Operation", "353470": "Mass Driver Proficiency", "353471": "Swarm Launcher Operation", "353472": "Swarm Launcher Proficiency", "353473": "Scrambler Pistol Operation", "353474": "Scrambler Pistol Proficiency", "353475": "Sniper Rifle Operation", "353476": "Sniper Rifle Proficiency", "353477": "Submachine Gun Operation", "353478": "Submachine Gun Proficiency", "353479": "Hand to Hand Combat", "353482": "Demolitions", "353484": "Grenadier", "353485": "Heavy Weapon Upgrade Proficiency", "353486": "Onikuma", "25810": "Astrometric Pinpointing", "25811": "Astrometric Acquisition", "25812": "Gas Cloud Harvester II", "25813": "Gas Cloud Harvester II Blueprint", "25821": "General Storage", "25844": "Head in a Jar", "25847": "A Really REALLY Clueless Tourist", "25849": "Kalorr Makur's Tag", "25850": "Dalitat Dakpor's Clone", "25851": "Occult Ship Data Interface", "25852": "Occult Ship Data Interface Blueprint", "25853": "Esoteric Ship Data Interface", "25854": "Esoteric Ship Data Interface Blueprint", "25855": "Incognito Ship Data Interface", "25856": "Incognito Ship Data Interface Blueprint", "25857": "Cryptic Ship Data Interface", "25858": "Cryptic Ship Data Interface Blueprint", "25861": "Salvager I", "25862": "Salvager I Blueprint", "25863": "Salvaging", "25864": "Rakogh Officer Gate Key", "25867": "Pashan's Turret Handling Mindlink", "25868": "Pashan's Turret Customization Mindlink", "25869": "Harlots", "25875": "Minmatar Reporter", "25878": "Ovon Flac's Documents", "25879": "Ovon Flac's Container", "25885": "Scientist", "25887": "Datacore - Caldari Starship Engineering", "25888": "Large Anti-Explosive Pump I", "25889": "Large Anti-Explosive Pump I Blueprint", "25890": "Large Anti-Kinetic Pump I", "25891": "Large Anti-Kinetic Pump I Blueprint", "25892": "Large Anti-Thermic Pump I", "25893": "Large Anti-Thermic Pump I Blueprint", "25894": "Large Trimark Armor Pump I", "25895": "Large Trimark Armor Pump I Blueprint", "25896": "Large Auxiliary Nano Pump I", "25897": "Large Auxiliary Nano Pump I Blueprint", "25898": "Large Nanobot Accelerator I", "25899": "Large Nanobot Accelerator I Blueprint", "25900": "Large Remote Repair Augmentor I", "25901": "Large Remote Repair Augmentor I Blueprint", "25902": "Large Salvage Tackle I", "25903": "Large Salvage Tackle I Blueprint", "25906": "Large Core Defense Capacitor Safeguard I", "25907": "Large Core Defense Capacitor Safeguard I Blueprint", "25908": "Large Drone Control Range Augmentor I", "25909": "Large Drone Control Range Augmentor I Blueprint", "25910": "Large Drone Repair Augmentor I", "25911": "Large Drone Repair Augmentor I Blueprint", "25912": "Large Drone Scope Chip I", "25913": "Large Drone Scope Chip I Blueprint", "25914": "Large Drone Speed Augmentor I", "25915": "Large Drone Speed Augmentor I Blueprint", "25916": "Large Drone Durability Enhancer I", "25917": "Large Drone Durability Enhancer I Blueprint", "25918": "Large Drone Mining Augmentor I", "25919": "Large Drone Mining Augmentor I Blueprint", "25920": "Large Sentry Damage Augmentor I", "25921": "Large Sentry Damage Augmentor I Blueprint", "25924": "Large Stasis Drone Augmentor I", "25925": "Large Stasis Drone Augmentor I Blueprint", "25928": "Large Signal Disruption Amplifier I", "25929": "Large Signal Disruption Amplifier I Blueprint", "25930": "Large Emission Scope Sharpener I", "25931": "Large Emission Scope Sharpener I Blueprint", "25932": "Large Memetic Algorithm Bank I", "25933": "Large Memetic Algorithm Bank I Blueprint", "25934": "Large Liquid Cooled Electronics I", "25935": "Large Liquid Cooled Electronics I Blueprint", "25936": "Large Gravity Capacitor Upgrade I", "25937": "Large Gravity Capacitor Upgrade I Blueprint", "25948": "Large Capacitor Control Circuit I", "25949": "Large Capacitor Control Circuit I Blueprint", "25950": "Large Egress Port Maximizer I", "25951": "Large Egress Port Maximizer I Blueprint", "25952": "Large Powergrid Subroutine Maximizer I", "25953": "Large Powergrid Subroutine Maximizer I Blueprint", "25954": "Large Semiconductor Memory Cell I", "25955": "Large Semiconductor Memory Cell I Blueprint", "25956": "Large Ancillary Current Router I", "25957": "Large Ancillary Current Router I Blueprint", "25968": "Large Energy Discharge Elutriation I", "25969": "Large Energy Discharge Elutriation I Blueprint", "25970": "Large Energy Ambit Extension I", "25971": "Large Energy Ambit Extension I Blueprint", "25972": "Large Energy Locus Coordinator I", "25973": "Large Energy Locus Coordinator I Blueprint", "25974": "Large Energy Metastasis Adjuster I", "25975": "Large Energy Metastasis Adjuster I Blueprint", "25976": "Large Algid Energy Administrations Unit I", "25977": "Large Algid Energy Administrations Unit I Blueprint", "25978": "Large Energy Burst Aerator I", "25979": "Large Energy Burst Aerator I Blueprint", "25980": "Large Energy Collision Accelerator I", "25981": "Large Energy Collision Accelerator I Blueprint", "25988": "Mining Equipment", "25989": "Minecore Harvester", "25996": "Large Hybrid Discharge Elutriation I", "25997": "Large Hybrid Discharge Elutriation I Blueprint", "25998": "Large Hybrid Ambit Extension I", "25999": "Large Hybrid Ambit Extension I Blueprint", "26000": "Large Hybrid Locus Coordinator I", "26001": "Large Hybrid Locus Coordinator I Blueprint", "26002": "Large Hybrid Metastasis Adjuster I", "26003": "Large Hybrid Metastasis Adjuster I Blueprint", "26004": "Large Algid Hybrid Administrations Unit I", "26005": "Large Algid Hybrid Administrations Unit I Blueprint", "26006": "Large Hybrid Burst Aerator I", "26007": "Large Hybrid Burst Aerator I Blueprint", "26008": "Large Hybrid Collision Accelerator I", "26009": "Large Hybrid Collision Accelerator I Blueprint", "353691": "Sleek Locus Grenade", "353692": "Capped Locus Grenade", "353693": "M1 Locus Grenade", "353694": "M8 Packed Locus Grenade", "353695": "'Shroud' M1 Locus Grenade", "26016": "Large Hydraulic Bay Thrusters I", "26017": "Large Hydraulic Bay Thrusters I Blueprint", "353698": "'Cavity' M2 Contact Locus Grenade", "353699": "'Vapor' Core Locus Grenade", "26020": "Large Warhead Rigor Catalyst I", "26021": "Large Warhead Rigor Catalyst I Blueprint", "26022": "Large Rocket Fuel Cache Partition I", "26023": "Large Rocket Fuel Cache Partition I Blueprint", "353705": "Small Blaster Installation ", "26026": "Large Bay Loading Accelerator I", "26027": "Large Bay Loading Accelerator I Blueprint", "26028": "Large Warhead Flare Catalyst I", "26029": "Large Warhead Flare Catalyst I Blueprint", "26030": "Large Warhead Calefaction Catalyst I", "26031": "Large Warhead Calefaction Catalyst I Blueprint", "26038": "Large Projectile Ambit Extension I", "26039": "Large Projectile Ambit Extension I Blueprint", "26040": "Large Projectile Locus Coordinator I", "26041": "Large Projectile Locus Coordinator I Blueprint", "26042": "Large Projectile Metastasis Adjuster I", "26043": "Large Projectile Metastasis Adjuster I Blueprint", "26046": "Large Projectile Burst Aerator I", "26047": "Large Projectile Burst Aerator I Blueprint", "26048": "Large Projectile Collision Accelerator I", "26049": "Large Projectile Collision Accelerator I Blueprint", "353730": "Sleek AV Grenade", "353731": "Packed AV Grenade", "353732": "EX-0 AV Grenade", "353733": "EX-11 Packed AV Grenade", "353734": "'Hollow' EX-0 AV Grenade", "353735": "Wiyrkomi AV Grenade", "26056": "Large Dynamic Fuel Valve I", "26057": "Large Dynamic Fuel Valve I Blueprint", "26058": "Large Low Friction Nozzle Joints I", "26059": "Large Low Friction Nozzle Joints I Blueprint", "26060": "Large Auxiliary Thrusters I", "26061": "Large Auxiliary Thrusters I Blueprint", "26062": "Large Engine Thermal Shielding I", "26063": "Large Engine Thermal Shielding I Blueprint", "353744": "Militia Cardiac Regulator", "26066": "Large Warp Core Optimizer I", "26067": "Large Warp Core Optimizer I Blueprint", "26068": "Large Hyperspatial Velocity Optimizer I", "26069": "Large Hyperspatial Velocity Optimizer I Blueprint", "26070": "Large Polycarbon Engine Housing I", "26071": "Large Polycarbon Engine Housing I Blueprint", "26072": "Large Cargohold Optimization I", "26073": "Large Cargohold Optimization I Blueprint", "26076": "Large Anti-EM Screen Reinforcer I", "26077": "Large Anti-EM Screen Reinforcer I Blueprint", "26078": "Large Anti-Explosive Screen Reinforcer I", "26079": "Large Anti-Explosive Screen Reinforcer I Blueprint", "26080": "Large Anti-Kinetic Screen Reinforcer I", "26081": "Large Anti-Kinetic Screen Reinforcer I Blueprint", "26082": "Large Anti-Thermal Screen Reinforcer I", "26083": "Large Anti-Thermal Screen Reinforcer I Blueprint", "26084": "Large Core Defense Field Purger I", "26085": "Large Core Defense Field Purger I Blueprint", "26086": "Large Core Defense Operational Solidifier I", "26087": "Large Core Defense Operational Solidifier I Blueprint", "26088": "Large Core Defense Field Extender I", "26089": "Large Core Defense Field Extender I Blueprint", "26090": "Large Core Defense Charge Economizer I", "26091": "Large Core Defense Charge Economizer I Blueprint", "353772": "80GJ Neutron Blaster", "353773": "80GJ Ion Cannon", "353774": "20GJ Neutron Blaster", "353775": "20GJ Ion Cannon", "26096": "Large Targeting Systems Stabilizer I", "26097": "Large Targeting Systems Stabilizer I Blueprint", "26100": "Large Targeting System Subcontroller I", "26101": "Large Targeting System Subcontroller I Blueprint", "26102": "Large Ionic Field Projector I", "26103": "Large Ionic Field Projector I Blueprint", "26104": "Large Signal Focusing Kit I", "26105": "Large Signal Focusing Kit I Blueprint", "26106": "Large Particle Dispersion Augmentor I", "26107": "Large Particle Dispersion Augmentor I Blueprint", "26108": "Large Particle Dispersion Projector I", "26109": "Large Particle Dispersion Projector I Blueprint", "26110": "Large Inverted Signal Field Projector I", "26111": "Large Inverted Signal Field Projector I Blueprint", "26112": "Large Tracking Diagnostic Subroutines I", "26113": "Large Tracking Diagnostic Subroutines I Blueprint", "26115": "Informant", "353796": "20GJ Particle Accelerator", "353797": "20GJ Particle Cannon", "26120": "Abufyr Joek's Head", "353801": "XT-1 Missile Launcher", "26122": "Pillaging 101", "26123": "The Little Pirate That Could", "26124": "17 Successful Torture Techniques", "26125": "Test Bong", "26126": "Flower Power Powder", "26127": "Angel Cartel Dust", "26128": "Sansha Infiltrator Tag", "26129": "Cold Turkey", "26131": "Booster Pack", "26132": "Purple Haze", "353817": "XT-201 Missile Launcher", "26138": "Research Tower Key", "26140": "Rogue Harvester", "353832": "Surya", "26167": "Okelle's Encryption-Protected Hard Drive", "353879": "Eryx", "353881": "Prometheus", "26216": "Packaging Center Passkey", "353900": "Charybdis", "26224": "Drug Manufacturing", "26225": "Jamiella Ortar", "353907": "Logistics LAV Mass Remote Repairer (S)", "26228": "Think Tank Security Pad", "353919": "Remote Shield Booster (S)", "26241": "VIP Pass", "26245": "Coded Research Zone Key", "353929": "Militia Scrambler Pistol", "353931": "Militia Armor Plates", "26252": "Jury Rigging", "26253": "Armor Rigging", "26254": "Astronautics Rigging", "26255": "Drones Rigging", "26256": "Electronic Superiority Rigging", "26257": "Projectile Weapon Rigging", "26258": "Energy Weapon Rigging", "26259": "Hybrid Weapon Rigging", "26260": "Launcher Rigging", "26261": "Shield Rigging", "26266": "Lazron Kamon", "26270": "Federal Star of Justice", "26271": "Torin Tacs", "353904": "Limbus", "26278": "Privileged Guest Pass", "353959": "'Carbon' Assault Type-I", "353960": "'Carbon' Assault A-Series", "353961": "'Kindred' Scout Type-I", "353962": "'Carbon' Assault vk.0", "26283": "Master Key", "353964": "'Firebrand' Assault A-Series", "353965": "'Firebrand' Assault vk.0", "26286": "Large Anti-EM Pump II", "26287": "Large Anti-EM Pump II Blueprint", "26288": "Large Anti-Explosive Pump II", "26289": "Large Anti-Explosive Pump II Blueprint", "26290": "Large Anti-Kinetic Pump II", "26291": "Large Anti-Kinetic Pump II Blueprint", "26292": "Large Anti-Thermic Pump II", "26293": "Large Anti-Thermic Pump II Blueprint", "26294": "Large Auxiliary Nano Pump II", "26295": "Large Auxiliary Nano Pump II Blueprint", "26296": "Large Nanobot Accelerator II", "26297": "Large Nanobot Accelerator II Blueprint", "26298": "Large Remote Repair Augmentor II", "26299": "Large Remote Repair Augmentor II Blueprint", "26300": "Large Salvage Tackle II", "26301": "Large Salvage Tackle II Blueprint", "26302": "Large Trimark Armor Pump II", "26303": "Large Trimark Armor Pump II Blueprint", "26304": "Large Cargohold Optimization II", "26305": "Large Cargohold Optimization II Blueprint", "26306": "Large Dynamic Fuel Valve II", "26307": "Large Dynamic Fuel Valve II Blueprint", "26308": "Large Engine Thermal Shielding II", "26309": "Large Engine Thermal Shielding II Blueprint", "26310": "Large Low Friction Nozzle Joints II", "26311": "Large Low Friction Nozzle Joints II Blueprint", "26312": "Large Polycarbon Engine Housing II", "26313": "Large Polycarbon Engine Housing II Blueprint", "353994": "'Relic' Assault Type-I", "26318": "Large Auxiliary Thrusters II", "26319": "Large Auxiliary Thrusters II Blueprint", "26320": "Large Warp Core Optimizer II", "26321": "Large Warp Core Optimizer II Blueprint", "26322": "Large Hyperspatial Velocity Optimizer II", "26323": "Large Hyperspatial Velocity Optimizer II Blueprint", "26324": "Large Drone Control Range Augmentor II", "26325": "Large Drone Control Range Augmentor II Blueprint", "26326": "Large Drone Durability Enhancer II", "26327": "Large Drone Durability Enhancer II Blueprint", "26328": "Large Drone Mining Augmentor II", "26329": "Large Drone Mining Augmentor II Blueprint", "26330": "Large Drone Repair Augmentor II", "26331": "Large Drone Repair Augmentor II Blueprint", "26332": "Large Drone Scope Chip II", "26333": "Large Drone Scope Chip II Blueprint", "26334": "Large Drone Speed Augmentor II", "26335": "Large Drone Speed Augmentor II Blueprint", "26338": "Large Sentry Damage Augmentor II", "26339": "Large Sentry Damage Augmentor II Blueprint", "26340": "Large Stasis Drone Augmentor II", "26341": "Large Stasis Drone Augmentor II Blueprint", "26342": "Large Emission Scope Sharpener II", "26343": "Large Emission Scope Sharpener II Blueprint", "26344": "Large Signal Disruption Amplifier II", "26345": "Large Signal Disruption Amplifier II Blueprint", "26346": "Large Memetic Algorithm Bank II", "26347": "Large Memetic Algorithm Bank II Blueprint", "26348": "Large Liquid Cooled Electronics II", "26349": "Large Liquid Cooled Electronics II Blueprint", "26350": "Large Gravity Capacitor Upgrade II", "26351": "Large Gravity Capacitor Upgrade II Blueprint", "26352": "Large Particle Dispersion Augmentor II", "26353": "Large Particle Dispersion Augmentor II Blueprint", "26354": "Large Inverted Signal Field Projector II", "26355": "Large Inverted Signal Field Projector II Blueprint", "26356": "Large Tracking Diagnostic Subroutines II", "26357": "Large Tracking Diagnostic Subroutines II Blueprint", "26358": "Large Ionic Field Projector II", "26359": "Large Ionic Field Projector II Blueprint", "26360": "Large Particle Dispersion Projector II", "26361": "Large Particle Dispersion Projector II Blueprint", "26362": "Large Signal Focusing Kit II", "26363": "Large Signal Focusing Kit II Blueprint", "26364": "Large Targeting System Subcontroller II", "26365": "Large Targeting System Subcontroller II Blueprint", "26366": "Large Targeting Systems Stabilizer II", "26367": "Large Targeting Systems Stabilizer II Blueprint", "26368": "Large Egress Port Maximizer II", "26369": "Large Egress Port Maximizer II Blueprint", "26370": "Large Ancillary Current Router II", "26371": "Large Ancillary Current Router II Blueprint", "26372": "Large Powergrid Subroutine Maximizer II", "26373": "Large Powergrid Subroutine Maximizer II Blueprint", "26374": "Large Capacitor Control Circuit II", "26375": "Large Capacitor Control Circuit II Blueprint", "26376": "Large Semiconductor Memory Cell II", "26377": "Large Semiconductor Memory Cell II Blueprint", "26378": "Large Energy Discharge Elutriation II", "26379": "Large Energy Discharge Elutriation II Blueprint", "26380": "Large Energy Burst Aerator II", "26381": "Large Energy Burst Aerator II Blueprint", "26382": "Large Energy Collision Accelerator II", "26383": "Large Energy Collision Accelerator II Blueprint", "26384": "Large Algid Energy Administrations Unit II", "26385": "Large Algid Energy Administrations Unit II Blueprint", "26386": "Large Energy Ambit Extension II", "26387": "Large Energy Ambit Extension II Blueprint", "26388": "Large Energy Locus Coordinator II", "26389": "Large Energy Locus Coordinator II Blueprint", "26390": "Large Energy Metastasis Adjuster II", "26391": "Large Energy Metastasis Adjuster II Blueprint", "26392": "Large Hybrid Discharge Elutriation II", "26393": "Large Hybrid Discharge Elutriation II Blueprint", "26394": "Large Hybrid Burst Aerator II", "26395": "Large Hybrid Burst Aerator II Blueprint", "26396": "Large Hybrid Collision Accelerator II", "26397": "Large Hybrid Collision Accelerator II Blueprint", "26398": "Large Algid Hybrid Administrations Unit II", "26399": "Large Algid Hybrid Administrations Unit II Blueprint", "26400": "Large Hybrid Ambit Extension II", "26401": "Large Hybrid Ambit Extension II Blueprint", "26402": "Large Hybrid Locus Coordinator II", "26403": "Large Hybrid Locus Coordinator II Blueprint", "26404": "Large Hybrid Metastasis Adjuster II", "26405": "Large Hybrid Metastasis Adjuster II Blueprint", "26406": "Large Bay Loading Accelerator II", "26407": "Large Bay Loading Accelerator II Blueprint", "26412": "Large Warhead Flare Catalyst II", "26413": "Large Warhead Flare Catalyst II Blueprint", "26414": "Large Warhead Rigor Catalyst II", "26415": "Large Warhead Rigor Catalyst II Blueprint", "26416": "Large Hydraulic Bay Thrusters II", "26417": "Large Hydraulic Bay Thrusters II Blueprint", "26418": "Large Rocket Fuel Cache Partition II", "26419": "Large Rocket Fuel Cache Partition II Blueprint", "26420": "Large Warhead Calefaction Catalyst II", "26421": "Large Warhead Calefaction Catalyst II Blueprint", "26424": "Large Projectile Collision Accelerator II", "26425": "Large Projectile Collision Accelerator II Blueprint", "354106": "Militia Drop Uplink", "354107": "Militia Nanohive", "26428": "Large Projectile Ambit Extension II", "26429": "Large Projectile Ambit Extension II Blueprint", "26430": "Large Projectile Burst Aerator II", "26431": "Large Projectile Burst Aerator II Blueprint", "26432": "Large Projectile Locus Coordinator II", "26433": "Large Projectile Locus Coordinator II Blueprint", "26434": "Large Projectile Metastasis Adjuster II", "26435": "Large Projectile Metastasis Adjuster II Blueprint", "26436": "Large Anti-EM Screen Reinforcer II", "26437": "Large Anti-EM Screen Reinforcer II Blueprint", "26438": "Large Anti-Explosive Screen Reinforcer II", "26439": "Large Anti-Explosive Screen Reinforcer II Blueprint", "26440": "Large Anti-Kinetic Screen Reinforcer II", "26441": "Large Anti-Kinetic Screen Reinforcer II Blueprint", "26442": "Large Anti-Thermal Screen Reinforcer II", "26443": "Large Anti-Thermal Screen Reinforcer II Blueprint", "26444": "Large Core Defense Capacitor Safeguard II", "26445": "Large Core Defense Capacitor Safeguard II Blueprint", "26446": "Large Core Defense Charge Economizer II", "26447": "Large Core Defense Charge Economizer II Blueprint", "26448": "Large Core Defense Field Extender II", "26449": "Large Core Defense Field Extender II Blueprint", "26450": "Large Core Defense Field Purger II", "26451": "Large Core Defense Field Purger II Blueprint", "26452": "Large Core Defense Operational Solidifier II", "26453": "Large Core Defense Operational Solidifier II Blueprint", "354134": "Heavy Clarity Ward Shield Booster", "26455": "Administrative Key", "26458": "Me, Myself and Plunder", "26459": "Navigation for Dummies", "26460": "Cartography: The Art of Treasure Map Making", "26461": "Seasoned Dandruff", "26462": "Sweet Leaves", "26463": "Free Sample", "26464": "Speedometer", "26465": "Divine Opium", "26466": "Swirling Color-cards", "354147": "Shield Resistance Amplifier I", "354148": "Supplemental Shield Amplifier", "354149": "Ward Shield Amplifier", "354150": "F-S3 Shield Amplifier", "354151": "Heavy Supplemental Shield Extender", "354152": "Heavy Azeotropic Ward Shield Extender", "354153": "Heavy F-S5 Regolith Shield Extender", "354154": "Supplemental Shield Extender", "354155": "Azeotropic Ward Shield Extender", "354156": "F-S3 Regolith Shield Extender", "354158": "Systemic Vortex Stabilizer", "354159": "Systemic Field Stabilizer II", "354160": "Systemic Stabilizer Array", "354169": "Damage Control Unit I", "354170": "Crisis Damage Control Unit", "354171": "F45 Peripheral Damage Control Unit", "354172": "Electron Damage Control Unit", "354173": "Wavelength Active Scanner", "354174": "F-84 Active Scanner", "354175": "Type-G Active Scanner", "354176": "60mm Reinforced Nanofibre Plates", "354177": "60mm Reinforced Polycrystalline Plates", "354178": "60mm Reinforced Type-A Plates", "354179": "120mm Reinforced Nanofibre Plates", "354180": "120mm Reinforced Polycrystalline Plates", "354181": "120mm Reinforced Type-A Plates", "354182": "180mm Reinforced Steel Plates", "354183": "180mm Reinforced Nanofibre Plates", "354184": "180mm Reinforced Polycrystalline Plates", "354185": "180mm Reinforced Type-A Plates", "354186": "Modified P-Type Nanofiber", "354187": "Altered M-Type Nanofiber ", "354188": "Type-G Nanofibre Internal Structure", "354192": "'Colossus' Heavy Type-I", "354234": "'Solstice' Scout A-Series", "354235": "'Solstice' Scout vk.0", "354237": "'Oblivion' Logistics Type-I", "354251": "'Colossus' Heavy A-Series", "354252": "'Colossus' Heavy vk.0", "354264": "Shield Regenerator I", "354265": "Supplemental Shield Regenerator", "354266": "Ward Shield Regenerator", "354267": "M42 Shield Regenerator", "354271": "'Anasoma' Heavy Type-I", "354272": "'Anasoma' Heavy A-Series", "354273": "'Anasoma' Heavy vk.0", "354274": "'Oblivion' Logistics A-Series", "354275": "'Oblivion' Logistics vk.0", "26597": "Cryptic Tuner Data Interface", "26598": "Cryptic Tuner Data Interface Blueprint", "26599": "Esoteric Tuner Data Interface", "26600": "Esoteric Tuner Data Interface Blueprint", "26601": "Incognito Tuner Data Interface", "26602": "Incognito Tuner Data Interface Blueprint", "26603": "Occult Tuner Data Interface", "26604": "Occult Tuner Data Interface Blueprint", "353963": "'Firebrand' Assault Type-I", "354317": "'Hazard' Logistics A-Series", "353966": "'Kindred' Scout A-Series", "353967": "'Kindred' Scout vk.0", "353974": "'Solstice' Scout Type-I", "26696": "Sidura Meisana", "353975": "'Orchid' Assault Type-I", "26707": "Hidden Data Sheets", "26708": "Port Rolette Residents", "26710": "Prototype Nuclear Small Arms", "353980": "Heavy IG-L Polarized Armor Regenerator", "353981": "Heavy Efficient Armor Repair Unit", "353982": "Heavy Automated Armor Repair Unit", "353983": "Light IG-L Polarized Armor Regenerator", "353984": "Light Efficient Armor Repair Unit", "26759": "Heavy Assault Missile Launcher I Blueprint", "26760": "Mjolnir Heavy Assault Missile Blueprint", "26761": "Inferno Heavy Assault Missile Blueprint", "26762": "Scourge Heavy Assault Missile Blueprint", "353986": "Heavy Remote Armor Repair Unit I", "353987": "Heavy Remote IG-R Polarized Armor Regenerator", "26773": "Regiment of Marines", "26774": "Crates of Long-limb Roes", "26775": "Group of Janitors", "26776": "Barrels of Soil", "26777": "Barrels Of Viral Agent", "26778": "Crates of Holoreels", "26779": "Crates of Electronic Parts", "26780": "Crates of Crystal Eggs", "26781": "Crates of Transmitters", "26782": "Barrels of Fertilizer", "26783": "Group of Homeless", "26784": "Heap-Load of Garbage", "26785": "Crates of Frozen Plant Seeds", "26786": "Crates of Spirits", "26787": "Crates of Rocket Fuel", "26788": "Gang of Miners", "26789": "Cache of Pistols", "26790": "Crates of Tobacco", "26791": "Crates of Construction Blocks", "26792": "Barrels of Water", "353991": "Light Remote Efficient Armor Repair Unit", "353992": "Light Remote Automated Armor Repair Unit", "26840": "Raven State Issue", "26842": "Tempest Tribal Issue", "354003": "'Relic' Assault A-Series", "354005": "'Relic' Assault vk.0", "26888": "Mobile Large Warp Disruptor II", "26889": "Mobile Large Warp Disruptor II Blueprint", "26890": "Mobile Medium Warp Disruptor II", "26891": "Mobile Medium Warp Disruptor II Blueprint", "26892": "Mobile Small Warp Disruptor II", "26893": "Mobile Small Warp Disruptor II Blueprint", "26901": "Breeder Slave", "26902": "Fedo", "26903": "Military Intelligence Report", "26904": "Secure Coded Package", "26905": "Slave Ownership Record", "26906": "Slave Manifests", "26907": "Starkmanir Slave", "26908": "Valkears", "26912": "Small Remote Armor Repair System II", "26913": "Medium Remote Armor Repair System II", "26914": "Large Remote Armor Repair System II", "26915": "Large Remote Armor Repair System II Blueprint", "26916": "Medium Remote Armor Repair System II Blueprint", "26917": "Small Remote Armor Repair System II Blueprint", "354012": "Militia PG Upgrade", "26929": "Small Processor Overclocking Unit I", "26930": "Small Processor Overclocking Unit I Blueprint", "26931": "Small Processor Overclocking Unit II", "26932": "Small Processor Overclocking Unit II Blueprint", "354626": "[TEST] Shield Gen 2", "354627": "[TEST] Shield Gen 1", "354643": "Active Booster (1-Day)", "354644": "Active Booster (7-Day)", "26974": "Antiviral Drugs", "354664": "Active Scanner", "354667": "Basic Profile Dampener", "354669": "Basic Precision Enhancer", "26998": "Hejilmar the Slave", "354685": "Laser Rifle", "355013": "ADV Drone Shotgun", "354714": "Remote Explosive", "27038": "Clay Pigeon", "354741": "Cestus", "354742": "Charron", "27068": "Small Remote Repair Augmentor I", "27069": "Small Remote Repair Augmentor I Blueprint", "27070": "Inherent Implants 'Noble' Repair Systems RS-601", "27071": "Inherent Implants 'Noble' Remote Armor Repair Systems RA-701", "27072": "Inherent Implants 'Noble' Mechanic MC-801", "27073": "Inherent Implants 'Noble' Repair Proficiency RP-901", "27074": "Inherent Implants 'Noble' Hull Upgrades HG-1001", "27075": "Eifyr and Co. 'Gunslinger' Motion Prediction MR-701", "27076": "Zainou 'Deadeye' Sharpshooter ST-901", "27077": "Inherent Implants 'Lancer' Gunnery RF-901", "27078": "Zainou 'Deadeye' Trajectory Analysis TA-701", "27079": "Inherent Implants 'Lancer' Controlled Bursts CB-701", "27080": "Zainou 'Gnome' Weapon Upgrades WU-1001", "27081": "Eifyr and Co. 'Gunslinger' Surgical Strike SS-901", "27082": "Inherent Implants 'Lancer' Small Energy Turret SE-601", "27083": "Zainou 'Deadeye' Small Hybrid Turret SH-601", "27084": "Eifyr and Co. 'Gunslinger' Small Projectile Turret SP-601", "27085": "Inherent Implants 'Lancer' Medium Energy Turret ME-801", "27086": "Zainou 'Deadeye' Medium Hybrid Turret MH-801", "27087": "Eifyr and Co. 'Gunslinger' Medium Projectile Turret MP-801", "27088": "Inherent Implants 'Lancer' Large Energy Turret LE-1001", "27089": "Zainou 'Deadeye' Large Hybrid Turret LH-1001", "27090": "Eifyr and Co. 'Gunslinger' Large Projectile Turret LP-1001", "27091": "Zainou 'Gnome' Launcher CPU Efficiency LE-601", "27092": "Zainou 'Deadeye' Missile Bombardment MB-701", "27093": "Zainou 'Deadeye' Missile Projection MP-701", "27094": "Zainou 'Deadeye' Guided Missile Precision GP-801", "27095": "Zainou 'Deadeye' Target Navigation Prediction TN-901", "27096": "Zainou 'Deadeye' Rapid Launch RL-1001", "27097": "Eifyr and Co. 'Rogue' Navigation NN-601", "27098": "Eifyr and Co. 'Rogue' Fuel Conservation FC-801", "27099": "Eifyr and Co. 'Rogue' Evasive Maneuvering EM-701", "27100": "Eifyr and Co. 'Rogue' High Speed Maneuvering HS-901", "27101": "Eifyr and Co. 'Rogue' Acceleration Control AC-601", "27102": "Inherent Implants 'Highwall' Mining MX-1001", "27103": "Inherent Implants 'Yeti' Ice Harvesting IH-1001", "27104": "Zainou 'Gnome' Shield Upgrades SU-601", "27105": "Zainou 'Gnome' Shield Management SM-701", "27106": "Zainou 'Gnome' Shield Emission Systems SE-801", "27107": "Zainou 'Gnome' Shield Operation SP-901", "27108": "Zainou 'Snapshot' Light Missiles LM-903", "27109": "Zainou 'Snapshot' Assault Missiles AM-703", "27110": "Eifyr and Co. 'Rogue' Afterburner AB-610", "27111": "Eifyr and Co. 'Rogue' Afterburner AB-602", "27112": "Eifyr and Co. 'Rogue' Warp Drive Operation WD-610", "27113": "Eifyr and Co. 'Rogue' Warp Drive Operation WD-602", "27114": "Eifyr and Co. 'Rogue' Warp Drive Speed WS-615", "27115": "Eifyr and Co. 'Rogue' Warp Drive Speed WS-605", "27116": "Inherent Implants 'Squire' Energy Management EM-805", "27117": "Inherent Implants 'Squire' Energy Management EM-801", "27118": "Inherent Implants 'Squire' Energy Systems Operation EO-605", "27119": "Inherent Implants 'Squire' Energy Systems Operation EO-601", "27120": "Inherent Implants 'Squire' Energy Emission Systems ES-701", "27121": "Inherent Implants 'Squire' Energy Emission Systems ES-705", "27122": "Inherent Implants 'Squire' Energy Pulse Weapons EP-705", "27123": "Inherent Implants 'Squire' Energy Pulse Weapons EP-701", "27124": "Inherent Implants 'Squire' Energy Grid Upgrades EU-705", "27125": "Inherent Implants 'Squire' Energy Grid Upgrades EU-701", "27126": "Inherent Implants 'Squire' Engineering EG-605", "27127": "Inherent Implants 'Squire' Engineering EG-601", "27128": "Zainou 'Gypsy' Electronics Upgrades EU-605", "27129": "Zainou 'Gypsy' Electronics Upgrades EU-601", "27130": "Zainou 'Gypsy' Signature Analysis SA-705", "27131": "Zainou 'Gypsy' Signature Analysis SA-701", "27142": "Zainou 'Gypsy' Electronics EE-605", "27143": "Zainou 'Gypsy' Electronics EE-601", "354824": "Primary Console", "354826": "Security Console", "27147": "Eifyr and Co. 'Alchemist' Biology BY-805", "27148": "Eifyr and Co. 'Alchemist' Biology BY-810", "27149": "Inherent Implants 'Highwall' Mining Upgrades MU-1003", "27150": "Inherent Implants 'Highwall' Mining Upgrades MU-1005", "27151": "Inherent Implants 'Highwall' Mining Upgrades MU-1001", "27167": "Zainou 'Beancounter' Industry BX-802", "27169": "Zainou 'Beancounter' Refining RX-802", "27170": "Zainou 'Beancounter' Industry BX-801", "27171": "Zainou 'Beancounter' Industry BX-804", "354852": "Supply Depot ", "27174": "Zainou 'Beancounter' Refining RX-804", "27175": "Zainou 'Beancounter' Refining RX-801", "27176": "Zainou 'Beancounter' Metallurgy MY-703", "27177": "Zainou 'Beancounter' Research RR-603", "27178": "Zainou 'Beancounter' Science SC-803", "27179": "Zainou 'Beancounter' Research RR-605", "27180": "Zainou 'Beancounter' Research RR-601", "27181": "Zainou 'Beancounter' Metallurgy MY-705", "27182": "Zainou 'Beancounter' Metallurgy MY-701", "27184": "Zainou 'Beancounter' Science SC-805", "27185": "Zainou 'Beancounter' Science SC-801", "27186": "Poteque 'Prospector' Astrometric Pinpointing AP-606", "27187": "Poteque 'Prospector' Astrometric Acquisition AQ-706", "27188": "Poteque 'Prospector' Astrometric Rangefinding AR-806", "354869": "Vehicle Shield Recharger", "27190": "Poteque 'Prospector' Astrometric Pinpointing AP-610", "27191": "Poteque 'Prospector' Astrometric Pinpointing AP-602", "27192": "Poteque 'Prospector' Astrometric Acquisition AQ-710", "27193": "Poteque 'Prospector' Astrometric Acquisition AQ-702", "27194": "Poteque 'Prospector' Astrometric Rangefinding AR-810", "27195": "Poteque 'Prospector' Astrometric Rangefinding AR-802", "27196": "Poteque 'Prospector' Archaeology AC-905", "27197": "Poteque 'Prospector' Hacking HC-905", "27198": "Poteque 'Prospector' Salvaging SV-905", "27203": "Production Assistant", "27204": "Hardwiring - Zainou 'Sharpshooter' ZMX100", "27205": "Hardwiring - Zainou 'Sharpshooter' ZMX1000", "27206": "Hardwiring - Zainou 'Sharpshooter' ZMX10", "354894": "[TEST] Drone Hive 2", "354903": "Basic Heavy Damage Modifier", "27224": "Zainou 'Gypsy' Target Painting TG-903", "27225": "Zainou 'Gypsy' Electronic Warfare EW-905", "27226": "Zainou 'Gypsy' Electronic Warfare EW-901", "27227": "Zainou 'Gypsy' Long Range Targeting LT-805", "354908": "Complex Sidearm Damage Modifier", "27229": "Zainou 'Gypsy' Long Range Targeting LT-801", "27230": "Zainou 'Gypsy' Propulsion Jamming PJ-805", "27231": "Zainou 'Gypsy' Propulsion Jamming PJ-801", "27232": "Zainou 'Gypsy' Sensor Linking SL-905", "27233": "Zainou 'Gypsy' Sensor Linking SL-901", "27234": "Zainou 'Gypsy' Weapon Disruption WD-905", "27235": "Zainou 'Gypsy' Weapon Disruption WD-901", "27236": "Zainou 'Gypsy' Target Painting TG-905", "27237": "Zainou 'Gypsy' Target Painting TG-901", "27238": "Eifyr and Co. 'Alchemist' Gas Harvesting GH-803", "27239": "Eifyr and Co. 'Alchemist' Gas Harvesting GH-805", "27240": "Eifyr and Co. 'Alchemist' Gas Harvesting GH-801", "354921": "'Membrane' Complex Cardiac Regulator", "354922": "'Sheath' Basic Myofibril Stimulant", "27243": "Zainou 'Snapshot' Defender Missiles DM-805", "27244": "Zainou 'Snapshot' Defender Missiles DM-801", "27245": "Zainou 'Snapshot' Assault Missiles AM-705", "27246": "Zainou 'Snapshot' Assault Missiles AM-701", "27247": "Zainou 'Snapshot' FOF Explosion Radius FR-1005", "354928": "GB-9 Breach Assault Rifle", "27249": "Zainou 'Snapshot' FOF Explosion Radius FR-1001", "27250": "Zainou 'Snapshot' Heavy Missiles HM-705", "27251": "Zainou 'Snapshot' Heavy Missiles HM-701", "27252": "Zainou 'Snapshot' Light Missiles LM-905", "27253": "Zainou 'Snapshot' Light Missiles LM-901", "27254": "Zainou 'Snapshot' Rockets RD-905", "27255": "Zainou 'Snapshot' Rockets RD-901", "27256": "Zainou 'Snapshot' Torpedoes TD-605", "27257": "Zainou 'Snapshot' Torpedoes TD-601", "27258": "Zainou 'Snapshot' Cruise Missiles CM-605", "27259": "Zainou 'Snapshot' Cruise Missiles CM-601", "27260": "Poteque 'Prospector' Environmental Analysis EY-1005", "354941": "Militia Assault Dropsuit", "354949": "Drone Hive - Lvl.2", "27274": "Villard Wheel", "27276": "Black Box", "354957": "CreoDron Shotgun", "354958": "[DEMO] Drone Hive", "354959": "ELM-7 Laser Rifle", "354960": "Viziam Laser Rifle", "354961": "MH-82 Heavy Machine Gun", "354962": "Boundless Heavy Machine Gun", "354963": "EXO-5 Mass Driver", "354964": "Freedom Mass Driver", "27294": "Christer Fuglesang's Medal", "27309": "Station Warehouse Container Blueprint", "27313": "Guristas Inferno Rocket", "27315": "Caldari Navy Inferno Rocket", "27317": "Dread Guristas Inferno Rocket", "27319": "Guristas Mjolnir Rocket", "27321": "Caldari Navy Mjolnir Rocket", "27323": "Dread Guristas Mjolnir Rocket", "27325": "Guristas Nova Rocket", "27327": "Caldari Navy Nova Rocket", "27329": "Dread Guristas Nova Rocket", "355010": "PRO Drone Shotgun", "27331": "Guristas Scourge Rocket", "27333": "Caldari Navy Scourge Rocket", "27335": "Dread Guristas Scourge Rocket", "27337": "Guristas Mjolnir Torpedo", "27339": "Caldari Navy Mjolnir Torpedo", "27341": "Dread Guristas Mjolnir Torpedo", "27343": "Guristas Scourge Torpedo", "27345": "Caldari Navy Scourge Torpedo", "27347": "Dread Guristas Scourge Torpedo", "27349": "Guristas Inferno Torpedo", "27351": "Caldari Navy Inferno Torpedo", "355032": "Drone Forge Gun", "27353": "Guristas Scourge Light Missile", "27355": "Dread Guristas Inferno Torpedo", "27357": "Guristas Nova Torpedo", "355038": "Drone Sniper Rifle", "27359": "Caldari Navy Nova Torpedo", "2002": "ECCM - Ladar I", "27361": "Caldari Navy Scourge Light Missile", "27363": "Dread Guristas Nova Torpedo", "27365": "Dread Guristas Scourge Light Missile", "27367": "Guristas Inferno Light Missile", "27369": "Dread Guristas Inferno Light Missile", "355050": "ADV Drone Sniper Rifle", "27371": "Caldari Navy Inferno Light Missile", "27373": "Guristas Mjolnir Cruise Missile", "27375": "Dread Guristas Nova Light Missile", "27377": "Caldari Navy Mjolnir Cruise Missile", "27379": "Guristas Nova Light Missile", "27381": "Caldari Navy Nova Light Missile", "27383": "Guristas Mjolnir Light Missile", "27385": "Dread Guristas Mjolnir Light Missile", "27387": "Caldari Navy Mjolnir Light Missile", "27389": "Dread Guristas Mjolnir Cruise Missile", "27391": "Guristas Scourge Cruise Missile", "27393": "Guristas Nova Heavy Assault Missile", "27395": "Caldari Navy Scourge Cruise Missile", "27397": "Dread Guristas Nova Heavy Assault Missile", "27399": "Dread Guristas Scourge Cruise Missile", "27401": "Caldari Navy Nova Heavy Assault Missile", "27403": "Guristas Inferno Heavy Assault Missile", "27405": "Caldari Navy Inferno Heavy Assault Missile", "27407": "Dread Guristas Inferno Heavy Assault Missile", "27409": "Guristas Inferno Cruise Missile", "27411": "Guristas Scourge Heavy Assault Missile", "27413": "Caldari Navy Scourge Heavy Assault Missile", "27415": "Dread Guristas Scourge Heavy Assault Missile", "27417": "Guristas Mjolnir Heavy Assault Missile", "355098": "ADV Drone Assault Rifle", "27419": "Caldari Navy Mjolnir Heavy Assault Missile", "27421": "Dread Guristas Mjolnir Heavy Assault Missile", "27423": "Caldari Navy Inferno Cruise Missile", "355104": "PRO Drone Laser Rifle", "27425": "Dread Guristas Inferno Cruise Missile", "27427": "Guristas Nova Cruise Missile", "27429": "Caldari Navy Nova Cruise Missile", "27431": "Dread Guristas Nova Cruise Missile", "27433": "Guristas Mjolnir Heavy Missile", "27435": "Caldari Navy Mjolnir Heavy Missile", "27437": "Dread Guristas Mjolnir Heavy Missile", "27439": "Guristas Scourge Heavy Missile", "27441": "Caldari Navy Scourge Heavy Missile", "27443": "Dread Guristas Scourge Heavy Missile", "27445": "Guristas Inferno Heavy Missile", "27447": "Caldari Navy Inferno Heavy Missile", "27449": "Dread Guristas Inferno Heavy Missile", "27451": "Guristas Nova Heavy Missile", "27453": "Caldari Navy Nova Heavy Missile", "27455": "Dread Guristas Nova Heavy Missile", "27459": "Imperial Navy Mjolnir Auto-Targeting Cruise Missile I", "27465": "Caldari Navy Scourge Auto-Targeting Cruise Missile I", "27471": "Federation Navy Inferno Auto-Targeting Cruise Missile I", "27477": "Republic Fleet Nova Auto-Targeting Cruise Missile I", "355159": "ADV Drone HMG", "355161": "Drone HMG", "27483": "Imperial Navy Mjolnir Auto-Targeting Heavy Missile I", "27489": "Caldari Navy Scourge Auto-Targeting Heavy Missile I", "27495": "Federation Navy Inferno Auto-Targeting Heavy Missile I", "354108": "Militia Repair Tool", "27501": "Republic Fleet Nova Auto-Targeting Heavy Missile I", "27507": "Imperial Navy Mjolnir Auto-Targeting Light Missile I", "27513": "Caldari Navy Scourge Auto-Targeting Light Missile I", "355198": "Drone Hive - Lvl.1", "27519": "Federation Navy Inferno Auto-Targeting Light Missile I", "355201": "Drone Hive - Lvl.4", "27525": "Republic Fleet Nova Auto-Targeting Light Missile I", "27530": "Blood Control Tower", "27532": "Dark Blood Control Tower", "27533": "Guristas Control Tower", "27535": "Dread Guristas Control Tower", "27536": "Serpentis Control Tower", "355217": "Active Booster (3-Day)", "27538": "Shadow Control Tower", "27539": "Angel Control Tower", "27540": "Domination Control Tower", "27542": "Serpentis Large Blaster Battery", "27544": "Shadow Large Blaster Battery", "27545": "Serpentis Large Railgun Battery", "27547": "Shadow Large Railgun Battery", "27548": "Blood Large Pulse Laser Battery", "27550": "Dark Blood Large Pulse Laser Battery", "27551": "Blood Large Beam Laser Battery", "27553": "Dark Blood Large Beam Laser Battery", "27554": "Angel Large AutoCannon Battery", "27556": "Domination Large AutoCannon Battery", "27557": "Angel Large Artillery Battery", "27559": "Domination Large Artillery Battery", "27560": "Guristas Citadel Torpedo Battery", "27562": "Dread Guristas Citadel Torpedo Battery", "27563": "Serpentis Warp Disruption Battery", "27565": "Shadow Warp Disruption Battery", "27567": "Serpentis Warp Scrambling Battery", "27569": "Shadow Warp Scrambling Battery", "27570": "Angel Stasis Webification Battery", "27573": "Domination Stasis Webification Battery", "27574": "Guristas Ion Field Projection Battery", "27576": "Dread Guristas Ion Field Projection Battery", "27577": "Guristas Phase Inversion Battery", "355258": "Carthum Assault Scrambler Pistol", "27579": "Dread Guristas Phase Inversion Battery", "27580": "Guristas Spatial Destabilization Battery", "354122": "Heavy Converse Shield Transporter", "27582": "Dread Guristas Spatial Destabilization Battery", "27583": "Guristas White Noise Generation Battery", "355264": "'Cyclone' EXO-5 Mass Driver", "27585": "Dread Guristas White Noise Generation Battery", "355266": "'Maelstrom' R11-4 Flux Nanohive", "354123": "Heavy Clarity Ward Shield Transporter", "355268": "KIN-012 Nanite Injector", "27589": "Blood Control Tower Medium", "355270": "'Necromancer' KIN-012 Nanite Injector", "27591": "Dark Blood Control Tower Medium", "27592": "Blood Control Tower Small", "354124": "Heavy C5-R Shield Transporter", "27594": "Dark Blood Control Tower Small", "27595": "Guristas Control Tower Medium", "27597": "Dread Guristas Control Tower Medium", "27598": "Guristas Control Tower Small", "354125": "Light Shield Transporter I", "27600": "Dread Guristas Control Tower Small", "27601": "Serpentis Control Tower Medium", "27603": "Shadow Control Tower Medium", "27604": "Serpentis Control Tower Small", "354126": "Light Converse Shield Transporter", "27606": "Shadow Control Tower Small", "27607": "Angel Control Tower Medium", "27609": "Domination Control Tower Medium", "27610": "Angel Control Tower Small", "354127": "Light C3-R Shield Transporter", "27612": "Domination Control Tower Small", "27613": "Serpentis Medium Blaster Battery", "355294": "Squad - Shield Resistance", "27615": "Shadow Medium Blaster Battery", "27616": "Serpentis Medium Railgun Battery", "354128": "Light Clarity Ward Shield Transporter", "27618": "Shadow Medium Railgun Battery", "27619": "Serpentis Small Blaster Battery", "27621": "Shadow Small Blaster Battery", "27622": "Serpentis Small Railgun Battery", "354129": "Light Converse Shield Booster", "27624": "Shadow Small Railgun Battery", "27625": "Blood Medium Beam Laser Battery", "27627": "Dark Blood Medium Beam Laser Battery", "27628": "Blood Medium Pulse Laser Battery", "354130": "Light Clarity Ward Shield Booster", "27630": "Dark Blood Medium Pulse Laser Battery", "27631": "Blood Small Beam Laser Battery", "27633": "Dark Blood Small Beam Laser Battery", "27634": "Blood Small Pulse Laser Battery", "354131": "Light C3-L Shield Booster", "27636": "Dark Blood Small Pulse Laser Battery", "27638": "Guristas Cruise Missile Battery", "27640": "Dread Guristas Cruise Missile Battery", "27641": "Guristas Torpedo Battery", "27643": "Dread Guristas Torpedo Battery", "27644": "Angel Medium Artillery Battery", "355325": "QA Drone Hive 1", "27646": "Domination Medium Artillery Battery", "27647": "Angel Medium AutoCannon Battery", "27649": "Domination Medium AutoCannon Battery", "27650": "Angel Small Artillery Battery", "27652": "Domination Small Artillery Battery", "27653": "Angel Small AutoCannon Battery", "27655": "Domination Small AutoCannon Battery", "27656": "Foundation Upgrade Platform", "27658": "Pedestal Upgrade Platform", "354135": "Heavy C5-L Shield Booster", "27660": "Monument Upgrade Platform", "27662": "Amarr Basic Outpost Factory Platform", "27664": "Amarr Advanced Outpost Factory Platform", "27666": "Amarr Outpost Factory Platform", "27672": "Energy Neutralizing Battery", "27673": "Cynosural Generator Array", "27674": "Cynosural System Jammer", "27675": "System Scanning Array", "27677": "Angel Control Tower Blueprint", "27678": "Remote ECM Burst I", "27679": "Remote ECM Burst I Blueprint", "27680": "Angel Control Tower Medium Blueprint", "27681": "Angel Control Tower Small Blueprint", "27682": "Blood Control Tower Blueprint", "27684": "Blood Control Tower Medium Blueprint", "27685": "Blood Control Tower Small Blueprint", "27688": "Dark Blood Control Tower Blueprint", "27689": "Dark Blood Control Tower Medium Blueprint", "27690": "Dark Blood Control Tower Small Blueprint", "27694": "Domination Control Tower Medium Blueprint", "27695": "Domination Control Tower Blueprint", "27696": "Domination Control Tower Small Blueprint", "27697": "Guristas Control Tower Small Blueprint", "27698": "Guristas Control Tower Medium Blueprint", "27699": "Guristas Control Tower Blueprint", "354142": "N-Type Energized Plating", "27703": "Dread Guristas Control Tower Small Blueprint", "27704": "Dread Guristas Control Tower Medium Blueprint", "27705": "Dread Guristas Control Tower Blueprint", "27706": "Serpentis Control Tower Blueprint", "27707": "Serpentis Control Tower Medium Blueprint", "27708": "Serpentis Control Tower Small Blueprint", "27712": "Shadow Control Tower Medium Blueprint", "27713": "Shadow Control Tower Blueprint", "27714": "Shadow Control Tower Small Blueprint", "355402": "Militia Heavy Armor Repair Unit", "355403": "Militia Shield Booster", "355404": "Militia Heavy Shield Booster", "355405": "Militia 60mm Reinforced Steel Plates", "355406": "Militia 120mm Reinforced Steel Plates", "355407": "Militia 180mm Reinforced Steel Plates", "355408": "Militia Energized Plating", "355409": "Militia CPU Enhancer", "355411": "Militia Powergrid Expansion Unit", "355412": "Militia Power Diagnostic System", "355413": "Militia Shield Extender ", "355414": "Militia Heavy Shield Extender", "355415": "Militia Shield Regenerator", "355416": "Militia Shield Resistance Amplifier", "355421": "Militia Sidearm Damage Modifier", "355422": "Militia Heavy Damage Modifier", "355423": "Onikuma - Impact", "355424": "Baloch - Impact", "355425": "Dire Sentinel", "355426": "Arbiter", "355427": "Artificer", "355428": "Militia Nanite Injector", "355430": "'Dragonfly' Scout [nSv]", "355432": "'Toxin' ICD-9 Submachine Gun", "355434": "HK4M Shotgun", "355435": "Hacked Drop Uplink", "355438": "Drone Hive", "355439": "Drone Hive", "355442": "1.5dn Myofibril Stimulant", "355443": "Fused Locus Grenade", "355445": "QA God Suit", "27766": "Sansha Large Beam Laser Battery", "27767": "Sansha Large Pulse Laser Battery", "27768": "Sansha Medium Beam Laser Battery", "27769": "Sansha Medium Pulse Laser Battery", "27770": "Sansha Small Beam Laser Battery", "27771": "Sansha Small Pulse Laser Battery", "27772": "True Sansha Large Beam Laser Battery", "27773": "True Sansha Large Pulse Laser Battery", "27774": "True Sansha Medium Beam Laser Battery", "27775": "True Sansha Medium Pulse Laser Battery", "27776": "True Sansha Small Beam Laser Battery", "27777": "True Sansha Small Pulse Laser Battery", "27778": "Serpentis Sensor Dampening Battery", "27779": "Shadow Sensor Dampening Battery", "27780": "Sansha Control Tower", "27781": "Sansha Control Tower Blueprint", "27782": "Sansha Control Tower Medium", "27783": "Sansha Control Tower Medium Blueprint", "27784": "Sansha Control Tower Small", "27785": "Sansha Control Tower Small Blueprint", "27786": "True Sansha Control Tower", "27787": "True Sansha Control Tower Blueprint", "27788": "True Sansha Control Tower Medium", "27789": "True Sansha Control Tower Medium Blueprint", "27790": "True Sansha Control Tower Small", "27791": "True Sansha Control Tower Small Blueprint", "355472": "Viper", "355473": "Gorgon", "355474": "Viper - Hatch", "355475": "Sica - Tension", "355476": "Passenger Position", "355478": "Passenger Position", "355479": "Soma - Tension", "27803": "Massive Sealed Cargo Containers", "27807": "Sansha Large Pulse Laser Battery Blueprint", "27808": "Sansha Large Beam Laser Battery Blueprint", "27809": "Sansha Medium Beam Laser Battery Blueprint", "27810": "Sansha Medium Pulse Laser Battery Blueprint", "27811": "Sansha Small Pulse Laser Battery Blueprint", "27812": "Sansha Small Beam Laser Battery Blueprint", "27813": "True Sansha Small Beam Laser Battery Blueprint", "27814": "True Sansha Small Pulse Laser Battery Blueprint", "27815": "True Sansha Medium Pulse Laser Battery Blueprint", "27816": "True Sansha Medium Beam Laser Battery Blueprint", "27817": "True Sansha Large Pulse Laser Battery Blueprint", "27818": "True Sansha Large Beam Laser Battery Blueprint", "27819": "Blood Large Beam Laser Battery Blueprint", "27820": "Blood Large Pulse Laser Battery Blueprint", "27821": "Blood Medium Beam Laser Battery Blueprint", "27822": "Blood Medium Pulse Laser Battery Blueprint", "27823": "Blood Small Beam Laser Battery Blueprint", "27824": "Blood Small Pulse Laser Battery Blueprint", "27825": "Dark Blood Large Beam Laser Battery Blueprint", "27826": "Dark Blood Large Pulse Laser Battery Blueprint", "27827": "Dark Blood Medium Beam Laser Battery Blueprint", "27828": "Dark Blood Medium Pulse Laser Battery Blueprint", "27829": "Dark Blood Small Beam Laser Battery Blueprint", "27830": "Dark Blood Small Pulse Laser Battery Blueprint", "27831": "Angel Large Artillery Battery Blueprint", "27832": "Angel Large Autocannon Battery Blueprint", "27833": "Angel Medium Autocannon Battery Blueprint", "27834": "Angel Small Autocannon Battery Blueprint", "27835": "Angel Medium Artillery Battery Blueprint", "27836": "Angel Small Artillery Battery Blueprint", "27837": "Domination Small Artillery Battery Blueprint", "27838": "Domination Medium Artillery Battery Blueprint", "27839": "Domination Large Artillery Battery Blueprint", "27840": "Domination Large Autocannon Battery Blueprint", "27841": "Domination Medium Autocannon Battery Blueprint", "27842": "Domination Small Autocannon Battery Blueprint", "27843": "Serpentis Large Railgun Battery Blueprint", "27844": "Serpentis Medium Railgun Battery Blueprint", "27845": "Serpentis Small Railgun Battery Blueprint", "27846": "Serpentis Small Blaster Battery Blueprint", "27847": "Serpentis Medium Blaster Battery Blueprint", "27848": "Serpentis Large Blaster Battery Blueprint", "27849": "Shadow Large Blaster Battery Blueprint", "27850": "Shadow Large Railgun Battery Blueprint", "27851": "Shadow Medium Railgun Battery Blueprint", "27852": "Shadow Medium Blaster Battery Blueprint", "27853": "Shadow Small Blaster Battery Blueprint", "27854": "Shadow Small Railgun Battery Blueprint", "27855": "Sansha Energy Neutralizing Battery", "27856": "True Sansha Energy Neutralizing Battery", "27857": "Blood Energy Neutralizing Battery", "27858": "Dark Blood Energy Neutralizing Battery", "27859": "Guristas Ion Field Projection Battery Blueprint", "27860": "Guristas White Noise Generation Battery Blueprint", "27861": "Guristas Spatial Destabilization Battery Blueprint", "27862": "Guristas Phase Inversion Battery Blueprint", "27863": "Dread Guristas Phase Inversion Battery Blueprint", "27864": "Dread Guristas Ion Field Projection Battery Blueprint", "27865": "Dread Guristas Spatial Destabilization Battery Blueprint", "27866": "Dread Guristas White Noise Generation Battery Blueprint", "27867": "Serpentis Warp Scrambling Battery Blueprint", "27868": "Serpentis Warp Disruption Battery Blueprint", "27869": "Shadow Warp Disruption Battery Blueprint", "27870": "Shadow Warp Scrambling Battery Blueprint", "27871": "Angel Stasis Webification Battery Blueprint", "27872": "Domination Stasis Webification Battery Blueprint", "27873": "Serpentis Sensor Dampening Battery Blueprint", "27874": "Shadow Sensor Dampening Battery Blueprint", "27875": "Blood Energy Neutralizing Battery Blueprint", "27876": "Dark Blood Energy Neutralizing Battery Blueprint", "27877": "Sansha Energy Neutralizing Battery Blueprint", "27878": "True Sansha Energy Neutralizing Battery Blueprint", "355561": "Active Booster (30-Day)", "355566": "Enhanced Codebreaker", "355567": "Complex Codebreaker", "355568": "Basic Codebreaker", "355569": "'Pandemic' Complex Codebreaker", "355570": "'Pathogen' Basic Codebreaker", "355571": "'Contagion' Enhanced Codebreaker", "27897": "Jump Bridge", "27902": "Remote Hull Repair Systems", "355583": "'Shaft' Basic Shield Regulator", "27904": "Large Remote Hull Repair System I", "27905": "Large Remote Hull Repair System I Blueprint", "27906": "Tactical Logistics Reconfiguration", "355587": "Enhanced Shield Regulator", "27911": "Projected Electronic Counter Measures", "27912": "Concussion Bomb", "27913": "Concussion Bomb Blueprint", "27914": "Bomb Launcher I", "27915": "Bomb Launcher I Blueprint", "27916": "Scorch Bomb", "27917": "Scorch Bomb Blueprint", "27918": "Shrapnel Bomb", "27919": "Shrapnel Bomb Blueprint", "27920": "Electron Bomb", "27921": "Electron Bomb Blueprint", "27922": "Lockbreaker Bomb", "27923": "Lockbreaker Bomb Blueprint", "27924": "Void Bomb", "27925": "Void Bomb Blueprint", "355607": "Magnetic Field Stabilizer", "27930": "Medium Remote Hull Repair System I", "27931": "Medium Remote Hull Repair System I Blueprint", "27932": "Small Remote Hull Repair System I", "27933": "Small Remote Hull Repair System I Blueprint", "27934": "Capital Remote Hull Repair System I", "27935": "Capital Remote Hull Repair System I Blueprint", "27936": "Capital Remote Hull Repair Systems", "27937": "Caldari Basic Outpost Factory Platform", "27939": "Gallente Basic Outpost Factory Platform", "27941": "Minmatar Basic Outpost Factory Platform", "27944": "Guristas Citadel Torpedo Battery Blueprint", "27945": "Guristas Torpedo Battery Blueprint", "27946": "Guristas Cruise Missile Battery Blueprint", "27947": "Dread Guristas Cruise Missile Battery Blueprint", "27948": "Dread Guristas Torpedo Battery Blueprint", "27949": "Dread Guristas Citadel Torpedo Battery Blueprint", "27951": "Triage Module I", "27952": "Triage Module I Blueprint", "27957": "Caldari Outpost Factory Platform", "27959": "Caldari Advanced Outpost Factory Platform", "27961": "Amarr Basic Outpost Plant Platform", "27963": "Amarr Outpost Plant Platform", "27965": "Amarr Advanced Outpost Plant Platform", "27967": "Gallente Outpost Factory Platform", "27969": "Gallente Advanced Outpost Factory Platform", "27971": "Minmatar Outpost Factory Platform", "27973": "Minmatar Advanced Outpost Factory Platform", "27975": "Gallente Outpost Plant Platform", "27977": "Gallente Advanced Outpost Plant Platform", "27979": "Minmatar Outpost Plant Platform", "27981": "Minmatar Advanced Outpost Plant Platform", "27983": "Gallente Basic Outpost Plant Platform", "27985": "Minmatar Basic Outpost Plant Platform", "27987": "Amarr Basic Outpost Laboratory Platform", "27989": "Amarr Outpost Laboratory Platform", "27991": "Amarr Advanced Outpost Laboratory Platform", "27993": "Caldari Basic Outpost Laboratory Platform", "27995": "Caldari Outpost Laboratory Platform", "27997": "Caldari Advanced Outpost Laboratory Platform", "27999": "Caldari Basic Outpost Research Facility Platform", "28001": "Caldari Outpost Research Facility Platform", "28003": "Caldari Advanced Outpost Research Facility Platform", "28005": "Gallente Basic Outpost Laboratory Platform", "28007": "Gallente Outpost Laboratory Platform", "28009": "Gallente Advanced Outpost Laboratory Platform", "28011": "Minmatar Basic Outpost Laboratory Platform", "28013": "Minmatar Outpost Laboratory Platform", "28015": "Minmatar Advanced Outpost Laboratory Platform", "28017": "Amarr Basic Outpost Refinery Platform", "28019": "Amarr Outpost Refinery Platform", "28021": "Amarr Advanced Outpost Refinery Platform", "28023": "Caldari Basic Outpost Refinery Platform", "28025": "Caldari Outpost Refinery Platform", "28027": "Caldari Advanced Outpost Refinery Platform", "352277": "N-Type Vehicular Hardener", "28029": "Gallente Basic Outpost Refinery Platform", "28031": "Gallente Outpost Refinery Platform", "28033": "Gallente Advanced Outpost Refinery Platform", "28035": "Minmatar Basic Outpost Refinery Platform", "28037": "Minmatar Outpost Refinery Platform", "28039": "Minmatar Advanced Outpost Refinery Platform", "355720": "'Skinweave' Assault", "28041": "Amarr Basic Outpost Office Platform", "355722": "Large CA Railgun Installation", "28043": "Amarr Outpost Office Platform", "355724": "Large Missile Installation", "28045": "Amarr Advanced Outpost Office Platform", "28047": "Caldari Basic Outpost Office Platform", "28049": "Caldari Outpost Office Platform", "28051": "Caldari Advanced Outpost Office Platform", "28053": "Gallente Basic Outpost Office Platform", "28055": "Gallente Outpost Office Platform", "28057": "Gallente Advanced Outpost Office Platform", "28059": "Minmatar Basic Outpost Office Platform", "355740": "Wiyrkomi Breach Forge Gun", "28061": "Minmatar Outpost Office Platform", "355742": "'Calisto' 20GJ Neutron Blaster", "28063": "Minmatar Advanced Outpost Office Platform", "355744": "'Wraith' 80GJ Blaster", "355746": "'Oracle' 80GJ Neutron Blaster", "355747": "'Sodom' 80GJ Ion Cannon", "355748": "'Lycan' 20GJ Railgun", "355749": "'Spartan' 20GJ Particle Accelerator", "355750": "'Martyr' 20GJ Particle Cannon", "355751": "'Pariah' 80GJ Railgun", "355752": "'Mortis' 80GJ Particle Accelerator", "28073": "Bomb Deployment", "28076": "Amarr Advanced Outpost Factory", "28077": "Amarr Advanced Outpost Plant", "28078": "Amarr Advanced Outpost Laboratory", "28079": "Amarr Advanced Outpost Office", "28080": "Amarr Advanced Outpost Refinery", "28081": "Amarr Basic Outpost Factory", "28082": "Amarr Basic Outpost Plant", "28083": "Amarr Basic Outpost Laboratory", "28084": "Amarr Basic Outpost Office", "28085": "Amarr Basic Outpost Refinery", "28086": "Amarr Outpost Factory", "28087": "Amarr Outpost Plant", "28088": "Amarr Outpost Laboratory", "28089": "Amarr Outpost Office", "28090": "Amarr Outpost Refinery", "28091": "Caldari Advanced Outpost Factory", "28092": "Caldari Advanced Outpost Laboratory", "28093": "Caldari Advanced Outpost Research Facility", "28094": "Caldari Advanced Outpost Office", "28095": "Caldari Advanced Outpost Refinery", "28096": "Caldari Basic Outpost Factory", "28097": "Caldari Basic Outpost Laboratory", "28098": "Caldari Basic Outpost Research Facility", "28099": "Caldari Basic Outpost Office", "28100": "Caldari Basic Outpost Refinery", "28101": "Caldari Outpost Factory", "28102": "Caldari Outpost Laboratory", "28103": "Caldari Outpost Research Facility", "28104": "Caldari Outpost Office", "28105": "Caldari Outpost Refinery", "28106": "Gallente Advanced Outpost Factory", "28107": "Gallente Advanced Outpost Plant", "28108": "Gallente Advanced Outpost Laboratory", "28109": "Gallente Advanced Outpost Office", "28110": "Gallente Advanced Outpost Refinery", "28111": "Gallente Basic Outpost Factory", "28112": "Gallente Basic Outpost Plant", "28113": "Gallente Basic Outpost Laboratory", "28114": "Gallente Basic Outpost Office", "28115": "Gallente Basic Outpost Refinery", "28116": "Gallente Outpost Factory", "28117": "Gallente Outpost Plant", "28118": "Gallente Outpost Laboratory", "28119": "Gallente Outpost Office", "28120": "Gallente Outpost Refinery", "28121": "Minmatar Advanced Outpost Factory", "28122": "Minmatar Advanced Outpost Plant", "28123": "Minmatar Advanced Outpost Laboratory", "28124": "Minmatar Advanced Outpost Office", "28125": "Minmatar Advanced Outpost Refinery", "28126": "Minmatar Basic Outpost Factory", "28127": "Minmatar Basic Outpost Plant", "28128": "Minmatar Basic Outpost Laboratory", "28129": "Minmatar Basic Outpost Office", "28130": "Minmatar Basic Outpost Refinery", "28131": "Minmatar Outpost Factory", "28132": "Minmatar Outpost Plant", "28133": "Minmatar Outpost Laboratory", "28134": "Minmatar Outpost Office", "28135": "Minmatar Outpost Refinery", "28137": "Citizens", "355820": "Burst Heavy Machine Gun", "355821": "Assault Heavy Machine Gun", "355822": "80GJ Stabilized Blaster", "355823": "80GJ Compressed Blaster", "355824": "80GJ Stabilized Ion Cannon", "355825": "80GJ Compressed Ion Cannon", "355826": "80GJ Stabilized Neutron Blaster", "355827": "80GJ Compressed Neutron Blaster", "355828": "20GJ Stabilized Neutron Blaster", "355829": "20GJ Compressed Neutron Blaster", "355830": "20GJ Stabilized Ion Cannon", "355831": "20GJ Compressed Ion Cannon", "355832": "20GJ Stabilized Blaster", "355833": "20GJ Compressed Blaster", "355834": "80GJ Stabilized Particle Accelerator", "355835": "80GJ Compressed Particle Accelerator", "355836": "80GJ Stabilized Particle Cannon", "355837": "80GJ Compressed Particle Cannon", "355839": "80GJ Stabilized Railgun", "355840": "80GJ Compressed Railgun", "355841": "20GJ Stabilized Particle Accelerator", "355842": "20GJ Compressed Particle Accelerator", "355843": "20GJ Stabilized Particle Cannon", "28164": "Thermodynamics", "355845": "20GJ Stabilized Railgun", "355846": "20GJ Compressed Railgun", "355847": "AT-201 Missile Launcher", "355848": "AT-201 Fragmented Missile Launcher", "355849": "XT-201 Accelerated Missile Launcher", "355850": "XT-201 Fragmented Missile Launcher", "355851": "ST-201 Accelerated Missile Launcher", "355852": "ST-201 Fragmented Missile Launcher", "355853": "AT-1 Accelerated Missile Launcher", "355854": "AT-1 Fragmented Missile Launcher", "355855": "XT-1 Accelerated Missile Launcher", "355856": "XT-1 Fragmented Missile Launcher", "355857": "ST-1 Accelerated Missile Launcher", "355858": "ST-1 Fragmented Missile Launcher", "355859": "Six Kin Burst Heavy Machine Gun", "355860": "Freedom Assault Heavy Machine Gun", "355861": "MLR-A Burst Heavy Machine Gun", "355862": "MO-4 Assault Heavy Machine Gun", "28183": "Rank 1 Upgrade", "28184": "Rank 2 Upgrade", "28185": "Rank 3 Upgrade", "355866": "80GJ Scattered Neutron Blaster", "355867": "80GJ Scattered Ion Cannon", "355868": "80GJ Scattered Blaster", "355869": "20GJ Scattered Neutron Blaster", "28190": "MicroLink Encoder/Decoder", "355871": "20GJ Scattered Blaster", "355872": "80GJ Regulated Particle Accelerator", "355873": "80GJ Regulated Particle Cannon", "355874": "80GJ Regulated Railgun", "355875": "20GJ Regulated Particle Accelerator", "355876": "20GJ Regulated Particle Cannon", "28197": "Heavy Armor Maintenance Bot II", "28198": "Heavy Armor Maintenance Bot II Blueprint", "28199": "Heavy Shield Maintenance Bot II", "28200": "Heavy Shield Maintenance Bot II Blueprint", "28201": "Light Armor Maintenance Bot II", "28202": "Light Armor Maintenance Bot II Blueprint", "28203": "Light Shield Maintenance Bot II", "28204": "Light Shield Maintenance Bot II Blueprint", "28205": "Medium Armor Maintenance Bot II", "28206": "Medium Armor Maintenance Bot II Blueprint", "28207": "Medium Shield Maintenance Bot II", "28208": "Medium Shield Maintenance Bot II Blueprint", "28209": "Warden II", "28210": "Warden II Blueprint", "28211": "Garde II", "28212": "Garde II Blueprint", "28213": "Curator II", "28214": "Curator II Blueprint", "28215": "Bouncer II", "28216": "Bouncer II Blueprint", "355897": "HP Muon Coil Bolt Array I", "355898": "Light Payload Control System I", "355903": "LP Cross-Linked Bolt Array I", "355904": "Light Payload Control System II", "355905": "LP Muon Coil Bolt Array I", "355906": "Systemic Ballistic Control System I", "355908": "Systemic Bolt Array I", "355909": "Systemic Ballistic Control System II", "355910": "Systemic 'Pandemonium' Ballistic Enhancement", "28231": "Republic Fleet Navy Rear-Admiral Insignia", "28236": "Federation Navy Fleet Rear-Admiral Insignia", "28237": "Caldari Navy Fleet Rear-Admiral Insignia", "28238": "Imperial Navy Fleet Rear-Admiral Insignia", "355927": "Militia Ballistic Control I", "355928": "Active Heat Sink I", "355929": "Azeotripic Coolant Pump", "355930": "Active Heat Sink II", "355931": "Gadolinium Array", "355932": "Systems Hacking", "28256": "Alliance Tournament Cup", "28257": "Alliance Tournament Gold Medal", "28260": "Zbikoki's Hacker Card", "2032": "Cap Recharger II", "28262": "'Integrated' Acolyte", "28263": "'Integrated' Acolyte Blueprint", "28264": "'Augmented' Acolyte", "28265": "'Augmented' Acolyte Blueprint", "28266": "'Integrated' Berserker", "28267": "'Integrated' Berserker Blueprint", "28268": "'Augmented' Berserker", "28269": "'Augmented' Berserker Blueprint", "28270": "'Integrated' Hammerhead", "28271": "'Integrated' Hammerhead Blueprint", "28272": "'Augmented' Hammerhead", "28273": "'Augmented' Hammerhead Blueprint", "28274": "'Integrated' Hobgoblin", "28275": "'Integrated' Hobgoblin Blueprint", "28276": "'Augmented' Hobgoblin", "28277": "'Augmented' Hobgoblin Blueprint", "28278": "'Integrated' Hornet", "28279": "'Integrated' Hornet Blueprint", "28280": "'Augmented' Hornet", "28281": "'Augmented' Hornet Blueprint", "28282": "'Integrated' Infiltrator", "28283": "'Integrated' Infiltrator Blueprint", "28284": "'Augmented' Infiltrator", "28285": "'Augmented' Infiltrator Blueprint", "28286": "'Integrated' Ogre", "28287": "'Integrated' Ogre Blueprint", "28288": "'Augmented' Ogre", "28289": "'Augmented' Ogre Blueprint", "28290": "'Integrated' Praetor", "28291": "'Integrated' Praetor Blueprint", "28292": "'Augmented' Praetor", "28293": "'Augmented' Praetor Blueprint", "28294": "'Integrated' Valkyrie", "28295": "'Integrated' Valkyrie Blueprint", "28296": "'Augmented' Valkyrie", "28297": "'Augmented' Valkyrie Blueprint", "28298": "'Integrated' Vespa", "28299": "'Integrated' Vespa Blueprint", "28300": "'Augmented' Vespa", "28301": "'Augmented' Vespa Blueprint", "28302": "'Integrated' Warrior", "28303": "'Integrated' Warrior Blueprint", "28304": "'Augmented' Warrior", "28305": "'Augmented' Warrior Blueprint", "28306": "'Integrated' Wasp", "28307": "'Integrated' Wasp Blueprint", "28308": "'Augmented' Wasp", "28309": "'Augmented' Wasp Blueprint", "355994": "Balac's GAR-21 Assault Rifle", "28320": "Basic Freedom Program ", "28324": "Republic Fleet Carbonized Lead L", "28326": "Republic Fleet Carbonized Lead M", "28328": "Republic Fleet Carbonized Lead S", "28330": "Republic Fleet Carbonized Lead XL", "28332": "Republic Fleet Depleted Uranium L", "28334": "Republic Fleet Depleted Uranium M", "356015": "'Primordial' Militia Assault", "28336": "Republic Fleet Depleted Uranium S", "28338": "Republic Fleet Depleted Uranium XL", "356020": "'Thale' Militia Scout", "356022": "'Fossil' Militia Logistics", "356023": "'Eon' Militia Heavy", "356024": "'Venom' Militia Heavy", "28351": "Advanced Mobile Laboratory", "28352": "Rorqual", "28353": "Rorqual Blueprint", "356034": "'Eon' Heavy Type-I", "356035": "'Venom' Heavy Type-I", "356037": "'Sever' Logistics Type-I", "356038": "'Fossil' Logistics Type-I", "28359": "Alliance Tournament Silver Medal", "28360": "Alliance Tournament Bronze Medal", "28361": "Drone Synaptic Relay Wiring", "28362": "Drone Capillary Fluid", "28363": "Drone Cerebral Fragment", "28364": "Drone Tactical Limb", "28365": "Drone Epidermal Shielding Chunk", "28366": "Drone Coronary Unit", "28367": "Compressed Arkonor", "28368": "Compressed Arkonor Blueprint", "356050": "Wolfman's PCP-30 Scrambler Pistol", "356052": "Gastun's MIN-7 HMG", "356053": "'Quafe' Assault Type-I", "28374": "Capital Industrial Ships", "28375": "Republic Fleet Heavy Assault Missile Launcher", "28376": "Republic Fleet Heavy Assault Missile Launcher Blueprint", "28377": "Caldari Navy Heavy Assault Missile Launcher", "28378": "Caldari Navy Heavy Assault Missile Launcher Blueprint", "28379": "Domination Heavy Assault Missile Launcher", "28381": "Dread Guristas Heavy Assault Missile Launcher", "28383": "True Sansha Heavy Assault Missile Launcher", "28385": "Compressed Crimson Arkonor", "28386": "Compressed Crimson Arkonor Blueprint", "28387": "Compressed Prime Arkonor", "28388": "Compressed Bistot", "28389": "Compressed Monoclinic Bistot", "28390": "Compressed Triclinic Bistot", "28391": "Compressed Crokite", "28392": "Compressed Crystalline Crokite", "28393": "Compressed Sharp Crokite", "28394": "Compressed Dark Ochre", "28395": "Compressed Obsidian Ochre", "28396": "Compressed Onyx Ochre", "28397": "Compressed Gneiss", "28398": "Compressed Iridescent Gneiss", "28399": "Compressed Prismatic Gneiss", "28400": "Compressed Glazed Hedbergite", "28401": "Compressed Hedbergite", "28402": "Compressed Vitric Hedbergite", "28403": "Compressed Hemorphite", "28404": "Compressed Radiant Hemorphite", "28405": "Compressed Vivid Hemorphite", "28406": "Compressed Jaspet", "28407": "Compressed Pristine Jaspet", "28408": "Compressed Pure Jaspet", "28409": "Compressed Fiery Kernite", "28410": "Compressed Kernite", "28411": "Compressed Luminous Kernite", "28412": "Compressed Magma Mercoxit", "28413": "Compressed Mercoxit", "28414": "Compressed Vitreous Mercoxit", "28415": "Compressed Golden Omber", "28416": "Compressed Omber", "28417": "Compressed Silvery Omber", "28418": "Compressed Bright Spodumain", "28419": "Compressed Gleaming Spodumain", "28420": "Compressed Spodumain", "28421": "Compressed Azure Plagioclase", "28422": "Compressed Plagioclase", "28423": "Compressed Rich Plagioclase", "28424": "Compressed Pyroxeres", "28425": "Compressed Solid Pyroxeres", "28426": "Compressed Viscous Pyroxeres", "28427": "Compressed Condensed Scordite", "28428": "Compressed Massive Scordite", "28429": "Compressed Scordite", "28430": "Compressed Concentrated Veldspar", "28431": "Compressed Dense Veldspar", "28432": "Compressed Veldspar", "28433": "Compressed Blue Ice", "28434": "Compressed Clear Icicle", "28435": "Compressed Dark Glitter", "28436": "Compressed Enriched Clear Icicle", "28437": "Compressed Gelidus", "28438": "Compressed Glacial Mass", "28439": "Compressed Glare Crust", "28440": "Compressed Krystallos", "28441": "Compressed Pristine White Glaze", "28442": "Compressed Smooth Glacial Mass", "28443": "Compressed Thick Blue Ice", "28444": "Compressed White Glaze", "28448": "Compressed Prime Arkonor Blueprint", "28449": "Compressed Bistot Blueprint", "28450": "Compressed Monoclinic Bistot Blueprint", "28451": "Compressed Triclinic Bistot Blueprint", "28452": "Compressed Crokite Blueprint", "28453": "Compressed Crystalline Crokite Blueprint", "28454": "Compressed Sharp Crokite Blueprint", "28455": "Compressed Dark Ochre Blueprint", "28456": "Compressed Obsidian Ochre Blueprint", "28457": "Compressed Onyx Ochre Blueprint", "28458": "Compressed Gneiss Blueprint", "28459": "Compressed Iridescent Gneiss Blueprint", "28460": "Compressed Prismatic Gneiss Blueprint", "28461": "Compressed Hedbergite Blueprint", "28462": "Compressed Glazed Hedbergite Blueprint", "28463": "Compressed Vitric Hedbergite Blueprint", "28464": "Compressed Hemorphite Blueprint", "28465": "Compressed Radiant Hemorphite Blueprint", "28466": "Compressed Vivid Hemorphite Blueprint", "28467": "Compressed Jaspet Blueprint", "28468": "Compressed Pristine Jaspet Blueprint", "28469": "Compressed Pure Jaspet Blueprint", "28470": "Compressed Kernite Blueprint", "28471": "Compressed Fiery Kernite Blueprint", "28472": "Compressed Luminous Kernite Blueprint", "28473": "Compressed Magma Mercoxit Blueprint", "28474": "Compressed Mercoxit Blueprint", "28475": "Compressed Vitreous Mercoxit Blueprint", "28476": "Compressed Omber Blueprint", "28477": "Compressed Golden Omber Blueprint", "28478": "Compressed Silvery Omber Blueprint", "28479": "Compressed Azure Plagioclase Blueprint", "28480": "Compressed Plagioclase Blueprint", "28481": "Compressed Rich Plagioclase Blueprint", "28482": "Compressed Pyroxeres Blueprint", "28483": "Compressed Solid Pyroxeres Blueprint", "28484": "Compressed Viscous Pyroxeres Blueprint", "28485": "Compressed Condensed Scordite Blueprint", "28486": "Compressed Massive Scordite Blueprint", "28487": "Compressed Scordite Blueprint", "28488": "Compressed Bright Spodumain Blueprint", "28489": "Compressed Gleaming Spodumain Blueprint", "28490": "Compressed Spodumain Blueprint", "28491": "Compressed Concentrated Veldspar Blueprint", "28492": "Compressed Dense Veldspar Blueprint", "28493": "Compressed Veldspar Blueprint", "28494": "Compressed Blue Ice Blueprint", "28495": "Compressed Clear Icicle Blueprint", "28496": "Compressed Dark Glitter Blueprint", "28497": "Compressed Enriched Clear Icicle Blueprint", "28498": "Compressed Gelidus Blueprint", "28499": "Compressed Glacial Mass Blueprint", "28500": "Compressed Glare Crust Blueprint", "28501": "Compressed Krystallos Blueprint", "28502": "Compressed Pristine White Glaze Blueprint", "28503": "Compressed Smooth Glacial Mass Blueprint", "28504": "Compressed Thick Blue Ice Blueprint", "28505": "Compressed White Glaze Blueprint", "28511": "Khanid Navy Rocket Launcher", "28512": "Khanid Navy Rocket Launcher Blueprint", "28513": "Khanid Navy Torpedo Launcher", "28514": "Khanid Navy Stasis Webifier", "28515": "Khanid Navy Stasis Webifier Blueprint", "28516": "Khanid Navy Warp Disruptor", "28517": "Khanid Navy Warp Disruptor Blueprint", "28518": "Khanid Navy Warp Scrambler", "28519": "Khanid Navy Warp Scrambler Blueprint", "28520": "Khanid Navy Adaptive Nano Plating", "28521": "Khanid Navy Adaptive Nano Plating Blueprint", "28522": "Khanid Navy Armor EM Hardener", "28523": "Khanid Navy Armor EM Hardener Blueprint", "28524": "Khanid Navy Armor Explosive Hardener", "28525": "Khanid Navy Armor Explosive Hardener Blueprint", "28526": "Khanid Navy Armor Kinetic Hardener", "28527": "Khanid Navy Armor Kinetic Hardener Blueprint", "28528": "Khanid Navy Armor Thermic Hardener", "28529": "Khanid Navy Armor Thermic Hardener Blueprint", "28530": "Khanid Navy Cap Recharger", "28531": "Khanid Navy Cap Recharger Blueprint", "28532": "Khanid Navy Capacitor Power Relay", "28533": "Khanid Navy Capacitor Power Relay Blueprint", "28534": "Khanid Navy Energized Adaptive Nano Membrane", "28535": "Khanid Navy Energized Adaptive Nano Membrane Blueprint", "28536": "Khanid Navy Energized Kinetic Membrane", "28537": "Khanid Navy Energized Kinetic Membrane Blueprint", "28538": "Khanid Navy Energized Explosive Membrane", "28539": "Khanid Navy Energized Explosive Membrane Blueprint", "28540": "Khanid Navy Energized EM Membrane", "28541": "Khanid Navy Energized EM Membrane Blueprint", "28542": "Khanid Navy Energized Thermic Membrane", "28543": "Khanid Navy Energized Thermic Membrane Blueprint", "28544": "Khanid Navy Large Armor Repairer", "28545": "Khanid Navy Large EMP Smartbomb", "28546": "Khanid Navy Large EMP Smartbomb Blueprint", "28547": "Khanid Navy Kinetic Plating", "28548": "Khanid Navy Magnetic Plating Blueprint", "28549": "Khanid Navy Medium Armor Repairer", "28550": "Khanid Navy Medium EMP Smartbomb", "28551": "Khanid Navy Medium EMP Smartbomb Blueprint", "28552": "Khanid Navy Explosive Plating", "28553": "Khanid Navy Reactive Plating Blueprint", "28554": "Khanid Navy EM Plating", "28555": "Khanid Navy Reflective Plating Blueprint", "28556": "Khanid Navy Small Armor Repairer", "28557": "Khanid Navy Small EMP Smartbomb", "28559": "Khanid Navy Thermic Plating", "28560": "Khanid Navy Thermic Plating Blueprint", "28561": "Khanid Navy Co-Processor", "28562": "Khanid Navy Co-Processor Blueprint", "28563": "Khanid Navy Ballistic Control System", "28564": "Khanid Navy Ballistic Control System Blueprint", "28565": "Khanid Navy Heavy Assault Missile Launcher", "28566": "Khanid Navy Heavy Assault Missile Launcher Blueprint", "28576": "Mining Laser Upgrade II", "28577": "Mining Laser Upgrade II Blueprint", "28578": "Ice Harvester Upgrade II", "28579": "Ice Harvester Upgrade II Blueprint", "28583": "Industrial Core I", "28584": "Industrial Core I Blueprint", "28585": "Industrial Reconfiguration", "2043": "Ore Prospecting Array 4", "353387": "Caldari HAV", "28605": "Advanced Mobile Laboratory Blueprint", "28606": "Orca", "28607": "Orca Blueprint", "28609": "Heavy Interdictors", "28615": "Electronic Attack Ships", "28617": "Banidine", "28618": "Augumene", "28619": "Mercium", "28620": "Lyavite", "28621": "Pithix", "28622": "Green Arisite", "28623": "Oeryl", "28624": "Geodite", "28625": "Polygypsum", "28626": "Zuthrine", "28627": "Azure Ice", "28628": "Crystalline Icicle", "28629": "Gamboge Cytoserocin", "28630": "Chartreuse Cytoserocin", "356322": "Null Cannon", "28646": "Covert Cynosural Field Generator I", "28647": "Covert Cynosural Field Generator I Blueprint", "356331": "Anti-MCC Turret", "28652": "Covert Jump Portal Generator I", "28653": "Covert Jump Portal Generator I Blueprint", "28654": "Warp Disruption Field Generator I", "28655": "Warp Disruption Field Generator I Blueprint", "28656": "Black Ops", "356337": "Null Cannon", "28659": "Paladin", "28660": "Paladin Blueprint", "28661": "Kronos", "28662": "Kronos Blueprint", "28665": "Vargur", "28666": "Vargur Blueprint", "28667": "Marauders", "28668": "Nanite Repair Paste", "28670": "Synth Blue Pill Booster", "28671": "Synth Blue Pill Booster Blueprint", "28672": "Synth Crash Booster", "28673": "Synth Crash Booster Blueprint", "28674": "Synth Drop Booster", "28675": "Synth Drop Booster Blueprint", "28676": "Synth Exile Booster", "28677": "Synth Exile Booster Blueprint", "28678": "Synth Frentix Booster", "28679": "Synth Frentix Booster Blueprint", "28680": "Synth Mindflood Booster", "28681": "Synth Mindflood Booster Blueprint", "28682": "Synth X-Instinct Booster", "28683": "Synth X-Instinct Booster Blueprint", "28684": "Synth Sooth Sayer Booster", "28685": "Synth Sooth Sayer Booster Blueprint", "28686": "Pure Synth Blue Pill Booster", "28687": "Pure Synth Crash Booster", "28688": "Pure Synth Drop Booster", "28689": "Pure Synth Exile Booster", "28690": "Pure Synth Frentix Booster", "28691": "Pure Synth Mindflood Booster", "28692": "Pure Synth Sooth Sayer Booster", "28693": "Pure Synth X-Instinct Booster", "28694": "Amber Mykoserocin", "28695": "Azure Mykoserocin", "28696": "Celadon Mykoserocin", "28697": "Golden Mykoserocin", "28698": "Lime Mykoserocin", "28699": "Malachite Mykoserocin", "28700": "Vermillion Mykoserocin", "28701": "Viridian Mykoserocin", "28702": "Synth Blue Pill Booster Reaction", "28703": "Synth Crash Booster Reaction", "28704": "Synth Drop Booster Reaction", "28705": "Synth Exile Booster Reaction", "28706": "Synth Frentix Booster Reaction", "28707": "Synth Mindflood Booster Reaction", "28708": "Synth Sooth Sayer Booster Reaction", "28709": "Synth X-Instinct Booster Reaction", "28710": "Golem", "28711": "Golem Blueprint", "356393": "[DEV] Homing Flaylock Pistol", "355679": "[DEV] Scrambler Rifle", "28729": "Legion ECM Ion Field Projector", "28731": "Legion ECM Multispectral Jammer", "28733": "Legion ECM Phase Inverter", "28735": "Legion ECM Spatial Destabilizer", "28737": "Legion ECM White Noise Generator", "28739": "Thukker Power Diagnostic System", "28740": "Thukker Micro Auxiliary Power Core", "28742": "Thukker Small Shield Extender", "28744": "Thukker Large Shield Extender", "28746": "Thukker Medium Shield Extender", "28748": "ORE Deep Core Mining Laser", "28750": "ORE Miner", "28752": "ORE Ice Harvester", "28754": "ORE Strip Miner", "28756": "Sisters Expanded Probe Launcher", "28758": "Sisters Core Probe Launcher", "28770": "Syndicate Mobile Large Warp Disruptor", "28772": "Syndicate Mobile Medium Warp Disruptor", "28774": "Syndicate Mobile Small Warp Disruptor", "28776": "Syndicate Reactor Control Unit", "28778": "Syndicate 100mm Reinforced Steel Plates", "356459": "Surya Classic", "28780": "Syndicate 1600mm Reinforced Steel Plates", "28782": "Syndicate 200mm Reinforced Steel Plates", "28784": "Syndicate 400mm Reinforced Steel Plates", "28786": "Syndicate 800mm Reinforced Steel Plates", "28788": "Syndicate Gas Cloud Harvester", "28790": "Low-grade Centurion Alpha", "28791": "Low-grade Centurion Beta", "28792": "Low-grade Centurion Delta", "28793": "Low-grade Centurion Epsilon", "28794": "Low-grade Centurion Gamma", "28795": "Low-grade Centurion Omega", "28796": "Low-grade Nomad Alpha", "28797": "Low-grade Nomad Beta", "28798": "Low-grade Nomad Delta", "28799": "Low-grade Nomad Epsilon", "28800": "Low-grade Nomad Gamma", "28801": "Low-grade Nomad Omega", "28802": "Low-grade Harvest Alpha", "28803": "Low-grade Harvest Beta", "28804": "Low-grade Harvest Delta", "28805": "Low-grade Harvest Epsilon", "28806": "Low-grade Harvest Gamma", "28807": "Low-grade Harvest Omega", "28808": "Low-grade Virtue Alpha", "28809": "Low-grade Virtue Beta", "28810": "Low-grade Virtue Delta", "28811": "Low-grade Virtue Epsilon", "28812": "Low-grade Virtue Gamma", "28813": "Low-grade Virtue Omega", "28814": "Low-grade Edge Alpha", "28815": "Low-grade Edge Beta", "28816": "Low-grade Edge Delta", "28817": "Low-grade Edge Epsilon", "28818": "Low-grade Edge Gamma", "28819": "Low-grade Edge Omega", "356500": "Zeta-Nought Tracking Mode", "28827": "Encrypted Data Crystals", "28828": "Quafe Unleashed formula", "28829": "Ancient Amarrian Relic", "28830": "Brutor Tribe Roster", "28832": "Stranded Pilot", "28833": "Ishukone Corporate Records", "28834": "Federation Court Logs", "28835": "Professor Kajurei Delainen", "28836": "Letters of Bishop Dalamaid", "28837": "Achuran White Song Birds", "28838": "Armor of Rouvenor", "352304": "Militia 20GJ Railgun", "28840": "Magic Crystal Ball", "28842": "Amarr Sympathizer", "28843": "Altered Datacore - Mechanical Engineering", "28844": "Rhea", "28845": "Rhea Blueprint", "28846": "Nomad", "28847": "Nomad Blueprint", "28848": "Anshar", "28849": "Anshar Blueprint", "28850": "Ark", "28851": "Ark Blueprint", "28865": "Hive Mind CPU", "28866": "Rogue Drone A.I. Core", "28867": "Inexplicable Drone Junk", "28868": "Small Warded Container", "28869": "Amarrian Double-Agent", "28870": "AIMEDs", "28879": "Nanite Operation", "28880": "Nanite Interfacing", "356562": "Advanced Precision Enhancer", "356563": "Complex Precision Enhancer", "356564": "'Visio' Basic Precision Enhancer", "356565": "'Diaemus' Enhanced Precision Enhancer", "28886": "Prisoner", "356567": "Enhanced Range Amplifier", "356569": "Heavy B-Series", "356570": "Heavy vk.1", "356571": "Logistics B-Series", "356572": "Logistics vk.1", "28896": "Router Encryption Key", "28897": "Food-Borne Toxin", "356590": "Kinetic Energy Recovery System", "356591": "Fusion Accelerator", "356593": "Extended Shield Hardener", "356594": "'Surge' Shield Reinforcement", "356335": "Null Cannon", "356617": "'Neo' Assault A-Series", "356618": "'Neo' Assault vk.0", "356619": "'Neo' Assault Type-I", "356620": "'Neo' Scout A-Series", "356621": "'Neo' Scout vk.0", "356622": "''Neo' Scout Type-I", "356623": "'Neo' Heavy A-Series", "356624": "'Neo' Heavy vk.0", "356625": "'Neo' Heavy Type-I", "356626": "'Neo' Logistics A-Series", "356627": "'Neo' Logistics vk.0", "356628": "'Neo' Logistics Type-I", "356629": "Militia Codebreaker", "356630": "ZN-28 Nova Knives", "356632": "Ishukone Nova Knives", "28972": "Cryogenic Stasis Capsule", "28973": "Dem's Galactical Botanical", "28974": "Vaccines", "28975": "Cargo Manifest", "356656": "Stormguard", "356657": "Infiltrator", "356658": "Nova Knife Operation", "28995": "Prop Comedian", "28996": "Fraudulent Pax Amarria", "28999": "Optimal Range Script", "29000": "Optimal Range Script Blueprint", "29001": "Tracking Speed Script", "29002": "Tracking Speed Script Blueprint", "29003": "Focused Warp Disruption Script", "29004": "Focused Warp Disruption Script Blueprint", "29005": "Optimal Range Disruption Script", "29006": "Optimal Range Disruption Script Blueprint", "29007": "Tracking Speed Disruption Script", "29008": "Tracking Speed Disruption Script Blueprint", "29009": "Targeting Range Script", "29010": "Targeting Range Script Blueprint", "29011": "Scan Resolution Script", "29012": "Scan Resolution Script Blueprint", "29013": "Scan Resolution Dampening Script", "29014": "Scan Resolution Dampening Script Blueprint", "29015": "Targeting Range Dampening Script", "29016": "Targeting Range Dampening Script Blueprint", "356701": "Nova Knife Proficiency", "356703": "'Oculus' Basic Range Amplifier", "356704": "'Ultrasonic' Enhanced Range Amplifier", "356705": "'Sjon' Complex Range Amplifer", "29026": "Insta-Lock", "356707": "Complex Range Amplifier", "356708": "Militia Precision Enhancer", "29029": "Jump Freighters", "356710": "CreoDron Active Scanner", "356711": "Militia Range Amplifier", "29039": "Capital Antimatter Reactor Unit", "29040": "Capital Antimatter Reactor Unit Blueprint", "29041": "Capital Crystalline Carbonide Armor Plate", "29042": "Capital Crystalline Carbonide Armor Plate Blueprint", "29043": "Capital Deflection Shield Emitter", "29044": "Capital Deflection Shield Emitter Blueprint", "29045": "Capital Electrolytic Capacitor Unit", "29046": "Capital Electrolytic Capacitor Unit Blueprint", "29047": "Capital EM Pulse Generator", "29048": "Capital EM Pulse Generator Blueprint", "29049": "Capital Fernite Carbide Composite Armor Plate", "29050": "Capital Fernite Carbide Composite Armor Plate Blueprint", "29051": "Capital Fusion Reactor Unit", "29052": "Capital Fusion Reactor Unit Blueprint", "29053": "Capital Fusion Thruster", "29054": "Capital Fusion Thruster Blueprint", "29055": "Capital Gravimetric Sensor Cluster", "29056": "Capital Gravimetric Sensor Cluster Blueprint", "29057": "Capital Graviton Pulse Generator", "29058": "Capital Graviton Pulse Generator Blueprint", "29059": "Capital Graviton Reactor Unit", "29060": "Capital Graviton Reactor Unit Blueprint", "29061": "Capital Ion Thruster", "29062": "Capital Ion Thruster Blueprint", "29063": "Capital Laser Focusing Crystals", "29064": "Capital Laser Focusing Crystals Blueprint", "29065": "Capital Ladar Sensor Cluster", "29066": "Capital Ladar Sensor Cluster Blueprint", "29067": "Capital Linear Shield Emitter", "29068": "Capital Linear Shield Emitter Blueprint", "29069": "Capital Magnetometric Sensor Cluster", "29070": "Capital Magnetometric Sensor Cluster Blueprint", "29071": "Capital Magpulse Thruster", "29072": "Capital Magpulse Thruster Blueprint", "29073": "Capital Nanoelectrical Microprocessor", "29074": "Capital Nanoelectrical Microprocessor Blueprint", "29075": "Capital Nanomechanical Microprocessor", "29076": "Capital Nanomechanical Microprocessor Blueprint", "29077": "Capital Nuclear Pulse Generator", "29078": "Capital Nuclear Pulse Generator Blueprint", "29079": "Capital Nuclear Reactor Unit", "29080": "Capital Nuclear Reactor Unit Blueprint", "29081": "Capital Oscillator Capacitor Unit", "29082": "Capital Oscillator Capacitor Unit Blueprint", "29083": "Capital Particle Accelerator Unit", "29084": "Capital Particle Accelerator Unit Blueprint", "29085": "Capital Photon Microprocessor", "29086": "Capital Photon Microprocessor Blueprint", "29087": "Capital Plasma Pulse Generator", "29088": "Capital Plasma Pulse Generator Blueprint", "29089": "Capital Plasma Thruster", "29090": "Capital Plasma Thruster Blueprint", "29091": "Capital Pulse Shield Emitter", "29092": "Capital Pulse Shield Emitter Blueprint", "29093": "Capital Quantum Microprocessor", "29094": "Capital Quantum Microprocessor Blueprint", "29095": "Capital Radar Sensor Cluster", "29096": "Capital Radar Sensor Cluster Blueprint", "29097": "Capital Scalar Capacitor Unit", "29098": "Capital Scalar Capacitor Unit Blueprint", "29099": "Capital Superconductor Rails", "29100": "Capital Superconductor Rails Blueprint", "29101": "Capital Sustained Shield Emitter", "29102": "Capital Sustained Shield Emitter Blueprint", "29103": "Capital Tesseract Capacitor Unit", "29104": "Capital Tesseract Capacitor Unit Blueprint", "29105": "Capital Thermonuclear Trigger Unit", "29106": "Capital Thermonuclear Trigger Unit Blueprint", "29107": "Capital Titanium Diborite Armor Plate", "29108": "Capital Titanium Diborite Armor Plate Blueprint", "29109": "Capital Tungsten Carbide Armor Plate", "29110": "Capital Tungsten Carbide Armor Plate Blueprint", "356791": "Militia Kinetic Catalyzer Blueprint", "356792": "Militia Cardiac Regulator Blueprint", "356793": "Militia Codebreaker Blueprint", "356794": "Militia CPU Upgrade Blueprint", "356795": "Militia Precision Enhancer Blueprint", "356796": "Militia Profile Dampener Blueprint", "356797": "Militia Range Amplifier Blueprint", "356798": "Militia PG Upgrade Blueprint", "356799": "Militia Shield Extender Blueprint", "356800": "Militia Shield Recharger Blueprint", "356801": "Militia Shield Regulator Blueprint", "356802": "Militia Heavy Damage Modifier Blueprint", "356803": "Militia Light Damage Modifier Blueprint", "356804": "Militia Sidearm Damage Modifier Blueprint", "356805": "Militia Myofibril Stimulant Blueprint", "29137": "Caldari Traitor's DNA", "356819": "K-2 Nanohive", "356827": "'Dren' Assault Type-I", "29148": "Corpse Female", "356829": "'Dren' Logistics Type-I", "29150": "Encrypted Ship Log", "356831": "'Dren' Shotgun", "356833": "'Dren' Swarm Launcher", "356835": "'Dren' Scrambler Pistol", "356837": "'Dren' Assault Rifle", "356839": "'Covenant' Sniper Rifle", "356840": "'Covenant' Assault Type-I", "356841": "Ishukone Watch Saga", "29162": "Privateer Commander's Head", "356843": "Militia Drop Uplink Blueprint", "356844": "Militia Nanohive Blueprint", "356845": "Militia Repair Tool Blueprint", "356846": "Militia Nanite Injector Blueprint", "356847": "Militia Locus Grenade Blueprint", "356848": "Militia Assault Rifle Blueprint", "356849": "Militia Submachine Gun Blueprint", "356850": "Militia Sniper Rifle Blueprint", "356851": "Militia Swarm Launcher Blueprint", "356852": "Militia Scrambler Pistol Blueprint", "356853": "Militia Shotgun Blueprint", "356854": "Militia Armor Repair Unit Blueprint", "356855": "Militia Heavy Armor Repair Unit Blueprint", "356857": "Militia 120mm Reinforced Steel Plates Blueprint", "356858": "Militia 180mm Reinforced Steel Plates Blueprint", "356859": "Militia 60mm Reinforced Steel Plates Blueprint", "356860": "Militia Shield Booster Blueprint", "356861": "Militia Heavy Shield Booster Blueprint", "356862": "Militia Shield Extender Blueprint", "356863": "Militia Heavy Shield Extender Blueprint", "356864": "Militia Shield Regenerator Blueprint", "29185": "Tactical Information I", "29186": "Tactical Information II", "29187": "Tactical Information III", "29188": "Tactical Information IV", "356869": "Militia Power Diagnostic System Blueprint", "356870": "Militia Powergrid Expansion Unit Blueprint", "29191": "Survivor", "356872": "Gorgon", "29193": "Electronic Effect Beacon", "356874": "Soma", "356875": "Onikuma", "356876": "Baloch", "356877": "F/45 Remote Explosive", "356878": "Boundless Remote Explosive", "29202": "Modified Augumene Antidote", "29203": "Minmatar DNA", "29204": "Modified Augumene Antidote Blueprint", "29205": "Corporations for the Rest of Us", "29206": "Device", "29211": "Faulty Suntendi Virtu-Real Implant", "29216": "Heiress", "29217": "Hard Currency", "29219": "Miniature Slaver", "356900": "'Acolyth' A-86 Active Scanner", "356901": "'Cirrus' CreoDron Active Scanner", "29226": "Basic Robotics", "29227": "Basic Robotics Blueprint", "29229": "Amarr Diplomat", "356913": "'Exile' Assault Rifle", "356914": "'Syndicate' Submachine Gun", "356918": "'Eclipse' Active Scanner", "356925": "Sniper Rifle [Experimental]", "29246": "Corpse of Enlil Bel", "29248": "Magnate", "29249": "Magnate Blueprint", "29253": "Political Envoy", "29263": "Geeral Tash-Murkon", "29266": "Apotheosis", "29267": "Apotheosis Blueprint", "29269": "Major's Son", "29272": "Air Show Entrance Badge", "29278": "Physical Samples", "29283": "Troubled Miner", "29284": "Central Data Core", "29285": "Insorum Components", "29294": "Smugglers", "29321": "Broken Mining Equipment", "357007": "[TEST] Drone Hive 2", "357008": "Drone Hive - Lvl.3", "357009": "[TEST] Drone Hive 2", "357011": "Compact Nanohive", "29336": "Scythe Fleet Issue", "29337": "Augoror Navy Issue", "29338": "Augoror Navy Issue Blueprint", "29339": "Scythe Fleet Issue Blueprint", "29340": "Osprey Navy Issue", "29341": "Osprey Navy Issue Blueprint", "29344": "Exequror Navy Issue", "29345": "Exequror Navy Issue Blueprint", "353283": "Basic Cardiac Regulator", "29439": "Admiral Meledier ", "29447": "Gallente Politician", "29464": "Runaway Daughter", "29470": "Starcakes", "29471": "Ancient Painblade", "29472": "Ceremonial Brush", "29473": "Medicinal Herbs", "29474": "Singing Staff", "29475": "Intaki Clackers", "29476": "Folkloric Painting", "29477": "Number Box", "29478": "Traditional Board Game", "29479": "Firecrackers", "29480": "Antique Vheriokor Statue", "29481": "Ghalen Pastries", "29482": "Ghalen Dumplings", "29483": "Zydrine Wine", "29484": "Zydrine Burn", "29485": "Kuashi", "29489": "Fugitive Slaves", "29494": "Large Unstable Wormhole", "29504": "OP Insecticide", "3165": "Zainou 'Snapshot' Heavy Missiles HM-702", "29531": "Old Map", "353284": "Enhanced Cardiac Regulator", "29607": "Gallentean Viral Agent", "29613": "Large Ship Assembly Array", "29614": "Brutor Workers", "29616": "Guristas Nova Citadel Torpedo", "29618": "Guristas Inferno Citadel Torpedo", "29620": "Guristas Scourge Citadel Torpedo", "29622": "Guristas Mjolnir Citadel Torpedo", "355685": "[DEV] Imperial Scrambler Rifle", "29637": "Industrial Command Ships", "29640": "Unrefined Hyperflurite Reaction", "29641": "Unrefined Ferrofluid Reaction", "29642": "Unrefined Prometium Reaction", "29643": "Unrefined Neo Mercurite Reaction", "29644": "Unrefined Dysporite Reaction", "29645": "Unrefined Fluxed Condensates Reaction", "29659": "Unrefined Fluxed Condensates", "29660": "Unrefined Dysporite", "29661": "Unrefined Neo Mercurite", "29662": "Unrefined Prometium", "29663": "Unrefined Ferrofluid", "29664": "Unrefined Hyperflurite", "29668": "30 Day Pilot's License Extension (PLEX)", "3171": "Light Ion Blaster II Blueprint", "29932": "Sareko's Capsule", "29933": "Victor Emblem", "29934": "Splinter Bodyguard", "29935": "Cartel Holovids", "29936": "Accounting Records", "29937": "Inquest Drone", "29938": "Cipher Router", "29939": "Ottin Holoreels Case", "29940": "Advisory Notes", "29941": "Dysfunctional Fluid Router", "29942": "Research Data Fragment", "29943": "Demographic Analyses", "29944": "Ardorele Heirloom", "29945": "Network Decryption Analyzer", "29946": "Ekala's Design Documents", "29947": "Enigmatic Reports", "29948": "Insorum Booster Prototype", "29949": "SARO Emblem", "29950": "Customs Patrol Schedule", "29951": "DisX Stash", "29952": "Rebellion Cache", "29953": "PDW-09FX Data Shell", "29954": "PDW-09FX Tactical Subroutines", "29955": "Address #298 Audio Fragment", "29964": "Legion Defensive - Adaptive Augmenter", "29965": "Legion Defensive - Nanobot Injector", "29966": "Legion Defensive - Augmented Plating", "29967": "Legion Defensive - Warfare Processor", "29969": "Tengu Defensive - Adaptive Shielding", "29970": "Tengu Defensive - Amplification Node", "29971": "Tengu Defensive - Supplemental Screening", "29972": "Tengu Defensive - Warfare Processor", "29974": "Loki Defensive - Adaptive Shielding", "29975": "Loki Defensive - Adaptive Augmenter", "29976": "Loki Defensive - Amplification Node", "29977": "Loki Defensive - Warfare Processor", "29979": "Proteus Defensive - Adaptive Augmenter", "29980": "Proteus Defensive - Nanobot Injector", "29981": "Proteus Defensive - Augmented Plating", "29982": "Proteus Defensive - Warfare Processor", "29984": "Tengu", "29985": "Tengu Blueprint", "29986": "Legion", "29987": "Legion Blueprint", "29988": "Proteus", "29989": "Proteus Blueprint", "29990": "Loki", "29991": "Loki Blueprint", "29992": "Optimized Nano-engines", "29993": "Optimized Nano-Engines Blueprint", "29994": "Warfare Computation Core", "29995": "Warfare Computation Core Blueprint", "29996": "Emergent Neurovisual Interface", "29997": "Emergent Neurovisual Interface Blueprint", "30002": "Fullerene Intercalated Sheets", "30003": "Fullerene Intercalated Sheets Blueprint", "30008": "Reinforced Metallofullerene Alloys", "30009": "Reinforced Metallofullerene Alloys Blueprint", "30013": "Core Scanner Probe I", "30014": "Core Scanner Probe I Blueprint", "30018": "Fused Nanomechanical Engines", "30019": "Powdered C-540 Graphite", "30021": "Modified Fluid Router", "30022": "Heuristic Selfassemblers", "30024": "Cartesian Temporal Coordinator", "30028": "Combat Scanner Probe I", "30029": "Combat Scanner Probe I Blueprint", "30030": "Deep Space Scanner Probe I", "30031": "Deep Space Scanner Probe I Blueprint", "30036": "Legion Electronics - Energy Parasitic Complex", "30037": "Legion Electronics - Energy Parasitic Complex Blueprint", "30038": "Legion Electronics - Tactical Targeting Network", "30039": "Legion Electronics - Tactical Targeting Network Blueprint", "30040": "Legion Electronics - Dissolution Sequencer", "30041": "Legion Electronics - Dissolution Sequencer Blueprint", "30042": "Legion Electronics - Emergent Locus Analyzer", "30043": "Legion Electronics - Emergent Locus Analyzer Blueprint", "30046": "Tengu Electronics - Obfuscation Manifold", "30047": "Tengu Electronics - Obfuscation Manifold Blueprint", "30048": "Tengu Electronics - CPU Efficiency Gate", "30049": "Tengu Electronics - CPU Efficiency Gate Blueprint", "30050": "Tengu Electronics - Dissolution Sequencer", "30051": "Tengu Electronics - Dissolution Sequencer Blueprint", "30052": "Tengu Electronics - Emergent Locus Analyzer", "30053": "Tengu Electronics - Emergent Locus Analyzer Blueprint", "30056": "Proteus Electronics - Friction Extension Processor", "30057": "Proteus Electronics - Friction Extension Processor Blueprint", "30058": "Proteus Electronics - CPU Efficiency Gate", "30059": "Proteus Electronics - CPU Efficiency Gate Blueprint", "30060": "Proteus Electronics - Dissolution Sequencer", "30061": "Proteus Electronics - Dissolution Sequencer Blueprint", "30062": "Proteus Electronics - Emergent Locus Analyzer", "30063": "Proteus Electronics - Emergent Locus Analyzer Blueprint", "30066": "Loki Electronics - Immobility Drivers", "30067": "Loki Electronics - Immobility Drivers Blueprint", "30068": "Loki Electronics - Tactical Targeting Network", "30069": "Loki Electronics - Tactical Targeting Network Blueprint", "30070": "Loki Electronics - Dissolution Sequencer", "30071": "Loki Electronics - Dissolution Sequencer Blueprint", "30072": "Loki Electronics - Emergent Locus Analyzer", "30073": "Loki Electronics - Emergent Locus Analyzer Blueprint", "30076": "Legion Propulsion - Chassis Optimization", "30077": "Legion Propulsion - Chassis Optimization Blueprint", "30078": "Legion Propulsion - Fuel Catalyst", "30079": "Legion Propulsion - Fuel Catalyst Blueprint", "30080": "Legion Propulsion - Wake Limiter", "30081": "Legion Propulsion - Wake Limiter Blueprint", "30082": "Legion Propulsion - Interdiction Nullifier", "30083": "Legion Propulsion - Interdiction Nullifier Blueprint", "30086": "Tengu Propulsion - Intercalated Nanofibers", "30087": "Tengu Propulsion - Intercalated Nanofibers Blueprint", "30088": "Tengu Propulsion - Gravitational Capacitor", "30089": "Tengu Propulsion - Gravitational Capacitor Blueprint", "30090": "Tengu Propulsion - Fuel Catalyst", "30091": "Tengu Propulsion - Fuel Catalyst Blueprint", "30092": "Tengu Propulsion - Interdiction Nullifier", "30093": "Tengu Propulsion - Interdiction Nullifier Blueprint", "30096": "Proteus Propulsion - Wake Limiter", "30097": "Proteus Propulsion - Wake Limiter Blueprint", "30098": "Proteus Propulsion - Localized Injectors", "30099": "Proteus Propulsion - Localized Injectors Blueprint", "30100": "Proteus Propulsion - Gravitational Capacitor", "30101": "Proteus Propulsion - Gravitational Capacitor Blueprint", "30102": "Proteus Propulsion - Interdiction Nullifier", "30103": "Proteus Propulsion - Interdiction Nullifier Blueprint", "30106": "Loki Propulsion - Chassis Optimization", "30107": "Loki Propulsion - Chassis Optimization Blueprint", "30108": "Loki Propulsion - Intercalated Nanofibers", "30109": "Loki Propulsion - Intercalated Nanofibers Blueprint", "30110": "Loki Propulsion - Fuel Catalyst", "30111": "Loki Propulsion - Fuel Catalyst Blueprint", "30112": "Loki Propulsion - Interdiction Nullifier", "30113": "Loki Propulsion - Interdiction Nullifier Blueprint", "30117": "Legion Offensive - Drone Synthesis Projector", "30118": "Legion Offensive - Assault Optimization", "30119": "Legion Offensive - Liquid Crystal Magnifiers", "30120": "Legion Offensive - Covert Reconfiguration", "30122": "Tengu Offensive - Accelerated Ejection Bay", "30123": "Tengu Offensive - Rifling Launcher Pattern", "30124": "Tengu Offensive - Magnetic Infusion Basin", "30125": "Tengu Offensive - Covert Reconfiguration", "30127": "Proteus Offensive - Dissonic Encoding Platform", "30128": "Proteus Offensive - Hybrid Propulsion Armature", "30129": "Proteus Offensive - Drone Synthesis Projector", "30130": "Proteus Offensive - Covert Reconfiguration", "30132": "Loki Offensive - Turret Concurrence Registry", "30133": "Loki Offensive - Projectile Scoping Array", "30134": "Loki Offensive - Hardpoint Efficiency Configuration", "30135": "Loki Offensive - Covert Reconfiguration", "30139": "Tengu Engineering - Power Core Multiplier", "30140": "Tengu Engineering - Power Core Multiplier Blueprint", "30141": "Tengu Engineering - Augmented Capacitor Reservoir", "30142": "Tengu Engineering - Augmented Capacitor Reservoir Blueprint", "30143": "Tengu Engineering - Capacitor Regeneration Matrix", "30144": "Tengu Engineering - Capacitor Regeneration Matrix Blueprint", "30145": "Tengu Engineering - Supplemental Coolant Injector", "30146": "Tengu Engineering - Supplemental Coolant Injector Blueprint", "30149": "Proteus Engineering - Power Core Multiplier", "30150": "Proteus Engineering - Power Core Multiplier Blueprint", "30151": "Proteus Engineering - Augmented Capacitor Reservoir", "30152": "Proteus Engineering - Augmented Capacitor Reservoir Blueprint", "30153": "Proteus Engineering - Capacitor Regeneration Matrix", "30154": "Proteus Engineering - Capacitor Regeneration Matrix Blueprint", "30155": "Proteus Engineering - Supplemental Coolant Injector", "30156": "Proteus Engineering - Supplemental Coolant Injector Blueprint", "30159": "Loki Engineering - Power Core Multiplier", "30160": "Loki Engineering - Power Core Multiplier Blueprint", "30161": "Loki Engineering - Augmented Capacitor Reservoir", "30162": "Loki Engineering - Augmented Capacitor Reservoir Blueprint", "30163": "Loki Engineering - Capacitor Regeneration Matrix", "30164": "Loki Engineering - Capacitor Regeneration Matrix Blueprint", "30165": "Loki Engineering - Supplemental Coolant Injector", "30166": "Loki Engineering - Supplemental Coolant Injector Blueprint", "30169": "Legion Engineering - Power Core Multiplier", "30170": "Legion Engineering - Power Core Multiplier Blueprint", "30171": "Legion Engineering - Augmented Capacitor Reservoir", "30172": "Legion Engineering - Augmented Capacitor Reservoir Blueprint", "30173": "Legion Engineering - Capacitor Regeneration Matrix", "30174": "Legion Engineering - Capacitor Regeneration Matrix Blueprint", "30175": "Legion Engineering - Supplemental Coolant Injector", "30176": "Legion Engineering - Supplemental Coolant Injector Blueprint", "30182": "Serpentis Informant", "30187": "Intact Thruster Sections", "30221": "Snowball CXIV", "30222": "Melted Snowball CX", "30227": "Legion Defensive - Adaptive Augmenter Blueprint", "30228": "Legion Defensive - Nanobot Injector Blueprint", "30229": "Legion Defensive - Augmented Plating Blueprint", "30230": "Legion Defensive - Warfare Processor Blueprint", "30232": "Tengu Defensive - Adaptive Shielding Blueprint", "30233": "Tengu Defensive - Amplification Node Blueprint", "30234": "Tengu Defensive - Supplemental Screening Blueprint", "30235": "Tengu Defensive - Warfare Processor Blueprint", "30237": "Proteus Defensive - Adaptive Augmenter Blueprint", "30238": "Proteus Defensive - Nanobot Injector Blueprint", "30239": "Proteus Defensive - Augmented Plating Blueprint", "30240": "Proteus Defensive - Warfare Processor Blueprint", "30242": "Loki Defensive - Adaptive Shielding Blueprint", "30243": "Loki Defensive - Adaptive Augmenter Blueprint", "30244": "Loki Defensive - Amplification Node Blueprint", "30245": "Loki Defensive - Warfare Processor Blueprint", "30248": "Emergent Combat Analyzer", "30251": "Neurovisual Input Matrix", "30252": "Thermoelectric Catalysts", "30254": "Electromechanical Hull Sheeting", "30258": "Resonance Calibration Matrix", "30259": "Melted Nanoribbons", "30268": "Jump Drive Control Nexus", "30269": "Defensive Control Node", "30270": "Central System Controller", "30271": "Emergent Combat Intelligence", "30303": "Fulleroferrocene", "30304": "PPD Fullerene Fibers", "30305": "Fullerene Intercalated Graphite", "30306": "Methanofullerene", "30307": "Lanthanum Metallofullerene", "30308": "Scandium Metallofullerene", "30309": "Graphene Nanoribbons", "30310": "Carbon-86 Epoxy Resin", "30311": "C3-FTM Acid", "30324": "Defensive Subsystem Technology", "30325": "Engineering Subsystem Technology", "30326": "Electronic Subsystem Technology", "30327": "Offensive Subsystem Technology", "30328": "Civilian Stasis Webifier", "30329": "Civilian Stasis Webifier I Blueprint", "30342": "Civilian Thermic Dissipation Field", "30343": "Civilian Thermic Dissipation Field Blueprint", "30344": "Fulleroferrocene Reaction", "30345": "PPD Fullerene Fibers Reaction", "30346": "Fullerene Intercalated Graphite Reaction", "354583": "Shotgun", "30348": "Lanthanum Metallofullerene Reaction", "30349": "Scandium Metallofullerene Reaction", "30350": "Graphene Nanoribbons Reaction", "30351": "Carbon-86 Epoxy Resin Reaction", "30352": "C3-FTM Acid Reaction", "30368": "Methanofullerene Reaction", "30370": "Fullerite-C50", "30371": "Fullerite-C60", "30372": "Fullerite-C70", "30373": "Fullerite-C72", "30374": "Fullerite-C84", "30375": "Fullerite-C28", "30376": "Fullerite-C32", "30377": "Fullerite-C320", "30378": "Fullerite-C540", "30382": "Amarr Hybrid Tech Decryptor", "30383": "Caldari Hybrid Tech Decryptor", "30384": "Minmatar Hybrid Tech Decryptor", "30385": "Gallente Hybrid Tech Decryptor", "30386": "R.A.M.- Hybrid Technology", "30389": "Subsystem Assembly Array", "30391": "Omni Effect Beacon", "30392": "Legion Offensive - Drone Synthesis Projector Blueprint", "30393": "Legion Offensive - Assault Optimization Blueprint", "30394": "Legion Offensive - Liquid Crystal Magnifiers Blueprint", "30395": "Legion Offensive - Covert Reconfiguration Blueprint", "30397": "Tengu Offensive - Accelerated Ejection Bay Blueprint", "30398": "Tengu Offensive - Rifling Launcher Pattern Blueprint", "30399": "Tengu Offensive - Magnetic Infusion Basin Blueprint", "30400": "Tengu Offensive - Covert Reconfiguration Blueprint", "30402": "Proteus Offensive - Dissonic Encoding Platform Blueprint", "30403": "Proteus Offensive - Hybrid Propulsion Armature Blueprint", "30404": "Proteus Offensive - Drone Synthesis Projector Blueprint", "30405": "Proteus Offensive - Covert Reconfiguration Blueprint", "30407": "Loki Offensive - Turret Concurrence Registry Blueprint", "30408": "Loki Offensive - Projectile Scoping Array Blueprint", "30409": "Loki Offensive - Hardpoint Efficiency Configuration Blueprint", "30410": "Loki Offensive - Covert Reconfiguration Blueprint", "3195": "Eifyr and Co. 'Gunslinger' Surgical Strike SS-906", "30420": "Civilian EM Ward Field", "30421": "Civilian EM Ward Field Blueprint", "30422": "Civilian Explosive Deflection Field", "30423": "Civilian Explosive Deflection Field Blueprint", "30424": "Civilian Kinetic Deflection Field", "30425": "Civilian Kinetic Deflection Field Blueprint", "30464": "Metallofullerene Plating", "30465": "Metallofullerene Plating Blueprint", "30466": "Electromechanical Interface Nexus", "30467": "Electromechanical Interface Nexus Blueprint", "30470": "Neurovisual Output Analyzer", "30471": "Neurovisual Output Analyzer Blueprint", "30474": "Nanowire Composites", "30475": "Nanowire Composites Blueprint", "30476": "Fulleroferrocene Power Conduits", "30477": "Fulleroferrocene Power Conduits Blueprint", "30478": "Reconfigured Subspace Calibrator", "30479": "Reconfigured Subspace Calibrator Blueprint", "30486": "Sisters Combat Scanner Probe", "30488": "Sisters Core Scanner Probe", "30490": "Sisters Deep Space Scanner Probe", "30497": "Reinforced Metal Scraps", "30532": "Amarr Defensive Systems", "30536": "Amarr Electronic Systems", "30537": "Amarr Offensive Systems", "30538": "Amarr Propulsion Systems", "30539": "Amarr Engineering Systems", "30540": "Gallente Defensive Systems", "30541": "Gallente Electronic Systems", "30542": "Caldari Electronic Systems", "30543": "Minmatar Electronic Systems", "30544": "Caldari Defensive Systems", "30545": "Minmatar Defensive Systems", "30546": "Gallente Engineering Systems", "30547": "Minmatar Engineering Systems", "30548": "Caldari Engineering Systems", "30549": "Caldari Offensive Systems", "30550": "Gallente Offensive Systems", "30551": "Minmatar Offensive Systems", "30552": "Caldari Propulsion Systems", "30553": "Gallente Propulsion Systems", "30554": "Minmatar Propulsion Systems", "30558": "Malfunctioning Thruster Sections", "30562": "Wrecked Thruster Sections", "30582": "Intact Power Cores", "30586": "Malfunctioning Power Cores", "30588": "Wrecked Power Cores", "30599": "Intact Electromechanical Component", "30600": "Malfunctioning Electromechanical Component", "30605": "Wrecked Electromechanical Component", "30614": "Intact Armor Nanobot", "30615": "Malfunctioning Armor Nanobot", "30618": "Wrecked Armor Nanobot", "30628": "Intact Weapon Subroutines", "30632": "Malfunctioning Weapon Subroutines", "30633": "Wrecked Weapon Subroutines", "30650": "Amarr Strategic Cruiser", "30651": "Caldari Strategic Cruiser", "30652": "Gallente Strategic Cruiser", "30653": "Minmatar Strategic Cruiser", "30655": "Hybrid Polymer Silo", "30656": "Polymer Reactor Array", "30716": "Tahaki Karin", "30719": "Kritsan Parthus", "30744": "Neural Network Analyzer", "30745": "Sleeper Data Library", "30746": "Ancient Coordinates Database", "30747": "Sleeper Drone AI Nexus", "30752": "Intact Hull Section", "30753": "Malfunctioning Hull Section", "30754": "Wrecked Hull Section", "30755": "Strange Datacore", "30756": "Red", "30757": "Nebben Centrien, Janitor", "30759": "Chef Aubrei Azil", "30761": "Doctor Luija Elban", "30768": "A Lot of Money", "30774": "Engineer Tahaki Karin", "30776": "Mizara's Doll", "30778": "Mysterious Statuette", "30780": "Strange Coded Document", "30782": "Corrupted Drone Components", "30784": "Dr. Castille's Data Core (Property of CreoDron)", "30788": "Propulsion Subsystem Technology", "30794": "Farming Supplies", "30804": "Lieutenant Kirus", "30809": "Wolf Burgan's Body Double", "30810": "Wolf Burgan's DNA", "30811": "Drone Tracking Data", "30812": "Corin Risia", "30814": "FR Personnel", "30816": "Medical Supplies", "30826": "Altered Identity Records", "30827": "Dagan", "30832": "Analyzer II", "30833": "Analyzer II Blueprint", "30834": "Codebreaker II", "30835": "Codebreaker II Blueprint", "30836": "Salvager II", "30837": "Salvager II Blueprint", "30839": "Civilian Damage Control", "30840": "Civilian Damage Control Blueprint", "30842": "Interbus Shuttle", "30843": "Interbus Shuttle Blueprint", "30844": "Pulsar Effect Beacon Class 1", "30845": "Black Hole Effect Beacon Class 1", "30846": "Cataclysmic Variable Effect Beacon Class 1", "30847": "Magnetar Effect Beacon Class 1", "30848": "Red Giant Beacon Class 1", "30849": "Wolf Rayet Effect Beacon Class 1", "30850": "Black Hole Effect Beacon Class 2", "30851": "Black Hole Effect Beacon Class 3", "30852": "Black Hole Effect Beacon Class 4", "30853": "Black Hole Effect Beacon Class 5", "30854": "Black Hole Effect Beacon Class 6", "30860": "Magnetar Effect Beacon Class 2", "30861": "Magnetar Effect Beacon Class 3", "30862": "Magnetar Effect Beacon Class 4", "30863": "Magnetar Effect Beacon Class 5", "30864": "Magnetar Effect Beacon Class 6", "30865": "Pulsar Effect Beacon Class 2", "30866": "Pulsar Effect Beacon Class 3", "30867": "Pulsar Effect Beacon Class 4", "30868": "Pulsar Effect Beacon Class 5", "30869": "Pulsar Effect Beacon Class 6", "30870": "Red Giant Beacon Class 2", "30871": "Red Giant Beacon Class 3", "30872": "Red Giant Beacon Class 4", "30873": "Red Giant Beacon Class 5", "30874": "Red Giant Beacon Class 6", "30875": "Wolf Rayet Effect Beacon Class 2", "30876": "Wolf Rayet Effect Beacon Class 3", "30877": "Wolf Rayet Effect Beacon Class 4", "30878": "Wolf Rayet Effect Beacon Class 5", "30879": "Wolf Rayet Effect Beacon Class 6", "30880": "Cataclysmic Variable Effect Beacon Class 2", "30881": "Cataclysmic Variable Effect Beacon Class 3", "30882": "Cataclysmic Variable Effect Beacon Class 6", "30883": "Cataclysmic Variable Effect Beacon Class 5", "30884": "Cataclysmic Variable Effect Beacon Class 4", "30906": "Letter of Recommendation", "30907": "Smuggler's Warning About Sister Alitura", "30951": "Verification Key", "30952": "Dossier Author Unknown", "30954": "Hyasyoda Captain", "30955": "S.I Formula Sheet", "30964": "CPF.HYA LogInt Facility POI-26: Data Cache", "30966": "NOH Signal Operators", "30967": "Questionable Cargo", "30968": "CPF Security Personnel", "30975": "FedNav F.O.F Identifier Tag AC-106V:FNSBR", "30980": "Caldari Prisoners of War", "30987": "Small Trimark Armor Pump I", "30988": "Small Trimark Armor Pump I Blueprint", "30997": "Small Anti-EM Pump I", "30998": "Small Anti-EM Pump I Blueprint", "30999": "Medium Anti-EM Pump I", "31000": "Medium Anti-EM Pump I Blueprint", "31003": "Small Anti-EM Pump II", "31004": "Small Anti-EM Pump II Blueprint", "31005": "Medium Anti-EM Pump II", "31006": "Medium Anti-EM Pump II Blueprint", "31009": "Small Anti-Explosive Pump I", "31010": "Small Anti-Explosive Pump I Blueprint", "31011": "Medium Anti-Explosive Pump I", "31012": "Medium Anti-Explosive Pump I Blueprint", "31015": "Small Anti-Explosive Pump II", "31016": "Small Anti-Explosive Pump II Blueprint", "31017": "Medium Anti-Explosive Pump II", "31018": "Medium Anti-Explosive Pump II Blueprint", "31021": "Small Anti-Kinetic Pump I", "31022": "Small Anti-Kinetic Pump I Blueprint", "31023": "Medium Anti-Kinetic Pump I", "31024": "Medium Anti-Kinetic Pump I Blueprint", "31027": "Small Anti-Kinetic Pump II", "31028": "Small Anti-Kinetic Pump II Blueprint", "31029": "Medium Anti-Kinetic Pump II", "31030": "Medium Anti-Kinetic Pump II Blueprint", "31033": "Small Anti-Thermic Pump I", "31034": "Small Anti-Thermic Pump I Blueprint", "31035": "Medium Anti-Thermic Pump I", "31036": "Medium Anti-Thermic Pump I Blueprint", "31039": "Small Anti-Thermic Pump II", "31040": "Small Anti-Thermic Pump II Blueprint", "31041": "Medium Anti-Thermic Pump II", "31042": "Medium Anti-Thermic Pump II Blueprint", "31045": "Small Auxiliary Nano Pump I", "31046": "Small Auxiliary Nano Pump I Blueprint", "31047": "Medium Auxiliary Nano Pump I", "31048": "Medium Auxiliary Nano Pump I Blueprint", "31051": "Small Auxiliary Nano Pump II", "31052": "Small Auxiliary Nano Pump II Blueprint", "31053": "Medium Auxiliary Nano Pump II", "31054": "Medium Auxiliary Nano Pump II Blueprint", "31055": "Medium Trimark Armor Pump I", "31056": "Medium Trimark Armor Pump I Blueprint", "31057": "Small Trimark Armor Pump II", "31058": "Small Trimark Armor Pump II Blueprint", "31059": "Medium Trimark Armor Pump II", "31060": "Medium Trimark Armor Pump II Blueprint", "31063": "Small Nanobot Accelerator I", "31064": "Small Nanobot Accelerator I Blueprint", "31065": "Medium Nanobot Accelerator I", "31066": "Medium Nanobot Accelerator I Blueprint", "31069": "Small Nanobot Accelerator II", "31070": "Small Nanobot Accelerator II Blueprint", "31071": "Medium Nanobot Accelerator II", "31072": "Medium Nanobot Accelerator II Blueprint", "31073": "Medium Remote Repair Augmentor I", "31074": "Medium Remote Repair Augmentor I Blueprint", "31077": "Small Remote Repair Augmentor II", "31078": "Small Remote Repair Augmentor II Blueprint", "31079": "Medium Remote Repair Augmentor II", "31080": "Medium Remote Repair Augmentor II Blueprint", "31083": "Small Salvage Tackle I", "31084": "Small Salvage Tackle I Blueprint", "31085": "Medium Salvage Tackle I", "31086": "Medium Salvage Tackle I Blueprint", "31089": "Small Salvage Tackle II", "31090": "Small Salvage Tackle II Blueprint", "31091": "Medium Salvage Tackle II", "31092": "Medium Salvage Tackle II Blueprint", "31105": "Small Auxiliary Thrusters I", "31106": "Small Auxiliary Thrusters I Blueprint", "31107": "Medium Auxiliary Thrusters I", "31108": "Medium Auxiliary Thrusters I Blueprint", "31111": "Small Auxiliary Thrusters II", "31112": "Small Auxiliary Thrusters II Blueprint", "31113": "Medium Auxiliary Thrusters II", "31114": "Medium Auxiliary Thrusters II Blueprint", "31117": "Small Cargohold Optimization I", "31118": "Small Cargohold Optimization I Blueprint", "31119": "Medium Cargohold Optimization I", "31120": "Medium Cargohold Optimization I Blueprint", "31123": "Small Cargohold Optimization II", "31124": "Small Cargohold Optimization II Blueprint", "31125": "Medium Cargohold Optimization II", "31126": "Medium Cargohold Optimization II Blueprint", "31129": "Small Dynamic Fuel Valve I", "31130": "Small Dynamic Fuel Valve I Blueprint", "31131": "Medium Dynamic Fuel Valve I", "31132": "Medium Dynamic Fuel Valve I Blueprint", "31135": "Small Dynamic Fuel Valve II", "31136": "Small Dynamic Fuel Valve II Blueprint", "31137": "Medium Dynamic Fuel Valve II", "31138": "Medium Dynamic Fuel Valve II Blueprint", "31141": "Small Engine Thermal Shielding I", "31142": "Small Engine Thermal Shielding I Blueprint", "31143": "Medium Engine Thermal Shielding I", "31144": "Medium Engine Thermal Shielding I Blueprint", "31147": "Small Engine Thermal Shielding II", "31148": "Small Engine Thermal Shielding II Blueprint", "31149": "Medium Engine Thermal Shielding II", "31150": "Medium Engine Thermal Shielding II Blueprint", "31153": "Small Low Friction Nozzle Joints I", "31154": "Small Low Friction Nozzle Joints I Blueprint", "31155": "Medium Low Friction Nozzle Joints I", "31156": "Medium Low Friction Nozzle Joints I Blueprint", "31159": "Small Hyperspatial Velocity Optimizer I", "31160": "Small Hyperspatial Velocity Optimizer I Blueprint", "31161": "Medium Hyperspatial Velocity Optimizer I", "31162": "Medium Hyperspatial Velocity Optimizer I Blueprint", "31165": "Small Hyperspatial Velocity Optimizer II", "31166": "Small Hyperspatial Velocity Optimizer II Blueprint", "31167": "Medium Hyperspatial Velocity Optimizer II", "31168": "Medium Hyperspatial Velocity Optimizer II Blueprint", "31171": "Small Low Friction Nozzle Joints II", "31172": "Small Low Friction Nozzle Joints II Blueprint", "31173": "Medium Low Friction Nozzle Joints II", "31174": "Medium Low Friction Nozzle Joints II Blueprint", "31177": "Small Polycarbon Engine Housing I", "31178": "Small Polycarbon Engine Housing I Blueprint", "31179": "Medium Polycarbon Engine Housing I", "31180": "Medium Polycarbon Engine Housing I Blueprint", "31183": "Small Polycarbon Engine Housing II", "31184": "Small Polycarbon Engine Housing II Blueprint", "31185": "Medium Polycarbon Engine Housing II", "31186": "Medium Polycarbon Engine Housing II Blueprint", "31189": "Small Warp Core Optimizer I", "31190": "Small Warp Core Optimizer I Blueprint", "31191": "Medium Warp Core Optimizer I", "31192": "Medium Warp Core Optimizer I Blueprint", "31195": "Small Warp Core Optimizer II", "31196": "Small Warp Core Optimizer II Blueprint", "31197": "Medium Warp Core Optimizer II", "31198": "Medium Warp Core Optimizer II Blueprint", "31201": "Small Emission Scope Sharpener I", "31202": "Small Emission Scope Sharpener I Blueprint", "31203": "Medium Emission Scope Sharpener I", "31204": "Medium Emission Scope Sharpener I Blueprint", "31207": "Small Emission Scope Sharpener II", "31208": "Small Emission Scope Sharpener II Blueprint", "31209": "Medium Emission Scope Sharpener II", "31210": "Medium Emission Scope Sharpener II Blueprint", "31213": "Small Gravity Capacitor Upgrade I", "31214": "Small Gravity Capacitor Upgrade I Blueprint", "31215": "Medium Gravity Capacitor Upgrade I", "31216": "Medium Gravity Capacitor Upgrade I Blueprint", "31220": "Small Gravity Capacitor Upgrade II", "31221": "Small Gravity Capacitor Upgrade II Blueprint", "31222": "Medium Gravity Capacitor Upgrade II", "31223": "Medium Gravity Capacitor Upgrade II Blueprint", "31226": "Small Liquid Cooled Electronics I", "31227": "Small Liquid Cooled Electronics I Blueprint", "31228": "Medium Liquid Cooled Electronics I", "31229": "Medium Liquid Cooled Electronics I Blueprint", "31232": "Small Liquid Cooled Electronics II", "31233": "Small Liquid Cooled Electronics II Blueprint", "31234": "Medium Liquid Cooled Electronics II", "31235": "Medium Liquid Cooled Electronics II Blueprint", "31238": "Small Memetic Algorithm Bank I", "31239": "Small Memetic Algorithm Bank I Blueprint", "31240": "Medium Memetic Algorithm Bank I", "31241": "Medium Memetic Algorithm Bank I Blueprint", "31244": "Small Memetic Algorithm Bank II", "31245": "Small Memetic Algorithm Bank II Blueprint", "31246": "Medium Memetic Algorithm Bank II", "31247": "Medium Memetic Algorithm Bank II Blueprint", "31250": "Small Signal Disruption Amplifier I", "31251": "Small Signal Disruption Amplifier I Blueprint", "31252": "Medium Signal Disruption Amplifier I", "31253": "Medium Signal Disruption Amplifier I Blueprint", "31256": "Small Signal Disruption Amplifier II", "31257": "Small Signal Disruption Amplifier II Blueprint", "31258": "Medium Signal Disruption Amplifier II", "31259": "Medium Signal Disruption Amplifier II Blueprint", "31262": "Small Inverted Signal Field Projector I", "31263": "Small Inverted Signal Field Projector I Blueprint", "31264": "Medium Inverted Signal Field Projector I", "31265": "Medium Inverted Signal Field Projector I Blueprint", "31268": "Small Inverted Signal Field Projector II", "31269": "Small Inverted Signal Field Projector II Blueprint", "31270": "Medium Inverted Signal Field Projector II", "31271": "Medium Inverted Signal Field Projector II Blueprint", "31274": "Small Ionic Field Projector I", "31275": "Small Ionic Field Projector I Blueprint", "31276": "Medium Ionic Field Projector I", "31277": "Medium Ionic Field Projector I Blueprint", "31280": "Small Ionic Field Projector II", "31281": "Small Ionic Field Projector II Blueprint", "31282": "Medium Ionic Field Projector II", "31283": "Medium Ionic Field Projector II Blueprint", "31286": "Small Particle Dispersion Augmentor I", "31287": "Small Particle Dispersion Augmentor I Blueprint", "31288": "Medium Particle Dispersion Augmentor I", "31289": "Medium Particle Dispersion Augmentor I Blueprint", "31292": "Small Particle Dispersion Augmentor II", "31293": "Small Particle Dispersion Augmentor II Blueprint", "31294": "Medium Particle Dispersion Augmentor II", "31295": "Medium Particle Dispersion Augmentor II Blueprint", "31298": "Small Particle Dispersion Projector I", "31299": "Small Particle Dispersion Projector I Blueprint", "31300": "Medium Particle Dispersion Projector I", "31301": "Medium Particle Dispersion Projector I Blueprint", "31304": "Small Particle Dispersion Projector II", "31305": "Small Particle Dispersion Projector II Blueprint", "31306": "Medium Particle Dispersion Projector II", "31307": "Medium Particle Dispersion Projector II Blueprint", "31310": "Small Signal Focusing Kit I", "31311": "Small Signal Focusing Kit I Blueprint", "31312": "Medium Signal Focusing Kit I", "31313": "Medium Signal Focusing Kit I Blueprint", "31316": "Small Signal Focusing Kit II", "31317": "Small Signal Focusing Kit II Blueprint", "31318": "Medium Signal Focusing Kit II", "31319": "Medium Signal Focusing Kit II Blueprint", "31322": "Small Targeting System Subcontroller I", "31323": "Small Targeting System Subcontroller I Blueprint", "31324": "Medium Targeting System Subcontroller I", "31325": "Medium Targeting System Subcontroller I Blueprint", "31328": "Small Targeting System Subcontroller II", "31329": "Small Targeting System Subcontroller II Blueprint", "31330": "Medium Targeting System Subcontroller II", "31331": "Medium Targeting System Subcontroller II Blueprint", "31334": "Small Targeting Systems Stabilizer I", "31335": "Small Targeting Systems Stabilizer I Blueprint", "31336": "Medium Targeting Systems Stabilizer I", "31337": "Medium Targeting Systems Stabilizer I Blueprint", "31340": "Small Targeting Systems Stabilizer II", "31341": "Small Targeting Systems Stabilizer II Blueprint", "31342": "Medium Targeting Systems Stabilizer II", "31343": "Medium Targeting Systems Stabilizer II Blueprint", "31346": "Small Tracking Diagnostic Subroutines I", "31347": "Small Tracking Diagnostic Subroutines I Blueprint", "31348": "Medium Tracking Diagnostic Subroutines I", "31349": "Medium Tracking Diagnostic Subroutines I Blueprint", "31352": "Small Tracking Diagnostic Subroutines II", "31353": "Small Tracking Diagnostic Subroutines II Blueprint", "31354": "Medium Tracking Diagnostic Subroutines II", "31355": "Medium Tracking Diagnostic Subroutines II Blueprint", "31358": "Small Ancillary Current Router I", "31359": "Small Ancillary Current Router I Blueprint", "31360": "Medium Ancillary Current Router I", "31361": "Medium Ancillary Current Router I Blueprint", "31364": "Small Ancillary Current Router II", "31365": "Small Ancillary Current Router II Blueprint", "31366": "Medium Ancillary Current Router II", "31367": "Medium Ancillary Current Router II Blueprint", "31370": "Small Capacitor Control Circuit I", "31371": "Small Capacitor Control Circuit I Blueprint", "31372": "Medium Capacitor Control Circuit I", "31373": "Medium Capacitor Control Circuit I Blueprint", "31376": "Small Capacitor Control Circuit II", "31377": "Small Capacitor Control Circuit II Blueprint", "31378": "Medium Capacitor Control Circuit II", "31379": "Medium Capacitor Control Circuit II Blueprint", "31382": "Small Egress Port Maximizer I", "31383": "Small Egress Port Maximizer I Blueprint", "31384": "Medium Egress Port Maximizer I", "31385": "Medium Egress Port Maximizer I Blueprint", "31388": "Small Egress Port Maximizer II", "31389": "Small Egress Port Maximizer II Blueprint", "31390": "Medium Egress Port Maximizer II", "31391": "Medium Egress Port Maximizer II Blueprint", "31394": "Small Powergrid Subroutine Maximizer I", "31395": "Small Powergrid Subroutine Maximizer I Blueprint", "31396": "Medium Powergrid Subroutine Maximizer I", "31397": "Medium Powergrid Subroutine Maximizer I Blueprint", "31400": "Small Powergrid Subroutine Maximizer II", "31401": "Small Powergrid Subroutine Maximizer II Blueprint", "31402": "Medium Powergrid Subroutine Maximizer II", "31403": "Medium Powergrid Subroutine Maximizer II Blueprint", "31406": "Small Semiconductor Memory Cell I", "31407": "Small Semiconductor Memory Cell I Blueprint", "31408": "Medium Semiconductor Memory Cell I", "31409": "Medium Semiconductor Memory Cell I Blueprint", "31412": "Small Semiconductor Memory Cell II", "31413": "Small Semiconductor Memory Cell II Blueprint", "31414": "Medium Semiconductor Memory Cell II", "31415": "Medium Semiconductor Memory Cell II Blueprint", "31418": "Small Algid Energy Administrations Unit I", "31419": "Small Algid Energy Administrations Unit I Blueprint", "31420": "Medium Algid Energy Administrations Unit I", "31421": "Medium Algid Energy Administrations Unit I Blueprint", "31424": "Small Algid Energy Administrations Unit II", "31425": "Small Algid Energy Administrations Unit II Blueprint", "31426": "Medium Algid Energy Administrations Unit II", "31427": "Medium Algid Energy Administrations Unit II Blueprint", "31430": "Small Energy Ambit Extension I", "31431": "Small Energy Ambit Extension I Blueprint", "31432": "Medium Energy Ambit Extension I", "31433": "Medium Energy Ambit Extension I Blueprint", "31436": "Small Energy Ambit Extension II", "31437": "Small Energy Ambit Extension II Blueprint", "31438": "Medium Energy Ambit Extension II", "31439": "Medium Energy Ambit Extension II Blueprint", "31442": "Small Energy Burst Aerator I", "31443": "Small Energy Burst Aerator I Blueprint", "31444": "Medium Energy Burst Aerator I", "31445": "Medium Energy Burst Aerator I Blueprint", "31448": "Small Energy Burst Aerator II", "31449": "Small Energy Burst Aerator II Blueprint", "31450": "Medium Energy Burst Aerator II", "31451": "Medium Energy Burst Aerator II Blueprint", "31454": "Small Energy Collision Accelerator I", "31455": "Small Energy Collision Accelerator I Blueprint", "31456": "Medium Energy Collision Accelerator I", "31457": "Medium Energy Collision Accelerator I Blueprint", "31460": "Small Energy Collision Accelerator II", "31461": "Small Energy Collision Accelerator II Blueprint", "31462": "Medium Energy Collision Accelerator II", "31463": "Medium Energy Collision Accelerator II Blueprint", "31466": "Small Energy Discharge Elutriation I", "31467": "Small Energy Discharge Elutriation I Blueprint", "31468": "Medium Energy Discharge Elutriation I", "31469": "Medium Energy Discharge Elutriation I Blueprint", "31472": "Small Energy Discharge Elutriation II", "31473": "Small Energy Discharge Elutriation II Blueprint", "31474": "Medium Energy Discharge Elutriation II", "31475": "Medium Energy Discharge Elutriation II Blueprint", "31478": "Small Energy Locus Coordinator I", "31479": "Small Energy Locus Coordinator I Blueprint", "31480": "Medium Energy Locus Coordinator I", "31481": "Medium Energy Locus Coordinator I Blueprint", "31484": "Small Energy Locus Coordinator II", "31485": "Small Energy Locus Coordinator II Blueprint", "31486": "Medium Energy Locus Coordinator II", "31487": "Medium Energy Locus Coordinator II Blueprint", "31490": "Small Energy Metastasis Adjuster I", "31491": "Small Energy Metastasis Adjuster I Blueprint", "31492": "Medium Energy Metastasis Adjuster I", "31493": "Medium Energy Metastasis Adjuster I Blueprint", "31496": "Small Energy Metastasis Adjuster II", "31497": "Small Energy Metastasis Adjuster II Blueprint", "31498": "Medium Energy Metastasis Adjuster II", "31499": "Medium Energy Metastasis Adjuster II Blueprint", "31502": "Small Algid Hybrid Administrations Unit I", "31503": "Small Algid Hybrid Administrations Unit I Blueprint", "31504": "Medium Algid Hybrid Administrations Unit I", "31505": "Medium Algid Hybrid Administrations Unit I Blueprint", "31508": "Small Algid Hybrid Administrations Unit II", "31509": "Small Algid Hybrid Administrations Unit II Blueprint", "31510": "Medium Algid Hybrid Administrations Unit II", "31511": "Medium Algid Hybrid Administrations Unit II Blueprint", "31514": "Small Hybrid Ambit Extension I", "31515": "Small Hybrid Ambit Extension I Blueprint", "31516": "Medium Hybrid Ambit Extension I", "31517": "Medium Hybrid Ambit Extension I Blueprint", "31520": "Small Hybrid Ambit Extension II", "31521": "Small Hybrid Ambit Extension II Blueprint", "31522": "Medium Hybrid Ambit Extension II", "31523": "Medium Hybrid Ambit Extension II Blueprint", "31526": "Small Hybrid Burst Aerator I", "31527": "Small Hybrid Burst Aerator I Blueprint", "31528": "Medium Hybrid Burst Aerator I", "31529": "Medium Hybrid Burst Aerator I Blueprint", "31532": "Small Hybrid Burst Aerator II", "31533": "Small Hybrid Burst Aerator II Blueprint", "31534": "Medium Hybrid Burst Aerator II", "31535": "Medium Hybrid Burst Aerator II Blueprint", "31538": "Small Hybrid Collision Accelerator I", "31539": "Small Hybrid Collision Accelerator I Blueprint", "31540": "Medium Hybrid Collision Accelerator I", "31541": "Medium Hybrid Collision Accelerator I Blueprint", "31544": "Small Hybrid Collision Accelerator II", "31545": "Small Hybrid Collision Accelerator II Blueprint", "31546": "Medium Hybrid Collision Accelerator II", "31547": "Medium Hybrid Collision Accelerator II Blueprint", "31550": "Small Hybrid Discharge Elutriation I", "31551": "Small Hybrid Discharge Elutriation I Blueprint", "31552": "Medium Hybrid Discharge Elutriation I", "31553": "Medium Hybrid Discharge Elutriation I Blueprint", "31556": "Small Hybrid Discharge Elutriation II", "31557": "Small Hybrid Discharge Elutriation II Blueprint", "31558": "Medium Hybrid Discharge Elutriation II", "31559": "Medium Hybrid Discharge Elutriation II Blueprint", "31562": "Small Hybrid Locus Coordinator I", "31563": "Small Hybrid Locus Coordinator I Blueprint", "31564": "Medium Hybrid Locus Coordinator I", "31565": "Medium Hybrid Locus Coordinator I Blueprint", "31568": "Small Hybrid Locus Coordinator II", "31569": "Small Hybrid Locus Coordinator II Blueprint", "31570": "Medium Hybrid Locus Coordinator II", "31571": "Medium Hybrid Locus Coordinator II Blueprint", "31574": "Small Hybrid Metastasis Adjuster I", "31575": "Small Hybrid Metastasis Adjuster I Blueprint", "31576": "Medium Hybrid Metastasis Adjuster I", "31577": "Medium Hybrid Metastasis Adjuster I Blueprint", "31580": "Small Hybrid Metastasis Adjuster II", "31581": "Small Hybrid Metastasis Adjuster II Blueprint", "31582": "Medium Hybrid Metastasis Adjuster II", "31583": "Medium Hybrid Metastasis Adjuster II Blueprint", "31586": "Small Bay Loading Accelerator I", "31587": "Small Bay Loading Accelerator I Blueprint", "31588": "Medium Bay Loading Accelerator I", "31589": "Medium Bay Loading Accelerator I Blueprint", "31592": "Small Bay Loading Accelerator II", "31593": "Small Bay Loading Accelerator II Blueprint", "31594": "Medium Bay Loading Accelerator II", "31595": "Medium Bay Loading Accelerator II Blueprint", "31598": "Small Hydraulic Bay Thrusters I", "31599": "Small Hydraulic Bay Thrusters I Blueprint", "31600": "Medium Hydraulic Bay Thrusters I", "31601": "Medium Hydraulic Bay Thrusters I Blueprint", "31604": "Small Hydraulic Bay Thrusters II", "31605": "Small Hydraulic Bay Thrusters II Blueprint", "31606": "Medium Hydraulic Bay Thrusters II", "31607": "Medium Hydraulic Bay Thrusters II Blueprint", "31608": "Small Rocket Fuel Cache Partition I", "31609": "Small Rocket Fuel Cache Partition I Blueprint", "31610": "Medium Rocket Fuel Cache Partition I", "31611": "Medium Rocket Fuel Cache Partition I Blueprint", "354794": "Small GA Railgun Installation ", "31614": "Small Rocket Fuel Cache Partition II", "31615": "Small Rocket Fuel Cache Partition II Blueprint", "31616": "Medium Rocket Fuel Cache Partition II", "31617": "Medium Rocket Fuel Cache Partition II Blueprint", "31620": "Small Warhead Calefaction Catalyst I", "31621": "Small Warhead Calefaction Catalyst I Blueprint", "31622": "Medium Warhead Calefaction Catalyst I", "31623": "Medium Warhead Calefaction Catalyst I Blueprint", "354796": "Large Missile Installation", "31626": "Small Warhead Calefaction Catalyst II", "31627": "Small Warhead Calefaction Catalyst II Blueprint", "31628": "Medium Warhead Calefaction Catalyst II", "31629": "Medium Warhead Calefaction Catalyst II Blueprint", "354797": "Small Missile Installation", "31632": "Small Warhead Flare Catalyst I", "31633": "Small Warhead Flare Catalyst I Blueprint", "31634": "Medium Warhead Flare Catalyst I", "31635": "Medium Warhead Flare Catalyst I Blueprint", "31638": "Small Warhead Flare Catalyst II", "31639": "Small Warhead Flare Catalyst II Blueprint", "31640": "Medium Warhead Flare Catalyst II", "31641": "Medium Warhead Flare Catalyst II Blueprint", "31644": "Small Warhead Rigor Catalyst I", "31645": "Small Warhead Rigor Catalyst I Blueprint", "31646": "Medium Warhead Rigor Catalyst I", "31647": "Medium Warhead Rigor Catalyst I Blueprint", "31650": "Small Warhead Rigor Catalyst II", "31651": "Small Warhead Rigor Catalyst II Blueprint", "31652": "Medium Warhead Rigor Catalyst II", "31653": "Medium Warhead Rigor Catalyst II Blueprint", "31656": "Small Projectile Ambit Extension I", "31657": "Small Projectile Ambit Extension I Blueprint", "31658": "Medium Projectile Ambit Extension I", "31659": "Medium Projectile Ambit Extension I Blueprint", "31662": "Small Projectile Ambit Extension II", "31663": "Small Projectile Ambit Extension II Blueprint", "31664": "Medium Projectile Ambit Extension II", "31665": "Medium Projectile Ambit Extension II Blueprint", "31668": "Small Projectile Burst Aerator I", "31669": "Small Projectile Burst Aerator I Blueprint", "31670": "Medium Projectile Burst Aerator I", "31671": "Medium Projectile Burst Aerator I Blueprint", "31674": "Small Projectile Burst Aerator II", "31675": "Small Projectile Burst Aerator II Blueprint", "31676": "Medium Projectile Burst Aerator II", "31677": "Medium Projectile Burst Aerator II Blueprint", "31680": "Small Projectile Collision Accelerator I", "31681": "Small Projectile Collision Accelerator I Blueprint", "31682": "Medium Projectile Collision Accelerator I", "31683": "Medium Projectile Collision Accelerator I Blueprint", "31686": "Small Projectile Collision Accelerator II", "31687": "Small Projectile Collision Accelerator II Blueprint", "31688": "Medium Projectile Collision Accelerator II", "31689": "Medium Projectile Collision Accelerator II Blueprint", "31692": "Small Projectile Locus Coordinator I", "31693": "Small Projectile Locus Coordinator I Blueprint", "31694": "Medium Projectile Locus Coordinator I", "31695": "Medium Projectile Locus Coordinator I Blueprint", "31698": "Small Projectile Locus Coordinator II", "31699": "Small Projectile Locus Coordinator II Blueprint", "31700": "Medium Projectile Locus Coordinator II", "31701": "Medium Projectile Locus Coordinator II Blueprint", "31704": "Small Projectile Metastasis Adjuster I", "31705": "Small Projectile Metastasis Adjuster I Blueprint", "31706": "Medium Projectile Metastasis Adjuster I", "31707": "Medium Projectile Metastasis Adjuster I Blueprint", "31710": "Small Projectile Metastasis Adjuster II", "31711": "Small Projectile Metastasis Adjuster II Blueprint", "31712": "Medium Projectile Metastasis Adjuster II", "31713": "Medium Projectile Metastasis Adjuster II Blueprint", "31716": "Small Anti-EM Screen Reinforcer I", "31717": "Small Anti-EM Screen Reinforcer I Blueprint", "31718": "Medium Anti-EM Screen Reinforcer I", "31719": "Medium Anti-EM Screen Reinforcer I Blueprint", "31722": "Small Anti-EM Screen Reinforcer II", "31723": "Small Anti-EM Screen Reinforcer II Blueprint", "31724": "Medium Anti-EM Screen Reinforcer II", "31725": "Medium Anti-EM Screen Reinforcer II Blueprint", "31728": "Small Anti-Explosive Screen Reinforcer I", "31729": "Small Anti-Explosive Screen Reinforcer I Blueprint", "31730": "Medium Anti-Explosive Screen Reinforcer I", "31731": "Medium Anti-Explosive Screen Reinforcer I Blueprint", "31734": "Small Anti-Explosive Screen Reinforcer II", "31735": "Small Anti-Explosive Screen Reinforcer II Blueprint", "31736": "Medium Anti-Explosive Screen Reinforcer II", "31737": "Medium Anti-Explosive Screen Reinforcer II Blueprint", "31740": "Small Anti-Kinetic Screen Reinforcer I", "31741": "Small Anti-Kinetic Screen Reinforcer I Blueprint", "31742": "Medium Anti-Kinetic Screen Reinforcer I", "31743": "Medium Anti-Kinetic Screen Reinforcer I Blueprint", "31746": "Small Anti-Kinetic Screen Reinforcer II", "31747": "Small Anti-Kinetic Screen Reinforcer II Blueprint", "31748": "Medium Anti-Kinetic Screen Reinforcer II", "31749": "Medium Anti-Kinetic Screen Reinforcer II Blueprint", "31752": "Small Anti-Thermal Screen Reinforcer I", "31753": "Small Anti-Thermal Screen Reinforcer I Blueprint", "31754": "Medium Anti-Thermal Screen Reinforcer I", "31755": "Medium Anti-Thermal Screen Reinforcer I Blueprint", "31758": "Small Anti-Thermal Screen Reinforcer II", "31759": "Small Anti-Thermal Screen Reinforcer II Blueprint", "31760": "Medium Anti-Thermal Screen Reinforcer II", "31761": "Medium Anti-Thermal Screen Reinforcer II Blueprint", "31764": "Small Core Defense Capacitor Safeguard I", "31765": "Small Core Defense Capacitor Safeguard I Blueprint", "31766": "Medium Core Defense Capacitor Safeguard I", "31767": "Medium Core Defense Capacitor Safeguard I Blueprint", "31770": "Small Core Defense Capacitor Safeguard II", "31771": "Small Core Defense Capacitor Safeguard II Blueprint", "31772": "Medium Core Defense Capacitor Safeguard II", "31773": "Medium Core Defense Capacitor Safeguard II Blueprint", "31776": "Small Core Defense Charge Economizer I", "31777": "Small Core Defense Charge Economizer I Blueprint", "31778": "Medium Core Defense Charge Economizer I", "31779": "Medium Core Defense Charge Economizer I Blueprint", "31782": "Small Core Defense Charge Economizer II", "31783": "Small Core Defense Charge Economizer II Blueprint", "31784": "Medium Core Defense Charge Economizer II", "31785": "Medium Core Defense Charge Economizer II Blueprint", "31788": "Small Core Defense Field Extender I", "31789": "Small Core Defense Field Extender I Blueprint", "31790": "Medium Core Defense Field Extender I", "31791": "Medium Core Defense Field Extender I Blueprint", "31794": "Small Core Defense Field Extender II", "31795": "Small Core Defense Field Extender II Blueprint", "31796": "Medium Core Defense Field Extender II", "31797": "Medium Core Defense Field Extender II Blueprint", "31800": "Small Core Defense Field Purger I", "31801": "Small Core Defense Field Purger I Blueprint", "31802": "Medium Core Defense Field Purger I", "31803": "Medium Core Defense Field Purger I Blueprint", "31810": "Small Core Defense Field Purger II", "31811": "Small Core Defense Field Purger II Blueprint", "31812": "Medium Core Defense Field Purger II", "31813": "Medium Core Defense Field Purger II Blueprint", "31816": "Small Core Defense Operational Solidifier I", "31817": "Small Core Defense Operational Solidifier I Blueprint", "31818": "Medium Core Defense Operational Solidifier I", "31819": "Medium Core Defense Operational Solidifier I Blueprint", "31822": "Small Core Defense Operational Solidifier II", "31823": "Small Core Defense Operational Solidifier II Blueprint", "31824": "Medium Core Defense Operational Solidifier II", "31825": "Medium Core Defense Operational Solidifier II Blueprint", "31864": "Imperial Navy Acolyte", "31866": "Imperial Navy Infiltrator", "31868": "Imperial Navy Curator", "31870": "Imperial Navy Praetor", "31872": "Caldari Navy Hornet", "31874": "Caldari Navy Vespa", "31876": "Caldari Navy Wasp", "31878": "Caldari Navy Warden", "31880": "Federation Navy Hobgoblin", "31882": "Federation Navy Hammerhead", "31884": "Federation Navy Ogre", "31886": "Federation Navy Garde", "31888": "Republic Fleet Warrior", "31890": "Republic Fleet Valkyrie", "31892": "Republic Fleet Berserker", "31894": "Republic Fleet Bouncer", "31896": "Imperial Navy 100mm Reinforced Steel Plates", "31898": "Federation Navy 100mm Reinforced Steel Plates", "31900": "Imperial Navy 1600mm Reinforced Steel Plates", "31902": "Federation Navy 1600mm Reinforced Steel Plates", "31904": "Imperial Navy 200mm Reinforced Steel Plates", "31906": "Federation Navy 200mm Reinforced Steel Plates", "31908": "Imperial Navy 400mm Reinforced Steel Plates", "31910": "Federation Navy 400mm Reinforced Steel Plates", "31916": "Imperial Navy 800mm Reinforced Steel Plates", "31918": "Federation Navy 800mm Reinforced Steel Plates", "31922": "Caldari Navy Small Shield Extender", "31924": "Republic Fleet Small Shield Extender", "31926": "Caldari Navy Medium Shield Extender", "31928": "Republic Fleet Medium Shield Extender", "31930": "Caldari Navy Large Shield Extender", "31932": "Republic Fleet Large Shield Extender", "31936": "Navy Micro Auxiliary Power Core", "31942": "Federation Navy Omnidirectional Tracking Link", "31944": "Republic Fleet Target Painter", "31946": "Imperial Navy Large Energy Transfer Array", "31948": "Imperial Navy Medium Energy Transfer Array", "354850": "Clone Reanimation Unit ", "31950": "Imperial Navy Small Energy Transfer Array", "31952": "Caldari Navy Power Diagnostic System", "31954": "Grail Alpha", "31955": "Grail Beta", "31956": "Grail Delta", "31957": "Grail Epsilon", "31958": "Grail Gamma", "31959": "Grail Omega", "31960": "Mina Darabi", "31962": "Talon Alpha", "31963": "Talon Beta", "31964": "Talon Delta", "31965": "Talon Epsilon", "31966": "Talon Gamma", "31967": "Talon Omega", "31968": "Spur Alpha", "31969": "Spur Beta", "31970": "Spur Delta", "31971": "Spur Epsilon", "31972": "Spur Gamma", "31973": "Spur Omega", "31974": "Jackal Alpha", "31975": "Jackal Beta", "31976": "Jackal Delta", "31977": "Jackal Epsilon", "31978": "Jackal Gamma", "31979": "Jackal Omega", "31982": "Navy Cap Booster 100", "354856": "Small Missile Installation ", "31990": "Navy Cap Booster 150", "354857": "Small GA Railgun Installation ", "354858": "Small CA Railgun Installation ", "31998": "Navy Cap Booster 200", "354859": "Small Blaster Installation ", "32006": "Navy Cap Booster 400", "32014": "Navy Cap Booster 800", "32020": "Rahsa's Security Card", "32025": "Small Drone Control Range Augmentor I", "32026": "Small Drone Control Range Augmentor I Blueprint", "32027": "Medium Drone Control Range Augmentor I", "32028": "Medium Drone Control Range Augmentor I Blueprint", "32029": "Small Drone Control Range Augmentor II", "32030": "Small Drone Control Range Augmentor II Blueprint", "32031": "Medium Drone Control Range Augmentor II", "32032": "Medium Drone Control Range Augmentor II Blueprint", "32033": "Small Drone Durability Enhancer I", "32034": "Small Drone Durability Enhancer I Blueprint", "32035": "Medium Drone Durability Enhancer I", "32036": "Medium Drone Durability Enhancer I Blueprint", "32037": "Small Drone Durability Enhancer II", "32038": "Small Drone Durability Enhancer II Blueprint", "32039": "Medium Drone Durability Enhancer II", "32040": "Medium Drone Durability Enhancer II Blueprint", "32041": "Small Drone Mining Augmentor I", "32042": "Small Drone Mining Augmentor I Blueprint", "32043": "Medium Drone Mining Augmentor I", "32044": "Medium Drone Mining Augmentor I Blueprint", "32045": "Small Drone Mining Augmentor II", "32046": "Small Drone Mining Augmentor II Blueprint", "32047": "Medium Drone Mining Augmentor II", "32048": "Medium Drone Mining Augmentor II Blueprint", "32049": "Small Drone Repair Augmentor I", "32050": "Small Drone Repair Augmentor I Blueprint", "32051": "Medium Drone Repair Augmentor I", "32052": "Medium Drone Repair Augmentor I Blueprint", "32053": "Small Drone Repair Augmentor II", "32054": "Small Drone Repair Augmentor II Blueprint", "32055": "Medium Drone Repair Augmentor II", "32056": "Medium Drone Repair Augmentor II Blueprint", "32057": "Small Drone Speed Augmentor I", "32058": "Small Drone Speed Augmentor I Blueprint", "32059": "Medium Drone Speed Augmentor I", "32060": "Medium Drone Speed Augmentor I Blueprint", "32061": "Small Drone Speed Augmentor II", "32062": "Small Drone Speed Augmentor II Blueprint", "32063": "Medium Drone Speed Augmentor II", "32064": "Medium Drone Speed Augmentor II Blueprint", "32066": "Small EW Drone Range Augmentor I Blueprint", "32069": "Small Drone Scope Chip I", "32070": "Small Drone Scope Chip I Blueprint", "32071": "Medium Drone Scope Chip I", "32072": "Medium Drone Scope Chip I Blueprint", "32073": "Small Drone Scope Chip II", "32074": "Small Drone Scope Chip II Blueprint", "32075": "Medium Drone Scope Chip II", "32076": "Medium Drone Scope Chip II Blueprint", "32078": "Small EW Drone Range Augmentor II Blueprint", "32081": "Small Sentry Damage Augmentor I", "32082": "Small Sentry Damage Augmentor I Blueprint", "32083": "Medium Sentry Damage Augmentor I", "32084": "Medium Sentry Damage Augmentor I Blueprint", "32085": "Small Sentry Damage Augmentor II", "32086": "Small Sentry Damage Augmentor II Blueprint", "32087": "Medium Sentry Damage Augmentor II", "32088": "Medium Sentry Damage Augmentor II Blueprint", "32089": "Small Stasis Drone Augmentor I", "32090": "Small Stasis Drone Augmentor I Blueprint", "32091": "Medium Stasis Drone Augmentor I", "32092": "Medium Stasis Drone Augmentor I Blueprint", "32093": "Small Stasis Drone Augmentor II", "32094": "Small Stasis Drone Augmentor II Blueprint", "32095": "Medium Stasis Drone Augmentor II", "32096": "Medium Stasis Drone Augmentor II Blueprint", "32097": "Rahsa, Sansha Commander", "32099": "Olfei Medallion", "32101": "Low-grade Grail Alpha", "32102": "Low-grade Grail Beta", "32103": "Low-grade Grail Delta", "32104": "Low-grade Grail Epsilon", "32105": "Low-grade Grail Gamma", "32106": "Sansha Command Signal Receiver", "32107": "Low-grade Spur Alpha", "32108": "Low-grade Spur Beta", "32109": "Low-grade Spur Delta", "32110": "Low-grade Spur Epsilon", "32111": "Low-grade Spur Gamma", "32112": "Low-grade Talon Alpha", "32113": "Low-grade Talon Beta", "32114": "Low-grade Talon Delta", "32115": "Low-grade Talon Epsilon", "32116": "Low-grade Talon Gamma", "32117": "Low-grade Jackal Alpha", "32118": "Low-grade Jackal Beta", "32119": "Low-grade Jackal Delta", "32120": "Low-grade Jackal Epsilon", "32121": "Low-grade Jackal Gamma", "32122": "Low-grade Grail Omega", "32123": "Low-grade Jackal Omega", "32124": "Low-grade Spur Omega", "32125": "Low-grade Talon Omega", "32126": "Homemade Sansha Beacon", "354884": "Nanite Injector", "352415": "Heavy Type-I", "32189": "Shanty Town Gate Clearance", "32193": "The Ringmaster", "32198": "Destablizer Datacore", "32200": "Covert Recording Device", "32201": "Archives Passkey", "32202": "Hauteker Memoirs", "32204": "Wildfire Khumaak", "32207": "Freki", "32209": "Mimir", "32218": "Encrypted Data Fragment", "32220": "Ralie Ardanne's Belongings", "32223": "Kidnapping Evidence", "32225": "Encoded Message", "32226": "Territorial Claim Unit", "32228": "Vira Mikano", "32229": "Singed Datapad", "32234": "Encrypted Transmission", "32235": "Tattered Doll", "32237": "Octomet Dog Tags", "32241": "Drive Cluster EDF-285", "32245": "Hyasyoda Mobile Laboratory", "32246": "RSS Core Scanner Probe", "32248": "Nugoehuvi Synth Blue Pill Booster", "32250": "Sovereignty Blockade Unit", "32252": "Amphere 9", "32254": "Imperial Navy Modified 'Noble' Implant", "32255": "Sansha Modified 'Gnome' Implant", "32257": "Report R:081-9560", "32258": "Report R:081-9568 ", "32259": "Operation Stillwater: Synopsis", "32260": "Syndicate Cloaking Device", "32262": "Black Eagle Drone Link Augmentor", "32265": "Spintric Coin", "32267": "Ishukone Operational Reports", "32270": "Artificial Miyan", "354904": "Enhanced Heavy Damage Modifier", "32277": "Deteis Family", "354905": "Complex Heavy Damage Modifier", "32280": "Blood Obsidian Orb", "32283": "Engraved Blood Obsidian tablet", "32284": "St. Arzad", "32285": "The Benevolent", "32286": "The Education of the Starkmanir", "32287": "Hand of Arzad", "32288": "The Fire in Our Hearts", "32289": "Holoreel: Wanted for Love", "32290": "Obsidian Datacore", "354907": "Enhanced Sidearm Damage Modifier", "32292": "Ralie Ardanne", "32294": "Book of St. Arzad", "32305": "Armageddon Navy Issue", "32307": "Dominix Navy Issue", "32309": "Scorpion Navy Issue", "32311": "Typhoon Fleet Issue", "354912": "'Stimulus' Complex Shield Extender", "32325": "Cyclops", "32326": "Cyclops Blueprint", "354913": "'Static' Complex Shield Recharger", "354914": "'Iris' Complex Kinetic Catalyzer", "32339": "Fighter Bombers", "32340": "Malleus", "32341": "Malleus Blueprint", "32342": "Tyrfing", "32343": "Tyrfing Blueprint", "32344": "Mantis", "32345": "Mantis Blueprint", "32350": "Proof of Discovery: Anomalies", "32351": "Proof of Discovery: Gravimetric", "32352": "Proof of Discovery: Gravimetric Passkey", "354918": "'Neuron' Basic Cardiac Regulator", "354919": "'Nucleus' Enhanced Cardiac Regulator", "32365": "Proof of Discovery: Magnetometric", "32366": "Proof of Discovery: Radar", "32371": "Capital Ship Design Dictator", "32372": "Minedrill E518 Crew", "32374": "Holoreel GRS-81A", "32375": "Proof of Discovery: Ladar Passkey", "32376": "Proof of Discovery: Ladar", "32383": "Guristas Dirty' Explosive System", "354923": "'Sanction' Enhanced Myofibril Stimulant", "32389": "Dread Guristas Strike Force", "32393": "Sealed Research Cache", "32398": "Lieutenant Kipo Foxfire Tekira", "32403": "Caldari Navy Overlay Transponder", "354926": "Nitrous Fuel Injection", "32407": "Holoreel Torture Log I15B", "32408": "Correspondence Log KL-513", "354927": "[TEST] Onikuma Boost", "32413": "Shadow Serpentis Remote Sensor Dampener", "32414": "Domination Target Painter", "32416": "Dark Blood Tracking Disruptor", "32417": "True Sansha Tracking Disruptor", "32418": "Boundless Creations Security Codes", "32422": "Advanced Logistics Network", "354929": "GLU-5 Tactical Assault Rifle", "354930": "Duvolle Tactical Assault Rifle", "355697": "[DEV] KRY-90 Scrambler Rifle", "32435": "Citadel Cruise Missiles", "32436": "Scourge Citadel Cruise Missile", "32437": "Scourge Citadel Cruise Missile Blueprint", "32438": "Nova Citadel Cruise Missile", "32439": "Nova Citadel Cruise Missile Blueprint", "32440": "Inferno Citadel Cruise Missile", "32441": "Inferno Citadel Cruise Missile Blueprint", "32442": "Mjolnir Citadel Cruise Missile", "32443": "Mjolnir Citadel Cruise Missile Blueprint", "32444": "Citadel Cruise Launcher I", "32445": "Citadel Cruise Launcher I Blueprint", "354934": "Assault - Sniper", "32458": "Infrastructure Hub", "32459": "Civilian Warp Disruptor", "32461": "Civilian Light Missile Launcher", "32463": "Civilian Scourge Light Missile", "32465": "Civilian Hobgoblin", "32467": "Civilian Remote Shield Transporter", "32469": "Civilian Remote Armor Repair System", "354937": "Militia Shotgun", "354956": "CRG-3 Shotgun", "32634": "Default Point Light", "32643": "swarren"} \ No newline at end of file diff --git a/public/data/systems.json b/public/data/systems.json new file mode 100644 index 0000000..3a32022 --- /dev/null +++ b/public/data/systems.json @@ -0,0 +1 @@ +{"31000007": "J105443", "31000008": "J100744", "31000009": "J225046", "31000010": "J160837", "31000011": "J114700", "31000012": "J134914", "31000013": "J102655", "31000014": "J134312", "31000015": "J205818", "31000016": "J113434", "31000017": "J105711", "31000018": "J164218", "31000019": "J154535", "31000020": "J111301", "31000021": "J135038", "31000022": "J121358", "31000023": "J222914", "31000024": "J155429", "31000025": "J204640", "31000026": "J162604", "31000027": "J164807", "31000028": "J233317", "31000029": "J155023", "31000030": "J112628", "31000031": "J153001", "31000032": "J143204", "31000033": "J101729", "31000034": "J221203", "31000035": "J125428", "31000036": "J131854", "31000037": "J160534", "31000038": "J144855", "31000039": "J101453", "31000040": "J144913", "31000041": "J144530", "31000042": "J135411", "31000043": "J125713", "31000044": "J105521", "31000045": "J224324", "31000046": "J163203", "31000047": "J171818", "31000048": "J145337", "31000049": "J150131", "31000050": "J130842", "31000051": "J145406", "31000052": "J103404", "31000053": "J112124", "31000054": "J124926", "31000055": "J232605", "31000056": "J144938", "31000057": "J233828", "31000058": "J130714", "31000059": "J142701", "31000060": "J154226", "31000061": "J125843", "31000062": "J155459", "31000063": "J225555", "31000064": "J115549", "31000065": "J140741", "31000066": "J104140", "31000067": "J101757", "31000068": "J100250", "31000069": "J113721", "31000070": "J105039", "31000071": "J233550", "31000072": "J114033", "31000073": "J105936", "31000074": "J140121", "31000075": "J154029", "31000076": "J101336", "31000077": "J160039", "31000078": "J161257", "31000079": "J144303", "31000080": "J121131", "31000081": "J113653", "31000082": "J123454", "31000083": "J110750", "31000084": "J151106", "31000085": "J100040", "31000086": "J223733", "31000087": "J110431", "31000088": "J134446", "31000089": "J143202", "31000090": "J210436", "31000091": "J133030", "31000092": "J170645", "31000093": "J103151", "31000094": "J222206", "31000095": "J130602", "31000096": "J123708", "31000097": "J123831", "31000098": "J164927", "31000099": "J134143", "31000100": "J214534", "31000101": "J135250", "31000102": "J111707", "31000103": "J135245", "31000104": "J101408", "31000105": "J215117", "31000106": "J141019", "31000107": "J102206", "31000108": "J125903", "31000109": "J134939", "31000110": "J162641", "31000111": "J152537", "31000112": "J224442", "31000113": "J104138", "31000114": "J121516", "31000115": "J114540", "31000116": "J155013", "31000117": "J144450", "31000118": "J141239", "31000119": "J115545", "31000120": "J114905", "31000121": "J120522", "31000122": "J172907", "31000123": "J164550", "31000124": "J141812", "31000125": "J134637", "31000126": "J134132", "31000127": "J125011", "31000128": "J105942", "31000129": "J171653", "31000130": "J110213", "31000131": "J115048", "31000132": "J174405", "31000133": "J123111", "31000134": "J123047", "31000135": "J231541", "31000136": "J215900", "31000137": "J110651", "31000138": "J140602", "31000139": "J163804", "31000140": "J125209", "31000141": "J140831", "31000142": "J161811", "31000143": "J112913", "31000144": "J105632", "31000145": "J160710", "31000146": "J160835", "31000147": "J122659", "31000148": "J130931", "31000149": "J161115", "31000150": "J120734", "31000151": "J110906", "31000152": "J121418", "31000153": "J113820", "31000154": "J113506", "31000155": "J172240", "31000156": "J110101", "31000157": "J110108", "31000158": "J213555", "31000159": "J144704", "31000160": "J115815", "31000161": "J133653", "31000162": "J171700", "31000163": "J104628", "31000164": "J114546", "31000165": "J235419", "31000166": "J204503", "31000167": "J215417", "31000168": "J110545", "31000169": "J153536", "31000170": "J150407", "31000171": "J153530", "31000172": "J131232", "31000173": "J101020", "31000174": "J133613", "31000175": "J165901", "31000176": "J152006", "31000177": "J160345", "31000178": "J134330", "31000179": "J213342", "31000180": "J150745", "31000181": "J165056", "31000182": "J150827", "31000183": "J144632", "31000184": "J102630", "31000185": "J133335", "31000186": "J125925", "31000187": "J142617", "31000188": "J150818", "31000189": "J114420", "31000190": "J112250", "31000191": "J155935", "31000192": "J115738", "31000193": "J232715", "31000194": "J110051", "31000195": "J152928", "31000196": "J132216", "31000197": "J132758", "31000198": "J134145", "31000199": "J102849", "31000200": "J120335", "31000201": "J104439", "31000202": "J122717", "31000203": "J101817", "31000204": "J131551", "31000205": "J115200", "31000206": "J155029", "31000207": "J223703", "31000208": "J233359", "31000209": "J114107", "31000210": "J152014", "31000211": "J100211", "31000212": "J104103", "31000213": "J171019", "31000214": "J114313", "31000215": "J130542", "31000216": "J114719", "31000217": "J130322", "31000218": "J161524", "31000219": "J162858", "31000220": "J121158", "31000221": "J113050", "31000222": "J141514", "31000223": "J220654", "31000224": "J162118", "31000225": "J231004", "31000226": "J120621", "31000227": "J151601", "31000228": "J105837", "31000229": "J143133", "31000230": "J100422", "31000231": "J104335", "31000232": "J105700", "31000233": "J215431", "31000234": "J143628", "31000235": "J141150", "31000236": "J163743", "31000237": "J161509", "31000238": "J150629", "31000239": "J141017", "31000240": "J130045", "31000241": "J123748", "31000242": "J124051", "31000243": "J151141", "31000244": "J112129", "31000245": "J213653", "31000246": "J143649", "31000247": "J223855", "31000248": "J140019", "31000249": "J110605", "31000250": "J122843", "31000251": "J205004", "31000252": "J122114", "31000253": "J163533", "31000254": "J151518", "31000255": "J122712", "31000256": "J143002", "31000257": "J160307", "31000258": "J213932", "31000259": "J102414", "31000260": "J170949", "31000261": "J235001", "31000262": "J103320", "31000263": "J141038", "31000264": "J172003", "31000265": "J124215", "31000266": "J215754", "31000267": "J102837", "31000268": "J130155", "31000269": "J170544", "31000270": "J142649", "31000271": "J150539", "31000272": "J163156", "31000273": "J120338", "31000274": "J142941", "31000275": "J110126", "31000276": "J155504", "31000277": "J144228", "31000278": "J223650", "31000279": "J102734", "31000280": "J105232", "31000281": "J133128", "31000282": "J140135", "31000283": "J115216", "31000284": "J153311", "31000285": "J164756", "31000286": "J165216", "31000287": "J114914", "31000288": "J212504", "31000289": "J120256", "31000290": "J143421", "31000291": "J223026", "31000292": "J102918", "31000293": "J142136", "31000294": "J134540", "31000295": "J124451", "31000296": "J102749", "31000297": "J165741", "31000298": "J142119", "31000299": "J105642", "31000300": "J154354", "31000301": "J102005", "31000302": "J133052", "31000303": "J103341", "31000304": "J142114", "31000305": "J152353", "31000306": "J120431", "31000307": "J103547", "31000308": "J161107", "31000309": "J160334", "31000310": "J101845", "31000311": "J171805", "31000312": "J134610", "31000313": "J173842", "31000314": "J155203", "31000315": "J121935", "31000316": "J105013", "31000317": "J161846", "31000318": "J113632", "31000319": "J170106", "31000320": "J123828", "31000321": "J172147", "31000322": "J164759", "31000323": "J212957", "31000324": "J212338", "31000325": "J115823", "31000326": "J112744", "31000327": "J121941", "31000328": "J125650", "31000329": "J161344", "31000330": "J134833", "31000331": "J143517", "31000332": "J133245", "31000333": "J113918", "31000334": "J161644", "31000335": "J152257", "31000336": "J155833", "31000337": "J151332", "31000338": "J231306", "31000339": "J171312", "31000340": "J112406", "31000341": "J212904", "31000342": "J111811", "31000343": "J104201", "31000344": "J150216", "31000345": "J112934", "31000346": "J115808", "31000347": "J121915", "31000348": "J133259", "31000349": "J150325", "31000350": "J122224", "31000351": "J131702", "31000352": "J141807", "31000353": "J142327", "31000354": "J144822", "31000355": "J164417", "31000356": "J125227", "31000357": "J113057", "31000358": "J101524", "31000359": "J124508", "31000360": "J141156", "31000361": "J222822", "31000362": "J104253", "31000363": "J144153", "31000364": "J103406", "31000365": "J133210", "31000366": "J111740", "31000367": "J125956", "31000368": "J105951", "31000369": "J141857", "31000370": "J120726", "31000371": "J155737", "31000372": "J144605", "31000373": "J144218", "31000374": "J114835", "31000375": "J134006", "31000376": "J160941", "31000377": "J111557", "31000378": "J124219", "31000379": "J155620", "31000380": "J114346", "31000381": "J153532", "31000382": "J211936", "31000383": "J211036", "31000384": "J145805", "31000385": "J151548", "31000386": "J160412", "31000387": "J104008", "31000388": "J145715", "31000389": "J235321", "31000390": "J103339", "31000391": "J132009", "31000392": "J210548", "31000393": "J235408", "31000394": "J122821", "31000395": "J121925", "31000396": "J151047", "31000397": "J111011", "31000398": "J154212", "31000399": "J130256", "31000400": "J113230", "31000401": "J132557", "31000402": "J233534", "31000403": "J232801", "31000404": "J153627", "31000405": "J134800", "31000406": "J111508", "31000407": "J143639", "31000408": "J160753", "31000409": "J151231", "31000410": "J142547", "31000411": "J142306", "31000412": "J210422", "31000413": "J112137", "31000414": "J160715", "31000415": "J145931", "31000416": "J103217", "31000417": "J143505", "31000418": "J142533", "31000419": "J112146", "31000420": "J103839", "31000421": "J152433", "31000422": "J110408", "31000423": "J205546", "31000424": "J152801", "31000425": "J120308", "31000426": "J103948", "31000427": "J112820", "31000428": "J231837", "31000429": "J110043", "31000430": "J121454", "31000431": "J230959", "31000432": "J103408", "31000433": "J162720", "31000434": "J132418", "31000435": "J164235", "31000436": "J143429", "31000437": "J134654", "31000438": "J112801", "31000439": "J110656", "31000440": "J134951", "31000441": "J155307", "31000442": "J131204", "31000443": "J213737", "31000444": "J235117", "31000445": "J164938", "31000446": "J120310", "31000447": "J144838", "31000448": "J101307", "31000449": "J172354", "31000450": "J235447", "31000451": "J124023", "31000452": "J171424", "31000453": "J150921", "31000454": "J171518", "31000455": "J140012", "31000456": "J155616", "31000457": "J234557", "31000458": "J162700", "31000459": "J103716", "31000460": "J100640", "31000461": "J151250", "31000462": "J141332", "31000463": "J211915", "31000464": "J144546", "31000465": "J145759", "31000466": "J103422", "31000467": "J130222", "31000468": "J165357", "31000469": "J105321", "31000470": "J105803", "31000471": "J130209", "31000472": "J122832", "31000473": "J143359", "31000474": "J100447", "31000475": "J115651", "31000476": "J134323", "31000477": "J160014", "31000478": "J110823", "31000479": "J100246", "31000480": "J131221", "31000481": "J145155", "31000482": "J114405", "31000483": "J215537", "31000484": "J172551", "31000485": "J131107", "31000486": "J113108", "31000487": "J172556", "31000488": "J123450", "31000489": "J135809", "31000490": "J212319", "31000491": "J104210", "31000492": "J170038", "31000493": "J104115", "31000494": "J114758", "31000495": "J231517", "31000496": "J114055", "31000497": "J120619", "31000498": "J213058", "31000499": "J162430", "31000500": "J120928", "31000501": "J132918", "31000502": "J105203", "31000503": "J104328", "31000504": "J130854", "31000505": "J164130", "31000506": "J110316", "31000507": "J122331", "31000508": "J133419", "31000509": "J150137", "31000510": "J140112", "31000511": "J125721", "31000512": "J154515", "31000513": "J135703", "31000514": "J102347", "31000515": "J234942", "31000516": "J134618", "31000517": "J154858", "31000518": "J132052", "31000519": "J114046", "31000520": "J150859", "31000521": "J151615", "31000522": "J122246", "31000523": "J132559", "31000524": "J230207", "31000525": "J140308", "31000526": "J140642", "31000527": "J114306", "31000528": "J154606", "31000529": "J135910", "31000530": "J132024", "31000531": "J160311", "31000532": "J142239", "31000533": "J101149", "31000534": "J154538", "31000535": "J144426", "31000536": "J150341", "31000537": "J122124", "31000538": "J112614", "31000539": "J145316", "31000540": "J215736", "31000541": "J163138", "31000542": "J100033", "31000543": "J170552", "31000544": "J104820", "31000545": "J131240", "31000546": "J120442", "31000547": "J105000", "31000548": "J164507", "31000549": "J144956", "31000550": "J114712", "31000551": "J211908", "31000552": "J150700", "31000553": "J164931", "31000554": "J121412", "31000555": "J145211", "31000556": "J174449", "31000557": "J133015", "31000558": "J134534", "31000559": "J153229", "31000560": "J133557", "31000561": "J150807", "31000562": "J110413", "31000563": "J105352", "31000564": "J161246", "31000565": "J125927", "31000566": "J130650", "31000567": "J142826", "31000568": "J152737", "31000569": "J225316", "31000570": "J163146", "31000571": "J134107", "31000572": "J104850", "31000573": "J131124", "31000574": "J123435", "31000575": "J150853", "31000576": "J170558", "31000577": "J214238", "31000578": "J110538", "31000579": "J143336", "31000580": "J232044", "31000581": "J145225", "31000582": "J231210", "31000583": "J223853", "31000584": "J234542", "31000585": "J115911", "31000586": "J135155", "31000587": "J152825", "31000588": "J115334", "31000589": "J114749", "31000590": "J134730", "31000591": "J105544", "31000592": "J233129", "31000593": "J114528", "31000594": "J103351", "31000595": "J152322", "31000596": "J132617", "31000597": "J104517", "31000598": "J132401", "31000599": "J142918", "31000600": "J163902", "31000601": "J214843", "31000602": "J173322", "31000603": "J120252", "31000604": "J232305", "31000605": "J123907", "31000606": "J144057", "31000607": "J223320", "31000608": "J153247", "31000609": "J204623", "31000610": "J223348", "31000611": "J115734", "31000612": "J154735", "31000613": "J115314", "31000614": "J164816", "31000615": "J132712", "31000616": "J124530", "31000617": "J134949", "31000618": "J132458", "31000619": "J160927", "31000620": "J150836", "31000621": "J102222", "31000622": "J103144", "31000623": "J135629", "31000624": "J115530", "31000625": "J133111", "31000626": "J150904", "31000627": "J111846", "31000628": "J152950", "31000629": "J120704", "31000630": "J104718", "31000631": "J131808", "31000632": "J231644", "31000633": "J232147", "31000634": "J132048", "31000635": "J172350", "31000636": "J145619", "31000637": "J163446", "31000638": "J140816", "31000639": "J141015", "31000640": "J101346", "31000641": "J212238", "31000642": "J235852", "31000643": "J134349", "31000644": "J204221", "31000645": "J110910", "31000646": "J131753", "31000647": "J113221", "31000648": "J152941", "31000649": "J144727", "31000650": "J143320", "31000651": "J155551", "31000652": "J162516", "31000653": "J135827", "31000654": "J131706", "31000655": "J214854", "31000656": "J150109", "31000657": "J103512", "31000658": "J121658", "31000659": "J143706", "31000660": "J235924", "31000661": "J103854", "31000662": "J214725", "31000663": "J101415", "31000664": "J122837", "31000665": "J125727", "31000666": "J142847", "31000667": "J155035", "31000668": "J102504", "31000669": "J160305", "31000670": "J151503", "31000671": "J142838", "31000672": "J131034", "31000673": "J214901", "31000674": "J113323", "31000675": "J112956", "31000676": "J104802", "31000677": "J100808", "31000678": "J100509", "31000679": "J142055", "31000680": "J135141", "31000681": "J151902", "31000682": "J235759", "31000683": "J164613", "31000684": "J225805", "31000685": "J112916", "31000686": "J115347", "31000687": "J224217", "31000688": "J110555", "31000689": "J143455", "31000690": "J111141", "31000691": "J104606", "31000692": "J222830", "31000693": "J123249", "31000694": "J115310", "31000695": "J143702", "31000696": "J223538", "31000697": "J131618", "31000698": "J215944", "31000699": "J121952", "31000700": "J121928", "31000701": "J105439", "31000702": "J150627", "31000703": "J121745", "31000704": "J141438", "31000705": "J214929", "31000706": "J130709", "31000707": "J103924", "31000708": "J211000", "31000709": "J123555", "31000710": "J151125", "31000711": "J123412", "31000712": "J112309", "31000713": "J123850", "31000714": "J163923", "31000715": "J143546", "31000716": "J130832", "31000717": "J221337", "31000718": "J113449", "31000719": "J212607", "31000720": "J165157", "31000721": "J142937", "31000722": "J120455", "31000723": "J122638", "31000724": "J161411", "31000725": "J124028", "31000726": "J134735", "31000727": "J142845", "31000728": "J140750", "31000729": "J104515", "31000730": "J113039", "31000731": "J111159", "31000732": "J105342", "31000733": "J121728", "31000734": "J115700", "31000735": "J143234", "31000736": "J122524", "31000737": "J124007", "31000738": "J150533", "31000739": "J143933", "31000740": "J225128", "31000741": "J133632", "31000742": "J131744", "31000743": "J125923", "31000744": "J161138", "31000745": "J125824", "31000746": "J223511", "31000747": "J134401", "31000748": "J214739", "31000749": "J104321", "31000750": "J115327", "31000751": "J154937", "31000752": "J112505", "31000753": "J102739", "31000754": "J171309", "31000755": "J133417", "31000756": "J124749", "31000757": "J122137", "31000758": "J140353", "31000759": "J104029", "31000760": "J151348", "31000761": "J163522", "31000762": "J131315", "31000763": "J114008", "31000764": "J233839", "31000765": "J112558", "31000766": "J114308", "31000767": "J130125", "31000768": "J173213", "31000769": "J160126", "31000770": "J154813", "31000771": "J215151", "31000772": "J144739", "31000773": "J102602", "31000774": "J120924", "31000775": "J212906", "31000776": "J101719", "31000777": "J101824", "31000778": "J153003", "31000779": "J105123", "31000780": "J122635", "31000781": "J152624", "31000782": "J224145", "31000783": "J163318", "31000784": "J144004", "31000785": "J122931", "31000786": "J173245", "31000787": "J145246", "31000788": "J124526", "31000789": "J165648", "31000790": "J134405", "31000791": "J213111", "31000792": "J135422", "31000793": "J153030", "31000794": "J120634", "31000795": "J102209", "31000796": "J123540", "31000797": "J112715", "31000798": "J162159", "31000799": "J122118", "31000800": "J105244", "31000801": "J123958", "31000802": "J223552", "31000803": "J232359", "31000804": "J171539", "31000805": "J100102", "31000806": "J154249", "31000807": "J105311", "31000808": "J210536", "31000809": "J151248", "31000810": "J131852", "31000811": "J141611", "31000812": "J113723", "31000813": "J121323", "31000814": "J144422", "31000815": "J140722", "31000816": "J141637", "31000817": "J112617", "31000818": "J150754", "31000819": "J102946", "31000820": "J115234", "31000821": "J145145", "31000822": "J145426", "31000823": "J122732", "31000824": "J144203", "31000825": "J140843", "31000826": "J155631", "31000827": "J235525", "31000828": "J121749", "31000829": "J162518", "31000830": "J132012", "31000831": "J102038", "31000832": "J150234", "31000833": "J112520", "31000834": "J165412", "31000835": "J151102", "31000836": "J133049", "31000837": "J161628", "31000838": "J134306", "31000839": "J131842", "31000840": "J232329", "31000841": "J164921", "31000842": "J203814", "31000843": "J151311", "31000844": "J101650", "31000845": "J165006", "31000846": "J103533", "31000847": "J101441", "31000848": "J124253", "31000849": "J232200", "31000850": "J144326", "31000851": "J124449", "31000852": "J100642", "31000853": "J133150", "31000854": "J164126", "31000855": "J171142", "31000856": "J145634", "31000857": "J151431", "31000858": "J233555", "31000859": "J100651", "31000860": "J132103", "31000861": "J121720", "31000862": "J210355", "31000863": "J125029", "31000864": "J103619", "31000865": "J165014", "31000866": "J124611", "31000867": "J150418", "31000868": "J145440", "31000869": "J113223", "31000870": "J234915", "31000871": "J162042", "31000872": "J112019", "31000873": "J162332", "31000874": "J125350", "31000875": "J101710", "31000876": "J223029", "31000877": "J234810", "31000878": "J135230", "31000879": "J111038", "31000880": "J160650", "31000881": "J114342", "31000882": "J152031", "31000883": "J113629", "31000884": "J220301", "31000885": "J102057", "31000886": "J124753", "31000887": "J114225", "31000888": "J105002", "31000889": "J111218", "31000890": "J111634", "31000891": "J105007", "31000892": "J205027", "31000893": "J111355", "31000894": "J101012", "31000895": "J161338", "31000896": "J170002", "31000897": "J104654", "31000898": "J124329", "31000899": "J114648", "31000900": "J131228", "31000901": "J110448", "31000902": "J144621", "31000903": "J153104", "31000904": "J100932", "31000905": "J114048", "31000906": "J115706", "31000907": "J123230", "31000908": "J152218", "31000909": "J123303", "31000910": "J102856", "31000911": "J151900", "31000912": "J124646", "31000913": "J153528", "31000914": "J112850", "31000915": "J102257", "31000916": "J142414", "31000917": "J165803", "31000918": "J115918", "31000919": "J222104", "31000920": "J124203", "31000921": "J112608", "31000922": "J161657", "31000923": "J111805", "31000924": "J113451", "31000925": "J141007", "31000926": "J164034", "31000927": "J101750", "31000928": "J165001", "31000929": "J111619", "31000930": "J140521", "31000931": "J140752", "31000932": "J143447", "31000933": "J142018", "31000934": "J105102", "31000935": "J124630", "31000936": "J165302", "31000937": "J143916", "31000938": "J221414", "31000939": "J153903", "31000940": "J103955", "31000941": "J210952", "31000942": "J134102", "31000943": "J140050", "31000944": "J131757", "31000945": "J140341", "31000946": "J111856", "31000947": "J102407", "31000948": "J151341", "31000949": "J110706", "31000950": "J133651", "31000951": "J123452", "31000952": "J102143", "31000953": "J220832", "31000954": "J160847", "31000955": "J125949", "31000956": "J164250", "31000957": "J212329", "31000958": "J112905", "31000959": "J144447", "31000960": "J113530", "31000961": "J103604", "31000962": "J142038", "31000963": "J130403", "31000964": "J132525", "31000965": "J103653", "31000966": "J154642", "31000967": "J163526", "31000968": "J212713", "31000969": "J132635", "31000970": "J114330", "31000971": "J224926", "31000972": "J113619", "31000973": "J214654", "31000974": "J151429", "31000975": "J111214", "31000976": "J113420", "31000977": "J135526", "31000978": "J164116", "31000979": "J214227", "31000980": "J164342", "31000981": "J151538", "31000982": "J125938", "31000983": "J165806", "31000984": "J122803", "31000985": "J113243", "31000986": "J134022", "31000987": "J152143", "31000988": "J170717", "31000989": "J121452", "31000990": "J124126", "31000991": "J173230", "31000992": "J164457", "31000993": "J112944", "31000994": "J115253", "31000995": "J100118", "31000996": "J100620", "31000997": "J145916", "31000998": "J223207", "31000999": "J144646", "31001000": "J142520", "31001001": "J230226", "31001002": "J150704", "31001003": "J225524", "31001004": "J133234", "31001005": "J125833", "31001006": "J104459", "31001007": "J164713", "31001008": "J135355", "31001009": "J220838", "31001010": "J225949", "31001011": "J130535", "31001012": "J111255", "31001013": "J121628", "31001014": "J221117", "31001015": "J115015", "31001016": "J172751", "31001017": "J134301", "31001018": "J104351", "31001019": "J144408", "31001020": "J220950", "31001021": "J165815", "31001022": "J120452", "31001023": "J142026", "31001024": "J111031", "31001025": "J130116", "31001026": "J111309", "31001027": "J122213", "31001028": "J170740", "31001029": "J113543", "31001030": "J170817", "31001031": "J123405", "31001032": "J125741", "31001033": "J114627", "31001034": "J155117", "31001035": "J165118", "31001036": "J141004", "31001037": "J174317", "31001038": "J145040", "31001039": "J171549", "31001040": "J100009", "31001041": "J124257", "31001042": "J154530", "31001043": "J152636", "31001044": "J100728", "31001045": "J115504", "31001046": "J104905", "31001047": "J125149", "31001048": "J172743", "31001049": "J111421", "31001050": "J152146", "31001051": "J111603", "31001052": "J114127", "31001053": "J113923", "31001054": "J123837", "31001055": "J125049", "31001056": "J161455", "31001057": "J124715", "31001058": "J124813", "31001059": "J120945", "31001060": "J155541", "31001061": "J105017", "31001062": "J154900", "31001063": "J164951", "31001064": "J162459", "31001065": "J141832", "31001066": "J115136", "31001067": "J112854", "31001068": "J222222", "31001069": "J124654", "31001070": "J132750", "31001071": "J170511", "31001072": "J155852", "31001073": "J121856", "31001074": "J131025", "31001075": "J122854", "31001076": "J132222", "31001077": "J203753", "31001078": "J130835", "31001079": "J134123", "31001080": "J133857", "31001081": "J171813", "31001082": "J143513", "31001083": "J112656", "31001084": "J154357", "31001085": "J154145", "31001086": "J100129", "31001087": "J155124", "31001088": "J133207", "31001089": "J124830", "31001090": "J144725", "31001091": "J170409", "31001092": "J103326", "31001093": "J160739", "31001094": "J133041", "31001095": "J205412", "31001096": "J145851", "31001097": "J132737", "31001098": "J130247", "31001099": "J151405", "31001100": "J131802", "31001101": "J221515", "31001102": "J142951", "31001103": "J101736", "31001104": "J233739", "31001105": "J221447", "31001106": "J145645", "31001107": "J153051", "31001108": "J141451", "31001109": "J131859", "31001110": "J144553", "31001111": "J145615", "31001112": "J223109", "31001113": "J132721", "31001114": "J103353", "31001115": "J173223", "31001116": "J104837", "31001117": "J163745", "31001118": "J101500", "31001119": "J224826", "31001120": "J230905", "31001121": "J110924", "31001122": "J122220", "31001123": "J165153", "31001124": "J204030", "31001125": "J134136", "31001126": "J113334", "31001127": "J125403", "31001128": "J162437", "31001129": "J235630", "31001130": "J105409", "31001131": "J163529", "31001132": "J152931", "31001133": "J131559", "31001134": "J143918", "31001135": "J104643", "31001136": "J212304", "31001137": "J154634", "31001138": "J172052", "31001139": "J135036", "31001140": "J134431", "31001141": "J121105", "31001142": "J120357", "31001143": "J101854", "31001144": "J232826", "31001145": "J154934", "31001146": "J170132", "31001147": "J114916", "31001148": "J142400", "31001149": "J115502", "31001150": "J121300", "31001151": "J223658", "31001152": "J124327", "31001153": "J220438", "31001154": "J144636", "31001155": "J113347", "31001156": "J150737", "31001157": "J152044", "31001158": "J142443", "31001159": "J164104", "31001160": "J155008", "31001161": "J114358", "31001162": "J122259", "31001163": "J125243", "31001164": "J114508", "31001165": "J125216", "31001166": "J113143", "31001167": "J101612", "31001168": "J101354", "31001169": "J100156", "31001170": "J110425", "31001171": "J133121", "31001172": "J165936", "31001173": "J213411", "31001174": "J231545", "31001175": "J121603", "31001176": "J222120", "31001177": "J231240", "31001178": "J164338", "31001179": "J142603", "31001180": "J212812", "31001181": "J164501", "31001182": "J144751", "31001183": "J214744", "31001184": "J135304", "31001185": "J223601", "31001186": "J103529", "31001187": "J161051", "31001188": "J224352", "31001189": "J113048", "31001190": "J140322", "31001191": "J152741", "31001192": "J222732", "31001193": "J171542", "31001194": "J205136", "31001195": "J121706", "31001196": "J143110", "31001197": "J110121", "31001198": "J104626", "31001199": "J212159", "31001200": "J151733", "31001201": "J103032", "31001202": "J150048", "31001203": "J113432", "31001204": "J134629", "31001205": "J113339", "31001206": "J122041", "31001207": "J130719", "31001208": "J204039", "31001209": "J101048", "31001210": "J114119", "31001211": "J110411", "31001212": "J104903", "31001213": "J151433", "31001214": "J143040", "31001215": "J133521", "31001216": "J163911", "31001217": "J204842", "31001218": "J135214", "31001219": "J131716", "31001220": "J225350", "31001221": "J105447", "31001222": "J144103", "31001223": "J165847", "31001224": "J121921", "31001225": "J212025", "31001226": "J145717", "31001227": "J113705", "31001228": "J132037", "31001229": "J224401", "31001230": "J152544", "31001231": "J114506", "31001232": "J231245", "31001233": "J151804", "31001234": "J105033", "31001235": "J214600", "31001236": "J152333", "31001237": "J131245", "31001238": "J151045", "31001239": "J160822", "31001240": "J125944", "31001241": "J173330", "31001242": "J115512", "31001243": "J161854", "31001244": "J122442", "31001245": "J114010", "31001246": "J153546", "31001247": "J141046", "31001248": "J160111", "31001249": "J101243", "31001250": "J214009", "31001251": "J152757", "31001252": "J164729", "31001253": "J171420", "31001254": "J232441", "31001255": "J131656", "31001256": "J135406", "31001257": "J230708", "31001258": "J120124", "31001259": "J132746", "31001260": "J212207", "31001261": "J104416", "31001262": "J104841", "31001263": "J172701", "31001264": "J104835", "31001265": "J113647", "31001266": "J144316", "31001267": "J114612", "31001268": "J130759", "31001269": "J164751", "31001270": "J131324", "31001271": "J230722", "31001272": "J134118", "31001273": "J164223", "31001274": "J154449", "31001275": "J172815", "31001276": "J151242", "31001277": "J213423", "31001278": "J145555", "31001279": "J101323", "31001280": "J112954", "31001281": "J133951", "31001282": "J150444", "31001283": "J153858", "31001284": "J172422", "31001285": "J155545", "31001286": "J161441", "31001287": "J125449", "31001288": "J210445", "31001289": "J123443", "31001290": "J121422", "31001291": "J155403", "31001292": "J103724", "31001293": "J112948", "31001294": "J235330", "31001295": "J121507", "31001296": "J235712", "31001297": "J125016", "31001298": "J151516", "31001299": "J132226", "31001300": "J170656", "31001301": "J155722", "31001302": "J150135", "31001303": "J151645", "31001304": "J211151", "31001305": "J213109", "31001306": "J233628", "31001307": "J102433", "31001308": "J111823", "31001309": "J211805", "31001310": "J172028", "31001311": "J101833", "31001312": "J104815", "31001313": "J124635", "31001314": "J110738", "31001315": "J170550", "31001316": "J143704", "31001317": "J143614", "31001318": "J170236", "31001319": "J153034", "31001320": "J220338", "31001321": "J171828", "31001322": "J112942", "31001323": "J112709", "31001324": "J161213", "31001325": "J140739", "31001326": "J213534", "31001327": "J165224", "31001328": "J170144", "31001329": "J162010", "31001330": "J110226", "31001331": "J104421", "31001332": "J104330", "31001333": "J140208", "31001334": "J100338", "31001335": "J110034", "31001336": "J124207", "31001337": "J132907", "31001338": "J100015", "31001339": "J144024", "31001340": "J122806", "31001341": "J133250", "31001342": "J135852", "31001343": "J130616", "31001344": "J204323", "31001345": "J120742", "31001346": "J105549", "31001347": "J103237", "31001348": "J215326", "31001349": "J121700", "31001350": "J124358", "31001351": "J112420", "31001352": "J130022", "31001353": "J155419", "31001354": "J135723", "31001355": "J105201", "31001356": "J133218", "31001357": "J143345", "31001358": "J115448", "31001359": "J135642", "31001360": "J205900", "31001361": "J112747", "31001362": "J121027", "31001363": "J124744", "31001364": "J161303", "31001365": "J141848", "31001366": "J104001", "31001367": "J102304", "31001368": "J172852", "31001369": "J131304", "31001370": "J145632", "31001371": "J102515", "31001372": "J160645", "31001373": "J135129", "31001374": "J115909", "31001375": "J160225", "31001376": "J210458", "31001377": "J113925", "31001378": "J204815", "31001379": "J104754", "31001380": "J130518", "31001381": "J142200", "31001382": "J103731", "31001383": "J100046", "31001384": "J230301", "31001385": "J165839", "31001386": "J235953", "31001387": "J115018", "31001388": "J133458", "31001389": "J221859", "31001390": "J170215", "31001391": "J165820", "31001392": "J130253", "31001393": "J120937", "31001394": "J214811", "31001395": "J160419", "31001396": "J161752", "31001397": "J112610", "31001398": "J123726", "31001399": "J124837", "31001400": "J151643", "31001401": "J160321", "31001402": "J165308", "31001403": "J171359", "31001404": "J115547", "31001405": "J141055", "31001406": "J153202", "31001407": "J121845", "31001408": "J113456", "31001409": "J144746", "31001410": "J171554", "31001411": "J111029", "31001412": "J145129", "31001413": "J113730", "31001414": "J100956", "31001415": "J134407", "31001416": "J101507", "31001417": "J105546", "31001418": "J123528", "31001419": "J145318", "31001420": "J132611", "31001421": "J153338", "31001422": "J102534", "31001423": "J144519", "31001424": "J141218", "31001425": "J152255", "31001426": "J142241", "31001427": "J131047", "31001428": "J100150", "31001429": "J104311", "31001430": "J111950", "31001431": "J132754", "31001432": "J101551", "31001433": "J211027", "31001434": "J105415", "31001435": "J224148", "31001436": "J100806", "31001437": "J133638", "31001438": "J231614", "31001439": "J103110", "31001440": "J101706", "31001441": "J142214", "31001442": "J155340", "31001443": "J165326", "31001444": "J133113", "31001445": "J122656", "31001446": "J134716", "31001447": "J171344", "31001448": "J161119", "31001449": "J111404", "31001450": "J105346", "31001451": "J154631", "31001452": "J150112", "31001453": "J104649", "31001454": "J234421", "31001455": "J105726", "31001456": "J111758", "31001457": "J142923", "31001458": "J114026", "31001459": "J115118", "31001460": "J162226", "31001461": "J165020", "31001462": "J125302", "31001463": "J113754", "31001464": "J153215", "31001465": "J213820", "31001466": "J111555", "31001467": "J131553", "31001468": "J143841", "31001469": "J113250", "31001470": "J204635", "31001471": "J212954", "31001472": "J132309", "31001473": "J231341", "31001474": "J160800", "31001475": "J155338", "31001476": "J132149", "31001477": "J171937", "31001478": "J152443", "31001479": "J111329", "31001480": "J171334", "31001481": "J115552", "31001482": "J151520", "31001483": "J165920", "31001484": "J145838", "31001485": "J125031", "31001486": "J110736", "31001487": "J165423", "31001488": "J155521", "31001489": "J135508", "31001490": "J103008", "31001491": "J103704", "31001492": "J104603", "31001493": "J163641", "31001494": "J203952", "31001495": "J105411", "31001496": "J101126", "31001497": "J122155", "31001498": "J110016", "31001499": "J212417", "31001500": "J142355", "31001501": "J121347", "31001502": "J172915", "31001503": "J155416", "31001504": "J211258", "31001505": "J120643", "31001506": "J143946", "31001507": "J125247", "31001508": "J144732", "31001509": "J155711", "31001510": "J214308", "31001511": "J134851", "31001512": "J145452", "31001513": "J115026", "31001514": "J151720", "31001515": "J151353", "31001516": "J113727", "31001517": "J130944", "31001518": "J145238", "31001519": "J235219", "31001520": "J172512", "31001521": "J141322", "31001522": "J210333", "31001523": "J135836", "31001524": "J101915", "31001525": "J130203", "31001526": "J110719", "31001527": "J131208", "31001528": "J121623", "31001529": "J150637", "31001530": "J130332", "31001531": "J1226-0", "31001532": "J114355", "31001533": "J144401", "31001534": "J103242", "31001535": "J161815", "31001536": "J132256", "31001537": "J162819", "31001538": "J131004", "31001539": "J141931", "31001540": "J112630", "31001541": "J154109", "31001542": "J153116", "31001543": "J160455", "31001544": "J102439", "31001545": "J160459", "31001546": "J131712", "31001547": "J140244", "31001548": "J150635", "31001549": "J125213", "31001550": "J154541", "31001551": "J120409", "31001552": "J140545", "31001553": "J162251", "31001554": "J120450", "31001555": "J220151", "31001556": "J104502", "31001557": "J152654", "31001558": "J124727", "31001559": "J151940", "31001560": "J212129", "31001561": "J141633", "31001562": "J145604", "31001563": "J212851", "31001564": "J145659", "31001565": "J165719", "31001566": "J154706", "31001567": "J141252", "31001568": "J112110", "31001569": "J140912", "31001570": "J165532", "31001571": "J161037", "31001572": "J130828", "31001573": "J122934", "31001574": "J163435", "31001575": "J221855", "31001576": "J124109", "31001577": "J123458", "31001578": "J134527", "31001579": "J133157", "31001580": "J141342", "31001581": "J145757", "31001582": "J130343", "31001583": "J152628", "31001584": "J112928", "31001585": "J133358", "31001586": "J102844", "31001587": "J134732", "31001588": "J213615", "31001589": "J131037", "31001590": "J154724", "31001591": "J213139", "31001592": "J103104", "31001593": "J121116", "31001594": "J142822", "31001595": "J102521", "31001596": "J215935", "31001597": "J162303", "31001598": "J102409", "31001599": "J104714", "31001600": "J171225", "31001601": "J124306", "31001602": "J135908", "31001603": "J124930", "31001604": "J162632", "31001605": "J155313", "31001606": "J211328", "31001607": "J204506", "31001608": "J133957", "31001609": "J115304", "31001610": "J112150", "31001611": "J131252", "31001612": "J133936", "31001613": "J143140", "31001614": "J154833", "31001615": "J101331", "31001616": "J151359", "31001617": "J150951", "31001618": "J140215", "31001619": "J152421", "31001620": "J130554", "31001621": "J101604", "31001622": "J150320", "31001623": "J134414", "31001624": "J131113", "31001625": "J124933", "31001626": "J150044", "31001627": "J155200", "31001628": "J145944", "31001629": "J145535", "31001630": "J141021", "31001631": "J223312", "31001632": "J212028", "31001633": "J164835", "31001634": "J115528", "31001635": "J143922", "31001636": "J225234", "31001637": "J165645", "31001638": "J100142", "31001639": "J101129", "31001640": "J141220", "31001641": "J112450", "31001642": "J121558", "31001643": "J104404", "31001644": "J152633", "31001645": "J104624", "31001646": "J113227", "31001647": "J211817", "31001648": "J144329", "31001649": "J154102", "31001650": "J162231", "31001651": "J151303", "31001652": "J145848", "31001653": "J152720", "31001654": "J123753", "31001655": "J101042", "31001656": "J223824", "31001657": "J125929", "31001658": "J225111", "31001659": "J135346", "31001660": "J144120", "31001661": "J215743", "31001662": "J111007", "31001663": "J231710", "31001664": "J141001", "31001665": "J163444", "31001666": "J103141", "31001667": "J112215", "31001668": "J215758", "31001669": "J101145", "31001670": "J212838", "31001671": "J111458", "31001672": "J115554", "31001673": "J170445", "31001674": "J162831", "31001675": "J124236", "31001676": "J101535", "31001677": "J113551", "31001678": "J162656", "31001679": "J114530", "31001680": "J155214", "31001681": "J102336", "31001682": "J123352", "31001683": "J100937", "31001684": "J100107", "31001685": "J204230", "31001686": "J233909", "31001687": "J134354", "31001688": "J160046", "31001689": "J162816", "31001690": "J170305", "31001691": "J102045", "31001692": "J100830", "31001693": "J115658", "31001694": "J123947", "31001695": "J224754", "31001696": "J140246", "31001697": "J214440", "31001698": "J144135", "31001699": "J151021", "31001700": "J114133", "31001701": "J130810", "31001702": "J141425", "31001703": "J121847", "31001704": "J150805", "31001705": "J140810", "31001706": "J141104", "31001707": "J114735", "31001708": "J205922", "31001709": "J215101", "31001710": "J144131", "31001711": "J213429", "31001712": "J121006", "31001713": "J111644", "31001714": "J164031", "31001715": "J155249", "31001716": "J103228", "31001717": "J164025", "31001718": "J163217", "31001719": "J103631", "31001720": "J145739", "31001721": "J114408", "31001722": "J131704", "31001723": "J112404", "31001724": "J104723", "31001725": "J123746", "31001726": "J225441", "31001727": "J111629", "31001728": "J140154", "31001729": "J144743", "31001730": "J210247", "31001731": "J133013", "31001732": "J160032", "31001733": "J111009", "31001734": "J142117", "31001735": "J110417", "31001736": "J204853", "31001737": "J132144", "31001738": "J160016", "31001739": "J142335", "31001740": "J105835", "31001741": "J102055", "31001742": "J140932", "31001743": "J134333", "31001744": "J160156", "31001745": "J150944", "31001746": "J113508", "31001747": "J151757", "31001748": "J142800", "31001749": "J170642", "31001750": "J130451", "31001751": "J113158", "31001752": "J225133", "31001753": "J100001", "31001754": "J155831", "31001755": "J145749", "31001756": "J164659", "31001757": "J135543", "31001758": "J132735", "31001759": "J141740", "31001760": "J101315", "31001761": "J123345", "31001762": "J105621", "31001763": "J113813", "31001764": "J135807", "31001765": "J122728", "31001766": "J110915", "31001767": "J171430", "31001768": "J154321", "31001769": "J104729", "31001770": "J111753", "31001771": "J140823", "31001772": "J161357", "31001773": "J162205", "31001774": "J113950", "31001775": "J124224", "31001776": "J155959", "31001777": "J103213", "31001778": "J105858", "31001779": "J172502", "31001780": "J170151", "31001781": "J165058", "31001782": "J173638", "31001783": "J130330", "31001784": "J132740", "31001785": "J133931", "31001786": "J143902", "31001787": "J165105", "31001788": "J141316", "31001789": "J113152", "31001790": "J113453", "31001791": "J144845", "31001792": "J140053", "31001793": "J151416", "31001794": "J100846", "31001795": "J165943", "31001796": "J103538", "31001797": "J154854", "31001798": "J212627", "31001799": "J150656", "31001800": "J224031", "31001801": "J215455", "31001802": "J122503", "31001803": "J103120", "31001804": "J164528", "31001805": "J125316", "31001806": "J113131", "31001807": "J144038", "31001808": "J172926", "31001809": "J154610", "31001810": "J103412", "31001811": "J150318", "31001812": "J211504", "31001813": "J111617", "31001814": "J100346", "31001815": "J143557", "31001816": "J130001", "31001817": "J101142", "31001818": "J155002", "31001819": "J154232", "31001820": "J142506", "31001821": "J155506", "31001822": "J163754", "31001823": "J100357", "31001824": "J115031", "31001825": "J122706", "31001826": "J114318", "31001827": "J150625", "31001828": "J113437", "31001829": "J213924", "31001830": "J152711", "31001831": "J160929", "31001832": "J153110", "31001833": "J132532", "31001834": "J114031", "31001835": "J120316", "31001836": "J151610", "31001837": "J145937", "31001838": "J122056", "31001839": "J170127", "31001840": "J145424", "31001841": "J101835", "31001842": "J103907", "31001843": "J130237", "31001844": "J104948", "31001845": "J120844", "31001846": "J154824", "31001847": "J134216", "31001848": "J120131", "31001849": "J120134", "31001850": "J224558", "31001851": "J161029", "31001852": "J225530", "31001853": "J154407", "31001854": "J140720", "31001855": "J222125", "31001856": "J152502", "31001857": "J220215", "31001858": "J141647", "31001859": "J101957", "31001860": "J223808", "31001861": "J105433", "31001862": "J153722", "31001863": "J105348", "31001864": "J113133", "31001865": "J105319", "31001866": "J162828", "31001867": "J233449", "31001868": "J150026", "31001869": "J125629", "31001870": "J123246", "31001871": "J215615", "31001872": "J152404", "31001873": "J132152", "31001874": "J145335", "31001875": "J162255", "31001876": "J112722", "31001877": "J134459", "31001878": "J131624", "31001879": "J165611", "31001880": "J152820", "31001881": "J135100", "31001882": "J122515", "31001883": "J172943", "31001884": "J205738", "31001885": "J134242", "31001886": "J103251", "31001887": "J111220", "31001888": "J170540", "31001889": "J102446", "31001890": "J141137", "31001891": "J164147", "31001892": "J100702", "31001893": "J133119", "31001894": "J124730", "31001895": "J132823", "31001896": "J100724", "31001897": "J162638", "31001898": "J230257", "31001899": "J223018", "31001900": "J135449", "31001901": "J133537", "31001902": "J155714", "31001903": "J112325", "31001904": "J150606", "31001905": "J110550", "31001906": "J205659", "31001907": "J100120", "31001908": "J151057", "31001909": "J213245", "31001910": "J121230", "31001911": "J145203", "31001912": "J111106", "31001913": "J222834", "31001914": "J232336", "31001915": "J161032", "31001916": "J154733", "31001917": "J153144", "31001918": "J122721", "31001919": "J133440", "31001920": "J103727", "31001921": "J152739", "31001922": "J140717", "31001923": "J205205", "31001924": "J130026", "31001925": "J151035", "31001926": "J112603", "31001927": "J151811", "31001928": "J105441", "31001929": "J124949", "31001930": "J130711", "31001931": "J131948", "31001932": "J132814", "31001933": "J213734", "31001934": "J140608", "31001935": "J212336", "31001936": "J104448", "31001937": "J164846", "31001938": "J161354", "31001939": "J103959", "31001940": "J114353", "31001941": "J171622", "31001942": "J143123", "31001943": "J125023", "31001944": "J122116", "31001945": "J151718", "31001946": "J153335", "31001947": "J170122", "31001948": "J150515", "31001949": "J104216", "31001950": "J111000", "31001951": "J155600", "31001952": "J132601", "31001953": "J132258", "31001954": "J221512", "31001955": "J125853", "31001956": "J141609", "31001957": "J134096", "31001958": "J121146", "31001959": "J121649", "31001960": "J135559", "31001961": "J130735", "31001962": "J144115", "31001963": "J112241", "31001964": "J141204", "31001965": "J131401", "31001966": "J170231", "31001967": "J164430", "31001968": "J143740", "31001969": "J115517", "31001970": "J230936", "31001971": "J133525", "31001972": "J215338", "31001973": "J112003", "31001974": "J214318", "31001975": "J110938", "31001976": "J103453", "31001977": "J101000", "31001978": "J110117", "31001979": "J100328", "31001980": "J155845", "31001981": "J152703", "31001982": "J110628", "31001983": "J142438", "31001984": "J153054", "31001985": "J114019", "31001986": "J233255", "31001987": "J135046", "31001988": "J145322", "31001989": "J112844", "31001990": "J120816", "31001991": "J165340", "31001992": "J124409", "31001993": "J124733", "31001994": "J173645", "31001995": "J165743", "31001996": "J171013", "31001997": "J155905", "31001998": "J213055", "31001999": "J212224", "31002000": "J234252", "31002001": "J150036", "31002002": "J172431", "31002003": "J114154", "31002004": "J115127", "31002005": "J233658", "31002006": "J114403", "31002007": "J165946", "31002008": "J124046", "31002009": "J102736", "31002010": "J133252", "31002011": "J140600", "31002012": "J163701", "31002013": "J115041", "31002014": "J154726", "31002015": "J123602", "31002016": "J100549", "31002017": "J124100", "31002018": "J113701", "31002019": "J164327", "31002020": "J110018", "31002021": "J164511", "31002022": "J130037", "31002023": "J101028", "31002024": "J100858", "31002025": "J151813", "31002026": "J113758", "31002027": "J153802", "31002028": "J130401", "31002029": "J130241", "31002030": "J232934", "31002031": "J213642", "31002032": "J144107", "31002033": "J140336", "31002034": "J214712", "31002035": "J170809", "31002036": "J220924", "31002037": "J142624", "31002038": "J150306", "31002039": "J100425", "31002040": "J161745", "31002041": "J131718", "31002042": "J151319", "31002043": "J113059", "31002044": "J142234", "31002045": "J113636", "31002046": "J142858", "31002047": "J135540", "31002048": "J155739", "31002049": "J132427", "31002050": "J114337", "31002051": "J121842", "31002052": "J100415", "31002053": "J143057", "31002054": "J165953", "31002055": "J102753", "31002056": "J221325", "31002057": "J114443", "31002058": "J125990", "31002059": "J114518", "31002060": "J102623", "31002061": "J164900", "31002062": "J122049", "31002063": "J154846", "31002064": "J115522", "31002065": "J145844", "31002066": "J121704", "31002067": "J121959", "31002068": "J105849", "31002069": "J122610", "31002070": "J152912", "31002071": "J145359", "31002072": "J154906", "31002073": "J160547", "31002074": "J111150", "31002075": "J111935", "31002076": "J100237", "31002077": "J145735", "31002078": "J103600", "31002079": "J211517", "31002080": "J131128", "31002081": "J143107", "31002082": "J213125", "31002083": "J152325", "31002084": "J114014", "31002085": "J215215", "31002086": "J143718", "31002087": "J134141", "31002088": "J114842", "31002089": "J105504", "31002090": "J130302", "31002091": "J170327", "31002092": "J120823", "31002093": "J153449", "31002094": "J164621", "31002095": "J142631", "31002096": "J134652", "31002097": "J123628", "31002098": "J130621", "31002099": "J171158", "31002100": "J163930", "31002101": "J113907", "31002102": "J164610", "31002103": "J145512", "31002104": "J133833", "31002105": "J141250", "31002106": "J105623", "31002107": "J120010", "31002108": "J233630", "31002109": "J162007", "31002110": "J215124", "31002111": "J141615", "31002112": "J133222", "31002113": "J105822", "31002114": "J171136", "31002115": "J152111", "31002116": "J104846", "31002117": "J123440", "31002118": "J121416", "31002119": "J161635", "31002120": "J141043", "31002121": "J163408", "31002122": "J135204", "31002123": "J133913", "31002124": "J153447", "31002125": "J145313", "31002126": "J162753", "31002127": "J135301", "31002128": "J125254", "31002129": "J145320", "31002130": "J103116", "31002131": "J120437", "31002132": "J100252", "31002133": "J153919", "31002134": "J115520", "31002135": "J100919", "31002136": "J115933", "31002137": "J133529", "31002138": "J131549", "31002139": "J205517", "31002140": "J220546", "31002141": "J102853", "31002142": "J115418", "31002143": "J155040", "31002144": "J172937", "31002145": "J122757", "31002146": "J100759", "31002147": "J145416", "31002148": "J152034", "31002149": "J125544", "31002150": "J123235", "31002151": "J151204", "31002152": "J104537", "31002153": "J162047", "31002154": "J140514", "31002155": "J154152", "31002156": "J143626", "31002157": "J161737", "31002158": "J142110", "31002159": "J112042", "31002160": "J105719", "31002161": "J101556", "31002162": "J230047", "31002163": "J213226", "31002164": "J104218", "31002165": "J115308", "31002166": "J140418", "31002167": "J101343", "31002168": "J105135", "31002169": "J111818", "31002170": "J110841", "31002171": "J134024", "31002172": "J142349", "31002173": "J212203", "31002174": "J124942", "31002175": "J131747", "31002176": "J133553", "31002177": "J115422", "31002178": "J103448", "31002179": "J161301", "31002180": "J130334", "31002181": "J172125", "31002182": "J114537", "31002183": "J134440", "31002184": "J101912", "31002185": "J214006", "31002186": "J235108", "31002187": "J124538", "31002188": "J125641", "31002189": "J141728", "31002190": "J100616", "31002191": "J204350", "31002192": "J151300", "31002193": "J114041", "31002194": "J115644", "31002195": "J103328", "31002196": "J143127", "31002197": "J121459", "31002198": "J114441", "31002199": "J102345", "31002200": "J161609", "31002201": "J131646", "31002202": "J144543", "31002203": "J123658", "31002204": "J121450", "31002205": "J145753", "31002206": "J130510", "31002207": "J135402", "31002208": "J165220", "31002209": "J124152", "31002210": "J162349", "31002211": "J210750", "31002212": "J235305", "31002213": "J120546", "31002214": "J105059", "31002215": "J140249", "31002216": "J154551", "31002217": "J151530", "31002218": "J122520", "31002219": "J151200", "31002220": "J143245", "31002221": "J124722", "31002222": "J173506", "31002223": "J121747", "31002224": "J235456", "31002225": "J113712", "31002226": "J165940", "31002227": "J165520", "31002228": "J135653", "31002229": "J132946", "31002230": "J134702", "31002231": "J111249", "31002232": "J105607", "31002233": "J100551", "31002234": "J140524", "31002235": "J234152", "31002236": "J164732", "31002237": "J131505", "31002238": "J115405", "31002239": "J215009", "31002240": "J161940", "31002241": "J145825", "31002242": "J132605", "31002243": "J115907", "31002244": "J125634", "31002245": "J110530", "31002246": "J100854", "31002247": "J102053", "31002248": "J111518", "31002249": "J145349", "31002250": "J145846", "31002251": "J215554", "31002252": "J115950", "31002253": "J100109", "31002254": "J161838", "31002255": "J173052", "31002256": "J170807", "31002257": "J105246", "31002258": "J144944", "31002259": "J170930", "31002260": "J130039", "31002261": "J103615", "31002262": "J111227", "31002263": "J153222", "31002264": "J144434", "31002265": "J230842", "31002266": "J172139", "31002267": "J232741", "31002268": "J110634", "31002269": "J124058", "31002270": "J123432", "31002271": "J151909", "31002272": "J145706", "31002273": "J230242", "31002274": "J172840", "31002275": "J131450", "31002276": "J125101", "31002277": "J142910", "31002278": "J131142", "31002279": "J152827", "31002280": "J115901", "31002281": "J114100", "31002282": "J162132", "31002283": "J171722", "31002284": "J135554", "31002285": "J214212", "31002286": "J130305", "31002287": "J111543", "31002288": "J160623", "31002289": "J234722", "31002290": "J133513", "31002291": "J104704", "31002292": "J120354", "31002293": "J165312", "31002294": "J103812", "31002295": "J143525", "31002296": "J125716", "31002297": "J143845", "31002298": "J135626", "31002299": "J115905", "31002300": "J233917", "31002301": "J140343", "31002302": "J114315", "31002303": "J142653", "31002304": "J132546", "31002305": "J165205", "31002306": "J122518", "31002307": "J153825", "31002308": "J101435", "31002309": "J143819", "31002310": "J170417", "31002311": "J115727", "31002312": "J115124", "31002313": "J135533", "31002314": "J230745", "31002315": "J112918", "31002316": "J111640", "31002317": "J231137", "31002318": "J111613", "31002319": "J145131", "31002320": "J111003", "31002321": "J131520", "31002322": "J120922", "31002323": "J142138", "31002324": "J153106", "31002325": "J111939", "31002326": "J173550", "31002327": "J145310", "31002328": "J155928", "31002329": "J234208", "31002330": "J105722", "31002331": "J123546", "31002332": "J210235", "31002333": "J170736", "31002334": "J170240", "31002335": "J125532", "31002336": "J133923", "31002337": "J131509", "31002338": "J210519", "31002339": "J233517", "31002340": "J162612", "31002341": "J123055", "31002342": "J212302", "31002343": "J102103", "31002344": "J213956", "31002345": "J161944", "31002346": "J135705", "31002347": "J103215", "31002348": "J141032", "31002349": "J135306", "31002350": "J155256", "31002351": "J162853", "31002352": "J104809", "31002353": "J144454", "31002354": "J110759", "31002355": "J215304", "31002356": "J110946", "31002357": "J230221", "31002358": "J140133", "31002359": "J105531", "31002360": "J213502", "31002361": "J101647", "31002362": "J133023", "31002363": "J164553", "31002364": "J232959", "31002365": "J152106", "31002366": "J142535", "31002367": "J104859", "31002368": "J155838", "31002369": "J164745", "31002370": "J135504", "31002371": "J115923", "31002372": "J151325", "31002373": "J105705", "31002374": "J141434", "31002375": "J115844", "31002376": "J133906", "31002377": "J115855", "31002378": "J150020", "31002379": "J142528", "31002380": "J130900", "31002381": "J222045", "31002382": "J111450", "31002383": "J103800", "31002384": "J144420", "31002385": "J152550", "31002386": "J114003", "31002387": "J143751", "31002388": "J215930", "31002389": "J120512", "31002390": "J145939", "31002391": "J135623", "31002392": "J111918", "31002393": "J162614", "31002394": "J104921", "31002395": "J230049", "31002396": "J115935", "31002397": "J151920", "31002398": "J160855", "31002399": "J155311", "31002400": "J101553", "31002401": "J110421", "31002402": "J155207", "31002403": "J143200", "31002404": "J110834", "31002405": "J142247", "31002406": "J112028", "31002407": "J111520", "31002408": "J161335", "31002409": "J170118", "31002410": "J160722", "31002411": "J124504", "31002412": "J212612", "31002413": "J154829", "31002414": "J144436", "31002415": "J165641", "31002416": "J145510", "31002417": "J110810", "31002418": "J131916", "31002419": "J120103", "31002420": "J171404", "31002421": "J104632", "31002422": "J103400", "31002423": "J154021", "31002424": "J122249", "31002425": "J213753", "31002426": "J155650", "31002427": "J152722", "31002428": "J100501", "31002429": "J140918", "31002430": "J103414", "31002431": "J223432", "31002432": "J100409", "31002433": "J141502", "31002434": "J115008", "31002435": "J112829", "31002436": "J105801", "31002437": "J105023", "31002438": "J101652", "31002439": "J163225", "31002440": "J135220", "31002441": "J114430", "31002442": "J103504", "31002443": "J123940", "31002444": "J104857", "31002445": "J112417", "31002446": "J205141", "31002447": "J104037", "31002448": "J144902", "31002449": "J122818", "31002450": "J211353", "31002451": "J104136", "31002452": "J172842", "31002453": "J122452", "31002454": "J140200", "31002455": "J232246", "31002456": "J101748", "31002457": "J133241", "31002458": "J151817", "31002459": "J124201", "31002460": "J125111", "31002461": "J101755", "31002462": "J101708", "31002463": "J135031", "31002464": "J152117", "31002465": "J164701", "31002466": "J132106", "31002467": "J141319", "31002468": "J170845", "31002469": "J161215", "31002470": "J111447", "31002471": "J222408", "31002472": "J161747", "31002473": "J132328", "31002474": "J153217", "31002475": "J142814", "31002476": "J101248", "31002477": "J135825", "31002478": "J151838", "31002479": "J100820", "31002480": "J213344", "31002481": "J103701", "31002482": "J171246", "31002483": "J170158", "31002484": "J230559", "31002485": "J145208", "31002486": "J224721", "31002487": "J105934", "31002488": "J130818", "31002489": "J140555", "31002490": "J221356", "31002491": "J111245", "31002492": "J102834", "31002493": "J154509", "31002494": "J234928", "31002495": "J222604", "31002496": "J133011", "31002497": "J125245", "31002498": "J145523", "31002499": "J143605", "31002500": "J120750", "31002501": "J104617", "31002502": "J125122", "31002503": "J114809", "31002504": "J125657", "30020141": "Senda", "30035042": "Chaktaren", "30021392": "Kappas", "30021407": "Aokannitoh", "30021672": "Pasha", "30022505": "Orgron", "30022547": "Krilmokenur", "30022715": "Oirtlair", "30023410": "Embod", "30023489": "Fora", "30000642": "NIF-JE", "30024971": "Hecarrin", "30025042": "Annad", "30000721": "HJ-BCH", "30025305": "Channace", "30030141": "Uitra", "30012547": "Hadaugago", "30034971": "Henebene", "30031392": "Komo", "30031407": "Hitanishio", "30031672": "Safilbab", "30032505": "Todeko", "30032547": "Larkugei", "30032715": "Olelon", "30000001": "Tanoo", "30000002": "Lashesih", "30000003": "Akpivem", "30000004": "Jark", "30000005": "Sasta", "30000006": "Zaid", "30000007": "Yuzier", "30000008": "Nirbhi", "30000009": "Sooma", "30000010": "Chidah", "30000011": "Shenela", "30000012": "Asabona", "30000013": "Onsooh", "30000014": "Shamahi", "30000015": "Sendaya", "30000016": "Nazhgete", "30000017": "Futzchag", "30000018": "Kazna", "30000019": "Podion", "30000020": "Lilmad", "30000021": "Kuharah", "30000022": "Jayneleb", "30000023": "Fovihi", "30000024": "Kiereend", "30000025": "Rashy", "30000026": "Ordize", "30000027": "Psasa", "30000028": "Eshtah", "30000029": "Lachailes", "30000030": "Kasrasi", "30000031": "Mohas", "30000032": "Hasiari", "30000033": "Radima", "30000034": "Alkez", "30000035": "Nimambal", "30000036": "Yishinoon", "30000037": "Uplingur", "30000038": "Dooz", "30000039": "Bayuka", "30000040": "Uzistoon", "30000041": "Bairshir", "30000042": "Moh", "30000043": "Sari", "30000044": "Faspera", "30000045": "Jaymass", "30000046": "Mifrata", "30000047": "Majamar", "30000048": "Ihal", "30000049": "Camal", "30000050": "Fera", "30000051": "Juddi", "30000052": "Maspah", "30000053": "Ibaria", "30000054": "Shala", "30000055": "Zemalu", "30000056": "Khankenirdia", "30000057": "Nikh", "30000058": "Amphar", "30000059": "Salashayama", "30000060": "Janus", "30000061": "Agha", "30000062": "Iosantin", "30000063": "Orva", "30000064": "Zet", "30000065": "Akhrad", "30000066": "Pirohdim", "30000067": "Sharir", "30000068": "Usroh", "30000069": "Thiarer", "30000070": "Gomati", "30000071": "Jangar", "30000072": "Nakah", "30000073": "Irshah", "30000074": "Hasateem", "30000075": "Assah", "30000076": "Tidacha", "30000077": "Odlib", "30000078": "Jofan", "30000079": "Milu", "30000080": "Yadi", "30000081": "Buftiar", "30000082": "Jarizza", "30000083": "Ejahi", "30000084": "Asghatil", "30000085": "Bar", "30000086": "Sucha", "30000087": "Gelhan", "30000088": "Akeva", "30000089": "Sosa", "30000090": "Ilahed", "30000091": "Eshwil", "30000092": "Aranir", "30000093": "Ishkad", "30000094": "Hahyil", "30000095": "Asilem", "30000096": "Mahnagh", "30000097": "Shach", "30000098": "Kehrara", "30000099": "Arena", "30000100": "Timeor", "30000101": "Uhtafal", "30000102": "Dysa", "30000103": "Serad", "30000104": "Mahti", "30000105": "Abha", "30000106": "Shedoo", "30000107": "Gamis", "30000108": "Nieril", "30000109": "Berta", "30000110": "Bekirdod", "30000111": "Hothomouh", "30000112": "Arnola", "30000113": "Astabih", "30000114": "Ubtes", "30000115": "Bimener", "30000116": "Kenobanala", "30000117": "Khabi", "30000118": "Uanzin", "30000119": "Itamo", "30000120": "Mitsolen", "30000121": "Jatate", "30000122": "Mahtista", "30000123": "Vaankalen", "30000124": "Kylmabe", "30000125": "Ahtulaima", "30000126": "Geras", "30000127": "Sirseshin", "30000128": "Tuuriainas", "30000129": "Unpas", "30000130": "Shihuken", "30000131": "Nomaa", "30000132": "Ansila", "30000133": "Hirtamon", "30000134": "Hykkota", "30000135": "Outuni", "30000136": "Ohmahailen", "30000137": "Eskunen", "30000138": "Ikuchi", "30000139": "Urlen", "30000140": "Maurasi", "30000141": "Kisogo", "30000142": "Jita", "30000143": "Niyabainen", "30000144": "Perimeter", "30000145": "New Caldari", "30000146": "Saisio", "30000147": "Abagawa", "30000148": "Jakanerva", "30000149": "Gekutami", "30000150": "Hurtoken", "30000151": "Uoyonen", "30000152": "Hampinen", "30000153": "Poinen", "30000154": "Liekuri", "30000155": "Obanen", "30000156": "Josameto", "30000157": "Otela", "30000158": "Olo", "30000159": "Ikami", "30000160": "Reisen", "30000161": "Purjola", "30000162": "Maila", "30000163": "Akora", "30000164": "Messoya", "30000165": "Ishisomo", "30000166": "Airmia", "30000167": "Sakkikainen", "30000168": "Friggi", "30000169": "Ihakana", "30000170": "Vahunomi", "30000171": "Otitoh", "30000172": "Otomainen", "30000173": "Vattuolen", "30000174": "Onuse", "30000175": "Soshin", "30000176": "Keikaken", "30000177": "Ukkalen", "30000178": "Akkilen", "30000179": "Silen", "30000180": "Osmon", "30000181": "Korsiki", "30000182": "Inaya", "30000183": "Nuken", "30000184": "Uminas", "30000185": "Airaken", "30000186": "Oijanen", "30000187": "Wuos", "30000188": "Hentogaira", "30000189": "Kiainti", "30000190": "Vasala", "30000191": "Walvalin", "30000192": "Otanuomi", "30000193": "Vouskiaho", "30000194": "Otsela", "30000195": "Tasti", "30000196": "Otosela", "30000197": "Uemon", "30000198": "Paala", "30000199": "Fuskunen", "30000200": "Akkio", "30000201": "Uchoshi", "30000202": "Mastakomon", "30000203": "Eruka", "30000204": "Ohkunen", "30000205": "Obe", "30000206": "Wirashoda", "30000207": "Osaa", "30000208": "LZ-6SU", "30000209": "MC6O-F", "30000210": "U54-1L", "30000211": "B-588R", "30000212": "NCGR-Q", "30000213": "G-LOIT", "30000214": "HE-V4V", "30000215": "N-HSK0", "30000216": "05R-7A", "30000217": "7-UH4Z", "30000218": "5ZO-NZ", "30000219": "FS-RFL", "30000220": "Y0-BVN", "30000221": "X97D-W", "30000222": "0-R5TS", "30000223": "H-UCD1", "30000224": "7-K5EL", "30000225": "H-5GUI", "30000226": "FH-TTC", "30000227": "FMBR-8", "30000228": "3HX-DL", "30000229": "UH-9ZG", "30000230": "NFM-0V", "30000231": "YXIB-I", "30000232": "MY-T2P", "30000233": "FA-DMO", "30000234": "GEKJ-9", "30000235": "Q-R3GP", "30000236": "N-5QPW", "30000237": "XV-8JQ", "30000238": "WBR5-R", "30000239": "4GYV-Q", "30000240": "4-HWWF", "30000241": "YMJG-4", "30000242": "8TPX-N", "30000243": "PM-DWE", "30000244": "K8X-6B", "30000245": "X445-5", "30000246": "KRUN-N", "30000247": "9OO-LH", "30000248": "V-OJEN", "30000249": "EIDI-N", "30000250": "P3EN-E", "30000251": "49-0LI", "30000252": "IPAY-2", "30000253": "DAYP-G", "30000254": "IFJ-EL", "30000255": "47L-J4", "30000256": "Q-L07F", "30000257": "E-D0VZ", "30000258": "6WW-28", "30000259": "A8A-JN", "30000260": "S-NJBB", "30000261": "T-GCGL", "30000262": "0MV-4W", "30000263": "TVN-FM", "30000264": "V-NL3K", "30000265": "AZBR-2", "30000266": "Z-8Q65", "30000267": "0J3L-V", "30000268": "H-NOU5", "30000269": "KX-2UI", "30000270": "MO-FIF", "30000271": "97-M96", "30000272": "MA-XAP", "30000273": "C-J7CR", "30000274": "Q-EHMJ", "30000275": "XSQ-TF", "30000276": "H-1EOH", "30000277": "IR-DYY", "30000278": "C-DHON", "30000279": "F-D49D", "30000280": "MQ-O27", "30000281": "H-EY0P", "30000282": "UNAG-6", "30000283": "E-SCTX", "30000284": "S6QX-N", "30000285": "IT-YAU", "30000286": "1VK-6B", "30000287": "7-PO3P", "30000288": "1W-0KS", "30000289": "669-IX", "30000290": "0R-F2F", "30000291": "R-P7KL", "30000292": "2DWM-2", "30000293": "XF-PWO", "30000294": "1N-FJ8", "30000295": "VI2K-J", "30000296": "ZLZ-1Z", "30000297": "6Y-WRK", "30000298": "RVCZ-C", "30000299": "5T-KM3", "30000300": "LS9B-9", "30000301": "1-GBBP", "30000302": "C-FP70", "30000303": "T-ZWA1", "30000304": "ZA0L-U", "30000305": "G96R-F", "30000306": "Y-ZXIO", "30000307": "B-E3KQ", "30000308": "Y5J-EU", "30000309": "O-LR1H", "30000310": "G5ED-Y", "30000311": "BR-6XP", "30000312": "8-TFDX", "30000313": "UL-4ZW", "30000314": "A-QRQT", "30000315": "WMBZ-U", "30000316": "PX5-LR", "30000317": "A3-RQ3", "30000318": "9-GBPD", "30000319": "LS-JEP", "30000320": "R-RSZZ", "30000321": "MGAM-4", "30000322": "VORM-W", "30000323": "7G-H7D", "30000324": "Q3-BAY", "30000325": "JZV-F4", "30000326": "WF-1LM", "30000327": "D95-FQ", "30000328": "ZSPJ-K", "30000329": "U1F-86", "30000330": "T-P7A6", "30000331": "Y-T3JJ", "30000332": "F3R-IA", "30000333": "74-YTJ", "30000334": "8-RS3U", "30000335": "OVFN-N", "30000336": "1Q-BBM", "30000337": "WXNC-N", "30000338": "G-EA07", "30000339": "X-L6BO", "30000340": "D-PHUA", "30000341": "3-HXHQ", "30000342": "18A-NB", "30000343": "3-J5OQ", "30000344": "GYF-GD", "30000345": "W-6TS9", "30000346": "VIG-VR", "30000347": "KX-P5C", "30000348": "N-FJBK", "30000349": "2-4ZT5", "30000350": "NVN-6F", "30000351": "09-8TH", "30000352": "TI0-AX", "30000353": "7O-POM", "30000354": "L6Q-SX", "30000355": "BFJ-TB", "30000356": "ZZ7-L6", "30000357": "L-CHVW", "30000358": "X0LN-U", "30000359": "RQAE-M", "30000360": "7CO-SA", "30000361": "4G-E5A", "30000362": "A-VWK9", "30000363": "JQHP-4", "30000364": "6Q5K-5", "30000365": "P-MVFP", "30000366": "J-Z1UW", "30000367": "W477-P", "30000368": "NQ1-BL", "30000369": "K7A-G8", "30000370": "HP-PMX", "30000371": "6BN-K9", "30000372": "WLE-PY", "30000373": "EH-HXW", "30000374": "OS-RR3", "30000375": "V4-GZL", "30000376": "4C-Z91", "30000377": "RU-97T", "30000378": "1S-1V7", "30000379": "PE1-R1", "30000380": "Polaris", "30000381": "JB-007", "30000382": "USJ2-M", "30000383": "7M-RAL", "30000384": "LPBU-U", "30000385": "RF-342", "30000386": "J2V-XY", "30000387": "Z-JBTR", "30000388": "S-QNXH", "30000389": "S94-X8", "30000390": "J-YQEC", "30000391": "8MX-OR", "30000392": "97YC-C", "30000393": "V-AMD5", "30000394": "U-JC8X", "30000395": "1HH3-E", "30000396": "DUIU-Q", "30000397": "LQH0-H", "30000398": "FRW3-2", "30000399": "9MX-1C", "30000400": "IED-4U", "30000401": "N-9EOQ", "30000402": "6F3-TK", "30000403": "2E0P-2", "30000404": "U-ITH5", "30000405": "N-4G5L", "30000406": "RB-2EA", "30000407": "ZK5-42", "30000408": "YRZ-E4", "30000409": "A3-PAT", "30000410": "H55-2R", "30000411": "P6-DBM", "30000412": "9XI-0X", "30000413": "Q8T-MC", "30000414": "Z-YOJ9", "30000415": "4T4B-L", "30000416": "F-JB3H", "30000417": "XBO7-F", "30000418": "FI-449", "30000419": "UA7-U4", "30000420": "VM-QFU", "30000421": "PU-1Z8", "30000422": "IEZW-V", "30000423": "B-DXO9", "30000424": "1TS-WN", "30000425": "16-31U", "30000426": "H472-N", "30000427": "U8MM-3", "30000428": "3C-26I", "30000429": "9K-VDI", "30000430": "L-SDU7", "30000431": "4-IPWK", "30000432": "Q-KCK3", "30000433": "WU-FHQ", "30000434": "V-4DBR", "30000435": "B-5UFY", "30000436": "SK42-F", "30000437": "EU9-J3", "30000438": "PQRE-W", "30000439": "OEG-K9", "30000440": "0-W778", "30000441": "DG-8VJ", "30000442": "5J4K-9", "30000443": "MD-0AW", "30000444": "H-FGJO", "30000445": "1KAW-T", "30000446": "C5-SUU", "30000447": "XSUD-1", "30000448": "3-LJW3", "30000449": "ZLO3-V", "30000450": "P7MI-T", "30000451": "JFV-ID", "30000452": "3-3EZB", "30000453": "52CW-6", "30000454": "9-OUGJ", "30000455": "4NDT-W", "30000456": "GR-X26", "30000457": "6OU9-U", "30000458": "9N-0HF", "30000459": "U-OVFR", "30000460": "G3D-ZT", "30000461": "D-0UI0", "30000462": "L8-WNE", "30000463": "1-GBVE", "30000464": "GC-LTF", "30000465": "NB-ALM", "30000466": "LT-XI4", "30000467": "L-QQ6P", "30000468": "5OJ-G2", "30000469": "9-02G0", "30000470": "XA5-TY", "30000471": "M-XUZZ", "30000472": "OFVH-Y", "30000473": "2-X0PF", "30000474": "1-PGSG", "30000475": "QLPX-J", "30000476": "A-C5TC", "30000477": "RZ-PIY", "30000478": "FR46-E", "30000479": "SLVP-D", "30000480": "0-G8NO", "30000481": "QRFJ-Q", "30000482": "HZFJ-M", "30000483": "77S8-E", "30000484": "FMH-OV", "30000485": "TYB-69", "30000486": "EDQG-L", "30000487": "7-P1JO", "30000488": "T-0JWP", "30000489": "J-L9MA", "30000490": "DX-TAR", "30000491": "A-7XFN", "30000492": "O3-4MN", "30000493": "U-MFTL", "30000494": "8FN-GP", "30000495": "FIDY-8", "30000496": "X40H-9", "30000497": "F2W-C6", "30000498": "KZ9T-C", "30000499": "XW2H-V", "30000500": "F9O-U9", "30000501": "S-51XG", "30000502": "E-1XVP", "30000503": "E-ACV6", "30000504": "BOZ1-O", "30000505": "QIMO-2", "30000506": "Z-2Y2Y", "30000507": "Q0J-RH", "30000508": "SAI-T9", "30000509": "IAS-I5", "30000510": "K7S-FF", "30000511": "RT-9WL", "30000512": "O5Q7-U", "30000513": "62O-UE", "30000514": "U0W-DR", "30000515": "SY-UWN", "30000516": "DX-DFJ", "30000517": "X-31TE", "30000518": "DVWV-3", "30000519": "KE-0FB", "30000520": "I-9GI1", "30000521": "W6P-7U", "30000522": "0IF-26", "30000523": "H-93YV", "30000524": "E51-JE", "30000525": "7-A6XV", "30000526": "QXE-1N", "30000527": "U69-YC", "30000528": "L-L7PE", "30000529": "MKIG-5", "30000530": "YHEN-G", "30000531": "E-JCUS", "30000532": "W-QN5X", "30000533": "LP1M-Q", "30000534": "30-YOU", "30000535": "384-IN", "30000536": "4F89-U", "30000537": "G063-U", "30000538": "J7-BDX", "30000539": "MLQ-O9", "30000540": "L-FM3P", "30000541": "X-ARMF", "30000542": "8-OZU1", "30000543": "0TYR-T", "30000544": "GM-50Y", "30000545": "G9L-LP", "30000546": "MWA-5Q", "30000547": "H-HHTH", "30000548": "JQU-KY", "30000549": "UY5A-D", "30000550": "C-62I5", "30000551": "ZH-GKG", "30000552": "GPLB-C", "30000553": "GGE-5Q", "30000554": "5E-CMA", "30000555": "U104-3", "30000556": "M3-KAQ", "30000557": "6-L4YC", "30000558": "UM-SCG", "30000559": "F-3FOY", "30000560": "OAIG-0", "30000561": "UZ-QXW", "30000562": "5DE-QS", "30000563": "R0-DMM", "30000564": "5Q65-4", "30000565": "SR-4EK", "30000566": "0RI-OV", "30000567": "C-LTXS", "30000568": "C0O6-K", "30000569": "HD-AJ7", "30000570": "G9NE-B", "30000571": "SJJ-4F", "30000572": "F-QQ5N", "30000573": "1-7B6D", "30000574": "H6-EYX", "30000575": "U-HVIX", "30000576": "4-EFLU", "30000577": "EIH-IU", "30000578": "F-EM4Q", "30000579": "1L-OEK", "30000580": "MN-Q26", "30000581": "5H-SM2", "30000582": "4-OS2A", "30000583": "YI-GV6", "30000584": "SO-X5L", "30000585": "XQS-GZ", "30000586": "Q-GQHN", "30000587": "A-4JOO", "30000588": "TP7-KE", "30000589": "R4N-LD", "30000590": "3Q-VZA", "30000591": "M-MBRT", "30000592": "HPBE-D", "30000593": "GRHS-B", "30000594": "J-RXYN", "30000595": "DUO-51", "30000596": "07-SLO", "30000597": "Z-A8FS", "30000598": "GPD5-0", "30000599": "LKZ-CY", "30000600": "F5M-CC", "30000601": "TZE-UB", "30000602": "WRL4-2", "30000603": "V7G-RL", "30000604": "XEN7-0", "30000605": "L-Z9KJ", "30000606": "7K-NSE", "30000607": "OR-7N5", "30000608": "JEQG-7", "30000609": "5NQI-E", "30000610": "B-WQDP", "30000611": "2-2EWC", "30000612": "E1W-TB", "30000613": "D-6H64", "30000614": "8-BIE3", "30000615": "LMM7-L", "30000616": "995-3G", "30000617": "W2T-TR", "30000618": "Q-UEN6", "30000619": "BLMX-B", "30000620": "M-CNUD", "30000621": "YE1-9S", "30000622": "IVP-KA", "30000623": "04EI-U", "30000624": "B-T6BT", "30000625": "VK-A5G", "30000626": "I6-SYN", "30000627": "O-5TN1", "30000628": "8-SPNN", "30000629": "U-QMOA", "30000630": "4S0-NP", "30000631": "K-RMI5", "30000632": "C-6YHJ", "30000633": "M53-1V", "30000634": "E5T-CS", "30000635": "W4C8-Q", "30000636": "I-2705", "30000637": "5F-MG1", "30000638": "P7-45V", "30000639": "M-MCP8", "30000640": "JZ-B5Y", "30000641": "TPG-DD", "30033410": "Erego", "30000643": "BTLH-I", "30000644": "U93O-A", "30000645": "0LY-W1", "30000646": "4YO-QK", "30000647": "LJ-RJK", "30000648": "8-VC6H", "30000649": "LQ-01M", "30000650": "NG-M8K", "30000651": "RV5-TT", "30000652": "8OYE-Z", "30000653": "K85Y-6", "30000654": "PKN-NJ", "30000655": "EIN-QG", "30000656": "ARG-3R", "30000657": "S-E6ES", "30000658": "R-3FBU", "30000659": "K7-LDX", "30000660": "U-IVGH", "30000661": "P-N5N9", "30000662": "JMH-PT", "30000663": "DE-A7P", "30000664": "X9V-15", "30000665": "K212-A", "30000666": "F-5FDA", "30000667": "S1-XTL", "30000668": "9PX2-F", "30000669": "N3-JBX", "30000670": "SG-75T", "30000671": "GN-PDU", "30000672": "AZ3F-N", "30000673": "RNM-Y6", "30000674": "V-KDY2", "30000675": "FYD-TO", "30000676": "ER2O-Y", "30000677": "J2-PZ6", "30000678": "XV-MWG", "30000679": "OAQY-M", "30000680": "1V-LI2", "30000681": "M9-MLR", "30000682": "Q-K2T7", "30000683": "LBC-AW", "30000684": "2-KPW6", "30000685": "H5N-V7", "30000686": "HQ-Q1Q", "30000687": "WHI-61", "30000688": "ZFJH-T", "30000689": "I-1B7X", "30000690": "G15Z-W", "30000691": "AH8-Q7", "30000692": "SD4A-2", "30000693": "U6K-RG", "30000694": "V-S9YY", "30000695": "F2-NXA", "30000696": "NSBE-L", "30000697": "8Q-T7B", "30000698": "WV0D-1", "30000699": "ZNF-OK", "30000700": "C8-7AS", "30000701": "4E-EZS", "30000702": "A-80UA", "30000703": "U2-28D", "30000704": "LQ-OAI", "30000705": "5-MQQ7", "30000706": "6-EQYE", "30000707": "03-OR2", "30000708": "JLO-Z3", "30000709": "IAK-JW", "30000710": "KZFV-4", "30000711": "WO-GC0", "30000712": "RYC-19", "30000713": "X2-ZA5", "30000714": "28Y9-P", "30000715": "Q4C-S5", "30000716": "B-1UJC", "30000717": "Q-NA5H", "30000718": "4-CM8I", "30000719": "ZDB-HT", "30000720": "1QZ-Y9", "30033489": "Hanan", "30000722": "QPTT-F", "30000723": "9M-M0P", "30000724": "9BC-EB", "30000725": "WFFE-4", "30000726": "71-UTX", "30000727": "PU-UMM", "30000728": "6-KPAB", "30000729": "Y5-E1U", "30000730": "4-43BW", "30000731": "8CN-CH", "30000732": "V-F6DQ", "30000733": "3S-6VU", "30000734": "1-7HVI", "30000735": "OX-S7P", "30000736": "KDG-TA", "30000737": "KD-KPR", "30000738": "PT-21C", "30000739": "Z182-R", "30000740": "EKPB-3", "30000741": "5M2-KP", "30000742": "TK-DLH", "30000743": "C8H5-X", "30000744": "O-7LAI", "30000745": "7L3-JS", "30000746": "WF4C-8", "30000747": "TZN-2V", "30000748": "8EF-58", "30000749": "4DS-OI", "30000750": "XQP-9C", "30000751": "W-6GBI", "30000752": "XKH-6O", "30000753": "S0U-MO", "30000754": "F39H-1", "30000755": "V-QXXK", "30000756": "2-Q4YG", "30000757": "2JT-3Q", "30000758": "I3CR-F", "30000759": "7-JT09", "30000760": "AGCP-I", "30000761": "M4-GJ6", "30000762": "5-2PQU", "30000763": "SN9-3Z", "30000764": "6BJH-3", "30000765": "U-UTU9", "30000766": "1TG7-W", "30000767": "QYD-WK", "30000768": "R959-U", "30000769": "A-TJ0G", "30000770": "88A-RA", "30000771": "8G-2FP", "30000772": "C-J6MT", "30000773": "78-0R6", "30000774": "MSG-BZ", "30000775": "8-WYQZ", "30000776": "4M-QXK", "30000777": "X5-0EM", "30000778": "G-EURJ", "30000779": "SHBF-V", "30000780": "RERZ-L", "30000781": "0UBC-R", "30000782": "3U-48K", "30000783": "EFM-C4", "30000784": "YPW-M4", "30000785": "Q7-FZ8", "30000786": "L5-UWT", "30000787": "74-VZA", "30000788": "I-1QKL", "30000789": "GK5Z-T", "30000790": "RQN-OO", "30000791": "67Y-NR", "30000792": "GDHN-K", "30000793": "QTME-D", "30000794": "A24L-V", "30000795": "4CJ-AC", "30000796": "EUU-4N", "30000797": "Q-3HS5", "30000798": "3AE-CP", "30000799": "0-VG7A", "30000800": "9OLQ-6", "30000801": "MOCW-2", "30000802": "ZO-4AR", "30000803": "MJ-LGH", "30000804": "F2A-GX", "30000805": "RD-FWY", "30000806": "VBPT-T", "30000807": "KS-1TS", "30000808": "X0-6LH", "30000809": "FN0-QS", "30000810": "F3-8X2", "30000811": "N7-BIY", "30000812": "TTP-2B", "30000813": "LVL-GZ", "30000814": "EJ48-O", "30000815": "ROJ-B0", "30000816": "DFH-V5", "30000817": "B-II34", "30000818": "4LB-EL", "30000819": "UDE-FX", "30000820": "5IH-GL", "30000821": "C1G-XC", "30000822": "04-EHC", "30000823": "3-0FYP", "30000824": "N-O53U", "30000825": "HZ-O18", "30000826": "D-P1EH", "30000827": "74L2-U", "30000828": "HL-VZX", "30000829": "38NZ-1", "30000830": "W-MF6J", "30000831": "O-9G5Y", "30000832": "27-HP0", "30000833": "X1-IZ0", "30000834": "RZ-TI6", "30000835": "FX4L-2", "30000836": "1ZF-PJ", "30000837": "HFC-AQ", "30000838": "0-6VZ5", "30000839": "GB-6X5", "30000840": "7EX-14", "30000841": "N7-KGJ", "30000842": "VD-8QY", "30000843": "J-ZYSZ", "30000844": "5C-RPA", "30000845": "CR2-PQ", "30000846": "E-OGL4", "30000847": "J-GAMP", "30000848": "M-OEE8", "30000849": "V0DF-2", "30000850": "FY0W-N", "30000851": "MJI3-8", "30000852": "A-DDGY", "30000853": "F-RT6Q", "30000854": "B-S42H", "30000855": "NL6V-7", "30000856": "F-749O", "30000857": "0-YMBJ", "30000858": "UMI-KK", "30000859": "GKP-YT", "30000860": "AW1-2I", "30000861": "15W-GC", "30000862": "N-FK87", "30000863": "C2X-M5", "30000864": "MSHD-4", "30000865": "H-W9TY", "30000866": "PNDN-V", "30000867": "D7-ZAC", "30000868": "SH1-6P", "30000869": "TRKN-L", "30000870": "O-0ERG", "30000871": "WH-JCA", "30000872": "Q-CAB2", "30000873": "PBD-0G", "30000874": "L-1HKR", "30000875": "9GI-FB", "30000876": "3G-LHB", "30000877": "DBT-GB", "30000878": "U-W3WS", "30000879": "DL1C-E", "30000880": "YLS8-J", "30000881": "2ISU-Y", "30000882": "X-CFN6", "30000883": "9SL-K9", "30000884": "Y-PZHM", "30000885": "OY-UZ1", "30000886": "S8-NSQ", "30000887": "GIH-ZG", "30000888": "V7-FB4", "30000889": "XD-TOV", "30000890": "K-6SNI", "30000891": "L-VXTK", "30000892": "C8VC-S", "30000893": "W-UQA5", "30000894": "W6VP-Y", "30000895": "IMK-K1", "30000896": "NJ4X-S", "30000897": "F-G7BO", "30000898": "2CG-5V", "30000899": "QFF-O6", "30000900": "NIH-02", "30000901": "JPL-RA", "30000902": "NK-7XO", "30000903": "E02-IK", "30000904": "N-DQ0D", "30000905": "M-MD3B", "30000906": "FVXK-D", "30000907": "6EG7-R", "30000908": "56D-TC", "30000909": "2X7Z-L", "30000910": "8DL-CP", "30000911": "UMDQ-6", "30000912": "504Z-V", "30000913": "F8K-WQ", "30000914": "AB-FZE", "30000915": "N-6Z8B", "30000916": "YUY-LM", "30000917": "NE-3GR", "30000918": "Y4-GQV", "30000919": "7-IDWY", "30000920": "AZF-GH", "30000921": "UT-UZB", "30000922": "M-EKDF", "30000923": "CRXA-Y", "30000924": "VXO-OM", "30000925": "BY5-V8", "30000926": "TET3-B", "30000927": "VKU-BG", "30000928": "WPR-EI", "30000929": "0NV-YU", "30000930": "V-2GYS", "30000931": "168-6H", "30000932": "W-RFUO", "30000933": "AI-EVH", "30000934": "F-MKH3", "30000935": "ZM-DNR", "30000936": "GF-3FL", "30000937": "ZJ-GOU", "30000938": "QQ3-YI", "30000939": "9-34L5", "30000940": "0R-GZQ", "30000941": "QM-20X", "30000942": "8YC-AN", "30000943": "7Q-8Z2", "30000944": "SUR-F7", "30000945": "OK-6XN", "30000946": "Q2FL-T", "30000947": "Y7-XFD", "30000948": "U3K-4A", "30000949": "P1T-LP", "30000950": "R-ESG0", "30000951": "CI4M-T", "30000952": "I-QRJA", "30000953": "M-YWAL", "30000954": "DE71-9", "30000955": "7JF-0Z", "30000956": "IX8-JB", "30000957": "WTIE-6", "30000958": "Y-DSSK", "30000959": "F5-CGW", "30000960": "H9S-WC", "30000961": "B-ROFP", "30000962": "1L-AED", "30000963": "1C-953", "30000964": "SL-YBS", "30000965": "UNJ-GX", "30000966": "0PI4-E", "30000967": "6WT-BE", "30000968": "L1S-G1", "30000969": "9SNK-O", "30000970": "B-VIP9", "30000971": "LXTC-S", "30000972": "WE3-BX", "30000973": "H7O-JZ", "30000974": "H-8F5Q", "30000975": "O-RXCZ", "30000976": "4M-P1I", "30000977": "P7UZ-T", "30000978": "PUZ-IO", "30000979": "HB-1NJ", "30000980": "EOE3-N", "30000981": "F7A-MR", "30000982": "O-8SOC", "30000983": "OJOS-T", "30000984": "V89M-R", "30000985": "66U-1P", "30000986": "BRT-OP", "30000987": "JUK0-1", "30000988": "V-IH6B", "30000989": "52V6-B", "30000990": "PUC-JZ", "30000991": "SB-23C", "30000992": "5FCV-A", "30000993": "O-OVOQ", "30000994": "92-B0X", "30000995": "0-3VW8", "30000996": "28-QWU", "30000997": "UD-AOK", "30000998": "M9U-75", "30000999": "N-RAEL", "30001000": "K-IYNW", "30001001": "H-ADOC", "30001002": "G-G78S", "30001003": "UW9B-F", "30001004": "ZZ-ZWC", "30001005": "OSY-UD", "30001006": "K-MGJ7", "30001007": "JWJ-P1", "30001008": "V-IUEL", "30001009": "0SHT-A", "30001010": "D87E-A", "30001011": "K-B2D3", "30001012": "PO4F-3", "30001013": "J7A-UR", "30001014": "5E-VR8", "30001015": "V7D-JD", "30001016": "HLW-HP", "30001017": "8G-MQV", "30001018": "RA-NXN", "30001019": "VOL-MI", "30001020": "KLMT-W", "30001021": "XX9-WV", "30001022": "AAM-1A", "30001023": "EW-JR5", "30001024": "YKE4-3", "30001025": "CL-85V", "30001026": "K-QWHE", "30001027": "MDD-79", "30001028": "RMOC-W", "30001029": "ES-UWY", "30001030": "S1DP-Y", "30001031": "Y-DW5K", "30001032": "M-N7WD", "30001033": "QFEW-K", "30001034": "CVY-UC", "30001035": "EQX-AE", "30001036": "G-R4W1", "30001037": "BPK-XK", "30001038": "LJ-YSW", "30001039": "Y-K50G", "30001040": "K88X-J", "30001041": "G-0Q86", "30001042": "CL-1JE", "30001043": "J4UD-J", "30001044": "Hemin", "30001045": "Utopia", "30001046": "Jorund", "30001047": "Doril", "30001048": "Litom", "30001049": "Farit", "30001050": "Jamunda", "30001051": "TD-4XL", "30001052": "IBOX-2", "30001053": "8AB-Q4", "30001054": "VW-PXL", "30001055": "JA-G0T", "30001056": "IF-KD1", "30001057": "7-YHRX", "30001058": "Y6-9LF", "30001059": "X-PQEX", "30001060": "N-H95C", "30001061": "NSI-MW", "30001062": "N-YLOE", "30001063": "NBO-O0", "30001064": "F-TQWO", "30001065": "0-TRV1", "30001066": "13-49W", "30001067": "6UT-1K", "30001068": "O8W-5O", "30001069": "LH-PLU", "30001070": "AZA-QE", "30001071": "8-2JZA", "30001072": "ZT-L3S", "30001073": "VVB-QH", "30001074": "Z-DDVJ", "30001075": "7-2Z93", "30001076": "B-VFDD", "30001077": "A0M-R8", "30001078": "LY-WRW", "30001079": "9F-ERQ", "30001080": "QCGG-Q", "30001081": "1NZV-7", "30001082": "NIM-FY", "30001083": "DAI-SH", "30001084": "V3P-AZ", "30001085": "C-KW6X", "30001086": "X1W-AL", "30001087": "F-WZYG", "30001088": "S-R9J2", "30001089": "XU-BF8", "30001090": "RIU-GC", "30001091": "Z0H2-4", "30001092": "63-7Q6", "30001093": "XCZ5-Y", "30001094": "NRD-5Q", "30001095": "W5-205", "30001096": "T-4H0B", "30001097": "Z-EKCY", "30001098": "SH-YZY", "30001099": "O7-RFZ", "30001100": "CLW-SI", "30001101": "5-A0PX", "30001102": "R-RMDH", "30001103": "2XI8-Y", "30001104": "5B-YDD", "30001105": "W-XY4J", "30001106": "PWPY-4", "30001107": "QZ1-OH", "30001108": "Y-XZA7", "30001109": "1-EVAX", "30001110": "I8-AJY", "30001111": "6-WMKE", "30001112": "J-Z8C2", "30001113": "XTVZ-E", "30001114": "APES-G", "30001115": "B2J-5N", "30001116": "2Z-HPQ", "30001117": "NBW-GD", "30001118": "YM-SRU", "30001119": "LO5-LN", "30001120": "06-70G", "30001121": "UYG-YX", "30001122": "GL6S-2", "30001123": "RUF3-O", "30001124": "C-NMG9", "30001125": "P3X-TN", "30001126": "N6NK-J", "30001127": "TP-APY", "30001128": "9NI-FW", "30001129": "H-EBQG", "30001130": "DOA-YU", "30001131": "ZOPZ-6", "30001132": "863P-X", "30001133": "ZO-YJZ", "30001134": "6A-FUY", "30001135": "HG-YEQ", "30001136": "2FL-5W", "30001137": "QSCO-D", "30001138": "RXTY-4", "30001139": "RSE-PT", "30001140": "WVJU-4", "30001141": "7T-0QS", "30001142": "RWML-A", "30001143": "V-JCJS", "30001144": "8C-VE3", "30001145": "S5W-1Z", "30001146": "IL-OL1", "30001147": "POQP-K", "30001148": "FO9-FZ", "30001149": "4QY-NT", "30001150": "0-N1BJ", "30001151": "T-8GWA", "30001152": "UW-6MW", "30001153": "F9E-KX", "30001154": "9KOE-A", "30001155": "U-QVWD", "30001156": "B-3QPD", "30001157": "36N-HZ", "30001158": "SV5-8N", "30001159": "HY-RWO", "30001160": "WD-VTV", "30001161": "HED-GP", "30001162": "V-3YG7", "30001163": "QSM-LM", "30001164": "KDF-GY", "30001165": "QBQ-RF", "30001166": "9-8GBA", "30001167": "6-K738", "30001168": "ZXIC-7", "30001169": "2J-WJY", "30001170": "1P-WGB", "30001171": "F4R2-Q", "30001172": "K0CN-3", "30001173": "WLAR-J", "30001174": "L7XS-5", "30001175": "VA6-DR", "30001176": "S-U2VD", "30001177": "GE-94X", "30001178": "GMLH-K", "30001179": "W9-DID", "30001180": "KW-I6T", "30001181": "EX-0LQ", "30001182": "MB-NKE", "30001183": "G-7WUF", "30001184": "6-MM99", "30001185": "JBY6-F", "30001186": "FZ-6A5", "30001187": "RNF-YH", "30001188": "I-8D0G", "30001189": "R-K4QY", "30001190": "JWZ2-V", "30001191": "OGL8-Q", "30001192": "GJ0-OJ", "30001193": "A-803L", "30001194": "WQH-4K", "30001195": "J-ODE7", "30001196": "Q-S7ZD", "30001197": "6X7-JO", "30001198": "GE-8JV", "30001199": "3-OKDA", "30001200": "3GD6-8", "30001201": "4M-HGL", "30001202": "MY-W1V", "30001203": "AX-DOT", "30001204": "YHN-3K", "30001205": "CB4-Q2", "30001206": "CBL-XP", "30001207": "WJ-9YO", "30001208": "UQ-PWD", "30001209": "N-8BZ6", "30001210": "A-VILQ", "30001211": "X3FQ-W", "30001212": "3-SFWG", "30001213": "MUXX-4", "30001214": "E1-4YH", "30001215": "B-XJX4", "30001216": "AOK-WQ", "30001217": "E3-SDZ", "30001218": "7LHB-Z", "30001219": "8B-2YA", "30001220": "SNFV-I", "30001221": "HP-64T", "30001222": "V2-VC2", "30001223": "L-B55M", "30001224": "CX65-5", "30001225": "JA-O6J", "30001226": "ZQ-Z3Y", "30001227": "G-AOTH", "30001228": "TA3T-3", "30001229": "E-YJ8G", "30001230": "J6QB-P", "30001231": "KA6D-K", "30001232": "7MD-S1", "30001233": "ERVK-P", "30001234": "UL-7I8", "30001235": "BR-N97", "30001236": "IS-R7P", "30001237": "S25C-K", "30001238": "K717-8", "30001239": "NH-1X6", "30001240": "KH0Z-0", "30001241": "5-N2EY", "30001242": "KB-U56", "30001243": "JGW-OT", "30001244": "UCG4-B", "30001245": "BUZ-DB", "30001246": "QETZ-W", "30001247": "WFC-MY", "30001248": "Q-U96U", "30001249": "X4-WL0", "30001250": "W-MPTH", "30001251": "4NBN-9", "30001252": "EX6-AO", "30001253": "CZK-ZQ", "30001254": "CNC-4V", "30001255": "Y-PNRL", "30001256": "FAT-6P", "30001257": "6BPS-T", "30001258": "25S-6P", "30001259": "RR-D05", "30001260": "4-07MU", "30001261": "Y-W1Q3", "30001262": "Y6-HPG", "30001263": "Z-GY5S", "30001264": "KK-L97", "30001265": "R-KZK7", "30001266": "9-R6GU", "30001267": "N-Q5PW", "30001268": "P-FSQE", "30001269": "H-PA29", "30001270": "1-Y6KI", "30001271": "YP-J33", "30001272": "D-8SI1", "30001273": "9-266Q", "30001274": "K3JR-J", "30001275": "CSOA-B", "30001276": "6W-HRH", "30001277": "N5Y-4N", "30001278": "MQFX-Q", "30001279": "9-8BL8", "30001280": "N6G-H3", "30001281": "3A1P-N", "30001282": "OZ-VAE", "30001283": "A-AFGR", "30001284": "92K-H2", "30001285": "AA-YRK", "30001286": "BV-1JG", "30001287": "0-BFTQ", "30001288": "SS-GED", "30001289": "AJCJ-1", "30001290": "6NJ8-V", "30001291": "Y-4CFK", "30001292": "HBD-CC", "30001293": "P-GKF5", "30001294": "E-7U8U", "30001295": "0-XIDJ", "30001296": "SBL5-R", "30001297": "O-TVTD", "30001298": "8CIX-S", "30001299": "D-SKWC", "30001300": "4RX-EE", "30001301": "V3X-L8", "30001302": "N0C-UN", "30001303": "VG-6CH", "30001304": "Z0-TJW", "30001305": "QHJ-FW", "30001306": "9IPC-E", "30001307": "EIV-1W", "30001308": "S-1ZXZ", "30001309": "N-5476", "30001310": "PZOZ-K", "30001311": "W3KK-R", "30001312": "92D-OI", "30001313": "EK2-ET", "30001314": "SE-SHZ", "30001315": "JURU-T", "30001316": "MC6-5J", "30001317": "65V-RH", "30001318": "4-7IL9", "30001319": "2PLH-3", "30001320": "RQ9-OZ", "30001321": "B-CZXG", "30001322": "0-O2UT", "30001323": "Q61Y-F", "30001324": "PF-QHK", "30001325": "XW-6TC", "30001326": "Q-7SUI", "30001327": "VVD-O6", "30001328": "6ZJ-SC", "30001329": "P-VYVL", "30001330": "HD-JVQ", "30001331": "H-AJ27", "30001332": "M2-2V1", "30001333": "2TH-3F", "30001334": "E1F-E5", "30001335": "4S-PVC", "30001336": "WLF-D3", "30001337": "LHJ-2G", "30001338": "SHJO-J", "30001339": "6UQ-4U", "30001340": "430-BE", "30001341": "OJ-CT4", "30001342": "AZ-UWB", "30001343": "H-S5BM", "30001344": "FHB-QA", "30001345": "Z3U-GI", "30001346": "B3QP-K", "30001347": "GVZ-1W", "30001348": "G9D-XW", "30001349": "42XJ-N", "30001350": "L-IE41", "30001351": "VG-QW1", "30001352": "2IBE-N", "30001353": "YJ3-UT", "30001354": "ZD4-G9", "30001355": "C2-DDA", "30001356": "Dantumi", "30001357": "Antiainen", "30001358": "Ossa", "30001359": "Semiki", "30001360": "Kiskoken", "30001361": "Aurohunen", "30001362": "Veisto", "30001363": "Sobaseki", "30001364": "Funtanainen", "30001365": "Isikemi", "30001366": "Uosusuokko", "30001367": "Hageken", "30001368": "Uemisaisen", "30001369": "Sotrentaira", "30001370": "Ouranienen", "30001371": "Erenta", "30001372": "Kino", "30001373": "Raussinen", "30001374": "Iidoken", "30001375": "Tsuguwa", "30001376": "Nourvukaiken", "30001377": "Sarekuwa", "30001378": "Ekura", "30001379": "Tunttaras", "30001380": "Vellaine", "30001381": "Arvasaras", "30001382": "Akonoinen", "30001383": "Vaajaita", "30001384": "Autaris", "30001385": "Jan", "30001386": "Saatuban", "30001387": "Isikano", "30001388": "Mara", "30001389": "Isanamo", "30001390": "Pakkonen", "30001391": "Piekura", "30001392": "Amsen", "30001393": "Malkalen", "30001394": "Korama", "30001395": "Ylandoki", "30001396": "Aakari", "30001397": "Isseras", "30001398": "Aunenen", "30001399": "Elonaya", "30001400": "Litiura", "30001401": "Nonni", "30001402": "Passari", "30001403": "Piak", "30001404": "Airkio", "30001405": "Kakakela", "30001406": "Kamokor", "30001407": "Todaki", "30001408": "Ruvas", "30001409": "Umokka", "30001410": "Kirras", "30001411": "Autama", "30001412": "Tsukuras", "30001413": "Nani", "30001414": "Ajanen", "30001415": "Kuoka", "30001416": "Liukikka", "30001417": "Rauntaka", "30001418": "Aikantoh", "30001419": "Atai", "30001420": "Daras", "30001421": "Otalieto", "30001422": "Iitanmadan", "30001423": "Jotenen", "30001424": "Haajinen", "30001425": "Oipo", "30001426": "Isinokka", "30001427": "Yoma", "30001428": "Ibura", "30001429": "Torrinos", "30001430": "Endatoh", "30001431": "Aivoli", "30001432": "Uesuro", "30001433": "Oishami", "30001434": "Elanoda", "30001435": "Ohbochi", "30001436": "Isie", "30001437": "Tamo", "30001438": "Nannaras", "30001439": "Anin", "30001440": "Karjataimon", "30001441": "Tartoken", "30001442": "Saranen", "30001443": "Vuorrassi", "30001444": "Oimmo", "30001445": "Nalvula", "30001446": "Otsasai", "30001447": "Taisy", "30001448": "Hakonen", "30001449": "PZP1-D", "30001450": "R1KE-A", "30001451": "JGDF-B", "30001452": "1SR-HT", "30001453": "SQ-2XA", "30001454": "Z-FYJR", "30001455": "ZA6-9N", "30001456": "J1-6CJ", "30001457": "7H-Z5R", "30001458": "0RZ5-2", "30001459": "A9-NB6", "30001460": "LG1-TA", "30001461": "TNK-BQ", "30001462": "E2AX-5", "30001463": "HPE-KP", "30001464": "THS-MN", "30001465": "UBES-K", "30001466": "I-R8B0", "30001467": "QIW-TQ", "30001468": "WLL-QX", "30001469": "BJC4-8", "30001470": "PQA-9K", "30001471": "S5-U0R", "30001472": "CW-R71", "30001473": "QO-3LC", "30001474": "3E-ER7", "30001475": "REZ-YZ", "30001476": "OU-AIT", "30001477": "VYX2-I", "30001478": "5-P3CQ", "30001479": "M-FDTD", "30001480": "54-VNO", "30001481": "IAMZ-5", "30001482": "HD3-JK", "30001483": "PBXG-A", "30001484": "9-ERCP", "30001485": "KN7M-N", "30001486": "Z-D1DW", "30001487": "FO-3PJ", "30001488": "6-QXE6", "30001489": "N-FKXV", "30001490": "X7-8IG", "30001491": "R-G1SF", "30001492": "6-NCE7", "30001493": "WDJQ-G", "30001494": "JS3-RS", "30001495": "JX-T1W", "30001496": "CZ-CED", "30001497": "BKK4-H", "30001498": "Y-4V7U", "30001499": "L-TPN0", "30001500": "3-XORH", "30001501": "G1VU-H", "30001502": "W6H6-K", "30001503": "6-23NU", "30001504": "DVAR-P", "30001505": "J-JS0D", "30001506": "VR3-PS", "30001507": "LH-J8H", "30001508": "I9D-0D", "30001509": "HGB-C6", "30001510": "2L5-FI", "30001511": "RS08-B", "30001512": "4U-14I", "30001513": "H-EDXD", "30001514": "8-ULAA", "30001515": "KF1-DU", "30001516": "W-WQM5", "30001517": "G5J-LH", "30001518": "H7OL-I", "30001519": "TO21-U", "30001520": "RN-5K9", "30001521": "0M-M64", "30001522": "W5-SGC", "30001523": "8RV-1L", "30001524": "1C-TD6", "30001525": "YBYX-1", "30001526": "L-WG68", "30001527": "E4-E8W", "30001528": "HIK-MC", "30001529": "B9EA-G", "30001530": "E-BFLT", "30001531": "GZM-KB", "30001532": "5LAJ-8", "30001533": "C6C-K9", "30001534": "AL-JSG", "30001535": "ETO-OT", "30001536": "KPI-OW", "30001537": "A-J6SN", "30001538": "OTJ-4W", "30001539": "AG-SYG", "30001540": "1I5-0V", "30001541": "VX1-HV", "30001542": "JNG7-K", "30001543": "K-XJJT", "30001544": "FO1U-K", "30001545": "6U-1RX", "30001546": "Y4OK-W", "30001547": "P-NI4K", "30001548": "T6T-BQ", "30001549": "N-PS2Y", "30001550": "K-BBYU", "30001551": "0J-MQW", "30001552": "XT-1E0", "30001553": "3ET-G8", "30001554": "MOSA-I", "30001555": "B6-XE8", "30001556": "JLH-FN", "30001557": "DFTK-D", "30001558": "4HF-4R", "30001559": "Y8K-5B", "30001560": "L7-BLT", "30001561": "8P-LKL", "30001562": "Q-UVY6", "30001563": "RXA-W1", "30001564": "QFU-4S", "30001565": "QQGH-G", "30001566": "VK6-EZ", "30001567": "JVA-FE", "30001568": "P65-TA", "30001569": "G-VFVB", "30001570": "Y4B-BQ", "30001571": "EU-WFW", "30001572": "K-YL9T", "30001573": "GTB-O4", "30001574": "6W-6O9", "30001575": "H4X-0I", "30001576": "C-BHDN", "30001577": "R-RE2B", "30001578": "4DH-ST", "30001579": "OSW-0P", "30001580": "GF-GR7", "30001581": "DVN6-0", "30001582": "Z19-B8", "30001583": "HPMN-V", "30001584": "XR-ZL7", "30001585": "U1-VHY", "30001586": "OTJ9-E", "30001587": "LH-LY1", "30001588": "7-QOYS", "30001589": "KS8G-M", "30001590": "ZWM-BB", "30001591": "S-CUEA", "30001592": "L-EUY2", "30001593": "JL-ZUQ", "30001594": "X-KHRZ", "30001595": "WIW-X8", "30001596": "QRH-BF", "30001597": "M-NP5O", "30001598": "2-NF2Z", "30001599": "0Z-VHC", "30001600": "9-BUSQ", "30001601": "LQB-TC", "30001602": "II-1B3", "30001603": "6-HFD6", "30001604": "P3UD-M", "30001605": "LCN-0V", "30001606": "FX-XMW", "30001607": "G-N6MC", "30001608": "7-8XK0", "30001609": "90G-OA", "30001610": "DT-7EO", "30001611": "B-Y06L", "30001612": "HHQ-8L", "30001613": "Z-KPAR", "30001614": "8U-RZH", "30001615": "2RV-06", "30001616": "CLDT-L", "30001617": "QU7-EE", "30001618": "UC-X28", "30001619": "R79-I7", "30001620": "E-RPGP", "30001621": "ZV-KZO", "30001622": "NSE-U1", "30001623": "KER-EU", "30001624": "69A-54", "30001625": "M9-OS2", "30001626": "5V-YL6", "30001627": "8-UWFS", "30001628": "PQWA-L", "30001629": "BWO-UU", "30001630": "SQVI-U", "30001631": "T-YWDD", "30001632": "DLY-RG", "30001633": "T-C5A0", "30001634": "UP-L3Y", "30001635": "F-KBNV", "30001636": "JL-P9P", "30001637": "FR-RCH", "30001638": "FNS3-F", "30001639": "7BA-TK", "30001640": "IAWJ-X", "30001641": "50-TJY", "30001642": "3-CE1R", "30001643": "0IRK-R", "30001644": "Tividu", "30001645": "Tendhyes", "30001646": "Goram", "30001647": "Anjedin", "30001648": "Adahum", "30001649": "Ahrosseas", "30001650": "Riramia", "30001651": "Nafomeh", "30001652": "Pimsu", "30001653": "Jarzalad", "30001654": "Matyas", "30001655": "Imeshasa", "30001656": "Ivih", "30001657": "Seil", "30001658": "Mani", "30001659": "Sehmosh", "30001660": "Dabrid", "30001661": "Gyerzen", "30001662": "Hibi", "30001663": "Gemodi", "30001664": "Chamume", "30001665": "Nuzair", "30001666": "Pera", "30001667": "Shousran", "30001668": "Yong", "30001669": "Pimebeka", "30001670": "Baviasi", "30001671": "Tash-Murkon Prime", "30001672": "Emrayur", "30001673": "Shesha", "30001674": "Hilaban", "30001675": "Sacalan", "30001676": "Mimen", "30001677": "Thashkarai", "30001678": "Atoosh", "30001679": "Unkah", "30001680": "Hoona", "30001681": "Teshkat", "30001682": "Keshirou", "30001683": "Nasesharafa", "30001684": "Tirbam", "30001685": "Ordat", "30001686": "Rethan", "30001687": "Lossa", "30001688": "Onazel", "30001689": "Asesamy", "30001690": "Hostni", "30001691": "Mimime", "30001692": "Kibursha", "30001693": "Perdan", "30001694": "Abai", "30001695": "Nehkiah", "30001696": "Iro", "30001697": "Ahkour", "30001698": "Gaknem", "30001699": "Siyi", "30001700": "Remoriu", "30001701": "Yanuel", "30001702": "Nafrivik", "30001703": "Taru", "30001704": "Arkoz", "30001705": "Azhgabid", "30001706": "Jinizu", "30001707": "Phoren", "30001708": "Asezai", "30001709": "Ferira", "30001710": "Yeder", "30001711": "Azerakish", "30001712": "Lari", "30001713": "Yasud", "30001714": "Ghishul", "30001715": "Moutid", "30001716": "Goni", "30001717": "Adar", "30001718": "Paye", "30001719": "Sagain", "30001720": "Modun", "30001721": "Saminer", "30001722": "Marthia", "30001723": "Assiad", "30001724": "Rumida", "30001725": "Nosodnis", "30001726": "Iswa", "30001727": "Rand", "30001728": "Sizamod", "30001729": "Sinid", "30001730": "Alra", "30001731": "Ilas", "30001732": "Zith", "30001733": "Tew", "30001734": "Zehru", "30001735": "Uhodoh", "30001736": "Esa", "30001737": "Hath", "30001738": "Judra", "30001739": "Sharios", "30001740": "Arakor", "30001741": "Ahteer", "30001742": "Kari", "30001743": "JUE-DX", "30001744": "HLR-GL", "30001745": "80G-H5", "30001746": "2EV-BA", "30001747": "M1-PX9", "30001748": "W9-TFD", "30001749": "QHH-13", "30001750": "J4AQ-O", "30001751": "O-O2GN", "30001752": "I-HRX3", "30001753": "XUPK-Z", "30001754": "M4U-EH", "30001755": "WK2F-Y", "30001756": "WIO-OL", "30001757": "1-10QG", "30001758": "YQM-P1", "30001759": "6-GRN7", "30001760": "TFPT-U", "30001761": "D-JVGJ", "30001762": "K4UV-G", "30001763": "Q7E-DU", "30001764": "9Z-XJN", "30001765": "ZEZ1-9", "30001766": "QFRV-2", "30001767": "HZID-J", "30001768": "8-AA98", "30001769": "EZWQ-X", "30001770": "2ULC-J", "30001771": "T0DT-T", "30001772": "QG3-Z0", "30001773": "RT64-C", "30001774": "2ID-87", "30001775": "FVQF-W", "30001776": "8K-QCZ", "30001777": "JBUH-H", "30001778": "XDTW-F", "30001779": "0-4VQL", "30001780": "SN-DZ6", "30001781": "DJ-GBH", "30001782": "I0N-BM", "30001783": "QOK-SX", "30001784": "24I-FE", "30001785": "4H-YJZ", "30001786": "2-84WC", "30001787": "V-SEE6", "30001788": "U-FQ21", "30001789": "NHKO-4", "30001790": "KGCF-5", "30001791": "Y-UO9U", "30001792": "XME-SW", "30001793": "JX-SOA", "30001794": "VH-9VO", "30001795": "P-T9VC", "30001796": "9S-GPT", "30001797": "UAJ5-K", "30001798": "XJ-AG7", "30001799": "2WU-XT", "30001800": "J7X-VN", "30001801": "F-WCLC", "30001802": "G-HE0N", "30001803": "YC-ANK", "30001804": "LTT-AP", "30001805": "8RL-OG", "30001806": "R3P0-Z", "30001807": "ZZK-VF", "30001808": "SN-Q1T", "30001809": "L1YK-V", "30001810": "ZJ-5IS", "30001811": "GA58-7", "30001812": "J-0KB3", "30001813": "UC-8XF", "30001814": "90-A1P", "30001815": "4AZV-W", "30001816": "UNV-3J", "30001817": "7F-2FB", "30001818": "MC4C-H", "30001819": "OW-QXW", "30001820": "3-QNM4", "30001821": "UEPO-D", "30001822": "NQ-M6W", "30001823": "P-8PDJ", "30001824": "VE-W7O", "30001825": "CNHV-M", "30001826": "NEU-UD", "30001827": "N-I024", "30001828": "4O-ZRI", "30001829": "Y-7XVJ", "30001830": "RQNF-9", "30001831": "DSS-EZ", "30001832": "MB4D-4", "30001833": "LGK-VP", "30001834": "E-C0SR", "30001835": "X1E-OQ", "30001836": "VTGN-U", "30001837": "0Y1-M7", "30001838": "Q-Q2S6", "30001839": "WHG2-7", "30001840": "9RQ-L8", "30001841": "32-GI9", "30001842": "TG-Z23", "30001843": "IP-MVJ", "30001844": "4J-ZC9", "30001845": "7R5-7R", "30001846": "Y1-UQ2", "30001847": "HM-UVD", "30001848": "G-ME2K", "30001849": "WNS-7J", "30001850": "57M7-W", "30001851": "JS-E8E", "30001852": "FV-SE8", "30001853": "FZSW-Y", "30001854": "UF-KKH", "30001855": "O5Y3-W", "30001856": "0GN-VO", "30001857": "9U6-SV", "30001858": "4GQ-XQ", "30001859": "R8-5XF", "30001860": "2IGP-1", "30001861": "Z2-QQP", "30001862": "GDEW-0", "30001863": "PSJ-10", "30001864": "2-V0KY", "30001865": "U-WLT9", "30001866": "ZG8Q-N", "30001867": "40GX-P", "30001868": "37S-KO", "30001869": "4J9-DK", "30001870": "A-GPTM", "30001871": "HQ-TDJ", "30001872": "WBLF-0", "30001873": "GDO-7H", "30001874": "NZG-LF", "30001875": "UJM-RD", "30001876": "L0AD-B", "30001877": "8ZO-CK", "30001878": "WEQT-K", "30001879": "8O-OSG", "30001880": "1H-I12", "30001881": "D9D-GD", "30001882": "4A-XJ6", "30001883": "GU-54G", "30001884": "7-X3RN", "30001885": "BF-FVB", "30001886": "9O-ZTS", "30001887": "8KQR-O", "30001888": "F9SX-1", "30001889": "0G-A25", "30001890": "WJO0-G", "30001891": "S91-TI", "30001892": "V1V-6F", "30001893": "S-DLKC", "30001894": "42-UOW", "30001895": "CBGG-0", "30001896": "A4UG-O", "30001897": "W-VXL9", "30001898": "U2-BJ2", "30001899": "UKYS-5", "30001900": "RV5-DW", "30001901": "KP-FQ1", "30001902": "RLDS-R", "30001903": "QM-O7J", "30001904": "0-7XA8", "30001905": "X5O1-L", "30001906": "F-TVAP", "30001907": "6Y-0TW", "30001908": "TL-T9Z", "30001909": "E7-WSY", "30001910": "B-G1LG", "30001911": "T-8UOF", "30001912": "DP-2WP", "30001913": "MMR-LZ", "30001914": "I-ME3L", "30001915": "YE17-R", "30001916": "T7-JNB", "30001917": "LB0-A1", "30001918": "S-BWWQ", "30001919": "Z-R96X", "30001920": "J-AYLV", "30001921": "DABV-N", "30001922": "ZH-KEV", "30001923": "LC-1ED", "30001924": "RPS-0K", "30001925": "VNPF-7", "30001926": "CJF-1P", "30001927": "U6-FCE", "30001928": "L6B-0N", "30001929": "Z-XMUC", "30001930": "6QBH-S", "30001931": "RRWI-5", "30001932": "Y-4U62", "30001933": "EAWE-2", "30001934": "I-3FET", "30001935": "QCKK-T", "30001936": "RP-H66", "30001937": "JU-UYK", "30001938": "O-FTHE", "30001939": "W-Q233", "30001940": "4XW2-D", "30001941": "J5NU-K", "30001942": "EOT-XL", "30001943": "RVRE-Z", "30001944": "B-2UL0", "30001945": "L-A9FS", "30001946": "OOO-FS", "30001947": "373Z-7", "30001948": "JVJ2-N", "30001949": "2B-3M4", "30001950": "A-XASO", "30001951": "5J-UEX", "30001952": "1H4V-O", "30001953": "LGL-SD", "30001954": "A-DZA8", "30001955": "O-CT8N", "30001956": "Z-6YQC", "30001957": "F7-ICZ", "30001958": "XFBE-T", "30001959": "T-NNJZ", "30001960": "DK6W-I", "30001961": "0T-LIB", "30001962": "NRT4-U", "30001963": "KQK1-2", "30001964": "O-BY0Y", "30001965": "2D-0SO", "30001966": "UR-E6D", "30001967": "X47L-Q", "30001968": "D7T-C0", "30001969": "KI-TL0", "30001970": "EL8-4Q", "30001971": "JC-YX8", "30001972": "5-9WNU", "30001973": "XI-VUF", "30001974": "N-H32Y", "30001975": "12YA-2", "30001976": "BDV3-T", "30001977": "J-CIJV", "30001978": "X-7OMU", "30001979": "CXN1-Z", "30001980": "KLY-C0", "30001981": "CL6-ZG", "30001982": "G95-VZ", "30001983": "ROIR-Y", "30001984": "EC-P8R", "30001985": "EWOK-K", "30001986": "O-N8XZ", "30001987": "G-M4I8", "30001988": "MI6O-6", "30001989": "L-TS8S", "30001990": "93PI-4", "30001991": "ION-FG", "30001992": "C-H9X7", "30001993": "A8I-C5", "30001994": "DK-FXK", "30001995": "M-76XI", "30001996": "ZJET-E", "30001997": "U-INPD", "30001998": "WW-KGD", "30001999": "XQ-PXU", "30002000": "M-YCD4", "30002001": "Q-5211", "30002002": "R-2R0G", "30002003": "CR-AQH", "30002004": "8S-0E1", "30002005": "5ZXX-K", "30002006": "JE-D5U", "30002007": "2-6TGQ", "30002008": "OE-9UF", "30002009": "PFU-LH", "30002010": "R6XN-9", "30002011": "3V8-LJ", "30002012": "B8EN-S", "30002013": "R-LW2I", "30002014": "DP-1YE", "30002015": "4-ABS8", "30002016": "7RM-N0", "30002017": "S-MDYI", "30002018": "ZKYV-W", "30002019": "F-NMX6", "30002020": "GA-P6C", "30002021": "FWA-4V", "30002022": "RZC-16", "30002023": "RD-G2R", "30002024": "UC3H-Y", "30002025": "6GWE-A", "30002026": "J-OK0C", "30002027": "KDV-DE", "30002028": "MT9Q-S", "30002029": "B-9C24", "30002030": "P-2TTL", "30002031": "7X-VKB", "30002032": "E-Z2ZX", "30002033": "RORZ-H", "30002034": "O-A6YN", "30002035": "MQ-NPY", "30002036": "D2-HOS", "30002037": "Y2-6EA", "30002038": "TFA0-U", "30002039": "RQH-MY", "30002040": "HPS5-C", "30002041": "DT-TCD", "30002042": "KU5R-W", "30002043": "H1-J33", "30002044": "Y-C3EQ", "30002045": "OGV-AS", "30002046": "7D-0SQ", "30002047": "UI-8ZE", "30002048": "Bei", "30002049": "Uttindar", "30002050": "Hagilur", "30002051": "Anher", "30002052": "Ragnarg", "30002053": "Hek", "30002054": "Hror", "30002055": "Amo", "30002056": "Resbroko", "30002057": "Hadozeko", "30002058": "Ardar", "30002059": "Auner", "30002060": "Evati", "30002061": "Ofstold", "30002062": "Todifrauan", "30002063": "Helgatild", "30002064": "Arnstur", "30002065": "Lasleinur", "30002066": "Arnher", "30002067": "Brin", "30002068": "Nakugard", "30002069": "Traun", "30002070": "Uriok", "30002071": "Barkrik", "30002072": "Inder", "30002073": "Tvink", "30002074": "Lanngisi", "30002075": "Hjoramold", "30002076": "Dudreda", "30002077": "Hakisalki", "30002078": "Arwa", "30002079": "Krirald", "30002080": "Arifsdald", "30002081": "Ansen", "30002082": "Floseswin", "30002083": "Uisper", "30002084": "Aset", "30002085": "Eytjangard", "30002086": "Turnur", "30002087": "Isbrabata", "30002088": "Vimeini", "30002089": "Avenod", "30002090": "Frerstorn", "30002091": "Ontorn", "30002092": "Sirekur", "30002093": "Gebuladi", "30002094": "Ebolfer", "30002095": "Eszur", "30002096": "Hofjaldgund", "30002097": "Klogori", "30002098": "Orfrold", "30002099": "Egmar", "30002100": "Taff", "30002101": "Ualkin", "30002102": "Gukarla", "30002103": "NS2L-4", "30002104": "QI-S9W", "30002105": "B-S347", "30002106": "PPFB-U", "30002107": "AF0-V5", "30002108": "B-A587", "30002109": "Y19P-1", "30002110": "B9E-H6", "30002111": "SPBS-6", "30002112": "JDAS-0", "30002113": "A4B-V5", "30002114": "LN-56V", "30002115": "Y2-QUV", "30002116": "O7-7UX", "30002117": "Z8-81T", "30002118": "XD-JW7", "30002119": "DY-P7Q", "30002120": "H-RXNZ", "30002121": "ZBP-TP", "30002122": "XVV-21", "30002123": "GXK-7F", "30002124": "EA-HSA", "30002125": "78TS-Q", "30002126": "WYF8-8", "30002127": "CJNF-J", "30002128": "FYI-49", "30002129": "RF6T-8", "30002130": "ZJA-6U", "30002131": "94FR-S", "30002132": "Q-HJ97", "30002133": "GM-0K7", "30002134": "I-NGI8", "30002135": "R-ZUOL", "30002136": "E1F-LK", "30002137": "Z4-QLD", "30002138": "QE-E1D", "30002139": "LK1K-5", "30002140": "REB-KR", "30002141": "Z-H2MA", "30002142": "L-5JCJ", "30002143": "B-KDOZ", "30002144": "4-GB14", "30002145": "PH-NFR", "30002146": "DW-N2S", "30002147": "W-FHWJ", "30002148": "X-6WC7", "30002149": "D-BAMJ", "30002150": "JKWP-U", "30002151": "RHE7-W", "30002152": "F76-8Q", "30002153": "O3Z5-G", "30002154": "4DV-1T", "30002155": "XS-K1O", "30002156": "FN-DSR", "30002157": "B-R5RB", "30002158": "7-ZT1Y", "30002159": "9-XN3F", "30002160": "AC-7LZ", "30002161": "LBA-SO", "30002162": "Y-FZ5N", "30002163": "E8-YS9", "30002164": "U79-JF", "30002165": "B2-UQW", "30002166": "U9U-TQ", "30002167": "6-I162", "30002168": "08-N7Q", "30002169": "Y-C4AL", "30002170": "CKX-RW", "30002171": "8X6T-8", "30002172": "W4E-IT", "30002173": "OP9L-F", "30002174": "J-QA7I", "30002175": "2O-EEW", "30002176": "Y-N4EF", "30002177": "7YSF-E", "30002178": "KCDX-7", "30002179": "O7-VJ5", "30002180": "FRTC-5", "30002181": "M-ZJWJ", "30002182": "R-ORB7", "30002183": "RU-PT9", "30002184": "DR-427", "30002185": "NI-J0B", "30002186": "QN-6J2", "30002187": "Amarr", "30002188": "Boranai", "30002189": "Hedion", "30002190": "Mabnen", "30002191": "Toshabia", "30002192": "Irnin", "30002193": "Kehour", "30002194": "Martha", "30002195": "Simbeloud", "30002196": "Ebidan", "30002197": "Akhragan", "30002198": "Mikhir", "30002199": "Bashakru", "30002200": "Sukirah", "30002201": "Shuria", "30002202": "Narai", "30002203": "Ziona", "30002204": "Gaha", "30002205": "Armala", "30002206": "Murema", "30002207": "Cailanar", "30002208": "Ilonarav", "30002209": "Uchat", "30002210": "Joppaya", "30002211": "Pelkia", "30002212": "Raren", "30002213": "Mazitah", "30002214": "Hiramu", "30002215": "Sakhti", "30002216": "Aldali", "30002217": "Hutian", "30002218": "Noli", "30002219": "Nomash", "30002220": "Aghesi", "30002221": "Fabin", "30002222": "Airshaz", "30002223": "Patzcha", "30002224": "Charra", "30002225": "Harva", "30002226": "Thebeka", "30002227": "Rasile", "30002228": "Nererut", "30002229": "Sitanan", "30002230": "Vashkah", "30002231": "Ardishapur Prime", "30002232": "Gid", "30002233": "Dakba", "30002234": "Nifshed", "30002235": "Shumam", "30002236": "Milal", "30002237": "Sobenah", "30002238": "Bourar", "30002239": "Rammi", "30002240": "Arodan", "30002241": "Rimbah", "30002242": "Mamenkhanar", "30002243": "Seiradih", "30002244": "Arera", "30002245": "Hizhara", "30002246": "Neziel", "30002247": "Ahala", "30002248": "Knophtikoo", "30002249": "Ruchy", "30002250": "Hai", "30002251": "Sadye", "30002252": "Bika", "30002253": "Arshat", "30002254": "Jerma", "30002255": "Miyeli", "30002256": "Reyi", "30002257": "Moussou", "30002258": "Nadohman", "30002259": "Sahdil", "30002260": "Esteban", "30002261": "Luromooh", "30002262": "Nalu", "30002263": "Jarshitsan", "30002264": "Hadonoo", "30002265": "Azizora", "30002266": "Ahmak", "30002267": "Shabura", "30002268": "Adia", "30002269": "Ebo", "30002270": "Avair", "30002271": "Rayl", "30002272": "Asoutar", "30002273": "Porsharrah", "30002274": "Tastela", "30002275": "Clarelam", "30002276": "Isamm", "30002277": "Ebtesham", "30002278": "Artoun", "30002279": "Safizon", "30002280": "Zatsyaki", "30002281": "Eba", "30002282": "Bhizheba", "30002283": "2G-VDP", "30002284": "9F-3CR", "30002285": "J7M-3W", "30002286": "KRPF-A", "30002287": "9P-870", "30002288": "QNXJ-M", "30002289": "AID-9T", "30002290": "PXE-RG", "30002291": "5J-62N", "30002292": "Z-DRIY", "30002293": "8-MXHA", "30002294": "LPVL-5", "30002295": "D3S-EA", "30002296": "KGT3-6", "30002297": "4LJ6-Q", "30002298": "SAH-AD", "30002299": "MF-PGF", "30002300": "L-ZJLN", "30002301": "G-QTSD", "30002302": "3G-LFX", "30002303": "NK-VTL", "30002304": "D-CR6W", "30002305": "BY-7PY", "30002306": "GN-TNT", "30002307": "QKCU-4", "30002308": "0M-24X", "30002309": "N06Z-Q", "30002310": "YX-0KH", "30002311": "KMH-J1", "30002312": "CYB-BZ", "30002313": "5U-3PW", "30002314": "89JS-J", "30002315": "C9R-NO", "30002316": "FKR-SR", "30002317": "1ACJ-6", "30002318": "BNX-AS", "30002319": "XB-9U2", "30002320": "F9-FUV", "30002321": "FB-MPY", "30002322": "RO-0PZ", "30002323": "JTA2-2", "30002324": "R-6KYM", "30002325": "3H58-R", "30002326": "RV-GA8", "30002327": "TP-RTO", "30002328": "GTY-FW", "30002329": "1H5-3W", "30002330": "QZV-X3", "30002331": "IS-OBW", "30002332": "1GH-48", "30002333": "IRD-HU", "30002334": "B-2VXB", "30002335": "FIZU-X", "30002336": "JAWX-R", "30002337": "Z0G-XG", "30002338": "ALC-JM", "30002339": "9QS5-C", "30002340": "NWX-LI", "30002341": "N-SFZK", "30002342": "2B-UUQ", "30002343": "I64-XB", "30002344": "4-QDIX", "30002345": "FGJP-J", "30002346": "89-JPE", "30002347": "D-IZT9", "30002348": "WU9-ZR", "30002349": "E8-432", "30002350": "43-1TL", "30002351": "O-LJOO", "30002352": "ZS-PNI", "30002353": "TZ-74M", "30002354": "8KE-YS", "30002355": "LXQ2-T", "30002356": "HV-EAP", "30002357": "3IK-7O", "30002358": "O-EUHA", "30002359": "MO-I1W", "30002360": "ZZ5X-M", "30002361": "UAV-1E", "30002362": "CL-IRS", "30002363": "QBZO-R", "30002364": "QHJR-E", "30002365": "1PF-BC", "30002366": "D-OJEZ", "30002367": "C-V6DQ", "30002368": "Z-FET0", "30002369": "EX-GBT", "30002370": "PX-IHN", "30002371": "WPV-JN", "30002372": "IL-H0A", "30002373": "CT8K-0", "30002374": "M9-LAN", "30002375": "C-4D0W", "30002376": "L4X-1V", "30002377": "M-V0PQ", "30002378": "DYPL-6", "30002379": "V-OL61", "30002380": "RK-Q51", "30002381": "F69O-M", "30002382": "T-IDGH", "30002383": "Aeddin", "30002384": "Gulfonodi", "30002385": "Teonusude", "30002386": "Gelfiven", "30002387": "Bosena", "30002388": "Oddelulf", "30002389": "Atlar", "30002390": "Heild", "30002391": "Hrokkur", "30002392": "Hrober", "30002393": "Aedald", "30002394": "Muttokon", "30002395": "Audesder", "30002396": "Illamur", "30002397": "Horaka", "30002398": "Eldulf", "30002399": "Orien", "30002400": "Varigne", "30002401": "Meildolf", "30002402": "Istodard", "30002403": "Gonheim", "30002404": "Half", "30002405": "Sakulda", "30002406": "Hedaleolfarber", "30002407": "Altbrard", "30002408": "Fegomenko", "30002409": "Osvetur", "30002410": "Mimiror", "30002411": "Skarkon", "30002412": "Ennur", "30002413": "Unertek", "30002414": "Klingt", "30002415": "Weld", "30002416": "Kattegaud", "30002417": "Kadlina", "30002418": "Hegfunden", "30002419": "Aeditide", "30002420": "Egbinger", "30002421": "MR4-MY", "30002422": "SR-KBB", "30002423": "FDZ4-A", "30002424": "2E-ZR5", "30002425": "O1-FTD", "30002426": "Roua", "30002427": "OEY-OR", "30002428": "M-MD31", "30002429": "WH-2EZ", "30002430": "D0-F4W", "30002431": "QKTR-L", "30002432": "YN3-E3", "30002433": "NBPH-N", "30002434": "L-HV5C", "30002435": "L4X-FH", "30002436": "B6-52M", "30002437": "V-MZW0", "30002438": "BND-16", "30002439": "IOO-7O", "30002440": "BWF-ZZ", "30002441": "4-CUM5", "30002442": "8MG-J6", "30002443": "RLSI-V", "30002444": "39-DGG", "30002445": "SV-K8J", "30002446": "6RQ9-A", "30002447": "K42-IE", "30002448": "VSJ-PP", "30002449": "3USX-F", "30002450": "9-KWXC", "30002451": "NQ-9IH", "30002452": "KR-V6G", "30002453": "AP9-LV", "30002454": "0-GZX9", "30002455": "2H-TSE", "30002456": "4NGK-F", "30002457": "O-VWPB", "30002458": "LX-ZOJ", "30002459": "6L78-1", "30002460": "04-LQM", "30002461": "4VY-Y1", "30002462": "LU-HQS", "30002463": "U-L4KS", "30002464": "K25-XD", "30002465": "6YC-TU", "30002466": "Y8R-XZ", "30002467": "P-E9GN", "30002468": "HJO-84", "30002469": "4D9-66", "30002470": "L-TOFR", "30002471": "Q-TBHW", "30002472": "9P4O-F", "30002473": "UBX-CC", "30002474": "TJM-JJ", "30002475": "EOA-ZC", "30002476": "G-73MR", "30002477": "E-91FV", "30002478": "AD-5B8", "30002479": "QP0K-B", "30002480": "54-MF6", "30002481": "D-I9HJ", "30002482": "P-6I0B", "30002483": "CFYY-J", "30002484": "8-KZXQ", "30002485": "HKYW-T", "30002486": "3SFU-S", "30002487": "VJ-NQP", "30002488": "U6D-9A", "30002489": "Atioth", "30002490": "PYY3-5", "30002491": "RFGW-V", "30002492": "N-HK93", "30002493": "LR-2XT", "30002494": "TZL-WT", "30002495": "4K0N-J", "30002496": "B-F1MI", "30002497": "W-3BSU", "30002498": "BE-UUN", "30002499": "O2O-2X", "30002500": "JE1-36", "30002501": "5F-YRA", "30002502": "TDE4-H", "30002503": "UER-TH", "30002504": "UG-UWZ", "30002505": "Hulm", "30002506": "Osoggur", "30002507": "Abudban", "30002508": "Trytedald", "30002509": "Odatrik", "30002510": "Rens", "30002511": "Ameinaka", "30002512": "Alakgur", "30002513": "Dammalin", "30002514": "Bosboger", "30002515": "Olfeim", "30002516": "Lulm", "30002517": "Gulmorogod", "30002518": "Edmalbrurdus", "30002519": "Kronsur", "30002520": "Dumkirinur", "30002521": "Sist", "30002522": "Obrolber", "30002523": "Austraka", "30002524": "Ivar", "30002525": "Meirakulf", "30002526": "Frarn", "30002527": "Illinfrik", "30002528": "Balginia", "30002529": "Gyng", "30002530": "Avesber", "30002531": "Gerek", "30002532": "Tongofur", "30002533": "Gerbold", "30002534": "Rokofur", "30002535": "Ebasgerdur", "30002536": "Ebodold", "30035305": "Clacille", "30002538": "Vard", "30002539": "Siseide", "30002540": "Lantorn", "30002541": "Dal", "30002542": "Auga", "30002543": "Eystur", "30002544": "Pator", "30002545": "Lustrevik", "30002546": "Isendeldik", "30002547": "Ammold", "30002548": "Emolgranlan", "30002549": "Offugen", "30002550": "Roniko", "30002551": "Aralgrund", "30002552": "Eddar", "30002553": "Bogelek", "30002554": "Wiskeber", "30002555": "Eifer", "30002556": "Gusandall", "30002557": "Atgur", "30002558": "Endrulf", "30002559": "Ingunn", "30002560": "Gultratren", "30002561": "Auren", "30002562": "Trer", "30002563": "Egmur", "30002564": "Javrendei", "30002565": "Appen", "30002566": "Klir", "30002567": "Jorus", "30002568": "Onga", "30002569": "Osaumuni", "30002570": "Magiko", "30002571": "Oremmulf", "30002572": "Hurjafren", "30002573": "Vullat", "30002574": "Hrondedir", "30002575": "Sotrenzur", "30002576": "Hrondmund", "30002577": "Bundindus", "30002578": "Otraren", "30002579": "Hedgiviter", "30002580": "Katugumur", "30002581": "1-7KWU", "30002582": "3-UCBF", "30002583": "N-CREL", "30002584": "TM-0P2", "30002585": "4OIV-X", "30002586": "Y-JKJ8", "30002587": "AFJ-NB", "30002588": "H-64KI", "30002589": "9I-SRF", "30002590": "9-IIBL", "30002591": "5GQ-S9", "30002592": "YALR-F", "30002593": "68FT-6", "30002594": "IV-UNR", "30002595": "IRE-98", "30002596": "HOHF-B", "30002597": "Y-6B0E", "30002598": "F-3H2P", "30002599": "DY-40Z", "30002600": "XWY-YM", "30002601": "M-9V5D", "30002602": "O2-39S", "30002603": "M-VEJZ", "30002604": "LJK-T0", "30002605": "E7VE-V", "30002606": "NUG-OF", "30002607": "L6BY-P", "30002608": "U3SQ-X", "30002609": "01TG-J", "30002610": "UK-SHL", "30002611": "A1BK-A", "30002612": "N-7ECY", "30002613": "4-MPSJ", "30002614": "TWJ-AW", "30002615": "PZMA-E", "30002616": "442-CS", "30002617": "Z-N9IP", "30002618": "9ZFH-Z", "30002619": "6E-MOW", "30002620": "GBT4-J", "30002621": "GZ1-A1", "30002622": "X-0CKQ", "30002623": "6B-GKA", "30002624": "LHGA-W", "30002625": "4RS-L1", "30002626": "D-L4H0", "30002627": "GU-9F4", "30002628": "FG-1GH", "30002629": "WFYM-0", "30002630": "FR-B1H", "30002631": "DDI-B7", "30002632": "Pettinck", "30002633": "Du Annes", "30002634": "Balle", "30002635": "Decon", "30002636": "Grinacanne", "30002637": "Metserel", "30002638": "Sharuveil", "30002639": "Adreland", "30002640": "Erme", "30002641": "Aufay", "30002642": "Iyen-Oursta", "30002643": "Faurent", "30002644": "Ambeke", "30002645": "Carrou", "30002646": "Direrie", "30002647": "Ignoitton", "30002648": "Ardene", "30002649": "Boillair", "30002650": "Ney", "30002651": "Fasse", "30002652": "Ala", "30002653": "Gratesier", "30002654": "Schoorasana", "30002655": "Vylade", "30002656": "Auvergne", "30002657": "Aunia", "30002658": "Agrallarier", "30002659": "Dodixie", "30002660": "Eglennaert", "30002661": "Botane", "30002662": "Pulin", "30002663": "Foves", "30002664": "Alles", "30002665": "Misneden", "30002666": "Basgerin", "30002667": "Chelien", "30002668": "Trosquesere", "30002669": "Ansone", "30002670": "Dunraelare", "30002671": "Nausschie", "30002672": "Inghenges", "30002673": "Estene", "30002674": "Gallareue", "30002675": "Stayme", "30002676": "Parchanier", "30002677": "Fluekele", "30002678": "Alsottobier", "30002679": "Jolia", "30002680": "Augnais", "30002681": "Deltole", "30002682": "Colelie", "30002683": "Barmalie", "30002684": "Audaerne", "30002685": "Dodenvale", "30002686": "Olettiers", "30002687": "Artisine", "30002688": "Chainelant", "30002689": "Sileperer", "30002690": "Bamiette", "30002691": "Crielere", "30002692": "Jel", "30002693": "Egghelende", "30002694": "Odette", "30002695": "Ation", "30002696": "Stegette", "30002697": "Ravarin", "30002698": "Aliette", "30002699": "Brapelille", "30002700": "Bawilan", "30002701": "Atier", "30002702": "Archee", "30002703": "Brybier", "30002704": "Adrallezoen", "30002705": "Croleur", "30002706": "Doussivitte", "30002707": "Unel", "30002708": "Claysson", "30002709": "Auberulle", "30002710": "Adiere", "30002711": "Stetille", "30002712": "Alillere", "30002713": "Abenync", "30002714": "Pozirblant", "30002715": "Bourynes", "30002716": "Aurcel", "30002717": "Aymaerne", "30002718": "Rancer", "30002719": "Miroitem", "30002720": "Thelan", "30002721": "Rorsins", "30002722": "Lamadent", "30002723": "Otou", "30002724": "Assiettes", "30002725": "Goinard", "30002726": "Raeghoscon", "30002727": "Allipes", "30002728": "Lermireve", "30002729": "Aetree", "30002730": "Esmes", "30002731": "Vittenyn", "30002732": "Mirilene", "30002733": "Pucherie", "30002734": "Fricoure", "30002735": "Caretyn", "30002736": "Ainaille", "30002737": "Konola", "30002738": "Inoue", "30002739": "Isaziwa", "30002740": "Eitu", "30002741": "Horkkisen", "30002742": "Erila", "30002743": "Ohvosamon", "30002744": "Auviken", "30002745": "Saikanen", "30002746": "Oijamon", "30002747": "Kakki", "30002748": "Jeras", "30002749": "Kausaaja", "30002750": "Oiniken", "30002751": "Kaimon", "30002752": "Ahynada", "30002753": "Aikoro", "30002754": "Alikara", "30002755": "Usi", "30002756": "Ishomilken", "30002757": "Nikkishina", "30002758": "Hasama", "30002759": "Uuna", "30002760": "Manjonakko", "30002761": "Kassigainen", "30002762": "Yashunen", "30002763": "Tennen", "30002764": "Hatakani", "30002765": "Sivala", "30002766": "Iivinen", "30002767": "Kubinen", "30002768": "Uedama", "30002769": "Enderailen", "30002770": "Tunudan", "30002771": "Kulelen", "30002772": "Rairomon", "30002773": "Hogimo", "30002774": "Huttaken", "30002775": "Paara", "30002776": "Annaro", "30002777": "Isutaka", "30002778": "Tasabeshi", "30002779": "Ono", "30002780": "Muvolailen", "30002781": "Halaima", "30002782": "Kamio", "30002783": "Sankkasen", "30002784": "Tintoh", "30002785": "Santola", "30002786": "Ikao", "30002787": "Waira", "30002788": "Inaro", "30002789": "Kaaputenen", "30002790": "Waskisen", "30002791": "Sirppala", "30002792": "Irjunen", "30002793": "Inari", "30002794": "Yria", "30002795": "Oshaima", "30002796": "Hysera", "30002797": "Kaunokka", "30002798": "Venilen", "30002799": "Oisio", "30002800": "Haatomo", "30002801": "Suroken", "30002802": "Kusomonmon", "30002803": "Juunigaishi", "30002804": "Isikesu", "30002805": "Anttiri", "30002806": "Hasmijaala", "30002807": "Nagamanen", "30002808": "Oto", "30002809": "Sujarento", "30002810": "Eranakko", "30002811": "Onatoh", "30002812": "Tannolen", "30002813": "Tama", "30002814": "Uotila", "30002815": "Isenairos", "30002816": "Saila", "30002817": "Aramachi", "30002818": "Oichiya", "30002819": "Motsu", "30002820": "N-JK02", "30002821": "JT2I-7", "30002822": "XTJ-5Q", "30002823": "1-KCSA", "30002824": "UJXC-B", "30002825": "UDVW-O", "30002826": "F48K-D", "30002827": "FBH-JN", "30002828": "BVRQ-O", "30002829": "QX-4HO", "30002830": "LS3-HP", "30002831": "SH6X-F", "30002832": "6V-D0E", "30002833": "SG-3HY", "30002834": "AU2V-J", "30002835": "SY-0AM", "30002836": "A-YB15", "30002837": "QZX-L9", "30002838": "D-6PKO", "30002839": "RAI-0E", "30002840": "MN9P-A", "30002841": "TA9T-P", "30002842": "L-TLFU", "30002843": "BM-VYZ", "30002844": "Q-GICU", "30002845": "EPCD-D", "30002846": "0S1-GI", "30002847": "L-GY1B", "30002848": "74-DRC", "30002849": "LE-67X", "30002850": "B1UE-J", "30002851": "O31W-6", "30002852": "M3-H2Y", "30002853": "G-KCFT", "30002854": "WNM-V0", "30002855": "6FS-CZ", "30002856": "HPV-RJ", "30002857": "H7S-5I", "30002858": "C3J0-O", "30002859": "GSO-SR", "30002860": "B3ZU-H", "30002861": "G4-QU6", "30002862": "V2-GZS", "30002863": "HD-HOZ", "30002864": "42G-OB", "30002865": "LEM-I1", "30002866": "1S-SU1", "30002867": "ND-GL4", "30002868": "9-0QB7", "30002869": "M-75WN", "30002870": "PNFW-O", "30002871": "HVGR-R", "30002872": "K76A-3", "30002873": "K95-9I", "30002874": "R1O-GN", "30002875": "GQ-7SP", "30002876": "BGMZ-0", "30002877": "I2D3-5", "30002878": "FZX-PU", "30002879": "O9K-FT", "30002880": "RQOO-U", "30002881": "FB5U-I", "30002882": "BZ-BCK", "30002883": "5-VFC6", "30002884": "O5-YNW", "30002885": "86L-9F", "30002886": "IUU3-L", "30002887": "J-OAH2", "30002888": "S-LHPJ", "30002889": "4U90-Z", "30002890": "T-945F", "30002891": "FO8M-2", "30002892": "AD-CBT", "30002893": "QPO-WI", "30002894": "R8S-1K", "30002895": "94-H3F", "30002896": "CU9-T0", "30002897": "XCF-8N", "30002898": "FMB-JP", "30002899": "0P-F3K", "30002900": "K5F-Z2", "30002901": "TXME-A", "30002902": "YA0-XJ", "30002903": "2-KF56", "30002904": "VFK-IV", "30002905": "2R-CRW", "30002906": "CCP-US", "30002907": "II-5O9", "30002908": "I30-3A", "30002909": "2O9G-D", "30002910": "NC-N3F", "30002911": "JU-OWQ", "30002912": "S-DN5M", "30002913": "MXX5-9", "30002914": "ZZZR-5", "30002915": "C7Y-7Z", "30002916": "X-Z4DA", "30002917": "3OAT-Q", "30002918": "N-TFXK", "30002919": "33RB-O", "30002920": "DKUK-G", "30002921": "3QE-9Q", "30002922": "E-FIC0", "30002923": "ZOYW-O", "30002924": "85-B52", "30002925": "YZ-UKA", "30002926": "RO0-AF", "30002927": "5W3-DG", "30002928": "LT-DRO", "30002929": "7T6P-C", "30002930": "8S28-3", "30002931": "E3UY-6", "30002932": "LEK-N5", "30002933": "AGG-NR", "30002934": "0V0R-R", "30002935": "O-2RNZ", "30002936": "OWXT-5", "30002937": "3JN9-Q", "30002938": "3T7-M8", "30002939": "WUZ-WM", "30002940": "MZ1E-P", "30002941": "43B-O1", "30002942": "J1AU-9", "30002943": "X3-PBC", "30002944": "4N-BUI", "30002945": "N2IS-B", "30002946": "XCBK-X", "30002947": "GY5-26", "30002948": "VPLL-N", "30002949": "9CK-KZ", "30002950": "5S-KXA", "30002951": "U-TJ7Y", "30002952": "A4L-A2", "30002953": "CZDJ-1", "30002954": "RG9-7U", "30002955": "UJY-HE", "30002956": "UEJX-G", "30002957": "Tzvi", "30002958": "Raa", "30002959": "Sifilar", "30002960": "Arzad", "30002961": "Oyeman", "30002962": "Ezzara", "30002963": "Odin", "30002964": "Esescama", "30002965": "Choonka", "30002966": "Thasinaz", "30002967": "Dihra", "30002968": "Dital", "30002969": "Eredan", "30002970": "Ohide", "30002971": "Sasoutikh", "30002972": "Gheth", "30002973": "Lisudeh", "30002974": "Mehatoor", "30002975": "Roushzar", "30002976": "Labapi", "30002977": "Arayar", "30002978": "Asghed", "30002979": "Tararan", "30002980": "Sosan", "30002981": "Halmah", "30002982": "Rahadalon", "30002983": "Soosat", "30002984": "Ibash", "30002985": "Itsyamil", "30002986": "Mendori", "30002987": "Ussad", "30002988": "Nakatre", "30002989": "Laddiaha", "30002990": "Hakshma", "30002991": "Uadelah", "30002992": "Akes", "30002993": "Riavayed", "30002994": "Hati", "30002995": "Naeel", "30002996": "Lower Debyl", "30002997": "Ehnoum", "30002998": "Upper Debyl", "30002999": "Shastal", "30003000": "Thakala", "30003001": "Mili", "30003002": "Faktun", "30003003": "Halenan", "30003004": "Ulerah", "30003005": "Uktiad", "30003006": "Nidebora", "30003007": "Arveyil", "30003008": "Palpis", "30003009": "Arnatele", "30003010": "Halle", "30003011": "Mormoen", "30003012": "Amattens", "30003013": "Jurlesel", "30003014": "Bereye", "30003015": "Aice", "30003016": "Junsoraert", "30003017": "Harerget", "30003018": "Azer", "30003019": "Cherore", "30003020": "Torvi", "30003021": "Mosson", "30003022": "Mya", "30003023": "Gerper", "30003024": "Marosier", "30003025": "Lirsautton", "30003026": "Blameston", "30003027": "Vaurent", "30003028": "Aclan", "30003029": "Jaschercis", "30003030": "Ardallabier", "30003031": "Athinard", "30003032": "Meves", "30003033": "Ethernity", "30003034": "Mattere", "30003035": "Gicodel", "30003036": "Frarolle", "30003037": "Quier", "30003038": "Atlanins", "30003039": "Leremblompes", "30003040": "Bille", "30003041": "Colcer", "30003042": "Alachene", "30003043": "Uphene", "30003044": "Elarel", "30003045": "Enedore", "30003046": "Angymonne", "30003047": "Averon", "30003048": "Carirgnottin", "30003049": "Laic", "30003050": "Odixie", "30003051": "Antollare", "30003052": "Tolle", "30003053": "Avele", "30003054": "Scuelazyns", "30003055": "Aydoteaux", "30003056": "Muer", "30003057": "Groothese", "30003058": "Olide", "30003059": "Adeel", "30003060": "Mannar", "30003061": "Mormelot", "30003062": "Angatalie", "30003063": "Lamaa", "30003064": "Tuomuta", "30003065": "Otelen", "30003066": "Kuomi", "30003067": "Huola", "30003068": "Kourmonen", "30003069": "Kamela", "30003070": "Sosala", "30003071": "Anka", "30003072": "Iesa", "30003073": "Netsalakka", "30003074": "Sasiekko", "30003075": "Myyhera", "30003076": "Gammel", "30003077": "Uusanen", "30003078": "Erkinen", "30003079": "Saikamon", "30003080": "Jarkkolen", "30003081": "Ronne", "30003082": "Hatori", "30003083": "Junsen", "30003084": "Malpara", "30003085": "Hakodan", "30003086": "Sahtogas", "30003087": "Haras", "30003088": "Oyonata", "30003089": "Kurniainen", "30003090": "Saidusairos", "30003091": "Tannakan", "30003092": "Komaa", "30003093": "Ayeroilen", "30003094": "Imata", "30003095": "Furskeshin", "30003096": "Kurmaru", "30003097": "Satalama", "30003098": "VYJ-DA", "30003099": "HHQ-M1", "30003100": "A-CJGE", "30003101": "G2-INZ", "30003102": "WAC-HW", "30003103": "HT4K-M", "30003104": "RBW-8G", "30003105": "4-OUKF", "30003106": "HAJ-DQ", "30003107": "JAUD-V", "30003108": "DTX8-M", "30003109": "C9N-CC", "30003110": "X-7BIX", "30003111": "5-9UXZ", "30003112": "Q0OH-V", "30003113": "C-VZAK", "30003114": "0-O6XF", "30003115": "D-FVI7", "30003116": "VL7-60", "30003117": "NH-R5B", "30003118": "FN-GFQ", "30003119": "XKZ8-H", "30003120": "WX-6UX", "30003121": "BZ-0GW", "30003122": "16P-PX", "30003123": "CR-0E5", "30003124": "Z-Y9C3", "30003125": "A1-AUH", "30003126": "F-UVBV", "30003127": "R-FM0G", "30003128": "TEIZ-C", "30003129": "VUAC-Y", "30003130": "V-XANH", "30003131": "450I-W", "30003132": "OIOM-Y", "30003133": "G-YZUX", "30003134": "CZ6U-1", "30003135": "D-PNP9", "30003136": "E1UU-3", "30003137": "P-3XVV", "30003138": "BY-MSY", "30003139": "6EK-BV", "30003140": "IR-FDV", "30003141": "NIZJ-0", "30003142": "J-RVGD", "30003143": "V1ZC-S", "30003144": "H-T40Z", "30003145": "6-TYRX", "30003146": "Q1-R7K", "30003147": "111-F1", "30003148": "JD-TYH", "30003149": "02V-BK", "30003150": "A5MT-B", "30003151": "R-ARKN", "30003152": "SN9S-N", "30003153": "MS2-V8", "30003154": "Z-MO29", "30003155": "G-JC9R", "30003156": "DIBH-Q", "30003157": "DNEP-Y", "30003158": "YAP-TN", "30003159": "PE-H02", "30003160": "H-YHYM", "30003161": "G-4H4C", "30003162": "HHE5-L", "30003163": "P9F-ZG", "30003164": "QFGB-E", "30003165": "7P-J38", "30003166": "WT-2J9", "30003167": "PK-PHZ", "30003168": "L-M6JK", "30003169": "C-PEWN", "30003170": "DL-CDY", "30003171": "29YH-V", "30003172": "LG-RO2", "30003173": "X-HISR", "30003174": "QS-530", "30003175": "VR-YRV", "30003176": "IPX-H5", "30003177": "KSM-1T", "30003178": "YRV-MZ", "30003179": "6SB-BN", "30003180": "B1D-KU", "30003181": "QFIU-K", "30003182": "2R-KLH", "30003183": "QB-AE6", "30003184": "G-W1ND", "30003185": "MZLW-9", "30003186": "ND-X7X", "30003187": "DGDT-3", "30003188": "2-WNTD", "30003189": "83-YGI", "30003190": "KH-EWC", "30003191": "3VL6-I", "30003192": "F-816R", "30003193": "DS3-6A", "30003194": "V0-H4L", "30003195": "T-HMWP", "30003196": "DYS-CG", "30003197": "MTGF-2", "30003198": "0-QP56", "30003199": "GTQ-C9", "30003200": "M-NWLB", "30003201": "ORB4-J", "30003202": "GGMF-J", "30003203": "IG-4OF", "30003204": "LQQH-J", "30003205": "W5-VBR", "30003206": "J-D5U7", "30003207": "Y-770C", "30003208": "X-Z4JW", "30003209": "R8WV-7", "30003210": "6U-MFQ", "30003211": "1EO-OE", "30003212": "YQTK-R", "30003213": "FZCR-3", "30003214": "5-9L3H", "30003215": "1-HDQ4", "30003216": "WVMS-X", "30003217": "7-UVMT", "30003218": "R-ZESX", "30003219": "IO-R2S", "30003220": "HF-K3O", "30003221": "QE2-FS", "30003222": "Q-ITV5", "30003223": "5JEZ-I", "30003224": "XEF6-Z", "30003225": "SON-TW", "30003226": "V-X0KM", "30003227": "U9SE-N", "30003228": "XXZ-3W", "30003229": "RF-X7V", "30003230": "BQ0-UU", "30003231": "3-JG3X", "30003232": "GK3-RX", "30003233": "1P-QWR", "30003234": "FJ-GUR", "30003235": "UGR-J2", "30003236": "QZ-DIZ", "30003237": "Y-0HVF", "30003238": "21M1-B", "30003239": "KED-2O", "30003240": "U-RELP", "30003241": "IAMJ-Q", "30003242": "E6Q-LE", "30003243": "HO4E-Q", "30003244": "QY2Y-N", "30003245": "X-9ZZR", "30003246": "RO-AIQ", "30003247": "VZEG-B", "30003248": "P-ZWKH", "30003249": "9G5J-1", "30003250": "B-ETDW", "30003251": "0PU2-R", "30003252": "XM-RMD", "30003253": "91-KD8", "30003254": "OZ-DS5", "30003255": "LA2-KV", "30003256": "WW-OVQ", "30003257": "S7WI-F", "30003258": "1-BK1Q", "30003259": "X-CYNC", "30003260": "RJBC-I", "30003261": "H-MHWF", "30003262": "PND-SI", "30003263": "XKM-DE", "30003264": "JXQJ-B", "30003265": "Y-BIPM", "30003266": "QYT-X8", "30003267": "5-IH57", "30003268": "MHC-R3", "30003269": "F67E-Q", "30003270": "6E-578", "30003271": "Poitot", "30003272": "ZVN5-H", "30003273": "ATY-2U", "30003274": "X-BV98", "30003275": "2X-PQG", "30003276": "FD-MLJ", "30003277": "PF-346", "30003278": "X-M2LR", "30003279": "K5-JRD", "30003280": "6-CZ49", "30003281": "EZA-FM", "30003282": "8-JYPM", "30003283": "PVH8-0", "30003284": "M2-CF1", "30003285": "JH-M2W", "30003286": "PC9-AY", "30003287": "T22-QI", "30003288": "X-PYH5", "30003289": "ZN0-SR", "30003290": "5-DSFH", "30003291": "AK-QBU", "30003292": "QWF-6P", "30003293": "AAS-8R", "30003294": "V4-L0X", "30003295": "PFP-GU", "30003296": "0EK-NJ", "30003297": "1-NKVT", "30003298": "UM-Q7F", "30003299": "T-LIWS", "30003300": "KTHT-O", "30003301": "97X-CH", "30003302": "5-T0PZ", "30003303": "6R-PWU", "30003304": "2Q-I6Q", "30003305": "A-ZLHX", "30003306": "UTKS-5", "30003307": "Y9G-KS", "30003308": "I-YGGI", "30003309": "VV-VCR", "30003310": "5-75MB", "30003311": "IIRH-G", "30003312": "35-RK9", "30003313": "XS-XAY", "30003314": "DP34-U", "30003315": "617I-I", "30003316": "6-U2M8", "30003317": "I0AB-R", "30003318": "MXYS-8", "30002537": "Amamake", "30003320": "8V-SJJ", "30003321": "5-FGQI", "30003322": "3KNK-A", "30003323": "TXW-EI", "30003324": "3MOG-V", "30003325": "NG-C6Y", "30003326": "XYY-IA", "30003327": "BMNV-P", "30003328": "BY-S36", "30003329": "31-MLU", "30003330": "0LTQ-C", "30003331": "A9D-R0", "30003332": "2P-4LS", "30003333": "RF-GGF", "30003334": "LSC4-P", "30003335": "A-SJ8X", "30003336": "10UZ-P", "30003337": "EN-VOD", "30003338": "9GYL-O", "30003339": "VLGD-R", "30003340": "S-GKKR", "30003341": "9U-TTJ", "30003342": "Y-W6GF", "30003343": "KFR-ZE", "30003344": "KLYN-8", "30003345": "D85-VD", "30003346": "5-VKCN", "30003347": "U0V6-T", "30003348": "5KS-AB", "30003349": "0T-AMZ", "30003350": "57-YRU", "30003351": "4L-E5P", "30003352": "UFXF-C", "30003353": "RLL-9R", "30003354": "51-5XG", "30003355": "EF-F36", "30003356": "3-IN0V", "30003357": "Z-QENW", "30003358": "D-B7YK", "30003359": "DUV-5Y", "30003360": "GRNJ-3", "30003361": "VSIG-K", "30003362": "RSS-KA", "30003363": "CIS-7X", "30003364": "DCHR-L", "30003365": "EU0I-T", "30003366": "4-JWWQ", "30003367": "G-6SXJ", "30003368": "S-U8A4", "30003369": "ZV-72W", "30003370": "2G38-I", "30003371": "CY-ZLP", "30003372": "U4-Q2V", "30003373": "98Q-8O", "30003374": "Arlulf", "30003375": "Brundakur", "30003376": "Stirht", "30003377": "Illuin", "30003378": "Nedegulf", "30003379": "Aldilur", "30003380": "Alf", "30003381": "Eust", "30003382": "Flost", "30003383": "Todrir", "30003384": "Asgeir", "30003385": "Evuldgenzo", "30003386": "Ongund", "30003387": "Jondik", "30003388": "Olbra", "30003389": "Altrinur", "30003390": "Vilur", "30003391": "Reset", "30003392": "Eygfe", "30003393": "Eiluvodi", "30003394": "Freatlidur", "30003395": "Roleinn", "30003396": "Maturat", "30003397": "Bongveber", "30003398": "Anbald", "30003399": "Vorsk", "30003400": "Hjortur", "30003401": "Egbonbet", "30003402": "Totkubad", "30003403": "Meimungen", "30003404": "Agtver", "30003405": "Datulen", "30003406": "Situner", "30003407": "Tamekamur", "30003408": "Evettullur", "30003409": "Leurtmar", "30003410": "Ryddinjorn", "30003411": "Arlek", "30003412": "Elgoi", "30003413": "Eram", "30003414": "Yrmori", "30003415": "Aldagolf", "30003416": "Aldrat", "30003417": "Urnhard", "30003418": "Hardbako", "30003419": "Erstur", "30003420": "Fredagod", "30003421": "Libold", "30003422": "Wirdalen", "30003423": "Nein", "30003424": "Enden", "30003425": "Erstet", "30003426": "Anstard", "30003427": "Osvestmunnur", "30003428": "Hilfhurmur", "30003429": "Geffur", "30003430": "Oppold", "30003431": "Tratokard", "30003432": "Lumegen", "30003433": "Gedugaud", "30003434": "Polstodur", "30003435": "Hebisa", "30003436": "Tollus", "30003437": "Ogoten", "30003438": "Earled", "30003439": "Aderkan", "30003440": "Ansher", "30003441": "Earwik", "30003442": "Finanar", "30003443": "Moselgi", "30003444": "Mateber", "30003445": "Iluin", "30003446": "Ofage", "30003447": "Josekorn", "30003448": "Nifflung", "30003449": "Hakeri", "30003450": "Oraekja", "30003451": "Dantbeinn", "30003452": "Irgrus", "30003453": "Orduin", "30003454": "Engosi", "30003455": "Atonder", "30003456": "Hotrardik", "30003457": "Ridoner", "30003458": "Klaevik", "30003459": "Lirerim", "30003460": "Offikatlin", "30003461": "Diromitur", "30003462": "Eldjaerin", "30003463": "Erlendur", "30003464": "Aldik", "30003465": "Tabbetzur", "30003466": "Eurgrana", "30003467": "Frulegur", "30003468": "Hroduko", "30003469": "Hodrold", "30003470": "Odebeinn", "30003471": "Konora", "30003472": "Erindur", "30003473": "Fahruni", "30003474": "Sahda", "30003475": "Naguton", "30003476": "Ealur", "30003477": "Shajarleg", "30003478": "Basan", "30003479": "Akila", "30003480": "Amod", "30003481": "Unefsih", "30003482": "Mista", "30003483": "Valmu", "30003484": "Sibot", "30003485": "Andabiar", "30003486": "Kheram", "30003487": "Arbaz", "30003488": "Penirgman", "30003489": "Chaven", "30003490": "Khopa", "30003491": "Ashab", "30003492": "Orkashu", "30003493": "Youl", "30003494": "Ekid", "30003495": "Raravoss", "30003496": "Nakri", "30003497": "Zaimeth", "30003498": "Sharhelund", "30003499": "Mai", "30003500": "Sharji", "30003501": "Kudi", "30003502": "Bahromab", "30003503": "Madirmilire", "30003504": "Niarja", "30003505": "Fabum", "30003506": "Saana", "30003507": "Teshi", "30003508": "Sayartchen", "30003509": "Gosalav", "30003510": "Sorzielang", "30003511": "Somouh", "30003512": "Abaim", "30003513": "Ides", "30003514": "Yeeramoun", "30003515": "Anila", "30003516": "Pedel", "30003517": "Etav", "30003518": "Saheri", "30003519": "Lahnina", "30003520": "Mahrokht", "30003521": "Alkabsi", "30003522": "Sarum Prime", "30003523": "Hama", "30003524": "Irnal", "30003525": "Bagodan", "30003526": "Murzi", "30003527": "Chesoh", "30003528": "Herila", "30003529": "Chemilip", "30003530": "Raravath", "30003531": "Hisoufad", "30003532": "Jesoyeh", "30003533": "Hahda", "30003534": "Namaili", "30003535": "Afivad", "30003536": "Uzigh", "30003537": "Erzoh", "30003538": "Merz", "30003539": "Miakie", "30003540": "Sirkahri", "30003541": "Faswiba", "30003542": "Hayumtom", "30003543": "Zanka", "30003544": "Galeh", "30003545": "Yuhelia", "30003546": "Maiah", "30003547": "Hamse", "30003548": "Barira", "30003549": "Lashkai", "30003550": "Zhilshinou", "30003551": "Jaswelu", "30003552": "Ana", "30003553": "Warouh", "30003554": "Jambu", "30003555": "Bittanshal", "30003556": "Arton", "30003557": "Sieh", "30003558": "Madimal", "30003559": "Mamet", "30003560": "Hoshoun", "30003561": "Biphi", "30003562": "Ziriert", "30003563": "Misaba", "30003564": "Rephirib", "30003565": "Conomette", "30003566": "Aimoguier", "30003567": "Yveve", "30003568": "Meunvon", "30003569": "Cadelanne", "30003570": "Elore", "30003571": "Anckee", "30003572": "Vevelonel", "30003573": "Pertnineere", "30003574": "Boystin", "30003575": "Lour", "30003576": "Maire", "30003577": "Oerse", "30003578": "Octanneve", "30003579": "Larryn", "30003580": "Niballe", "30003581": "Postouvin", "30003582": "Odinesyn", "30003583": "Weraroix", "30003584": "Sarline", "30003585": "Aeter", "30003586": "Gererique", "30003587": "Harner", "30003588": "Yvaeroure", "30003589": "Vecodie", "30003590": "Arasare", "30003591": "Yvelet", "30003592": "Lazer", "30003593": "Stoure", "30003594": "Heluene", "30003595": "Arittant", "30003596": "Oruse", "30003597": "Hare", "30003598": "Ogaria", "30003599": "Faurulle", "30003600": "Agaullores", "30003601": "Babirmoult", "30003602": "Ratillose", "30003603": "Ondree", "30003604": "Pochelympe", "30003605": "Eggheron", "30003606": "Toustain", "30003607": "Straloin", "30003608": "H1-ESN", "30003609": "3DR-CR", "30003610": "RLTG-3", "30003611": "S-EVIQ", "30003612": "EOY-BG", "30003613": "PNS7-J", "30003614": "IG-ZAM", "30003615": "0-UVHJ", "30003616": "NCG-PW", "30003617": "1QH-0K", "30003618": "ZH3-BS", "30003619": "ZJ-QOO", "30003620": "ZXA-V6", "30003621": "I1-BE8", "30003622": "W8O-19", "30003623": "U1TX-A", "30003624": "1BWK-S", "30003625": "KMV-CQ", "30003626": "RKE-CP", "30003627": "NV-3KA", "30003628": "S-1LIO", "30003629": "S-KSWL", "30003630": "5-O8B1", "30003631": "R-YWID", "30003632": "30-D5G", "30003633": "HB-FSO", "30003634": "J1-KJP", "30003635": "KW-1MV", "30003636": "G06-8Y", "30003637": "U-O2DA", "30003638": "WV-0R2", "30003639": "SZ6-TA", "30003640": "6-AOLS", "30003641": "IKTD-P", "30003642": "33CE-7", "30003643": "L-P3XM", "30003644": "DCJ-ZT", "30003645": "O36A-P", "30003646": "Z-LO6I", "30003647": "0M-103", "30003648": "6OYQ-Z", "30003649": "HE5T-A", "30003650": "A-1IJ9", "30003651": "Y-YHZQ", "30003652": "Z-SR1I", "30003653": "GW7P-8", "30003654": "SF-XJS", "30003655": "A1RR-M", "30003656": "AR-5SY", "30003657": "OE-4HB", "30003658": "ZK-YQ3", "30003659": "MZPH-W", "30003660": "W0X-MG", "30003661": "JI-1UQ", "30003662": "EN-GTB", "30003663": "U5-XW7", "30003664": "JSI-LL", "30003665": "M-UC0S", "30003666": "V7-MID", "30003667": "SY0W-2", "30003668": "2-3Q2G", "30003669": "Q1U-IU", "30003670": "C-XNUA", "30003671": "7D-PAT", "30003672": "V-LDEJ", "30003673": "T-K10W", "30003674": "P-UCRP", "30003675": "3-QYVE", "30003676": "C8-CHY", "30003677": "E-9ORY", "30003678": "CR-IFM", "30003679": "HHK-VL", "30003680": "P-33KR", "30003681": "DO6H-Q", "30003682": "DW-T2I", "30003683": "O-CNPR", "30003684": "L-SCBU", "30003685": "VRH-H7", "30003686": "O1Y-ED", "30003687": "K4YZ-Y", "30003688": "X36Y-G", "30003689": "L-C3O7", "30003690": "YKSC-A", "30003691": "FIO1-8", "30003692": "C-OK0R", "30003693": "0-ARFO", "30003694": "E9KD-N", "30003695": "8W-OSE", "30003696": "WQY-IQ", "30003697": "C4C-Z4", "30003698": "GME-PQ", "30003699": "MPPA-A", "30003700": "X5-UME", "30003701": "I-UUI5", "30003702": "8QMO-E", "30003703": "G-5EN2", "30003704": "9-F0B2", "30003705": "YWS0-Z", "30003706": "4B-NQN", "30003707": "9UY4-H", "30003708": "49GC-R", "30003709": "D-GTMI", "30003710": "FSW-3C", "30003711": "FX-7EM", "30003712": "MH9C-S", "30003713": "G7AQ-7", "30003714": "QBL-BV", "30003715": "T-RPFU", "30003716": "I7S-1S", "30003717": "U-HYMT", "30003718": "FC-3YI", "30003719": "QR-K85", "30003720": "5IO8-U", "30003721": "DP-JD4", "30003722": "OXIY-V", "30003723": "H6-CX8", "30003724": "D61A-G", "30003725": "Shintaht", "30003726": "Y-MPWL", "30003727": "D-6WS1", "30003728": "SI-I89", "30003729": "KBP7-G", "30003730": "B-WPLZ", "30003731": "XHQ-7V", "30003732": "E-YCML", "30003733": "TU-O0T", "30003734": "Y9-MDG", "30003735": "PI5-39", "30003736": "GN7-XY", "30003737": "F-DTOO", "30003738": "5KG-PY", "30003739": "QO-SRI", "30003740": "INQ-WR", "30003741": "S9X-AX", "30003742": "TU-RI6", "30003743": "08Z-JJ", "30003744": "X-4WZD", "30003745": "6-OQJV", "30003746": "AY-YCU", "30003747": "ZT-LPU", "30003748": "3GXF-U", "30003749": "VKI-T7", "30003750": "8P9-BM", "30003751": "F-YH5B", "30003752": "H-GKI6", "30003753": "YQB-22", "30003754": "2-TEGJ", "30003755": "MVCJ-E", "30003756": "AY-24I", "30003757": "BK4-YC", "30003758": "K1I1-J", "30003759": "LF-2KP", "30003760": "JEIV-E", "30003761": "O-Y5JQ", "30003762": "DNR-7M", "30003763": "N-RMSH", "30003764": "K1Y-5H", "30003765": "IWZ3-C", "30003766": "1-1I53", "30003767": "N8XA-L", "30003768": "18-GZM", "30003769": "R3-K7K", "30003770": "X-R3NM", "30003771": "8B-VLX", "30003772": "G-B22J", "30003773": "X6AB-Y", "30003774": "2V-CS5", "30003775": "H9-J8N", "30003776": "HP-6Z6", "30003777": "GA9P-0", "30003778": "7YWV-S", "30003779": "TXJ-II", "30003780": "C1-HAB", "30003781": "3KB-J0", "30003782": "0B-HLZ", "30003783": "Z-RFE3", "30003784": "I-MGAB", "30003785": "18XA-C", "30003786": "3D-CQU", "30003787": "Agoze", "30003788": "Intaki", "30003789": "Brarel", "30003790": "Vey", "30003791": "Annancale", "30003792": "Ostingele", "30003793": "Harroule", "30003794": "Stacmon", "30003795": "Covryn", "30003796": "Iges", "30003797": "Dastryns", "30003798": "Slays", "30003799": "Uphallant", "30003800": "Alperaute", "30003801": "Aunsou", "30003802": "Cumemare", "30003803": "Reynire", "30003804": "Pain", "30003805": "Gare", "30003806": "Pelille", "30003807": "Dour", "30003808": "Grispire", "30003809": "Brellystier", "30003810": "Vivanier", "30003811": "Algasienan", "30003812": "Osmallanais", "30003813": "Ivorider", "30003814": "Mollin", "30003815": "Iffrue", "30003816": "Vilinnon", "30003817": "Ommaerrer", "30003818": "Aulbres", "30003819": "Barleguet", "30003820": "Vestouve", "30003821": "Ausmaert", "30003822": "Espigoure", "30003823": "Kenninck", "30003824": "Archavoinet", "30003825": "Eugales", "30003826": "Frarie", "30003827": "Aubenall", "30003828": "Moclinamaud", "30003829": "Renarelle", "30003830": "Orvolle", "30003831": "Osmeden", "30003832": "Adacyne", "30003833": "Oulley", "30003834": "Chardalane", "30003835": "Maut", "30003836": "Vlillirier", "30003837": "Aldranette", "30003838": "Oicx", "30003839": "Evaulon", "30003840": "Anchauttes", "30003841": "Alsavoinon", "30003842": "Esesier", "30003843": "Avaux", "30003844": "Gallusiene", "30003845": "Ruerrotta", "30003846": "Hedoubel", "30003847": "Amoen", "30003848": "Amasiree", "30003849": "Aubonnie", "30003850": "Alparena", "30003851": "Reschard", "30003852": "Arderonne", "30003853": "Mercomesier", "30003854": "Alamel", "30003855": "Mantenault", "30003856": "Athounon", "30003857": "Odamia", "30003858": "Gousoviba", "30003859": "Neyi", "30003860": "Kihtaled", "30003861": "Ipref", "30003862": "Agil", "30003863": "Khanid Prime", "30003864": "Jachanu", "30003865": "Sazre", "30003866": "Bukah", "30003867": "Ervekam", "30003868": "Mashtarmem", "30003869": "Sehsasez", "30003870": "Osis", "30003871": "Geztic", "30003872": "Yezara", "30003873": "Kahah", "30003874": "Saloti", "30003875": "Hishai", "30003876": "Molea", "30003877": "Gidali", "30003878": "Palas", "30003879": "Safshela", "30003880": "Reteka", "30003881": "Moniyyuku", "30003882": "Lansez", "30003883": "Keberz", "30003884": "Nourbal", "30003885": "Arzanni", "30003886": "Ashmarir", "30003887": "Kaira", "30003888": "Badivefi", "30003889": "Talidal", "30003890": "Ashi", "30003891": "Tzashrah", "30003892": "Efa", "30003893": "Moro", "30003894": "Sabusi", "30003895": "Ainsan", "30003896": "Claini", "30003897": "Gehi", "30003898": "Seshala", "30003899": "Vezila", "30003900": "Ham", "30003901": "Upt", "30003902": "Hemouner", "30003903": "Afnakat", "30003904": "Col", "30003905": "Chamemi", "30003906": "Firbha", "30003907": "Tegheon", "30003908": "Bashyam", "30003909": "Parses", "30003910": "Balanaz", "30003911": "Edani", "30003912": "Danera", "30003913": "Bomana", "30003914": "Rahabeda", "30003915": "Aurejet", "30003916": "Rilera", "30003917": "Amafi", "30003918": "Hakana", "30003919": "Ashkoo", "30003920": "Baratar", "30003921": "Arzieh", "30003922": "Nahrneder", "30003923": "Nandeza", "30003924": "Dimoohan", "30003925": "Chitiamem", "30003926": "Kuhri", "30003927": "Zahefeus", "30003928": "Zephan", "30003929": "Neda", "30003930": "Goudiyah", "30003931": "Sassecho", "30003932": "Timudan", "30003933": "Ibani", "30003934": "Cabeki", "30003935": "Irmalin", "30003936": "Nakis", "30003937": "Hezere", "30003938": "Fanathor", "30003939": "Zirsem", "30003940": "Pout", "30003941": "Rafeme", "30003942": "A2-V27", "30003943": "T8H-66", "30003944": "A3-LOG", "30003945": "7V-KHW", "30003946": "O3L-95", "30003947": "0-WT2D", "30003948": "7GCD-P", "30003949": "G-3BOG", "30003950": "K7D-II", "30003951": "L-6BE1", "30003952": "1M4-FK", "30003953": "V-LEKM", "30003954": "9ES-SI", "30003955": "UQY-IK", "30003956": "60M-TG", "30003957": "0TKF-6", "30003958": "TV8-HS", "30003959": "VT-G2P", "30003960": "YOP-0T", "30003961": "9-HM04", "30003962": "MKD-O8", "30003963": "GOP-GE", "30003964": "SKR-SP", "30003965": "V-3U8T", "30003966": "T8T-RA", "30003967": "A-BO4V", "30003968": "W-IX39", "30003969": "K-B8DK", "30003970": "L-6W1J", "30003971": "P4-3TJ", "30003972": "K-Z0V4", "30003973": "LNVW-K", "30003974": "8B-SAJ", "30003975": "Q2-N6W", "30003976": "C-9RRR", "30003977": "A-5F4A", "30003978": "P-ZMZV", "30003979": "9CG6-H", "30003980": "NDII-Q", "30003981": "UYU-VV", "30003982": "K-L690", "30003983": "W6V-VM", "30003984": "OGY-6D", "30003985": "8-SNUD", "30003986": "H-4R6Z", "30003987": "IGE-NE", "30003988": "UVHO-F", "30003989": "Z-XX2J", "30003990": "YW-SYT", "30003991": "Z-UZZN", "30003992": "DS-LO3", "30003993": "BX2-ZX", "30003994": "RF-CN3", "30003995": "C-7SBM", "30003996": "ZAU-JW", "30003997": "YF-6L1", "30003998": "K-YI1L", "30003999": "KEJY-U", "30004000": "3BK-O7", "30004001": "8-GE2P", "30004002": "QXQ-I6", "30004003": "L3-I3K", "30004004": "3-JCJT", "30004005": "W-IIYI", "30004006": "AO-N1P", "30004007": "4-GJT1", "30004008": "5V-BJI", "30004009": "49-U6U", "30004010": "M1BZ-2", "30004011": "N-M1A3", "30004012": "8QT-H4", "30004013": "F2OY-X", "30004014": "4-2UXV", "30004015": "RKM-GE", "30004016": "DG-L7S", "30004017": "K4-RFZ", "30004018": "L-FVHR", "30004019": "3-FKCZ", "30004020": "ED-L9T", "30004021": "LS-V29", "30004022": "9SBB-9", "30004023": "I1Y-IU", "30004024": "U-HYZN", "30004025": "8-YNBE", "30004026": "YQX-7U", "30004027": "QY1E-N", "30004028": "E-VKJV", "30004029": "BX-VEX", "30004030": "B-7DFU", "30004031": "ZXJ-71", "30004032": "F-NXLQ", "30004033": "ES-Q0W", "30004034": "H74-B0", "30004035": "NU4-2G", "30004036": "3D5K-R", "30004037": "1-3HWZ", "30004038": "XT-R36", "30004039": "5-MLDT", "30004040": "B-DBYQ", "30004041": "QXW-PV", "30004042": "DY-F70", "30004043": "FD53-H", "30004044": "O-ZXUV", "30004045": "77-KDQ", "30004046": "F7C-H0", "30004047": "TN-T7T", "30004048": "1-NW2G", "30004049": "O-IVNH", "30004050": "O-0HW8", "30004051": "YI-8ZM", "30004052": "OU-X3P", "30004053": "6-4V20", "30004054": "Q-UA3C", "30004055": "W-4NUU", "30004056": "8R-RTB", "30004057": "6Z9-0M", "30004058": "FQ9W-C", "30004059": "9-4RP2", "30004060": "O-BDXB", "30004061": "G8AD-C", "30004062": "XZH-4X", "30004063": "Z-Y7R7", "30004064": "MJYW-3", "30004065": "PPG-XC", "30004066": "QA1-BT", "30004067": "5S-KNL", "30004068": "00TY-J", "30004069": "XG-D1L", "30004070": "6RCQ-V", "30004071": "28O-JY", "30004072": "CX7-70", "30004073": "6ON-RW", "30004074": "U65-CN", "30004075": "X-M9ON", "30004076": "P5-KCC", "30004077": "Hiroudeh", "30004078": "Dresi", "30004079": "Aphend", "30004080": "Romi", "30004081": "Zororzih", "30004082": "Aharalel", "30004083": "Gensela", "30004084": "Ghesis", "30004085": "Gamdis", "30004086": "Joamma", "30004087": "Gonan", "30004088": "Joramok", "30004089": "Neburab", "30004090": "Aband", "30004091": "Uanim", "30004092": "Murini", "30004093": "Askonak", "30004094": "Nordar", "30004095": "Kador Prime", "30004096": "Khafis", "30004097": "Dantan", "30004098": "Turba", "30004099": "Sonama", "30004100": "Halibai", "30004101": "Suner", "30004102": "Inis-Ilix", "30004103": "Kothe", "30004104": "Ansasos", "30004105": "Dehrokh", "30004106": "Bordan", "30004107": "Zimmem", "30004108": "Chaneya", "30004109": "Oberen", "30004110": "Finid", "30004111": "Yarebap", "30004112": "Mandoo", "30004113": "Miah", "30004114": "Peyiri", "30004115": "Kamda", "30004116": "Rayeret", "30004117": "Bushemal", "30004118": "Ardhis", "30004119": "Gasavak", "30004120": "Iaokit", "30004121": "Menri", "30004122": "Chanoun", "30004123": "Garisas", "30004124": "Aphi", "30004125": "Jakri", "30004126": "Nidupad", "30004127": "Zimse", "30004128": "Koona", "30004129": "Munory", "30004130": "Hostakoh", "30004131": "Yooh", "30004132": "Jeshideh", "30004133": "Hilmar", "30004134": "Kasi", "30004135": "Shura", "30004136": "Mod", "30004137": "Omam", "30004138": "Bersyrim", "30004139": "Sechmaren", "30004140": "Zinoo", "30004141": "Hiremir", "30004142": "Hikansog", "30004143": "Syrikos", "30004144": "Yebouz", "30004145": "Hapala", "30004146": "Salah", "30004147": "Akhmoh", "30004148": "Jennim", "30004149": "Elmed", "30004150": "Shaggoth", "30004151": "Ustnia", "30004152": "Kooreng", "30004153": "Minin", "30004154": "Yehnifi", "30004155": "Shemah", "30004156": "Asrios", "30004157": "Ithar", "30004158": "Telang", "30004159": "Lazara", "30004160": "Zorrabed", "30004161": "FV-YEA", "30004162": "J-A5QD", "30004163": "BI0Y-X", "30004164": "SK7-G6", "30004165": "4-PCHD", "30004166": "5-3722", "30004167": "GQLB-V", "30004168": "5E-EZC", "30004169": "9KE-IT", "30004170": "P-NRD3", "30004171": "Y-RAW3", "30004172": "S-W8CF", "30004173": "X-41DA", "30004174": "YVSL-2", "30004175": "5E6I-W", "30004176": "KIG9-K", "30004177": "I-CMZA", "30004178": "H23-B5", "30004179": "A-0IIQ", "30004180": "CBY8-J", "30004181": "E-BYOS", "30004182": "ETXT-F", "30004183": "MK-YNM", "30004184": "2-9Z6V", "30004185": "5HN-D6", "30004186": "E-B957", "30004187": "P-H5IY", "30004188": "4A-6NI", "30004189": "1M7-RK", "30004190": "87-1PM", "30004191": "C2-1B5", "30004192": "JE-VLG", "30004193": "5ED-4E", "30004194": "B-U299", "30004195": "DN58-U", "30004196": "VAF1-P", "30004197": "FV1-RQ", "30004198": "QT-EBC", "30004199": "O-F4SN", "30004200": "CUT-0V", "30004201": "9-WEMC", "30004202": "U6R-F9", "30004203": "L-Z9NB", "30004204": "EJ-5X2", "30004205": "HXK-J6", "30004206": "4LNE-M", "30004207": "DK0-N8", "30004208": "E0DR-G", "30004209": "KI2-S3", "30004210": "CHP-76", "30004211": "T-67F8", "30004212": "58Z-IH", "30004213": "M-VACR", "30004214": "0B-VOJ", "30004215": "J-QOKQ", "30004216": "4GSZ-1", "30004217": "E-EFAM", "30004218": "SBEN-Q", "30004219": "9-7SRQ", "30004220": "VEQ-3V", "30004221": "4T-VDE", "30004222": "D9Z-VY", "30004223": "MO-YDG", "30004224": "42SU-L", "30004225": "RGU1-T", "30004226": "1GT-MA", "30004227": "VY-866", "30004228": "HB-5L3", "30004229": "Q-VTWJ", "30004230": "Van", "30004231": "Shakasi", "30004232": "Zayi", "30004233": "Shirshocin", "30004234": "Maalna", "30004235": "Maseera", "30004236": "Yehaba", "30004237": "Kenahehab", "30004238": "Gens", "30004239": "Kamih", "30004240": "Hier", "30004241": "Jasson", "30004242": "Sadana", "30004243": "Isid", "30004244": "Onanam", "30004245": "Udianoor", "30004246": "Vehan", "30004247": "Marmeha", "30004248": "Haimeh", "30004249": "Avada", "30004250": "Chibi", "30004251": "Mishi", "30004252": "Bazadod", "30004253": "Pahineh", "30004254": "Fihrneh", "30004255": "Parouz", "30004256": "Edilkam", "30004257": "Hakatiz", "30004258": "Khnar", "30004259": "Ertoo", "30004260": "Yiratal", "30004261": "Balas", "30004262": "Pemsah", "30004263": "Feshur", "30004264": "Hoseen", "30004265": "Yekh", "30004266": "Gesh", "30004267": "Nema", "30004268": "Shenda", "30004269": "Rashagh", "30004270": "Sazilid", "30004271": "Afrah", "30004272": "Sota", "30004273": "Soliara", "30004274": "Nielez", "30004275": "Tukanas", "30004276": "Fageras", "30004277": "Ajna", "30004278": "Sheri", "30004279": "Ahraghen", "30004280": "Nalnifan", "30004281": "Jerhesh", "30004282": "Getrenjesa", "30004283": "Shafrak", "30004284": "Defsunun", "30004285": "Zazamye", "30004286": "Yahyerer", "30004287": "Esubara", "30004288": "Ghekon", "30004289": "Vaini", "30004290": "Zaveral", "30004291": "Anohel", "30004292": "Soza", "30004293": "Pserz", "30004294": "Illi", "30004295": "Keba", "30004296": "Bapraya", "30004297": "Efu", "30004298": "Tisot", "30004299": "Sakht", "30004300": "Naga", "30004301": "Anath", "30004302": "Omigiav", "30004303": "Fobiner", "30004304": "Huna", "30004305": "Esaeel", "30004306": "Karan", "30004307": "Nouta", "30004308": "Ned", "30004309": "Hophib", "30004310": "UQ9-3C", "30004311": "DCI7-7", "30004312": "J7YR-1", "30004313": "PKG4-7", "30004314": "EWN-2U", "30004315": "VL3I-M", "30004316": "KMC-WI", "30004317": "4-48K1", "30004318": "NTV0-1", "30004319": "C-HCGU", "30004320": "XW-2XP", "30004321": "Q-FEEJ", "30004322": "0P9Z-I", "30004323": "AH-B84", "30004324": "JTAU-5", "30004325": "HB7R-F", "30004326": "O-JPKH", "30004327": "F-9F6Q", "30004328": "B-GC1T", "30004329": "V8W-QS", "30004330": "JRZ-B9", "30004331": "X4UV-Z", "30004332": "S-B7IT", "30004333": "BKG-Q2", "30004334": "OJ-A8M", "30004335": "CX-1XF", "30004336": "3-TD6L", "30004337": "Q-NJZ4", "30004338": "NLPB-0", "30004339": "R4O-I6", "30004340": "KL3O-J", "30004341": "Z-K495", "30004342": "XM-4L0", "30004343": "QCWA-Z", "30004344": "52G-NZ", "30004345": "5LJ-MD", "30004346": "B8O-KJ", "30004347": "6-O5GY", "30004348": "KV-8SN", "30004349": "UB-UQZ", "30004350": "YG-82V", "30004351": "8-4GQM", "30004352": "T-Q2DD", "30004353": "LRWD-B", "30004354": "QXQ-BA", "30004355": "X7R-JW", "30004356": "M-HU4V", "30004357": "CS-ZGD", "30004358": "3-N3OO", "30004359": "A-G1FM", "30004360": "4-BE0M", "30004361": "I-7RIS", "30004362": "P7Z-R3", "30004363": "ZIU-EP", "30004364": "LXWN-W", "30004365": "C-LP3N", "30004366": "9F-7PZ", "30004367": "1G-MJE", "30004368": "WO-AIJ", "30004369": "MA-VDX", "30004370": "RO90-H", "30004371": "BWI1-9", "30004372": "C-LBQS", "30004373": "J52-BH", "30004374": "5-P1Y2", "30004375": "KMQ4-V", "30004376": "KJ-QWL", "30004377": "SVB-RE", "30004378": "C-4ZOS", "30004379": "K-8SQS", "30004380": "C-VGYO", "30004381": "O94U-A", "30004382": "XW-JHT", "30004383": "NEH-CS", "30004384": "4DTQ-K", "30004385": "J9-5MQ", "30004386": "D4R-H7", "30004387": "313I-B", "30004388": "EQI2-2", "30004389": "Q-4DEC", "30004390": "3F-JZF", "30004391": "5-0WB9", "30004392": "W-4FA9", "30004393": "1IX-C0", "30004394": "2B7A-3", "30004395": "PUWL-4", "30004396": "Y-1918", "30004397": "9-B1DS", "30004398": "ME-4IU", "30004399": "BU-IU4", "30004400": "I-7JR4", "30004401": "CH9L-K", "30004402": "QYZM-W", "30004403": "3KNA-N", "30004404": "UD-VZW", "30004405": "3-YX2D", "30004406": "V-TN6Q", "30004407": "CFLF-P", "30004408": "QBH5-F", "30004409": "9-ZFCG", "30004410": "J-TPTA", "30004411": "PMV-G6", "30004412": "5-IZGE", "30004413": "OXC-UL", "30004414": "F-8Y13", "30004415": "4AZ-J8", "30004416": "X6-J6R", "30004417": "BGN1-O", "30004418": "DUU1-K", "30004419": "3L-Y9M", "30004420": "BLC-X0", "30004421": "K-X5AX", "30004422": "BJD4-E", "30004423": "TSG-NO", "30004424": "O9V-R7", "30004425": "Z-PNIA", "30004426": "OCU4-R", "30004427": "BG-W90", "30004428": "Y-YGMW", "30004429": "75C-WN", "30004430": "I5Q2-S", "30004431": "PO-3QW", "30004432": "5XR-KZ", "30004433": "VF-FN6", "30004434": "C-0ND2", "30004435": "JI-LGM", "30004436": "U-BXU9", "30004437": "ZXOG-O", "30004438": "NW2S-A", "30004439": "U-JJEW", "30004440": "NX5W-U", "30004441": "U1-C18", "30004442": "6O-XIO", "30004443": "H65-HE", "30004444": "BJ-ZFD", "30004445": "5ELE-A", "30004446": "H-P4LB", "30004447": "2UK4-N", "30004448": "QK-CDG", "30004449": "M-CMLV", "30004450": "AZN-D2", "30004451": "E-PR0S", "30004452": "TR07-S", "30004453": "VNGJ-U", "30004454": "2-F3OE", "30004455": "5-LCI7", "30004456": "Y2-I3W", "30004457": "VVO-R6", "30004458": "CL-J9W", "30004459": "YHP2-D", "30004460": "J94-MU", "30004461": "M2GJ-X", "30004462": "JO-32L", "30004463": "UB5Z-3", "30004464": "MSKR-1", "30004465": "GPUS-A", "30004466": "3-BADZ", "30004467": "23M-PX", "30004468": "UTDH-N", "30004469": "ZS-2LT", "30004470": "DB1R-4", "30004471": "P8-BKO", "30004472": "RIT-A7", "30004473": "R4K-8L", "30004474": "GHZ-SJ", "30004475": "K-J50B", "30004476": "NLO-3Z", "30004477": "5P-AIP", "30004478": "M-PGT0", "30004479": "NPD9-A", "30004480": "D6SK-L", "30004481": "HYPL-V", "30004482": "I9-ZQZ", "30004483": "0OYZ-G", "30004484": "SWBV-2", "30004485": "R97-CI", "30004486": "6-ELQP", "30004487": "OBK-K8", "30004488": "KJ-V0P", "30004489": "ZID-LE", "30004490": "K-9UG4", "30004491": "D4-2XN", "30004492": "2-RSC7", "30004493": "C0T-77", "30004494": "RL-KT0", "30004495": "UO9-YG", "30004496": "ZQP-QV", "30004497": "P-NUWP", "30004498": "ZJQH-S", "30004499": "E9G-MT", "30004500": "TQ-RR8", "30004501": "1L-BHT", "30004502": "D5IW-F", "30004503": "F-XWIN", "30004504": "4C-B7X", "30004505": "LGUZ-1", "30004506": "BF-SDP", "30004507": "F5FO-U", "30004508": "5WAE-M", "30004509": "0-WVQS", "30004510": "0-9UHT", "30004511": "M-NKZM", "30004512": "H-M1BY", "30004513": "J1H-R4", "30004514": "J9SH-A", "30004515": "JKJ-VJ", "30004516": "RTX0-S", "30004517": "33FN-P", "30004518": "NM-OEA", "30004519": "MT-2VJ", "30004520": "3HQC-6", "30004521": "OX-RGN", "30004522": "R-OCBA", "30004523": "GA-2V7", "30004524": "DB-6W4", "30004525": "7-692B", "30004526": "L3-XYO", "30004527": "AN-G54", "30004528": "ZXI-K2", "30004529": "T-Z6J2", "30004530": "CT7-5V", "30004531": "2JJ-0E", "30004532": "B0C-LD", "30004533": "NP6-38", "30004534": "G-YT55", "30004535": "IZ-AOB", "30004536": "G5-EN3", "30004537": "W-Z3HW", "30004538": "W2F-ZH", "30004539": "BMU-V1", "30004540": "ZXC8-1", "30004541": "LBV-Q1", "30004542": "Z-40CG", "30004543": "O-RIDF", "30004544": "A-5M31", "30004545": "BOE7-P", "30004546": "E-GCX0", "30004547": "VBFC-8", "30004548": "YVA-F0", "30004549": "0D-CHA", "30004550": "A2V6-6", "30004551": "VJ0-81", "30004552": "XF-TQL", "30004553": "4-EP12", "30004554": "YZS5-4", "30004555": "3WE-KY", "30004556": "IR-WT1", "30004557": "9-VO0Q", "30004558": "A8-XBW", "30004559": "PNQY-Y", "30004560": "RP2-OQ", "30004561": "YVBE-E", "30004562": "BYXF-Q", "30004563": "AC2E-3", "30004564": "C-C99Z", "30004565": "CL-BWB", "30004566": "R3W-XU", "30004567": "E-BWUU", "30004568": "Y-1W01", "30004569": "9R4-EJ", "30004570": "SPLE-Y", "30004571": "Q-XEB3", "30004572": "K8L-X7", "30004573": "5-D82P", "30004574": "8ESL-G", "30004575": "JGOW-Y", "30004576": "APM-6K", "30004577": "RE-C26", "30004578": "AL8-V4", "30004579": "KCT-0A", "30004580": "N2-OQG", "30004581": "OW-TPO", "30004582": "9O-ORX", "30004583": "IGE-RI", "30004584": "Z9PP-H", "30004585": "7-8S5X", "30004586": "EI-O0O", "30004587": "7X-02R", "30004588": "D2AH-Z", "30004589": "J5A-IX", "30004590": "B17O-R", "30004591": "6F-H3W", "30004592": "H-NPXW", "30004593": "L-1SW8", "30004594": "U-SOH2", "30004595": "DBRN-Z", "30004596": "00GD-D", "30004597": "C1XD-X", "30004598": "G95F-H", "30004599": "B32-14", "30004600": "C-N4OD", "30004601": "CHA2-Q", "30004602": "UAYL-F", "30004603": "ESC-RI", "30004604": "671-ST", "30004605": "A-HZYL", "30004606": "H-S80W", "30004607": "Z30S-A", "30004608": "6VDT-H", "30004609": "NDH-NV", "30004610": "QV28-G", "30004611": "15U-JY", "30004612": "NY6-FH", "30004613": "XJP-Y7", "30004614": "AV-VB6", "30004615": "HMF-9D", "30004616": "7BX-6F", "30004617": "YZ-LQL", "30004618": "MN5N-X", "30004619": "A-1CON", "30004620": "75FA-Z", "30004621": "WY-9LL", "30004622": "D-Q04X", "30004623": "Serpentis Prime", "30004624": "P5-EFH", "30004625": "L-A5XP", "30004626": "D4KU-5", "30004627": "YRNJ-8", "30004628": "3ZTV-V", "30004629": "9D6O-M", "30004630": "LIWW-P", "30004631": "G-UTHL", "30004632": "38IA-E", "30004633": "M-KXEH", "30004634": "TU-Y2A", "30004635": "7BIX-A", "30004636": "I-CUVX", "30004637": "J-RQMF", "30004638": "TEG-SD", "30004639": "14YI-D", "30004640": "87XQ-0", "30004641": "LJ-TZW", "30004642": "KVN-36", "30004643": "57-KJB", "30004644": "V6-NY1", "30004645": "OL3-78", "30004646": "9DQW-W", "30004647": "PXF-RF", "30004648": "R-BGSU", "30004649": "O-PNSN", "30004650": "1-5GBW", "30004651": "C-FER9", "30004652": "F2-2C3", "30004653": "F-88PJ", "30004654": "ATQ-QS", "30004655": "XUW-3X", "30004656": "006-L3", "30004657": "PB-0C1", "30004658": "ZUE-NS", "30004659": "L7-APB", "30004660": "ZTS-4D", "30004661": "4HS-CR", "30004662": "WMH-SO", "30004663": "LBGI-2", "30004664": "G1CA-Y", "30004665": "Y-2ANO", "30004666": "Z-YN5Y", "30004667": "JI-K5H", "30004668": "33-JRO", "30004669": "ARBX-9", "30004670": "5-CSE3", "30004671": "O-MCZR", "30004672": "9T-APQ", "30004673": "4Y-OBL", "30004674": "0-MX34", "30004675": "5AQ-5H", "30004676": "T-ZFID", "30004677": "0ZN7-G", "30004678": "H8-ZTO", "30004679": "YV-FDG", "30004680": "LUL-WX", "30004681": "8Q-UYU", "30004682": "3PPT-9", "30004683": "S-KU8B", "30004684": "JK-GLL", "30004685": "UAAU-C", "30004686": "HHJD-5", "30004687": "ZWV-GD", "30004688": "1DDR-X", "30004689": "LG-WA9", "30004690": "AA-GWF", "30004691": "O4T-Z5", "30004692": "O-97ZG", "30004693": "2I-520", "30004694": "GQ2S-8", "30004695": "0SUF-3", "30004696": "G-M4GK", "30004697": "G1D0-G", "30004698": "KU3-BB", "30004699": "O1Q-P1", "30004700": "LD-2VL", "30004701": "ZBY-0I", "30004702": "MP5-KR", "30004703": "O-N589", "30004704": "ZDYA-G", "30004705": "LX5K-W", "30004706": "UHKL-N", "30004707": "Z3V-1W", "30004708": "A-ELE2", "30004709": "KFIE-Z", "30004710": "1DH-SX", "30004711": "PR-8CA", "30004712": "NOL-M9", "30004713": "O-IOAI", "30004714": "QX-LIJ", "30004715": "HM-XR2", "30004716": "4K-TRB", "30004717": "AJI-MA", "30004718": "FWST-8", "30004719": "YZ9-F6", "30004720": "0N-3RO", "30004721": "G-TT5V", "30004722": "319-3D", "30004723": "I3Q-II", "30004724": "RF-K9W", "30004725": "E3OI-U", "30004726": "IP6V-X", "30004727": "R5-MM8", "30004728": "1B-VKF", "30004729": "T-J6HT", "30004730": "D-W7F0", "30004731": "JP4-AA", "30004732": "FM-JK5", "30004733": "PDE-U3", "30004734": "23G-XC", "30004735": "T5ZI-S", "30004736": "4X0-8B", "30004737": "Q-HESZ", "30004738": "1-SMEB", "30004739": "M5-CGW", "30004740": "6Q-R50", "30004741": "ZA9-PY", "30004742": "RCI-VL", "30004743": "MJXW-P", "30004744": "QC-YX6", "30004745": "T-M0FA", "30004746": "4O-239", "30004747": "LUA5-L", "30004748": "T-IPZB", "30004749": "Q-JQSG", "30004750": "D-3GIQ", "30004751": "K-6K16", "30004752": "QY6-RK", "30004753": "W-KQPI", "30004754": "PUIG-F", "30004755": "J-LPX7", "30004756": "0-HDC8", "30004757": "F-TE1T", "30004758": "SVM-3K", "30004759": "1DQ1-A", "30004760": "8WA-Z6", "30004761": "5BTK-M", "30004762": "N-8YET", "30004763": "Y-OMTZ", "30004764": "3-DMQT", "30004765": "MO-GZ5", "30004766": "39P-1J", "30004767": "HZAQ-W", "30004768": "7G-QIG", "30004769": "NIDJ-K", "30004770": "PS-94K", "30004771": "8RQJ-2", "30004772": "KEE-N6", "30004773": "M2-XFE", "30004774": "5-CQDA", "30004775": "I-E3TG", "30004776": "S-6HHN", "30004777": "ZXB-VC", "30004778": "GY6A-L", "30004779": "UEXO-Z", "30004780": "9O-8W1", "30004781": "8F-TK3", "30004782": "PF-KUQ", "30004783": "N8D9-Z", "30004784": "F-9PXR", "30004785": "Y5C-YD", "30004786": "31X-RE", "30004787": "Q-02UL", "30004788": "7UTB-F", "30004789": "5-6QW7", "30004790": "7-K6UE", "30004791": "C6Y-ZF", "30004792": "6Z-CKS", "30004793": "G-M5L3", "30004794": "KBAK-I", "30004795": "M-SRKS", "30004796": "9GNS-2", "30004797": "YAW-7M", "30004798": "C3N-3S", "30004799": "CX8-6K", "30004800": "LWX-93", "30004801": "1-2J4P", "30004802": "M0O-JG", "30004803": "WB-AYY", "30004804": "BW-WJ2", "30004805": "S4-9DN", "30004806": "DT-PXH", "30004807": "UALX-3", "30004808": "3L3N-X", "30004809": "Y-ORBJ", "30004810": "6-IAFR", "30004811": "4-P4FE", "30004812": "RH0-EG", "30004813": "D-9UEV", "30004814": "H-HWQR", "30004815": "QRBN-M", "30004816": "78R-PI", "30004817": "ZD1-Z2", "30004818": "C-FD0D", "30004819": "S-9RCJ", "30004820": "ZMV9-A", "30004821": "FE-6YQ", "30004822": "W-16DY", "30004823": "M-4KDB", "30004824": "C3-0YD", "30004825": "PDF-3Z", "30004826": "9-MJVQ", "30004827": "L2GN-K", "30004828": "4-IT9G", "30004829": "PEK-8Z", "30004830": "2PG-KN", "30004831": "ABE-M2", "30004832": "IL-YTR", "30004833": "KW-OAM", "30004834": "U2U5-A", "30004835": "EQWO-Y", "30004836": "JK-Q77", "30004837": "QI9-42", "30004838": "YF-P4X", "30004839": "JI1-SY", "30004840": "X-1QGA", "30004841": "CCE-0J", "30004842": "T2-V8F", "30004843": "0VK-43", "30004844": "TY2X-C", "30004845": "Q0G-L8", "30004846": "Q5KZ-W", "30004847": "WE-KK2", "30004848": "B8HU-Z", "30004849": "16AM-3", "30004850": "A-REKV", "30004851": "BB-EKF", "30004852": "DZ6-I5", "30004853": "R-XDKM", "30004854": "G1-0UI", "30004855": "QCDG-H", "30004856": "XUDX-A", "30004857": "QLU-P0", "30004858": "OQTY-Z", "30004859": "Y-EQ0C", "30004860": "7M4C-F", "30004861": "MS1-KJ", "30004862": "8-BEW8", "30004863": "NZW-ZO", "30004864": "WSK-1A", "30004865": "5-NZNW", "30004866": "NR8S-Y", "30004867": "F-ZBO0", "30004868": "3Q1T-O", "30004869": "8-4KME", "30004870": "T6GY-Y", "30004871": "R1-IMO", "30004872": "7KIK-H", "30004873": "B-6STA", "30004874": "0P-U0Q", "30004875": "XGH-SH", "30004876": "G-D0N3", "30004877": "T-AKQZ", "30004878": "46DP-O", "30004879": "9-980U", "30004880": "EMIG-F", "30004881": "M-RPN3", "30004882": "ZO-P5K", "30004883": "JV1V-O", "30004884": "9MWZ-B", "30004885": "LS-QLX", "30004886": "S-XZHU", "30004887": "CO-7BI", "30004888": "ZJG-7D", "30004889": "C-WPWH", "30004890": "VULA-I", "30004891": "R2TJ-1", "30004892": "G-B3PR", "30004893": "73-JQO", "30004894": "XPUM-L", "30004895": "KR8-27", "30004896": "LQ-AHE", "30004897": "LOI-L1", "30004898": "Y-MSJN", "30004899": "MJ-X5V", "30004900": "3FKU-H", "30004901": "M9-FIB", "30004902": "D2EZ-X", "30004903": "DJK-67", "30004904": "AXDX-F", "30004905": "J-4FNO", "30004906": "PEM-LC", "30004907": "X-EHHD", "30004908": "6T3I-L", "30004909": "QSF-EJ", "30004910": "L-AS00", "30004911": "NZPK-G", "30004912": "K-1OY3", "30004913": "MMUF-8", "30004914": "99-0GS", "30004915": "X-3AUU", "30004916": "H90-C9", "30004917": "0DD-MH", "30004918": "RI-JB1", "30004919": "NQH-MR", "30004920": "1I6F-9", "30004921": "Z-7OK1", "30004922": "UEP0-A", "30004923": "66-PMM", "30004924": "OKEO-X", "30004925": "7-8EOE", "30004926": "7L9-ZC", "30004927": "L-YMYU", "30004928": "35-JWD", "30004929": "F-M1FU", "30004930": "0-NTIS", "30004931": "VR-YIQ", "30004932": "XZ-SKZ", "30004933": "I6M-9U", "30004934": "MG0-RD", "30004935": "TPAR-G", "30004936": "VYO-68", "30004937": "TCAG-3", "30004938": "UR-E46", "30004939": "CW9-1Y", "30004940": "1-NJLK", "30004941": "Y-CWQY", "30004942": "8KR9-5", "30004943": "VQE-CN", "30004944": "L5D-ZL", "30004945": "G-C8QO", "30004946": "EIMJ-M", "30004947": "0A-KZ0", "30004948": "E-DOF2", "30004949": "48I1-X", "30004950": "0OTX-J", "30004951": "3OP-3E", "30004952": "JZL-VB", "30004953": "RJ3H-0", "30004954": "08S-39", "30004955": "ZU-MS3", "30004956": "HIX4-H", "30004957": "GR-J8B", "30004958": "OY0-2T", "30004959": "E2-RDQ", "30004960": "TN25-J", "30004961": "PA-VE3", "30004962": "G-Q5JU", "30004963": "RYQC-I", "30004964": "1E-W5I", "30004965": "Z-M5A1", "30004966": "MVUO-F", "30004967": "Luminaire", "30004968": "Mies", "30004969": "Oursulaert", "30004970": "Renyn", "30004971": "Duripant", "30004972": "Algogille", "30004973": "Caslemon", "30004974": "Jolevier", "30004975": "Mesybier", "30004976": "Charmerout", "30004977": "Yvangier", "30004978": "Pemene", "30004979": "Heydieles", "30004980": "Fliet", "30004981": "Actee", "30004982": "Indregulle", "30004983": "Amane", "30004984": "Abune", "30004985": "Deven", "30004986": "Estaunitte", "30004987": "Deninard", "30004988": "Hulmate", "30004989": "Annages", "30004990": "Onne", "30004991": "Vitrauze", "30004992": "Palmon", "30004993": "Villore", "30004994": "Arant", "30004995": "Allamotte", "30004996": "Obalyu", "30004997": "Vifrevaert", "30004998": "Parts", "30004999": "Ladistier", "30005000": "Old Man Star", "30005001": "Arnon", "30005002": "Laurvier", "30005003": "Adirain", "30005004": "Attyn", "30005005": "Ignebaener", "30005006": "Aere", "30005007": "Lisbaetanne", "30005008": "Aeschee", "30005009": "Allebin", "30005010": "Atlulle", "30005011": "Droselory", "30005012": "Haine", "30005013": "Perckhevin", "30005014": "Isenan", "30005015": "Synchelle", "30005016": "Wysalan", "30005017": "Yona", "30005018": "Noghere", "30005019": "Aporulie", "30005020": "Seyllin", "30005021": "Adrel", "30005022": "Ane", "30005023": "Clorteler", "30005024": "Atlangeins", "30005025": "Derririntel", "30005026": "Cat", "30005027": "Ommare", "30005028": "Andole", "30005029": "Vale", "30005030": "Fensi", "30005031": "Nebian", "30005032": "Khabara", "30005033": "Jeni", "30005034": "Bridi", "30005035": "Ami", "30005036": "Amdonen", "30005037": "Mora", "30005038": "Kor-Azor Prime", "30005039": "Leva", "30005040": "Nishah", "30005041": "Masanuh", "30005042": "Sehmy", "30005043": "Nakregde", "30005044": "Danyana", "30005045": "Nahyeen", "30005046": "Jinkah", "30005047": "Nibainkier", "30005048": "Polfaly", "30005049": "Andrub", "30005050": "Kulu", "30005051": "Choga", "30005052": "Soumi", "30005053": "Imih", "30005054": "Nare", "30005055": "Zinkon", "30005056": "Kizama", "30005057": "Shaha", "30005058": "Neesher", "30005059": "Misha", "30005060": "Ordion", "30005061": "Perbhe", "30005062": "Abath", "30005063": "Schmaeel", "30005064": "Mafra", "30005065": "Arzi", "30005066": "Kerying", "30005067": "Zorenyen", "30005068": "Oguser", "30005069": "Nahol", "30005070": "Tadadan", "30005071": "Tralasa", "30005072": "Gademam", "30005073": "Pananan", "30005074": "Daran", "30005075": "Latari", "30005076": "Shokal", "30005077": "Atarli", "30005078": "Keproh", "30005079": "Zatamaka", "30005080": "Rannoze", "30005081": "Piri", "30005082": "Enal", "30005083": "Jedandan", "30005084": "Miroona", "30005085": "Ranni", "30005086": "Arza", "30005087": "Liparer", "30005088": "B-B0ME", "30005089": "TDP-T3", "30005090": "H-HGGJ", "30005091": "OJT-J3", "30005092": "A9-F18", "30005093": "DE-IHK", "30005094": "AY9X-Q", "30005095": "XU7-CH", "30005096": "2V-ZHM", "30005097": "V-3K7C", "30005098": "AK-L0Z", "30005099": "R-AG7W", "30005100": "E-WMT7", "30005101": "FLK-LJ", "30005102": "0FG-KS", "30005103": "F-5WYK", "30005104": "EF-QZK", "30005105": "RZ3O-K", "30005106": "LW-YEW", "30005107": "HB-KSF", "30005108": "EH2I-P", "30005109": "OP7-BP", "30005110": "5ZU-VG", "30005111": "6-1T6Z", "30005112": "R-AYGT", "30005113": "G-GRSZ", "30005114": "6-8QLA", "30005115": "5T-A3D", "30005116": "H-FOYG", "30005117": "1A8-6G", "30005118": "PE-SAM", "30005119": "RY-2FX", "30005120": "K-3PQW", "30005121": "4-M1TY", "30005122": "C6CG-W", "30005123": "H-29TM", "30005124": "KOI8-Z", "30005125": "D-QJR9", "30005126": "U4-V3J", "30005127": "B9N2-2", "30005128": "6Q4-X6", "30005129": "BEG-RL", "30005130": "972C-1", "30005131": "U-W436", "30005132": "Z-ENUD", "30005133": "MJ-5F9", "30005134": "M5NO-B", "30005135": "JZ-UQC", "30005136": "JPEZ-R", "30005137": "9WVY-F", "30005138": "7M4-4C", "30005139": "2-YO2K", "30005140": "M-SG47", "30005141": "SR-10Z", "30005142": "W-KXEX", "30005143": "TAL1-3", "30005144": "QHY-RU", "30005145": "7AH-SF", "30005146": "7MMJ-3", "30005147": "PVF-N9", "30005148": "9-EXU9", "30005149": "4-1ECP", "30005150": "UYOC-1", "30005151": "5-U12M", "30005152": "5V-Q1R", "30005153": "M4-KX5", "30005154": "4F9Y-3", "30005155": "MS-RXH", "30005156": "U-3FKL", "30005157": "0XN-SK", "30005158": "J9A-BH", "30005159": "4F6-VZ", "30005160": "B-7LYC", "30005161": "JM0A-4", "30005162": "PT-2KR", "30005163": "L-POLO", "30005164": "8B-A4E", "30005165": "49V-E4", "30005166": "3LL-O0", "30005167": "A1F-22", "30005168": "9-ZA4Z", "30005169": "IU-E9T", "30005170": "NGM-OK", "30005171": "O-QKSM", "30005172": "QKQ3-L", "30005173": "VWES-Y", "30005174": "SY-OLX", "30005175": "XY-ZCI", "30005176": "7JRA-G", "30005177": "W-CSFY", "30005178": "PFV-ZH", "30005179": "L5Y4-M", "30005180": "9IZ-HU", "30005181": "OBV-YC", "30005182": "2AUL-X", "30005183": "F-HQWV", "30005184": "F-A3TR", "30005185": "PA-ALN", "30005186": "01B-88", "30005187": "F18-AY", "30005188": "RZ8A-P", "30005189": "MTO2-2", "30005190": "C3I-D5", "30005191": "0-U2M4", "30005192": "Shera", "30005193": "Lor", "30005194": "Cleyd", "30005195": "Vecamia", "30005196": "Ahbazon", "30005197": "Atreen", "30005198": "Pakhshi", "30005199": "Tar", "30005200": "Tekaima", "30005201": "Manarq", "30005202": "Emsar", "30005203": "Ourapheh", "30005204": "Yulai", "30005205": "Tarta", "30005206": "Kemerk", "30005207": "Nardiarang", "30005208": "Ziasad", "30005209": "Sibe", "30005210": "Makhwasan", "30005211": "Zarer", "30005212": "Toon", "30005213": "Hesarid", "30005214": "Ashokon", "30005215": "Avyuh", "30005216": "Apanake", "30005217": "Sheroo", "30005218": "Sosh", "30005219": "Sigga", "30005220": "Keseya", "30005221": "Zoohen", "30005222": "Serren", "30005223": "Hadji", "30005224": "Assez", "30005225": "Alal", "30005226": "Dom-Aphis", "30005227": "Iderion", "30005228": "Chamja", "30005229": "Diaderi", "30005230": "Manatirid", "30005231": "Pashanai", "30005232": "Pamah", "30005233": "Leran", "30005234": "Beke", "30005235": "Malma", "30005236": "Noranim", "30005237": "Chej", "30005238": "Menai", "30005239": "Aring", "30005240": "Gayar", "30005241": "Petidu", "30005242": "Naka", "30005243": "Madomi", "30005244": "Gergish", "30005245": "Tahli", "30005246": "Imya", "30005247": "Kobam", "30005248": "Hirizan", "30005249": "Anyed", "30005250": "Habu", "30005251": "Asanot", "30005252": "Anzalaisio", "30005253": "Chiga", "30005254": "Abhan", "30005255": "Saphthar", "30005256": "Itrin", "30005257": "Bantish", "30005258": "Korridi", "30005259": "Lela", "30005260": "Keri", "30005261": "Antem", "30005262": "Djimame", "30005263": "Mozzidit", "30005264": "Angur", "30005265": "Hangond", "30005266": "Access", "30005267": "Bherdasopt", "30005268": "Gonditsa", "30005269": "Simela", "30005270": "Shalne", "30005271": "Shapisin", "30005272": "Olin", "30005273": "Galnafsad", "30005274": "Otakod", "30005275": "Azedi", "30005276": "Sharza", "30005277": "Pirna", "30005278": "Seshi", "30005279": "Anara", "30005280": "Partod", "30005281": "Exit", "30005282": "Gateway", "30005283": "Central Point", "30005284": "Promised Land", "30005285": "Dead End", "30005286": "New Eden", "30005287": "Canard", "30005288": "Girani-Fa", "30005289": "Nasreri", "30005290": "Heorah", "30005291": "Ebasez", "30005292": "Agal", "30005293": "Doza", "30005294": "Bania", "30005295": "Murethand", "30005296": "Melmaniel", "30005297": "Ouelletta", "30005298": "Costolle", "30005299": "Muetralle", "30005300": "Loes", "30005301": "Tourier", "30005302": "Alenia", "30005303": "Merolles", "30005304": "Alentene", "30005305": "Cistuvaert", "30005306": "Vaere", "30005307": "Aidart", "30005308": "Jufvitte", "30005309": "Ansalle", "30005310": "Scheenins", "30005311": "Amygnon", "30005312": "Gisleres", "30005313": "Ellmay", "30005314": "Theruesse", "30005315": "Eletta", "30005316": "Luse", "30005317": "Ekuenbiron", "30005318": "Vay", "30005319": "Raneilles", "30005320": "Hevrice", "30005321": "Jovainnon", "30005322": "Scolluzer", "30005323": "Sortet", "30005324": "Claulenne", "30005325": "Masalle", "30005326": "Annelle", "30005327": "Chesiette", "30005328": "Reblier", "30005329": "Amoderia", "30005330": "Arraron", "30005331": "Chantrousse", "30005332": "Osmomonne", "30005333": "Stou", "30005334": "Tierijev", "30040141": "Urhinichi", "30003319": "A-3ES3", "30041392": "Laah", "30041407": "Ichinumi", "30041672": "Seitam", "30042505": "Usteli", "30042547": "Loguttur", "30042715": "Trossere", "30010141": "Sakenta", "30043410": "Fildar", "30043489": "Horir", "30011392": "Jouvulen", "30011407": "Akiainavas", "30011672": "Kerepa", "30044971": "Mesokel", "30045042": "Conoban", "30012505": "Malukker", "30045305": "Clellinon", "30045306": "Hykanima", "30045307": "Okagaiken", "30045308": "Kehjari", "30045309": "Villasen", "30045310": "Sarenemi", "30045311": "Ashitsu", "30045312": "Korasen", "30045313": "Ienakkamon", "30045314": "Kinakka", "30045315": "Raihbaka", "30045316": "Innia", "30045317": "Iralaja", "30045318": "Martoh", "30045319": "Eha", "30045320": "Pavanakka", "30045321": "Uchomida", "30045322": "Samanuni", "30045323": "Astoh", "30045324": "Onnamon", "30045325": "Rohamaa", "30045326": "Uuhulanen", "30045327": "Tsuruma", "30045328": "Ahtila", "30045329": "Ichoriya", "30045330": "Okkamon", "30045331": "Vaaralen", "30045332": "Asakai", "30045333": "Prism", "30045334": "Mushikegi", "30045335": "Teskanen", "30045336": "Elunala", "30045337": "Ikoskio", "30045338": "Hikkoken", "30045339": "Enaluri", "30045340": "Aivonen", "30045341": "Hallanen", "30045342": "Akidagi", "30045343": "Immuri", "30045344": "Nennamaila", "30045345": "Hirri", "30045346": "Kedama", "30045347": "Oinasiken", "30045348": "Notoras", "30045349": "Rakapas", "30045350": "Teimo", "30045351": "Iwisoda", "30045352": "Nisuwa", "30045353": "Pynekastoh", "30045354": "Reitsato", "30012715": "Odotte", "30013410": "Abrat", "30013489": "Deepari", "30014971": "Couster", "30015042": "Akhwa", "30015305": "Adallier"} \ No newline at end of file diff --git a/public/stylesheets/style.styl b/public/stylesheets/style.styl index 5f1c663..76d07ac 100644 --- a/public/stylesheets/style.styl +++ b/public/stylesheets/style.styl @@ -1,5 +1,33 @@ body font-size 14px +.jumbotron + .container + position relative + z-index 2 + &:after + content '' + display block + position absolute + top 0 + right 0 + bottom 0 + left 0 + background url('http://img440.imageshack.us/img440/1433/20101001233129.jpg') repeat center center + opacity .4 + +.masthead + h1 + font-size 120px + line-height 1 + letter-spacing -2px + p + font-size 40px + font-weight 200 + line-height 1.25 + +.nav-list + margin-top .75em + #footer - min-height 50px \ No newline at end of file + min-height 50px diff --git a/routes/index.js b/routes/index.js deleted file mode 100644 index f9f62c0..0000000 --- a/routes/index.js +++ /dev/null @@ -1,3 +0,0 @@ -exports.index = function(req, res){ - res.render('index', { title: 'Express' }); -}; \ No newline at end of file diff --git a/routes/user.js b/routes/user.js deleted file mode 100644 index d5b34aa..0000000 --- a/routes/user.js +++ /dev/null @@ -1,8 +0,0 @@ - -/* - * GET users listing. - */ - -exports.list = function(req, res){ - res.send("respond with a resource"); -}; \ No newline at end of file diff --git a/server.js b/server.js new file mode 100644 index 0000000..cb14afd --- /dev/null +++ b/server.js @@ -0,0 +1,26 @@ +var express = require('express') + , env = process.env.NODE_ENV || 'development' + , config = require('./config/config')[env] + , mongoose = require('mongoose') + , modelsPath = __dirname + '/app/models' + + +mongoose.connect(config.db) + +// Bootstrap models +require('fs').readdirSync(modelsPath).forEach(function (file) { + require(modelsPath+'/'+file) +}) + +var app = express() + +// Bootstrap application settings +require('./config/express')(app, config) + +// Bootstrap routes +require('./config/routes')(app) + +// Start the app by listening on +var port = process.env.PORT || 3000 +app.listen(port) +console.log('Express app started on port '+port) diff --git a/test/helpers.js b/test/helpers.js new file mode 100644 index 0000000..1a2e830 --- /dev/null +++ b/test/helpers.js @@ -0,0 +1,16 @@ +var mongoose = require('mongoose') + , async = require('async') + , Operation = mongoose.model('Operation') + + +exports.clearDb = function (done) { + var callback = function (item, fn) { item.remove(fn) } + + async.parallel([ + function (cb) { + Operation.find().exec(function (err, operations) { + async.forEach(operations, callback, cb) + }) + } + ], done) +} diff --git a/test/test-operations.js b/test/test-operations.js new file mode 100644 index 0000000..855b911 --- /dev/null +++ b/test/test-operations.js @@ -0,0 +1,26 @@ +var mongoose = require('mongoose') + , should = require('should') + , request = require('supertest') + , app = require('../server') + , context = describe + , Operation = mongoose.model('Operation') + +var count, cookies + +describe('Operations', function () { + + describe('GET /operations', function () { + it('should respond with Content-Type text/html', function (done) { + request(app) + .get('/operations') + .expect('Content-Type', /html/) + .expect(200) + .expect(/Operations Manifest/) + .end(done) + }) + }) + + after(function (done) { + require('./helper').clearDb(done) + }) +}) diff --git a/views/footer.jade b/views/footer.jade deleted file mode 100644 index 72c3bba..0000000 --- a/views/footer.jade +++ /dev/null @@ -1,2 +0,0 @@ -div#footer.navbar.navbar-fixed-bottom.container - a(href='https://github.com/rcreasey/eve-foreman') View source diff --git a/views/header.jade b/views/header.jade deleted file mode 100644 index 4dd4078..0000000 --- a/views/header.jade +++ /dev/null @@ -1,20 +0,0 @@ -div.navbar.navbar-inverse.navbar-fixed-top - div.navbar-inner - div.container - a.btn.btn-navbar(data-toggle="collapse", data-target=".nav-collapse") - span.icon-bar - span.icon-bar - span.icon-bar - a.brand(href="#") - | EVE Foreman - div.nav-collapse.collapse - ul.nav - li.active - a(href="#") - | Home - li - a(href="ops") - | Operations - li - a(href="#contact") - | Contact \ No newline at end of file diff --git a/views/index.jade b/views/index.jade deleted file mode 100644 index ef7b09f..0000000 --- a/views/index.jade +++ /dev/null @@ -1,5 +0,0 @@ -extends layout - -block content - h1= title - p Welcome to #{title} \ No newline at end of file diff --git a/views/layout.jade b/views/layout.jade deleted file mode 100644 index d4ae81b..0000000 --- a/views/layout.jade +++ /dev/null @@ -1,18 +0,0 @@ -!!! -doctype 5 -html - head - title eve foreman :: #{title} - link(rel='stylesheet', href='//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.0/css/bootstrap.min.css') - style(type='text/css') - body { padding-top: 60px; } - link(rel='stylesheet', href='//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.0/css/bootstrap-responsive.min.css') - link(rel='stylesheet', href='//netdna.bootstrapcdn.com/bootswatch/2.3.1/slate/bootstrap.min.css') - link(rel='stylesheet', href='/stylesheets/style.css') - script(src='//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js') - script(src='//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.0/js/bootstrap.min.js') - body - include header - div.container - block content - include footer \ No newline at end of file